blob: ff28081146f2846bec10809384faa86637a31cd8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * tg3.c: Broadcom Tigon3 ethernet driver.
3 *
4 * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com)
5 * Copyright (C) 2001, 2002, 2003 Jeff Garzik (jgarzik@pobox.com)
6 * Copyright (C) 2004 Sun Microsystems Inc.
Nithin Nayak Sujirb681b652013-01-06 12:51:10 +00007 * Copyright (C) 2005-2013 Broadcom Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Firmware is:
Michael Chan49cabf42005-06-06 15:15:17 -070010 * Derived from proprietary unpublished source code,
11 * Copyright (C) 2000-2003 Broadcom Corporation.
12 *
13 * Permission is hereby granted for the distribution of this firmware
14 * data in hexadecimal or equivalent format, provided this copyright
15 * notice is accompanying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <linux/module.h>
20#include <linux/moduleparam.h>
Matt Carlson6867c842010-07-11 09:31:44 +000021#include <linux/stringify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/types.h>
24#include <linux/compiler.h>
25#include <linux/slab.h>
26#include <linux/delay.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020027#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000029#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/ioport.h>
31#include <linux/pci.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/ethtool.h>
Matt Carlson3110f5f52010-12-06 08:28:50 +000036#include <linux/mdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070038#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070039#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/if_vlan.h>
41#include <linux/ip.h>
42#include <linux/tcp.h>
43#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070044#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020045#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080046#include <linux/firmware.h>
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000047#include <linux/ssb/ssb_driver_gige.h>
Michael Chanaed93e02012-07-16 16:24:02 +000048#include <linux/hwmon.h>
49#include <linux/hwmon-sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030052#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000054#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000056#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Matt Carlsonbe947302012-12-03 19:36:57 +000058#include <uapi/linux/net_tstamp.h>
59#include <linux/ptp_clock_kernel.h>
60
David S. Miller49b6e95f2007-03-29 01:38:42 -070061#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070063#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#endif
65
Matt Carlson63532392008-11-03 16:49:57 -080066#define BAR_0 0
67#define BAR_2 2
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include "tg3.h"
70
Joe Perches63c3a662011-04-26 08:12:10 +000071/* Functions & macros to verify TG3_FLAGS types */
72
73static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
74{
75 return test_bit(flag, bits);
76}
77
78static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
79{
80 set_bit(flag, bits);
81}
82
83static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
84{
85 clear_bit(flag, bits);
86}
87
88#define tg3_flag(tp, flag) \
89 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
90#define tg3_flag_set(tp, flag) \
91 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
92#define tg3_flag_clear(tp, flag) \
93 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000096#define TG3_MAJ_NUM 3
Nithin Sujircd77b2e2013-07-29 13:58:40 -070097#define TG3_MIN_NUM 133
Matt Carlson6867c842010-07-11 09:31:44 +000098#define DRV_MODULE_VERSION \
99 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Nithin Sujircd77b2e2013-07-29 13:58:40 -0700100#define DRV_MODULE_RELDATE "Jul 29, 2013"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000102#define RESET_KIND_SHUTDOWN 0
103#define RESET_KIND_INIT 1
104#define RESET_KIND_SUSPEND 2
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define TG3_DEF_RX_MODE 0
107#define TG3_DEF_TX_MODE 0
108#define TG3_DEF_MSG_ENABLE \
109 (NETIF_MSG_DRV | \
110 NETIF_MSG_PROBE | \
111 NETIF_MSG_LINK | \
112 NETIF_MSG_TIMER | \
113 NETIF_MSG_IFDOWN | \
114 NETIF_MSG_IFUP | \
115 NETIF_MSG_RX_ERR | \
116 NETIF_MSG_TX_ERR)
117
Matt Carlson520b2752011-06-13 13:39:02 +0000118#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* length of time before we decide the hardware is borked,
121 * and dev->tx_timeout() should be called to fix the problem
122 */
Joe Perches63c3a662011-04-26 08:12:10 +0000123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define TG3_TX_TIMEOUT (5 * HZ)
125
126/* hardware minimum and maximum for a single frame's data payload */
127#define TG3_MIN_MTU 60
128#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000129 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/* These numbers seem to be hard coded in the NIC firmware somehow.
132 * You can't change the ring sizes, but you can change where you place
133 * them in the NIC onboard memory.
134 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000135#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000136 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000137 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000139#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000140 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000141 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#define TG3_DEF_RX_JUMBO_RING_PENDING 100
143
144/* Do not place this n-ring entries value into the tp struct itself,
145 * we really want to expose these constants to GCC so that modulo et
146 * al. operations are done with shifts and masks instead of with
147 * hw multiply/modulo instructions. Another solution would be to
148 * replace things like '% foo' with '& (foo - 1)'.
149 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151#define TG3_TX_RING_SIZE 512
152#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
153
Matt Carlson2c49a442010-09-30 10:34:35 +0000154#define TG3_RX_STD_RING_BYTES(tp) \
155 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
156#define TG3_RX_JMB_RING_BYTES(tp) \
157 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
158#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000159 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
161 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
163
Matt Carlson287be122009-08-28 13:58:46 +0000164#define TG3_DMA_BYTE_ENAB 64
165
166#define TG3_RX_STD_DMA_SZ 1536
167#define TG3_RX_JMB_DMA_SZ 9046
168
169#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
170
171#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
172#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Matt Carlson2c49a442010-09-30 10:34:35 +0000174#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
175 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000176
Matt Carlson2c49a442010-09-30 10:34:35 +0000177#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
178 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000179
Matt Carlsond2757fc2010-04-12 06:58:27 +0000180/* Due to a hardware bug, the 5701 can only DMA to memory addresses
181 * that are at least dword aligned when used in PCIX mode. The driver
182 * works around this bug by double copying the packet. This workaround
183 * is built into the normal double copy length check for efficiency.
184 *
185 * However, the double copy is only necessary on those architectures
186 * where unaligned memory accesses are inefficient. For those architectures
187 * where unaligned memory accesses incur little penalty, we can reintegrate
188 * the 5701 in the normal rx path. Doing so saves a device structure
189 * dereference by hardcoding the double copy threshold in place.
190 */
191#define TG3_RX_COPY_THRESHOLD 256
192#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
193 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
194#else
195 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
196#endif
197
Matt Carlson81389f52011-08-31 11:44:49 +0000198#if (NET_IP_ALIGN != 0)
199#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
200#else
Eric Dumazet9205fd92011-11-18 06:47:01 +0000201#define TG3_RX_OFFSET(tp) (NET_SKB_PAD)
Matt Carlson81389f52011-08-31 11:44:49 +0000202#endif
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000205#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlson55086ad2011-12-14 11:09:59 +0000206#define TG3_TX_BD_DMA_MAX_2K 2048
Matt Carlsona4cb4282011-12-14 11:09:58 +0000207#define TG3_TX_BD_DMA_MAX_4K 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Matt Carlsonad829262008-11-21 17:16:16 -0800209#define TG3_RAW_IP_ALIGN 2
210
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000211#define TG3_FW_UPDATE_TIMEOUT_SEC 5
Matt Carlson21f76382012-02-22 12:35:21 +0000212#define TG3_FW_UPDATE_FREQ_SEC (TG3_FW_UPDATE_TIMEOUT_SEC / 2)
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000213
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800214#define FIRMWARE_TG3 "tigon/tg3.bin"
Nithin Sujirc4dab502013-03-06 17:02:34 +0000215#define FIRMWARE_TG357766 "tigon/tg357766.bin"
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800216#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
217#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
218
Bill Pemberton229b1ad2012-12-03 09:22:59 -0500219static char version[] =
Joe Perches05dbe002010-02-17 19:44:19 +0000220 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
223MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
224MODULE_LICENSE("GPL");
225MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800226MODULE_FIRMWARE(FIRMWARE_TG3);
227MODULE_FIRMWARE(FIRMWARE_TG3TSO);
228MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
231module_param(tg3_debug, int, 0);
232MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
233
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000234#define TG3_DRV_DATA_FLAG_10_100_ONLY 0x0001
235#define TG3_DRV_DATA_FLAG_5705_10_100 0x0002
236
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000237static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901),
257 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
258 TG3_DRV_DATA_FLAG_5705_10_100},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2),
260 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
261 TG3_DRV_DATA_FLAG_5705_10_100},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F),
264 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
265 TG3_DRV_DATA_FLAG_5705_10_100},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F),
272 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F),
278 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000286 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5787M,
287 PCI_VENDOR_ID_LENOVO,
288 TG3PCI_SUBDEVICE_ID_LENOVO_5787M),
289 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000291 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F),
292 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700293 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
294 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
295 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
296 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
297 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
298 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
299 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700300 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
301 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700302 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
303 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700304 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700305 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
306 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800307 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
308 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000309 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
310 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000311 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780,
312 PCI_VENDOR_ID_AI, TG3PCI_SUBDEVICE_ID_ACER_57780_A),
313 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
314 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780,
315 PCI_VENDOR_ID_AI, TG3PCI_SUBDEVICE_ID_ACER_57780_B),
316 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson321d32a2008-11-21 17:22:19 -0800317 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
318 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000319 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790),
320 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000321 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000322 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
Michael Chan79d49692012-11-05 14:26:29 +0000323 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717_C)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000324 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000325 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
326 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
327 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
328 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000329 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791),
330 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
331 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795),
332 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson302b5002010-06-05 17:24:38 +0000333 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000334 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Greg KH02eca3f2012-07-12 15:39:44 +0000335 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57762)},
Matt Carlsond3f677a2013-02-14 14:27:51 +0000336 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57766)},
Michael Chanc86a8562013-01-06 12:51:08 +0000337 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5762)},
338 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5725)},
339 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5727)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700340 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
341 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
342 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
343 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
344 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
345 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
346 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000347 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700348 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
351MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
352
Andreas Mohr50da8592006-08-14 23:54:30 -0700353static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000355} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 { "rx_octets" },
357 { "rx_fragments" },
358 { "rx_ucast_packets" },
359 { "rx_mcast_packets" },
360 { "rx_bcast_packets" },
361 { "rx_fcs_errors" },
362 { "rx_align_errors" },
363 { "rx_xon_pause_rcvd" },
364 { "rx_xoff_pause_rcvd" },
365 { "rx_mac_ctrl_rcvd" },
366 { "rx_xoff_entered" },
367 { "rx_frame_too_long_errors" },
368 { "rx_jabbers" },
369 { "rx_undersize_packets" },
370 { "rx_in_length_errors" },
371 { "rx_out_length_errors" },
372 { "rx_64_or_less_octet_packets" },
373 { "rx_65_to_127_octet_packets" },
374 { "rx_128_to_255_octet_packets" },
375 { "rx_256_to_511_octet_packets" },
376 { "rx_512_to_1023_octet_packets" },
377 { "rx_1024_to_1522_octet_packets" },
378 { "rx_1523_to_2047_octet_packets" },
379 { "rx_2048_to_4095_octet_packets" },
380 { "rx_4096_to_8191_octet_packets" },
381 { "rx_8192_to_9022_octet_packets" },
382
383 { "tx_octets" },
384 { "tx_collisions" },
385
386 { "tx_xon_sent" },
387 { "tx_xoff_sent" },
388 { "tx_flow_control" },
389 { "tx_mac_errors" },
390 { "tx_single_collisions" },
391 { "tx_mult_collisions" },
392 { "tx_deferred" },
393 { "tx_excessive_collisions" },
394 { "tx_late_collisions" },
395 { "tx_collide_2times" },
396 { "tx_collide_3times" },
397 { "tx_collide_4times" },
398 { "tx_collide_5times" },
399 { "tx_collide_6times" },
400 { "tx_collide_7times" },
401 { "tx_collide_8times" },
402 { "tx_collide_9times" },
403 { "tx_collide_10times" },
404 { "tx_collide_11times" },
405 { "tx_collide_12times" },
406 { "tx_collide_13times" },
407 { "tx_collide_14times" },
408 { "tx_collide_15times" },
409 { "tx_ucast_packets" },
410 { "tx_mcast_packets" },
411 { "tx_bcast_packets" },
412 { "tx_carrier_sense_errors" },
413 { "tx_discards" },
414 { "tx_errors" },
415
416 { "dma_writeq_full" },
417 { "dma_write_prioq_full" },
418 { "rxbds_empty" },
419 { "rx_discards" },
420 { "rx_errors" },
421 { "rx_threshold_hit" },
422
423 { "dma_readq_full" },
424 { "dma_read_prioq_full" },
425 { "tx_comp_queue_full" },
426
427 { "ring_set_send_prod_index" },
428 { "ring_status_update" },
429 { "nic_irqs" },
430 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000431 { "nic_tx_threshold_hit" },
432
433 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434};
435
Matt Carlson48fa55a2011-04-13 11:05:06 +0000436#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +0000437#define TG3_NVRAM_TEST 0
438#define TG3_LINK_TEST 1
439#define TG3_REGISTER_TEST 2
440#define TG3_MEMORY_TEST 3
441#define TG3_MAC_LOOPB_TEST 4
442#define TG3_PHY_LOOPB_TEST 5
443#define TG3_EXT_LOOPB_TEST 6
444#define TG3_INTERRUPT_TEST 7
Matt Carlson48fa55a2011-04-13 11:05:06 +0000445
446
Andreas Mohr50da8592006-08-14 23:54:30 -0700447static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700448 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000449} ethtool_test_keys[] = {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +0000450 [TG3_NVRAM_TEST] = { "nvram test (online) " },
451 [TG3_LINK_TEST] = { "link test (online) " },
452 [TG3_REGISTER_TEST] = { "register test (offline)" },
453 [TG3_MEMORY_TEST] = { "memory test (offline)" },
454 [TG3_MAC_LOOPB_TEST] = { "mac loopback test (offline)" },
455 [TG3_PHY_LOOPB_TEST] = { "phy loopback test (offline)" },
456 [TG3_EXT_LOOPB_TEST] = { "ext loopback test (offline)" },
457 [TG3_INTERRUPT_TEST] = { "interrupt test (offline)" },
Michael Chan4cafd3f2005-05-29 14:56:34 -0700458};
459
Matt Carlson48fa55a2011-04-13 11:05:06 +0000460#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
461
462
Michael Chanb401e9e2005-12-19 16:27:04 -0800463static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
464{
465 writel(val, tp->regs + off);
466}
467
468static u32 tg3_read32(struct tg3 *tp, u32 off)
469{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000470 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800471}
472
Matt Carlson0d3031d2007-10-10 18:02:43 -0700473static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
474{
475 writel(val, tp->aperegs + off);
476}
477
478static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
479{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000480 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
484{
Michael Chan68929142005-08-09 20:17:14 -0700485 unsigned long flags;
486
487 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700488 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
489 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700490 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700491}
492
493static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
494{
495 writel(val, tp->regs + off);
496 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Michael Chan68929142005-08-09 20:17:14 -0700499static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
500{
501 unsigned long flags;
502 u32 val;
503
504 spin_lock_irqsave(&tp->indirect_lock, flags);
505 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
506 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
507 spin_unlock_irqrestore(&tp->indirect_lock, flags);
508 return val;
509}
510
511static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
512{
513 unsigned long flags;
514
515 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
516 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
517 TG3_64BIT_REG_LOW, val);
518 return;
519 }
Matt Carlson66711e662009-11-13 13:03:49 +0000520 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700521 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
522 TG3_64BIT_REG_LOW, val);
523 return;
524 }
525
526 spin_lock_irqsave(&tp->indirect_lock, flags);
527 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
528 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
529 spin_unlock_irqrestore(&tp->indirect_lock, flags);
530
531 /* In indirect mode when disabling interrupts, we also need
532 * to clear the interrupt bit in the GRC local ctrl register.
533 */
534 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
535 (val == 0x1)) {
536 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
537 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
538 }
539}
540
541static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
542{
543 unsigned long flags;
544 u32 val;
545
546 spin_lock_irqsave(&tp->indirect_lock, flags);
547 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
548 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
549 spin_unlock_irqrestore(&tp->indirect_lock, flags);
550 return val;
551}
552
Michael Chanb401e9e2005-12-19 16:27:04 -0800553/* usec_wait specifies the wait time in usec when writing to certain registers
554 * where it is unsafe to read back the register without some delay.
555 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
556 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
557 */
558static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Joe Perches63c3a662011-04-26 08:12:10 +0000560 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800561 /* Non-posted methods */
562 tp->write32(tp, off, val);
563 else {
564 /* Posted method */
565 tg3_write32(tp, off, val);
566 if (usec_wait)
567 udelay(usec_wait);
568 tp->read32(tp, off);
569 }
570 /* Wait again after the read for the posted method to guarantee that
571 * the wait time is met.
572 */
573 if (usec_wait)
574 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Michael Chan09ee9292005-08-09 20:17:00 -0700577static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
578{
579 tp->write32_mbox(tp, off, val);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000580 if (tg3_flag(tp, FLUSH_POSTED_WRITES) ||
581 (!tg3_flag(tp, MBOX_WRITE_REORDER) &&
582 !tg3_flag(tp, ICH_WORKAROUND)))
Michael Chan68929142005-08-09 20:17:14 -0700583 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700584}
585
Michael Chan20094932005-08-09 20:16:32 -0700586static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 void __iomem *mbox = tp->regs + off;
589 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000590 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 writel(val, mbox);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000592 if (tg3_flag(tp, MBOX_WRITE_REORDER) ||
593 tg3_flag(tp, FLUSH_POSTED_WRITES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 readl(mbox);
595}
596
Michael Chanb5d37722006-09-27 16:06:21 -0700597static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
598{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000599 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700600}
601
602static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
603{
604 writel(val, tp->regs + off + GRCMBOX_BASE);
605}
606
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000607#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700608#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000609#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
610#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
611#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700612
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000613#define tw32(reg, val) tp->write32(tp, reg, val)
614#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
615#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
616#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
619{
Michael Chan68929142005-08-09 20:17:14 -0700620 unsigned long flags;
621
Joe Perches41535772013-02-16 11:20:04 +0000622 if (tg3_asic_rev(tp) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700623 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
624 return;
625
Michael Chan68929142005-08-09 20:17:14 -0700626 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000627 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700628 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
629 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Michael Chanbbadf502006-04-06 21:46:34 -0700631 /* Always leave this as zero. */
632 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
633 } else {
634 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
635 tw32_f(TG3PCI_MEM_WIN_DATA, val);
636
637 /* Always leave this as zero. */
638 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
639 }
Michael Chan68929142005-08-09 20:17:14 -0700640 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
644{
Michael Chan68929142005-08-09 20:17:14 -0700645 unsigned long flags;
646
Joe Perches41535772013-02-16 11:20:04 +0000647 if (tg3_asic_rev(tp) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700648 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
649 *val = 0;
650 return;
651 }
652
Michael Chan68929142005-08-09 20:17:14 -0700653 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000654 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700655 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
656 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Michael Chanbbadf502006-04-06 21:46:34 -0700658 /* Always leave this as zero. */
659 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
660 } else {
661 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
662 *val = tr32(TG3PCI_MEM_WIN_DATA);
663
664 /* Always leave this as zero. */
665 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
666 }
Michael Chan68929142005-08-09 20:17:14 -0700667 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Matt Carlson0d3031d2007-10-10 18:02:43 -0700670static void tg3_ape_lock_init(struct tg3 *tp)
671{
672 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000673 u32 regbase, bit;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000674
Joe Perches41535772013-02-16 11:20:04 +0000675 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000676 regbase = TG3_APE_LOCK_GRANT;
677 else
678 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700679
680 /* Make sure the driver hasn't any stale locks. */
Matt Carlson78f94dc2011-11-04 09:14:58 +0000681 for (i = TG3_APE_LOCK_PHY0; i <= TG3_APE_LOCK_GPIO; i++) {
682 switch (i) {
683 case TG3_APE_LOCK_PHY0:
684 case TG3_APE_LOCK_PHY1:
685 case TG3_APE_LOCK_PHY2:
686 case TG3_APE_LOCK_PHY3:
687 bit = APE_LOCK_GRANT_DRIVER;
688 break;
689 default:
690 if (!tp->pci_fn)
691 bit = APE_LOCK_GRANT_DRIVER;
692 else
693 bit = 1 << tp->pci_fn;
694 }
695 tg3_ape_write32(tp, regbase + 4 * i, bit);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000696 }
697
Matt Carlson0d3031d2007-10-10 18:02:43 -0700698}
699
700static int tg3_ape_lock(struct tg3 *tp, int locknum)
701{
702 int i, off;
703 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000704 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700705
Joe Perches63c3a662011-04-26 08:12:10 +0000706 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700707 return 0;
708
709 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000710 case TG3_APE_LOCK_GPIO:
Joe Perches41535772013-02-16 11:20:04 +0000711 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000712 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000713 case TG3_APE_LOCK_GRC:
714 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000715 if (!tp->pci_fn)
716 bit = APE_LOCK_REQ_DRIVER;
717 else
718 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000719 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000720 case TG3_APE_LOCK_PHY0:
721 case TG3_APE_LOCK_PHY1:
722 case TG3_APE_LOCK_PHY2:
723 case TG3_APE_LOCK_PHY3:
724 bit = APE_LOCK_REQ_DRIVER;
725 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000726 default:
727 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700728 }
729
Joe Perches41535772013-02-16 11:20:04 +0000730 if (tg3_asic_rev(tp) == ASIC_REV_5761) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000731 req = TG3_APE_LOCK_REQ;
732 gnt = TG3_APE_LOCK_GRANT;
733 } else {
734 req = TG3_APE_PER_LOCK_REQ;
735 gnt = TG3_APE_PER_LOCK_GRANT;
736 }
737
Matt Carlson0d3031d2007-10-10 18:02:43 -0700738 off = 4 * locknum;
739
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000740 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700741
742 /* Wait for up to 1 millisecond to acquire lock. */
743 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000744 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000745 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700746 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +0800747 if (pci_channel_offline(tp->pdev))
748 break;
749
Matt Carlson0d3031d2007-10-10 18:02:43 -0700750 udelay(10);
751 }
752
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000753 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700754 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000755 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700756 ret = -EBUSY;
757 }
758
759 return ret;
760}
761
762static void tg3_ape_unlock(struct tg3 *tp, int locknum)
763{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000764 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700765
Joe Perches63c3a662011-04-26 08:12:10 +0000766 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700767 return;
768
769 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000770 case TG3_APE_LOCK_GPIO:
Joe Perches41535772013-02-16 11:20:04 +0000771 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000772 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000773 case TG3_APE_LOCK_GRC:
774 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000775 if (!tp->pci_fn)
776 bit = APE_LOCK_GRANT_DRIVER;
777 else
778 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000779 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000780 case TG3_APE_LOCK_PHY0:
781 case TG3_APE_LOCK_PHY1:
782 case TG3_APE_LOCK_PHY2:
783 case TG3_APE_LOCK_PHY3:
784 bit = APE_LOCK_GRANT_DRIVER;
785 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000786 default:
787 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700788 }
789
Joe Perches41535772013-02-16 11:20:04 +0000790 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000791 gnt = TG3_APE_LOCK_GRANT;
792 else
793 gnt = TG3_APE_PER_LOCK_GRANT;
794
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000795 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700796}
797
Matt Carlsonb65a3722012-07-16 16:24:00 +0000798static int tg3_ape_event_lock(struct tg3 *tp, u32 timeout_us)
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000799{
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000800 u32 apedata;
801
Matt Carlsonb65a3722012-07-16 16:24:00 +0000802 while (timeout_us) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000803 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
Matt Carlsonb65a3722012-07-16 16:24:00 +0000804 return -EBUSY;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000805
806 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000807 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
808 break;
809
Matt Carlsonb65a3722012-07-16 16:24:00 +0000810 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
811
812 udelay(10);
813 timeout_us -= (timeout_us > 10) ? 10 : timeout_us;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000814 }
815
Matt Carlsonb65a3722012-07-16 16:24:00 +0000816 return timeout_us ? 0 : -EBUSY;
817}
818
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000819static int tg3_ape_wait_for_event(struct tg3 *tp, u32 timeout_us)
820{
821 u32 i, apedata;
822
823 for (i = 0; i < timeout_us / 10; i++) {
824 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
825
826 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
827 break;
828
829 udelay(10);
830 }
831
832 return i == timeout_us / 10;
833}
834
Michael Chan86449942012-10-02 20:31:14 -0700835static int tg3_ape_scratchpad_read(struct tg3 *tp, u32 *data, u32 base_off,
836 u32 len)
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000837{
838 int err;
839 u32 i, bufoff, msgoff, maxlen, apedata;
840
841 if (!tg3_flag(tp, APE_HAS_NCSI))
842 return 0;
843
844 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
845 if (apedata != APE_SEG_SIG_MAGIC)
846 return -ENODEV;
847
848 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
849 if (!(apedata & APE_FW_STATUS_READY))
850 return -EAGAIN;
851
852 bufoff = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_OFF) +
853 TG3_APE_SHMEM_BASE;
854 msgoff = bufoff + 2 * sizeof(u32);
855 maxlen = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_LEN);
856
857 while (len) {
858 u32 length;
859
860 /* Cap xfer sizes to scratchpad limits. */
861 length = (len > maxlen) ? maxlen : len;
862 len -= length;
863
864 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
865 if (!(apedata & APE_FW_STATUS_READY))
866 return -EAGAIN;
867
868 /* Wait for up to 1 msec for APE to service previous event. */
869 err = tg3_ape_event_lock(tp, 1000);
870 if (err)
871 return err;
872
873 apedata = APE_EVENT_STATUS_DRIVER_EVNT |
874 APE_EVENT_STATUS_SCRTCHPD_READ |
875 APE_EVENT_STATUS_EVENT_PENDING;
876 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS, apedata);
877
878 tg3_ape_write32(tp, bufoff, base_off);
879 tg3_ape_write32(tp, bufoff + sizeof(u32), length);
880
881 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
882 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
883
884 base_off += length;
885
886 if (tg3_ape_wait_for_event(tp, 30000))
887 return -EAGAIN;
888
889 for (i = 0; length; i += 4, length -= 4) {
890 u32 val = tg3_ape_read32(tp, msgoff + i);
891 memcpy(data, &val, sizeof(u32));
892 data++;
893 }
894 }
895
896 return 0;
897}
898
Matt Carlsonb65a3722012-07-16 16:24:00 +0000899static int tg3_ape_send_event(struct tg3 *tp, u32 event)
900{
901 int err;
902 u32 apedata;
903
904 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
905 if (apedata != APE_SEG_SIG_MAGIC)
906 return -EAGAIN;
907
908 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
909 if (!(apedata & APE_FW_STATUS_READY))
910 return -EAGAIN;
911
912 /* Wait for up to 1 millisecond for APE to service previous event. */
913 err = tg3_ape_event_lock(tp, 1000);
914 if (err)
915 return err;
916
917 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
918 event | APE_EVENT_STATUS_EVENT_PENDING);
919
920 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
921 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
922
923 return 0;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000924}
925
926static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
927{
928 u32 event;
929 u32 apedata;
930
931 if (!tg3_flag(tp, ENABLE_APE))
932 return;
933
934 switch (kind) {
935 case RESET_KIND_INIT:
936 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
937 APE_HOST_SEG_SIG_MAGIC);
938 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
939 APE_HOST_SEG_LEN_MAGIC);
940 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
941 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
942 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
943 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
944 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
945 APE_HOST_BEHAV_NO_PHYLOCK);
946 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
947 TG3_APE_HOST_DRVR_STATE_START);
948
949 event = APE_EVENT_STATUS_STATE_START;
950 break;
951 case RESET_KIND_SHUTDOWN:
952 /* With the interface we are currently using,
953 * APE does not track driver state. Wiping
954 * out the HOST SEGMENT SIGNATURE forces
955 * the APE to assume OS absent status.
956 */
957 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
958
959 if (device_may_wakeup(&tp->pdev->dev) &&
960 tg3_flag(tp, WOL_ENABLE)) {
961 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
962 TG3_APE_HOST_WOL_SPEED_AUTO);
963 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
964 } else
965 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
966
967 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
968
969 event = APE_EVENT_STATUS_STATE_UNLOAD;
970 break;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000971 default:
972 return;
973 }
974
975 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
976
977 tg3_ape_send_event(tp, event);
978}
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980static void tg3_disable_ints(struct tg3 *tp)
981{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000982 int i;
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 tw32(TG3PCI_MISC_HOST_CTRL,
985 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000986 for (i = 0; i < tp->irq_max; i++)
987 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990static void tg3_enable_ints(struct tg3 *tp)
991{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000992 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000993
Michael Chanbbe832c2005-06-24 20:20:04 -0700994 tp->irq_sync = 0;
995 wmb();
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 tw32(TG3PCI_MISC_HOST_CTRL,
998 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000999
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001000 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001001 for (i = 0; i < tp->irq_cnt; i++) {
1002 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001003
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001004 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +00001005 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001006 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
1007
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001008 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001009 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +00001010
1011 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +00001012 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +00001013 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
1014 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
1015 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001016 tw32(HOSTCC_MODE, tp->coal_now);
1017
1018 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Matt Carlson17375d22009-08-28 14:02:18 +00001021static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -07001022{
Matt Carlson17375d22009-08-28 14:02:18 +00001023 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00001024 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -07001025 unsigned int work_exists = 0;
1026
1027 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00001028 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -07001029 if (sblk->status & SD_STATUS_LINK_CHG)
1030 work_exists = 1;
1031 }
Matt Carlsonf891ea12012-04-24 13:37:01 +00001032
1033 /* check for TX work to do */
1034 if (sblk->idx[0].tx_consumer != tnapi->tx_cons)
1035 work_exists = 1;
1036
1037 /* check for RX work to do */
1038 if (tnapi->rx_rcb_prod_idx &&
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00001039 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -07001040 work_exists = 1;
1041
1042 return work_exists;
1043}
1044
Matt Carlson17375d22009-08-28 14:02:18 +00001045/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -07001046 * similar to tg3_enable_ints, but it accurately determines whether there
1047 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001048 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 */
Matt Carlson17375d22009-08-28 14:02:18 +00001050static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Matt Carlson17375d22009-08-28 14:02:18 +00001052 struct tg3 *tp = tnapi->tp;
1053
Matt Carlson898a56f2009-08-28 14:02:40 +00001054 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 mmiowb();
1056
David S. Millerfac9b832005-05-18 22:46:34 -07001057 /* When doing tagged status, this work check is unnecessary.
1058 * The last_tag we write above tells the chip which piece of
1059 * work we've completed.
1060 */
Joe Perches63c3a662011-04-26 08:12:10 +00001061 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -07001062 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00001063 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066static void tg3_switch_clocks(struct tg3 *tp)
1067{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001068 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 u32 orig_clock_ctrl;
1070
Joe Perches63c3a662011-04-26 08:12:10 +00001071 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07001072 return;
1073
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001074 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 orig_clock_ctrl = clock_ctrl;
1077 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
1078 CLOCK_CTRL_CLKRUN_OENABLE |
1079 0x1f);
1080 tp->pci_clock_ctrl = clock_ctrl;
1081
Joe Perches63c3a662011-04-26 08:12:10 +00001082 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001084 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1085 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001088 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1089 clock_ctrl |
1090 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
1091 40);
1092 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1093 clock_ctrl | (CLOCK_CTRL_ALTCLK),
1094 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Michael Chanb401e9e2005-12-19 16:27:04 -08001096 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
1099#define PHY_BUSY_LOOPS 5000
1100
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001101static int __tg3_readphy(struct tg3 *tp, unsigned int phy_addr, int reg,
1102 u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 u32 frame_val;
1105 unsigned int loops;
1106 int ret;
1107
1108 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1109 tw32_f(MAC_MI_MODE,
1110 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1111 udelay(80);
1112 }
1113
Michael Chan8151ad52012-07-29 19:15:41 +00001114 tg3_ape_lock(tp, tp->phy_ape_lock);
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 *val = 0x0;
1117
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001118 frame_val = ((phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 MI_COM_PHY_ADDR_MASK);
1120 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1121 MI_COM_REG_ADDR_MASK);
1122 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 tw32_f(MAC_MI_COM, frame_val);
1125
1126 loops = PHY_BUSY_LOOPS;
1127 while (loops != 0) {
1128 udelay(10);
1129 frame_val = tr32(MAC_MI_COM);
1130
1131 if ((frame_val & MI_COM_BUSY) == 0) {
1132 udelay(5);
1133 frame_val = tr32(MAC_MI_COM);
1134 break;
1135 }
1136 loops -= 1;
1137 }
1138
1139 ret = -EBUSY;
1140 if (loops != 0) {
1141 *val = frame_val & MI_COM_DATA_MASK;
1142 ret = 0;
1143 }
1144
1145 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1146 tw32_f(MAC_MI_MODE, tp->mi_mode);
1147 udelay(80);
1148 }
1149
Michael Chan8151ad52012-07-29 19:15:41 +00001150 tg3_ape_unlock(tp, tp->phy_ape_lock);
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return ret;
1153}
1154
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001155static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
1156{
1157 return __tg3_readphy(tp, tp->phy_addr, reg, val);
1158}
1159
1160static int __tg3_writephy(struct tg3 *tp, unsigned int phy_addr, int reg,
1161 u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
1163 u32 frame_val;
1164 unsigned int loops;
1165 int ret;
1166
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001167 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +00001168 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -07001169 return 0;
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1172 tw32_f(MAC_MI_MODE,
1173 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1174 udelay(80);
1175 }
1176
Michael Chan8151ad52012-07-29 19:15:41 +00001177 tg3_ape_lock(tp, tp->phy_ape_lock);
1178
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001179 frame_val = ((phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 MI_COM_PHY_ADDR_MASK);
1181 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1182 MI_COM_REG_ADDR_MASK);
1183 frame_val |= (val & MI_COM_DATA_MASK);
1184 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 tw32_f(MAC_MI_COM, frame_val);
1187
1188 loops = PHY_BUSY_LOOPS;
1189 while (loops != 0) {
1190 udelay(10);
1191 frame_val = tr32(MAC_MI_COM);
1192 if ((frame_val & MI_COM_BUSY) == 0) {
1193 udelay(5);
1194 frame_val = tr32(MAC_MI_COM);
1195 break;
1196 }
1197 loops -= 1;
1198 }
1199
1200 ret = -EBUSY;
1201 if (loops != 0)
1202 ret = 0;
1203
1204 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1205 tw32_f(MAC_MI_MODE, tp->mi_mode);
1206 udelay(80);
1207 }
1208
Michael Chan8151ad52012-07-29 19:15:41 +00001209 tg3_ape_unlock(tp, tp->phy_ape_lock);
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 return ret;
1212}
1213
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001214static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
1215{
1216 return __tg3_writephy(tp, tp->phy_addr, reg, val);
1217}
1218
Matt Carlsonb0988c12011-04-20 07:57:39 +00001219static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
1220{
1221 int err;
1222
1223 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1224 if (err)
1225 goto done;
1226
1227 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1228 if (err)
1229 goto done;
1230
1231 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1232 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1233 if (err)
1234 goto done;
1235
1236 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
1237
1238done:
1239 return err;
1240}
1241
1242static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
1243{
1244 int err;
1245
1246 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1247 if (err)
1248 goto done;
1249
1250 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1251 if (err)
1252 goto done;
1253
1254 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1255 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1256 if (err)
1257 goto done;
1258
1259 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
1260
1261done:
1262 return err;
1263}
1264
1265static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
1266{
1267 int err;
1268
1269 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1270 if (!err)
1271 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
1272
1273 return err;
1274}
1275
1276static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1277{
1278 int err;
1279
1280 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1281 if (!err)
1282 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1283
1284 return err;
1285}
1286
Matt Carlson15ee95c2011-04-20 07:57:40 +00001287static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1288{
1289 int err;
1290
1291 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1292 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1293 MII_TG3_AUXCTL_SHDWSEL_MISC);
1294 if (!err)
1295 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1296
1297 return err;
1298}
1299
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001300static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1301{
1302 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1303 set |= MII_TG3_AUXCTL_MISC_WREN;
1304
1305 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1306}
1307
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001308static int tg3_phy_toggle_auxctl_smdsp(struct tg3 *tp, bool enable)
1309{
1310 u32 val;
1311 int err;
Matt Carlson1d36ba42011-04-20 07:57:42 +00001312
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001313 err = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
1314
1315 if (err)
1316 return err;
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001317
Nithin Sujir7c10ee32013-05-23 11:11:26 +00001318 if (enable)
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001319 val |= MII_TG3_AUXCTL_ACTL_SMDSP_ENA;
1320 else
1321 val &= ~MII_TG3_AUXCTL_ACTL_SMDSP_ENA;
1322
1323 err = tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
1324 val | MII_TG3_AUXCTL_ACTL_TX_6DB);
1325
1326 return err;
1327}
Matt Carlson1d36ba42011-04-20 07:57:42 +00001328
Matt Carlson95e28692008-05-25 23:44:14 -07001329static int tg3_bmcr_reset(struct tg3 *tp)
1330{
1331 u32 phy_control;
1332 int limit, err;
1333
1334 /* OK, reset it, and poll the BMCR_RESET bit until it
1335 * clears or we time out.
1336 */
1337 phy_control = BMCR_RESET;
1338 err = tg3_writephy(tp, MII_BMCR, phy_control);
1339 if (err != 0)
1340 return -EBUSY;
1341
1342 limit = 5000;
1343 while (limit--) {
1344 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1345 if (err != 0)
1346 return -EBUSY;
1347
1348 if ((phy_control & BMCR_RESET) == 0) {
1349 udelay(40);
1350 break;
1351 }
1352 udelay(10);
1353 }
Roel Kluind4675b52009-02-12 16:33:27 -08001354 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001355 return -EBUSY;
1356
1357 return 0;
1358}
1359
Matt Carlson158d7ab2008-05-29 01:37:54 -07001360static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1361{
Francois Romieu3d165432009-01-19 16:56:50 -08001362 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001363 u32 val;
1364
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001365 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001366
1367 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001368 val = -EIO;
1369
1370 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001371
1372 return val;
1373}
1374
1375static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1376{
Francois Romieu3d165432009-01-19 16:56:50 -08001377 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001378 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001379
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001380 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001381
1382 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001383 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001384
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001385 spin_unlock_bh(&tp->lock);
1386
1387 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001388}
1389
1390static int tg3_mdio_reset(struct mii_bus *bp)
1391{
1392 return 0;
1393}
1394
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001395static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001396{
1397 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001398 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001399
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001400 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001401 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001402 case PHY_ID_BCM50610:
1403 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001404 val = MAC_PHYCFG2_50610_LED_MODES;
1405 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001406 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001407 val = MAC_PHYCFG2_AC131_LED_MODES;
1408 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001409 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001410 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1411 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001412 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001413 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1414 break;
1415 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001416 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001417 }
1418
1419 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1420 tw32(MAC_PHYCFG2, val);
1421
1422 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001423 val &= ~(MAC_PHYCFG1_RGMII_INT |
1424 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1425 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001426 tw32(MAC_PHYCFG1, val);
1427
1428 return;
1429 }
1430
Joe Perches63c3a662011-04-26 08:12:10 +00001431 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001432 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1433 MAC_PHYCFG2_FMODE_MASK_MASK |
1434 MAC_PHYCFG2_GMODE_MASK_MASK |
1435 MAC_PHYCFG2_ACT_MASK_MASK |
1436 MAC_PHYCFG2_QUAL_MASK_MASK |
1437 MAC_PHYCFG2_INBAND_ENABLE;
1438
1439 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001440
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001441 val = tr32(MAC_PHYCFG1);
1442 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1443 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001444 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1445 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001446 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001447 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001448 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1449 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001450 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1451 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1452 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001453
Matt Carlsona9daf362008-05-25 23:49:44 -07001454 val = tr32(MAC_EXT_RGMII_MODE);
1455 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1456 MAC_RGMII_MODE_RX_QUALITY |
1457 MAC_RGMII_MODE_RX_ACTIVITY |
1458 MAC_RGMII_MODE_RX_ENG_DET |
1459 MAC_RGMII_MODE_TX_ENABLE |
1460 MAC_RGMII_MODE_TX_LOWPWR |
1461 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001462 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1463 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001464 val |= MAC_RGMII_MODE_RX_INT_B |
1465 MAC_RGMII_MODE_RX_QUALITY |
1466 MAC_RGMII_MODE_RX_ACTIVITY |
1467 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001468 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001469 val |= MAC_RGMII_MODE_TX_ENABLE |
1470 MAC_RGMII_MODE_TX_LOWPWR |
1471 MAC_RGMII_MODE_TX_RESET;
1472 }
1473 tw32(MAC_EXT_RGMII_MODE, val);
1474}
1475
Matt Carlson158d7ab2008-05-29 01:37:54 -07001476static void tg3_mdio_start(struct tg3 *tp)
1477{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001478 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1479 tw32_f(MAC_MI_MODE, tp->mi_mode);
1480 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001481
Joe Perches63c3a662011-04-26 08:12:10 +00001482 if (tg3_flag(tp, MDIOBUS_INITED) &&
Joe Perches41535772013-02-16 11:20:04 +00001483 tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson9ea48182010-02-17 15:17:01 +00001484 tg3_mdio_config_5785(tp);
1485}
1486
1487static int tg3_mdio_init(struct tg3 *tp)
1488{
1489 int i;
1490 u32 reg;
1491 struct phy_device *phydev;
1492
Joe Perches63c3a662011-04-26 08:12:10 +00001493 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001494 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001495
Matt Carlson69f11c92011-07-13 09:27:30 +00001496 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001497
Joe Perches41535772013-02-16 11:20:04 +00001498 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0)
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001499 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1500 else
1501 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1502 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001503 if (is_serdes)
1504 tp->phy_addr += 7;
1505 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001506 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001507
Matt Carlson158d7ab2008-05-29 01:37:54 -07001508 tg3_mdio_start(tp);
1509
Joe Perches63c3a662011-04-26 08:12:10 +00001510 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001511 return 0;
1512
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001513 tp->mdio_bus = mdiobus_alloc();
1514 if (tp->mdio_bus == NULL)
1515 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001516
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001517 tp->mdio_bus->name = "tg3 mdio bus";
1518 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001519 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001520 tp->mdio_bus->priv = tp;
1521 tp->mdio_bus->parent = &tp->pdev->dev;
1522 tp->mdio_bus->read = &tg3_mdio_read;
1523 tp->mdio_bus->write = &tg3_mdio_write;
1524 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001525 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001526 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001527
1528 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001529 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001530
1531 /* The bus registration will look for all the PHYs on the mdio bus.
1532 * Unfortunately, it does not ensure the PHY is powered up before
1533 * accessing the PHY ID registers. A chip reset is the
1534 * quickest way to bring the device back to an operational state..
1535 */
1536 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1537 tg3_bmcr_reset(tp);
1538
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001539 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001540 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001541 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001542 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001543 return i;
1544 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001545
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001546 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001547
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001548 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001549 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001550 mdiobus_unregister(tp->mdio_bus);
1551 mdiobus_free(tp->mdio_bus);
1552 return -ENODEV;
1553 }
1554
1555 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001556 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001557 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001558 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001559 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001560 case PHY_ID_BCM50610:
1561 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001562 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001563 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001564 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001565 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001566 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001567 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001568 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001569 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001570 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001571 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001572 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001573 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001574 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001575 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001576 case PHY_ID_RTL8201E:
1577 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001578 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001579 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001580 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001581 break;
1582 }
1583
Joe Perches63c3a662011-04-26 08:12:10 +00001584 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001585
Joe Perches41535772013-02-16 11:20:04 +00001586 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001587 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001588
1589 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001590}
1591
1592static void tg3_mdio_fini(struct tg3 *tp)
1593{
Joe Perches63c3a662011-04-26 08:12:10 +00001594 if (tg3_flag(tp, MDIOBUS_INITED)) {
1595 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001596 mdiobus_unregister(tp->mdio_bus);
1597 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001598 }
1599}
1600
Matt Carlson95e28692008-05-25 23:44:14 -07001601/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001602static inline void tg3_generate_fw_event(struct tg3 *tp)
1603{
1604 u32 val;
1605
1606 val = tr32(GRC_RX_CPU_EVENT);
1607 val |= GRC_RX_CPU_DRIVER_EVENT;
1608 tw32_f(GRC_RX_CPU_EVENT, val);
1609
1610 tp->last_event_jiffies = jiffies;
1611}
1612
1613#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1614
1615/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001616static void tg3_wait_for_event_ack(struct tg3 *tp)
1617{
1618 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001619 unsigned int delay_cnt;
1620 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001621
Matt Carlson4ba526c2008-08-15 14:10:04 -07001622 /* If enough time has passed, no wait is necessary. */
1623 time_remain = (long)(tp->last_event_jiffies + 1 +
1624 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1625 (long)jiffies;
1626 if (time_remain < 0)
1627 return;
1628
1629 /* Check if we can shorten the wait time. */
1630 delay_cnt = jiffies_to_usecs(time_remain);
1631 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1632 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1633 delay_cnt = (delay_cnt >> 3) + 1;
1634
1635 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001636 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1637 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +08001638 if (pci_channel_offline(tp->pdev))
1639 break;
1640
Matt Carlson4ba526c2008-08-15 14:10:04 -07001641 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001642 }
1643}
1644
1645/* tp->lock is held. */
Matt Carlsonb28f3892012-02-13 15:20:12 +00001646static void tg3_phy_gather_ump_data(struct tg3 *tp, u32 *data)
Matt Carlson95e28692008-05-25 23:44:14 -07001647{
Matt Carlsonb28f3892012-02-13 15:20:12 +00001648 u32 reg, val;
Matt Carlson95e28692008-05-25 23:44:14 -07001649
1650 val = 0;
1651 if (!tg3_readphy(tp, MII_BMCR, &reg))
1652 val = reg << 16;
1653 if (!tg3_readphy(tp, MII_BMSR, &reg))
1654 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001655 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001656
1657 val = 0;
1658 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1659 val = reg << 16;
1660 if (!tg3_readphy(tp, MII_LPA, &reg))
1661 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001662 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001663
1664 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001665 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001666 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1667 val = reg << 16;
1668 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1669 val |= (reg & 0xffff);
1670 }
Matt Carlsonb28f3892012-02-13 15:20:12 +00001671 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001672
1673 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1674 val = reg << 16;
1675 else
1676 val = 0;
Matt Carlsonb28f3892012-02-13 15:20:12 +00001677 *data++ = val;
1678}
1679
1680/* tp->lock is held. */
1681static void tg3_ump_link_report(struct tg3 *tp)
1682{
1683 u32 data[4];
1684
1685 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
1686 return;
1687
1688 tg3_phy_gather_ump_data(tp, data);
1689
1690 tg3_wait_for_event_ack(tp);
1691
1692 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1693 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1694 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x0, data[0]);
1695 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x4, data[1]);
1696 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x8, data[2]);
1697 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0xc, data[3]);
Matt Carlson95e28692008-05-25 23:44:14 -07001698
Matt Carlson4ba526c2008-08-15 14:10:04 -07001699 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001700}
1701
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001702/* tp->lock is held. */
1703static void tg3_stop_fw(struct tg3 *tp)
1704{
1705 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1706 /* Wait for RX cpu to ACK the previous event. */
1707 tg3_wait_for_event_ack(tp);
1708
1709 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1710
1711 tg3_generate_fw_event(tp);
1712
1713 /* Wait for RX cpu to ACK this event. */
1714 tg3_wait_for_event_ack(tp);
1715 }
1716}
1717
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001718/* tp->lock is held. */
1719static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1720{
1721 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1722 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1723
1724 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1725 switch (kind) {
1726 case RESET_KIND_INIT:
1727 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1728 DRV_STATE_START);
1729 break;
1730
1731 case RESET_KIND_SHUTDOWN:
1732 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1733 DRV_STATE_UNLOAD);
1734 break;
1735
1736 case RESET_KIND_SUSPEND:
1737 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1738 DRV_STATE_SUSPEND);
1739 break;
1740
1741 default:
1742 break;
1743 }
1744 }
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001745}
1746
1747/* tp->lock is held. */
1748static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1749{
1750 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1751 switch (kind) {
1752 case RESET_KIND_INIT:
1753 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1754 DRV_STATE_START_DONE);
1755 break;
1756
1757 case RESET_KIND_SHUTDOWN:
1758 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1759 DRV_STATE_UNLOAD_DONE);
1760 break;
1761
1762 default:
1763 break;
1764 }
1765 }
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001766}
1767
1768/* tp->lock is held. */
1769static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1770{
1771 if (tg3_flag(tp, ENABLE_ASF)) {
1772 switch (kind) {
1773 case RESET_KIND_INIT:
1774 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1775 DRV_STATE_START);
1776 break;
1777
1778 case RESET_KIND_SHUTDOWN:
1779 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1780 DRV_STATE_UNLOAD);
1781 break;
1782
1783 case RESET_KIND_SUSPEND:
1784 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1785 DRV_STATE_SUSPEND);
1786 break;
1787
1788 default:
1789 break;
1790 }
1791 }
1792}
1793
1794static int tg3_poll_fw(struct tg3 *tp)
1795{
1796 int i;
1797 u32 val;
1798
Nithin Sujirdf465ab2013-06-12 11:08:59 -07001799 if (tg3_flag(tp, NO_FWARE_REPORTED))
1800 return 0;
1801
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00001802 if (tg3_flag(tp, IS_SSB_CORE)) {
1803 /* We don't use firmware. */
1804 return 0;
1805 }
1806
Joe Perches41535772013-02-16 11:20:04 +00001807 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001808 /* Wait up to 20ms for init done. */
1809 for (i = 0; i < 200; i++) {
1810 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1811 return 0;
Gavin Shan6d446ec2013-06-25 15:24:32 +08001812 if (pci_channel_offline(tp->pdev))
1813 return -ENODEV;
1814
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001815 udelay(100);
1816 }
1817 return -ENODEV;
1818 }
1819
1820 /* Wait for firmware initialization to complete. */
1821 for (i = 0; i < 100000; i++) {
1822 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1823 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1824 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +08001825 if (pci_channel_offline(tp->pdev)) {
1826 if (!tg3_flag(tp, NO_FWARE_REPORTED)) {
1827 tg3_flag_set(tp, NO_FWARE_REPORTED);
1828 netdev_info(tp->dev, "No firmware running\n");
1829 }
1830
1831 break;
1832 }
1833
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001834 udelay(10);
1835 }
1836
1837 /* Chip might not be fitted with firmware. Some Sun onboard
1838 * parts are configured like that. So don't signal the timeout
1839 * of the above loop as an error, but do report the lack of
1840 * running firmware once.
1841 */
1842 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1843 tg3_flag_set(tp, NO_FWARE_REPORTED);
1844
1845 netdev_info(tp->dev, "No firmware running\n");
1846 }
1847
Joe Perches41535772013-02-16 11:20:04 +00001848 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001849 /* The 57765 A0 needs a little more
1850 * time to do some important work.
1851 */
1852 mdelay(10);
1853 }
1854
1855 return 0;
1856}
1857
Matt Carlson95e28692008-05-25 23:44:14 -07001858static void tg3_link_report(struct tg3 *tp)
1859{
1860 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001861 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001862 tg3_ump_link_report(tp);
1863 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001864 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1865 (tp->link_config.active_speed == SPEED_1000 ?
1866 1000 :
1867 (tp->link_config.active_speed == SPEED_100 ?
1868 100 : 10)),
1869 (tp->link_config.active_duplex == DUPLEX_FULL ?
1870 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001871
Joe Perches05dbe002010-02-17 19:44:19 +00001872 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1873 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1874 "on" : "off",
1875 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1876 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001877
1878 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1879 netdev_info(tp->dev, "EEE is %s\n",
1880 tp->setlpicnt ? "enabled" : "disabled");
1881
Matt Carlson95e28692008-05-25 23:44:14 -07001882 tg3_ump_link_report(tp);
1883 }
Nithin Sujir84421b92013-03-08 08:01:24 +00001884
1885 tp->link_up = netif_carrier_ok(tp->dev);
Matt Carlson95e28692008-05-25 23:44:14 -07001886}
1887
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001888static u32 tg3_decode_flowctrl_1000T(u32 adv)
1889{
1890 u32 flowctrl = 0;
1891
1892 if (adv & ADVERTISE_PAUSE_CAP) {
1893 flowctrl |= FLOW_CTRL_RX;
1894 if (!(adv & ADVERTISE_PAUSE_ASYM))
1895 flowctrl |= FLOW_CTRL_TX;
1896 } else if (adv & ADVERTISE_PAUSE_ASYM)
1897 flowctrl |= FLOW_CTRL_TX;
1898
1899 return flowctrl;
1900}
1901
Matt Carlson95e28692008-05-25 23:44:14 -07001902static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1903{
1904 u16 miireg;
1905
Steve Glendinninge18ce342008-12-16 02:00:00 -08001906 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001907 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001908 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001909 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001910 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001911 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1912 else
1913 miireg = 0;
1914
1915 return miireg;
1916}
1917
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001918static u32 tg3_decode_flowctrl_1000X(u32 adv)
1919{
1920 u32 flowctrl = 0;
1921
1922 if (adv & ADVERTISE_1000XPAUSE) {
1923 flowctrl |= FLOW_CTRL_RX;
1924 if (!(adv & ADVERTISE_1000XPSE_ASYM))
1925 flowctrl |= FLOW_CTRL_TX;
1926 } else if (adv & ADVERTISE_1000XPSE_ASYM)
1927 flowctrl |= FLOW_CTRL_TX;
1928
1929 return flowctrl;
1930}
1931
Matt Carlson95e28692008-05-25 23:44:14 -07001932static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1933{
1934 u8 cap = 0;
1935
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001936 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1937 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1938 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1939 if (lcladv & ADVERTISE_1000XPAUSE)
1940 cap = FLOW_CTRL_RX;
1941 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001942 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001943 }
1944
1945 return cap;
1946}
1947
Matt Carlsonf51f3562008-05-25 23:45:08 -07001948static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001949{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001950 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001951 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001952 u32 old_rx_mode = tp->rx_mode;
1953 u32 old_tx_mode = tp->tx_mode;
1954
Joe Perches63c3a662011-04-26 08:12:10 +00001955 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001956 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001957 else
1958 autoneg = tp->link_config.autoneg;
1959
Joe Perches63c3a662011-04-26 08:12:10 +00001960 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001961 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001962 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001963 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001964 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001965 } else
1966 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001967
Matt Carlsonf51f3562008-05-25 23:45:08 -07001968 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001969
Steve Glendinninge18ce342008-12-16 02:00:00 -08001970 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001971 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1972 else
1973 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1974
Matt Carlsonf51f3562008-05-25 23:45:08 -07001975 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001976 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001977
Steve Glendinninge18ce342008-12-16 02:00:00 -08001978 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001979 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1980 else
1981 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1982
Matt Carlsonf51f3562008-05-25 23:45:08 -07001983 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001984 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001985}
1986
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001987static void tg3_adjust_link(struct net_device *dev)
1988{
1989 u8 oldflowctrl, linkmesg = 0;
1990 u32 mac_mode, lcl_adv, rmt_adv;
1991 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001992 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001993
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001994 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001995
1996 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1997 MAC_MODE_HALF_DUPLEX);
1998
1999 oldflowctrl = tp->link_config.active_flowctrl;
2000
2001 if (phydev->link) {
2002 lcl_adv = 0;
2003 rmt_adv = 0;
2004
2005 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
2006 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00002007 else if (phydev->speed == SPEED_1000 ||
Joe Perches41535772013-02-16 11:20:04 +00002008 tg3_asic_rev(tp) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002009 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00002010 else
2011 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002012
2013 if (phydev->duplex == DUPLEX_HALF)
2014 mac_mode |= MAC_MODE_HALF_DUPLEX;
2015 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00002016 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002017 tp->link_config.flowctrl);
2018
2019 if (phydev->pause)
2020 rmt_adv = LPA_PAUSE_CAP;
2021 if (phydev->asym_pause)
2022 rmt_adv |= LPA_PAUSE_ASYM;
2023 }
2024
2025 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
2026 } else
2027 mac_mode |= MAC_MODE_PORT_MODE_GMII;
2028
2029 if (mac_mode != tp->mac_mode) {
2030 tp->mac_mode = mac_mode;
2031 tw32_f(MAC_MODE, tp->mac_mode);
2032 udelay(40);
2033 }
2034
Joe Perches41535772013-02-16 11:20:04 +00002035 if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -08002036 if (phydev->speed == SPEED_10)
2037 tw32(MAC_MI_STAT,
2038 MAC_MI_STAT_10MBPS_MODE |
2039 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2040 else
2041 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2042 }
2043
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002044 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
2045 tw32(MAC_TX_LENGTHS,
2046 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2047 (6 << TX_LENGTHS_IPG_SHIFT) |
2048 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
2049 else
2050 tw32(MAC_TX_LENGTHS,
2051 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2052 (6 << TX_LENGTHS_IPG_SHIFT) |
2053 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
2054
Matt Carlson34655ad2012-02-22 12:35:18 +00002055 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002056 phydev->speed != tp->link_config.active_speed ||
2057 phydev->duplex != tp->link_config.active_duplex ||
2058 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002059 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002060
Matt Carlson34655ad2012-02-22 12:35:18 +00002061 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002062 tp->link_config.active_speed = phydev->speed;
2063 tp->link_config.active_duplex = phydev->duplex;
2064
Matt Carlson24bb4fb2009-10-05 17:55:29 +00002065 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002066
2067 if (linkmesg)
2068 tg3_link_report(tp);
2069}
2070
2071static int tg3_phy_init(struct tg3 *tp)
2072{
2073 struct phy_device *phydev;
2074
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002075 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002076 return 0;
2077
2078 /* Bring the PHY back to a known state. */
2079 tg3_bmcr_reset(tp);
2080
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002081 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002082
2083 /* Attach the MAC to the PHY. */
Florian Fainellif9a8f832013-01-14 00:52:52 +00002084 phydev = phy_connect(tp->dev, dev_name(&phydev->dev),
2085 tg3_adjust_link, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002086 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00002087 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002088 return PTR_ERR(phydev);
2089 }
2090
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002091 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002092 switch (phydev->interface) {
2093 case PHY_INTERFACE_MODE_GMII:
2094 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002095 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08002096 phydev->supported &= (PHY_GBIT_FEATURES |
2097 SUPPORTED_Pause |
2098 SUPPORTED_Asym_Pause);
2099 break;
2100 }
2101 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002102 case PHY_INTERFACE_MODE_MII:
2103 phydev->supported &= (PHY_BASIC_FEATURES |
2104 SUPPORTED_Pause |
2105 SUPPORTED_Asym_Pause);
2106 break;
2107 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002108 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002109 return -EINVAL;
2110 }
2111
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002112 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002113
2114 phydev->advertising = phydev->supported;
2115
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002116 return 0;
2117}
2118
2119static void tg3_phy_start(struct tg3 *tp)
2120{
2121 struct phy_device *phydev;
2122
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002123 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002124 return;
2125
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002126 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002127
Matt Carlson80096062010-08-02 11:26:06 +00002128 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
2129 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00002130 phydev->speed = tp->link_config.speed;
2131 phydev->duplex = tp->link_config.duplex;
2132 phydev->autoneg = tp->link_config.autoneg;
2133 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002134 }
2135
2136 phy_start(phydev);
2137
2138 phy_start_aneg(phydev);
2139}
2140
2141static void tg3_phy_stop(struct tg3 *tp)
2142{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002143 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002144 return;
2145
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002146 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002147}
2148
2149static void tg3_phy_fini(struct tg3 *tp)
2150{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002151 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002152 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002153 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002154 }
2155}
2156
Matt Carlson941ec902011-08-19 13:58:23 +00002157static int tg3_phy_set_extloopbk(struct tg3 *tp)
2158{
2159 int err;
2160 u32 val;
2161
2162 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
2163 return 0;
2164
2165 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
2166 /* Cannot do read-modify-write on 5401 */
2167 err = tg3_phy_auxctl_write(tp,
2168 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2169 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
2170 0x4c20);
2171 goto done;
2172 }
2173
2174 err = tg3_phy_auxctl_read(tp,
2175 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2176 if (err)
2177 return err;
2178
2179 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
2180 err = tg3_phy_auxctl_write(tp,
2181 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
2182
2183done:
2184 return err;
2185}
2186
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002187static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
2188{
2189 u32 phytest;
2190
2191 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2192 u32 phy;
2193
2194 tg3_writephy(tp, MII_TG3_FET_TEST,
2195 phytest | MII_TG3_FET_SHADOW_EN);
2196 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
2197 if (enable)
2198 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
2199 else
2200 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
2201 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
2202 }
2203 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2204 }
2205}
2206
Matt Carlson6833c042008-11-21 17:18:59 -08002207static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
2208{
2209 u32 reg;
2210
Joe Perches63c3a662011-04-26 08:12:10 +00002211 if (!tg3_flag(tp, 5705_PLUS) ||
2212 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002213 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08002214 return;
2215
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002216 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002217 tg3_phy_fet_toggle_apd(tp, enable);
2218 return;
2219 }
2220
Matt Carlson6833c042008-11-21 17:18:59 -08002221 reg = MII_TG3_MISC_SHDW_WREN |
2222 MII_TG3_MISC_SHDW_SCR5_SEL |
2223 MII_TG3_MISC_SHDW_SCR5_LPED |
2224 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
2225 MII_TG3_MISC_SHDW_SCR5_SDTL |
2226 MII_TG3_MISC_SHDW_SCR5_C125OE;
Joe Perches41535772013-02-16 11:20:04 +00002227 if (tg3_asic_rev(tp) != ASIC_REV_5784 || !enable)
Matt Carlson6833c042008-11-21 17:18:59 -08002228 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2229
2230 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2231
2232
2233 reg = MII_TG3_MISC_SHDW_WREN |
2234 MII_TG3_MISC_SHDW_APD_SEL |
2235 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2236 if (enable)
2237 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2238
2239 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2240}
2241
Joe Perches953c96e2013-04-09 10:18:14 +00002242static void tg3_phy_toggle_automdix(struct tg3 *tp, bool enable)
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002243{
2244 u32 phy;
2245
Joe Perches63c3a662011-04-26 08:12:10 +00002246 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002247 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002248 return;
2249
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002250 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002251 u32 ephy;
2252
Matt Carlson535ef6e2009-08-25 10:09:36 +00002253 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2254 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2255
2256 tg3_writephy(tp, MII_TG3_FET_TEST,
2257 ephy | MII_TG3_FET_SHADOW_EN);
2258 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002259 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002260 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002261 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002262 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2263 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002264 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002265 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002266 }
2267 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002268 int ret;
2269
2270 ret = tg3_phy_auxctl_read(tp,
2271 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2272 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002273 if (enable)
2274 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2275 else
2276 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002277 tg3_phy_auxctl_write(tp,
2278 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002279 }
2280 }
2281}
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283static void tg3_phy_set_wirespeed(struct tg3 *tp)
2284{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002285 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 u32 val;
2287
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002288 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return;
2290
Matt Carlson15ee95c2011-04-20 07:57:40 +00002291 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2292 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002293 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2294 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295}
2296
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002297static void tg3_phy_apply_otp(struct tg3 *tp)
2298{
2299 u32 otp, phy;
2300
2301 if (!tp->phy_otp)
2302 return;
2303
2304 otp = tp->phy_otp;
2305
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002306 if (tg3_phy_toggle_auxctl_smdsp(tp, true))
Matt Carlson1d36ba42011-04-20 07:57:42 +00002307 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002308
2309 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2310 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2311 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2312
2313 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2314 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2315 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2316
2317 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2318 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2319 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2320
2321 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2322 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2323
2324 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2325 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2326
2327 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2328 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2329 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2330
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002331 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002332}
2333
Nithin Sujir400dfba2013-05-18 06:26:53 +00002334static void tg3_eee_pull_config(struct tg3 *tp, struct ethtool_eee *eee)
2335{
2336 u32 val;
2337 struct ethtool_eee *dest = &tp->eee;
2338
2339 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2340 return;
2341
2342 if (eee)
2343 dest = eee;
2344
2345 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, TG3_CL45_D7_EEERES_STAT, &val))
2346 return;
2347
2348 /* Pull eee_active */
2349 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2350 val == TG3_CL45_D7_EEERES_STAT_LP_100TX) {
2351 dest->eee_active = 1;
2352 } else
2353 dest->eee_active = 0;
2354
2355 /* Pull lp advertised settings */
2356 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE, &val))
2357 return;
2358 dest->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
2359
2360 /* Pull advertised and eee_enabled settings */
2361 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, &val))
2362 return;
2363 dest->eee_enabled = !!val;
2364 dest->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
2365
2366 /* Pull tx_lpi_enabled */
2367 val = tr32(TG3_CPMU_EEE_MODE);
2368 dest->tx_lpi_enabled = !!(val & TG3_CPMU_EEEMD_LPI_IN_TX);
2369
2370 /* Pull lpi timer value */
2371 dest->tx_lpi_timer = tr32(TG3_CPMU_EEE_DBTMR1) & 0xffff;
2372}
2373
Joe Perches953c96e2013-04-09 10:18:14 +00002374static void tg3_phy_eee_adjust(struct tg3 *tp, bool current_link_up)
Matt Carlson52b02d02010-10-14 10:37:41 +00002375{
2376 u32 val;
2377
2378 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2379 return;
2380
2381 tp->setlpicnt = 0;
2382
2383 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
Joe Perches953c96e2013-04-09 10:18:14 +00002384 current_link_up &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002385 tp->link_config.active_duplex == DUPLEX_FULL &&
2386 (tp->link_config.active_speed == SPEED_100 ||
2387 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002388 u32 eeectl;
2389
2390 if (tp->link_config.active_speed == SPEED_1000)
2391 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2392 else
2393 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2394
2395 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2396
Nithin Sujir400dfba2013-05-18 06:26:53 +00002397 tg3_eee_pull_config(tp, NULL);
2398 if (tp->eee.eee_active)
Matt Carlson52b02d02010-10-14 10:37:41 +00002399 tp->setlpicnt = 2;
2400 }
2401
2402 if (!tp->setlpicnt) {
Joe Perches953c96e2013-04-09 10:18:14 +00002403 if (current_link_up &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002404 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002405 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002406 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb715ce92011-07-20 10:20:52 +00002407 }
2408
Matt Carlson52b02d02010-10-14 10:37:41 +00002409 val = tr32(TG3_CPMU_EEE_MODE);
2410 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2411 }
2412}
2413
Matt Carlsonb0c59432011-05-19 12:12:48 +00002414static void tg3_phy_eee_enable(struct tg3 *tp)
2415{
2416 u32 val;
2417
2418 if (tp->link_config.active_speed == SPEED_1000 &&
Joe Perches41535772013-02-16 11:20:04 +00002419 (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2420 tg3_asic_rev(tp) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002421 tg3_flag(tp, 57765_CLASS)) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002422 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002423 val = MII_TG3_DSP_TAP26_ALNOKO |
2424 MII_TG3_DSP_TAP26_RMRXSTO;
2425 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002426 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002427 }
2428
2429 val = tr32(TG3_CPMU_EEE_MODE);
2430 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2431}
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433static int tg3_wait_macro_done(struct tg3 *tp)
2434{
2435 int limit = 100;
2436
2437 while (limit--) {
2438 u32 tmp32;
2439
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002440 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if ((tmp32 & 0x1000) == 0)
2442 break;
2443 }
2444 }
Roel Kluind4675b52009-02-12 16:33:27 -08002445 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return -EBUSY;
2447
2448 return 0;
2449}
2450
2451static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2452{
2453 static const u32 test_pat[4][6] = {
2454 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2455 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2456 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2457 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2458 };
2459 int chan;
2460
2461 for (chan = 0; chan < 4; chan++) {
2462 int i;
2463
2464 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2465 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002466 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 for (i = 0; i < 6; i++)
2469 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2470 test_pat[chan][i]);
2471
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002472 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 if (tg3_wait_macro_done(tp)) {
2474 *resetp = 1;
2475 return -EBUSY;
2476 }
2477
2478 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2479 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002480 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (tg3_wait_macro_done(tp)) {
2482 *resetp = 1;
2483 return -EBUSY;
2484 }
2485
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002486 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 if (tg3_wait_macro_done(tp)) {
2488 *resetp = 1;
2489 return -EBUSY;
2490 }
2491
2492 for (i = 0; i < 6; i += 2) {
2493 u32 low, high;
2494
2495 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2496 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2497 tg3_wait_macro_done(tp)) {
2498 *resetp = 1;
2499 return -EBUSY;
2500 }
2501 low &= 0x7fff;
2502 high &= 0x000f;
2503 if (low != test_pat[chan][i] ||
2504 high != test_pat[chan][i+1]) {
2505 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2506 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2507 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2508
2509 return -EBUSY;
2510 }
2511 }
2512 }
2513
2514 return 0;
2515}
2516
2517static int tg3_phy_reset_chanpat(struct tg3 *tp)
2518{
2519 int chan;
2520
2521 for (chan = 0; chan < 4; chan++) {
2522 int i;
2523
2524 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2525 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002526 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 for (i = 0; i < 6; i++)
2528 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002529 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 if (tg3_wait_macro_done(tp))
2531 return -EBUSY;
2532 }
2533
2534 return 0;
2535}
2536
2537static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2538{
2539 u32 reg32, phy9_orig;
2540 int retries, do_phy_reset, err;
2541
2542 retries = 10;
2543 do_phy_reset = 1;
2544 do {
2545 if (do_phy_reset) {
2546 err = tg3_bmcr_reset(tp);
2547 if (err)
2548 return err;
2549 do_phy_reset = 0;
2550 }
2551
2552 /* Disable transmitter and interrupt. */
2553 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2554 continue;
2555
2556 reg32 |= 0x3000;
2557 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2558
2559 /* Set full-duplex, 1000 mbps. */
2560 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002561 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
2563 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002564 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 continue;
2566
Matt Carlson221c5632011-06-13 13:39:01 +00002567 tg3_writephy(tp, MII_CTRL1000,
2568 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002570 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002571 if (err)
2572 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
2574 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002575 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
2577 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2578 if (!err)
2579 break;
2580 } while (--retries);
2581
2582 err = tg3_phy_reset_chanpat(tp);
2583 if (err)
2584 return err;
2585
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002586 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002589 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002591 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Matt Carlson221c5632011-06-13 13:39:01 +00002593 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
2595 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2596 reg32 &= ~0x3000;
2597 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2598 } else if (!err)
2599 err = -EBUSY;
2600
2601 return err;
2602}
2603
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002604static void tg3_carrier_off(struct tg3 *tp)
2605{
2606 netif_carrier_off(tp->dev);
2607 tp->link_up = false;
2608}
2609
Nithin Sujirce20f162013-04-09 08:48:04 +00002610static void tg3_warn_mgmt_link_flap(struct tg3 *tp)
2611{
2612 if (tg3_flag(tp, ENABLE_ASF))
2613 netdev_warn(tp->dev,
2614 "Management side-band traffic will be interrupted during phy settings change\n");
2615}
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617/* This will reset the tigon3 PHY if there is no valid
2618 * link unless the FORCE argument is non-zero.
2619 */
2620static int tg3_phy_reset(struct tg3 *tp)
2621{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002622 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 int err;
2624
Joe Perches41535772013-02-16 11:20:04 +00002625 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002626 val = tr32(GRC_MISC_CFG);
2627 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2628 udelay(40);
2629 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002630 err = tg3_readphy(tp, MII_BMSR, &val);
2631 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 if (err != 0)
2633 return -EBUSY;
2634
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002635 if (netif_running(tp->dev) && tp->link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00002636 netif_carrier_off(tp->dev);
Michael Chanc8e1e822006-04-29 18:55:17 -07002637 tg3_link_report(tp);
2638 }
2639
Joe Perches41535772013-02-16 11:20:04 +00002640 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
2641 tg3_asic_rev(tp) == ASIC_REV_5704 ||
2642 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 err = tg3_phy_reset_5703_4_5(tp);
2644 if (err)
2645 return err;
2646 goto out;
2647 }
2648
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002649 cpmuctrl = 0;
Joe Perches41535772013-02-16 11:20:04 +00002650 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
2651 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002652 cpmuctrl = tr32(TG3_CPMU_CTRL);
2653 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2654 tw32(TG3_CPMU_CTRL,
2655 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2656 }
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 err = tg3_bmcr_reset(tp);
2659 if (err)
2660 return err;
2661
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002662 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002663 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2664 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002665
2666 tw32(TG3_CPMU_CTRL, cpmuctrl);
2667 }
2668
Joe Perches41535772013-02-16 11:20:04 +00002669 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
2670 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002671 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2672 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2673 CPMU_LSPD_1000MB_MACCLK_12_5) {
2674 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2675 udelay(40);
2676 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2677 }
2678 }
2679
Joe Perches63c3a662011-04-26 08:12:10 +00002680 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002681 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002682 return 0;
2683
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002684 tg3_phy_apply_otp(tp);
2685
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002686 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002687 tg3_phy_toggle_apd(tp, true);
2688 else
2689 tg3_phy_toggle_apd(tp, false);
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002692 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002693 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002694 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2695 tg3_phydsp_write(tp, 0x000a, 0x0323);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002696 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002698
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002699 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002700 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2701 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002703
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002704 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002705 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002706 tg3_phydsp_write(tp, 0x000a, 0x310b);
2707 tg3_phydsp_write(tp, 0x201f, 0x9506);
2708 tg3_phydsp_write(tp, 0x401f, 0x14e2);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002709 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002710 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002711 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002712 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002713 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2714 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2715 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2716 tg3_writephy(tp, MII_TG3_TEST1,
2717 MII_TG3_TEST1_TRIM_EN | 0x4);
2718 } else
2719 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2720
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002721 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002722 }
Michael Chanc424cb22006-04-29 18:56:34 -07002723 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 /* Set Extended packet length bit (bit 14) on all chips that */
2726 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002727 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002729 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002730 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002732 err = tg3_phy_auxctl_read(tp,
2733 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2734 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002735 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2736 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
2738
2739 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2740 * jumbo frames transmission.
2741 */
Joe Perches63c3a662011-04-26 08:12:10 +00002742 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002743 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002744 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002745 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
2747
Joe Perches41535772013-02-16 11:20:04 +00002748 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002749 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002750 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002751 }
2752
Joe Perches41535772013-02-16 11:20:04 +00002753 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5762_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00002754 tg3_phydsp_write(tp, 0xffb, 0x4000);
2755
Joe Perches953c96e2013-04-09 10:18:14 +00002756 tg3_phy_toggle_automdix(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 tg3_phy_set_wirespeed(tp);
2758 return 0;
2759}
2760
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002761#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2762#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2763#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2764 TG3_GPIO_MSG_NEED_VAUX)
2765#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2766 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2767 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2768 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2769 (TG3_GPIO_MSG_DRVR_PRES << 12))
2770
2771#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2772 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2773 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2774 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2775 (TG3_GPIO_MSG_NEED_VAUX << 12))
2776
2777static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2778{
2779 u32 status, shift;
2780
Joe Perches41535772013-02-16 11:20:04 +00002781 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2782 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002783 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2784 else
2785 status = tr32(TG3_CPMU_DRV_STATUS);
2786
2787 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2788 status &= ~(TG3_GPIO_MSG_MASK << shift);
2789 status |= (newstat << shift);
2790
Joe Perches41535772013-02-16 11:20:04 +00002791 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2792 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002793 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2794 else
2795 tw32(TG3_CPMU_DRV_STATUS, status);
2796
2797 return status >> TG3_APE_GPIO_MSG_SHIFT;
2798}
2799
Matt Carlson520b2752011-06-13 13:39:02 +00002800static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2801{
2802 if (!tg3_flag(tp, IS_NIC))
2803 return 0;
2804
Joe Perches41535772013-02-16 11:20:04 +00002805 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2806 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2807 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002808 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2809 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002810
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002811 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2812
2813 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2814 TG3_GRC_LCLCTL_PWRSW_DELAY);
2815
2816 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2817 } else {
2818 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2819 TG3_GRC_LCLCTL_PWRSW_DELAY);
2820 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002821
Matt Carlson520b2752011-06-13 13:39:02 +00002822 return 0;
2823}
2824
2825static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2826{
2827 u32 grc_local_ctrl;
2828
2829 if (!tg3_flag(tp, IS_NIC) ||
Joe Perches41535772013-02-16 11:20:04 +00002830 tg3_asic_rev(tp) == ASIC_REV_5700 ||
2831 tg3_asic_rev(tp) == ASIC_REV_5701)
Matt Carlson520b2752011-06-13 13:39:02 +00002832 return;
2833
2834 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2835
2836 tw32_wait_f(GRC_LOCAL_CTRL,
2837 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2838 TG3_GRC_LCLCTL_PWRSW_DELAY);
2839
2840 tw32_wait_f(GRC_LOCAL_CTRL,
2841 grc_local_ctrl,
2842 TG3_GRC_LCLCTL_PWRSW_DELAY);
2843
2844 tw32_wait_f(GRC_LOCAL_CTRL,
2845 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2846 TG3_GRC_LCLCTL_PWRSW_DELAY);
2847}
2848
2849static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2850{
2851 if (!tg3_flag(tp, IS_NIC))
2852 return;
2853
Joe Perches41535772013-02-16 11:20:04 +00002854 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
2855 tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson520b2752011-06-13 13:39:02 +00002856 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2857 (GRC_LCLCTRL_GPIO_OE0 |
2858 GRC_LCLCTRL_GPIO_OE1 |
2859 GRC_LCLCTRL_GPIO_OE2 |
2860 GRC_LCLCTRL_GPIO_OUTPUT0 |
2861 GRC_LCLCTRL_GPIO_OUTPUT1),
2862 TG3_GRC_LCLCTL_PWRSW_DELAY);
2863 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2864 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2865 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2866 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2867 GRC_LCLCTRL_GPIO_OE1 |
2868 GRC_LCLCTRL_GPIO_OE2 |
2869 GRC_LCLCTRL_GPIO_OUTPUT0 |
2870 GRC_LCLCTRL_GPIO_OUTPUT1 |
2871 tp->grc_local_ctrl;
2872 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2873 TG3_GRC_LCLCTL_PWRSW_DELAY);
2874
2875 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2876 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2877 TG3_GRC_LCLCTL_PWRSW_DELAY);
2878
2879 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2880 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2881 TG3_GRC_LCLCTL_PWRSW_DELAY);
2882 } else {
2883 u32 no_gpio2;
2884 u32 grc_local_ctrl = 0;
2885
2886 /* Workaround to prevent overdrawing Amps. */
Joe Perches41535772013-02-16 11:20:04 +00002887 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Matt Carlson520b2752011-06-13 13:39:02 +00002888 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2889 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2890 grc_local_ctrl,
2891 TG3_GRC_LCLCTL_PWRSW_DELAY);
2892 }
2893
2894 /* On 5753 and variants, GPIO2 cannot be used. */
2895 no_gpio2 = tp->nic_sram_data_cfg &
2896 NIC_SRAM_DATA_CFG_NO_GPIO2;
2897
2898 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2899 GRC_LCLCTRL_GPIO_OE1 |
2900 GRC_LCLCTRL_GPIO_OE2 |
2901 GRC_LCLCTRL_GPIO_OUTPUT1 |
2902 GRC_LCLCTRL_GPIO_OUTPUT2;
2903 if (no_gpio2) {
2904 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2905 GRC_LCLCTRL_GPIO_OUTPUT2);
2906 }
2907 tw32_wait_f(GRC_LOCAL_CTRL,
2908 tp->grc_local_ctrl | grc_local_ctrl,
2909 TG3_GRC_LCLCTL_PWRSW_DELAY);
2910
2911 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2912
2913 tw32_wait_f(GRC_LOCAL_CTRL,
2914 tp->grc_local_ctrl | grc_local_ctrl,
2915 TG3_GRC_LCLCTL_PWRSW_DELAY);
2916
2917 if (!no_gpio2) {
2918 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2919 tw32_wait_f(GRC_LOCAL_CTRL,
2920 tp->grc_local_ctrl | grc_local_ctrl,
2921 TG3_GRC_LCLCTL_PWRSW_DELAY);
2922 }
2923 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002924}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002925
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002926static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002927{
2928 u32 msg = 0;
2929
2930 /* Serialize power state transitions */
2931 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2932 return;
2933
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002934 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002935 msg = TG3_GPIO_MSG_NEED_VAUX;
2936
2937 msg = tg3_set_function_status(tp, msg);
2938
2939 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2940 goto done;
2941
2942 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2943 tg3_pwrsrc_switch_to_vaux(tp);
2944 else
2945 tg3_pwrsrc_die_with_vmain(tp);
2946
2947done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002948 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002949}
2950
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002951static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952{
Matt Carlson683644b2011-03-09 16:58:23 +00002953 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Matt Carlson334355a2010-01-20 16:58:10 +00002955 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002956 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 return;
2958
Joe Perches41535772013-02-16 11:20:04 +00002959 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2960 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2961 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002962 tg3_frob_aux_power_5717(tp, include_wol ?
2963 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002964 return;
2965 }
2966
2967 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002968 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002970 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002971
Michael Chanbc1c7562006-03-20 17:48:03 -08002972 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002973 if (dev_peer) {
2974 struct tg3 *tp_peer = netdev_priv(dev_peer);
2975
Joe Perches63c3a662011-04-26 08:12:10 +00002976 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002977 return;
2978
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002979 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002980 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002981 need_vaux = true;
2982 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002985 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2986 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002987 need_vaux = true;
2988
Matt Carlson520b2752011-06-13 13:39:02 +00002989 if (need_vaux)
2990 tg3_pwrsrc_switch_to_vaux(tp);
2991 else
2992 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993}
2994
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002995static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2996{
2997 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2998 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002999 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003000 if (speed != SPEED_10)
3001 return 1;
3002 } else if (speed == SPEED_10)
3003 return 1;
3004
3005 return 0;
3006}
3007
Nithin Sujir44f3b502013-05-13 11:04:15 +00003008static bool tg3_phy_power_bug(struct tg3 *tp)
3009{
3010 switch (tg3_asic_rev(tp)) {
3011 case ASIC_REV_5700:
3012 case ASIC_REV_5704:
3013 return true;
3014 case ASIC_REV_5780:
3015 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
3016 return true;
3017 return false;
3018 case ASIC_REV_5717:
3019 if (!tp->pci_fn)
3020 return true;
3021 return false;
3022 case ASIC_REV_5719:
3023 case ASIC_REV_5720:
3024 if ((tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
3025 !tp->pci_fn)
3026 return true;
3027 return false;
3028 }
3029
3030 return false;
3031}
3032
Matt Carlson0a459aa2008-11-03 16:54:15 -08003033static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08003034{
Matt Carlsonce057f02007-11-12 21:08:03 -08003035 u32 val;
3036
Nithin Sujir942d1af2013-04-09 08:48:07 +00003037 if (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)
3038 return;
3039
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003040 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +00003041 if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Michael Chan51297242007-02-13 12:17:57 -08003042 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3043 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
3044
3045 sg_dig_ctrl |=
3046 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
3047 tw32(SG_DIG_CTRL, sg_dig_ctrl);
3048 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
3049 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003050 return;
Michael Chan51297242007-02-13 12:17:57 -08003051 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003052
Joe Perches41535772013-02-16 11:20:04 +00003053 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08003054 tg3_bmcr_reset(tp);
3055 val = tr32(GRC_MISC_CFG);
3056 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
3057 udelay(40);
3058 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003059 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00003060 u32 phytest;
3061 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
3062 u32 phy;
3063
3064 tg3_writephy(tp, MII_ADVERTISE, 0);
3065 tg3_writephy(tp, MII_BMCR,
3066 BMCR_ANENABLE | BMCR_ANRESTART);
3067
3068 tg3_writephy(tp, MII_TG3_FET_TEST,
3069 phytest | MII_TG3_FET_SHADOW_EN);
3070 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
3071 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
3072 tg3_writephy(tp,
3073 MII_TG3_FET_SHDW_AUXMODE4,
3074 phy);
3075 }
3076 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
3077 }
3078 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003079 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07003080 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3081 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003082
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003083 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3084 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
3085 MII_TG3_AUXCTL_PCTL_VREG_11V;
3086 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07003087 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003088
Michael Chan15c3b692006-03-22 01:06:52 -08003089 /* The PHY should not be powered down on some chips because
3090 * of bugs.
3091 */
Nithin Sujir44f3b502013-05-13 11:04:15 +00003092 if (tg3_phy_power_bug(tp))
Michael Chan15c3b692006-03-22 01:06:52 -08003093 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08003094
Joe Perches41535772013-02-16 11:20:04 +00003095 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
3096 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08003097 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
3098 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
3099 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
3100 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
3101 }
3102
Michael Chan15c3b692006-03-22 01:06:52 -08003103 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
3104}
3105
Matt Carlson3f007892008-11-03 16:51:36 -08003106/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003107static int tg3_nvram_lock(struct tg3 *tp)
3108{
Joe Perches63c3a662011-04-26 08:12:10 +00003109 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003110 int i;
3111
3112 if (tp->nvram_lock_cnt == 0) {
3113 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
3114 for (i = 0; i < 8000; i++) {
3115 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
3116 break;
3117 udelay(20);
3118 }
3119 if (i == 8000) {
3120 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
3121 return -ENODEV;
3122 }
3123 }
3124 tp->nvram_lock_cnt++;
3125 }
3126 return 0;
3127}
3128
3129/* tp->lock is held. */
3130static void tg3_nvram_unlock(struct tg3 *tp)
3131{
Joe Perches63c3a662011-04-26 08:12:10 +00003132 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003133 if (tp->nvram_lock_cnt > 0)
3134 tp->nvram_lock_cnt--;
3135 if (tp->nvram_lock_cnt == 0)
3136 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
3137 }
3138}
3139
3140/* tp->lock is held. */
3141static void tg3_enable_nvram_access(struct tg3 *tp)
3142{
Joe Perches63c3a662011-04-26 08:12:10 +00003143 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003144 u32 nvaccess = tr32(NVRAM_ACCESS);
3145
3146 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
3147 }
3148}
3149
3150/* tp->lock is held. */
3151static void tg3_disable_nvram_access(struct tg3 *tp)
3152{
Joe Perches63c3a662011-04-26 08:12:10 +00003153 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003154 u32 nvaccess = tr32(NVRAM_ACCESS);
3155
3156 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
3157 }
3158}
3159
3160static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
3161 u32 offset, u32 *val)
3162{
3163 u32 tmp;
3164 int i;
3165
3166 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
3167 return -EINVAL;
3168
3169 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
3170 EEPROM_ADDR_DEVID_MASK |
3171 EEPROM_ADDR_READ);
3172 tw32(GRC_EEPROM_ADDR,
3173 tmp |
3174 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3175 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
3176 EEPROM_ADDR_ADDR_MASK) |
3177 EEPROM_ADDR_READ | EEPROM_ADDR_START);
3178
3179 for (i = 0; i < 1000; i++) {
3180 tmp = tr32(GRC_EEPROM_ADDR);
3181
3182 if (tmp & EEPROM_ADDR_COMPLETE)
3183 break;
3184 msleep(1);
3185 }
3186 if (!(tmp & EEPROM_ADDR_COMPLETE))
3187 return -EBUSY;
3188
Matt Carlson62cedd12009-04-20 14:52:29 -07003189 tmp = tr32(GRC_EEPROM_DATA);
3190
3191 /*
3192 * The data will always be opposite the native endian
3193 * format. Perform a blind byteswap to compensate.
3194 */
3195 *val = swab32(tmp);
3196
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003197 return 0;
3198}
3199
3200#define NVRAM_CMD_TIMEOUT 10000
3201
3202static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
3203{
3204 int i;
3205
3206 tw32(NVRAM_CMD, nvram_cmd);
3207 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
3208 udelay(10);
3209 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
3210 udelay(10);
3211 break;
3212 }
3213 }
3214
3215 if (i == NVRAM_CMD_TIMEOUT)
3216 return -EBUSY;
3217
3218 return 0;
3219}
3220
3221static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
3222{
Joe Perches63c3a662011-04-26 08:12:10 +00003223 if (tg3_flag(tp, NVRAM) &&
3224 tg3_flag(tp, NVRAM_BUFFERED) &&
3225 tg3_flag(tp, FLASH) &&
3226 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003227 (tp->nvram_jedecnum == JEDEC_ATMEL))
3228
3229 addr = ((addr / tp->nvram_pagesize) <<
3230 ATMEL_AT45DB0X1B_PAGE_POS) +
3231 (addr % tp->nvram_pagesize);
3232
3233 return addr;
3234}
3235
3236static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
3237{
Joe Perches63c3a662011-04-26 08:12:10 +00003238 if (tg3_flag(tp, NVRAM) &&
3239 tg3_flag(tp, NVRAM_BUFFERED) &&
3240 tg3_flag(tp, FLASH) &&
3241 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003242 (tp->nvram_jedecnum == JEDEC_ATMEL))
3243
3244 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
3245 tp->nvram_pagesize) +
3246 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
3247
3248 return addr;
3249}
3250
Matt Carlsone4f34112009-02-25 14:25:00 +00003251/* NOTE: Data read in from NVRAM is byteswapped according to
3252 * the byteswapping settings for all other register accesses.
3253 * tg3 devices are BE devices, so on a BE machine, the data
3254 * returned will be exactly as it is seen in NVRAM. On a LE
3255 * machine, the 32-bit value will be byteswapped.
3256 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003257static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
3258{
3259 int ret;
3260
Joe Perches63c3a662011-04-26 08:12:10 +00003261 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003262 return tg3_nvram_read_using_eeprom(tp, offset, val);
3263
3264 offset = tg3_nvram_phys_addr(tp, offset);
3265
3266 if (offset > NVRAM_ADDR_MSK)
3267 return -EINVAL;
3268
3269 ret = tg3_nvram_lock(tp);
3270 if (ret)
3271 return ret;
3272
3273 tg3_enable_nvram_access(tp);
3274
3275 tw32(NVRAM_ADDR, offset);
3276 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
3277 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
3278
3279 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00003280 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003281
3282 tg3_disable_nvram_access(tp);
3283
3284 tg3_nvram_unlock(tp);
3285
3286 return ret;
3287}
3288
Matt Carlsona9dc5292009-02-25 14:25:30 +00003289/* Ensures NVRAM data is in bytestream format. */
3290static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003291{
3292 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00003293 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003294 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003295 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003296 return res;
3297}
3298
Matt Carlsondbe9b922012-02-13 10:20:09 +00003299static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
3300 u32 offset, u32 len, u8 *buf)
3301{
3302 int i, j, rc = 0;
3303 u32 val;
3304
3305 for (i = 0; i < len; i += 4) {
3306 u32 addr;
3307 __be32 data;
3308
3309 addr = offset + i;
3310
3311 memcpy(&data, buf + i, 4);
3312
3313 /*
3314 * The SEEPROM interface expects the data to always be opposite
3315 * the native endian format. We accomplish this by reversing
3316 * all the operations that would have been performed on the
3317 * data from a call to tg3_nvram_read_be32().
3318 */
3319 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3320
3321 val = tr32(GRC_EEPROM_ADDR);
3322 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3323
3324 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3325 EEPROM_ADDR_READ);
3326 tw32(GRC_EEPROM_ADDR, val |
3327 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3328 (addr & EEPROM_ADDR_ADDR_MASK) |
3329 EEPROM_ADDR_START |
3330 EEPROM_ADDR_WRITE);
3331
3332 for (j = 0; j < 1000; j++) {
3333 val = tr32(GRC_EEPROM_ADDR);
3334
3335 if (val & EEPROM_ADDR_COMPLETE)
3336 break;
3337 msleep(1);
3338 }
3339 if (!(val & EEPROM_ADDR_COMPLETE)) {
3340 rc = -EBUSY;
3341 break;
3342 }
3343 }
3344
3345 return rc;
3346}
3347
3348/* offset and length are dword aligned */
3349static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3350 u8 *buf)
3351{
3352 int ret = 0;
3353 u32 pagesize = tp->nvram_pagesize;
3354 u32 pagemask = pagesize - 1;
3355 u32 nvram_cmd;
3356 u8 *tmp;
3357
3358 tmp = kmalloc(pagesize, GFP_KERNEL);
3359 if (tmp == NULL)
3360 return -ENOMEM;
3361
3362 while (len) {
3363 int j;
3364 u32 phy_addr, page_off, size;
3365
3366 phy_addr = offset & ~pagemask;
3367
3368 for (j = 0; j < pagesize; j += 4) {
3369 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3370 (__be32 *) (tmp + j));
3371 if (ret)
3372 break;
3373 }
3374 if (ret)
3375 break;
3376
3377 page_off = offset & pagemask;
3378 size = pagesize;
3379 if (len < size)
3380 size = len;
3381
3382 len -= size;
3383
3384 memcpy(tmp + page_off, buf, size);
3385
3386 offset = offset + (pagesize - page_off);
3387
3388 tg3_enable_nvram_access(tp);
3389
3390 /*
3391 * Before we can erase the flash page, we need
3392 * to issue a special "write enable" command.
3393 */
3394 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3395
3396 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3397 break;
3398
3399 /* Erase the target page */
3400 tw32(NVRAM_ADDR, phy_addr);
3401
3402 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3403 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3404
3405 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3406 break;
3407
3408 /* Issue another write enable to start the write. */
3409 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3410
3411 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3412 break;
3413
3414 for (j = 0; j < pagesize; j += 4) {
3415 __be32 data;
3416
3417 data = *((__be32 *) (tmp + j));
3418
3419 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3420
3421 tw32(NVRAM_ADDR, phy_addr + j);
3422
3423 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3424 NVRAM_CMD_WR;
3425
3426 if (j == 0)
3427 nvram_cmd |= NVRAM_CMD_FIRST;
3428 else if (j == (pagesize - 4))
3429 nvram_cmd |= NVRAM_CMD_LAST;
3430
3431 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3432 if (ret)
3433 break;
3434 }
3435 if (ret)
3436 break;
3437 }
3438
3439 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3440 tg3_nvram_exec_cmd(tp, nvram_cmd);
3441
3442 kfree(tmp);
3443
3444 return ret;
3445}
3446
3447/* offset and length are dword aligned */
3448static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3449 u8 *buf)
3450{
3451 int i, ret = 0;
3452
3453 for (i = 0; i < len; i += 4, offset += 4) {
3454 u32 page_off, phy_addr, nvram_cmd;
3455 __be32 data;
3456
3457 memcpy(&data, buf + i, 4);
3458 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3459
3460 page_off = offset % tp->nvram_pagesize;
3461
3462 phy_addr = tg3_nvram_phys_addr(tp, offset);
3463
Matt Carlsondbe9b922012-02-13 10:20:09 +00003464 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3465
3466 if (page_off == 0 || i == 0)
3467 nvram_cmd |= NVRAM_CMD_FIRST;
3468 if (page_off == (tp->nvram_pagesize - 4))
3469 nvram_cmd |= NVRAM_CMD_LAST;
3470
3471 if (i == (len - 4))
3472 nvram_cmd |= NVRAM_CMD_LAST;
3473
Matt Carlson42278222012-02-13 15:20:11 +00003474 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3475 !tg3_flag(tp, FLASH) ||
3476 !tg3_flag(tp, 57765_PLUS))
3477 tw32(NVRAM_ADDR, phy_addr);
3478
Joe Perches41535772013-02-16 11:20:04 +00003479 if (tg3_asic_rev(tp) != ASIC_REV_5752 &&
Matt Carlsondbe9b922012-02-13 10:20:09 +00003480 !tg3_flag(tp, 5755_PLUS) &&
3481 (tp->nvram_jedecnum == JEDEC_ST) &&
3482 (nvram_cmd & NVRAM_CMD_FIRST)) {
3483 u32 cmd;
3484
3485 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3486 ret = tg3_nvram_exec_cmd(tp, cmd);
3487 if (ret)
3488 break;
3489 }
3490 if (!tg3_flag(tp, FLASH)) {
3491 /* We always do complete word writes to eeprom. */
3492 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3493 }
3494
3495 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3496 if (ret)
3497 break;
3498 }
3499 return ret;
3500}
3501
3502/* offset and length are dword aligned */
3503static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3504{
3505 int ret;
3506
3507 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3508 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3509 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3510 udelay(40);
3511 }
3512
3513 if (!tg3_flag(tp, NVRAM)) {
3514 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3515 } else {
3516 u32 grc_mode;
3517
3518 ret = tg3_nvram_lock(tp);
3519 if (ret)
3520 return ret;
3521
3522 tg3_enable_nvram_access(tp);
3523 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3524 tw32(NVRAM_WRITE1, 0x406);
3525
3526 grc_mode = tr32(GRC_MODE);
3527 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3528
3529 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3530 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3531 buf);
3532 } else {
3533 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3534 buf);
3535 }
3536
3537 grc_mode = tr32(GRC_MODE);
3538 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3539
3540 tg3_disable_nvram_access(tp);
3541 tg3_nvram_unlock(tp);
3542 }
3543
3544 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3545 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3546 udelay(40);
3547 }
3548
3549 return ret;
3550}
3551
Matt Carlson997b4f12011-08-31 11:44:53 +00003552#define RX_CPU_SCRATCH_BASE 0x30000
3553#define RX_CPU_SCRATCH_SIZE 0x04000
3554#define TX_CPU_SCRATCH_BASE 0x34000
3555#define TX_CPU_SCRATCH_SIZE 0x04000
3556
3557/* tp->lock is held. */
Nithin Sujir837c45b2013-03-06 17:02:30 +00003558static int tg3_pause_cpu(struct tg3 *tp, u32 cpu_base)
Matt Carlson997b4f12011-08-31 11:44:53 +00003559{
3560 int i;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003561 const int iters = 10000;
Matt Carlson997b4f12011-08-31 11:44:53 +00003562
Nithin Sujir837c45b2013-03-06 17:02:30 +00003563 for (i = 0; i < iters; i++) {
3564 tw32(cpu_base + CPU_STATE, 0xffffffff);
3565 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3566 if (tr32(cpu_base + CPU_MODE) & CPU_MODE_HALT)
3567 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +08003568 if (pci_channel_offline(tp->pdev))
3569 return -EBUSY;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003570 }
3571
3572 return (i == iters) ? -EBUSY : 0;
3573}
3574
3575/* tp->lock is held. */
3576static int tg3_rxcpu_pause(struct tg3 *tp)
3577{
3578 int rc = tg3_pause_cpu(tp, RX_CPU_BASE);
3579
3580 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3581 tw32_f(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3582 udelay(10);
3583
3584 return rc;
3585}
3586
3587/* tp->lock is held. */
3588static int tg3_txcpu_pause(struct tg3 *tp)
3589{
3590 return tg3_pause_cpu(tp, TX_CPU_BASE);
3591}
3592
3593/* tp->lock is held. */
3594static void tg3_resume_cpu(struct tg3 *tp, u32 cpu_base)
3595{
3596 tw32(cpu_base + CPU_STATE, 0xffffffff);
3597 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3598}
3599
3600/* tp->lock is held. */
3601static void tg3_rxcpu_resume(struct tg3 *tp)
3602{
3603 tg3_resume_cpu(tp, RX_CPU_BASE);
3604}
3605
3606/* tp->lock is held. */
3607static int tg3_halt_cpu(struct tg3 *tp, u32 cpu_base)
3608{
3609 int rc;
3610
3611 BUG_ON(cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Matt Carlson997b4f12011-08-31 11:44:53 +00003612
Joe Perches41535772013-02-16 11:20:04 +00003613 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003614 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3615
3616 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3617 return 0;
3618 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003619 if (cpu_base == RX_CPU_BASE) {
3620 rc = tg3_rxcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003621 } else {
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00003622 /*
3623 * There is only an Rx CPU for the 5750 derivative in the
3624 * BCM4785.
3625 */
3626 if (tg3_flag(tp, IS_SSB_CORE))
3627 return 0;
3628
Nithin Sujir837c45b2013-03-06 17:02:30 +00003629 rc = tg3_txcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003630 }
3631
Nithin Sujir837c45b2013-03-06 17:02:30 +00003632 if (rc) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003633 netdev_err(tp->dev, "%s timed out, %s CPU\n",
Nithin Sujir837c45b2013-03-06 17:02:30 +00003634 __func__, cpu_base == RX_CPU_BASE ? "RX" : "TX");
Matt Carlson997b4f12011-08-31 11:44:53 +00003635 return -ENODEV;
3636 }
3637
3638 /* Clear firmware's nvram arbitration. */
3639 if (tg3_flag(tp, NVRAM))
3640 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3641 return 0;
3642}
3643
Nithin Sujir31f11a92013-03-06 17:02:33 +00003644static int tg3_fw_data_len(struct tg3 *tp,
3645 const struct tg3_firmware_hdr *fw_hdr)
3646{
3647 int fw_len;
3648
3649 /* Non fragmented firmware have one firmware header followed by a
3650 * contiguous chunk of data to be written. The length field in that
3651 * header is not the length of data to be written but the complete
3652 * length of the bss. The data length is determined based on
3653 * tp->fw->size minus headers.
3654 *
3655 * Fragmented firmware have a main header followed by multiple
3656 * fragments. Each fragment is identical to non fragmented firmware
3657 * with a firmware header followed by a contiguous chunk of data. In
3658 * the main header, the length field is unused and set to 0xffffffff.
3659 * In each fragment header the length is the entire size of that
3660 * fragment i.e. fragment data + header length. Data length is
3661 * therefore length field in the header minus TG3_FW_HDR_LEN.
3662 */
3663 if (tp->fw_len == 0xffffffff)
3664 fw_len = be32_to_cpu(fw_hdr->len);
3665 else
3666 fw_len = tp->fw->size;
3667
3668 return (fw_len - TG3_FW_HDR_LEN) / sizeof(u32);
3669}
3670
Matt Carlson997b4f12011-08-31 11:44:53 +00003671/* tp->lock is held. */
3672static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3673 u32 cpu_scratch_base, int cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003674 const struct tg3_firmware_hdr *fw_hdr)
Matt Carlson997b4f12011-08-31 11:44:53 +00003675{
Nithin Sujirc4dab502013-03-06 17:02:34 +00003676 int err, i;
Matt Carlson997b4f12011-08-31 11:44:53 +00003677 void (*write_op)(struct tg3 *, u32, u32);
Nithin Sujir31f11a92013-03-06 17:02:33 +00003678 int total_len = tp->fw->size;
Matt Carlson997b4f12011-08-31 11:44:53 +00003679
3680 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3681 netdev_err(tp->dev,
3682 "%s: Trying to load TX cpu firmware which is 5705\n",
3683 __func__);
3684 return -EINVAL;
3685 }
3686
Nithin Sujirc4dab502013-03-06 17:02:34 +00003687 if (tg3_flag(tp, 5705_PLUS) && tg3_asic_rev(tp) != ASIC_REV_57766)
Matt Carlson997b4f12011-08-31 11:44:53 +00003688 write_op = tg3_write_mem;
3689 else
3690 write_op = tg3_write_indirect_reg32;
3691
Nithin Sujirc4dab502013-03-06 17:02:34 +00003692 if (tg3_asic_rev(tp) != ASIC_REV_57766) {
3693 /* It is possible that bootcode is still loading at this point.
3694 * Get the nvram lock first before halting the cpu.
3695 */
3696 int lock_err = tg3_nvram_lock(tp);
3697 err = tg3_halt_cpu(tp, cpu_base);
3698 if (!lock_err)
3699 tg3_nvram_unlock(tp);
3700 if (err)
3701 goto out;
Matt Carlson997b4f12011-08-31 11:44:53 +00003702
Nithin Sujirc4dab502013-03-06 17:02:34 +00003703 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3704 write_op(tp, cpu_scratch_base + i, 0);
3705 tw32(cpu_base + CPU_STATE, 0xffffffff);
3706 tw32(cpu_base + CPU_MODE,
3707 tr32(cpu_base + CPU_MODE) | CPU_MODE_HALT);
3708 } else {
3709 /* Subtract additional main header for fragmented firmware and
3710 * advance to the first fragment
3711 */
3712 total_len -= TG3_FW_HDR_LEN;
3713 fw_hdr++;
3714 }
Nithin Sujir77997ea2013-03-06 17:02:32 +00003715
Nithin Sujir31f11a92013-03-06 17:02:33 +00003716 do {
3717 u32 *fw_data = (u32 *)(fw_hdr + 1);
3718 for (i = 0; i < tg3_fw_data_len(tp, fw_hdr); i++)
3719 write_op(tp, cpu_scratch_base +
3720 (be32_to_cpu(fw_hdr->base_addr) & 0xffff) +
3721 (i * sizeof(u32)),
3722 be32_to_cpu(fw_data[i]));
3723
3724 total_len -= be32_to_cpu(fw_hdr->len);
3725
3726 /* Advance to next fragment */
3727 fw_hdr = (struct tg3_firmware_hdr *)
3728 ((void *)fw_hdr + be32_to_cpu(fw_hdr->len));
3729 } while (total_len > 0);
Matt Carlson997b4f12011-08-31 11:44:53 +00003730
3731 err = 0;
3732
3733out:
3734 return err;
3735}
3736
3737/* tp->lock is held. */
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003738static int tg3_pause_cpu_and_set_pc(struct tg3 *tp, u32 cpu_base, u32 pc)
3739{
3740 int i;
3741 const int iters = 5;
3742
3743 tw32(cpu_base + CPU_STATE, 0xffffffff);
3744 tw32_f(cpu_base + CPU_PC, pc);
3745
3746 for (i = 0; i < iters; i++) {
3747 if (tr32(cpu_base + CPU_PC) == pc)
3748 break;
3749 tw32(cpu_base + CPU_STATE, 0xffffffff);
3750 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3751 tw32_f(cpu_base + CPU_PC, pc);
3752 udelay(1000);
3753 }
3754
3755 return (i == iters) ? -EBUSY : 0;
3756}
3757
3758/* tp->lock is held. */
Matt Carlson997b4f12011-08-31 11:44:53 +00003759static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3760{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003761 const struct tg3_firmware_hdr *fw_hdr;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003762 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003763
Nithin Sujir77997ea2013-03-06 17:02:32 +00003764 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003765
3766 /* Firmware blob starts with version numbers, followed by
3767 start address and length. We are setting complete length.
3768 length = end_address_of_bss - start_address_of_text.
3769 Remainder is the blob to be loaded contiguously
3770 from start address. */
3771
Matt Carlson997b4f12011-08-31 11:44:53 +00003772 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3773 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003774 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003775 if (err)
3776 return err;
3777
3778 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3779 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003780 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003781 if (err)
3782 return err;
3783
3784 /* Now startup only the RX cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003785 err = tg3_pause_cpu_and_set_pc(tp, RX_CPU_BASE,
3786 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003787 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003788 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3789 "should be %08x\n", __func__,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003790 tr32(RX_CPU_BASE + CPU_PC),
3791 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003792 return -ENODEV;
3793 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003794
3795 tg3_rxcpu_resume(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003796
3797 return 0;
3798}
3799
Nithin Sujirc4dab502013-03-06 17:02:34 +00003800static int tg3_validate_rxcpu_state(struct tg3 *tp)
3801{
3802 const int iters = 1000;
3803 int i;
3804 u32 val;
3805
3806 /* Wait for boot code to complete initialization and enter service
3807 * loop. It is then safe to download service patches
3808 */
3809 for (i = 0; i < iters; i++) {
3810 if (tr32(RX_CPU_HWBKPT) == TG3_SBROM_IN_SERVICE_LOOP)
3811 break;
3812
3813 udelay(10);
3814 }
3815
3816 if (i == iters) {
3817 netdev_err(tp->dev, "Boot code not ready for service patches\n");
3818 return -EBUSY;
3819 }
3820
3821 val = tg3_read_indirect_reg32(tp, TG3_57766_FW_HANDSHAKE);
3822 if (val & 0xff) {
3823 netdev_warn(tp->dev,
3824 "Other patches exist. Not downloading EEE patch\n");
3825 return -EEXIST;
3826 }
3827
3828 return 0;
3829}
3830
3831/* tp->lock is held. */
3832static void tg3_load_57766_firmware(struct tg3 *tp)
3833{
3834 struct tg3_firmware_hdr *fw_hdr;
3835
3836 if (!tg3_flag(tp, NO_NVRAM))
3837 return;
3838
3839 if (tg3_validate_rxcpu_state(tp))
3840 return;
3841
3842 if (!tp->fw)
3843 return;
3844
3845 /* This firmware blob has a different format than older firmware
3846 * releases as given below. The main difference is we have fragmented
3847 * data to be written to non-contiguous locations.
3848 *
3849 * In the beginning we have a firmware header identical to other
3850 * firmware which consists of version, base addr and length. The length
3851 * here is unused and set to 0xffffffff.
3852 *
3853 * This is followed by a series of firmware fragments which are
3854 * individually identical to previous firmware. i.e. they have the
3855 * firmware header and followed by data for that fragment. The version
3856 * field of the individual fragment header is unused.
3857 */
3858
3859 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
3860 if (be32_to_cpu(fw_hdr->base_addr) != TG3_57766_FW_BASE_ADDR)
3861 return;
3862
3863 if (tg3_rxcpu_pause(tp))
3864 return;
3865
3866 /* tg3_load_firmware_cpu() will always succeed for the 57766 */
3867 tg3_load_firmware_cpu(tp, 0, TG3_57766_FW_BASE_ADDR, 0, fw_hdr);
3868
3869 tg3_rxcpu_resume(tp);
3870}
3871
Matt Carlson997b4f12011-08-31 11:44:53 +00003872/* tp->lock is held. */
3873static int tg3_load_tso_firmware(struct tg3 *tp)
3874{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003875 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson997b4f12011-08-31 11:44:53 +00003876 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003877 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003878
Matt Carlson1caf13e2013-03-06 17:02:29 +00003879 if (!tg3_flag(tp, FW_TSO))
Matt Carlson997b4f12011-08-31 11:44:53 +00003880 return 0;
3881
Nithin Sujir77997ea2013-03-06 17:02:32 +00003882 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003883
3884 /* Firmware blob starts with version numbers, followed by
3885 start address and length. We are setting complete length.
3886 length = end_address_of_bss - start_address_of_text.
3887 Remainder is the blob to be loaded contiguously
3888 from start address. */
3889
Matt Carlson997b4f12011-08-31 11:44:53 +00003890 cpu_scratch_size = tp->fw_len;
Matt Carlson997b4f12011-08-31 11:44:53 +00003891
Joe Perches41535772013-02-16 11:20:04 +00003892 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003893 cpu_base = RX_CPU_BASE;
3894 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3895 } else {
3896 cpu_base = TX_CPU_BASE;
3897 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3898 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3899 }
3900
3901 err = tg3_load_firmware_cpu(tp, cpu_base,
3902 cpu_scratch_base, cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003903 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003904 if (err)
3905 return err;
3906
3907 /* Now startup the cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003908 err = tg3_pause_cpu_and_set_pc(tp, cpu_base,
3909 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003910 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003911 netdev_err(tp->dev,
3912 "%s fails to set CPU PC, is %08x should be %08x\n",
Nithin Sujir77997ea2013-03-06 17:02:32 +00003913 __func__, tr32(cpu_base + CPU_PC),
3914 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003915 return -ENODEV;
3916 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003917
3918 tg3_resume_cpu(tp, cpu_base);
Matt Carlson997b4f12011-08-31 11:44:53 +00003919 return 0;
3920}
3921
3922
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003923/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00003924static void __tg3_set_mac_addr(struct tg3 *tp, bool skip_mac_1)
Matt Carlson3f007892008-11-03 16:51:36 -08003925{
3926 u32 addr_high, addr_low;
3927 int i;
3928
3929 addr_high = ((tp->dev->dev_addr[0] << 8) |
3930 tp->dev->dev_addr[1]);
3931 addr_low = ((tp->dev->dev_addr[2] << 24) |
3932 (tp->dev->dev_addr[3] << 16) |
3933 (tp->dev->dev_addr[4] << 8) |
3934 (tp->dev->dev_addr[5] << 0));
3935 for (i = 0; i < 4; i++) {
3936 if (i == 1 && skip_mac_1)
3937 continue;
3938 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3939 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3940 }
3941
Joe Perches41535772013-02-16 11:20:04 +00003942 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
3943 tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson3f007892008-11-03 16:51:36 -08003944 for (i = 0; i < 12; i++) {
3945 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3946 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3947 }
3948 }
3949
3950 addr_high = (tp->dev->dev_addr[0] +
3951 tp->dev->dev_addr[1] +
3952 tp->dev->dev_addr[2] +
3953 tp->dev->dev_addr[3] +
3954 tp->dev->dev_addr[4] +
3955 tp->dev->dev_addr[5]) &
3956 TX_BACKOFF_SEED_MASK;
3957 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3958}
3959
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003960static void tg3_enable_register_access(struct tg3 *tp)
3961{
3962 /*
3963 * Make sure register accesses (indirect or otherwise) will function
3964 * correctly.
3965 */
3966 pci_write_config_dword(tp->pdev,
3967 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3968}
3969
3970static int tg3_power_up(struct tg3 *tp)
3971{
Matt Carlsonbed98292011-07-13 09:27:29 +00003972 int err;
3973
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003974 tg3_enable_register_access(tp);
3975
Matt Carlsonbed98292011-07-13 09:27:29 +00003976 err = pci_set_power_state(tp->pdev, PCI_D0);
3977 if (!err) {
3978 /* Switch out of Vaux if it is a NIC */
3979 tg3_pwrsrc_switch_to_vmain(tp);
3980 } else {
3981 netdev_err(tp->dev, "Transition to D0 failed\n");
3982 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003983
Matt Carlsonbed98292011-07-13 09:27:29 +00003984 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003985}
3986
Joe Perches953c96e2013-04-09 10:18:14 +00003987static int tg3_setup_phy(struct tg3 *, bool);
Matt Carlson4b409522012-02-13 10:20:11 +00003988
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003989static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990{
3991 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003992 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003994 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003995
3996 /* Restore the CLKREQ setting. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06003997 if (tg3_flag(tp, CLKREQ_BUG))
3998 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
3999 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
4002 tw32(TG3PCI_MISC_HOST_CTRL,
4003 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
4004
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004005 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004006 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004007
Joe Perches63c3a662011-04-26 08:12:10 +00004008 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08004009 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004010 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00004011 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004012 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08004013 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004014
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00004015 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004016
Matt Carlson80096062010-08-02 11:26:06 +00004017 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004018
Matt Carlsonc6700ce2012-02-13 15:20:15 +00004019 tp->link_config.speed = phydev->speed;
4020 tp->link_config.duplex = phydev->duplex;
4021 tp->link_config.autoneg = phydev->autoneg;
4022 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004023
4024 advertising = ADVERTISED_TP |
4025 ADVERTISED_Pause |
4026 ADVERTISED_Autoneg |
4027 ADVERTISED_10baseT_Half;
4028
Joe Perches63c3a662011-04-26 08:12:10 +00004029 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
4030 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004031 advertising |=
4032 ADVERTISED_100baseT_Half |
4033 ADVERTISED_100baseT_Full |
4034 ADVERTISED_10baseT_Full;
4035 else
4036 advertising |= ADVERTISED_10baseT_Full;
4037 }
4038
4039 phydev->advertising = advertising;
4040
4041 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08004042
4043 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00004044 if (phyid != PHY_ID_BCMAC131) {
4045 phyid &= PHY_BCM_OUI_MASK;
4046 if (phyid == PHY_BCM_OUI_1 ||
4047 phyid == PHY_BCM_OUI_2 ||
4048 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08004049 do_low_power = true;
4050 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004051 }
Matt Carlsondd477002008-05-25 23:45:58 -07004052 } else {
Matt Carlson20232762008-12-21 20:18:56 -08004053 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08004054
Matt Carlsonc6700ce2012-02-13 15:20:15 +00004055 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00004056 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Matt Carlson2855b9f2012-02-13 15:20:14 +00004058 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Joe Perches953c96e2013-04-09 10:18:14 +00004059 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 }
4061
Joe Perches41535772013-02-16 11:20:04 +00004062 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07004063 u32 val;
4064
4065 val = tr32(GRC_VCPU_EXT_CTRL);
4066 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00004067 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08004068 int i;
4069 u32 val;
4070
4071 for (i = 0; i < 200; i++) {
4072 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
4073 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
4074 break;
4075 msleep(1);
4076 }
4077 }
Joe Perches63c3a662011-04-26 08:12:10 +00004078 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07004079 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
4080 WOL_DRV_STATE_SHUTDOWN |
4081 WOL_DRV_WOL |
4082 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08004083
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004084 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 u32 mac_mode;
4086
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004087 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004088 if (do_low_power &&
4089 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
4090 tg3_phy_auxctl_write(tp,
4091 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
4092 MII_TG3_AUXCTL_PCTL_WOL_EN |
4093 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
4094 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07004095 udelay(40);
4096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004098 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07004099 mac_mode = MAC_MODE_PORT_MODE_GMII;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004100 else if (tp->phy_flags &
4101 TG3_PHYFLG_KEEP_LINK_ON_PWRDN) {
4102 if (tp->link_config.active_speed == SPEED_1000)
4103 mac_mode = MAC_MODE_PORT_MODE_GMII;
4104 else
4105 mac_mode = MAC_MODE_PORT_MODE_MII;
4106 } else
Michael Chan3f7045c2006-09-27 16:02:29 -07004107 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004109 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
Joe Perches41535772013-02-16 11:20:04 +00004110 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00004111 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004112 SPEED_100 : SPEED_10;
4113 if (tg3_5700_link_polarity(tp, speed))
4114 mac_mode |= MAC_MODE_LINK_POLARITY;
4115 else
4116 mac_mode &= ~MAC_MODE_LINK_POLARITY;
4117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 } else {
4119 mac_mode = MAC_MODE_PORT_MODE_TBI;
4120 }
4121
Joe Perches63c3a662011-04-26 08:12:10 +00004122 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 tw32(MAC_LED_CTRL, tp->led_ctrl);
4124
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004125 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00004126 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
4127 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004128 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Joe Perches63c3a662011-04-26 08:12:10 +00004130 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00004131 mac_mode |= MAC_MODE_APE_TX_EN |
4132 MAC_MODE_APE_RX_EN |
4133 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07004134
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 tw32_f(MAC_MODE, mac_mode);
4136 udelay(100);
4137
4138 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
4139 udelay(10);
4140 }
4141
Joe Perches63c3a662011-04-26 08:12:10 +00004142 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Joe Perches41535772013-02-16 11:20:04 +00004143 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4144 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 u32 base_val;
4146
4147 base_val = tp->pci_clock_ctrl;
4148 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
4149 CLOCK_CTRL_TXCLK_DISABLE);
4150
Michael Chanb401e9e2005-12-19 16:27:04 -08004151 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
4152 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00004153 } else if (tg3_flag(tp, 5780_CLASS) ||
4154 tg3_flag(tp, CPMU_PRESENT) ||
Joe Perches41535772013-02-16 11:20:04 +00004155 tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07004156 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00004157 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 u32 newbits1, newbits2;
4159
Joe Perches41535772013-02-16 11:20:04 +00004160 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4161 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
4163 CLOCK_CTRL_TXCLK_DISABLE |
4164 CLOCK_CTRL_ALTCLK);
4165 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00004166 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 newbits1 = CLOCK_CTRL_625_CORE;
4168 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
4169 } else {
4170 newbits1 = CLOCK_CTRL_ALTCLK;
4171 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
4172 }
4173
Michael Chanb401e9e2005-12-19 16:27:04 -08004174 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
4175 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Michael Chanb401e9e2005-12-19 16:27:04 -08004177 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
4178 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
Joe Perches63c3a662011-04-26 08:12:10 +00004180 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 u32 newbits3;
4182
Joe Perches41535772013-02-16 11:20:04 +00004183 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4184 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
4186 CLOCK_CTRL_TXCLK_DISABLE |
4187 CLOCK_CTRL_44MHZ_CORE);
4188 } else {
4189 newbits3 = CLOCK_CTRL_44MHZ_CORE;
4190 }
4191
Michael Chanb401e9e2005-12-19 16:27:04 -08004192 tw32_wait_f(TG3PCI_CLOCK_CTRL,
4193 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 }
4195 }
4196
Joe Perches63c3a662011-04-26 08:12:10 +00004197 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08004198 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08004199
Matt Carlsoncd0d7222011-07-13 09:27:33 +00004200 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201
4202 /* Workaround for unstable PLL clock */
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004203 if ((!tg3_flag(tp, IS_SSB_CORE)) &&
Joe Perches41535772013-02-16 11:20:04 +00004204 ((tg3_chip_rev(tp) == CHIPREV_5750_AX) ||
4205 (tg3_chip_rev(tp) == CHIPREV_5750_BX))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 u32 val = tr32(0x7d00);
4207
4208 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
4209 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00004210 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08004211 int err;
4212
4213 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08004215 if (!err)
4216 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08004217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 }
4219
Michael Chanbbadf502006-04-06 21:46:34 -07004220 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
4221
Nithin Sujir2e460fc2013-05-23 11:11:22 +00004222 tg3_ape_driver_state_change(tp, RESET_KIND_SHUTDOWN);
4223
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 return 0;
4225}
4226
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004227static void tg3_power_down(struct tg3 *tp)
4228{
Joe Perches63c3a662011-04-26 08:12:10 +00004229 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004230 pci_set_power_state(tp->pdev, PCI_D3hot);
4231}
4232
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
4234{
4235 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
4236 case MII_TG3_AUX_STAT_10HALF:
4237 *speed = SPEED_10;
4238 *duplex = DUPLEX_HALF;
4239 break;
4240
4241 case MII_TG3_AUX_STAT_10FULL:
4242 *speed = SPEED_10;
4243 *duplex = DUPLEX_FULL;
4244 break;
4245
4246 case MII_TG3_AUX_STAT_100HALF:
4247 *speed = SPEED_100;
4248 *duplex = DUPLEX_HALF;
4249 break;
4250
4251 case MII_TG3_AUX_STAT_100FULL:
4252 *speed = SPEED_100;
4253 *duplex = DUPLEX_FULL;
4254 break;
4255
4256 case MII_TG3_AUX_STAT_1000HALF:
4257 *speed = SPEED_1000;
4258 *duplex = DUPLEX_HALF;
4259 break;
4260
4261 case MII_TG3_AUX_STAT_1000FULL:
4262 *speed = SPEED_1000;
4263 *duplex = DUPLEX_FULL;
4264 break;
4265
4266 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004267 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07004268 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
4269 SPEED_10;
4270 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
4271 DUPLEX_HALF;
4272 break;
4273 }
Matt Carlsone7405222012-02-13 15:20:16 +00004274 *speed = SPEED_UNKNOWN;
4275 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278}
4279
Matt Carlson42b64a42011-05-19 12:12:49 +00004280static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281{
Matt Carlson42b64a42011-05-19 12:12:49 +00004282 int err = 0;
4283 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
Matt Carlson42b64a42011-05-19 12:12:49 +00004285 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00004286 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00004287 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
Matt Carlson42b64a42011-05-19 12:12:49 +00004289 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
4290 if (err)
4291 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Matt Carlson4f272092011-12-14 11:09:57 +00004293 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4294 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004295
Joe Perches41535772013-02-16 11:20:04 +00004296 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4297 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)
Matt Carlson4f272092011-12-14 11:09:57 +00004298 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004299
Matt Carlson4f272092011-12-14 11:09:57 +00004300 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
4301 if (err)
4302 goto done;
4303 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004304
Matt Carlson42b64a42011-05-19 12:12:49 +00004305 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4306 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Matt Carlson42b64a42011-05-19 12:12:49 +00004308 tw32(TG3_CPMU_EEE_MODE,
4309 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004310
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004311 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson42b64a42011-05-19 12:12:49 +00004312 if (!err) {
4313 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00004314
Matt Carlsona6b68da2010-12-06 08:28:52 +00004315 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00004316 /* Advertise 100-BaseTX EEE ability */
4317 if (advertise & ADVERTISED_100baseT_Full)
4318 val |= MDIO_AN_EEE_ADV_100TX;
4319 /* Advertise 1000-BaseT EEE ability */
4320 if (advertise & ADVERTISED_1000baseT_Full)
4321 val |= MDIO_AN_EEE_ADV_1000T;
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +00004322
4323 if (!tp->eee.eee_enabled) {
4324 val = 0;
4325 tp->eee.advertised = 0;
4326 } else {
4327 tp->eee.advertised = advertise &
4328 (ADVERTISED_100baseT_Full |
4329 ADVERTISED_1000baseT_Full);
4330 }
4331
Matt Carlson42b64a42011-05-19 12:12:49 +00004332 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00004333 if (err)
4334 val = 0;
4335
Joe Perches41535772013-02-16 11:20:04 +00004336 switch (tg3_asic_rev(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00004337 case ASIC_REV_5717:
4338 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00004339 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004340 case ASIC_REV_5719:
4341 /* If we advertised any eee advertisements above... */
4342 if (val)
4343 val = MII_TG3_DSP_TAP26_ALNOKO |
4344 MII_TG3_DSP_TAP26_RMRXSTO |
4345 MII_TG3_DSP_TAP26_OPCSINPT;
4346 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
4347 /* Fall through */
4348 case ASIC_REV_5720:
Michael Chanc65a17f2013-01-06 12:51:07 +00004349 case ASIC_REV_5762:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004350 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
4351 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
4352 MII_TG3_DSP_CH34TP2_HIBW01);
4353 }
Matt Carlson52b02d02010-10-14 10:37:41 +00004354
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004355 err2 = tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson42b64a42011-05-19 12:12:49 +00004356 if (!err)
4357 err = err2;
4358 }
4359
4360done:
4361 return err;
4362}
4363
4364static void tg3_phy_copper_begin(struct tg3 *tp)
4365{
Matt Carlsond13ba512012-02-22 12:35:19 +00004366 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4367 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4368 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004369
Nithin Sujir942d1af2013-04-09 08:48:07 +00004370 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4371 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
Matt Carlsond13ba512012-02-22 12:35:19 +00004372 adv = ADVERTISED_10baseT_Half |
4373 ADVERTISED_10baseT_Full;
4374 if (tg3_flag(tp, WOL_SPEED_100MB))
4375 adv |= ADVERTISED_100baseT_Half |
4376 ADVERTISED_100baseT_Full;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004377 if (tp->phy_flags & TG3_PHYFLG_1G_ON_VAUX_OK)
4378 adv |= ADVERTISED_1000baseT_Half |
4379 ADVERTISED_1000baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00004380
Matt Carlsond13ba512012-02-22 12:35:19 +00004381 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004382 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004383 adv = tp->link_config.advertising;
4384 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4385 adv &= ~(ADVERTISED_1000baseT_Half |
4386 ADVERTISED_1000baseT_Full);
4387
4388 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004389 }
4390
Matt Carlsond13ba512012-02-22 12:35:19 +00004391 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004392
Nithin Sujir942d1af2013-04-09 08:48:07 +00004393 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4394 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
4395 /* Normally during power down we want to autonegotiate
4396 * the lowest possible speed for WOL. However, to avoid
4397 * link flap, we leave it untouched.
4398 */
4399 return;
4400 }
4401
Matt Carlsond13ba512012-02-22 12:35:19 +00004402 tg3_writephy(tp, MII_BMCR,
4403 BMCR_ANENABLE | BMCR_ANRESTART);
4404 } else {
4405 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 u32 bmcr, orig_bmcr;
4407
4408 tp->link_config.active_speed = tp->link_config.speed;
4409 tp->link_config.active_duplex = tp->link_config.duplex;
4410
Nithin Sujir7c6cdea2013-03-12 15:32:48 +00004411 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
4412 /* With autoneg disabled, 5715 only links up when the
4413 * advertisement register has the configured speed
4414 * enabled.
4415 */
4416 tg3_writephy(tp, MII_ADVERTISE, ADVERTISE_ALL);
4417 }
4418
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 bmcr = 0;
4420 switch (tp->link_config.speed) {
4421 default:
4422 case SPEED_10:
4423 break;
4424
4425 case SPEED_100:
4426 bmcr |= BMCR_SPEED100;
4427 break;
4428
4429 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004430 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
4434 if (tp->link_config.duplex == DUPLEX_FULL)
4435 bmcr |= BMCR_FULLDPLX;
4436
4437 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4438 (bmcr != orig_bmcr)) {
4439 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4440 for (i = 0; i < 1500; i++) {
4441 u32 tmp;
4442
4443 udelay(10);
4444 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4445 tg3_readphy(tp, MII_BMSR, &tmp))
4446 continue;
4447 if (!(tmp & BMSR_LSTATUS)) {
4448 udelay(40);
4449 break;
4450 }
4451 }
4452 tg3_writephy(tp, MII_BMCR, bmcr);
4453 udelay(40);
4454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 }
4456}
4457
Nithin Sujirfdad8de2013-04-09 08:48:08 +00004458static int tg3_phy_pull_config(struct tg3 *tp)
4459{
4460 int err;
4461 u32 val;
4462
4463 err = tg3_readphy(tp, MII_BMCR, &val);
4464 if (err)
4465 goto done;
4466
4467 if (!(val & BMCR_ANENABLE)) {
4468 tp->link_config.autoneg = AUTONEG_DISABLE;
4469 tp->link_config.advertising = 0;
4470 tg3_flag_clear(tp, PAUSE_AUTONEG);
4471
4472 err = -EIO;
4473
4474 switch (val & (BMCR_SPEED1000 | BMCR_SPEED100)) {
4475 case 0:
4476 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4477 goto done;
4478
4479 tp->link_config.speed = SPEED_10;
4480 break;
4481 case BMCR_SPEED100:
4482 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4483 goto done;
4484
4485 tp->link_config.speed = SPEED_100;
4486 break;
4487 case BMCR_SPEED1000:
4488 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4489 tp->link_config.speed = SPEED_1000;
4490 break;
4491 }
4492 /* Fall through */
4493 default:
4494 goto done;
4495 }
4496
4497 if (val & BMCR_FULLDPLX)
4498 tp->link_config.duplex = DUPLEX_FULL;
4499 else
4500 tp->link_config.duplex = DUPLEX_HALF;
4501
4502 tp->link_config.flowctrl = FLOW_CTRL_RX | FLOW_CTRL_TX;
4503
4504 err = 0;
4505 goto done;
4506 }
4507
4508 tp->link_config.autoneg = AUTONEG_ENABLE;
4509 tp->link_config.advertising = ADVERTISED_Autoneg;
4510 tg3_flag_set(tp, PAUSE_AUTONEG);
4511
4512 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4513 u32 adv;
4514
4515 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4516 if (err)
4517 goto done;
4518
4519 adv = mii_adv_to_ethtool_adv_t(val & ADVERTISE_ALL);
4520 tp->link_config.advertising |= adv | ADVERTISED_TP;
4521
4522 tp->link_config.flowctrl = tg3_decode_flowctrl_1000T(val);
4523 } else {
4524 tp->link_config.advertising |= ADVERTISED_FIBRE;
4525 }
4526
4527 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4528 u32 adv;
4529
4530 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4531 err = tg3_readphy(tp, MII_CTRL1000, &val);
4532 if (err)
4533 goto done;
4534
4535 adv = mii_ctrl1000_to_ethtool_adv_t(val);
4536 } else {
4537 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4538 if (err)
4539 goto done;
4540
4541 adv = tg3_decode_flowctrl_1000X(val);
4542 tp->link_config.flowctrl = adv;
4543
4544 val &= (ADVERTISE_1000XHALF | ADVERTISE_1000XFULL);
4545 adv = mii_adv_to_ethtool_adv_x(val);
4546 }
4547
4548 tp->link_config.advertising |= adv;
4549 }
4550
4551done:
4552 return err;
4553}
4554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555static int tg3_init_5401phy_dsp(struct tg3 *tp)
4556{
4557 int err;
4558
4559 /* Turn off tap power management. */
4560 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004561 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004563 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4564 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4565 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4566 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4567 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568
4569 udelay(40);
4570
4571 return err;
4572}
4573
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004574static bool tg3_phy_eee_config_ok(struct tg3 *tp)
4575{
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004576 struct ethtool_eee eee;
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004577
4578 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4579 return true;
4580
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004581 tg3_eee_pull_config(tp, &eee);
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004582
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004583 if (tp->eee.eee_enabled) {
4584 if (tp->eee.advertised != eee.advertised ||
4585 tp->eee.tx_lpi_timer != eee.tx_lpi_timer ||
4586 tp->eee.tx_lpi_enabled != eee.tx_lpi_enabled)
4587 return false;
4588 } else {
4589 /* EEE is disabled but we're advertising */
4590 if (eee.advertised)
4591 return false;
4592 }
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004593
4594 return true;
4595}
4596
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004597static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004599 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004600
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004601 advertising = tp->link_config.advertising;
4602 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004604 advmsk = ADVERTISE_ALL;
4605 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004606 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004607 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004610 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4611 return false;
4612
4613 if ((*lcladv & advmsk) != tgtadv)
4614 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004615
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004616 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 u32 tg3_ctrl;
4618
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004619 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004620
Matt Carlson221c5632011-06-13 13:39:01 +00004621 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004622 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
Matt Carlson3198e072012-02-13 15:20:10 +00004624 if (tgtadv &&
Joe Perches41535772013-02-16 11:20:04 +00004625 (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4626 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)) {
Matt Carlson3198e072012-02-13 15:20:10 +00004627 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4628 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4629 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4630 } else {
4631 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4632 }
4633
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004634 if (tg3_ctrl != tgtadv)
4635 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004637
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004638 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004639}
4640
Matt Carlson859edb22011-12-08 14:40:16 +00004641static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4642{
4643 u32 lpeth = 0;
4644
4645 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4646 u32 val;
4647
4648 if (tg3_readphy(tp, MII_STAT1000, &val))
4649 return false;
4650
4651 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4652 }
4653
4654 if (tg3_readphy(tp, MII_LPA, rmtadv))
4655 return false;
4656
4657 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4658 tp->link_config.rmt_adv = lpeth;
4659
4660 return true;
4661}
4662
Joe Perches953c96e2013-04-09 10:18:14 +00004663static bool tg3_test_and_report_link_chg(struct tg3 *tp, bool curr_link_up)
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004664{
4665 if (curr_link_up != tp->link_up) {
4666 if (curr_link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00004667 netif_carrier_on(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004668 } else {
Nithin Sujir84421b92013-03-08 08:01:24 +00004669 netif_carrier_off(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004670 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
4671 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
4672 }
4673
4674 tg3_link_report(tp);
4675 return true;
4676 }
4677
4678 return false;
4679}
4680
Michael Chan3310e242013-04-09 08:48:05 +00004681static void tg3_clear_mac_status(struct tg3 *tp)
4682{
4683 tw32(MAC_EVENT, 0);
4684
4685 tw32_f(MAC_STATUS,
4686 MAC_STATUS_SYNC_CHANGED |
4687 MAC_STATUS_CFG_CHANGED |
4688 MAC_STATUS_MI_COMPLETION |
4689 MAC_STATUS_LNKSTATE_CHANGED);
4690 udelay(40);
4691}
4692
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +00004693static void tg3_setup_eee(struct tg3 *tp)
4694{
4695 u32 val;
4696
4697 val = TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
4698 TG3_CPMU_EEE_LNKIDL_UART_IDL;
4699 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
4700 val |= TG3_CPMU_EEE_LNKIDL_APE_TX_MT;
4701
4702 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL, val);
4703
4704 tw32_f(TG3_CPMU_EEE_CTRL,
4705 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
4706
4707 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
4708 (tp->eee.tx_lpi_enabled ? TG3_CPMU_EEEMD_LPI_IN_TX : 0) |
4709 TG3_CPMU_EEEMD_LPI_IN_RX |
4710 TG3_CPMU_EEEMD_EEE_ENABLE;
4711
4712 if (tg3_asic_rev(tp) != ASIC_REV_5717)
4713 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
4714
4715 if (tg3_flag(tp, ENABLE_APE))
4716 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
4717
4718 tw32_f(TG3_CPMU_EEE_MODE, tp->eee.eee_enabled ? val : 0);
4719
4720 tw32_f(TG3_CPMU_EEE_DBTMR1,
4721 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
4722 (tp->eee.tx_lpi_timer & 0xffff));
4723
4724 tw32_f(TG3_CPMU_EEE_DBTMR2,
4725 TG3_CPMU_DBTMR2_APE_TX_2047US |
4726 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
4727}
4728
Joe Perches953c96e2013-04-09 10:18:14 +00004729static int tg3_setup_copper_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730{
Joe Perches953c96e2013-04-09 10:18:14 +00004731 bool current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004732 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004733 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 u16 current_speed;
4735 u8 current_duplex;
4736 int i, err;
4737
Michael Chan3310e242013-04-09 08:48:05 +00004738 tg3_clear_mac_status(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739
Matt Carlson8ef21422008-05-02 16:47:53 -07004740 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4741 tw32_f(MAC_MI_MODE,
4742 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4743 udelay(80);
4744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004746 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
4748 /* Some third-party PHYs need to be reset on link going
4749 * down.
4750 */
Joe Perches41535772013-02-16 11:20:04 +00004751 if ((tg3_asic_rev(tp) == ASIC_REV_5703 ||
4752 tg3_asic_rev(tp) == ASIC_REV_5704 ||
4753 tg3_asic_rev(tp) == ASIC_REV_5705) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004754 tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 tg3_readphy(tp, MII_BMSR, &bmsr);
4756 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4757 !(bmsr & BMSR_LSTATUS))
Joe Perches953c96e2013-04-09 10:18:14 +00004758 force_reset = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 }
4760 if (force_reset)
4761 tg3_phy_reset(tp);
4762
Matt Carlson79eb6902010-02-17 15:17:03 +00004763 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 tg3_readphy(tp, MII_BMSR, &bmsr);
4765 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004766 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 bmsr = 0;
4768
4769 if (!(bmsr & BMSR_LSTATUS)) {
4770 err = tg3_init_5401phy_dsp(tp);
4771 if (err)
4772 return err;
4773
4774 tg3_readphy(tp, MII_BMSR, &bmsr);
4775 for (i = 0; i < 1000; i++) {
4776 udelay(10);
4777 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4778 (bmsr & BMSR_LSTATUS)) {
4779 udelay(40);
4780 break;
4781 }
4782 }
4783
Matt Carlson79eb6902010-02-17 15:17:03 +00004784 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4785 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 !(bmsr & BMSR_LSTATUS) &&
4787 tp->link_config.active_speed == SPEED_1000) {
4788 err = tg3_phy_reset(tp);
4789 if (!err)
4790 err = tg3_init_5401phy_dsp(tp);
4791 if (err)
4792 return err;
4793 }
4794 }
Joe Perches41535772013-02-16 11:20:04 +00004795 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4796 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 /* 5701 {A0,B0} CRC bug workaround */
4798 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004799 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4800 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4801 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 }
4803
4804 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004805 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4806 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004808 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004810 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4812
Joe Perches41535772013-02-16 11:20:04 +00004813 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4814 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4816 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4817 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4818 else
4819 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4820 }
4821
Joe Perches953c96e2013-04-09 10:18:14 +00004822 current_link_up = false;
Matt Carlsone7405222012-02-13 15:20:16 +00004823 current_speed = SPEED_UNKNOWN;
4824 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004825 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004826 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004828 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004829 err = tg3_phy_auxctl_read(tp,
4830 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4831 &val);
4832 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004833 tg3_phy_auxctl_write(tp,
4834 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4835 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 goto relink;
4837 }
4838 }
4839
4840 bmsr = 0;
4841 for (i = 0; i < 100; i++) {
4842 tg3_readphy(tp, MII_BMSR, &bmsr);
4843 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4844 (bmsr & BMSR_LSTATUS))
4845 break;
4846 udelay(40);
4847 }
4848
4849 if (bmsr & BMSR_LSTATUS) {
4850 u32 aux_stat, bmcr;
4851
4852 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4853 for (i = 0; i < 2000; i++) {
4854 udelay(10);
4855 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4856 aux_stat)
4857 break;
4858 }
4859
4860 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4861 &current_speed,
4862 &current_duplex);
4863
4864 bmcr = 0;
4865 for (i = 0; i < 200; i++) {
4866 tg3_readphy(tp, MII_BMCR, &bmcr);
4867 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4868 continue;
4869 if (bmcr && bmcr != 0x7fff)
4870 break;
4871 udelay(10);
4872 }
4873
Matt Carlsonef167e22007-12-20 20:10:01 -08004874 lcl_adv = 0;
4875 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
Matt Carlsonef167e22007-12-20 20:10:01 -08004877 tp->link_config.active_speed = current_speed;
4878 tp->link_config.active_duplex = current_duplex;
4879
4880 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004881 bool eee_config_ok = tg3_phy_eee_config_ok(tp);
4882
Matt Carlsonef167e22007-12-20 20:10:01 -08004883 if ((bmcr & BMCR_ANENABLE) &&
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004884 eee_config_ok &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004885 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004886 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Joe Perches953c96e2013-04-09 10:18:14 +00004887 current_link_up = true;
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004888
4889 /* EEE settings changes take effect only after a phy
4890 * reset. If we have skipped a reset due to Link Flap
4891 * Avoidance being enabled, do it now.
4892 */
4893 if (!eee_config_ok &&
4894 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004895 !force_reset) {
4896 tg3_setup_eee(tp);
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004897 tg3_phy_reset(tp);
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 } else {
4900 if (!(bmcr & BMCR_ANENABLE) &&
4901 tp->link_config.speed == current_speed &&
Nithin Sujirf0fcd7a2013-04-09 08:48:01 +00004902 tp->link_config.duplex == current_duplex) {
Joe Perches953c96e2013-04-09 10:18:14 +00004903 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 }
4905 }
4906
Joe Perches953c96e2013-04-09 10:18:14 +00004907 if (current_link_up &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004908 tp->link_config.active_duplex == DUPLEX_FULL) {
4909 u32 reg, bit;
4910
4911 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4912 reg = MII_TG3_FET_GEN_STAT;
4913 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4914 } else {
4915 reg = MII_TG3_EXT_STAT;
4916 bit = MII_TG3_EXT_STAT_MDIX;
4917 }
4918
4919 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4920 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4921
Matt Carlsonef167e22007-12-20 20:10:01 -08004922 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 }
4925
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926relink:
Joe Perches953c96e2013-04-09 10:18:14 +00004927 if (!current_link_up || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 tg3_phy_copper_begin(tp);
4929
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004930 if (tg3_flag(tp, ROBOSWITCH)) {
Joe Perches953c96e2013-04-09 10:18:14 +00004931 current_link_up = true;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004932 /* FIXME: when BCM5325 switch is used use 100 MBit/s */
4933 current_speed = SPEED_1000;
4934 current_duplex = DUPLEX_FULL;
4935 tp->link_config.active_speed = current_speed;
4936 tp->link_config.active_duplex = current_duplex;
4937 }
4938
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004939 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004940 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4941 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Joe Perches953c96e2013-04-09 10:18:14 +00004942 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 }
4944
4945 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
Joe Perches953c96e2013-04-09 10:18:14 +00004946 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 if (tp->link_config.active_speed == SPEED_100 ||
4948 tp->link_config.active_speed == SPEED_10)
4949 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4950 else
4951 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004952 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004953 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4954 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4956
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004957 /* In order for the 5750 core in BCM4785 chip to work properly
4958 * in RGMII mode, the Led Control Register must be set up.
4959 */
4960 if (tg3_flag(tp, RGMII_MODE)) {
4961 u32 led_ctrl = tr32(MAC_LED_CTRL);
4962 led_ctrl &= ~(LED_CTRL_1000MBPS_ON | LED_CTRL_100MBPS_ON);
4963
4964 if (tp->link_config.active_speed == SPEED_10)
4965 led_ctrl |= LED_CTRL_LNKLED_OVERRIDE;
4966 else if (tp->link_config.active_speed == SPEED_100)
4967 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4968 LED_CTRL_100MBPS_ON);
4969 else if (tp->link_config.active_speed == SPEED_1000)
4970 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4971 LED_CTRL_1000MBPS_ON);
4972
4973 tw32(MAC_LED_CTRL, led_ctrl);
4974 udelay(40);
4975 }
4976
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4978 if (tp->link_config.active_duplex == DUPLEX_HALF)
4979 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4980
Joe Perches41535772013-02-16 11:20:04 +00004981 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches953c96e2013-04-09 10:18:14 +00004982 if (current_link_up &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004983 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004985 else
4986 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 }
4988
4989 /* ??? Without this setting Netgear GA302T PHY does not
4990 * ??? send/receive packets...
4991 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004992 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Joe Perches41535772013-02-16 11:20:04 +00004993 tg3_chip_rev_id(tp) == CHIPREV_ID_5700_ALTIMA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4995 tw32_f(MAC_MI_MODE, tp->mi_mode);
4996 udelay(80);
4997 }
4998
4999 tw32_f(MAC_MODE, tp->mac_mode);
5000 udelay(40);
5001
Matt Carlson52b02d02010-10-14 10:37:41 +00005002 tg3_phy_eee_adjust(tp, current_link_up);
5003
Joe Perches63c3a662011-04-26 08:12:10 +00005004 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 /* Polled via timer. */
5006 tw32_f(MAC_EVENT, 0);
5007 } else {
5008 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5009 }
5010 udelay(40);
5011
Joe Perches41535772013-02-16 11:20:04 +00005012 if (tg3_asic_rev(tp) == ASIC_REV_5700 &&
Joe Perches953c96e2013-04-09 10:18:14 +00005013 current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00005015 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 udelay(120);
5017 tw32_f(MAC_STATUS,
5018 (MAC_STATUS_SYNC_CHANGED |
5019 MAC_STATUS_CFG_CHANGED));
5020 udelay(40);
5021 tg3_write_mem(tp,
5022 NIC_SRAM_FIRMWARE_MBOX,
5023 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
5024 }
5025
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005026 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00005027 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005028 if (tp->link_config.active_speed == SPEED_100 ||
5029 tp->link_config.active_speed == SPEED_10)
Jiang Liu0f49bfb2012-08-20 13:28:20 -06005030 pcie_capability_clear_word(tp->pdev, PCI_EXP_LNKCTL,
5031 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005032 else
Jiang Liu0f49bfb2012-08-20 13:28:20 -06005033 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
5034 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005035 }
5036
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005037 tg3_test_and_report_link_chg(tp, current_link_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
5039 return 0;
5040}
5041
5042struct tg3_fiber_aneginfo {
5043 int state;
5044#define ANEG_STATE_UNKNOWN 0
5045#define ANEG_STATE_AN_ENABLE 1
5046#define ANEG_STATE_RESTART_INIT 2
5047#define ANEG_STATE_RESTART 3
5048#define ANEG_STATE_DISABLE_LINK_OK 4
5049#define ANEG_STATE_ABILITY_DETECT_INIT 5
5050#define ANEG_STATE_ABILITY_DETECT 6
5051#define ANEG_STATE_ACK_DETECT_INIT 7
5052#define ANEG_STATE_ACK_DETECT 8
5053#define ANEG_STATE_COMPLETE_ACK_INIT 9
5054#define ANEG_STATE_COMPLETE_ACK 10
5055#define ANEG_STATE_IDLE_DETECT_INIT 11
5056#define ANEG_STATE_IDLE_DETECT 12
5057#define ANEG_STATE_LINK_OK 13
5058#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
5059#define ANEG_STATE_NEXT_PAGE_WAIT 15
5060
5061 u32 flags;
5062#define MR_AN_ENABLE 0x00000001
5063#define MR_RESTART_AN 0x00000002
5064#define MR_AN_COMPLETE 0x00000004
5065#define MR_PAGE_RX 0x00000008
5066#define MR_NP_LOADED 0x00000010
5067#define MR_TOGGLE_TX 0x00000020
5068#define MR_LP_ADV_FULL_DUPLEX 0x00000040
5069#define MR_LP_ADV_HALF_DUPLEX 0x00000080
5070#define MR_LP_ADV_SYM_PAUSE 0x00000100
5071#define MR_LP_ADV_ASYM_PAUSE 0x00000200
5072#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
5073#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
5074#define MR_LP_ADV_NEXT_PAGE 0x00001000
5075#define MR_TOGGLE_RX 0x00002000
5076#define MR_NP_RX 0x00004000
5077
5078#define MR_LINK_OK 0x80000000
5079
5080 unsigned long link_time, cur_time;
5081
5082 u32 ability_match_cfg;
5083 int ability_match_count;
5084
5085 char ability_match, idle_match, ack_match;
5086
5087 u32 txconfig, rxconfig;
5088#define ANEG_CFG_NP 0x00000080
5089#define ANEG_CFG_ACK 0x00000040
5090#define ANEG_CFG_RF2 0x00000020
5091#define ANEG_CFG_RF1 0x00000010
5092#define ANEG_CFG_PS2 0x00000001
5093#define ANEG_CFG_PS1 0x00008000
5094#define ANEG_CFG_HD 0x00004000
5095#define ANEG_CFG_FD 0x00002000
5096#define ANEG_CFG_INVAL 0x00001f06
5097
5098};
5099#define ANEG_OK 0
5100#define ANEG_DONE 1
5101#define ANEG_TIMER_ENAB 2
5102#define ANEG_FAILED -1
5103
5104#define ANEG_STATE_SETTLE_TIME 10000
5105
5106static int tg3_fiber_aneg_smachine(struct tg3 *tp,
5107 struct tg3_fiber_aneginfo *ap)
5108{
Matt Carlson5be73b42007-12-20 20:09:29 -08005109 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 unsigned long delta;
5111 u32 rx_cfg_reg;
5112 int ret;
5113
5114 if (ap->state == ANEG_STATE_UNKNOWN) {
5115 ap->rxconfig = 0;
5116 ap->link_time = 0;
5117 ap->cur_time = 0;
5118 ap->ability_match_cfg = 0;
5119 ap->ability_match_count = 0;
5120 ap->ability_match = 0;
5121 ap->idle_match = 0;
5122 ap->ack_match = 0;
5123 }
5124 ap->cur_time++;
5125
5126 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
5127 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
5128
5129 if (rx_cfg_reg != ap->ability_match_cfg) {
5130 ap->ability_match_cfg = rx_cfg_reg;
5131 ap->ability_match = 0;
5132 ap->ability_match_count = 0;
5133 } else {
5134 if (++ap->ability_match_count > 1) {
5135 ap->ability_match = 1;
5136 ap->ability_match_cfg = rx_cfg_reg;
5137 }
5138 }
5139 if (rx_cfg_reg & ANEG_CFG_ACK)
5140 ap->ack_match = 1;
5141 else
5142 ap->ack_match = 0;
5143
5144 ap->idle_match = 0;
5145 } else {
5146 ap->idle_match = 1;
5147 ap->ability_match_cfg = 0;
5148 ap->ability_match_count = 0;
5149 ap->ability_match = 0;
5150 ap->ack_match = 0;
5151
5152 rx_cfg_reg = 0;
5153 }
5154
5155 ap->rxconfig = rx_cfg_reg;
5156 ret = ANEG_OK;
5157
Matt Carlson33f401a2010-04-05 10:19:27 +00005158 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 case ANEG_STATE_UNKNOWN:
5160 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
5161 ap->state = ANEG_STATE_AN_ENABLE;
5162
5163 /* fallthru */
5164 case ANEG_STATE_AN_ENABLE:
5165 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
5166 if (ap->flags & MR_AN_ENABLE) {
5167 ap->link_time = 0;
5168 ap->cur_time = 0;
5169 ap->ability_match_cfg = 0;
5170 ap->ability_match_count = 0;
5171 ap->ability_match = 0;
5172 ap->idle_match = 0;
5173 ap->ack_match = 0;
5174
5175 ap->state = ANEG_STATE_RESTART_INIT;
5176 } else {
5177 ap->state = ANEG_STATE_DISABLE_LINK_OK;
5178 }
5179 break;
5180
5181 case ANEG_STATE_RESTART_INIT:
5182 ap->link_time = ap->cur_time;
5183 ap->flags &= ~(MR_NP_LOADED);
5184 ap->txconfig = 0;
5185 tw32(MAC_TX_AUTO_NEG, 0);
5186 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5187 tw32_f(MAC_MODE, tp->mac_mode);
5188 udelay(40);
5189
5190 ret = ANEG_TIMER_ENAB;
5191 ap->state = ANEG_STATE_RESTART;
5192
5193 /* fallthru */
5194 case ANEG_STATE_RESTART:
5195 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00005196 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00005198 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200 break;
5201
5202 case ANEG_STATE_DISABLE_LINK_OK:
5203 ret = ANEG_DONE;
5204 break;
5205
5206 case ANEG_STATE_ABILITY_DETECT_INIT:
5207 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08005208 ap->txconfig = ANEG_CFG_FD;
5209 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5210 if (flowctrl & ADVERTISE_1000XPAUSE)
5211 ap->txconfig |= ANEG_CFG_PS1;
5212 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5213 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5215 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5216 tw32_f(MAC_MODE, tp->mac_mode);
5217 udelay(40);
5218
5219 ap->state = ANEG_STATE_ABILITY_DETECT;
5220 break;
5221
5222 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00005223 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 break;
5226
5227 case ANEG_STATE_ACK_DETECT_INIT:
5228 ap->txconfig |= ANEG_CFG_ACK;
5229 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5230 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5231 tw32_f(MAC_MODE, tp->mac_mode);
5232 udelay(40);
5233
5234 ap->state = ANEG_STATE_ACK_DETECT;
5235
5236 /* fallthru */
5237 case ANEG_STATE_ACK_DETECT:
5238 if (ap->ack_match != 0) {
5239 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
5240 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
5241 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
5242 } else {
5243 ap->state = ANEG_STATE_AN_ENABLE;
5244 }
5245 } else if (ap->ability_match != 0 &&
5246 ap->rxconfig == 0) {
5247 ap->state = ANEG_STATE_AN_ENABLE;
5248 }
5249 break;
5250
5251 case ANEG_STATE_COMPLETE_ACK_INIT:
5252 if (ap->rxconfig & ANEG_CFG_INVAL) {
5253 ret = ANEG_FAILED;
5254 break;
5255 }
5256 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
5257 MR_LP_ADV_HALF_DUPLEX |
5258 MR_LP_ADV_SYM_PAUSE |
5259 MR_LP_ADV_ASYM_PAUSE |
5260 MR_LP_ADV_REMOTE_FAULT1 |
5261 MR_LP_ADV_REMOTE_FAULT2 |
5262 MR_LP_ADV_NEXT_PAGE |
5263 MR_TOGGLE_RX |
5264 MR_NP_RX);
5265 if (ap->rxconfig & ANEG_CFG_FD)
5266 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
5267 if (ap->rxconfig & ANEG_CFG_HD)
5268 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
5269 if (ap->rxconfig & ANEG_CFG_PS1)
5270 ap->flags |= MR_LP_ADV_SYM_PAUSE;
5271 if (ap->rxconfig & ANEG_CFG_PS2)
5272 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
5273 if (ap->rxconfig & ANEG_CFG_RF1)
5274 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
5275 if (ap->rxconfig & ANEG_CFG_RF2)
5276 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
5277 if (ap->rxconfig & ANEG_CFG_NP)
5278 ap->flags |= MR_LP_ADV_NEXT_PAGE;
5279
5280 ap->link_time = ap->cur_time;
5281
5282 ap->flags ^= (MR_TOGGLE_TX);
5283 if (ap->rxconfig & 0x0008)
5284 ap->flags |= MR_TOGGLE_RX;
5285 if (ap->rxconfig & ANEG_CFG_NP)
5286 ap->flags |= MR_NP_RX;
5287 ap->flags |= MR_PAGE_RX;
5288
5289 ap->state = ANEG_STATE_COMPLETE_ACK;
5290 ret = ANEG_TIMER_ENAB;
5291 break;
5292
5293 case ANEG_STATE_COMPLETE_ACK:
5294 if (ap->ability_match != 0 &&
5295 ap->rxconfig == 0) {
5296 ap->state = ANEG_STATE_AN_ENABLE;
5297 break;
5298 }
5299 delta = ap->cur_time - ap->link_time;
5300 if (delta > ANEG_STATE_SETTLE_TIME) {
5301 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
5302 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5303 } else {
5304 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
5305 !(ap->flags & MR_NP_RX)) {
5306 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5307 } else {
5308 ret = ANEG_FAILED;
5309 }
5310 }
5311 }
5312 break;
5313
5314 case ANEG_STATE_IDLE_DETECT_INIT:
5315 ap->link_time = ap->cur_time;
5316 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5317 tw32_f(MAC_MODE, tp->mac_mode);
5318 udelay(40);
5319
5320 ap->state = ANEG_STATE_IDLE_DETECT;
5321 ret = ANEG_TIMER_ENAB;
5322 break;
5323
5324 case ANEG_STATE_IDLE_DETECT:
5325 if (ap->ability_match != 0 &&
5326 ap->rxconfig == 0) {
5327 ap->state = ANEG_STATE_AN_ENABLE;
5328 break;
5329 }
5330 delta = ap->cur_time - ap->link_time;
5331 if (delta > ANEG_STATE_SETTLE_TIME) {
5332 /* XXX another gem from the Broadcom driver :( */
5333 ap->state = ANEG_STATE_LINK_OK;
5334 }
5335 break;
5336
5337 case ANEG_STATE_LINK_OK:
5338 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
5339 ret = ANEG_DONE;
5340 break;
5341
5342 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
5343 /* ??? unimplemented */
5344 break;
5345
5346 case ANEG_STATE_NEXT_PAGE_WAIT:
5347 /* ??? unimplemented */
5348 break;
5349
5350 default:
5351 ret = ANEG_FAILED;
5352 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
5355 return ret;
5356}
5357
Matt Carlson5be73b42007-12-20 20:09:29 -08005358static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359{
5360 int res = 0;
5361 struct tg3_fiber_aneginfo aninfo;
5362 int status = ANEG_FAILED;
5363 unsigned int tick;
5364 u32 tmp;
5365
5366 tw32_f(MAC_TX_AUTO_NEG, 0);
5367
5368 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
5369 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
5370 udelay(40);
5371
5372 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
5373 udelay(40);
5374
5375 memset(&aninfo, 0, sizeof(aninfo));
5376 aninfo.flags |= MR_AN_ENABLE;
5377 aninfo.state = ANEG_STATE_UNKNOWN;
5378 aninfo.cur_time = 0;
5379 tick = 0;
5380 while (++tick < 195000) {
5381 status = tg3_fiber_aneg_smachine(tp, &aninfo);
5382 if (status == ANEG_DONE || status == ANEG_FAILED)
5383 break;
5384
5385 udelay(1);
5386 }
5387
5388 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5389 tw32_f(MAC_MODE, tp->mac_mode);
5390 udelay(40);
5391
Matt Carlson5be73b42007-12-20 20:09:29 -08005392 *txflags = aninfo.txconfig;
5393 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
5395 if (status == ANEG_DONE &&
5396 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
5397 MR_LP_ADV_FULL_DUPLEX)))
5398 res = 1;
5399
5400 return res;
5401}
5402
5403static void tg3_init_bcm8002(struct tg3 *tp)
5404{
5405 u32 mac_status = tr32(MAC_STATUS);
5406 int i;
5407
5408 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00005409 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 !(mac_status & MAC_STATUS_PCS_SYNCED))
5411 return;
5412
5413 /* Set PLL lock range. */
5414 tg3_writephy(tp, 0x16, 0x8007);
5415
5416 /* SW reset */
5417 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
5418
5419 /* Wait for reset to complete. */
5420 /* XXX schedule_timeout() ... */
5421 for (i = 0; i < 500; i++)
5422 udelay(10);
5423
5424 /* Config mode; select PMA/Ch 1 regs. */
5425 tg3_writephy(tp, 0x10, 0x8411);
5426
5427 /* Enable auto-lock and comdet, select txclk for tx. */
5428 tg3_writephy(tp, 0x11, 0x0a10);
5429
5430 tg3_writephy(tp, 0x18, 0x00a0);
5431 tg3_writephy(tp, 0x16, 0x41ff);
5432
5433 /* Assert and deassert POR. */
5434 tg3_writephy(tp, 0x13, 0x0400);
5435 udelay(40);
5436 tg3_writephy(tp, 0x13, 0x0000);
5437
5438 tg3_writephy(tp, 0x11, 0x0a50);
5439 udelay(40);
5440 tg3_writephy(tp, 0x11, 0x0a10);
5441
5442 /* Wait for signal to stabilize */
5443 /* XXX schedule_timeout() ... */
5444 for (i = 0; i < 15000; i++)
5445 udelay(10);
5446
5447 /* Deselect the channel register so we can read the PHYID
5448 * later.
5449 */
5450 tg3_writephy(tp, 0x10, 0x8011);
5451}
5452
Joe Perches953c96e2013-04-09 10:18:14 +00005453static bool tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454{
Matt Carlson82cd3d12007-12-20 20:09:00 -08005455 u16 flowctrl;
Joe Perches953c96e2013-04-09 10:18:14 +00005456 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 u32 sg_dig_ctrl, sg_dig_status;
5458 u32 serdes_cfg, expected_sg_dig_ctrl;
5459 int workaround, port_a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
5461 serdes_cfg = 0;
5462 expected_sg_dig_ctrl = 0;
5463 workaround = 0;
5464 port_a = 1;
Joe Perches953c96e2013-04-09 10:18:14 +00005465 current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
Joe Perches41535772013-02-16 11:20:04 +00005467 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A0 &&
5468 tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 workaround = 1;
5470 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
5471 port_a = 0;
5472
5473 /* preserve bits 0-11,13,14 for signal pre-emphasis */
5474 /* preserve bits 20-23 for voltage regulator */
5475 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
5476 }
5477
5478 sg_dig_ctrl = tr32(SG_DIG_CTRL);
5479
5480 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005481 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 if (workaround) {
5483 u32 val = serdes_cfg;
5484
5485 if (port_a)
5486 val |= 0xc010000;
5487 else
5488 val |= 0x4010000;
5489 tw32_f(MAC_SERDES_CFG, val);
5490 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005491
5492 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493 }
5494 if (mac_status & MAC_STATUS_PCS_SYNCED) {
5495 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005496 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 }
5498 goto out;
5499 }
5500
5501 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005502 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
Matt Carlson82cd3d12007-12-20 20:09:00 -08005504 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5505 if (flowctrl & ADVERTISE_1000XPAUSE)
5506 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
5507 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5508 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
5510 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005511 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07005512 tp->serdes_counter &&
5513 ((mac_status & (MAC_STATUS_PCS_SYNCED |
5514 MAC_STATUS_RCVD_CFG)) ==
5515 MAC_STATUS_PCS_SYNCED)) {
5516 tp->serdes_counter--;
Joe Perches953c96e2013-04-09 10:18:14 +00005517 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005518 goto out;
5519 }
5520restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 if (workaround)
5522 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005523 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524 udelay(5);
5525 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
5526
Michael Chan3d3ebe72006-09-27 15:59:15 -07005527 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005528 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
5530 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005531 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 mac_status = tr32(MAC_STATUS);
5533
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005534 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08005536 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Matt Carlson82cd3d12007-12-20 20:09:00 -08005538 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
5539 local_adv |= ADVERTISE_1000XPAUSE;
5540 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
5541 local_adv |= ADVERTISE_1000XPSE_ASYM;
5542
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005543 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005544 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005545 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005546 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
Matt Carlson859edb22011-12-08 14:40:16 +00005548 tp->link_config.rmt_adv =
5549 mii_adv_to_ethtool_adv_x(remote_adv);
5550
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 tg3_setup_flow_control(tp, local_adv, remote_adv);
Joe Perches953c96e2013-04-09 10:18:14 +00005552 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005553 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005554 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005555 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005556 if (tp->serdes_counter)
5557 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558 else {
5559 if (workaround) {
5560 u32 val = serdes_cfg;
5561
5562 if (port_a)
5563 val |= 0xc010000;
5564 else
5565 val |= 0x4010000;
5566
5567 tw32_f(MAC_SERDES_CFG, val);
5568 }
5569
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005570 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 udelay(40);
5572
5573 /* Link parallel detection - link is up */
5574 /* only if we have PCS_SYNC and not */
5575 /* receiving config code words */
5576 mac_status = tr32(MAC_STATUS);
5577 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
5578 !(mac_status & MAC_STATUS_RCVD_CFG)) {
5579 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005580 current_link_up = true;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005581 tp->phy_flags |=
5582 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005583 tp->serdes_counter =
5584 SERDES_PARALLEL_DET_TIMEOUT;
5585 } else
5586 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587 }
5588 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07005589 } else {
5590 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005591 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592 }
5593
5594out:
5595 return current_link_up;
5596}
5597
Joe Perches953c96e2013-04-09 10:18:14 +00005598static bool tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599{
Joe Perches953c96e2013-04-09 10:18:14 +00005600 bool current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005602 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
5605 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005606 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005608
Matt Carlson5be73b42007-12-20 20:09:29 -08005609 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5610 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Matt Carlson5be73b42007-12-20 20:09:29 -08005612 if (txflags & ANEG_CFG_PS1)
5613 local_adv |= ADVERTISE_1000XPAUSE;
5614 if (txflags & ANEG_CFG_PS2)
5615 local_adv |= ADVERTISE_1000XPSE_ASYM;
5616
5617 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5618 remote_adv |= LPA_1000XPAUSE;
5619 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5620 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Matt Carlson859edb22011-12-08 14:40:16 +00005622 tp->link_config.rmt_adv =
5623 mii_adv_to_ethtool_adv_x(remote_adv);
5624
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 tg3_setup_flow_control(tp, local_adv, remote_adv);
5626
Joe Perches953c96e2013-04-09 10:18:14 +00005627 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628 }
5629 for (i = 0; i < 30; i++) {
5630 udelay(20);
5631 tw32_f(MAC_STATUS,
5632 (MAC_STATUS_SYNC_CHANGED |
5633 MAC_STATUS_CFG_CHANGED));
5634 udelay(40);
5635 if ((tr32(MAC_STATUS) &
5636 (MAC_STATUS_SYNC_CHANGED |
5637 MAC_STATUS_CFG_CHANGED)) == 0)
5638 break;
5639 }
5640
5641 mac_status = tr32(MAC_STATUS);
Joe Perches953c96e2013-04-09 10:18:14 +00005642 if (!current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5644 !(mac_status & MAC_STATUS_RCVD_CFG))
Joe Perches953c96e2013-04-09 10:18:14 +00005645 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005647 tg3_setup_flow_control(tp, 0, 0);
5648
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649 /* Forcing 1000FD link up. */
Joe Perches953c96e2013-04-09 10:18:14 +00005650 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651
5652 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5653 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005654
5655 tw32_f(MAC_MODE, tp->mac_mode);
5656 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 }
5658
5659out:
5660 return current_link_up;
5661}
5662
Joe Perches953c96e2013-04-09 10:18:14 +00005663static int tg3_setup_fiber_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664{
5665 u32 orig_pause_cfg;
5666 u16 orig_active_speed;
5667 u8 orig_active_duplex;
5668 u32 mac_status;
Joe Perches953c96e2013-04-09 10:18:14 +00005669 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670 int i;
5671
Matt Carlson8d018622007-12-20 20:05:44 -08005672 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673 orig_active_speed = tp->link_config.active_speed;
5674 orig_active_duplex = tp->link_config.active_duplex;
5675
Joe Perches63c3a662011-04-26 08:12:10 +00005676 if (!tg3_flag(tp, HW_AUTONEG) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005677 tp->link_up &&
Joe Perches63c3a662011-04-26 08:12:10 +00005678 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679 mac_status = tr32(MAC_STATUS);
5680 mac_status &= (MAC_STATUS_PCS_SYNCED |
5681 MAC_STATUS_SIGNAL_DET |
5682 MAC_STATUS_CFG_CHANGED |
5683 MAC_STATUS_RCVD_CFG);
5684 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5685 MAC_STATUS_SIGNAL_DET)) {
5686 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5687 MAC_STATUS_CFG_CHANGED));
5688 return 0;
5689 }
5690 }
5691
5692 tw32_f(MAC_TX_AUTO_NEG, 0);
5693
5694 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5695 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5696 tw32_f(MAC_MODE, tp->mac_mode);
5697 udelay(40);
5698
Matt Carlson79eb6902010-02-17 15:17:03 +00005699 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 tg3_init_bcm8002(tp);
5701
5702 /* Enable link change event even when serdes polling. */
5703 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5704 udelay(40);
5705
Joe Perches953c96e2013-04-09 10:18:14 +00005706 current_link_up = false;
Matt Carlson859edb22011-12-08 14:40:16 +00005707 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708 mac_status = tr32(MAC_STATUS);
5709
Joe Perches63c3a662011-04-26 08:12:10 +00005710 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5712 else
5713 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5714
Matt Carlson898a56f2009-08-28 14:02:40 +00005715 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005717 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718
5719 for (i = 0; i < 100; i++) {
5720 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5721 MAC_STATUS_CFG_CHANGED));
5722 udelay(5);
5723 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005724 MAC_STATUS_CFG_CHANGED |
5725 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 break;
5727 }
5728
5729 mac_status = tr32(MAC_STATUS);
5730 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
Joe Perches953c96e2013-04-09 10:18:14 +00005731 current_link_up = false;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005732 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5733 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734 tw32_f(MAC_MODE, (tp->mac_mode |
5735 MAC_MODE_SEND_CONFIGS));
5736 udelay(1);
5737 tw32_f(MAC_MODE, tp->mac_mode);
5738 }
5739 }
5740
Joe Perches953c96e2013-04-09 10:18:14 +00005741 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 tp->link_config.active_speed = SPEED_1000;
5743 tp->link_config.active_duplex = DUPLEX_FULL;
5744 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5745 LED_CTRL_LNKLED_OVERRIDE |
5746 LED_CTRL_1000MBPS_ON));
5747 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005748 tp->link_config.active_speed = SPEED_UNKNOWN;
5749 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5751 LED_CTRL_LNKLED_OVERRIDE |
5752 LED_CTRL_TRAFFIC_OVERRIDE));
5753 }
5754
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005755 if (!tg3_test_and_report_link_chg(tp, current_link_up)) {
Matt Carlson8d018622007-12-20 20:05:44 -08005756 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 if (orig_pause_cfg != now_pause_cfg ||
5758 orig_active_speed != tp->link_config.active_speed ||
5759 orig_active_duplex != tp->link_config.active_duplex)
5760 tg3_link_report(tp);
5761 }
5762
5763 return 0;
5764}
5765
Joe Perches953c96e2013-04-09 10:18:14 +00005766static int tg3_setup_fiber_mii_phy(struct tg3 *tp, bool force_reset)
Michael Chan747e8f82005-07-25 12:33:22 -07005767{
Joe Perches953c96e2013-04-09 10:18:14 +00005768 int err = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005769 u32 bmsr, bmcr;
Michael Chan85730a62013-04-09 08:48:06 +00005770 u16 current_speed = SPEED_UNKNOWN;
5771 u8 current_duplex = DUPLEX_UNKNOWN;
Joe Perches953c96e2013-04-09 10:18:14 +00005772 bool current_link_up = false;
Michael Chan85730a62013-04-09 08:48:06 +00005773 u32 local_adv, remote_adv, sgsr;
5774
5775 if ((tg3_asic_rev(tp) == ASIC_REV_5719 ||
5776 tg3_asic_rev(tp) == ASIC_REV_5720) &&
5777 !tg3_readphy(tp, SERDES_TG3_1000X_STATUS, &sgsr) &&
5778 (sgsr & SERDES_TG3_SGMII_MODE)) {
5779
5780 if (force_reset)
5781 tg3_phy_reset(tp);
5782
5783 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
5784
5785 if (!(sgsr & SERDES_TG3_LINK_UP)) {
5786 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5787 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005788 current_link_up = true;
Michael Chan85730a62013-04-09 08:48:06 +00005789 if (sgsr & SERDES_TG3_SPEED_1000) {
5790 current_speed = SPEED_1000;
5791 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5792 } else if (sgsr & SERDES_TG3_SPEED_100) {
5793 current_speed = SPEED_100;
5794 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5795 } else {
5796 current_speed = SPEED_10;
5797 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5798 }
5799
5800 if (sgsr & SERDES_TG3_FULL_DUPLEX)
5801 current_duplex = DUPLEX_FULL;
5802 else
5803 current_duplex = DUPLEX_HALF;
5804 }
5805
5806 tw32_f(MAC_MODE, tp->mac_mode);
5807 udelay(40);
5808
5809 tg3_clear_mac_status(tp);
5810
5811 goto fiber_setup_done;
5812 }
Michael Chan747e8f82005-07-25 12:33:22 -07005813
5814 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5815 tw32_f(MAC_MODE, tp->mac_mode);
5816 udelay(40);
5817
Michael Chan3310e242013-04-09 08:48:05 +00005818 tg3_clear_mac_status(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005819
5820 if (force_reset)
5821 tg3_phy_reset(tp);
5822
Matt Carlson859edb22011-12-08 14:40:16 +00005823 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005824
5825 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5826 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005827 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005828 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5829 bmsr |= BMSR_LSTATUS;
5830 else
5831 bmsr &= ~BMSR_LSTATUS;
5832 }
Michael Chan747e8f82005-07-25 12:33:22 -07005833
5834 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5835
5836 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005837 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005838 /* do nothing, just check for link up at the end */
5839 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005840 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005841
5842 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005843 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5844 ADVERTISE_1000XPAUSE |
5845 ADVERTISE_1000XPSE_ASYM |
5846 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005847
Matt Carlson28011cf2011-11-16 18:36:59 -05005848 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005849 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005850
Matt Carlson28011cf2011-11-16 18:36:59 -05005851 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5852 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005853 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5854 tg3_writephy(tp, MII_BMCR, bmcr);
5855
5856 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005857 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005858 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005859
5860 return err;
5861 }
5862 } else {
5863 u32 new_bmcr;
5864
5865 bmcr &= ~BMCR_SPEED1000;
5866 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5867
5868 if (tp->link_config.duplex == DUPLEX_FULL)
5869 new_bmcr |= BMCR_FULLDPLX;
5870
5871 if (new_bmcr != bmcr) {
5872 /* BMCR_SPEED1000 is a reserved bit that needs
5873 * to be set on write.
5874 */
5875 new_bmcr |= BMCR_SPEED1000;
5876
5877 /* Force a linkdown */
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005878 if (tp->link_up) {
Michael Chan747e8f82005-07-25 12:33:22 -07005879 u32 adv;
5880
5881 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5882 adv &= ~(ADVERTISE_1000XFULL |
5883 ADVERTISE_1000XHALF |
5884 ADVERTISE_SLCT);
5885 tg3_writephy(tp, MII_ADVERTISE, adv);
5886 tg3_writephy(tp, MII_BMCR, bmcr |
5887 BMCR_ANRESTART |
5888 BMCR_ANENABLE);
5889 udelay(10);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005890 tg3_carrier_off(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005891 }
5892 tg3_writephy(tp, MII_BMCR, new_bmcr);
5893 bmcr = new_bmcr;
5894 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5895 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005896 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005897 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5898 bmsr |= BMSR_LSTATUS;
5899 else
5900 bmsr &= ~BMSR_LSTATUS;
5901 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005902 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005903 }
5904 }
5905
5906 if (bmsr & BMSR_LSTATUS) {
5907 current_speed = SPEED_1000;
Joe Perches953c96e2013-04-09 10:18:14 +00005908 current_link_up = true;
Michael Chan747e8f82005-07-25 12:33:22 -07005909 if (bmcr & BMCR_FULLDPLX)
5910 current_duplex = DUPLEX_FULL;
5911 else
5912 current_duplex = DUPLEX_HALF;
5913
Matt Carlsonef167e22007-12-20 20:10:01 -08005914 local_adv = 0;
5915 remote_adv = 0;
5916
Michael Chan747e8f82005-07-25 12:33:22 -07005917 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005918 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005919
5920 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5921 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5922 common = local_adv & remote_adv;
5923 if (common & (ADVERTISE_1000XHALF |
5924 ADVERTISE_1000XFULL)) {
5925 if (common & ADVERTISE_1000XFULL)
5926 current_duplex = DUPLEX_FULL;
5927 else
5928 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005929
5930 tp->link_config.rmt_adv =
5931 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005932 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005933 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005934 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005935 current_link_up = false;
Matt Carlson859a588792010-04-05 10:19:28 +00005936 }
Michael Chan747e8f82005-07-25 12:33:22 -07005937 }
5938 }
5939
Michael Chan85730a62013-04-09 08:48:06 +00005940fiber_setup_done:
Joe Perches953c96e2013-04-09 10:18:14 +00005941 if (current_link_up && current_duplex == DUPLEX_FULL)
Matt Carlsonef167e22007-12-20 20:10:01 -08005942 tg3_setup_flow_control(tp, local_adv, remote_adv);
5943
Michael Chan747e8f82005-07-25 12:33:22 -07005944 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5945 if (tp->link_config.active_duplex == DUPLEX_HALF)
5946 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5947
5948 tw32_f(MAC_MODE, tp->mac_mode);
5949 udelay(40);
5950
5951 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5952
5953 tp->link_config.active_speed = current_speed;
5954 tp->link_config.active_duplex = current_duplex;
5955
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005956 tg3_test_and_report_link_chg(tp, current_link_up);
Michael Chan747e8f82005-07-25 12:33:22 -07005957 return err;
5958}
5959
5960static void tg3_serdes_parallel_detect(struct tg3 *tp)
5961{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005962 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005963 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005964 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005965 return;
5966 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005967
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005968 if (!tp->link_up &&
Michael Chan747e8f82005-07-25 12:33:22 -07005969 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5970 u32 bmcr;
5971
5972 tg3_readphy(tp, MII_BMCR, &bmcr);
5973 if (bmcr & BMCR_ANENABLE) {
5974 u32 phy1, phy2;
5975
5976 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005977 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5978 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005979
5980 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005981 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5982 MII_TG3_DSP_EXP1_INT_STAT);
5983 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5984 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005985
5986 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5987 /* We have signal detect and not receiving
5988 * config code words, link is up by parallel
5989 * detection.
5990 */
5991
5992 bmcr &= ~BMCR_ANENABLE;
5993 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5994 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005995 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005996 }
5997 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005998 } else if (tp->link_up &&
Matt Carlson859a588792010-04-05 10:19:28 +00005999 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006000 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07006001 u32 phy2;
6002
6003 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00006004 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
6005 MII_TG3_DSP_EXP1_INT_STAT);
6006 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07006007 if (phy2 & 0x20) {
6008 u32 bmcr;
6009
6010 /* Config code words received, turn on autoneg. */
6011 tg3_readphy(tp, MII_BMCR, &bmcr);
6012 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
6013
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006014 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07006015
6016 }
6017 }
6018}
6019
Joe Perches953c96e2013-04-09 10:18:14 +00006020static int tg3_setup_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021{
Matt Carlsonf2096f92011-04-05 14:22:48 +00006022 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 int err;
6024
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006025 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006027 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07006028 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00006029 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031
Joe Perches41535772013-02-16 11:20:04 +00006032 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00006033 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08006034
6035 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
6036 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
6037 scale = 65;
6038 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
6039 scale = 6;
6040 else
6041 scale = 12;
6042
6043 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
6044 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
6045 tw32(GRC_MISC_CFG, val);
6046 }
6047
Matt Carlsonf2096f92011-04-05 14:22:48 +00006048 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
6049 (6 << TX_LENGTHS_IPG_SHIFT);
Joe Perches41535772013-02-16 11:20:04 +00006050 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
6051 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00006052 val |= tr32(MAC_TX_LENGTHS) &
6053 (TX_LENGTHS_JMB_FRM_LEN_MSK |
6054 TX_LENGTHS_CNT_DWN_VAL_MSK);
6055
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 if (tp->link_config.active_speed == SPEED_1000 &&
6057 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00006058 tw32(MAC_TX_LENGTHS, val |
6059 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00006061 tw32(MAC_TX_LENGTHS, val |
6062 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063
Joe Perches63c3a662011-04-26 08:12:10 +00006064 if (!tg3_flag(tp, 5705_PLUS)) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006065 if (tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07006067 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 } else {
6069 tw32(HOSTCC_STAT_COAL_TICKS, 0);
6070 }
6071 }
6072
Joe Perches63c3a662011-04-26 08:12:10 +00006073 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00006074 val = tr32(PCIE_PWR_MGMT_THRESH);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006075 if (!tp->link_up)
Matt Carlson8ed5d972007-05-07 00:25:49 -07006076 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
6077 tp->pwrmgmt_thresh;
6078 else
6079 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
6080 tw32(PCIE_PWR_MGMT_THRESH, val);
6081 }
6082
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083 return err;
6084}
6085
Matt Carlsonbe947302012-12-03 19:36:57 +00006086/* tp->lock must be held */
Matt Carlson7d41e492012-12-03 19:36:58 +00006087static u64 tg3_refclk_read(struct tg3 *tp)
6088{
6089 u64 stamp = tr32(TG3_EAV_REF_CLCK_LSB);
6090 return stamp | (u64)tr32(TG3_EAV_REF_CLCK_MSB) << 32;
6091}
6092
6093/* tp->lock must be held */
Matt Carlsonbe947302012-12-03 19:36:57 +00006094static void tg3_refclk_write(struct tg3 *tp, u64 newval)
6095{
Nithin Sujir92e64572013-07-29 13:58:38 -07006096 u32 clock_ctl = tr32(TG3_EAV_REF_CLCK_CTL);
6097
6098 tw32(TG3_EAV_REF_CLCK_CTL, clock_ctl | TG3_EAV_REF_CLCK_CTL_STOP);
Matt Carlsonbe947302012-12-03 19:36:57 +00006099 tw32(TG3_EAV_REF_CLCK_LSB, newval & 0xffffffff);
6100 tw32(TG3_EAV_REF_CLCK_MSB, newval >> 32);
Nithin Sujir92e64572013-07-29 13:58:38 -07006101 tw32_f(TG3_EAV_REF_CLCK_CTL, clock_ctl | TG3_EAV_REF_CLCK_CTL_RESUME);
Matt Carlsonbe947302012-12-03 19:36:57 +00006102}
6103
Matt Carlson7d41e492012-12-03 19:36:58 +00006104static inline void tg3_full_lock(struct tg3 *tp, int irq_sync);
6105static inline void tg3_full_unlock(struct tg3 *tp);
6106static int tg3_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
6107{
6108 struct tg3 *tp = netdev_priv(dev);
6109
6110 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
6111 SOF_TIMESTAMPING_RX_SOFTWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006112 SOF_TIMESTAMPING_SOFTWARE;
6113
6114 if (tg3_flag(tp, PTP_CAPABLE)) {
Flavio Leitner32e19272013-04-30 07:20:34 +00006115 info->so_timestamping |= SOF_TIMESTAMPING_TX_HARDWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006116 SOF_TIMESTAMPING_RX_HARDWARE |
6117 SOF_TIMESTAMPING_RAW_HARDWARE;
6118 }
Matt Carlson7d41e492012-12-03 19:36:58 +00006119
6120 if (tp->ptp_clock)
6121 info->phc_index = ptp_clock_index(tp->ptp_clock);
6122 else
6123 info->phc_index = -1;
6124
6125 info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
6126
6127 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
6128 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
6129 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
6130 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
6131 return 0;
6132}
6133
6134static int tg3_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
6135{
6136 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6137 bool neg_adj = false;
6138 u32 correction = 0;
6139
6140 if (ppb < 0) {
6141 neg_adj = true;
6142 ppb = -ppb;
6143 }
6144
6145 /* Frequency adjustment is performed using hardware with a 24 bit
6146 * accumulator and a programmable correction value. On each clk, the
6147 * correction value gets added to the accumulator and when it
6148 * overflows, the time counter is incremented/decremented.
6149 *
6150 * So conversion from ppb to correction value is
6151 * ppb * (1 << 24) / 1000000000
6152 */
6153 correction = div_u64((u64)ppb * (1 << 24), 1000000000ULL) &
6154 TG3_EAV_REF_CLK_CORRECT_MASK;
6155
6156 tg3_full_lock(tp, 0);
6157
6158 if (correction)
6159 tw32(TG3_EAV_REF_CLK_CORRECT_CTL,
6160 TG3_EAV_REF_CLK_CORRECT_EN |
6161 (neg_adj ? TG3_EAV_REF_CLK_CORRECT_NEG : 0) | correction);
6162 else
6163 tw32(TG3_EAV_REF_CLK_CORRECT_CTL, 0);
6164
6165 tg3_full_unlock(tp);
6166
6167 return 0;
6168}
6169
6170static int tg3_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
6171{
6172 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6173
6174 tg3_full_lock(tp, 0);
6175 tp->ptp_adjust += delta;
6176 tg3_full_unlock(tp);
6177
6178 return 0;
6179}
6180
6181static int tg3_ptp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
6182{
6183 u64 ns;
6184 u32 remainder;
6185 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6186
6187 tg3_full_lock(tp, 0);
6188 ns = tg3_refclk_read(tp);
6189 ns += tp->ptp_adjust;
6190 tg3_full_unlock(tp);
6191
6192 ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder);
6193 ts->tv_nsec = remainder;
6194
6195 return 0;
6196}
6197
6198static int tg3_ptp_settime(struct ptp_clock_info *ptp,
6199 const struct timespec *ts)
6200{
6201 u64 ns;
6202 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6203
6204 ns = timespec_to_ns(ts);
6205
6206 tg3_full_lock(tp, 0);
6207 tg3_refclk_write(tp, ns);
6208 tp->ptp_adjust = 0;
6209 tg3_full_unlock(tp);
6210
6211 return 0;
6212}
6213
6214static int tg3_ptp_enable(struct ptp_clock_info *ptp,
6215 struct ptp_clock_request *rq, int on)
6216{
Nithin Sujir92e64572013-07-29 13:58:38 -07006217 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6218 u32 clock_ctl;
6219 int rval = 0;
6220
6221 switch (rq->type) {
6222 case PTP_CLK_REQ_PEROUT:
6223 if (rq->perout.index != 0)
6224 return -EINVAL;
6225
6226 tg3_full_lock(tp, 0);
6227 clock_ctl = tr32(TG3_EAV_REF_CLCK_CTL);
6228 clock_ctl &= ~TG3_EAV_CTL_TSYNC_GPIO_MASK;
6229
6230 if (on) {
6231 u64 nsec;
6232
6233 nsec = rq->perout.start.sec * 1000000000ULL +
6234 rq->perout.start.nsec;
6235
6236 if (rq->perout.period.sec || rq->perout.period.nsec) {
6237 netdev_warn(tp->dev,
6238 "Device supports only a one-shot timesync output, period must be 0\n");
6239 rval = -EINVAL;
6240 goto err_out;
6241 }
6242
6243 if (nsec & (1ULL << 63)) {
6244 netdev_warn(tp->dev,
6245 "Start value (nsec) is over limit. Maximum size of start is only 63 bits\n");
6246 rval = -EINVAL;
6247 goto err_out;
6248 }
6249
6250 tw32(TG3_EAV_WATCHDOG0_LSB, (nsec & 0xffffffff));
6251 tw32(TG3_EAV_WATCHDOG0_MSB,
6252 TG3_EAV_WATCHDOG0_EN |
6253 ((nsec >> 32) & TG3_EAV_WATCHDOG_MSB_MASK));
6254
6255 tw32(TG3_EAV_REF_CLCK_CTL,
6256 clock_ctl | TG3_EAV_CTL_TSYNC_WDOG0);
6257 } else {
6258 tw32(TG3_EAV_WATCHDOG0_MSB, 0);
6259 tw32(TG3_EAV_REF_CLCK_CTL, clock_ctl);
6260 }
6261
6262err_out:
6263 tg3_full_unlock(tp);
6264 return rval;
6265
6266 default:
6267 break;
6268 }
6269
Matt Carlson7d41e492012-12-03 19:36:58 +00006270 return -EOPNOTSUPP;
6271}
6272
6273static const struct ptp_clock_info tg3_ptp_caps = {
6274 .owner = THIS_MODULE,
6275 .name = "tg3 clock",
6276 .max_adj = 250000000,
6277 .n_alarm = 0,
6278 .n_ext_ts = 0,
Nithin Sujir92e64572013-07-29 13:58:38 -07006279 .n_per_out = 1,
Matt Carlson7d41e492012-12-03 19:36:58 +00006280 .pps = 0,
6281 .adjfreq = tg3_ptp_adjfreq,
6282 .adjtime = tg3_ptp_adjtime,
6283 .gettime = tg3_ptp_gettime,
6284 .settime = tg3_ptp_settime,
6285 .enable = tg3_ptp_enable,
6286};
6287
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006288static void tg3_hwclock_to_timestamp(struct tg3 *tp, u64 hwclock,
6289 struct skb_shared_hwtstamps *timestamp)
6290{
6291 memset(timestamp, 0, sizeof(struct skb_shared_hwtstamps));
6292 timestamp->hwtstamp = ns_to_ktime((hwclock & TG3_TSTAMP_MASK) +
6293 tp->ptp_adjust);
6294}
6295
Matt Carlsonbe947302012-12-03 19:36:57 +00006296/* tp->lock must be held */
6297static void tg3_ptp_init(struct tg3 *tp)
6298{
6299 if (!tg3_flag(tp, PTP_CAPABLE))
6300 return;
6301
6302 /* Initialize the hardware clock to the system time. */
6303 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()));
6304 tp->ptp_adjust = 0;
Matt Carlson7d41e492012-12-03 19:36:58 +00006305 tp->ptp_info = tg3_ptp_caps;
Matt Carlsonbe947302012-12-03 19:36:57 +00006306}
6307
6308/* tp->lock must be held */
6309static void tg3_ptp_resume(struct tg3 *tp)
6310{
6311 if (!tg3_flag(tp, PTP_CAPABLE))
6312 return;
6313
6314 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()) + tp->ptp_adjust);
6315 tp->ptp_adjust = 0;
6316}
6317
6318static void tg3_ptp_fini(struct tg3 *tp)
6319{
6320 if (!tg3_flag(tp, PTP_CAPABLE) || !tp->ptp_clock)
6321 return;
6322
Matt Carlson7d41e492012-12-03 19:36:58 +00006323 ptp_clock_unregister(tp->ptp_clock);
Matt Carlsonbe947302012-12-03 19:36:57 +00006324 tp->ptp_clock = NULL;
6325 tp->ptp_adjust = 0;
6326}
6327
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006328static inline int tg3_irq_sync(struct tg3 *tp)
6329{
6330 return tp->irq_sync;
6331}
6332
Matt Carlson97bd8e42011-04-13 11:05:04 +00006333static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
6334{
6335 int i;
6336
6337 dst = (u32 *)((u8 *)dst + off);
6338 for (i = 0; i < len; i += sizeof(u32))
6339 *dst++ = tr32(off + i);
6340}
6341
6342static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
6343{
6344 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
6345 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
6346 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
6347 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
6348 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
6349 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
6350 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
6351 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
6352 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
6353 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
6354 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
6355 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
6356 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
6357 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
6358 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
6359 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
6360 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
6361 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
6362 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
6363
Joe Perches63c3a662011-04-26 08:12:10 +00006364 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006365 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
6366
6367 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
6368 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
6369 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
6370 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
6371 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
6372 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
6373 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
6374 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
6375
Joe Perches63c3a662011-04-26 08:12:10 +00006376 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006377 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
6378 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
6379 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
6380 }
6381
6382 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
6383 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
6384 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
6385 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
6386 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
6387
Joe Perches63c3a662011-04-26 08:12:10 +00006388 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006389 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
6390}
6391
6392static void tg3_dump_state(struct tg3 *tp)
6393{
6394 int i;
6395 u32 *regs;
6396
6397 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
Joe Perchesb2adaca2013-02-03 17:43:58 +00006398 if (!regs)
Matt Carlson97bd8e42011-04-13 11:05:04 +00006399 return;
Matt Carlson97bd8e42011-04-13 11:05:04 +00006400
Joe Perches63c3a662011-04-26 08:12:10 +00006401 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006402 /* Read up to but not including private PCI registers */
6403 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
6404 regs[i / sizeof(u32)] = tr32(i);
6405 } else
6406 tg3_dump_legacy_regs(tp, regs);
6407
6408 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
6409 if (!regs[i + 0] && !regs[i + 1] &&
6410 !regs[i + 2] && !regs[i + 3])
6411 continue;
6412
6413 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
6414 i * 4,
6415 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
6416 }
6417
6418 kfree(regs);
6419
6420 for (i = 0; i < tp->irq_cnt; i++) {
6421 struct tg3_napi *tnapi = &tp->napi[i];
6422
6423 /* SW status block */
6424 netdev_err(tp->dev,
6425 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
6426 i,
6427 tnapi->hw_status->status,
6428 tnapi->hw_status->status_tag,
6429 tnapi->hw_status->rx_jumbo_consumer,
6430 tnapi->hw_status->rx_consumer,
6431 tnapi->hw_status->rx_mini_consumer,
6432 tnapi->hw_status->idx[0].rx_producer,
6433 tnapi->hw_status->idx[0].tx_consumer);
6434
6435 netdev_err(tp->dev,
6436 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
6437 i,
6438 tnapi->last_tag, tnapi->last_irq_tag,
6439 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
6440 tnapi->rx_rcb_ptr,
6441 tnapi->prodring.rx_std_prod_idx,
6442 tnapi->prodring.rx_std_cons_idx,
6443 tnapi->prodring.rx_jmb_prod_idx,
6444 tnapi->prodring.rx_jmb_cons_idx);
6445 }
6446}
6447
Michael Chandf3e6542006-05-26 17:48:07 -07006448/* This is called whenever we suspect that the system chipset is re-
6449 * ordering the sequence of MMIO to the tx send mailbox. The symptom
6450 * is bogus tx completions. We try to recover by setting the
6451 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
6452 * in the workqueue.
6453 */
6454static void tg3_tx_recover(struct tg3 *tp)
6455{
Joe Perches63c3a662011-04-26 08:12:10 +00006456 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07006457 tp->write32_tx_mbox == tg3_write_indirect_mbox);
6458
Matt Carlson5129c3a2010-04-05 10:19:23 +00006459 netdev_warn(tp->dev,
6460 "The system may be re-ordering memory-mapped I/O "
6461 "cycles to the network device, attempting to recover. "
6462 "Please report the problem to the driver maintainer "
6463 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07006464
Joe Perches63c3a662011-04-26 08:12:10 +00006465 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006466}
6467
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006468static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07006469{
Matt Carlsonf65aac12010-08-02 11:26:03 +00006470 /* Tell compiler to fetch tx indices from memory. */
6471 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006472 return tnapi->tx_pending -
6473 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07006474}
6475
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476/* Tigon3 never reports partial packet sends. So we do not
6477 * need special logic to handle SKBs that have not had all
6478 * of their frags sent yet, like SunGEM does.
6479 */
Matt Carlson17375d22009-08-28 14:02:18 +00006480static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481{
Matt Carlson17375d22009-08-28 14:02:18 +00006482 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006483 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006484 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006485 struct netdev_queue *txq;
6486 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00006487 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006488
Joe Perches63c3a662011-04-26 08:12:10 +00006489 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006490 index--;
6491
6492 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493
6494 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00006495 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07006497 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498
Michael Chandf3e6542006-05-26 17:48:07 -07006499 if (unlikely(skb == NULL)) {
6500 tg3_tx_recover(tp);
6501 return;
6502 }
6503
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006504 if (tnapi->tx_ring[sw_idx].len_flags & TXD_FLAG_HWTSTAMP) {
6505 struct skb_shared_hwtstamps timestamp;
6506 u64 hwclock = tr32(TG3_TX_TSTAMP_LSB);
6507 hwclock |= (u64)tr32(TG3_TX_TSTAMP_MSB) << 32;
6508
6509 tg3_hwclock_to_timestamp(tp, hwclock, &timestamp);
6510
6511 skb_tstamp_tx(skb, &timestamp);
6512 }
6513
Alexander Duyckf4188d82009-12-02 16:48:38 +00006514 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006515 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006516 skb_headlen(skb),
6517 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518
6519 ri->skb = NULL;
6520
Matt Carlsone01ee142011-07-27 14:20:50 +00006521 while (ri->fragmented) {
6522 ri->fragmented = false;
6523 sw_idx = NEXT_TX(sw_idx);
6524 ri = &tnapi->tx_buffers[sw_idx];
6525 }
6526
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527 sw_idx = NEXT_TX(sw_idx);
6528
6529 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006530 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07006531 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
6532 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006533
6534 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006535 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006536 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006537 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006538
6539 while (ri->fragmented) {
6540 ri->fragmented = false;
6541 sw_idx = NEXT_TX(sw_idx);
6542 ri = &tnapi->tx_buffers[sw_idx];
6543 }
6544
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 sw_idx = NEXT_TX(sw_idx);
6546 }
6547
Tom Herbert298376d2011-11-28 16:33:30 +00006548 pkts_compl++;
6549 bytes_compl += skb->len;
6550
David S. Millerf47c11e2005-06-24 20:18:35 -07006551 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07006552
6553 if (unlikely(tx_bug)) {
6554 tg3_tx_recover(tp);
6555 return;
6556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 }
6558
Tom Herbert5cb917b2012-03-05 19:53:50 +00006559 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00006560
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006561 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562
Michael Chan1b2a7202006-08-07 21:46:02 -07006563 /* Need to make the tx_cons update visible to tg3_start_xmit()
6564 * before checking for netif_queue_stopped(). Without the
6565 * memory barrier, there is a small possibility that tg3_start_xmit()
6566 * will miss it and cause the queue to be stopped forever.
6567 */
6568 smp_mb();
6569
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006570 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006571 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006572 __netif_tx_lock(txq, smp_processor_id());
6573 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006574 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006575 netif_tx_wake_queue(txq);
6576 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578}
6579
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006580static void tg3_frag_free(bool is_frag, void *data)
6581{
6582 if (is_frag)
6583 put_page(virt_to_head_page(data));
6584 else
6585 kfree(data);
6586}
6587
Eric Dumazet9205fd92011-11-18 06:47:01 +00006588static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006589{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006590 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
6591 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
6592
Eric Dumazet9205fd92011-11-18 06:47:01 +00006593 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006594 return;
6595
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006596 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006597 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006598 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006599 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006600}
6601
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006602
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603/* Returns size of skb allocated or < 0 on error.
6604 *
6605 * We only need to fill in the address because the other members
6606 * of the RX descriptor are invariant, see tg3_init_rings.
6607 *
6608 * Note the purposeful assymetry of cpu vs. chip accesses. For
6609 * posting buffers we only dirty the first cache line of the RX
6610 * descriptor (containing the address). Whereas for the RX status
6611 * buffers the cpu only reads the last cacheline of the RX descriptor
6612 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
6613 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006614static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006615 u32 opaque_key, u32 dest_idx_unmasked,
6616 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617{
6618 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00006619 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006620 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006622 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624 switch (opaque_key) {
6625 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006626 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00006627 desc = &tpr->rx_std[dest_idx];
6628 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006629 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630 break;
6631
6632 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006633 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00006634 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00006635 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006636 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637 break;
6638
6639 default:
6640 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642
6643 /* Do not overwrite any of the map or rp information
6644 * until we are sure we can commit to a new buffer.
6645 *
6646 * Callers depend upon this behavior and assume that
6647 * we leave everything unchanged if we fail.
6648 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006649 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
6650 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006651 if (skb_size <= PAGE_SIZE) {
6652 data = netdev_alloc_frag(skb_size);
6653 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006654 } else {
6655 data = kmalloc(skb_size, GFP_ATOMIC);
6656 *frag_size = 0;
6657 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00006658 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 return -ENOMEM;
6660
Eric Dumazet9205fd92011-11-18 06:47:01 +00006661 mapping = pci_map_single(tp->pdev,
6662 data + TG3_RX_OFFSET(tp),
6663 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006665 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006666 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00006667 return -EIO;
6668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669
Eric Dumazet9205fd92011-11-18 06:47:01 +00006670 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006671 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673 desc->addr_hi = ((u64)mapping >> 32);
6674 desc->addr_lo = ((u64)mapping & 0xffffffff);
6675
Eric Dumazet9205fd92011-11-18 06:47:01 +00006676 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677}
6678
6679/* We only need to move over in the address because the other
6680 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00006681 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682 */
Matt Carlsona3896162009-11-13 13:03:44 +00006683static void tg3_recycle_rx(struct tg3_napi *tnapi,
6684 struct tg3_rx_prodring_set *dpr,
6685 u32 opaque_key, int src_idx,
6686 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687{
Matt Carlson17375d22009-08-28 14:02:18 +00006688 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
6690 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006691 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006692 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693
6694 switch (opaque_key) {
6695 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006696 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006697 dest_desc = &dpr->rx_std[dest_idx];
6698 dest_map = &dpr->rx_std_buffers[dest_idx];
6699 src_desc = &spr->rx_std[src_idx];
6700 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701 break;
6702
6703 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006704 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006705 dest_desc = &dpr->rx_jmb[dest_idx].std;
6706 dest_map = &dpr->rx_jmb_buffers[dest_idx];
6707 src_desc = &spr->rx_jmb[src_idx].std;
6708 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709 break;
6710
6711 default:
6712 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714
Eric Dumazet9205fd92011-11-18 06:47:01 +00006715 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006716 dma_unmap_addr_set(dest_map, mapping,
6717 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718 dest_desc->addr_hi = src_desc->addr_hi;
6719 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00006720
6721 /* Ensure that the update to the skb happens after the physical
6722 * addresses have been transferred to the new BD location.
6723 */
6724 smp_wmb();
6725
Eric Dumazet9205fd92011-11-18 06:47:01 +00006726 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727}
6728
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729/* The RX ring scheme is composed of multiple rings which post fresh
6730 * buffers to the chip, and one special ring the chip uses to report
6731 * status back to the host.
6732 *
6733 * The special ring reports the status of received packets to the
6734 * host. The chip does not write into the original descriptor the
6735 * RX buffer was obtained from. The chip simply takes the original
6736 * descriptor as provided by the host, updates the status and length
6737 * field, then writes this into the next status ring entry.
6738 *
6739 * Each ring the host uses to post buffers to the chip is described
6740 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
6741 * it is first placed into the on-chip ram. When the packet's length
6742 * is known, it walks down the TG3_BDINFO entries to select the ring.
6743 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
6744 * which is within the range of the new packet's length is chosen.
6745 *
6746 * The "separate ring for rx status" scheme may sound queer, but it makes
6747 * sense from a cache coherency perspective. If only the host writes
6748 * to the buffer post rings, and only the chip writes to the rx status
6749 * rings, then cache lines never move beyond shared-modified state.
6750 * If both the host and chip were to write into the same ring, cache line
6751 * eviction could occur since both entities want it in an exclusive state.
6752 */
Matt Carlson17375d22009-08-28 14:02:18 +00006753static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754{
Matt Carlson17375d22009-08-28 14:02:18 +00006755 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07006756 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006757 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00006758 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07006759 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006761 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006763 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764 /*
6765 * We need to order the read of hw_idx and the read of
6766 * the opaque cookie.
6767 */
6768 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 work_mask = 0;
6770 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006771 std_prod_idx = tpr->rx_std_prod_idx;
6772 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00006774 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00006775 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776 unsigned int len;
6777 struct sk_buff *skb;
6778 dma_addr_t dma_addr;
6779 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006780 u8 *data;
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006781 u64 tstamp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782
6783 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
6784 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
6785 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006786 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006787 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006788 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006789 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07006790 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006792 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006793 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006794 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006795 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00006796 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798
6799 work_mask |= opaque_key;
6800
6801 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
6802 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
6803 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00006804 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805 desc_idx, *post_ptr);
6806 drop_it_no_recycle:
6807 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00006808 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809 goto next_pkt;
6810 }
6811
Eric Dumazet9205fd92011-11-18 06:47:01 +00006812 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08006813 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
6814 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006816 if ((desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6817 RXD_FLAG_PTPSTAT_PTPV1 ||
6818 (desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6819 RXD_FLAG_PTPSTAT_PTPV2) {
6820 tstamp = tr32(TG3_RX_TSTAMP_LSB);
6821 tstamp |= (u64)tr32(TG3_RX_TSTAMP_MSB) << 32;
6822 }
6823
Matt Carlsond2757fc2010-04-12 06:58:27 +00006824 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006826 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827
Eric Dumazet9205fd92011-11-18 06:47:01 +00006828 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006829 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830 if (skb_size < 0)
6831 goto drop_it;
6832
Matt Carlson287be122009-08-28 13:58:46 +00006833 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834 PCI_DMA_FROMDEVICE);
6835
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006836 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006837 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006838 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006839 goto drop_it_no_recycle;
6840 }
6841 skb_reserve(skb, TG3_RX_OFFSET(tp));
6842 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00006843 * after the usage of the old DMA mapping.
6844 */
6845 smp_wmb();
6846
Eric Dumazet9205fd92011-11-18 06:47:01 +00006847 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00006848
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00006850 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851 desc_idx, *post_ptr);
6852
Eric Dumazet9205fd92011-11-18 06:47:01 +00006853 skb = netdev_alloc_skb(tp->dev,
6854 len + TG3_RAW_IP_ALIGN);
6855 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856 goto drop_it_no_recycle;
6857
Eric Dumazet9205fd92011-11-18 06:47:01 +00006858 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006860 memcpy(skb->data,
6861 data + TG3_RX_OFFSET(tp),
6862 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864 }
6865
Eric Dumazet9205fd92011-11-18 06:47:01 +00006866 skb_put(skb, len);
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006867 if (tstamp)
6868 tg3_hwclock_to_timestamp(tp, tstamp,
6869 skb_hwtstamps(skb));
6870
Michał Mirosławdc668912011-04-07 03:35:07 +00006871 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6873 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6874 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6875 skb->ip_summed = CHECKSUM_UNNECESSARY;
6876 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006877 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878
6879 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006880
6881 if (len > (tp->dev->mtu + ETH_HLEN) &&
6882 skb->protocol != htons(ETH_P_8021Q)) {
6883 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006884 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006885 }
6886
Matt Carlson9dc7a112010-04-12 06:58:28 +00006887 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006888 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00006889 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
Matt Carlsonbf933c82011-01-25 15:58:49 +00006890 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006891
Matt Carlsonbf933c82011-01-25 15:58:49 +00006892 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894 received++;
6895 budget--;
6896
6897next_pkt:
6898 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006899
6900 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006901 tpr->rx_std_prod_idx = std_prod_idx &
6902 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006903 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6904 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006905 work_mask &= ~RXD_OPAQUE_RING_STD;
6906 rx_std_posted = 0;
6907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006909 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006910 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006911
6912 /* Refresh hw_idx to see if there is new work */
6913 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006914 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006915 rmb();
6916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917 }
6918
6919 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006920 tnapi->rx_rcb_ptr = sw_idx;
6921 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922
6923 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006924 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006925 /* Sync BD data before updating mailbox */
6926 wmb();
6927
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006928 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006929 tpr->rx_std_prod_idx = std_prod_idx &
6930 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006931 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6932 tpr->rx_std_prod_idx);
6933 }
6934 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006935 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6936 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006937 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6938 tpr->rx_jmb_prod_idx);
6939 }
6940 mmiowb();
6941 } else if (work_mask) {
6942 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6943 * updated before the producer indices can be updated.
6944 */
6945 smp_wmb();
6946
Matt Carlson2c49a442010-09-30 10:34:35 +00006947 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6948 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006949
Michael Chan7ae52892012-03-21 15:38:33 +00006950 if (tnapi != &tp->napi[1]) {
6951 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006952 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955
6956 return received;
6957}
6958
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006959static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00006962 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006963 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
6964
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965 if (sblk->status & SD_STATUS_LINK_CHG) {
6966 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006967 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006968 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006969 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006970 tw32_f(MAC_STATUS,
6971 (MAC_STATUS_SYNC_CHANGED |
6972 MAC_STATUS_CFG_CHANGED |
6973 MAC_STATUS_MI_COMPLETION |
6974 MAC_STATUS_LNKSTATE_CHANGED));
6975 udelay(40);
6976 } else
Joe Perches953c96e2013-04-09 10:18:14 +00006977 tg3_setup_phy(tp, false);
David S. Millerf47c11e2005-06-24 20:18:35 -07006978 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979 }
6980 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006981}
6982
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006983static int tg3_rx_prodring_xfer(struct tg3 *tp,
6984 struct tg3_rx_prodring_set *dpr,
6985 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006986{
6987 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006988 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006989
6990 while (1) {
6991 src_prod_idx = spr->rx_std_prod_idx;
6992
6993 /* Make sure updates to the rx_std_buffers[] entries and the
6994 * standard producer index are seen in the correct order.
6995 */
6996 smp_rmb();
6997
6998 if (spr->rx_std_cons_idx == src_prod_idx)
6999 break;
7000
7001 if (spr->rx_std_cons_idx < src_prod_idx)
7002 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
7003 else
Matt Carlson2c49a442010-09-30 10:34:35 +00007004 cpycnt = tp->rx_std_ring_mask + 1 -
7005 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007006
Matt Carlson2c49a442010-09-30 10:34:35 +00007007 cpycnt = min(cpycnt,
7008 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007009
7010 si = spr->rx_std_cons_idx;
7011 di = dpr->rx_std_prod_idx;
7012
Matt Carlsone92967b2010-02-12 14:47:06 +00007013 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007014 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00007015 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007016 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00007017 break;
7018 }
7019 }
7020
7021 if (!cpycnt)
7022 break;
7023
7024 /* Ensure that updates to the rx_std_buffers ring and the
7025 * shadowed hardware producer ring from tg3_recycle_skb() are
7026 * ordered correctly WRT the skb check above.
7027 */
7028 smp_rmb();
7029
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007030 memcpy(&dpr->rx_std_buffers[di],
7031 &spr->rx_std_buffers[si],
7032 cpycnt * sizeof(struct ring_info));
7033
7034 for (i = 0; i < cpycnt; i++, di++, si++) {
7035 struct tg3_rx_buffer_desc *sbd, *dbd;
7036 sbd = &spr->rx_std[si];
7037 dbd = &dpr->rx_std[di];
7038 dbd->addr_hi = sbd->addr_hi;
7039 dbd->addr_lo = sbd->addr_lo;
7040 }
7041
Matt Carlson2c49a442010-09-30 10:34:35 +00007042 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
7043 tp->rx_std_ring_mask;
7044 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
7045 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007046 }
7047
7048 while (1) {
7049 src_prod_idx = spr->rx_jmb_prod_idx;
7050
7051 /* Make sure updates to the rx_jmb_buffers[] entries and
7052 * the jumbo producer index are seen in the correct order.
7053 */
7054 smp_rmb();
7055
7056 if (spr->rx_jmb_cons_idx == src_prod_idx)
7057 break;
7058
7059 if (spr->rx_jmb_cons_idx < src_prod_idx)
7060 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
7061 else
Matt Carlson2c49a442010-09-30 10:34:35 +00007062 cpycnt = tp->rx_jmb_ring_mask + 1 -
7063 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007064
7065 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00007066 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007067
7068 si = spr->rx_jmb_cons_idx;
7069 di = dpr->rx_jmb_prod_idx;
7070
Matt Carlsone92967b2010-02-12 14:47:06 +00007071 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007072 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00007073 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007074 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00007075 break;
7076 }
7077 }
7078
7079 if (!cpycnt)
7080 break;
7081
7082 /* Ensure that updates to the rx_jmb_buffers ring and the
7083 * shadowed hardware producer ring from tg3_recycle_skb() are
7084 * ordered correctly WRT the skb check above.
7085 */
7086 smp_rmb();
7087
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007088 memcpy(&dpr->rx_jmb_buffers[di],
7089 &spr->rx_jmb_buffers[si],
7090 cpycnt * sizeof(struct ring_info));
7091
7092 for (i = 0; i < cpycnt; i++, di++, si++) {
7093 struct tg3_rx_buffer_desc *sbd, *dbd;
7094 sbd = &spr->rx_jmb[si].std;
7095 dbd = &dpr->rx_jmb[di].std;
7096 dbd->addr_hi = sbd->addr_hi;
7097 dbd->addr_lo = sbd->addr_lo;
7098 }
7099
Matt Carlson2c49a442010-09-30 10:34:35 +00007100 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
7101 tp->rx_jmb_ring_mask;
7102 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
7103 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007104 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007105
7106 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007107}
7108
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007109static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
7110{
7111 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112
7113 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007114 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00007115 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00007116 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07007117 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118 }
7119
Matt Carlsonf891ea12012-04-24 13:37:01 +00007120 if (!tnapi->rx_rcb_prod_idx)
7121 return work_done;
7122
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123 /* run RX thread, within the bounds set by NAPI.
7124 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007125 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007127 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00007128 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129
Joe Perches63c3a662011-04-26 08:12:10 +00007130 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00007131 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007132 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007133 u32 std_prod_idx = dpr->rx_std_prod_idx;
7134 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007135
Michael Chan7ae52892012-03-21 15:38:33 +00007136 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00007137 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007138 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00007139 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007140
7141 wmb();
7142
Matt Carlsone4af1af2010-02-12 14:47:05 +00007143 if (std_prod_idx != dpr->rx_std_prod_idx)
7144 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
7145 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007146
Matt Carlsone4af1af2010-02-12 14:47:05 +00007147 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
7148 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
7149 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007150
7151 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007152
7153 if (err)
7154 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007155 }
7156
David S. Miller6f535762007-10-11 18:08:29 -07007157 return work_done;
7158}
David S. Millerf7383c222005-05-18 22:50:53 -07007159
Matt Carlsondb219972011-11-04 09:15:03 +00007160static inline void tg3_reset_task_schedule(struct tg3 *tp)
7161{
7162 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
7163 schedule_work(&tp->reset_task);
7164}
7165
7166static inline void tg3_reset_task_cancel(struct tg3 *tp)
7167{
7168 cancel_work_sync(&tp->reset_task);
7169 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00007170 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00007171}
7172
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007173static int tg3_poll_msix(struct napi_struct *napi, int budget)
7174{
7175 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7176 struct tg3 *tp = tnapi->tp;
7177 int work_done = 0;
7178 struct tg3_hw_status *sblk = tnapi->hw_status;
7179
7180 while (1) {
7181 work_done = tg3_poll_work(tnapi, work_done, budget);
7182
Joe Perches63c3a662011-04-26 08:12:10 +00007183 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007184 goto tx_recovery;
7185
7186 if (unlikely(work_done >= budget))
7187 break;
7188
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007189 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007190 * to tell the hw how much work has been processed,
7191 * so we must read it before checking for more work.
7192 */
7193 tnapi->last_tag = sblk->status_tag;
7194 tnapi->last_irq_tag = tnapi->last_tag;
7195 rmb();
7196
7197 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00007198 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
7199 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00007200
7201 /* This test here is not race free, but will reduce
7202 * the number of interrupts by looping again.
7203 */
7204 if (tnapi == &tp->napi[1] && tp->rx_refill)
7205 continue;
7206
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007207 napi_complete(napi);
7208 /* Reenable interrupts. */
7209 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00007210
7211 /* This test here is synchronized by napi_schedule()
7212 * and napi_complete() to close the race condition.
7213 */
7214 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
7215 tw32(HOSTCC_MODE, tp->coalesce_mode |
7216 HOSTCC_MODE_ENABLE |
7217 tnapi->coal_now);
7218 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007219 mmiowb();
7220 break;
7221 }
7222 }
7223
7224 return work_done;
7225
7226tx_recovery:
7227 /* work_done is guaranteed to be less than budget. */
7228 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007229 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007230 return work_done;
7231}
7232
Matt Carlsone64de4e2011-04-13 11:05:05 +00007233static void tg3_process_error(struct tg3 *tp)
7234{
7235 u32 val;
7236 bool real_error = false;
7237
Joe Perches63c3a662011-04-26 08:12:10 +00007238 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00007239 return;
7240
7241 /* Check Flow Attention register */
7242 val = tr32(HOSTCC_FLOW_ATTN);
7243 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
7244 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
7245 real_error = true;
7246 }
7247
7248 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
7249 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
7250 real_error = true;
7251 }
7252
7253 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
7254 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
7255 real_error = true;
7256 }
7257
7258 if (!real_error)
7259 return;
7260
7261 tg3_dump_state(tp);
7262
Joe Perches63c3a662011-04-26 08:12:10 +00007263 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00007264 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00007265}
7266
David S. Miller6f535762007-10-11 18:08:29 -07007267static int tg3_poll(struct napi_struct *napi, int budget)
7268{
Matt Carlson8ef04422009-08-28 14:01:37 +00007269 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7270 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07007271 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00007272 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07007273
7274 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00007275 if (sblk->status & SD_STATUS_ERROR)
7276 tg3_process_error(tp);
7277
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007278 tg3_poll_link(tp);
7279
Matt Carlson17375d22009-08-28 14:02:18 +00007280 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07007281
Joe Perches63c3a662011-04-26 08:12:10 +00007282 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07007283 goto tx_recovery;
7284
7285 if (unlikely(work_done >= budget))
7286 break;
7287
Joe Perches63c3a662011-04-26 08:12:10 +00007288 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00007289 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07007290 * to tell the hw how much work has been processed,
7291 * so we must read it before checking for more work.
7292 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007293 tnapi->last_tag = sblk->status_tag;
7294 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07007295 rmb();
7296 } else
7297 sblk->status &= ~SD_STATUS_UPDATED;
7298
Matt Carlson17375d22009-08-28 14:02:18 +00007299 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007300 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00007301 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07007302 break;
7303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304 }
7305
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007306 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07007307
7308tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07007309 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08007310 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007311 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07007312 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313}
7314
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007315static void tg3_napi_disable(struct tg3 *tp)
7316{
7317 int i;
7318
7319 for (i = tp->irq_cnt - 1; i >= 0; i--)
7320 napi_disable(&tp->napi[i].napi);
7321}
7322
7323static void tg3_napi_enable(struct tg3 *tp)
7324{
7325 int i;
7326
7327 for (i = 0; i < tp->irq_cnt; i++)
7328 napi_enable(&tp->napi[i].napi);
7329}
7330
7331static void tg3_napi_init(struct tg3 *tp)
7332{
7333 int i;
7334
7335 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
7336 for (i = 1; i < tp->irq_cnt; i++)
7337 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
7338}
7339
7340static void tg3_napi_fini(struct tg3 *tp)
7341{
7342 int i;
7343
7344 for (i = 0; i < tp->irq_cnt; i++)
7345 netif_napi_del(&tp->napi[i].napi);
7346}
7347
7348static inline void tg3_netif_stop(struct tg3 *tp)
7349{
7350 tp->dev->trans_start = jiffies; /* prevent tx timeout */
7351 tg3_napi_disable(tp);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007352 netif_carrier_off(tp->dev);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007353 netif_tx_disable(tp->dev);
7354}
7355
Nithin Nayak Sujir35763062012-12-03 19:36:56 +00007356/* tp->lock must be held */
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007357static inline void tg3_netif_start(struct tg3 *tp)
7358{
Matt Carlsonbe947302012-12-03 19:36:57 +00007359 tg3_ptp_resume(tp);
7360
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007361 /* NOTE: unconditional netif_tx_wake_all_queues is only
7362 * appropriate so long as all callers are assured to
7363 * have free tx slots (such as after tg3_init_hw)
7364 */
7365 netif_tx_wake_all_queues(tp->dev);
7366
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007367 if (tp->link_up)
7368 netif_carrier_on(tp->dev);
7369
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007370 tg3_napi_enable(tp);
7371 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
7372 tg3_enable_ints(tp);
7373}
7374
David S. Millerf47c11e2005-06-24 20:18:35 -07007375static void tg3_irq_quiesce(struct tg3 *tp)
7376{
Matt Carlson4f125f42009-09-01 12:55:02 +00007377 int i;
7378
David S. Millerf47c11e2005-06-24 20:18:35 -07007379 BUG_ON(tp->irq_sync);
7380
7381 tp->irq_sync = 1;
7382 smp_mb();
7383
Matt Carlson4f125f42009-09-01 12:55:02 +00007384 for (i = 0; i < tp->irq_cnt; i++)
7385 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07007386}
7387
David S. Millerf47c11e2005-06-24 20:18:35 -07007388/* Fully shutdown all tg3 driver activity elsewhere in the system.
7389 * If irq_sync is non-zero, then the IRQ handler must be synchronized
7390 * with as well. Most of the time, this is not necessary except when
7391 * shutting down the device.
7392 */
7393static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
7394{
Michael Chan46966542007-07-11 19:47:19 -07007395 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07007396 if (irq_sync)
7397 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007398}
7399
7400static inline void tg3_full_unlock(struct tg3 *tp)
7401{
David S. Millerf47c11e2005-06-24 20:18:35 -07007402 spin_unlock_bh(&tp->lock);
7403}
7404
Michael Chanfcfa0a32006-03-20 22:28:41 -08007405/* One-shot MSI handler - Chip automatically disables interrupt
7406 * after sending MSI so driver doesn't have to do it.
7407 */
David Howells7d12e782006-10-05 14:55:46 +01007408static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007409{
Matt Carlson09943a12009-08-28 14:01:57 +00007410 struct tg3_napi *tnapi = dev_id;
7411 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007412
Matt Carlson898a56f2009-08-28 14:02:40 +00007413 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007414 if (tnapi->rx_rcb)
7415 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007416
7417 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007418 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007419
7420 return IRQ_HANDLED;
7421}
7422
Michael Chan88b06bc22005-04-21 17:13:25 -07007423/* MSI ISR - No need to check for interrupt sharing and no need to
7424 * flush status block and interrupt mailbox. PCI ordering rules
7425 * guarantee that MSI will arrive after the status block.
7426 */
David Howells7d12e782006-10-05 14:55:46 +01007427static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07007428{
Matt Carlson09943a12009-08-28 14:01:57 +00007429 struct tg3_napi *tnapi = dev_id;
7430 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07007431
Matt Carlson898a56f2009-08-28 14:02:40 +00007432 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007433 if (tnapi->rx_rcb)
7434 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07007435 /*
David S. Millerfac9b832005-05-18 22:46:34 -07007436 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07007437 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07007438 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07007439 * NIC to stop sending us irqs, engaging "in-intr-handler"
7440 * event coalescing.
7441 */
Matt Carlson5b39de92011-08-31 11:44:50 +00007442 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07007443 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007444 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07007445
Michael Chan88b06bc22005-04-21 17:13:25 -07007446 return IRQ_RETVAL(1);
7447}
7448
David Howells7d12e782006-10-05 14:55:46 +01007449static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450{
Matt Carlson09943a12009-08-28 14:01:57 +00007451 struct tg3_napi *tnapi = dev_id;
7452 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007453 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454 unsigned int handled = 1;
7455
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456 /* In INTx mode, it is possible for the interrupt to arrive at
7457 * the CPU before the status block posted prior to the interrupt.
7458 * Reading the PCI State register will confirm whether the
7459 * interrupt is ours and will flush the status block.
7460 */
Michael Chand18edcb2007-03-24 20:57:11 -07007461 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00007462 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007463 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7464 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007465 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07007466 }
Michael Chand18edcb2007-03-24 20:57:11 -07007467 }
7468
7469 /*
7470 * Writing any value to intr-mbox-0 clears PCI INTA# and
7471 * chip-internal interrupt pending events.
7472 * Writing non-zero to intr-mbox-0 additional tells the
7473 * NIC to stop sending us irqs, engaging "in-intr-handler"
7474 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007475 *
7476 * Flush the mailbox to de-assert the IRQ immediately to prevent
7477 * spurious interrupts. The flush impacts performance but
7478 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007479 */
Michael Chanc04cb342007-05-07 00:26:15 -07007480 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07007481 if (tg3_irq_sync(tp))
7482 goto out;
7483 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00007484 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00007485 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00007486 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07007487 } else {
7488 /* No work, shared interrupt perhaps? re-enable
7489 * interrupts, and flush that PCI write
7490 */
7491 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
7492 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07007493 }
David S. Millerf47c11e2005-06-24 20:18:35 -07007494out:
David S. Millerfac9b832005-05-18 22:46:34 -07007495 return IRQ_RETVAL(handled);
7496}
7497
David Howells7d12e782006-10-05 14:55:46 +01007498static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07007499{
Matt Carlson09943a12009-08-28 14:01:57 +00007500 struct tg3_napi *tnapi = dev_id;
7501 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007502 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07007503 unsigned int handled = 1;
7504
David S. Millerfac9b832005-05-18 22:46:34 -07007505 /* In INTx mode, it is possible for the interrupt to arrive at
7506 * the CPU before the status block posted prior to the interrupt.
7507 * Reading the PCI State register will confirm whether the
7508 * interrupt is ours and will flush the status block.
7509 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007510 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00007511 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007512 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7513 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007514 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515 }
Michael Chand18edcb2007-03-24 20:57:11 -07007516 }
7517
7518 /*
7519 * writing any value to intr-mbox-0 clears PCI INTA# and
7520 * chip-internal interrupt pending events.
7521 * writing non-zero to intr-mbox-0 additional tells the
7522 * NIC to stop sending us irqs, engaging "in-intr-handler"
7523 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007524 *
7525 * Flush the mailbox to de-assert the IRQ immediately to prevent
7526 * spurious interrupts. The flush impacts performance but
7527 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007528 */
Michael Chanc04cb342007-05-07 00:26:15 -07007529 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00007530
7531 /*
7532 * In a shared interrupt configuration, sometimes other devices'
7533 * interrupts will scream. We record the current status tag here
7534 * so that the above check can report that the screaming interrupts
7535 * are unhandled. Eventually they will be silenced.
7536 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007537 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00007538
Michael Chand18edcb2007-03-24 20:57:11 -07007539 if (tg3_irq_sync(tp))
7540 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00007541
Matt Carlson72334482009-08-28 14:03:01 +00007542 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00007543
Matt Carlson09943a12009-08-28 14:01:57 +00007544 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00007545
David S. Millerf47c11e2005-06-24 20:18:35 -07007546out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 return IRQ_RETVAL(handled);
7548}
7549
Michael Chan79381092005-04-21 17:13:59 -07007550/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01007551static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07007552{
Matt Carlson09943a12009-08-28 14:01:57 +00007553 struct tg3_napi *tnapi = dev_id;
7554 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007555 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07007556
Michael Chanf9804dd2005-09-27 12:13:10 -07007557 if ((sblk->status & SD_STATUS_UPDATED) ||
7558 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07007559 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07007560 return IRQ_RETVAL(1);
7561 }
7562 return IRQ_RETVAL(0);
7563}
7564
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565#ifdef CONFIG_NET_POLL_CONTROLLER
7566static void tg3_poll_controller(struct net_device *dev)
7567{
Matt Carlson4f125f42009-09-01 12:55:02 +00007568 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07007569 struct tg3 *tp = netdev_priv(dev);
7570
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +00007571 if (tg3_irq_sync(tp))
7572 return;
7573
Matt Carlson4f125f42009-09-01 12:55:02 +00007574 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00007575 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576}
7577#endif
7578
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579static void tg3_tx_timeout(struct net_device *dev)
7580{
7581 struct tg3 *tp = netdev_priv(dev);
7582
Michael Chanb0408752007-02-13 12:18:30 -08007583 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007584 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00007585 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08007586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587
Matt Carlsondb219972011-11-04 09:15:03 +00007588 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007589}
7590
Michael Chanc58ec932005-09-17 00:46:27 -07007591/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
7592static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
7593{
7594 u32 base = (u32) mapping & 0xffffffff;
7595
Eric Dumazet807540b2010-09-23 05:40:09 +00007596 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07007597}
7598
Michael Chan0f0d1512013-05-13 11:04:16 +00007599/* Test for TSO DMA buffers that cross into regions which are within MSS bytes
7600 * of any 4GB boundaries: 4G, 8G, etc
7601 */
7602static inline int tg3_4g_tso_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7603 u32 len, u32 mss)
7604{
7605 if (tg3_asic_rev(tp) == ASIC_REV_5762 && mss) {
7606 u32 base = (u32) mapping & 0xffffffff;
7607
7608 return ((base + len + (mss & 0x3fff)) < base);
7609 }
7610 return 0;
7611}
7612
Michael Chan72f2afb2006-03-06 19:28:35 -08007613/* Test for DMA addresses > 40-bit */
7614static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7615 int len)
7616{
7617#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00007618 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00007619 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08007620 return 0;
7621#else
7622 return 0;
7623#endif
7624}
7625
Matt Carlsond1a3b732011-07-27 14:20:51 +00007626static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007627 dma_addr_t mapping, u32 len, u32 flags,
7628 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00007629{
Matt Carlson92cd3a12011-07-27 14:20:47 +00007630 txbd->addr_hi = ((u64) mapping >> 32);
7631 txbd->addr_lo = ((u64) mapping & 0xffffffff);
7632 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
7633 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00007634}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Matt Carlson84b67b22011-07-27 14:20:52 +00007636static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007637 dma_addr_t map, u32 len, u32 flags,
7638 u32 mss, u32 vlan)
7639{
7640 struct tg3 *tp = tnapi->tp;
7641 bool hwbug = false;
7642
7643 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00007644 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007645
7646 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007647 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007648
Michael Chan0f0d1512013-05-13 11:04:16 +00007649 if (tg3_4g_tso_overflow_test(tp, map, len, mss))
7650 hwbug = true;
7651
Matt Carlsond1a3b732011-07-27 14:20:51 +00007652 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007653 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007654
Matt Carlsona4cb4282011-12-14 11:09:58 +00007655 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007656 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00007657 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00007658 while (len > tp->dma_limit && *budget) {
7659 u32 frag_len = tp->dma_limit;
7660 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00007661
Matt Carlsonb9e45482011-11-04 09:14:59 +00007662 /* Avoid the 8byte DMA problem */
7663 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00007664 len += tp->dma_limit / 2;
7665 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00007666 }
7667
Matt Carlsonb9e45482011-11-04 09:14:59 +00007668 tnapi->tx_buffers[*entry].fragmented = true;
7669
7670 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7671 frag_len, tmp_flag, mss, vlan);
7672 *budget -= 1;
7673 prvidx = *entry;
7674 *entry = NEXT_TX(*entry);
7675
Matt Carlsone31aa982011-07-27 14:20:53 +00007676 map += frag_len;
7677 }
7678
7679 if (len) {
7680 if (*budget) {
7681 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7682 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00007683 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00007684 *entry = NEXT_TX(*entry);
7685 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00007686 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007687 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00007688 }
7689 }
7690 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00007691 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7692 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00007693 *entry = NEXT_TX(*entry);
7694 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00007695
7696 return hwbug;
7697}
7698
Matt Carlson0d681b22011-07-27 14:20:49 +00007699static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00007700{
7701 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00007702 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00007703 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007704
Matt Carlson0d681b22011-07-27 14:20:49 +00007705 skb = txb->skb;
7706 txb->skb = NULL;
7707
Matt Carlson432aa7e2011-05-19 12:12:45 +00007708 pci_unmap_single(tnapi->tp->pdev,
7709 dma_unmap_addr(txb, mapping),
7710 skb_headlen(skb),
7711 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007712
7713 while (txb->fragmented) {
7714 txb->fragmented = false;
7715 entry = NEXT_TX(entry);
7716 txb = &tnapi->tx_buffers[entry];
7717 }
7718
Matt Carlsonba1142e2011-11-04 09:15:00 +00007719 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00007720 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007721
7722 entry = NEXT_TX(entry);
7723 txb = &tnapi->tx_buffers[entry];
7724
7725 pci_unmap_page(tnapi->tp->pdev,
7726 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00007727 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007728
7729 while (txb->fragmented) {
7730 txb->fragmented = false;
7731 entry = NEXT_TX(entry);
7732 txb = &tnapi->tx_buffers[entry];
7733 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00007734 }
7735}
7736
Michael Chan72f2afb2006-03-06 19:28:35 -08007737/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007738static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04007739 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00007740 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007741 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742{
Matt Carlson24f4efd2009-11-13 13:03:35 +00007743 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04007744 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07007745 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007746 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747
Joe Perches41535772013-02-16 11:20:04 +00007748 if (tg3_asic_rev(tp) != ASIC_REV_5701)
Matt Carlson41588ba12008-04-19 18:12:33 -07007749 new_skb = skb_copy(skb, GFP_ATOMIC);
7750 else {
7751 int more_headroom = 4 - ((unsigned long)skb->data & 3);
7752
7753 new_skb = skb_copy_expand(skb,
7754 skb_headroom(skb) + more_headroom,
7755 skb_tailroom(skb), GFP_ATOMIC);
7756 }
7757
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07007759 ret = -1;
7760 } else {
7761 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00007762 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
7763 PCI_DMA_TODEVICE);
7764 /* Make sure the mapping succeeded */
7765 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00007766 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07007767 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07007768 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007769 u32 save_entry = *entry;
7770
Matt Carlson92cd3a12011-07-27 14:20:47 +00007771 base_flags |= TXD_FLAG_END;
7772
Matt Carlson84b67b22011-07-27 14:20:52 +00007773 tnapi->tx_buffers[*entry].skb = new_skb;
7774 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00007775 mapping, new_addr);
7776
Matt Carlson84b67b22011-07-27 14:20:52 +00007777 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007778 new_skb->len, base_flags,
7779 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00007780 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00007781 dev_kfree_skb(new_skb);
7782 ret = -1;
7783 }
Michael Chanc58ec932005-09-17 00:46:27 -07007784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785 }
7786
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04007788 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07007789 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790}
7791
Matt Carlson2ffcc982011-05-19 12:12:44 +00007792static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07007793
7794/* Use GSO to workaround a rare TSO bug that may be triggered when the
7795 * TSO header is greater than 80 bytes.
7796 */
7797static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
7798{
7799 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007800 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07007801
7802 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007803 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07007804 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007805
7806 /* netif_tx_stop_queue() must be done before checking
7807 * checking tx index in tg3_tx_avail() below, because in
7808 * tg3_tx(), we update tx index before checking for
7809 * netif_tx_queue_stopped().
7810 */
7811 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007812 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08007813 return NETDEV_TX_BUSY;
7814
7815 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007816 }
7817
7818 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07007819 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07007820 goto tg3_tso_bug_end;
7821
7822 do {
7823 nskb = segs;
7824 segs = segs->next;
7825 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00007826 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007827 } while (segs);
7828
7829tg3_tso_bug_end:
7830 dev_kfree_skb(skb);
7831
7832 return NETDEV_TX_OK;
7833}
Michael Chan52c0fd82006-06-29 20:15:54 -07007834
Michael Chan5a6f3072006-03-20 22:28:05 -08007835/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00007836 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08007837 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00007838static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08007839{
7840 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00007841 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00007842 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007843 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07007844 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007845 struct tg3_napi *tnapi;
7846 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007847 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007848
Matt Carlson24f4efd2009-11-13 13:03:35 +00007849 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
7850 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00007851 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007852 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853
Matt Carlson84b67b22011-07-27 14:20:52 +00007854 budget = tg3_tx_avail(tnapi);
7855
Michael Chan00b70502006-06-17 21:58:45 -07007856 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007857 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07007858 * interrupt. Furthermore, IRQ processing runs lockless so we have
7859 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07007860 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007861 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007862 if (!netif_tx_queue_stopped(txq)) {
7863 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007864
7865 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00007866 netdev_err(dev,
7867 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007869 return NETDEV_TX_BUSY;
7870 }
7871
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007872 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07007874 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007875 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007876
Matt Carlsonbe98da62010-07-11 09:31:46 +00007877 mss = skb_shinfo(skb)->gso_size;
7878 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007879 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00007880 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881
7882 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00007883 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7884 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885
Matt Carlson34195c32010-07-11 09:31:42 +00007886 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07007887 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888
Eric Dumazeta5a11952012-01-23 01:22:09 +00007889 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00007890
Eric Dumazeta5a11952012-01-23 01:22:09 +00007891 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00007892 iph->check = 0;
7893 iph->tot_len = htons(mss + hdr_len);
7894 }
7895
Michael Chan52c0fd82006-06-29 20:15:54 -07007896 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007897 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00007898 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007899
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7901 TXD_FLAG_CPU_POST_DMA);
7902
Joe Perches63c3a662011-04-26 08:12:10 +00007903 if (tg3_flag(tp, HW_TSO_1) ||
7904 tg3_flag(tp, HW_TSO_2) ||
7905 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007906 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007908 } else
7909 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7910 iph->daddr, 0,
7911 IPPROTO_TCP,
7912 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913
Joe Perches63c3a662011-04-26 08:12:10 +00007914 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007915 mss |= (hdr_len & 0xc) << 12;
7916 if (hdr_len & 0x10)
7917 base_flags |= 0x00000010;
7918 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007919 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007920 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007921 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +00007922 tg3_asic_rev(tp) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007923 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007924 int tsflags;
7925
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007926 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927 mss |= (tsflags << 11);
7928 }
7929 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007930 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007931 int tsflags;
7932
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007933 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934 base_flags |= tsflags << 12;
7935 }
7936 }
7937 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00007938
Matt Carlson93a700a2011-08-31 11:44:54 +00007939 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
7940 !mss && skb->len > VLAN_ETH_FRAME_LEN)
7941 base_flags |= TXD_FLAG_JMB_PKT;
7942
Matt Carlson92cd3a12011-07-27 14:20:47 +00007943 if (vlan_tx_tag_present(skb)) {
7944 base_flags |= TXD_FLAG_VLAN;
7945 vlan = vlan_tx_tag_get(skb);
7946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00007948 if ((unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) &&
7949 tg3_flag(tp, TX_TSTAMP_EN)) {
7950 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7951 base_flags |= TXD_FLAG_HWTSTAMP;
7952 }
7953
Alexander Duyckf4188d82009-12-02 16:48:38 +00007954 len = skb_headlen(skb);
7955
7956 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00007957 if (pci_dma_mapping_error(tp->pdev, mapping))
7958 goto drop;
7959
David S. Miller90079ce2008-09-11 04:52:51 -07007960
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007961 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007962 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963
7964 would_hit_hwbug = 0;
7965
Joe Perches63c3a662011-04-26 08:12:10 +00007966 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07007967 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968
Matt Carlson84b67b22011-07-27 14:20:52 +00007969 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00007970 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00007971 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00007972 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00007973 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00007974 u32 tmp_mss = mss;
7975
7976 if (!tg3_flag(tp, HW_TSO_1) &&
7977 !tg3_flag(tp, HW_TSO_2) &&
7978 !tg3_flag(tp, HW_TSO_3))
7979 tmp_mss = 0;
7980
Matt Carlsonc5665a52012-02-13 10:20:12 +00007981 /* Now loop through additional data
7982 * fragments, and queue them.
7983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 last = skb_shinfo(skb)->nr_frags - 1;
7985 for (i = 0; i <= last; i++) {
7986 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
7987
Eric Dumazet9e903e02011-10-18 21:00:24 +00007988 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00007989 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007990 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007992 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007993 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00007994 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007995 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00007996 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997
Matt Carlsonb9e45482011-11-04 09:14:59 +00007998 if (!budget ||
7999 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00008000 len, base_flags |
8001 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00008002 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00008003 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00008004 break;
8005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006 }
8007 }
8008
8009 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00008010 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011
8012 /* If the workaround fails due to memory/mapping
8013 * failure, silently drop this packet.
8014 */
Matt Carlson84b67b22011-07-27 14:20:52 +00008015 entry = tnapi->tx_prod;
8016 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04008017 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00008018 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00008019 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008020 }
8021
Richard Cochrand515b452011-06-19 03:31:41 +00008022 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00008023 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00008024
Michael Chan6541b802012-03-04 14:48:14 +00008025 /* Sync BD data before updating mailbox */
8026 wmb();
8027
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00008029 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008030
Matt Carlsonf3f3f272009-08-28 14:03:21 +00008031 tnapi->tx_prod = entry;
8032 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00008033 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00008034
8035 /* netif_tx_stop_queue() must be done before checking
8036 * checking tx index in tg3_tx_avail() below, because in
8037 * tg3_tx(), we update tx index before checking for
8038 * netif_tx_queue_stopped().
8039 */
8040 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00008041 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00008042 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07008043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008044
Eric Dumazetcdd0db02009-05-28 00:00:41 +00008045 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00008047
8048dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00008049 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00008050 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00008051drop:
8052 dev_kfree_skb(skb);
8053drop_nofree:
8054 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00008055 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056}
8057
Matt Carlson6e01b202011-08-19 13:58:20 +00008058static void tg3_mac_loopback(struct tg3 *tp, bool enable)
8059{
8060 if (enable) {
8061 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
8062 MAC_MODE_PORT_MODE_MASK);
8063
8064 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
8065
8066 if (!tg3_flag(tp, 5705_PLUS))
8067 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
8068
8069 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
8070 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
8071 else
8072 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
8073 } else {
8074 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
8075
8076 if (tg3_flag(tp, 5705_PLUS) ||
8077 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
Joe Perches41535772013-02-16 11:20:04 +00008078 tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlson6e01b202011-08-19 13:58:20 +00008079 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
8080 }
8081
8082 tw32(MAC_MODE, tp->mac_mode);
8083 udelay(40);
8084}
8085
Matt Carlson941ec902011-08-19 13:58:23 +00008086static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008087{
Matt Carlson941ec902011-08-19 13:58:23 +00008088 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008089
8090 tg3_phy_toggle_apd(tp, false);
Joe Perches953c96e2013-04-09 10:18:14 +00008091 tg3_phy_toggle_automdix(tp, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008092
Matt Carlson941ec902011-08-19 13:58:23 +00008093 if (extlpbk && tg3_phy_set_extloopbk(tp))
8094 return -EIO;
8095
8096 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008097 switch (speed) {
8098 case SPEED_10:
8099 break;
8100 case SPEED_100:
8101 bmcr |= BMCR_SPEED100;
8102 break;
8103 case SPEED_1000:
8104 default:
8105 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
8106 speed = SPEED_100;
8107 bmcr |= BMCR_SPEED100;
8108 } else {
8109 speed = SPEED_1000;
8110 bmcr |= BMCR_SPEED1000;
8111 }
8112 }
8113
Matt Carlson941ec902011-08-19 13:58:23 +00008114 if (extlpbk) {
8115 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
8116 tg3_readphy(tp, MII_CTRL1000, &val);
8117 val |= CTL1000_AS_MASTER |
8118 CTL1000_ENABLE_MASTER;
8119 tg3_writephy(tp, MII_CTRL1000, val);
8120 } else {
8121 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
8122 MII_TG3_FET_PTEST_TRIM_2;
8123 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
8124 }
8125 } else
8126 bmcr |= BMCR_LOOPBACK;
8127
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008128 tg3_writephy(tp, MII_BMCR, bmcr);
8129
8130 /* The write needs to be flushed for the FETs */
8131 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
8132 tg3_readphy(tp, MII_BMCR, &bmcr);
8133
8134 udelay(40);
8135
8136 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +00008137 tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00008138 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008139 MII_TG3_FET_PTEST_FRC_TX_LINK |
8140 MII_TG3_FET_PTEST_FRC_TX_LOCK);
8141
8142 /* The write needs to be flushed for the AC131 */
8143 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
8144 }
8145
8146 /* Reset to prevent losing 1st rx packet intermittently */
8147 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
8148 tg3_flag(tp, 5780_CLASS)) {
8149 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8150 udelay(10);
8151 tw32_f(MAC_RX_MODE, tp->rx_mode);
8152 }
8153
8154 mac_mode = tp->mac_mode &
8155 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
8156 if (speed == SPEED_1000)
8157 mac_mode |= MAC_MODE_PORT_MODE_GMII;
8158 else
8159 mac_mode |= MAC_MODE_PORT_MODE_MII;
8160
Joe Perches41535772013-02-16 11:20:04 +00008161 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008162 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
8163
8164 if (masked_phy_id == TG3_PHY_ID_BCM5401)
8165 mac_mode &= ~MAC_MODE_LINK_POLARITY;
8166 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
8167 mac_mode |= MAC_MODE_LINK_POLARITY;
8168
8169 tg3_writephy(tp, MII_TG3_EXT_CTRL,
8170 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
8171 }
8172
8173 tw32(MAC_MODE, mac_mode);
8174 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00008175
8176 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008177}
8178
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008179static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008180{
8181 struct tg3 *tp = netdev_priv(dev);
8182
8183 if (features & NETIF_F_LOOPBACK) {
8184 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
8185 return;
8186
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008187 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008188 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008189 netif_carrier_on(tp->dev);
8190 spin_unlock_bh(&tp->lock);
8191 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
8192 } else {
8193 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
8194 return;
8195
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008196 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008197 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008198 /* Force link status check */
Joe Perches953c96e2013-04-09 10:18:14 +00008199 tg3_setup_phy(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008200 spin_unlock_bh(&tp->lock);
8201 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
8202 }
8203}
8204
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008205static netdev_features_t tg3_fix_features(struct net_device *dev,
8206 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00008207{
8208 struct tg3 *tp = netdev_priv(dev);
8209
Joe Perches63c3a662011-04-26 08:12:10 +00008210 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00008211 features &= ~NETIF_F_ALL_TSO;
8212
8213 return features;
8214}
8215
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008216static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008217{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008218 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008219
8220 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
8221 tg3_set_loopback(dev, features);
8222
8223 return 0;
8224}
8225
Matt Carlson21f581a2009-08-28 14:00:25 +00008226static void tg3_rx_prodring_free(struct tg3 *tp,
8227 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008229 int i;
8230
Matt Carlson8fea32b2010-09-15 08:59:58 +00008231 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008232 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008233 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008234 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008235 tp->rx_pkt_map_sz);
8236
Joe Perches63c3a662011-04-26 08:12:10 +00008237 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008238 for (i = tpr->rx_jmb_cons_idx;
8239 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008240 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00008241 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008242 TG3_RX_JMB_MAP_SZ);
8243 }
8244 }
8245
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008246 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248
Matt Carlson2c49a442010-09-30 10:34:35 +00008249 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008250 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008251 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252
Joe Perches63c3a662011-04-26 08:12:10 +00008253 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008254 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008255 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008256 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257 }
8258}
8259
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008260/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261 *
8262 * The chip has been shut down and the driver detached from
8263 * the networking, so no interrupts or new tx packets will
8264 * end up in the driver. tp->{tx,}lock are held and thus
8265 * we may not sleep.
8266 */
Matt Carlson21f581a2009-08-28 14:00:25 +00008267static int tg3_rx_prodring_alloc(struct tg3 *tp,
8268 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269{
Matt Carlson287be122009-08-28 13:58:46 +00008270 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008271
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008272 tpr->rx_std_cons_idx = 0;
8273 tpr->rx_std_prod_idx = 0;
8274 tpr->rx_jmb_cons_idx = 0;
8275 tpr->rx_jmb_prod_idx = 0;
8276
Matt Carlson8fea32b2010-09-15 08:59:58 +00008277 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008278 memset(&tpr->rx_std_buffers[0], 0,
8279 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00008280 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008281 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00008282 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008283 goto done;
8284 }
8285
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00008287 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288
Matt Carlson287be122009-08-28 13:58:46 +00008289 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008290 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00008291 tp->dev->mtu > ETH_DATA_LEN)
8292 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
8293 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad42005-07-25 12:31:17 -07008294
Linus Torvalds1da177e2005-04-16 15:20:36 -07008295 /* Initialize invariants of the rings, we only set this
8296 * stuff once. This works because the card does not
8297 * write into the rx buffer posting rings.
8298 */
Matt Carlson2c49a442010-09-30 10:34:35 +00008299 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300 struct tg3_rx_buffer_desc *rxd;
8301
Matt Carlson21f581a2009-08-28 14:00:25 +00008302 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00008303 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
8305 rxd->opaque = (RXD_OPAQUE_RING_STD |
8306 (i << RXD_OPAQUE_INDEX_SHIFT));
8307 }
8308
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008309 /* Now allocate fresh SKBs for each rx ring. */
8310 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008311 unsigned int frag_size;
8312
8313 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
8314 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008315 netdev_warn(tp->dev,
8316 "Using a smaller RX standard ring. Only "
8317 "%d out of %d buffers were allocated "
8318 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008319 if (i == 0)
8320 goto initfail;
8321 tp->rx_pending = i;
8322 break;
8323 }
8324 }
8325
Joe Perches63c3a662011-04-26 08:12:10 +00008326 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008327 goto done;
8328
Matt Carlson2c49a442010-09-30 10:34:35 +00008329 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008330
Joe Perches63c3a662011-04-26 08:12:10 +00008331 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00008332 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008333
Matt Carlson2c49a442010-09-30 10:34:35 +00008334 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00008335 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336
Matt Carlson0d86df82010-02-17 15:17:00 +00008337 rxd = &tpr->rx_jmb[i].std;
8338 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
8339 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
8340 RXD_FLAG_JUMBO;
8341 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
8342 (i << RXD_OPAQUE_INDEX_SHIFT));
8343 }
8344
8345 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008346 unsigned int frag_size;
8347
8348 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
8349 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008350 netdev_warn(tp->dev,
8351 "Using a smaller RX jumbo ring. Only %d "
8352 "out of %d buffers were allocated "
8353 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00008354 if (i == 0)
8355 goto initfail;
8356 tp->rx_jumbo_pending = i;
8357 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008358 }
8359 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008360
8361done:
Michael Chan32d8c572006-07-25 16:38:29 -07008362 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008363
8364initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00008365 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008366 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008367}
8368
Matt Carlson21f581a2009-08-28 14:00:25 +00008369static void tg3_rx_prodring_fini(struct tg3 *tp,
8370 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008371{
Matt Carlson21f581a2009-08-28 14:00:25 +00008372 kfree(tpr->rx_std_buffers);
8373 tpr->rx_std_buffers = NULL;
8374 kfree(tpr->rx_jmb_buffers);
8375 tpr->rx_jmb_buffers = NULL;
8376 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008377 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
8378 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008379 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380 }
Matt Carlson21f581a2009-08-28 14:00:25 +00008381 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008382 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
8383 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008384 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008385 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008386}
8387
Matt Carlson21f581a2009-08-28 14:00:25 +00008388static int tg3_rx_prodring_init(struct tg3 *tp,
8389 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008390{
Matt Carlson2c49a442010-09-30 10:34:35 +00008391 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
8392 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008393 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008394 return -ENOMEM;
8395
Matt Carlson4bae65c2010-11-24 08:31:52 +00008396 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
8397 TG3_RX_STD_RING_BYTES(tp),
8398 &tpr->rx_std_mapping,
8399 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008400 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008401 goto err_out;
8402
Joe Perches63c3a662011-04-26 08:12:10 +00008403 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008404 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00008405 GFP_KERNEL);
8406 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008407 goto err_out;
8408
Matt Carlson4bae65c2010-11-24 08:31:52 +00008409 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
8410 TG3_RX_JMB_RING_BYTES(tp),
8411 &tpr->rx_jmb_mapping,
8412 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008413 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008414 goto err_out;
8415 }
8416
8417 return 0;
8418
8419err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00008420 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008421 return -ENOMEM;
8422}
8423
8424/* Free up pending packets in all rx/tx rings.
8425 *
8426 * The chip has been shut down and the driver detached from
8427 * the networking, so no interrupts or new tx packets will
8428 * end up in the driver. tp->{tx,}lock is not held and we are not
8429 * in an interrupt context and thus may sleep.
8430 */
8431static void tg3_free_rings(struct tg3 *tp)
8432{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008433 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008434
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008435 for (j = 0; j < tp->irq_cnt; j++) {
8436 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008437
Matt Carlson8fea32b2010-09-15 08:59:58 +00008438 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00008439
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008440 if (!tnapi->tx_buffers)
8441 continue;
8442
Matt Carlson0d681b22011-07-27 14:20:49 +00008443 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
8444 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008445
Matt Carlson0d681b22011-07-27 14:20:49 +00008446 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008447 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008448
Matt Carlsonba1142e2011-11-04 09:15:00 +00008449 tg3_tx_skb_unmap(tnapi, i,
8450 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008451
8452 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008453 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00008454 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008455 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008456}
8457
8458/* Initialize tx/rx rings for packet processing.
8459 *
8460 * The chip has been shut down and the driver detached from
8461 * the networking, so no interrupts or new tx packets will
8462 * end up in the driver. tp->{tx,}lock are held and thus
8463 * we may not sleep.
8464 */
8465static int tg3_init_rings(struct tg3 *tp)
8466{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008467 int i;
Matt Carlson72334482009-08-28 14:03:01 +00008468
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008469 /* Free up all the SKBs. */
8470 tg3_free_rings(tp);
8471
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008472 for (i = 0; i < tp->irq_cnt; i++) {
8473 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008474
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008475 tnapi->last_tag = 0;
8476 tnapi->last_irq_tag = 0;
8477 tnapi->hw_status->status = 0;
8478 tnapi->hw_status->status_tag = 0;
8479 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8480
8481 tnapi->tx_prod = 0;
8482 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008483 if (tnapi->tx_ring)
8484 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008485
8486 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008487 if (tnapi->rx_rcb)
8488 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008489
Matt Carlson8fea32b2010-09-15 08:59:58 +00008490 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00008491 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008492 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00008493 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008494 }
Matt Carlson72334482009-08-28 14:03:01 +00008495
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008496 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008497}
8498
Michael Chan49a359e2012-09-28 07:12:37 +00008499static void tg3_mem_tx_release(struct tg3 *tp)
8500{
8501 int i;
8502
8503 for (i = 0; i < tp->irq_max; i++) {
8504 struct tg3_napi *tnapi = &tp->napi[i];
8505
8506 if (tnapi->tx_ring) {
8507 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
8508 tnapi->tx_ring, tnapi->tx_desc_mapping);
8509 tnapi->tx_ring = NULL;
8510 }
8511
8512 kfree(tnapi->tx_buffers);
8513 tnapi->tx_buffers = NULL;
8514 }
8515}
8516
8517static int tg3_mem_tx_acquire(struct tg3 *tp)
8518{
8519 int i;
8520 struct tg3_napi *tnapi = &tp->napi[0];
8521
8522 /* If multivector TSS is enabled, vector 0 does not handle
8523 * tx interrupts. Don't allocate any resources for it.
8524 */
8525 if (tg3_flag(tp, ENABLE_TSS))
8526 tnapi++;
8527
8528 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
8529 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
8530 TG3_TX_RING_SIZE, GFP_KERNEL);
8531 if (!tnapi->tx_buffers)
8532 goto err_out;
8533
8534 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
8535 TG3_TX_RING_BYTES,
8536 &tnapi->tx_desc_mapping,
8537 GFP_KERNEL);
8538 if (!tnapi->tx_ring)
8539 goto err_out;
8540 }
8541
8542 return 0;
8543
8544err_out:
8545 tg3_mem_tx_release(tp);
8546 return -ENOMEM;
8547}
8548
8549static void tg3_mem_rx_release(struct tg3 *tp)
8550{
8551 int i;
8552
8553 for (i = 0; i < tp->irq_max; i++) {
8554 struct tg3_napi *tnapi = &tp->napi[i];
8555
8556 tg3_rx_prodring_fini(tp, &tnapi->prodring);
8557
8558 if (!tnapi->rx_rcb)
8559 continue;
8560
8561 dma_free_coherent(&tp->pdev->dev,
8562 TG3_RX_RCB_RING_BYTES(tp),
8563 tnapi->rx_rcb,
8564 tnapi->rx_rcb_mapping);
8565 tnapi->rx_rcb = NULL;
8566 }
8567}
8568
8569static int tg3_mem_rx_acquire(struct tg3 *tp)
8570{
8571 unsigned int i, limit;
8572
8573 limit = tp->rxq_cnt;
8574
8575 /* If RSS is enabled, we need a (dummy) producer ring
8576 * set on vector zero. This is the true hw prodring.
8577 */
8578 if (tg3_flag(tp, ENABLE_RSS))
8579 limit++;
8580
8581 for (i = 0; i < limit; i++) {
8582 struct tg3_napi *tnapi = &tp->napi[i];
8583
8584 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
8585 goto err_out;
8586
8587 /* If multivector RSS is enabled, vector 0
8588 * does not handle rx or tx interrupts.
8589 * Don't allocate any resources for it.
8590 */
8591 if (!i && tg3_flag(tp, ENABLE_RSS))
8592 continue;
8593
8594 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
8595 TG3_RX_RCB_RING_BYTES(tp),
8596 &tnapi->rx_rcb_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008597 GFP_KERNEL | __GFP_ZERO);
Michael Chan49a359e2012-09-28 07:12:37 +00008598 if (!tnapi->rx_rcb)
8599 goto err_out;
Michael Chan49a359e2012-09-28 07:12:37 +00008600 }
8601
8602 return 0;
8603
8604err_out:
8605 tg3_mem_rx_release(tp);
8606 return -ENOMEM;
8607}
8608
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008609/*
8610 * Must not be invoked with interrupt sources disabled and
8611 * the hardware shutdown down.
8612 */
8613static void tg3_free_consistent(struct tg3 *tp)
8614{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008615 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008616
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008617 for (i = 0; i < tp->irq_cnt; i++) {
8618 struct tg3_napi *tnapi = &tp->napi[i];
8619
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008620 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008621 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
8622 tnapi->hw_status,
8623 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008624 tnapi->hw_status = NULL;
8625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008627
Michael Chan49a359e2012-09-28 07:12:37 +00008628 tg3_mem_rx_release(tp);
8629 tg3_mem_tx_release(tp);
8630
Linus Torvalds1da177e2005-04-16 15:20:36 -07008631 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008632 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
8633 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008634 tp->hw_stats = NULL;
8635 }
8636}
8637
8638/*
8639 * Must not be invoked with interrupt sources disabled and
8640 * the hardware shutdown down. Can sleep.
8641 */
8642static int tg3_alloc_consistent(struct tg3 *tp)
8643{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008644 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008645
Matt Carlson4bae65c2010-11-24 08:31:52 +00008646 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
8647 sizeof(struct tg3_hw_stats),
8648 &tp->stats_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008649 GFP_KERNEL | __GFP_ZERO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650 if (!tp->hw_stats)
8651 goto err_out;
8652
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008653 for (i = 0; i < tp->irq_cnt; i++) {
8654 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008655 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008656
Matt Carlson4bae65c2010-11-24 08:31:52 +00008657 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
8658 TG3_HW_STATUS_SIZE,
8659 &tnapi->status_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008660 GFP_KERNEL | __GFP_ZERO);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008661 if (!tnapi->hw_status)
8662 goto err_out;
8663
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008664 sblk = tnapi->hw_status;
8665
Michael Chan49a359e2012-09-28 07:12:37 +00008666 if (tg3_flag(tp, ENABLE_RSS)) {
Michael Chan86449942012-10-02 20:31:14 -07008667 u16 *prodptr = NULL;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008668
Michael Chan49a359e2012-09-28 07:12:37 +00008669 /*
8670 * When RSS is enabled, the status block format changes
8671 * slightly. The "rx_jumbo_consumer", "reserved",
8672 * and "rx_mini_consumer" members get mapped to the
8673 * other three rx return ring producer indexes.
8674 */
8675 switch (i) {
8676 case 1:
8677 prodptr = &sblk->idx[0].rx_producer;
8678 break;
8679 case 2:
8680 prodptr = &sblk->rx_jumbo_consumer;
8681 break;
8682 case 3:
8683 prodptr = &sblk->reserved;
8684 break;
8685 case 4:
8686 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00008687 break;
8688 }
Michael Chan49a359e2012-09-28 07:12:37 +00008689 tnapi->rx_rcb_prod_idx = prodptr;
8690 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008691 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008692 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008693 }
8694
Michael Chan49a359e2012-09-28 07:12:37 +00008695 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
8696 goto err_out;
8697
Linus Torvalds1da177e2005-04-16 15:20:36 -07008698 return 0;
8699
8700err_out:
8701 tg3_free_consistent(tp);
8702 return -ENOMEM;
8703}
8704
8705#define MAX_WAIT_CNT 1000
8706
8707/* To stop a block, clear the enable bit and poll till it
8708 * clears. tp->lock is held.
8709 */
Joe Perches953c96e2013-04-09 10:18:14 +00008710static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008711{
8712 unsigned int i;
8713 u32 val;
8714
Joe Perches63c3a662011-04-26 08:12:10 +00008715 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008716 switch (ofs) {
8717 case RCVLSC_MODE:
8718 case DMAC_MODE:
8719 case MBFREE_MODE:
8720 case BUFMGR_MODE:
8721 case MEMARB_MODE:
8722 /* We can't enable/disable these bits of the
8723 * 5705/5750, just say success.
8724 */
8725 return 0;
8726
8727 default:
8728 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008730 }
8731
8732 val = tr32(ofs);
8733 val &= ~enable_bit;
8734 tw32_f(ofs, val);
8735
8736 for (i = 0; i < MAX_WAIT_CNT; i++) {
Gavin Shan6d446ec2013-06-25 15:24:32 +08008737 if (pci_channel_offline(tp->pdev)) {
8738 dev_err(&tp->pdev->dev,
8739 "tg3_stop_block device offline, "
8740 "ofs=%lx enable_bit=%x\n",
8741 ofs, enable_bit);
8742 return -ENODEV;
8743 }
8744
Linus Torvalds1da177e2005-04-16 15:20:36 -07008745 udelay(100);
8746 val = tr32(ofs);
8747 if ((val & enable_bit) == 0)
8748 break;
8749 }
8750
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008751 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00008752 dev_err(&tp->pdev->dev,
8753 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
8754 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008755 return -ENODEV;
8756 }
8757
8758 return 0;
8759}
8760
8761/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008762static int tg3_abort_hw(struct tg3 *tp, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008763{
8764 int i, err;
8765
8766 tg3_disable_ints(tp);
8767
Gavin Shan6d446ec2013-06-25 15:24:32 +08008768 if (pci_channel_offline(tp->pdev)) {
8769 tp->rx_mode &= ~(RX_MODE_ENABLE | TX_MODE_ENABLE);
8770 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8771 err = -ENODEV;
8772 goto err_no_dev;
8773 }
8774
Linus Torvalds1da177e2005-04-16 15:20:36 -07008775 tp->rx_mode &= ~RX_MODE_ENABLE;
8776 tw32_f(MAC_RX_MODE, tp->rx_mode);
8777 udelay(10);
8778
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008779 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
8780 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
8781 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
8782 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
8783 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
8784 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008785
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008786 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
8787 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
8788 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
8789 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
8790 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
8791 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
8792 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008793
8794 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8795 tw32_f(MAC_MODE, tp->mac_mode);
8796 udelay(40);
8797
8798 tp->tx_mode &= ~TX_MODE_ENABLE;
8799 tw32_f(MAC_TX_MODE, tp->tx_mode);
8800
8801 for (i = 0; i < MAX_WAIT_CNT; i++) {
8802 udelay(100);
8803 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
8804 break;
8805 }
8806 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00008807 dev_err(&tp->pdev->dev,
8808 "%s timed out, TX_MODE_ENABLE will not clear "
8809 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07008810 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008811 }
8812
Michael Chane6de8ad2005-05-05 14:42:41 -07008813 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008814 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
8815 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008816
8817 tw32(FTQ_RESET, 0xffffffff);
8818 tw32(FTQ_RESET, 0x00000000);
8819
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008820 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
8821 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008822
Gavin Shan6d446ec2013-06-25 15:24:32 +08008823err_no_dev:
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008824 for (i = 0; i < tp->irq_cnt; i++) {
8825 struct tg3_napi *tnapi = &tp->napi[i];
8826 if (tnapi->hw_status)
8827 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008829
Linus Torvalds1da177e2005-04-16 15:20:36 -07008830 return err;
8831}
8832
Michael Chanee6a99b2007-07-18 21:49:10 -07008833/* Save PCI command register before chip reset */
8834static void tg3_save_pci_state(struct tg3 *tp)
8835{
Matt Carlson8a6eac92007-10-21 16:17:55 -07008836 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008837}
8838
8839/* Restore PCI state after chip reset */
8840static void tg3_restore_pci_state(struct tg3 *tp)
8841{
8842 u32 val;
8843
8844 /* Re-enable indirect register accesses. */
8845 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8846 tp->misc_host_ctrl);
8847
8848 /* Set MAX PCI retry to zero. */
8849 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
Joe Perches41535772013-02-16 11:20:04 +00008850 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008851 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07008852 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008853 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00008854 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07008855 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008856 PCISTATE_ALLOW_APE_SHMEM_WR |
8857 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07008858 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
8859
Matt Carlson8a6eac92007-10-21 16:17:55 -07008860 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008861
Matt Carlson2c55a3d2011-11-28 09:41:04 +00008862 if (!tg3_flag(tp, PCI_EXPRESS)) {
8863 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
8864 tp->pci_cacheline_sz);
8865 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
8866 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07008867 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08008868
Michael Chanee6a99b2007-07-18 21:49:10 -07008869 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00008870 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008871 u16 pcix_cmd;
8872
8873 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8874 &pcix_cmd);
8875 pcix_cmd &= ~PCI_X_CMD_ERO;
8876 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8877 pcix_cmd);
8878 }
Michael Chanee6a99b2007-07-18 21:49:10 -07008879
Joe Perches63c3a662011-04-26 08:12:10 +00008880 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008881
8882 /* Chip reset on 5780 will reset MSI enable bit,
8883 * so need to restore it.
8884 */
Joe Perches63c3a662011-04-26 08:12:10 +00008885 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008886 u16 ctrl;
8887
8888 pci_read_config_word(tp->pdev,
8889 tp->msi_cap + PCI_MSI_FLAGS,
8890 &ctrl);
8891 pci_write_config_word(tp->pdev,
8892 tp->msi_cap + PCI_MSI_FLAGS,
8893 ctrl | PCI_MSI_FLAGS_ENABLE);
8894 val = tr32(MSGINT_MODE);
8895 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
8896 }
8897 }
8898}
8899
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900/* tp->lock is held. */
8901static int tg3_chip_reset(struct tg3 *tp)
8902{
8903 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07008904 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00008905 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008906
David S. Millerf49639e2006-06-09 11:58:36 -07008907 tg3_nvram_lock(tp);
8908
Matt Carlson77b483f2008-08-15 14:07:24 -07008909 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
8910
David S. Millerf49639e2006-06-09 11:58:36 -07008911 /* No matching tg3_nvram_unlock() after this because
8912 * chip reset below will undo the nvram lock.
8913 */
8914 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008915
Michael Chanee6a99b2007-07-18 21:49:10 -07008916 /* GRC_MISC_CFG core clock reset will clear the memory
8917 * enable bit in PCI register 4 and the MSI enable bit
8918 * on some chips, so we save relevant registers here.
8919 */
8920 tg3_save_pci_state(tp);
8921
Joe Perches41535772013-02-16 11:20:04 +00008922 if (tg3_asic_rev(tp) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008923 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08008924 tw32(GRC_FASTBOOT_PC, 0);
8925
Linus Torvalds1da177e2005-04-16 15:20:36 -07008926 /*
8927 * We must avoid the readl() that normally takes place.
8928 * It locks machines, causes machine checks, and other
8929 * fun things. So, temporarily disable the 5701
8930 * hardware workaround, while we do the reset.
8931 */
Michael Chan1ee582d2005-08-09 20:16:46 -07008932 write_op = tp->write32;
8933 if (write_op == tg3_write_flush_reg32)
8934 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008935
Michael Chand18edcb2007-03-24 20:57:11 -07008936 /* Prevent the irq handler from reading or writing PCI registers
8937 * during chip reset when the memory enable bit in the PCI command
8938 * register may be cleared. The chip does not generate interrupt
8939 * at this time, but the irq handler may still be called due to irq
8940 * sharing or irqpoll.
8941 */
Joe Perches63c3a662011-04-26 08:12:10 +00008942 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008943 for (i = 0; i < tp->irq_cnt; i++) {
8944 struct tg3_napi *tnapi = &tp->napi[i];
8945 if (tnapi->hw_status) {
8946 tnapi->hw_status->status = 0;
8947 tnapi->hw_status->status_tag = 0;
8948 }
8949 tnapi->last_tag = 0;
8950 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07008951 }
Michael Chand18edcb2007-03-24 20:57:11 -07008952 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00008953
8954 for (i = 0; i < tp->irq_cnt; i++)
8955 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07008956
Joe Perches41535772013-02-16 11:20:04 +00008957 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson255ca312009-08-25 10:07:27 +00008958 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8959 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
8960 }
8961
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962 /* do the reset */
8963 val = GRC_MISC_CFG_CORECLK_RESET;
8964
Joe Perches63c3a662011-04-26 08:12:10 +00008965 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00008966 /* Force PCIe 1.0a mode */
Joe Perches41535772013-02-16 11:20:04 +00008967 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008968 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00008969 tr32(TG3_PCIE_PHY_TSTCTL) ==
8970 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
8971 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
8972
Joe Perches41535772013-02-16 11:20:04 +00008973 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008974 tw32(GRC_MISC_CFG, (1 << 29));
8975 val |= (1 << 29);
8976 }
8977 }
8978
Joe Perches41535772013-02-16 11:20:04 +00008979 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07008980 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
8981 tw32(GRC_VCPU_EXT_CTRL,
8982 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
8983 }
8984
Matt Carlsonf37500d2010-08-02 11:25:59 +00008985 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00008986 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008987 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00008988
Linus Torvalds1da177e2005-04-16 15:20:36 -07008989 tw32(GRC_MISC_CFG, val);
8990
Michael Chan1ee582d2005-08-09 20:16:46 -07008991 /* restore 5701 hardware bug workaround write method */
8992 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008993
8994 /* Unfortunately, we have to delay before the PCI read back.
8995 * Some 575X chips even will not respond to a PCI cfg access
8996 * when the reset command is given to the chip.
8997 *
8998 * How do these hardware designers expect things to work
8999 * properly if the PCI write is posted for a long period
9000 * of time? It is always necessary to have some method by
9001 * which a register read back can occur to push the write
9002 * out which does the reset.
9003 *
9004 * For most tg3 variants the trick below was working.
9005 * Ho hum...
9006 */
9007 udelay(120);
9008
9009 /* Flush PCI posted writes. The normal MMIO registers
9010 * are inaccessible at this time so this is the only
9011 * way to make this reliably (actually, this is no longer
9012 * the case, see above). I tried to use indirect
9013 * register read/write but this upset some 5701 variants.
9014 */
9015 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
9016
9017 udelay(120);
9018
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009019 if (tg3_flag(tp, PCI_EXPRESS) && pci_is_pcie(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00009020 u16 val16;
9021
Joe Perches41535772013-02-16 11:20:04 +00009022 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0) {
Michael Chan86449942012-10-02 20:31:14 -07009023 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009024 u32 cfg_val;
9025
9026 /* Wait for link training to complete. */
Michael Chan86449942012-10-02 20:31:14 -07009027 for (j = 0; j < 5000; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009028 udelay(100);
9029
9030 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
9031 pci_write_config_dword(tp->pdev, 0xc4,
9032 cfg_val | (1 << 15));
9033 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009034
Matt Carlsone7126992009-08-25 10:08:16 +00009035 /* Clear the "no snoop" and "relaxed ordering" bits. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009036 val16 = PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
Matt Carlsone7126992009-08-25 10:08:16 +00009037 /*
9038 * Older PCIe devices only support the 128 byte
9039 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009040 */
Joe Perches63c3a662011-04-26 08:12:10 +00009041 if (!tg3_flag(tp, CPMU_PRESENT))
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009042 val16 |= PCI_EXP_DEVCTL_PAYLOAD;
9043 pcie_capability_clear_word(tp->pdev, PCI_EXP_DEVCTL, val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009044
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009045 /* Clear error status */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009046 pcie_capability_write_word(tp->pdev, PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009047 PCI_EXP_DEVSTA_CED |
9048 PCI_EXP_DEVSTA_NFED |
9049 PCI_EXP_DEVSTA_FED |
9050 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009051 }
9052
Michael Chanee6a99b2007-07-18 21:49:10 -07009053 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009054
Joe Perches63c3a662011-04-26 08:12:10 +00009055 tg3_flag_clear(tp, CHIP_RESETTING);
9056 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07009057
Michael Chanee6a99b2007-07-18 21:49:10 -07009058 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00009059 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07009060 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07009061 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009062
Joe Perches41535772013-02-16 11:20:04 +00009063 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009064 tg3_stop_fw(tp);
9065 tw32(0x5000, 0x400);
9066 }
9067
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00009068 if (tg3_flag(tp, IS_SSB_CORE)) {
9069 /*
9070 * BCM4785: In order to avoid repercussions from using
9071 * potentially defective internal ROM, stop the Rx RISC CPU,
9072 * which is not required.
9073 */
9074 tg3_stop_fw(tp);
9075 tg3_halt_cpu(tp, RX_CPU_BASE);
9076 }
9077
Nithin Sujirfb03a432013-05-21 12:57:32 +00009078 err = tg3_poll_fw(tp);
9079 if (err)
9080 return err;
9081
Linus Torvalds1da177e2005-04-16 15:20:36 -07009082 tw32(GRC_MODE, tp->grc_mode);
9083
Joe Perches41535772013-02-16 11:20:04 +00009084 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009085 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009086
9087 tw32(0xc4, val | (1 << 15));
9088 }
9089
9090 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
Joe Perches41535772013-02-16 11:20:04 +00009091 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009092 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
Joe Perches41535772013-02-16 11:20:04 +00009093 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009094 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
9095 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9096 }
9097
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009098 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00009099 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00009100 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009101 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00009102 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00009103 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009104 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00009105 val = 0;
9106
9107 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009108 udelay(40);
9109
Matt Carlson77b483f2008-08-15 14:07:24 -07009110 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
9111
Matt Carlson0a9140c2009-08-28 12:27:50 +00009112 tg3_mdio_start(tp);
9113
Joe Perches63c3a662011-04-26 08:12:10 +00009114 if (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +00009115 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
9116 tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009117 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009118 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009119
9120 tw32(0x7c00, val | (1 << 25));
9121 }
9122
Joe Perches41535772013-02-16 11:20:04 +00009123 if (tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsond78b59f2011-04-05 14:22:46 +00009124 val = tr32(TG3_CPMU_CLCK_ORIDE);
9125 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
9126 }
9127
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00009129 tg3_flag_clear(tp, ENABLE_ASF);
Nithin Sujir942d1af2013-04-09 08:48:07 +00009130 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
9131 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
9132
Joe Perches63c3a662011-04-26 08:12:10 +00009133 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009134 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
9135 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
9136 u32 nic_cfg;
9137
9138 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
9139 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00009140 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009141 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00009142 if (tg3_flag(tp, 5750_PLUS))
9143 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Nithin Sujir942d1af2013-04-09 08:48:07 +00009144
9145 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &nic_cfg);
9146 if (nic_cfg & NIC_SRAM_1G_ON_VAUX_OK)
9147 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
9148 if (nic_cfg & NIC_SRAM_LNK_FLAP_AVOID)
9149 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009150 }
9151 }
9152
9153 return 0;
9154}
9155
Matt Carlson65ec6982012-02-28 23:33:37 +00009156static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
9157static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00009158
Linus Torvalds1da177e2005-04-16 15:20:36 -07009159/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00009160static int tg3_halt(struct tg3 *tp, int kind, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009161{
9162 int err;
9163
9164 tg3_stop_fw(tp);
9165
Michael Chan944d9802005-05-29 14:57:48 -07009166 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009167
David S. Millerb3b7d6b2005-05-05 14:40:20 -07009168 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009169 err = tg3_chip_reset(tp);
9170
Joe Perches953c96e2013-04-09 10:18:14 +00009171 __tg3_set_mac_addr(tp, false);
Matt Carlsondaba2a62009-04-20 06:58:52 +00009172
Michael Chan944d9802005-05-29 14:57:48 -07009173 tg3_write_sig_legacy(tp, kind);
9174 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175
Matt Carlson92feeab2011-12-08 14:40:14 +00009176 if (tp->hw_stats) {
9177 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05009178 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00009179 tg3_get_estats(tp, &tp->estats_prev);
9180
9181 /* And make sure the next sample is new data */
9182 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
9183 }
9184
Linus Torvalds1da177e2005-04-16 15:20:36 -07009185 if (err)
9186 return err;
9187
9188 return 0;
9189}
9190
Linus Torvalds1da177e2005-04-16 15:20:36 -07009191static int tg3_set_mac_addr(struct net_device *dev, void *p)
9192{
9193 struct tg3 *tp = netdev_priv(dev);
9194 struct sockaddr *addr = p;
Joe Perches953c96e2013-04-09 10:18:14 +00009195 int err = 0;
9196 bool skip_mac_1 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009197
Michael Chanf9804dd2005-09-27 12:13:10 -07009198 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00009199 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07009200
Linus Torvalds1da177e2005-04-16 15:20:36 -07009201 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
9202
Michael Chane75f7c92006-03-20 21:33:26 -08009203 if (!netif_running(dev))
9204 return 0;
9205
Joe Perches63c3a662011-04-26 08:12:10 +00009206 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07009207 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07009208
Michael Chan986e0ae2007-05-05 12:10:20 -07009209 addr0_high = tr32(MAC_ADDR_0_HIGH);
9210 addr0_low = tr32(MAC_ADDR_0_LOW);
9211 addr1_high = tr32(MAC_ADDR_1_HIGH);
9212 addr1_low = tr32(MAC_ADDR_1_LOW);
9213
9214 /* Skip MAC addr 1 if ASF is using it. */
9215 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
9216 !(addr1_high == 0 && addr1_low == 0))
Joe Perches953c96e2013-04-09 10:18:14 +00009217 skip_mac_1 = true;
Michael Chan58712ef2006-04-29 18:58:01 -07009218 }
Michael Chan986e0ae2007-05-05 12:10:20 -07009219 spin_lock_bh(&tp->lock);
9220 __tg3_set_mac_addr(tp, skip_mac_1);
9221 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009222
Michael Chanb9ec6c12006-07-25 16:37:27 -07009223 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009224}
9225
9226/* tp->lock is held. */
9227static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
9228 dma_addr_t mapping, u32 maxlen_flags,
9229 u32 nic_addr)
9230{
9231 tg3_write_mem(tp,
9232 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
9233 ((u64) mapping >> 32));
9234 tg3_write_mem(tp,
9235 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
9236 ((u64) mapping & 0xffffffff));
9237 tg3_write_mem(tp,
9238 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
9239 maxlen_flags);
9240
Joe Perches63c3a662011-04-26 08:12:10 +00009241 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009242 tg3_write_mem(tp,
9243 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
9244 nic_addr);
9245}
9246
Michael Chana489b6d2012-09-28 07:12:39 +00009247
9248static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07009249{
Michael Chana489b6d2012-09-28 07:12:39 +00009250 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00009251
Joe Perches63c3a662011-04-26 08:12:10 +00009252 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009253 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
9254 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
9255 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00009256 } else {
9257 tw32(HOSTCC_TXCOL_TICKS, 0);
9258 tw32(HOSTCC_TXMAX_FRAMES, 0);
9259 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00009260
9261 for (; i < tp->txq_cnt; i++) {
9262 u32 reg;
9263
9264 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
9265 tw32(reg, ec->tx_coalesce_usecs);
9266 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
9267 tw32(reg, ec->tx_max_coalesced_frames);
9268 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
9269 tw32(reg, ec->tx_max_coalesced_frames_irq);
9270 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00009271 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009272
Michael Chana489b6d2012-09-28 07:12:39 +00009273 for (; i < tp->irq_max - 1; i++) {
9274 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
9275 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
9276 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9277 }
9278}
9279
9280static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
9281{
9282 int i = 0;
9283 u32 limit = tp->rxq_cnt;
9284
Joe Perches63c3a662011-04-26 08:12:10 +00009285 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00009286 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
9287 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
9288 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00009289 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00009290 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009291 tw32(HOSTCC_RXCOL_TICKS, 0);
9292 tw32(HOSTCC_RXMAX_FRAMES, 0);
9293 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07009294 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009295
Michael Chana489b6d2012-09-28 07:12:39 +00009296 for (; i < limit; i++) {
9297 u32 reg;
9298
9299 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
9300 tw32(reg, ec->rx_coalesce_usecs);
9301 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
9302 tw32(reg, ec->rx_max_coalesced_frames);
9303 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
9304 tw32(reg, ec->rx_max_coalesced_frames_irq);
9305 }
9306
9307 for (; i < tp->irq_max - 1; i++) {
9308 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
9309 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
9310 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9311 }
9312}
9313
9314static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
9315{
9316 tg3_coal_tx_init(tp, ec);
9317 tg3_coal_rx_init(tp, ec);
9318
Joe Perches63c3a662011-04-26 08:12:10 +00009319 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07009320 u32 val = ec->stats_block_coalesce_usecs;
9321
Matt Carlsonb6080e12009-09-01 13:12:00 +00009322 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
9323 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
9324
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00009325 if (!tp->link_up)
David S. Miller15f98502005-05-18 22:49:26 -07009326 val = 0;
9327
9328 tw32(HOSTCC_STAT_COAL_TICKS, val);
9329 }
9330}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009331
9332/* tp->lock is held. */
Nithin Sujir328947f2013-05-23 11:11:24 +00009333static void tg3_tx_rcbs_disable(struct tg3 *tp)
9334{
9335 u32 txrcb, limit;
9336
9337 /* Disable all transmit rings but the first. */
9338 if (!tg3_flag(tp, 5705_PLUS))
9339 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
9340 else if (tg3_flag(tp, 5717_PLUS))
9341 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
9342 else if (tg3_flag(tp, 57765_CLASS) ||
9343 tg3_asic_rev(tp) == ASIC_REV_5762)
9344 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
9345 else
9346 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9347
9348 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9349 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
9350 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
9351 BDINFO_FLAGS_DISABLED);
9352}
9353
9354/* tp->lock is held. */
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009355static void tg3_tx_rcbs_init(struct tg3 *tp)
9356{
9357 int i = 0;
9358 u32 txrcb = NIC_SRAM_SEND_RCB;
9359
9360 if (tg3_flag(tp, ENABLE_TSS))
9361 i++;
9362
9363 for (; i < tp->irq_max; i++, txrcb += TG3_BDINFO_SIZE) {
9364 struct tg3_napi *tnapi = &tp->napi[i];
9365
9366 if (!tnapi->tx_ring)
9367 continue;
9368
9369 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9370 (TG3_TX_RING_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT),
9371 NIC_SRAM_TX_BUFFER_DESC);
9372 }
9373}
9374
9375/* tp->lock is held. */
Nithin Sujir328947f2013-05-23 11:11:24 +00009376static void tg3_rx_ret_rcbs_disable(struct tg3 *tp)
9377{
9378 u32 rxrcb, limit;
9379
9380 /* Disable all receive return rings but the first. */
9381 if (tg3_flag(tp, 5717_PLUS))
9382 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
9383 else if (!tg3_flag(tp, 5705_PLUS))
9384 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
9385 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9386 tg3_asic_rev(tp) == ASIC_REV_5762 ||
9387 tg3_flag(tp, 57765_CLASS))
9388 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
9389 else
9390 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9391
9392 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9393 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
9394 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
9395 BDINFO_FLAGS_DISABLED);
9396}
9397
9398/* tp->lock is held. */
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009399static void tg3_rx_ret_rcbs_init(struct tg3 *tp)
9400{
9401 int i = 0;
9402 u32 rxrcb = NIC_SRAM_RCV_RET_RCB;
9403
9404 if (tg3_flag(tp, ENABLE_RSS))
9405 i++;
9406
9407 for (; i < tp->irq_max; i++, rxrcb += TG3_BDINFO_SIZE) {
9408 struct tg3_napi *tnapi = &tp->napi[i];
9409
9410 if (!tnapi->rx_rcb)
9411 continue;
9412
9413 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
9414 (tp->rx_ret_ring_mask + 1) <<
9415 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
9416 }
9417}
9418
9419/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00009420static void tg3_rings_reset(struct tg3 *tp)
9421{
9422 int i;
Nithin Sujir328947f2013-05-23 11:11:24 +00009423 u32 stblk;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009424 struct tg3_napi *tnapi = &tp->napi[0];
9425
Nithin Sujir328947f2013-05-23 11:11:24 +00009426 tg3_tx_rcbs_disable(tp);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009427
Nithin Sujir328947f2013-05-23 11:11:24 +00009428 tg3_rx_ret_rcbs_disable(tp);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009429
9430 /* Disable interrupts */
9431 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009432 tp->napi[0].chk_msi_cnt = 0;
9433 tp->napi[0].last_rx_cons = 0;
9434 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009435
9436 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00009437 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00009438 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009439 tp->napi[i].tx_prod = 0;
9440 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00009441 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009442 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009443 tw32_rx_mbox(tp->napi[i].consmbox, 0);
9444 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00009445 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009446 tp->napi[i].last_rx_cons = 0;
9447 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009448 }
Joe Perches63c3a662011-04-26 08:12:10 +00009449 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009450 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009451 } else {
9452 tp->napi[0].tx_prod = 0;
9453 tp->napi[0].tx_cons = 0;
9454 tw32_mailbox(tp->napi[0].prodmbox, 0);
9455 tw32_rx_mbox(tp->napi[0].consmbox, 0);
9456 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009457
9458 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00009459 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00009460 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
9461 for (i = 0; i < 16; i++)
9462 tw32_tx_mbox(mbox + i * 8, 0);
9463 }
9464
Matt Carlson2d31eca2009-09-01 12:53:31 +00009465 /* Clear status block in ram. */
9466 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9467
9468 /* Set status block DMA address */
9469 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9470 ((u64) tnapi->status_mapping >> 32));
9471 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9472 ((u64) tnapi->status_mapping & 0xffffffff));
9473
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009474 stblk = HOSTCC_STATBLCK_RING1;
9475
9476 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
9477 u64 mapping = (u64)tnapi->status_mapping;
9478 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
9479 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009480 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009481
9482 /* Clear status block in ram. */
9483 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009484 }
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009485
9486 tg3_tx_rcbs_init(tp);
9487 tg3_rx_ret_rcbs_init(tp);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009488}
9489
Matt Carlsoneb07a942011-04-20 07:57:36 +00009490static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
9491{
9492 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
9493
Joe Perches63c3a662011-04-26 08:12:10 +00009494 if (!tg3_flag(tp, 5750_PLUS) ||
9495 tg3_flag(tp, 5780_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009496 tg3_asic_rev(tp) == ASIC_REV_5750 ||
9497 tg3_asic_rev(tp) == ASIC_REV_5752 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00009498 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009499 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
Joe Perches41535772013-02-16 11:20:04 +00009500 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9501 tg3_asic_rev(tp) == ASIC_REV_5787)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009502 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
9503 else
9504 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
9505
9506 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
9507 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
9508
9509 val = min(nic_rep_thresh, host_rep_thresh);
9510 tw32(RCVBDI_STD_THRESH, val);
9511
Joe Perches63c3a662011-04-26 08:12:10 +00009512 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009513 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
9514
Joe Perches63c3a662011-04-26 08:12:10 +00009515 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009516 return;
9517
Matt Carlson513aa6e2011-11-21 15:01:18 +00009518 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00009519
9520 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
9521
9522 val = min(bdcache_maxcnt / 2, host_rep_thresh);
9523 tw32(RCVBDI_JUMBO_THRESH, val);
9524
Joe Perches63c3a662011-04-26 08:12:10 +00009525 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009526 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
9527}
9528
Matt Carlsonccd5ba92012-02-13 10:20:08 +00009529static inline u32 calc_crc(unsigned char *buf, int len)
9530{
9531 u32 reg;
9532 u32 tmp;
9533 int j, k;
9534
9535 reg = 0xffffffff;
9536
9537 for (j = 0; j < len; j++) {
9538 reg ^= buf[j];
9539
9540 for (k = 0; k < 8; k++) {
9541 tmp = reg & 0x01;
9542
9543 reg >>= 1;
9544
9545 if (tmp)
9546 reg ^= 0xedb88320;
9547 }
9548 }
9549
9550 return ~reg;
9551}
9552
9553static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9554{
9555 /* accept or reject all multicast frames */
9556 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9557 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9558 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9559 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9560}
9561
9562static void __tg3_set_rx_mode(struct net_device *dev)
9563{
9564 struct tg3 *tp = netdev_priv(dev);
9565 u32 rx_mode;
9566
9567 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9568 RX_MODE_KEEP_VLAN_TAG);
9569
9570#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
9571 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9572 * flag clear.
9573 */
9574 if (!tg3_flag(tp, ENABLE_ASF))
9575 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9576#endif
9577
9578 if (dev->flags & IFF_PROMISC) {
9579 /* Promiscuous mode. */
9580 rx_mode |= RX_MODE_PROMISC;
9581 } else if (dev->flags & IFF_ALLMULTI) {
9582 /* Accept all multicast. */
9583 tg3_set_multi(tp, 1);
9584 } else if (netdev_mc_empty(dev)) {
9585 /* Reject all multicast. */
9586 tg3_set_multi(tp, 0);
9587 } else {
9588 /* Accept one or more multicast(s). */
9589 struct netdev_hw_addr *ha;
9590 u32 mc_filter[4] = { 0, };
9591 u32 regidx;
9592 u32 bit;
9593 u32 crc;
9594
9595 netdev_for_each_mc_addr(ha, dev) {
9596 crc = calc_crc(ha->addr, ETH_ALEN);
9597 bit = ~crc & 0x7f;
9598 regidx = (bit & 0x60) >> 5;
9599 bit &= 0x1f;
9600 mc_filter[regidx] |= (1 << bit);
9601 }
9602
9603 tw32(MAC_HASH_REG_0, mc_filter[0]);
9604 tw32(MAC_HASH_REG_1, mc_filter[1]);
9605 tw32(MAC_HASH_REG_2, mc_filter[2]);
9606 tw32(MAC_HASH_REG_3, mc_filter[3]);
9607 }
9608
9609 if (rx_mode != tp->rx_mode) {
9610 tp->rx_mode = rx_mode;
9611 tw32_f(MAC_RX_MODE, rx_mode);
9612 udelay(10);
9613 }
9614}
9615
Michael Chan91024262012-09-28 07:12:38 +00009616static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00009617{
9618 int i;
9619
9620 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00009621 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00009622}
9623
9624static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009625{
9626 int i;
9627
9628 if (!tg3_flag(tp, SUPPORT_MSIX))
9629 return;
9630
Michael Chan0b3ba052012-11-14 14:44:29 +00009631 if (tp->rxq_cnt == 1) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009632 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00009633 return;
9634 }
9635
9636 /* Validate table against current IRQ count */
9637 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
Michael Chan0b3ba052012-11-14 14:44:29 +00009638 if (tp->rss_ind_tbl[i] >= tp->rxq_cnt)
Matt Carlson90415472011-12-16 13:33:23 +00009639 break;
9640 }
9641
9642 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00009643 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009644}
9645
Matt Carlson90415472011-12-16 13:33:23 +00009646static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009647{
9648 int i = 0;
9649 u32 reg = MAC_RSS_INDIR_TBL_0;
9650
9651 while (i < TG3_RSS_INDIR_TBL_SIZE) {
9652 u32 val = tp->rss_ind_tbl[i];
9653 i++;
9654 for (; i % 8; i++) {
9655 val <<= 4;
9656 val |= tp->rss_ind_tbl[i];
9657 }
9658 tw32(reg, val);
9659 reg += 4;
9660 }
9661}
9662
Nithin Sujir9bc297e2013-06-03 09:19:34 +00009663static inline u32 tg3_lso_rd_dma_workaround_bit(struct tg3 *tp)
9664{
9665 if (tg3_asic_rev(tp) == ASIC_REV_5719)
9666 return TG3_LSO_RD_DMA_TX_LENGTH_WA_5719;
9667 else
9668 return TG3_LSO_RD_DMA_TX_LENGTH_WA_5720;
9669}
9670
Matt Carlson2d31eca2009-09-01 12:53:31 +00009671/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00009672static int tg3_reset_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009673{
9674 u32 val, rdmac_mode;
9675 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00009676 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009677
9678 tg3_disable_ints(tp);
9679
9680 tg3_stop_fw(tp);
9681
9682 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
9683
Joe Perches63c3a662011-04-26 08:12:10 +00009684 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07009685 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009686
Nithin Sujirfdad8de2013-04-09 08:48:08 +00009687 if ((tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
9688 !(tp->phy_flags & TG3_PHYFLG_USER_CONFIGURED)) {
9689 tg3_phy_pull_config(tp);
Nithin Sujir400dfba2013-05-18 06:26:53 +00009690 tg3_eee_pull_config(tp, NULL);
Nithin Sujirfdad8de2013-04-09 08:48:08 +00009691 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
9692 }
9693
Nithin Sujir400dfba2013-05-18 06:26:53 +00009694 /* Enable MAC control of LPI */
9695 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
9696 tg3_setup_eee(tp);
9697
Matt Carlson603f1172010-02-12 14:47:10 +00009698 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08009699 tg3_phy_reset(tp);
9700
Linus Torvalds1da177e2005-04-16 15:20:36 -07009701 err = tg3_chip_reset(tp);
9702 if (err)
9703 return err;
9704
9705 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
9706
Joe Perches41535772013-02-16 11:20:04 +00009707 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009708 val = tr32(TG3_CPMU_CTRL);
9709 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
9710 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08009711
9712 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9713 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9714 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9715 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
9716
9717 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
9718 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
9719 val |= CPMU_LNK_AWARE_MACCLK_6_25;
9720 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
9721
9722 val = tr32(TG3_CPMU_HST_ACC);
9723 val &= ~CPMU_HST_ACC_MACCLK_MASK;
9724 val |= CPMU_HST_ACC_MACCLK_6_25;
9725 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07009726 }
9727
Joe Perches41535772013-02-16 11:20:04 +00009728 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson33466d932009-04-20 06:57:41 +00009729 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
9730 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
9731 PCIE_PWR_MGMT_L1_THRESH_4MS;
9732 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00009733
9734 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
9735 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
9736
9737 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d932009-04-20 06:57:41 +00009738
Matt Carlsonf40386c2009-11-02 14:24:02 +00009739 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
9740 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00009741 }
9742
Joe Perches63c3a662011-04-26 08:12:10 +00009743 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00009744 u32 grc_mode = tr32(GRC_MODE);
9745
9746 /* Access the lower 1K of PL PCIE block registers. */
9747 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9748 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
9749
9750 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
9751 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
9752 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
9753
9754 tw32(GRC_MODE, grc_mode);
9755 }
9756
Matt Carlson55086ad2011-12-14 11:09:59 +00009757 if (tg3_flag(tp, 57765_CLASS)) {
Joe Perches41535772013-02-16 11:20:04 +00009758 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlson5093eed2010-11-24 08:31:45 +00009759 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00009760
Matt Carlson5093eed2010-11-24 08:31:45 +00009761 /* Access the lower 1K of PL PCIE block registers. */
9762 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9763 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00009764
Matt Carlson5093eed2010-11-24 08:31:45 +00009765 val = tr32(TG3_PCIE_TLDLPL_PORT +
9766 TG3_PCIE_PL_LO_PHYCTL5);
9767 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
9768 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00009769
Matt Carlson5093eed2010-11-24 08:31:45 +00009770 tw32(GRC_MODE, grc_mode);
9771 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00009772
Joe Perches41535772013-02-16 11:20:04 +00009773 if (tg3_chip_rev(tp) != CHIPREV_57765_AX) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009774 u32 grc_mode;
9775
9776 /* Fix transmit hangs */
9777 val = tr32(TG3_CPMU_PADRNG_CTL);
9778 val |= TG3_CPMU_PADRNG_CTL_RDIV2;
9779 tw32(TG3_CPMU_PADRNG_CTL, val);
9780
9781 grc_mode = tr32(GRC_MODE);
Matt Carlson1ff30a52011-05-19 12:12:46 +00009782
9783 /* Access the lower 1K of DL PCIE block registers. */
9784 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9785 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
9786
9787 val = tr32(TG3_PCIE_TLDLPL_PORT +
9788 TG3_PCIE_DL_LO_FTSMAX);
9789 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
9790 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
9791 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
9792
9793 tw32(GRC_MODE, grc_mode);
9794 }
9795
Matt Carlsona977dbe2010-04-12 06:58:26 +00009796 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9797 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9798 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9799 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00009800 }
9801
Linus Torvalds1da177e2005-04-16 15:20:36 -07009802 /* This works around an issue with Athlon chipsets on
9803 * B3 tigon3 silicon. This bit has no effect on any
9804 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07009805 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009806 */
Joe Perches63c3a662011-04-26 08:12:10 +00009807 if (!tg3_flag(tp, CPMU_PRESENT)) {
9808 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07009809 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
9810 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009812
Joe Perches41535772013-02-16 11:20:04 +00009813 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009814 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009815 val = tr32(TG3PCI_PCISTATE);
9816 val |= PCISTATE_RETRY_SAME_DMA;
9817 tw32(TG3PCI_PCISTATE, val);
9818 }
9819
Joe Perches63c3a662011-04-26 08:12:10 +00009820 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07009821 /* Allow reads and writes to the
9822 * APE register and memory space.
9823 */
9824 val = tr32(TG3PCI_PCISTATE);
9825 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00009826 PCISTATE_ALLOW_APE_SHMEM_WR |
9827 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07009828 tw32(TG3PCI_PCISTATE, val);
9829 }
9830
Joe Perches41535772013-02-16 11:20:04 +00009831 if (tg3_chip_rev(tp) == CHIPREV_5704_BX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009832 /* Enable some hw fixes. */
9833 val = tr32(TG3PCI_MSI_DATA);
9834 val |= (1 << 26) | (1 << 28) | (1 << 29);
9835 tw32(TG3PCI_MSI_DATA, val);
9836 }
9837
9838 /* Descriptor ring init may make accesses to the
9839 * NIC SRAM area to setup the TX descriptors, so we
9840 * can only do this after the hardware has been
9841 * successfully reset.
9842 */
Michael Chan32d8c572006-07-25 16:38:29 -07009843 err = tg3_init_rings(tp);
9844 if (err)
9845 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009846
Joe Perches63c3a662011-04-26 08:12:10 +00009847 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009848 val = tr32(TG3PCI_DMA_RW_CTRL) &
9849 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Joe Perches41535772013-02-16 11:20:04 +00009850 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Matt Carlson1a319022010-04-12 06:58:25 +00009851 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00009852 if (!tg3_flag(tp, 57765_CLASS) &&
Joe Perches41535772013-02-16 11:20:04 +00009853 tg3_asic_rev(tp) != ASIC_REV_5717 &&
9854 tg3_asic_rev(tp) != ASIC_REV_5762)
Matt Carlson0aebff42011-04-25 12:42:45 +00009855 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009856 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
Joe Perches41535772013-02-16 11:20:04 +00009857 } else if (tg3_asic_rev(tp) != ASIC_REV_5784 &&
9858 tg3_asic_rev(tp) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009859 /* This value is determined during the probe time DMA
9860 * engine test, tg3_test_dma.
9861 */
9862 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009864
9865 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
9866 GRC_MODE_4X_NIC_SEND_RINGS |
9867 GRC_MODE_NO_TX_PHDR_CSUM |
9868 GRC_MODE_NO_RX_PHDR_CSUM);
9869 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07009870
9871 /* Pseudo-header checksum is done by hardware logic and not
9872 * the offload processers, so make the chip do the pseudo-
9873 * header checksums on receive. For transmit it is more
9874 * convenient to do the pseudo-header checksum in software
9875 * as Linux does that on transmit for us in all cases.
9876 */
9877 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009878
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00009879 val = GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP;
9880 if (tp->rxptpctl)
9881 tw32(TG3_RX_PTP_CTL,
9882 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
9883
9884 if (tg3_flag(tp, PTP_CAPABLE))
9885 val |= GRC_MODE_TIME_SYNC_ENABLE;
9886
9887 tw32(GRC_MODE, tp->grc_mode | val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009888
9889 /* Setup the timer prescalar register. Clock is always 66Mhz. */
9890 val = tr32(GRC_MISC_CFG);
9891 val &= ~0xff;
9892 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
9893 tw32(GRC_MISC_CFG, val);
9894
9895 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00009896 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009897 /* Do nothing. */
Joe Perches41535772013-02-16 11:20:04 +00009898 } else if (tg3_asic_rev(tp) != ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009899 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
Joe Perches41535772013-02-16 11:20:04 +00009900 if (tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009901 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
9902 else
9903 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
9904 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
9905 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00009906 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009907 int fw_len;
9908
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08009909 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009910 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
9911 tw32(BUFMGR_MB_POOL_ADDR,
9912 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
9913 tw32(BUFMGR_MB_POOL_SIZE,
9914 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
9915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009916
Michael Chan0f893dc2005-07-25 12:30:38 -07009917 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009918 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9919 tp->bufmgr_config.mbuf_read_dma_low_water);
9920 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9921 tp->bufmgr_config.mbuf_mac_rx_low_water);
9922 tw32(BUFMGR_MB_HIGH_WATER,
9923 tp->bufmgr_config.mbuf_high_water);
9924 } else {
9925 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9926 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
9927 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9928 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
9929 tw32(BUFMGR_MB_HIGH_WATER,
9930 tp->bufmgr_config.mbuf_high_water_jumbo);
9931 }
9932 tw32(BUFMGR_DMA_LOW_WATER,
9933 tp->bufmgr_config.dma_low_water);
9934 tw32(BUFMGR_DMA_HIGH_WATER,
9935 tp->bufmgr_config.dma_high_water);
9936
Matt Carlsond309a462010-09-30 10:34:31 +00009937 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
Joe Perches41535772013-02-16 11:20:04 +00009938 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsond309a462010-09-30 10:34:31 +00009939 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Joe Perches41535772013-02-16 11:20:04 +00009940 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
9941 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9942 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0)
Matt Carlson4d958472011-04-20 07:57:35 +00009943 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00009944 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009945 for (i = 0; i < 2000; i++) {
9946 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
9947 break;
9948 udelay(10);
9949 }
9950 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00009951 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009952 return -ENODEV;
9953 }
9954
Joe Perches41535772013-02-16 11:20:04 +00009955 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5906_A1)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009956 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07009957
Matt Carlsoneb07a942011-04-20 07:57:36 +00009958 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009959
9960 /* Initialize TG3_BDINFO's at:
9961 * RCVDBDI_STD_BD: standard eth size rx ring
9962 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
9963 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
9964 *
9965 * like so:
9966 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
9967 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
9968 * ring attribute flags
9969 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
9970 *
9971 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
9972 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
9973 *
9974 * The size of each ring is fixed in the firmware, but the location is
9975 * configurable.
9976 */
9977 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009978 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009979 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009980 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00009981 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00009982 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
9983 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009984
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009985 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00009986 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009987 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
9988 BDINFO_FLAGS_DISABLED);
9989
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009990 /* Program the jumbo buffer descriptor ring control
9991 * blocks on those devices that have them.
9992 */
Joe Perches41535772013-02-16 11:20:04 +00009993 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009994 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009995
Joe Perches63c3a662011-04-26 08:12:10 +00009996 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009997 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009998 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009999 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +000010000 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +000010001 val = TG3_RX_JMB_RING_SIZE(tp) <<
10002 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010003 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +000010004 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +000010005 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Michael Chanc65a17f2013-01-06 12:51:07 +000010006 tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000010007 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson87668d32009-11-13 13:03:34 +000010008 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
10009 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010010 } else {
10011 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
10012 BDINFO_FLAGS_DISABLED);
10013 }
10014
Joe Perches63c3a662011-04-26 08:12:10 +000010015 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +000010016 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010017 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
10018 val |= (TG3_RX_STD_DMA_SZ << 2);
10019 } else
Matt Carlson04380d42010-04-12 06:58:29 +000010020 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +000010021 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +000010022 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +000010023
10024 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010025
Matt Carlson411da642009-11-13 13:03:46 +000010026 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e662009-11-13 13:03:49 +000010027 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010028
Joe Perches63c3a662011-04-26 08:12:10 +000010029 tpr->rx_jmb_prod_idx =
10030 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e662009-11-13 13:03:49 +000010031 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010032
Matt Carlson2d31eca2009-09-01 12:53:31 +000010033 tg3_rings_reset(tp);
10034
Linus Torvalds1da177e2005-04-16 15:20:36 -070010035 /* Initialize MAC address and backoff seed. */
Joe Perches953c96e2013-04-09 10:18:14 +000010036 __tg3_set_mac_addr(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010037
10038 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +000010039 tw32(MAC_RX_MTU_SIZE,
10040 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010041
10042 /* The slot time is changed by tg3_setup_phy if we
10043 * run at gigabit with half duplex.
10044 */
Matt Carlsonf2096f92011-04-05 14:22:48 +000010045 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
10046 (6 << TX_LENGTHS_IPG_SHIFT) |
10047 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
10048
Joe Perches41535772013-02-16 11:20:04 +000010049 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10050 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000010051 val |= tr32(MAC_TX_LENGTHS) &
10052 (TX_LENGTHS_JMB_FRM_LEN_MSK |
10053 TX_LENGTHS_CNT_DWN_VAL_MSK);
10054
10055 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010056
10057 /* Receive rules. */
10058 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
10059 tw32(RCVLPC_CONFIG, 0x0181);
10060
10061 /* Calculate RDMAC_MODE setting early, we need it to determine
10062 * the RCVLPC_STATE_ENABLE mask.
10063 */
10064 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
10065 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
10066 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
10067 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
10068 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -070010069
Joe Perches41535772013-02-16 11:20:04 +000010070 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +000010071 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
10072
Joe Perches41535772013-02-16 11:20:04 +000010073 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
10074 tg3_asic_rev(tp) == ASIC_REV_5785 ||
10075 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -070010076 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
10077 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
10078 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
10079
Joe Perches41535772013-02-16 11:20:04 +000010080 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
10081 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000010082 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +000010083 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010084 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
10085 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010086 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010087 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
10088 }
10089 }
10090
Joe Perches63c3a662011-04-26 08:12:10 +000010091 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -070010092 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
10093
Joe Perches41535772013-02-16 11:20:04 +000010094 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlsond3f677a2013-02-14 14:27:51 +000010095 tp->dma_limit = 0;
10096 if (tp->dev->mtu <= ETH_DATA_LEN) {
10097 rdmac_mode |= RDMAC_MODE_JMB_2K_MMRR;
10098 tp->dma_limit = TG3_TX_BD_DMA_MAX_2K;
10099 }
10100 }
10101
Joe Perches63c3a662011-04-26 08:12:10 +000010102 if (tg3_flag(tp, HW_TSO_1) ||
10103 tg3_flag(tp, HW_TSO_2) ||
10104 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -080010105 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
10106
Matt Carlson108a6c12011-05-19 12:12:47 +000010107 if (tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000010108 tg3_asic_rev(tp) == ASIC_REV_5785 ||
10109 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson027455a2008-12-21 20:19:30 -080010110 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010111
Joe Perches41535772013-02-16 11:20:04 +000010112 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10113 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000010114 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
10115
Joe Perches41535772013-02-16 11:20:04 +000010116 if (tg3_asic_rev(tp) == ASIC_REV_5761 ||
10117 tg3_asic_rev(tp) == ASIC_REV_5784 ||
10118 tg3_asic_rev(tp) == ASIC_REV_5785 ||
10119 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000010120 tg3_flag(tp, 57765_PLUS)) {
Michael Chanc65a17f2013-01-06 12:51:07 +000010121 u32 tgtreg;
10122
Joe Perches41535772013-02-16 11:20:04 +000010123 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +000010124 tgtreg = TG3_RDMA_RSRVCTRL_REG2;
10125 else
10126 tgtreg = TG3_RDMA_RSRVCTRL_REG;
10127
10128 val = tr32(tgtreg);
Joe Perches41535772013-02-16 11:20:04 +000010129 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
10130 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +000010131 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
10132 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
10133 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
10134 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
10135 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
10136 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +000010137 }
Michael Chanc65a17f2013-01-06 12:51:07 +000010138 tw32(tgtreg, val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
Matt Carlson41a8a7e2010-09-15 08:59:53 +000010139 }
10140
Joe Perches41535772013-02-16 11:20:04 +000010141 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
10142 tg3_asic_rev(tp) == ASIC_REV_5720 ||
10143 tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc65a17f2013-01-06 12:51:07 +000010144 u32 tgtreg;
10145
Joe Perches41535772013-02-16 11:20:04 +000010146 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +000010147 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL2;
10148 else
10149 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL;
10150
10151 val = tr32(tgtreg);
10152 tw32(tgtreg, val |
Matt Carlsond309a462010-09-30 10:34:31 +000010153 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
10154 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
10155 }
10156
Linus Torvalds1da177e2005-04-16 15:20:36 -070010157 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +000010158 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -070010159 val = tr32(RCVLPC_STATS_ENABLE);
10160 val &= ~RCVLPC_STATSENAB_DACK_FIX;
10161 tw32(RCVLPC_STATS_ENABLE, val);
10162 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010163 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010164 val = tr32(RCVLPC_STATS_ENABLE);
10165 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
10166 tw32(RCVLPC_STATS_ENABLE, val);
10167 } else {
10168 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
10169 }
10170 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
10171 tw32(SNDDATAI_STATSENAB, 0xffffff);
10172 tw32(SNDDATAI_STATSCTRL,
10173 (SNDDATAI_SCTRL_ENABLE |
10174 SNDDATAI_SCTRL_FASTUPD));
10175
10176 /* Setup host coalescing engine. */
10177 tw32(HOSTCC_MODE, 0);
10178 for (i = 0; i < 2000; i++) {
10179 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
10180 break;
10181 udelay(10);
10182 }
10183
Michael Chand244c892005-07-05 14:42:33 -070010184 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185
Joe Perches63c3a662011-04-26 08:12:10 +000010186 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010187 /* Status/statistics block address. See tg3_timer,
10188 * the tg3_periodic_fetch_stats call there, and
10189 * tg3_get_stats to see how this works for 5705/5750 chips.
10190 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
10192 ((u64) tp->stats_mapping >> 32));
10193 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
10194 ((u64) tp->stats_mapping & 0xffffffff));
10195 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010196
Linus Torvalds1da177e2005-04-16 15:20:36 -070010197 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010198
10199 /* Clear statistics and status block memory areas */
10200 for (i = NIC_SRAM_STATS_BLK;
10201 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
10202 i += sizeof(u32)) {
10203 tg3_write_mem(tp, i, 0);
10204 udelay(40);
10205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010206 }
10207
10208 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
10209
10210 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
10211 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010212 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010213 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
10214
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010215 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
10216 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -070010217 /* reset to prevent losing 1st rx packet intermittently */
10218 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10219 udelay(10);
10220 }
10221
Matt Carlson3bda1252008-08-15 14:08:22 -070010222 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +000010223 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
10224 MAC_MODE_FHDE_ENABLE;
10225 if (tg3_flag(tp, ENABLE_APE))
10226 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +000010227 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010228 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010229 tg3_asic_rev(tp) != ASIC_REV_5700)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010230 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010231 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
10232 udelay(40);
10233
Michael Chan314fba32005-04-21 17:07:04 -070010234 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +000010235 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -070010236 * register to preserve the GPIO settings for LOMs. The GPIOs,
10237 * whether used as inputs or outputs, are set by boot code after
10238 * reset.
10239 */
Joe Perches63c3a662011-04-26 08:12:10 +000010240 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -070010241 u32 gpio_mask;
10242
Michael Chan9d26e212006-12-07 00:21:14 -080010243 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
10244 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
10245 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -070010246
Joe Perches41535772013-02-16 11:20:04 +000010247 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070010248 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
10249 GRC_LCLCTRL_GPIO_OUTPUT3;
10250
Joe Perches41535772013-02-16 11:20:04 +000010251 if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanaf36e6b2006-03-23 01:28:06 -080010252 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
10253
Gary Zambranoaaf84462007-05-05 11:51:45 -070010254 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -070010255 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
10256
10257 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +000010258 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -080010259 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
10260 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -070010261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10263 udelay(100);
10264
Matt Carlsonc3b50032012-01-17 15:27:23 +000010265 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010266 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010267 val |= MSGINT_MODE_ENABLE;
10268 if (tp->irq_cnt > 1)
10269 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010270 if (!tg3_flag(tp, 1SHOT_MSI))
10271 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010272 tw32(MSGINT_MODE, val);
10273 }
10274
Joe Perches63c3a662011-04-26 08:12:10 +000010275 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010276 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
10277 udelay(40);
10278 }
10279
10280 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
10281 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
10282 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
10283 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
10284 WDMAC_MODE_LNGREAD_ENAB);
10285
Joe Perches41535772013-02-16 11:20:04 +000010286 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
10287 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000010288 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +000010289 (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 ||
10290 tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010291 /* nothing */
10292 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010293 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010294 val |= WDMAC_MODE_RX_ACCEL;
10295 }
10296 }
10297
Michael Chand9ab5ad12006-03-20 22:27:35 -080010298 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +000010299 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -070010300 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -080010301
Joe Perches41535772013-02-16 11:20:04 +000010302 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson788a0352009-11-02 14:26:03 +000010303 val |= WDMAC_MODE_BURST_ALL_DATA;
10304
Linus Torvalds1da177e2005-04-16 15:20:36 -070010305 tw32_f(WDMAC_MODE, val);
10306 udelay(40);
10307
Joe Perches63c3a662011-04-26 08:12:10 +000010308 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -070010309 u16 pcix_cmd;
10310
10311 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10312 &pcix_cmd);
Joe Perches41535772013-02-16 11:20:04 +000010313 if (tg3_asic_rev(tp) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -070010314 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
10315 pcix_cmd |= PCI_X_CMD_READ_2K;
Joe Perches41535772013-02-16 11:20:04 +000010316 } else if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -070010317 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
10318 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010319 }
Matt Carlson9974a352007-10-07 23:27:28 -070010320 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10321 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010322 }
10323
10324 tw32_f(RDMAC_MODE, rdmac_mode);
10325 udelay(40);
10326
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010327 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
10328 tg3_asic_rev(tp) == ASIC_REV_5720) {
Michael Chan091f0ea2012-07-29 19:15:43 +000010329 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
10330 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
10331 break;
10332 }
10333 if (i < TG3_NUM_RDMA_CHANNELS) {
10334 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010335 val |= tg3_lso_rd_dma_workaround_bit(tp);
Michael Chan091f0ea2012-07-29 19:15:43 +000010336 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010337 tg3_flag_set(tp, 5719_5720_RDMA_BUG);
Michael Chan091f0ea2012-07-29 19:15:43 +000010338 }
10339 }
10340
Linus Torvalds1da177e2005-04-16 15:20:36 -070010341 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010342 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010343 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -070010344
Joe Perches41535772013-02-16 11:20:04 +000010345 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson9936bcf2007-10-10 18:03:07 -070010346 tw32(SNDDATAC_MODE,
10347 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
10348 else
10349 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
10350
Linus Torvalds1da177e2005-04-16 15:20:36 -070010351 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
10352 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010353 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +000010354 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010355 val |= RCVDBDI_MODE_LRG_RING_SZ;
10356 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010357 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010358 if (tg3_flag(tp, HW_TSO_1) ||
10359 tg3_flag(tp, HW_TSO_2) ||
10360 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010361 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010362 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010363 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010364 val |= SNDBDI_MODE_MULTI_TXQ_EN;
10365 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010366 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
10367
Joe Perches41535772013-02-16 11:20:04 +000010368 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010369 err = tg3_load_5701_a0_firmware_fix(tp);
10370 if (err)
10371 return err;
10372 }
10373
Nithin Sujirc4dab502013-03-06 17:02:34 +000010374 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
10375 /* Ignore any errors for the firmware download. If download
10376 * fails, the device will operate with EEE disabled
10377 */
10378 tg3_load_57766_firmware(tp);
10379 }
10380
Joe Perches63c3a662011-04-26 08:12:10 +000010381 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010382 err = tg3_load_tso_firmware(tp);
10383 if (err)
10384 return err;
10385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010386
10387 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010388
Joe Perches63c3a662011-04-26 08:12:10 +000010389 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000010390 tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonb1d05212010-06-05 17:24:31 +000010391 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010392
Joe Perches41535772013-02-16 11:20:04 +000010393 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10394 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonf2096f92011-04-05 14:22:48 +000010395 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
10396 tp->tx_mode &= ~val;
10397 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
10398 }
10399
Linus Torvalds1da177e2005-04-16 15:20:36 -070010400 tw32_f(MAC_TX_MODE, tp->tx_mode);
10401 udelay(100);
10402
Joe Perches63c3a662011-04-26 08:12:10 +000010403 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010404 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010405
10406 /* Setup the "secret" hash key. */
10407 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
10408 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
10409 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
10410 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
10411 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
10412 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
10413 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
10414 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
10415 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
10416 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
10417 }
10418
Linus Torvalds1da177e2005-04-16 15:20:36 -070010419 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010420 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080010421 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
10422
Nithin Sujir378b72c2013-07-29 13:58:39 -070010423 if (tg3_asic_rev(tp) == ASIC_REV_5762)
10424 tp->rx_mode |= RX_MODE_IPV4_FRAG_FIX;
10425
Joe Perches63c3a662011-04-26 08:12:10 +000010426 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010427 tp->rx_mode |= RX_MODE_RSS_ENABLE |
10428 RX_MODE_RSS_ITBL_HASH_BITS_7 |
10429 RX_MODE_RSS_IPV6_HASH_EN |
10430 RX_MODE_RSS_TCP_IPV6_HASH_EN |
10431 RX_MODE_RSS_IPV4_HASH_EN |
10432 RX_MODE_RSS_TCP_IPV4_HASH_EN;
10433
Linus Torvalds1da177e2005-04-16 15:20:36 -070010434 tw32_f(MAC_RX_MODE, tp->rx_mode);
10435 udelay(10);
10436
Linus Torvalds1da177e2005-04-16 15:20:36 -070010437 tw32(MAC_LED_CTRL, tp->led_ctrl);
10438
10439 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010440 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010441 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10442 udelay(10);
10443 }
10444 tw32_f(MAC_RX_MODE, tp->rx_mode);
10445 udelay(10);
10446
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010447 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +000010448 if ((tg3_asic_rev(tp) == ASIC_REV_5704) &&
10449 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010450 /* Set drive transmission level to 1.2V */
10451 /* only if the signal pre-emphasis bit is not set */
10452 val = tr32(MAC_SERDES_CFG);
10453 val &= 0xfffff000;
10454 val |= 0x880;
10455 tw32(MAC_SERDES_CFG, val);
10456 }
Joe Perches41535772013-02-16 11:20:04 +000010457 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010458 tw32(MAC_SERDES_CFG, 0x616000);
10459 }
10460
10461 /* Prevent chip from dropping frames when flow control
10462 * is enabled.
10463 */
Matt Carlson55086ad2011-12-14 11:09:59 +000010464 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +000010465 val = 1;
10466 else
10467 val = 2;
10468 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010469
Joe Perches41535772013-02-16 11:20:04 +000010470 if (tg3_asic_rev(tp) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010471 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010472 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +000010473 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010474 }
10475
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010476 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010477 tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -080010478 u32 tmp;
10479
10480 tmp = tr32(SERDES_RX_CTRL);
10481 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
10482 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
10483 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
10484 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10485 }
10486
Joe Perches63c3a662011-04-26 08:12:10 +000010487 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010488 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +000010489 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010490
Joe Perches953c96e2013-04-09 10:18:14 +000010491 err = tg3_setup_phy(tp, false);
Matt Carlsondd477002008-05-25 23:45:58 -070010492 if (err)
10493 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010494
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010495 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
10496 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -070010497 u32 tmp;
10498
10499 /* Clear CRC stats. */
10500 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
10501 tg3_writephy(tp, MII_TG3_TEST1,
10502 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010503 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -070010504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010505 }
10506 }
10507
10508 __tg3_set_rx_mode(tp->dev);
10509
10510 /* Initialize receive rules. */
10511 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
10512 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
10513 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
10514 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
10515
Joe Perches63c3a662011-04-26 08:12:10 +000010516 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010517 limit = 8;
10518 else
10519 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +000010520 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010521 limit -= 4;
10522 switch (limit) {
10523 case 16:
10524 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
10525 case 15:
10526 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
10527 case 14:
10528 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
10529 case 13:
10530 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
10531 case 12:
10532 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
10533 case 11:
10534 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
10535 case 10:
10536 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
10537 case 9:
10538 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
10539 case 8:
10540 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
10541 case 7:
10542 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
10543 case 6:
10544 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
10545 case 5:
10546 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
10547 case 4:
10548 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
10549 case 3:
10550 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
10551 case 2:
10552 case 1:
10553
10554 default:
10555 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070010556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010557
Joe Perches63c3a662011-04-26 08:12:10 +000010558 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -070010559 /* Write our heartbeat update interval to APE. */
10560 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
10561 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -070010562
Linus Torvalds1da177e2005-04-16 15:20:36 -070010563 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
10564
Linus Torvalds1da177e2005-04-16 15:20:36 -070010565 return 0;
10566}
10567
10568/* Called at device open time to get the chip ready for
10569 * packet processing. Invoked with tp->lock held.
10570 */
Joe Perches953c96e2013-04-09 10:18:14 +000010571static int tg3_init_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010572{
Nithin Sujirdf465ab2013-06-12 11:08:59 -070010573 /* Chip may have been just powered on. If so, the boot code may still
10574 * be running initialization. Wait for it to finish to avoid races in
10575 * accessing the hardware.
10576 */
10577 tg3_enable_register_access(tp);
10578 tg3_poll_fw(tp);
10579
Linus Torvalds1da177e2005-04-16 15:20:36 -070010580 tg3_switch_clocks(tp);
10581
10582 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
10583
Matt Carlson2f751b62008-08-04 23:17:34 -070010584 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010585}
10586
Michael Chanaed93e02012-07-16 16:24:02 +000010587static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
10588{
10589 int i;
10590
10591 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
10592 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
10593
10594 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
10595 off += len;
10596
10597 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
10598 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
10599 memset(ocir, 0, TG3_OCIR_LEN);
10600 }
10601}
10602
10603/* sysfs attributes for hwmon */
10604static ssize_t tg3_show_temp(struct device *dev,
10605 struct device_attribute *devattr, char *buf)
10606{
10607 struct pci_dev *pdev = to_pci_dev(dev);
10608 struct net_device *netdev = pci_get_drvdata(pdev);
10609 struct tg3 *tp = netdev_priv(netdev);
10610 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
10611 u32 temperature;
10612
10613 spin_lock_bh(&tp->lock);
10614 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
10615 sizeof(temperature));
10616 spin_unlock_bh(&tp->lock);
10617 return sprintf(buf, "%u\n", temperature);
10618}
10619
10620
10621static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
10622 TG3_TEMP_SENSOR_OFFSET);
10623static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
10624 TG3_TEMP_CAUTION_OFFSET);
10625static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
10626 TG3_TEMP_MAX_OFFSET);
10627
10628static struct attribute *tg3_attributes[] = {
10629 &sensor_dev_attr_temp1_input.dev_attr.attr,
10630 &sensor_dev_attr_temp1_crit.dev_attr.attr,
10631 &sensor_dev_attr_temp1_max.dev_attr.attr,
10632 NULL
10633};
10634
10635static const struct attribute_group tg3_group = {
10636 .attrs = tg3_attributes,
10637};
10638
Michael Chanaed93e02012-07-16 16:24:02 +000010639static void tg3_hwmon_close(struct tg3 *tp)
10640{
Michael Chanaed93e02012-07-16 16:24:02 +000010641 if (tp->hwmon_dev) {
10642 hwmon_device_unregister(tp->hwmon_dev);
10643 tp->hwmon_dev = NULL;
10644 sysfs_remove_group(&tp->pdev->dev.kobj, &tg3_group);
10645 }
Michael Chanaed93e02012-07-16 16:24:02 +000010646}
10647
10648static void tg3_hwmon_open(struct tg3 *tp)
10649{
Michael Chanaed93e02012-07-16 16:24:02 +000010650 int i, err;
10651 u32 size = 0;
10652 struct pci_dev *pdev = tp->pdev;
10653 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
10654
10655 tg3_sd_scan_scratchpad(tp, ocirs);
10656
10657 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
10658 if (!ocirs[i].src_data_length)
10659 continue;
10660
10661 size += ocirs[i].src_hdr_length;
10662 size += ocirs[i].src_data_length;
10663 }
10664
10665 if (!size)
10666 return;
10667
10668 /* Register hwmon sysfs hooks */
10669 err = sysfs_create_group(&pdev->dev.kobj, &tg3_group);
10670 if (err) {
10671 dev_err(&pdev->dev, "Cannot create sysfs group, aborting\n");
10672 return;
10673 }
10674
10675 tp->hwmon_dev = hwmon_device_register(&pdev->dev);
10676 if (IS_ERR(tp->hwmon_dev)) {
10677 tp->hwmon_dev = NULL;
10678 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
10679 sysfs_remove_group(&pdev->dev.kobj, &tg3_group);
10680 }
Michael Chanaed93e02012-07-16 16:24:02 +000010681}
10682
10683
Linus Torvalds1da177e2005-04-16 15:20:36 -070010684#define TG3_STAT_ADD32(PSTAT, REG) \
10685do { u32 __val = tr32(REG); \
10686 (PSTAT)->low += __val; \
10687 if ((PSTAT)->low < __val) \
10688 (PSTAT)->high += 1; \
10689} while (0)
10690
10691static void tg3_periodic_fetch_stats(struct tg3 *tp)
10692{
10693 struct tg3_hw_stats *sp = tp->hw_stats;
10694
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010695 if (!tp->link_up)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010696 return;
10697
10698 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
10699 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
10700 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
10701 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
10702 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
10703 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
10704 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
10705 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
10706 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
10707 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
10708 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
10709 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
10710 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010711 if (unlikely(tg3_flag(tp, 5719_5720_RDMA_BUG) &&
Michael Chan091f0ea2012-07-29 19:15:43 +000010712 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
10713 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
10714 u32 val;
10715
10716 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010717 val &= ~tg3_lso_rd_dma_workaround_bit(tp);
Michael Chan091f0ea2012-07-29 19:15:43 +000010718 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010719 tg3_flag_clear(tp, 5719_5720_RDMA_BUG);
Michael Chan091f0ea2012-07-29 19:15:43 +000010720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010721
10722 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
10723 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
10724 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
10725 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
10726 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
10727 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
10728 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
10729 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
10730 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
10731 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
10732 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
10733 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
10734 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
10735 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -070010736
10737 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Joe Perches41535772013-02-16 11:20:04 +000010738 if (tg3_asic_rev(tp) != ASIC_REV_5717 &&
10739 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0 &&
10740 tg3_chip_rev_id(tp) != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000010741 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
10742 } else {
10743 u32 val = tr32(HOSTCC_FLOW_ATTN);
10744 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
10745 if (val) {
10746 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
10747 sp->rx_discards.low += val;
10748 if (sp->rx_discards.low < val)
10749 sp->rx_discards.high += 1;
10750 }
10751 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
10752 }
Michael Chan463d3052006-05-22 16:36:27 -070010753 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010754}
10755
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010756static void tg3_chk_missed_msi(struct tg3 *tp)
10757{
10758 u32 i;
10759
10760 for (i = 0; i < tp->irq_cnt; i++) {
10761 struct tg3_napi *tnapi = &tp->napi[i];
10762
10763 if (tg3_has_work(tnapi)) {
10764 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
10765 tnapi->last_tx_cons == tnapi->tx_cons) {
10766 if (tnapi->chk_msi_cnt < 1) {
10767 tnapi->chk_msi_cnt++;
10768 return;
10769 }
Matt Carlson7f230732011-08-31 11:44:48 +000010770 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010771 }
10772 }
10773 tnapi->chk_msi_cnt = 0;
10774 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
10775 tnapi->last_tx_cons = tnapi->tx_cons;
10776 }
10777}
10778
Linus Torvalds1da177e2005-04-16 15:20:36 -070010779static void tg3_timer(unsigned long __opaque)
10780{
10781 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010782
Matt Carlson5b190622011-11-04 09:15:04 +000010783 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -080010784 goto restart_timer;
10785
David S. Millerf47c11e2005-06-24 20:18:35 -070010786 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010787
Joe Perches41535772013-02-16 11:20:04 +000010788 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000010789 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010790 tg3_chk_missed_msi(tp);
10791
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000010792 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
10793 /* BCM4785: Flush posted writes from GbE to host memory. */
10794 tr32(HOSTCC_MODE);
10795 }
10796
Joe Perches63c3a662011-04-26 08:12:10 +000010797 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070010798 /* All of this garbage is because when using non-tagged
10799 * IRQ status the mailbox/status_block protocol the chip
10800 * uses with the cpu is race prone.
10801 */
Matt Carlson898a56f2009-08-28 14:02:40 +000010802 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -070010803 tw32(GRC_LOCAL_CTRL,
10804 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
10805 } else {
10806 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010807 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -070010808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010809
David S. Millerfac9b832005-05-18 22:46:34 -070010810 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010811 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +000010812 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +000010813 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -070010814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010815 }
10816
Linus Torvalds1da177e2005-04-16 15:20:36 -070010817 /* This part only runs once per second. */
10818 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010819 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -070010820 tg3_periodic_fetch_stats(tp);
10821
Matt Carlsonb0c59432011-05-19 12:12:48 +000010822 if (tp->setlpicnt && !--tp->setlpicnt)
10823 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +000010824
Joe Perches63c3a662011-04-26 08:12:10 +000010825 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010826 u32 mac_stat;
10827 int phy_event;
10828
10829 mac_stat = tr32(MAC_STATUS);
10830
10831 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010832 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010833 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
10834 phy_event = 1;
10835 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
10836 phy_event = 1;
10837
10838 if (phy_event)
Joe Perches953c96e2013-04-09 10:18:14 +000010839 tg3_setup_phy(tp, false);
Joe Perches63c3a662011-04-26 08:12:10 +000010840 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010841 u32 mac_stat = tr32(MAC_STATUS);
10842 int need_setup = 0;
10843
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010844 if (tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010845 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
10846 need_setup = 1;
10847 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010848 if (!tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010849 (mac_stat & (MAC_STATUS_PCS_SYNCED |
10850 MAC_STATUS_SIGNAL_DET))) {
10851 need_setup = 1;
10852 }
10853 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -070010854 if (!tp->serdes_counter) {
10855 tw32_f(MAC_MODE,
10856 (tp->mac_mode &
10857 ~MAC_MODE_PORT_MODE_MASK));
10858 udelay(40);
10859 tw32_f(MAC_MODE, tp->mac_mode);
10860 udelay(40);
10861 }
Joe Perches953c96e2013-04-09 10:18:14 +000010862 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010863 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010864 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010865 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -070010866 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +000010867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010868
10869 tp->timer_counter = tp->timer_multiplier;
10870 }
10871
Michael Chan130b8e42006-09-27 16:00:40 -070010872 /* Heartbeat is only sent once every 2 seconds.
10873 *
10874 * The heartbeat is to tell the ASF firmware that the host
10875 * driver is still alive. In the event that the OS crashes,
10876 * ASF needs to reset the hardware to free up the FIFO space
10877 * that may be filled with rx packets destined for the host.
10878 * If the FIFO is full, ASF will no longer function properly.
10879 *
10880 * Unintended resets have been reported on real time kernels
10881 * where the timer doesn't run on time. Netpoll will also have
10882 * same problem.
10883 *
10884 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
10885 * to check the ring condition when the heartbeat is expiring
10886 * before doing the reset. This will prevent most unintended
10887 * resets.
10888 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010889 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010890 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -070010891 tg3_wait_for_event_ack(tp);
10892
Michael Chanbbadf502006-04-06 21:46:34 -070010893 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -070010894 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -070010895 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010896 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
10897 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -070010898
10899 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010900 }
10901 tp->asf_counter = tp->asf_multiplier;
10902 }
10903
David S. Millerf47c11e2005-06-24 20:18:35 -070010904 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010905
Michael Chanf475f162006-03-27 23:20:14 -080010906restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -070010907 tp->timer.expires = jiffies + tp->timer_offset;
10908 add_timer(&tp->timer);
10909}
10910
Bill Pemberton229b1ad2012-12-03 09:22:59 -050010911static void tg3_timer_init(struct tg3 *tp)
Matt Carlson21f76382012-02-22 12:35:21 +000010912{
10913 if (tg3_flag(tp, TAGGED_STATUS) &&
Joe Perches41535772013-02-16 11:20:04 +000010914 tg3_asic_rev(tp) != ASIC_REV_5717 &&
Matt Carlson21f76382012-02-22 12:35:21 +000010915 !tg3_flag(tp, 57765_CLASS))
10916 tp->timer_offset = HZ;
10917 else
10918 tp->timer_offset = HZ / 10;
10919
10920 BUG_ON(tp->timer_offset > HZ);
10921
10922 tp->timer_multiplier = (HZ / tp->timer_offset);
10923 tp->asf_multiplier = (HZ / tp->timer_offset) *
10924 TG3_FW_UPDATE_FREQ_SEC;
10925
10926 init_timer(&tp->timer);
10927 tp->timer.data = (unsigned long) tp;
10928 tp->timer.function = tg3_timer;
10929}
10930
10931static void tg3_timer_start(struct tg3 *tp)
10932{
10933 tp->asf_counter = tp->asf_multiplier;
10934 tp->timer_counter = tp->timer_multiplier;
10935
10936 tp->timer.expires = jiffies + tp->timer_offset;
10937 add_timer(&tp->timer);
10938}
10939
10940static void tg3_timer_stop(struct tg3 *tp)
10941{
10942 del_timer_sync(&tp->timer);
10943}
10944
10945/* Restart hardware after configuration changes, self-test, etc.
10946 * Invoked with tp->lock held.
10947 */
Joe Perches953c96e2013-04-09 10:18:14 +000010948static int tg3_restart_hw(struct tg3 *tp, bool reset_phy)
Matt Carlson21f76382012-02-22 12:35:21 +000010949 __releases(tp->lock)
10950 __acquires(tp->lock)
10951{
10952 int err;
10953
10954 err = tg3_init_hw(tp, reset_phy);
10955 if (err) {
10956 netdev_err(tp->dev,
10957 "Failed to re-initialize device, aborting\n");
10958 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10959 tg3_full_unlock(tp);
10960 tg3_timer_stop(tp);
10961 tp->irq_sync = 0;
10962 tg3_napi_enable(tp);
10963 dev_close(tp->dev);
10964 tg3_full_lock(tp, 0);
10965 }
10966 return err;
10967}
10968
10969static void tg3_reset_task(struct work_struct *work)
10970{
10971 struct tg3 *tp = container_of(work, struct tg3, reset_task);
10972 int err;
10973
10974 tg3_full_lock(tp, 0);
10975
10976 if (!netif_running(tp->dev)) {
10977 tg3_flag_clear(tp, RESET_TASK_PENDING);
10978 tg3_full_unlock(tp);
10979 return;
10980 }
10981
10982 tg3_full_unlock(tp);
10983
10984 tg3_phy_stop(tp);
10985
10986 tg3_netif_stop(tp);
10987
10988 tg3_full_lock(tp, 1);
10989
10990 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
10991 tp->write32_tx_mbox = tg3_write32_tx_mbox;
10992 tp->write32_rx_mbox = tg3_write_flush_reg32;
10993 tg3_flag_set(tp, MBOX_WRITE_REORDER);
10994 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
10995 }
10996
10997 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Joe Perches953c96e2013-04-09 10:18:14 +000010998 err = tg3_init_hw(tp, true);
Matt Carlson21f76382012-02-22 12:35:21 +000010999 if (err)
11000 goto out;
11001
11002 tg3_netif_start(tp);
11003
11004out:
11005 tg3_full_unlock(tp);
11006
11007 if (!err)
11008 tg3_phy_start(tp);
11009
11010 tg3_flag_clear(tp, RESET_TASK_PENDING);
11011}
11012
Matt Carlson4f125f42009-09-01 12:55:02 +000011013static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -080011014{
David Howells7d12e782006-10-05 14:55:46 +010011015 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -080011016 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000011017 char *name;
11018 struct tg3_napi *tnapi = &tp->napi[irq_num];
11019
11020 if (tp->irq_cnt == 1)
11021 name = tp->dev->name;
11022 else {
11023 name = &tnapi->irq_lbl[0];
11024 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
11025 name[IFNAMSIZ-1] = 0;
11026 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080011027
Joe Perches63c3a662011-04-26 08:12:10 +000011028 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080011029 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000011030 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080011031 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000011032 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080011033 } else {
11034 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000011035 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080011036 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000011037 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080011038 }
Matt Carlson4f125f42009-09-01 12:55:02 +000011039
11040 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011041}
11042
Michael Chan79381092005-04-21 17:13:59 -070011043static int tg3_test_interrupt(struct tg3 *tp)
11044{
Matt Carlson09943a12009-08-28 14:01:57 +000011045 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070011046 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070011047 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011048 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070011049
Michael Chand4bc3922005-05-29 14:59:20 -070011050 if (!netif_running(dev))
11051 return -ENODEV;
11052
Michael Chan79381092005-04-21 17:13:59 -070011053 tg3_disable_ints(tp);
11054
Matt Carlson4f125f42009-09-01 12:55:02 +000011055 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070011056
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011057 /*
11058 * Turn off MSI one shot mode. Otherwise this test has no
11059 * observable way to know whether the interrupt was delivered.
11060 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000011061 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011062 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
11063 tw32(MSGINT_MODE, val);
11064 }
11065
Matt Carlson4f125f42009-09-01 12:55:02 +000011066 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000011067 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070011068 if (err)
11069 return err;
11070
Matt Carlson898a56f2009-08-28 14:02:40 +000011071 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070011072 tg3_enable_ints(tp);
11073
11074 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011075 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070011076
11077 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070011078 u32 int_mbox, misc_host_ctrl;
11079
Matt Carlson898a56f2009-08-28 14:02:40 +000011080 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070011081 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
11082
11083 if ((int_mbox != 0) ||
11084 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
11085 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070011086 break;
Michael Chanb16250e2006-09-27 16:10:14 -070011087 }
11088
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000011089 if (tg3_flag(tp, 57765_PLUS) &&
11090 tnapi->hw_status->status_tag != tnapi->last_tag)
11091 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
11092
Michael Chan79381092005-04-21 17:13:59 -070011093 msleep(10);
11094 }
11095
11096 tg3_disable_ints(tp);
11097
Matt Carlson4f125f42009-09-01 12:55:02 +000011098 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011099
Matt Carlson4f125f42009-09-01 12:55:02 +000011100 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070011101
11102 if (err)
11103 return err;
11104
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011105 if (intr_ok) {
11106 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000011107 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011108 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
11109 tw32(MSGINT_MODE, val);
11110 }
Michael Chan79381092005-04-21 17:13:59 -070011111 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011112 }
Michael Chan79381092005-04-21 17:13:59 -070011113
11114 return -EIO;
11115}
11116
11117/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
11118 * successfully restored
11119 */
11120static int tg3_test_msi(struct tg3 *tp)
11121{
Michael Chan79381092005-04-21 17:13:59 -070011122 int err;
11123 u16 pci_cmd;
11124
Joe Perches63c3a662011-04-26 08:12:10 +000011125 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070011126 return 0;
11127
11128 /* Turn off SERR reporting in case MSI terminates with Master
11129 * Abort.
11130 */
11131 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
11132 pci_write_config_word(tp->pdev, PCI_COMMAND,
11133 pci_cmd & ~PCI_COMMAND_SERR);
11134
11135 err = tg3_test_interrupt(tp);
11136
11137 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
11138
11139 if (!err)
11140 return 0;
11141
11142 /* other failures */
11143 if (err != -EIO)
11144 return err;
11145
11146 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000011147 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
11148 "to INTx mode. Please report this failure to the PCI "
11149 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070011150
Matt Carlson4f125f42009-09-01 12:55:02 +000011151 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000011152
Michael Chan79381092005-04-21 17:13:59 -070011153 pci_disable_msi(tp->pdev);
11154
Joe Perches63c3a662011-04-26 08:12:10 +000011155 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000011156 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070011157
Matt Carlson4f125f42009-09-01 12:55:02 +000011158 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070011159 if (err)
11160 return err;
11161
11162 /* Need to reset the chip because the MSI cycle may have terminated
11163 * with Master Abort.
11164 */
David S. Millerf47c11e2005-06-24 20:18:35 -070011165 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070011166
Michael Chan944d9802005-05-29 14:57:48 -070011167 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000011168 err = tg3_init_hw(tp, true);
Michael Chan79381092005-04-21 17:13:59 -070011169
David S. Millerf47c11e2005-06-24 20:18:35 -070011170 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070011171
11172 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000011173 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070011174
11175 return err;
11176}
11177
Matt Carlson9e9fd122009-01-19 16:57:45 -080011178static int tg3_request_firmware(struct tg3 *tp)
11179{
Nithin Sujir77997ea2013-03-06 17:02:32 +000011180 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson9e9fd122009-01-19 16:57:45 -080011181
11182 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011183 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
11184 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080011185 return -ENOENT;
11186 }
11187
Nithin Sujir77997ea2013-03-06 17:02:32 +000011188 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson9e9fd122009-01-19 16:57:45 -080011189
11190 /* Firmware blob starts with version numbers, followed by
11191 * start address and _full_ length including BSS sections
11192 * (which must be longer than the actual data, of course
11193 */
11194
Nithin Sujir77997ea2013-03-06 17:02:32 +000011195 tp->fw_len = be32_to_cpu(fw_hdr->len); /* includes bss */
11196 if (tp->fw_len < (tp->fw->size - TG3_FW_HDR_LEN)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011197 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
11198 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080011199 release_firmware(tp->fw);
11200 tp->fw = NULL;
11201 return -EINVAL;
11202 }
11203
11204 /* We no longer need firmware; we have it. */
11205 tp->fw_needed = NULL;
11206 return 0;
11207}
11208
Michael Chan91024262012-09-28 07:12:38 +000011209static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000011210{
Michael Chan91024262012-09-28 07:12:38 +000011211 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000011212
Michael Chan91024262012-09-28 07:12:38 +000011213 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000011214 /* We want as many rx rings enabled as there are cpus.
11215 * In multiqueue MSI-X mode, the first MSI-X vector
11216 * only deals with link interrupts, etc, so we add
11217 * one to the number of vectors we are requesting.
11218 */
Michael Chan91024262012-09-28 07:12:38 +000011219 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000011220 }
Matt Carlson679563f2009-09-01 12:55:46 +000011221
Michael Chan91024262012-09-28 07:12:38 +000011222 return irq_cnt;
11223}
11224
11225static bool tg3_enable_msix(struct tg3 *tp)
11226{
11227 int i, rc;
Michael Chan86449942012-10-02 20:31:14 -070011228 struct msix_entry msix_ent[TG3_IRQ_MAX_VECS];
Michael Chan91024262012-09-28 07:12:38 +000011229
Michael Chan09681692012-09-28 07:12:42 +000011230 tp->txq_cnt = tp->txq_req;
11231 tp->rxq_cnt = tp->rxq_req;
11232 if (!tp->rxq_cnt)
11233 tp->rxq_cnt = netif_get_num_default_rss_queues();
Michael Chan91024262012-09-28 07:12:38 +000011234 if (tp->rxq_cnt > tp->rxq_max)
11235 tp->rxq_cnt = tp->rxq_max;
Michael Chancf6d6ea2012-09-28 07:12:43 +000011236
11237 /* Disable multiple TX rings by default. Simple round-robin hardware
11238 * scheduling of the TX rings can cause starvation of rings with
11239 * small packets when other rings have TSO or jumbo packets.
11240 */
11241 if (!tp->txq_req)
11242 tp->txq_cnt = 1;
Michael Chan91024262012-09-28 07:12:38 +000011243
11244 tp->irq_cnt = tg3_irq_count(tp);
11245
Matt Carlson679563f2009-09-01 12:55:46 +000011246 for (i = 0; i < tp->irq_max; i++) {
11247 msix_ent[i].entry = i;
11248 msix_ent[i].vector = 0;
11249 }
11250
11251 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011252 if (rc < 0) {
11253 return false;
11254 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +000011255 if (pci_enable_msix(tp->pdev, msix_ent, rc))
11256 return false;
Joe Perches05dbe002010-02-17 19:44:19 +000011257 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
11258 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000011259 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000011260 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000011261 if (tp->txq_cnt)
11262 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000011263 }
11264
11265 for (i = 0; i < tp->irq_max; i++)
11266 tp->napi[i].irq_vec = msix_ent[i].vector;
11267
Michael Chan49a359e2012-09-28 07:12:37 +000011268 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011269 pci_disable_msix(tp->pdev);
11270 return false;
11271 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000011272
Michael Chan91024262012-09-28 07:12:38 +000011273 if (tp->irq_cnt == 1)
11274 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000011275
Michael Chan91024262012-09-28 07:12:38 +000011276 tg3_flag_set(tp, ENABLE_RSS);
11277
11278 if (tp->txq_cnt > 1)
11279 tg3_flag_set(tp, ENABLE_TSS);
11280
11281 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011282
Matt Carlson679563f2009-09-01 12:55:46 +000011283 return true;
11284}
11285
Matt Carlson07b01732009-08-28 14:01:15 +000011286static void tg3_ints_init(struct tg3 *tp)
11287{
Joe Perches63c3a662011-04-26 08:12:10 +000011288 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
11289 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000011290 /* All MSI supporting chips should support tagged
11291 * status. Assert that this is the case.
11292 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000011293 netdev_warn(tp->dev,
11294 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000011295 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000011296 }
Matt Carlson4f125f42009-09-01 12:55:02 +000011297
Joe Perches63c3a662011-04-26 08:12:10 +000011298 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
11299 tg3_flag_set(tp, USING_MSIX);
11300 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
11301 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000011302
Joe Perches63c3a662011-04-26 08:12:10 +000011303 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011304 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000011305 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000011306 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000011307 if (!tg3_flag(tp, 1SHOT_MSI))
11308 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000011309 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
11310 }
11311defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000011312 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011313 tp->irq_cnt = 1;
11314 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000011315 }
11316
11317 if (tp->irq_cnt == 1) {
11318 tp->txq_cnt = 1;
11319 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011320 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070011321 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000011322 }
Matt Carlson07b01732009-08-28 14:01:15 +000011323}
11324
11325static void tg3_ints_fini(struct tg3 *tp)
11326{
Joe Perches63c3a662011-04-26 08:12:10 +000011327 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000011328 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011329 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000011330 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011331 tg3_flag_clear(tp, USING_MSI);
11332 tg3_flag_clear(tp, USING_MSIX);
11333 tg3_flag_clear(tp, ENABLE_RSS);
11334 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000011335}
11336
Matt Carlsonbe947302012-12-03 19:36:57 +000011337static int tg3_start(struct tg3 *tp, bool reset_phy, bool test_irq,
11338 bool init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011339{
Michael Chand8f4cd32012-09-28 07:12:40 +000011340 struct net_device *dev = tp->dev;
Matt Carlson4f125f42009-09-01 12:55:02 +000011341 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011342
Matt Carlson679563f2009-09-01 12:55:46 +000011343 /*
11344 * Setup interrupts first so we know how
11345 * many NAPI resources to allocate
11346 */
11347 tg3_ints_init(tp);
11348
Matt Carlson90415472011-12-16 13:33:23 +000011349 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000011350
Linus Torvalds1da177e2005-04-16 15:20:36 -070011351 /* The placement of this call is tied
11352 * to the setup and use of Host TX descriptors.
11353 */
11354 err = tg3_alloc_consistent(tp);
11355 if (err)
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011356 goto out_ints_fini;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011357
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011358 tg3_napi_init(tp);
11359
Matt Carlsonfed97812009-09-01 13:10:19 +000011360 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070011361
Matt Carlson4f125f42009-09-01 12:55:02 +000011362 for (i = 0; i < tp->irq_cnt; i++) {
11363 struct tg3_napi *tnapi = &tp->napi[i];
11364 err = tg3_request_irq(tp, i);
11365 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000011366 for (i--; i >= 0; i--) {
11367 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000011368 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000011369 }
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011370 goto out_napi_fini;
Matt Carlson4f125f42009-09-01 12:55:02 +000011371 }
11372 }
Matt Carlson07b01732009-08-28 14:01:15 +000011373
David S. Millerf47c11e2005-06-24 20:18:35 -070011374 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011375
Nithin Sujir2e460fc2013-05-23 11:11:22 +000011376 if (init)
11377 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
11378
Michael Chand8f4cd32012-09-28 07:12:40 +000011379 err = tg3_init_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011380 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070011381 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011382 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011383 }
11384
David S. Millerf47c11e2005-06-24 20:18:35 -070011385 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011386
Matt Carlson07b01732009-08-28 14:01:15 +000011387 if (err)
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011388 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011389
Michael Chand8f4cd32012-09-28 07:12:40 +000011390 if (test_irq && tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070011391 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070011392
Michael Chan79381092005-04-21 17:13:59 -070011393 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070011394 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070011395 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070011396 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070011397 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070011398
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011399 goto out_napi_fini;
Michael Chan79381092005-04-21 17:13:59 -070011400 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080011401
Joe Perches63c3a662011-04-26 08:12:10 +000011402 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011403 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011404
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011405 tw32(PCIE_TRANSACTION_CFG,
11406 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011407 }
Michael Chan79381092005-04-21 17:13:59 -070011408 }
11409
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011410 tg3_phy_start(tp);
11411
Michael Chanaed93e02012-07-16 16:24:02 +000011412 tg3_hwmon_open(tp);
11413
David S. Millerf47c11e2005-06-24 20:18:35 -070011414 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011415
Matt Carlson21f76382012-02-22 12:35:21 +000011416 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011417 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011418 tg3_enable_ints(tp);
11419
Matt Carlsonbe947302012-12-03 19:36:57 +000011420 if (init)
11421 tg3_ptp_init(tp);
11422 else
11423 tg3_ptp_resume(tp);
11424
11425
David S. Millerf47c11e2005-06-24 20:18:35 -070011426 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011427
Matt Carlsonfe5f5782009-09-01 13:09:39 +000011428 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011429
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000011430 /*
11431 * Reset loopback feature if it was turned on while the device was down
11432 * make sure that it's installed properly now.
11433 */
11434 if (dev->features & NETIF_F_LOOPBACK)
11435 tg3_set_loopback(dev, dev->features);
11436
Linus Torvalds1da177e2005-04-16 15:20:36 -070011437 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000011438
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011439out_free_irq:
Matt Carlson4f125f42009-09-01 12:55:02 +000011440 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11441 struct tg3_napi *tnapi = &tp->napi[i];
11442 free_irq(tnapi->irq_vec, tnapi);
11443 }
Matt Carlson07b01732009-08-28 14:01:15 +000011444
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011445out_napi_fini:
Matt Carlsonfed97812009-09-01 13:10:19 +000011446 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011447 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000011448 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000011449
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011450out_ints_fini:
Matt Carlson679563f2009-09-01 12:55:46 +000011451 tg3_ints_fini(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011452
Matt Carlson07b01732009-08-28 14:01:15 +000011453 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011454}
11455
Michael Chan65138592012-09-28 07:12:41 +000011456static void tg3_stop(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011457{
Matt Carlson4f125f42009-09-01 12:55:02 +000011458 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011459
Matt Carlsondb219972011-11-04 09:15:03 +000011460 tg3_reset_task_cancel(tp);
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000011461 tg3_netif_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011462
Matt Carlson21f76382012-02-22 12:35:21 +000011463 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011464
Michael Chanaed93e02012-07-16 16:24:02 +000011465 tg3_hwmon_close(tp);
11466
Matt Carlson24bb4fb2009-10-05 17:55:29 +000011467 tg3_phy_stop(tp);
11468
David S. Millerf47c11e2005-06-24 20:18:35 -070011469 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011470
11471 tg3_disable_ints(tp);
11472
Michael Chan944d9802005-05-29 14:57:48 -070011473 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011474 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011475 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011476
David S. Millerf47c11e2005-06-24 20:18:35 -070011477 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011478
Matt Carlson4f125f42009-09-01 12:55:02 +000011479 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11480 struct tg3_napi *tnapi = &tp->napi[i];
11481 free_irq(tnapi->irq_vec, tnapi);
11482 }
Matt Carlson07b01732009-08-28 14:01:15 +000011483
11484 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011485
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011486 tg3_napi_fini(tp);
11487
Linus Torvalds1da177e2005-04-16 15:20:36 -070011488 tg3_free_consistent(tp);
Michael Chan65138592012-09-28 07:12:41 +000011489}
11490
Michael Chand8f4cd32012-09-28 07:12:40 +000011491static int tg3_open(struct net_device *dev)
11492{
11493 struct tg3 *tp = netdev_priv(dev);
11494 int err;
11495
11496 if (tp->fw_needed) {
11497 err = tg3_request_firmware(tp);
Nithin Sujirc4dab502013-03-06 17:02:34 +000011498 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
11499 if (err) {
11500 netdev_warn(tp->dev, "EEE capability disabled\n");
11501 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11502 } else if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
11503 netdev_warn(tp->dev, "EEE capability restored\n");
11504 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
11505 }
11506 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Michael Chand8f4cd32012-09-28 07:12:40 +000011507 if (err)
11508 return err;
11509 } else if (err) {
11510 netdev_warn(tp->dev, "TSO capability disabled\n");
11511 tg3_flag_clear(tp, TSO_CAPABLE);
11512 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
11513 netdev_notice(tp->dev, "TSO capability restored\n");
11514 tg3_flag_set(tp, TSO_CAPABLE);
11515 }
11516 }
11517
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011518 tg3_carrier_off(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011519
11520 err = tg3_power_up(tp);
11521 if (err)
11522 return err;
11523
11524 tg3_full_lock(tp, 0);
11525
11526 tg3_disable_ints(tp);
11527 tg3_flag_clear(tp, INIT_COMPLETE);
11528
11529 tg3_full_unlock(tp);
11530
Nithin Sujir942d1af2013-04-09 08:48:07 +000011531 err = tg3_start(tp,
11532 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN),
11533 true, true);
Michael Chand8f4cd32012-09-28 07:12:40 +000011534 if (err) {
11535 tg3_frob_aux_power(tp, false);
11536 pci_set_power_state(tp->pdev, PCI_D3hot);
11537 }
Matt Carlsonbe947302012-12-03 19:36:57 +000011538
Matt Carlson7d41e492012-12-03 19:36:58 +000011539 if (tg3_flag(tp, PTP_CAPABLE)) {
11540 tp->ptp_clock = ptp_clock_register(&tp->ptp_info,
11541 &tp->pdev->dev);
11542 if (IS_ERR(tp->ptp_clock))
11543 tp->ptp_clock = NULL;
11544 }
11545
Linus Torvalds1da177e2005-04-16 15:20:36 -070011546 return err;
11547}
11548
11549static int tg3_close(struct net_device *dev)
11550{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011551 struct tg3 *tp = netdev_priv(dev);
11552
Matt Carlsonbe947302012-12-03 19:36:57 +000011553 tg3_ptp_fini(tp);
11554
Michael Chan65138592012-09-28 07:12:41 +000011555 tg3_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011556
11557 /* Clear stats across close / open calls */
11558 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
11559 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011560
Nithin Sujir5137a2e2013-07-29 13:58:36 -070011561 tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011562
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011563 tg3_carrier_off(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011564
11565 return 0;
11566}
11567
11568static inline u64 get_stat64(tg3_stat64_t *val)
11569{
11570 return ((u64)val->high << 32) | ((u64)val->low);
11571}
11572
11573static u64 tg3_calc_crc_errors(struct tg3 *tp)
11574{
11575 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11576
11577 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000011578 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
11579 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011580 u32 val;
11581
11582 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
11583 tg3_writephy(tp, MII_TG3_TEST1,
11584 val | MII_TG3_TEST1_CRC_EN);
11585 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
11586 } else
11587 val = 0;
11588
11589 tp->phy_crc_errors += val;
11590
11591 return tp->phy_crc_errors;
11592 }
11593
11594 return get_stat64(&hw_stats->rx_fcs_errors);
11595}
11596
11597#define ESTAT_ADD(member) \
11598 estats->member = old_estats->member + \
11599 get_stat64(&hw_stats->member)
11600
11601static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
11602{
11603 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
11604 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11605
11606 ESTAT_ADD(rx_octets);
11607 ESTAT_ADD(rx_fragments);
11608 ESTAT_ADD(rx_ucast_packets);
11609 ESTAT_ADD(rx_mcast_packets);
11610 ESTAT_ADD(rx_bcast_packets);
11611 ESTAT_ADD(rx_fcs_errors);
11612 ESTAT_ADD(rx_align_errors);
11613 ESTAT_ADD(rx_xon_pause_rcvd);
11614 ESTAT_ADD(rx_xoff_pause_rcvd);
11615 ESTAT_ADD(rx_mac_ctrl_rcvd);
11616 ESTAT_ADD(rx_xoff_entered);
11617 ESTAT_ADD(rx_frame_too_long_errors);
11618 ESTAT_ADD(rx_jabbers);
11619 ESTAT_ADD(rx_undersize_packets);
11620 ESTAT_ADD(rx_in_length_errors);
11621 ESTAT_ADD(rx_out_length_errors);
11622 ESTAT_ADD(rx_64_or_less_octet_packets);
11623 ESTAT_ADD(rx_65_to_127_octet_packets);
11624 ESTAT_ADD(rx_128_to_255_octet_packets);
11625 ESTAT_ADD(rx_256_to_511_octet_packets);
11626 ESTAT_ADD(rx_512_to_1023_octet_packets);
11627 ESTAT_ADD(rx_1024_to_1522_octet_packets);
11628 ESTAT_ADD(rx_1523_to_2047_octet_packets);
11629 ESTAT_ADD(rx_2048_to_4095_octet_packets);
11630 ESTAT_ADD(rx_4096_to_8191_octet_packets);
11631 ESTAT_ADD(rx_8192_to_9022_octet_packets);
11632
11633 ESTAT_ADD(tx_octets);
11634 ESTAT_ADD(tx_collisions);
11635 ESTAT_ADD(tx_xon_sent);
11636 ESTAT_ADD(tx_xoff_sent);
11637 ESTAT_ADD(tx_flow_control);
11638 ESTAT_ADD(tx_mac_errors);
11639 ESTAT_ADD(tx_single_collisions);
11640 ESTAT_ADD(tx_mult_collisions);
11641 ESTAT_ADD(tx_deferred);
11642 ESTAT_ADD(tx_excessive_collisions);
11643 ESTAT_ADD(tx_late_collisions);
11644 ESTAT_ADD(tx_collide_2times);
11645 ESTAT_ADD(tx_collide_3times);
11646 ESTAT_ADD(tx_collide_4times);
11647 ESTAT_ADD(tx_collide_5times);
11648 ESTAT_ADD(tx_collide_6times);
11649 ESTAT_ADD(tx_collide_7times);
11650 ESTAT_ADD(tx_collide_8times);
11651 ESTAT_ADD(tx_collide_9times);
11652 ESTAT_ADD(tx_collide_10times);
11653 ESTAT_ADD(tx_collide_11times);
11654 ESTAT_ADD(tx_collide_12times);
11655 ESTAT_ADD(tx_collide_13times);
11656 ESTAT_ADD(tx_collide_14times);
11657 ESTAT_ADD(tx_collide_15times);
11658 ESTAT_ADD(tx_ucast_packets);
11659 ESTAT_ADD(tx_mcast_packets);
11660 ESTAT_ADD(tx_bcast_packets);
11661 ESTAT_ADD(tx_carrier_sense_errors);
11662 ESTAT_ADD(tx_discards);
11663 ESTAT_ADD(tx_errors);
11664
11665 ESTAT_ADD(dma_writeq_full);
11666 ESTAT_ADD(dma_write_prioq_full);
11667 ESTAT_ADD(rxbds_empty);
11668 ESTAT_ADD(rx_discards);
11669 ESTAT_ADD(rx_errors);
11670 ESTAT_ADD(rx_threshold_hit);
11671
11672 ESTAT_ADD(dma_readq_full);
11673 ESTAT_ADD(dma_read_prioq_full);
11674 ESTAT_ADD(tx_comp_queue_full);
11675
11676 ESTAT_ADD(ring_set_send_prod_index);
11677 ESTAT_ADD(ring_status_update);
11678 ESTAT_ADD(nic_irqs);
11679 ESTAT_ADD(nic_avoided_irqs);
11680 ESTAT_ADD(nic_tx_threshold_hit);
11681
Matt Carlson4452d092011-05-19 12:12:51 +000011682 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011683}
11684
Matt Carlson65ec6982012-02-28 23:33:37 +000011685static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011686{
Eric Dumazet511d2222010-07-07 20:44:24 +000011687 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011688 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11689
Linus Torvalds1da177e2005-04-16 15:20:36 -070011690 stats->rx_packets = old_stats->rx_packets +
11691 get_stat64(&hw_stats->rx_ucast_packets) +
11692 get_stat64(&hw_stats->rx_mcast_packets) +
11693 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011694
Linus Torvalds1da177e2005-04-16 15:20:36 -070011695 stats->tx_packets = old_stats->tx_packets +
11696 get_stat64(&hw_stats->tx_ucast_packets) +
11697 get_stat64(&hw_stats->tx_mcast_packets) +
11698 get_stat64(&hw_stats->tx_bcast_packets);
11699
11700 stats->rx_bytes = old_stats->rx_bytes +
11701 get_stat64(&hw_stats->rx_octets);
11702 stats->tx_bytes = old_stats->tx_bytes +
11703 get_stat64(&hw_stats->tx_octets);
11704
11705 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070011706 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011707 stats->tx_errors = old_stats->tx_errors +
11708 get_stat64(&hw_stats->tx_errors) +
11709 get_stat64(&hw_stats->tx_mac_errors) +
11710 get_stat64(&hw_stats->tx_carrier_sense_errors) +
11711 get_stat64(&hw_stats->tx_discards);
11712
11713 stats->multicast = old_stats->multicast +
11714 get_stat64(&hw_stats->rx_mcast_packets);
11715 stats->collisions = old_stats->collisions +
11716 get_stat64(&hw_stats->tx_collisions);
11717
11718 stats->rx_length_errors = old_stats->rx_length_errors +
11719 get_stat64(&hw_stats->rx_frame_too_long_errors) +
11720 get_stat64(&hw_stats->rx_undersize_packets);
11721
11722 stats->rx_over_errors = old_stats->rx_over_errors +
11723 get_stat64(&hw_stats->rxbds_empty);
11724 stats->rx_frame_errors = old_stats->rx_frame_errors +
11725 get_stat64(&hw_stats->rx_align_errors);
11726 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11727 get_stat64(&hw_stats->tx_discards);
11728 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11729 get_stat64(&hw_stats->tx_carrier_sense_errors);
11730
11731 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000011732 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011733
John W. Linville4f63b872005-09-12 14:43:18 -070011734 stats->rx_missed_errors = old_stats->rx_missed_errors +
11735 get_stat64(&hw_stats->rx_discards);
11736
Eric Dumazetb0057c52010-10-10 19:55:52 +000011737 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000011738 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011739}
11740
Linus Torvalds1da177e2005-04-16 15:20:36 -070011741static int tg3_get_regs_len(struct net_device *dev)
11742{
Matt Carlson97bd8e42011-04-13 11:05:04 +000011743 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011744}
11745
11746static void tg3_get_regs(struct net_device *dev,
11747 struct ethtool_regs *regs, void *_p)
11748{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011749 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011750
11751 regs->version = 0;
11752
Matt Carlson97bd8e42011-04-13 11:05:04 +000011753 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011754
Matt Carlson80096062010-08-02 11:26:06 +000011755 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011756 return;
11757
David S. Millerf47c11e2005-06-24 20:18:35 -070011758 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011759
Matt Carlson97bd8e42011-04-13 11:05:04 +000011760 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011761
David S. Millerf47c11e2005-06-24 20:18:35 -070011762 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011763}
11764
11765static int tg3_get_eeprom_len(struct net_device *dev)
11766{
11767 struct tg3 *tp = netdev_priv(dev);
11768
11769 return tp->nvram_size;
11770}
11771
Linus Torvalds1da177e2005-04-16 15:20:36 -070011772static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11773{
11774 struct tg3 *tp = netdev_priv(dev);
11775 int ret;
11776 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080011777 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011778 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011779
Joe Perches63c3a662011-04-26 08:12:10 +000011780 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011781 return -EINVAL;
11782
Linus Torvalds1da177e2005-04-16 15:20:36 -070011783 offset = eeprom->offset;
11784 len = eeprom->len;
11785 eeprom->len = 0;
11786
11787 eeprom->magic = TG3_EEPROM_MAGIC;
11788
11789 if (offset & 3) {
11790 /* adjustments to start on required 4 byte boundary */
11791 b_offset = offset & 3;
11792 b_count = 4 - b_offset;
11793 if (b_count > len) {
11794 /* i.e. offset=1 len=2 */
11795 b_count = len;
11796 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000011797 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011798 if (ret)
11799 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000011800 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011801 len -= b_count;
11802 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011803 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011804 }
11805
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011806 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011807 pd = &data[eeprom->len];
11808 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011809 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011810 if (ret) {
11811 eeprom->len += i;
11812 return ret;
11813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011814 memcpy(pd + i, &val, 4);
11815 }
11816 eeprom->len += i;
11817
11818 if (len & 3) {
11819 /* read last bytes not ending on 4 byte boundary */
11820 pd = &data[eeprom->len];
11821 b_count = len & 3;
11822 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011823 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011824 if (ret)
11825 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011826 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011827 eeprom->len += b_count;
11828 }
11829 return 0;
11830}
11831
Linus Torvalds1da177e2005-04-16 15:20:36 -070011832static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11833{
11834 struct tg3 *tp = netdev_priv(dev);
11835 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011836 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011837 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011838 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011839
Joe Perches63c3a662011-04-26 08:12:10 +000011840 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000011841 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011842 return -EINVAL;
11843
11844 offset = eeprom->offset;
11845 len = eeprom->len;
11846
11847 if ((b_offset = (offset & 3))) {
11848 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011849 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011850 if (ret)
11851 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011852 len += b_offset;
11853 offset &= ~3;
Michael Chan1c8594b42005-04-21 17:12:46 -070011854 if (len < 4)
11855 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011856 }
11857
11858 odd_len = 0;
Michael Chan1c8594b42005-04-21 17:12:46 -070011859 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011860 /* adjustments to end on required 4 byte boundary */
11861 odd_len = 1;
11862 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011863 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011864 if (ret)
11865 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011866 }
11867
11868 buf = data;
11869 if (b_offset || odd_len) {
11870 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011871 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011872 return -ENOMEM;
11873 if (b_offset)
11874 memcpy(buf, &start, 4);
11875 if (odd_len)
11876 memcpy(buf+len-4, &end, 4);
11877 memcpy(buf + b_offset, data, eeprom->len);
11878 }
11879
11880 ret = tg3_nvram_write_block(tp, offset, len, buf);
11881
11882 if (buf != data)
11883 kfree(buf);
11884
11885 return ret;
11886}
11887
11888static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11889{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011890 struct tg3 *tp = netdev_priv(dev);
11891
Joe Perches63c3a662011-04-26 08:12:10 +000011892 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011893 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011894 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011895 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011896 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11897 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011898 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011899
Linus Torvalds1da177e2005-04-16 15:20:36 -070011900 cmd->supported = (SUPPORTED_Autoneg);
11901
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011902 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011903 cmd->supported |= (SUPPORTED_1000baseT_Half |
11904 SUPPORTED_1000baseT_Full);
11905
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011906 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011907 cmd->supported |= (SUPPORTED_100baseT_Half |
11908 SUPPORTED_100baseT_Full |
11909 SUPPORTED_10baseT_Half |
11910 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080011911 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070011912 cmd->port = PORT_TP;
11913 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011914 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070011915 cmd->port = PORT_FIBRE;
11916 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011917
Linus Torvalds1da177e2005-04-16 15:20:36 -070011918 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000011919 if (tg3_flag(tp, PAUSE_AUTONEG)) {
11920 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
11921 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11922 cmd->advertising |= ADVERTISED_Pause;
11923 } else {
11924 cmd->advertising |= ADVERTISED_Pause |
11925 ADVERTISED_Asym_Pause;
11926 }
11927 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11928 cmd->advertising |= ADVERTISED_Asym_Pause;
11929 }
11930 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011931 if (netif_running(dev) && tp->link_up) {
David Decotigny70739492011-04-27 18:32:40 +000011932 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011933 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000011934 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011935 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
11936 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
11937 cmd->eth_tp_mdix = ETH_TP_MDI_X;
11938 else
11939 cmd->eth_tp_mdix = ETH_TP_MDI;
11940 }
Matt Carlson64c22182010-10-14 10:37:44 +000011941 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000011942 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
11943 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011944 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011945 }
Matt Carlson882e9792009-09-01 13:21:36 +000011946 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011947 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011948 cmd->autoneg = tp->link_config.autoneg;
11949 cmd->maxtxpkt = 0;
11950 cmd->maxrxpkt = 0;
11951 return 0;
11952}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011953
Linus Torvalds1da177e2005-04-16 15:20:36 -070011954static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11955{
11956 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000011957 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011958
Joe Perches63c3a662011-04-26 08:12:10 +000011959 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011960 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011961 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011962 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011963 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11964 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011965 }
11966
Matt Carlson7e5856b2009-02-25 14:23:01 +000011967 if (cmd->autoneg != AUTONEG_ENABLE &&
11968 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070011969 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011970
11971 if (cmd->autoneg == AUTONEG_DISABLE &&
11972 cmd->duplex != DUPLEX_FULL &&
11973 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070011974 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011975
Matt Carlson7e5856b2009-02-25 14:23:01 +000011976 if (cmd->autoneg == AUTONEG_ENABLE) {
11977 u32 mask = ADVERTISED_Autoneg |
11978 ADVERTISED_Pause |
11979 ADVERTISED_Asym_Pause;
11980
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011981 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011982 mask |= ADVERTISED_1000baseT_Half |
11983 ADVERTISED_1000baseT_Full;
11984
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011985 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011986 mask |= ADVERTISED_100baseT_Half |
11987 ADVERTISED_100baseT_Full |
11988 ADVERTISED_10baseT_Half |
11989 ADVERTISED_10baseT_Full |
11990 ADVERTISED_TP;
11991 else
11992 mask |= ADVERTISED_FIBRE;
11993
11994 if (cmd->advertising & ~mask)
11995 return -EINVAL;
11996
11997 mask &= (ADVERTISED_1000baseT_Half |
11998 ADVERTISED_1000baseT_Full |
11999 ADVERTISED_100baseT_Half |
12000 ADVERTISED_100baseT_Full |
12001 ADVERTISED_10baseT_Half |
12002 ADVERTISED_10baseT_Full);
12003
12004 cmd->advertising &= mask;
12005 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012006 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000012007 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000012008 return -EINVAL;
12009
12010 if (cmd->duplex != DUPLEX_FULL)
12011 return -EINVAL;
12012 } else {
David Decotigny25db0332011-04-27 18:32:39 +000012013 if (speed != SPEED_100 &&
12014 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000012015 return -EINVAL;
12016 }
12017 }
12018
David S. Millerf47c11e2005-06-24 20:18:35 -070012019 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012020
12021 tp->link_config.autoneg = cmd->autoneg;
12022 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070012023 tp->link_config.advertising = (cmd->advertising |
12024 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000012025 tp->link_config.speed = SPEED_UNKNOWN;
12026 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012027 } else {
12028 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000012029 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012030 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012031 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012032
Nithin Sujirfdad8de2013-04-09 08:48:08 +000012033 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
12034
Nithin Sujirce20f162013-04-09 08:48:04 +000012035 tg3_warn_mgmt_link_flap(tp);
12036
Linus Torvalds1da177e2005-04-16 15:20:36 -070012037 if (netif_running(dev))
Joe Perches953c96e2013-04-09 10:18:14 +000012038 tg3_setup_phy(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012039
David S. Millerf47c11e2005-06-24 20:18:35 -070012040 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012041
Linus Torvalds1da177e2005-04-16 15:20:36 -070012042 return 0;
12043}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012044
Linus Torvalds1da177e2005-04-16 15:20:36 -070012045static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
12046{
12047 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012048
Rick Jones68aad782011-11-07 13:29:27 +000012049 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
12050 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
12051 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
12052 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012053}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012054
Linus Torvalds1da177e2005-04-16 15:20:36 -070012055static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
12056{
12057 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012058
Joe Perches63c3a662011-04-26 08:12:10 +000012059 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070012060 wol->supported = WAKE_MAGIC;
12061 else
12062 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012063 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012064 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012065 wol->wolopts = WAKE_MAGIC;
12066 memset(&wol->sopass, 0, sizeof(wol->sopass));
12067}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012068
Linus Torvalds1da177e2005-04-16 15:20:36 -070012069static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
12070{
12071 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070012072 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012073
Linus Torvalds1da177e2005-04-16 15:20:36 -070012074 if (wol->wolopts & ~WAKE_MAGIC)
12075 return -EINVAL;
12076 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012077 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012078 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012079
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000012080 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
12081
David S. Millerf47c11e2005-06-24 20:18:35 -070012082 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000012083 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000012084 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000012085 else
Joe Perches63c3a662011-04-26 08:12:10 +000012086 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070012087 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012088
Linus Torvalds1da177e2005-04-16 15:20:36 -070012089 return 0;
12090}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012091
Linus Torvalds1da177e2005-04-16 15:20:36 -070012092static u32 tg3_get_msglevel(struct net_device *dev)
12093{
12094 struct tg3 *tp = netdev_priv(dev);
12095 return tp->msg_enable;
12096}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012097
Linus Torvalds1da177e2005-04-16 15:20:36 -070012098static void tg3_set_msglevel(struct net_device *dev, u32 value)
12099{
12100 struct tg3 *tp = netdev_priv(dev);
12101 tp->msg_enable = value;
12102}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012103
Linus Torvalds1da177e2005-04-16 15:20:36 -070012104static int tg3_nway_reset(struct net_device *dev)
12105{
12106 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012107 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012108
Linus Torvalds1da177e2005-04-16 15:20:36 -070012109 if (!netif_running(dev))
12110 return -EAGAIN;
12111
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012112 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070012113 return -EINVAL;
12114
Nithin Sujirce20f162013-04-09 08:48:04 +000012115 tg3_warn_mgmt_link_flap(tp);
12116
Joe Perches63c3a662011-04-26 08:12:10 +000012117 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012118 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012119 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012120 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012121 } else {
12122 u32 bmcr;
12123
12124 spin_lock_bh(&tp->lock);
12125 r = -EINVAL;
12126 tg3_readphy(tp, MII_BMCR, &bmcr);
12127 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
12128 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012129 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012130 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
12131 BMCR_ANENABLE);
12132 r = 0;
12133 }
12134 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012135 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012136
Linus Torvalds1da177e2005-04-16 15:20:36 -070012137 return r;
12138}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012139
Linus Torvalds1da177e2005-04-16 15:20:36 -070012140static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
12141{
12142 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012143
Matt Carlson2c49a442010-09-30 10:34:35 +000012144 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000012145 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000012146 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080012147 else
12148 ering->rx_jumbo_max_pending = 0;
12149
12150 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012151
12152 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000012153 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080012154 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
12155 else
12156 ering->rx_jumbo_pending = 0;
12157
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012158 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012159}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012160
Linus Torvalds1da177e2005-04-16 15:20:36 -070012161static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
12162{
12163 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000012164 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012165
Matt Carlson2c49a442010-09-30 10:34:35 +000012166 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
12167 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070012168 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
12169 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000012170 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070012171 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012172 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012173
Michael Chanbbe832c2005-06-24 20:20:04 -070012174 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012175 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012176 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012177 irq_sync = 1;
12178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012179
Michael Chanbbe832c2005-06-24 20:20:04 -070012180 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012181
Linus Torvalds1da177e2005-04-16 15:20:36 -070012182 tp->rx_pending = ering->rx_pending;
12183
Joe Perches63c3a662011-04-26 08:12:10 +000012184 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012185 tp->rx_pending > 63)
12186 tp->rx_pending = 63;
12187 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000012188
Matt Carlson6fd45cb2010-09-15 08:59:57 +000012189 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000012190 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012191
12192 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070012193 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012194 err = tg3_restart_hw(tp, false);
Michael Chanb9ec6c12006-07-25 16:37:27 -070012195 if (!err)
12196 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012197 }
12198
David S. Millerf47c11e2005-06-24 20:18:35 -070012199 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012200
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012201 if (irq_sync && !err)
12202 tg3_phy_start(tp);
12203
Michael Chanb9ec6c12006-07-25 16:37:27 -070012204 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012205}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012206
Linus Torvalds1da177e2005-04-16 15:20:36 -070012207static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12208{
12209 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012210
Joe Perches63c3a662011-04-26 08:12:10 +000012211 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080012212
Matt Carlson4a2db502011-12-08 14:40:17 +000012213 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080012214 epause->rx_pause = 1;
12215 else
12216 epause->rx_pause = 0;
12217
Matt Carlson4a2db502011-12-08 14:40:17 +000012218 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080012219 epause->tx_pause = 1;
12220 else
12221 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012222}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012223
Linus Torvalds1da177e2005-04-16 15:20:36 -070012224static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12225{
12226 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012227 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012228
Nithin Sujirce20f162013-04-09 08:48:04 +000012229 if (tp->link_config.autoneg == AUTONEG_ENABLE)
12230 tg3_warn_mgmt_link_flap(tp);
12231
Joe Perches63c3a662011-04-26 08:12:10 +000012232 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000012233 u32 newadv;
12234 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012235
Matt Carlson27121682010-02-17 15:16:57 +000012236 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012237
Matt Carlson27121682010-02-17 15:16:57 +000012238 if (!(phydev->supported & SUPPORTED_Pause) ||
12239 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000012240 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000012241 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012242
Matt Carlson27121682010-02-17 15:16:57 +000012243 tp->link_config.flowctrl = 0;
12244 if (epause->rx_pause) {
12245 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012246
Matt Carlson27121682010-02-17 15:16:57 +000012247 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080012248 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000012249 newadv = ADVERTISED_Pause;
12250 } else
12251 newadv = ADVERTISED_Pause |
12252 ADVERTISED_Asym_Pause;
12253 } else if (epause->tx_pause) {
12254 tp->link_config.flowctrl |= FLOW_CTRL_TX;
12255 newadv = ADVERTISED_Asym_Pause;
12256 } else
12257 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012258
Matt Carlson27121682010-02-17 15:16:57 +000012259 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012260 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012261 else
Joe Perches63c3a662011-04-26 08:12:10 +000012262 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012263
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012264 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000012265 u32 oldadv = phydev->advertising &
12266 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
12267 if (oldadv != newadv) {
12268 phydev->advertising &=
12269 ~(ADVERTISED_Pause |
12270 ADVERTISED_Asym_Pause);
12271 phydev->advertising |= newadv;
12272 if (phydev->autoneg) {
12273 /*
12274 * Always renegotiate the link to
12275 * inform our link partner of our
12276 * flow control settings, even if the
12277 * flow control is forced. Let
12278 * tg3_adjust_link() do the final
12279 * flow control setup.
12280 */
12281 return phy_start_aneg(phydev);
12282 }
12283 }
12284
12285 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012286 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000012287 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012288 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000012289 ~(ADVERTISED_Pause |
12290 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012291 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012292 }
12293 } else {
12294 int irq_sync = 0;
12295
12296 if (netif_running(dev)) {
12297 tg3_netif_stop(tp);
12298 irq_sync = 1;
12299 }
12300
12301 tg3_full_lock(tp, irq_sync);
12302
12303 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012304 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012305 else
Joe Perches63c3a662011-04-26 08:12:10 +000012306 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012307 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012308 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012309 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012310 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012311 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012312 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012313 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012314 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012315
12316 if (netif_running(dev)) {
12317 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012318 err = tg3_restart_hw(tp, false);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012319 if (!err)
12320 tg3_netif_start(tp);
12321 }
12322
12323 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012325
Nithin Sujirfdad8de2013-04-09 08:48:08 +000012326 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
12327
Michael Chanb9ec6c12006-07-25 16:37:27 -070012328 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012329}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012330
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012331static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012332{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012333 switch (sset) {
12334 case ETH_SS_TEST:
12335 return TG3_NUM_TEST;
12336 case ETH_SS_STATS:
12337 return TG3_NUM_STATS;
12338 default:
12339 return -EOPNOTSUPP;
12340 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070012341}
12342
Matt Carlson90415472011-12-16 13:33:23 +000012343static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
12344 u32 *rules __always_unused)
12345{
12346 struct tg3 *tp = netdev_priv(dev);
12347
12348 if (!tg3_flag(tp, SUPPORT_MSIX))
12349 return -EOPNOTSUPP;
12350
12351 switch (info->cmd) {
12352 case ETHTOOL_GRXRINGS:
12353 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000012354 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000012355 else {
12356 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000012357 if (info->data > TG3_RSS_MAX_NUM_QS)
12358 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000012359 }
12360
12361 /* The first interrupt vector only
12362 * handles link interrupts.
12363 */
12364 info->data -= 1;
12365 return 0;
12366
12367 default:
12368 return -EOPNOTSUPP;
12369 }
12370}
12371
12372static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
12373{
12374 u32 size = 0;
12375 struct tg3 *tp = netdev_priv(dev);
12376
12377 if (tg3_flag(tp, SUPPORT_MSIX))
12378 size = TG3_RSS_INDIR_TBL_SIZE;
12379
12380 return size;
12381}
12382
12383static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
12384{
12385 struct tg3 *tp = netdev_priv(dev);
12386 int i;
12387
12388 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12389 indir[i] = tp->rss_ind_tbl[i];
12390
12391 return 0;
12392}
12393
12394static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
12395{
12396 struct tg3 *tp = netdev_priv(dev);
12397 size_t i;
12398
12399 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12400 tp->rss_ind_tbl[i] = indir[i];
12401
12402 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
12403 return 0;
12404
12405 /* It is legal to write the indirection
12406 * table while the device is running.
12407 */
12408 tg3_full_lock(tp, 0);
12409 tg3_rss_write_indir_tbl(tp);
12410 tg3_full_unlock(tp);
12411
12412 return 0;
12413}
12414
Michael Chan09681692012-09-28 07:12:42 +000012415static void tg3_get_channels(struct net_device *dev,
12416 struct ethtool_channels *channel)
12417{
12418 struct tg3 *tp = netdev_priv(dev);
12419 u32 deflt_qs = netif_get_num_default_rss_queues();
12420
12421 channel->max_rx = tp->rxq_max;
12422 channel->max_tx = tp->txq_max;
12423
12424 if (netif_running(dev)) {
12425 channel->rx_count = tp->rxq_cnt;
12426 channel->tx_count = tp->txq_cnt;
12427 } else {
12428 if (tp->rxq_req)
12429 channel->rx_count = tp->rxq_req;
12430 else
12431 channel->rx_count = min(deflt_qs, tp->rxq_max);
12432
12433 if (tp->txq_req)
12434 channel->tx_count = tp->txq_req;
12435 else
12436 channel->tx_count = min(deflt_qs, tp->txq_max);
12437 }
12438}
12439
12440static int tg3_set_channels(struct net_device *dev,
12441 struct ethtool_channels *channel)
12442{
12443 struct tg3 *tp = netdev_priv(dev);
12444
12445 if (!tg3_flag(tp, SUPPORT_MSIX))
12446 return -EOPNOTSUPP;
12447
12448 if (channel->rx_count > tp->rxq_max ||
12449 channel->tx_count > tp->txq_max)
12450 return -EINVAL;
12451
12452 tp->rxq_req = channel->rx_count;
12453 tp->txq_req = channel->tx_count;
12454
12455 if (!netif_running(dev))
12456 return 0;
12457
12458 tg3_stop(tp);
12459
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012460 tg3_carrier_off(tp);
Michael Chan09681692012-09-28 07:12:42 +000012461
Matt Carlsonbe947302012-12-03 19:36:57 +000012462 tg3_start(tp, true, false, false);
Michael Chan09681692012-09-28 07:12:42 +000012463
12464 return 0;
12465}
12466
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012467static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012468{
12469 switch (stringset) {
12470 case ETH_SS_STATS:
12471 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
12472 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070012473 case ETH_SS_TEST:
12474 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
12475 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012476 default:
12477 WARN_ON(1); /* we need a WARN() */
12478 break;
12479 }
12480}
12481
stephen hemminger81b87092011-04-04 08:43:50 +000012482static int tg3_set_phys_id(struct net_device *dev,
12483 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070012484{
12485 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070012486
12487 if (!netif_running(tp->dev))
12488 return -EAGAIN;
12489
stephen hemminger81b87092011-04-04 08:43:50 +000012490 switch (state) {
12491 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000012492 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070012493
stephen hemminger81b87092011-04-04 08:43:50 +000012494 case ETHTOOL_ID_ON:
12495 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12496 LED_CTRL_1000MBPS_ON |
12497 LED_CTRL_100MBPS_ON |
12498 LED_CTRL_10MBPS_ON |
12499 LED_CTRL_TRAFFIC_OVERRIDE |
12500 LED_CTRL_TRAFFIC_BLINK |
12501 LED_CTRL_TRAFFIC_LED);
12502 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012503
stephen hemminger81b87092011-04-04 08:43:50 +000012504 case ETHTOOL_ID_OFF:
12505 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12506 LED_CTRL_TRAFFIC_OVERRIDE);
12507 break;
Michael Chan4009a932005-09-05 17:52:54 -070012508
stephen hemminger81b87092011-04-04 08:43:50 +000012509 case ETHTOOL_ID_INACTIVE:
12510 tw32(MAC_LED_CTRL, tp->led_ctrl);
12511 break;
Michael Chan4009a932005-09-05 17:52:54 -070012512 }
stephen hemminger81b87092011-04-04 08:43:50 +000012513
Michael Chan4009a932005-09-05 17:52:54 -070012514 return 0;
12515}
12516
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012517static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012518 struct ethtool_stats *estats, u64 *tmp_stats)
12519{
12520 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000012521
Matt Carlsonb546e462012-02-13 15:20:09 +000012522 if (tp->hw_stats)
12523 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
12524 else
12525 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012526}
12527
Matt Carlson535a4902011-07-20 10:20:56 +000012528static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000012529{
12530 int i;
12531 __be32 *buf;
12532 u32 offset = 0, len = 0;
12533 u32 magic, val;
12534
Joe Perches63c3a662011-04-26 08:12:10 +000012535 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000012536 return NULL;
12537
12538 if (magic == TG3_EEPROM_MAGIC) {
12539 for (offset = TG3_NVM_DIR_START;
12540 offset < TG3_NVM_DIR_END;
12541 offset += TG3_NVM_DIRENT_SIZE) {
12542 if (tg3_nvram_read(tp, offset, &val))
12543 return NULL;
12544
12545 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
12546 TG3_NVM_DIRTYPE_EXTVPD)
12547 break;
12548 }
12549
12550 if (offset != TG3_NVM_DIR_END) {
12551 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
12552 if (tg3_nvram_read(tp, offset + 4, &offset))
12553 return NULL;
12554
12555 offset = tg3_nvram_logical_addr(tp, offset);
12556 }
12557 }
12558
12559 if (!offset || !len) {
12560 offset = TG3_NVM_VPD_OFF;
12561 len = TG3_NVM_VPD_LEN;
12562 }
12563
12564 buf = kmalloc(len, GFP_KERNEL);
12565 if (buf == NULL)
12566 return NULL;
12567
12568 if (magic == TG3_EEPROM_MAGIC) {
12569 for (i = 0; i < len; i += 4) {
12570 /* The data is in little-endian format in NVRAM.
12571 * Use the big-endian read routines to preserve
12572 * the byte order as it exists in NVRAM.
12573 */
12574 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
12575 goto error;
12576 }
12577 } else {
12578 u8 *ptr;
12579 ssize_t cnt;
12580 unsigned int pos = 0;
12581
12582 ptr = (u8 *)&buf[0];
12583 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
12584 cnt = pci_read_vpd(tp->pdev, pos,
12585 len - pos, ptr);
12586 if (cnt == -ETIMEDOUT || cnt == -EINTR)
12587 cnt = 0;
12588 else if (cnt < 0)
12589 goto error;
12590 }
12591 if (pos != len)
12592 goto error;
12593 }
12594
Matt Carlson535a4902011-07-20 10:20:56 +000012595 *vpdlen = len;
12596
Matt Carlsonc3e94502011-04-13 11:05:08 +000012597 return buf;
12598
12599error:
12600 kfree(buf);
12601 return NULL;
12602}
12603
Michael Chan566f86a2005-05-29 14:56:58 -070012604#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080012605#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
12606#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
12607#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000012608#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
12609#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000012610#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070012611#define NVRAM_SELFBOOT_HW_SIZE 0x20
12612#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070012613
12614static int tg3_test_nvram(struct tg3 *tp)
12615{
Matt Carlson535a4902011-07-20 10:20:56 +000012616 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012617 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012618 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070012619
Joe Perches63c3a662011-04-26 08:12:10 +000012620 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000012621 return 0;
12622
Matt Carlsone4f34112009-02-25 14:25:00 +000012623 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012624 return -EIO;
12625
Michael Chan1b277772006-03-20 22:27:48 -080012626 if (magic == TG3_EEPROM_MAGIC)
12627 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070012628 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080012629 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
12630 TG3_EEPROM_SB_FORMAT_1) {
12631 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
12632 case TG3_EEPROM_SB_REVISION_0:
12633 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
12634 break;
12635 case TG3_EEPROM_SB_REVISION_2:
12636 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
12637 break;
12638 case TG3_EEPROM_SB_REVISION_3:
12639 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
12640 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000012641 case TG3_EEPROM_SB_REVISION_4:
12642 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
12643 break;
12644 case TG3_EEPROM_SB_REVISION_5:
12645 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
12646 break;
12647 case TG3_EEPROM_SB_REVISION_6:
12648 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
12649 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080012650 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000012651 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080012652 }
12653 } else
Michael Chan1b277772006-03-20 22:27:48 -080012654 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070012655 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12656 size = NVRAM_SELFBOOT_HW_SIZE;
12657 else
Michael Chan1b277772006-03-20 22:27:48 -080012658 return -EIO;
12659
12660 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070012661 if (buf == NULL)
12662 return -ENOMEM;
12663
Michael Chan1b277772006-03-20 22:27:48 -080012664 err = -EIO;
12665 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012666 err = tg3_nvram_read_be32(tp, i, &buf[j]);
12667 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070012668 break;
Michael Chan566f86a2005-05-29 14:56:58 -070012669 }
Michael Chan1b277772006-03-20 22:27:48 -080012670 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070012671 goto out;
12672
Michael Chan1b277772006-03-20 22:27:48 -080012673 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000012674 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080012675 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012676 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080012677 u8 *buf8 = (u8 *) buf, csum8 = 0;
12678
Al Virob9fc7dc2007-12-17 22:59:57 -080012679 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080012680 TG3_EEPROM_SB_REVISION_2) {
12681 /* For rev 2, the csum doesn't include the MBA. */
12682 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
12683 csum8 += buf8[i];
12684 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
12685 csum8 += buf8[i];
12686 } else {
12687 for (i = 0; i < size; i++)
12688 csum8 += buf8[i];
12689 }
Michael Chan1b277772006-03-20 22:27:48 -080012690
Adrian Bunkad96b482006-04-05 22:21:04 -070012691 if (csum8 == 0) {
12692 err = 0;
12693 goto out;
12694 }
12695
12696 err = -EIO;
12697 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080012698 }
Michael Chan566f86a2005-05-29 14:56:58 -070012699
Al Virob9fc7dc2007-12-17 22:59:57 -080012700 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012701 TG3_EEPROM_MAGIC_HW) {
12702 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000012703 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070012704 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070012705
12706 /* Separate the parity bits and the data bytes. */
12707 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
12708 if ((i == 0) || (i == 8)) {
12709 int l;
12710 u8 msk;
12711
12712 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
12713 parity[k++] = buf8[i] & msk;
12714 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000012715 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070012716 int l;
12717 u8 msk;
12718
12719 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
12720 parity[k++] = buf8[i] & msk;
12721 i++;
12722
12723 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
12724 parity[k++] = buf8[i] & msk;
12725 i++;
12726 }
12727 data[j++] = buf8[i];
12728 }
12729
12730 err = -EIO;
12731 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
12732 u8 hw8 = hweight8(data[i]);
12733
12734 if ((hw8 & 0x1) && parity[i])
12735 goto out;
12736 else if (!(hw8 & 0x1) && !parity[i])
12737 goto out;
12738 }
12739 err = 0;
12740 goto out;
12741 }
12742
Matt Carlson01c3a392011-03-09 16:58:20 +000012743 err = -EIO;
12744
Michael Chan566f86a2005-05-29 14:56:58 -070012745 /* Bootstrap checksum at offset 0x10 */
12746 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000012747 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070012748 goto out;
12749
12750 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
12751 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000012752 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000012753 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070012754
Matt Carlsonc3e94502011-04-13 11:05:08 +000012755 kfree(buf);
12756
Matt Carlson535a4902011-07-20 10:20:56 +000012757 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000012758 if (!buf)
12759 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000012760
Matt Carlson535a4902011-07-20 10:20:56 +000012761 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000012762 if (i > 0) {
12763 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
12764 if (j < 0)
12765 goto out;
12766
Matt Carlson535a4902011-07-20 10:20:56 +000012767 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000012768 goto out;
12769
12770 i += PCI_VPD_LRDT_TAG_SIZE;
12771 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
12772 PCI_VPD_RO_KEYWORD_CHKSUM);
12773 if (j > 0) {
12774 u8 csum8 = 0;
12775
12776 j += PCI_VPD_INFO_FLD_HDR_SIZE;
12777
12778 for (i = 0; i <= j; i++)
12779 csum8 += ((u8 *)buf)[i];
12780
12781 if (csum8)
12782 goto out;
12783 }
12784 }
12785
Michael Chan566f86a2005-05-29 14:56:58 -070012786 err = 0;
12787
12788out:
12789 kfree(buf);
12790 return err;
12791}
12792
Michael Chanca430072005-05-29 14:57:23 -070012793#define TG3_SERDES_TIMEOUT_SEC 2
12794#define TG3_COPPER_TIMEOUT_SEC 6
12795
12796static int tg3_test_link(struct tg3 *tp)
12797{
12798 int i, max;
12799
12800 if (!netif_running(tp->dev))
12801 return -ENODEV;
12802
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012803 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070012804 max = TG3_SERDES_TIMEOUT_SEC;
12805 else
12806 max = TG3_COPPER_TIMEOUT_SEC;
12807
12808 for (i = 0; i < max; i++) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012809 if (tp->link_up)
Michael Chanca430072005-05-29 14:57:23 -070012810 return 0;
12811
12812 if (msleep_interruptible(1000))
12813 break;
12814 }
12815
12816 return -EIO;
12817}
12818
Michael Chana71116d2005-05-29 14:58:11 -070012819/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080012820static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070012821{
Michael Chanb16250e2006-09-27 16:10:14 -070012822 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070012823 u32 offset, read_mask, write_mask, val, save_val, read_val;
12824 static struct {
12825 u16 offset;
12826 u16 flags;
12827#define TG3_FL_5705 0x1
12828#define TG3_FL_NOT_5705 0x2
12829#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070012830#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070012831 u32 read_mask;
12832 u32 write_mask;
12833 } reg_tbl[] = {
12834 /* MAC Control Registers */
12835 { MAC_MODE, TG3_FL_NOT_5705,
12836 0x00000000, 0x00ef6f8c },
12837 { MAC_MODE, TG3_FL_5705,
12838 0x00000000, 0x01ef6b8c },
12839 { MAC_STATUS, TG3_FL_NOT_5705,
12840 0x03800107, 0x00000000 },
12841 { MAC_STATUS, TG3_FL_5705,
12842 0x03800100, 0x00000000 },
12843 { MAC_ADDR_0_HIGH, 0x0000,
12844 0x00000000, 0x0000ffff },
12845 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012846 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070012847 { MAC_RX_MTU_SIZE, 0x0000,
12848 0x00000000, 0x0000ffff },
12849 { MAC_TX_MODE, 0x0000,
12850 0x00000000, 0x00000070 },
12851 { MAC_TX_LENGTHS, 0x0000,
12852 0x00000000, 0x00003fff },
12853 { MAC_RX_MODE, TG3_FL_NOT_5705,
12854 0x00000000, 0x000007fc },
12855 { MAC_RX_MODE, TG3_FL_5705,
12856 0x00000000, 0x000007dc },
12857 { MAC_HASH_REG_0, 0x0000,
12858 0x00000000, 0xffffffff },
12859 { MAC_HASH_REG_1, 0x0000,
12860 0x00000000, 0xffffffff },
12861 { MAC_HASH_REG_2, 0x0000,
12862 0x00000000, 0xffffffff },
12863 { MAC_HASH_REG_3, 0x0000,
12864 0x00000000, 0xffffffff },
12865
12866 /* Receive Data and Receive BD Initiator Control Registers. */
12867 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
12868 0x00000000, 0xffffffff },
12869 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
12870 0x00000000, 0xffffffff },
12871 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
12872 0x00000000, 0x00000003 },
12873 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
12874 0x00000000, 0xffffffff },
12875 { RCVDBDI_STD_BD+0, 0x0000,
12876 0x00000000, 0xffffffff },
12877 { RCVDBDI_STD_BD+4, 0x0000,
12878 0x00000000, 0xffffffff },
12879 { RCVDBDI_STD_BD+8, 0x0000,
12880 0x00000000, 0xffff0002 },
12881 { RCVDBDI_STD_BD+0xc, 0x0000,
12882 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012883
Michael Chana71116d2005-05-29 14:58:11 -070012884 /* Receive BD Initiator Control Registers. */
12885 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
12886 0x00000000, 0xffffffff },
12887 { RCVBDI_STD_THRESH, TG3_FL_5705,
12888 0x00000000, 0x000003ff },
12889 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
12890 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012891
Michael Chana71116d2005-05-29 14:58:11 -070012892 /* Host Coalescing Control Registers. */
12893 { HOSTCC_MODE, TG3_FL_NOT_5705,
12894 0x00000000, 0x00000004 },
12895 { HOSTCC_MODE, TG3_FL_5705,
12896 0x00000000, 0x000000f6 },
12897 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
12898 0x00000000, 0xffffffff },
12899 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
12900 0x00000000, 0x000003ff },
12901 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
12902 0x00000000, 0xffffffff },
12903 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
12904 0x00000000, 0x000003ff },
12905 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
12906 0x00000000, 0xffffffff },
12907 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12908 0x00000000, 0x000000ff },
12909 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
12910 0x00000000, 0xffffffff },
12911 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12912 0x00000000, 0x000000ff },
12913 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
12914 0x00000000, 0xffffffff },
12915 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
12916 0x00000000, 0xffffffff },
12917 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12918 0x00000000, 0xffffffff },
12919 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12920 0x00000000, 0x000000ff },
12921 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12922 0x00000000, 0xffffffff },
12923 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12924 0x00000000, 0x000000ff },
12925 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
12926 0x00000000, 0xffffffff },
12927 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
12928 0x00000000, 0xffffffff },
12929 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
12930 0x00000000, 0xffffffff },
12931 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
12932 0x00000000, 0xffffffff },
12933 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
12934 0x00000000, 0xffffffff },
12935 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
12936 0xffffffff, 0x00000000 },
12937 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
12938 0xffffffff, 0x00000000 },
12939
12940 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070012941 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012942 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070012943 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012944 0x00000000, 0x007fffff },
12945 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
12946 0x00000000, 0x0000003f },
12947 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
12948 0x00000000, 0x000001ff },
12949 { BUFMGR_MB_HIGH_WATER, 0x0000,
12950 0x00000000, 0x000001ff },
12951 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
12952 0xffffffff, 0x00000000 },
12953 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
12954 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012955
Michael Chana71116d2005-05-29 14:58:11 -070012956 /* Mailbox Registers */
12957 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
12958 0x00000000, 0x000001ff },
12959 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
12960 0x00000000, 0x000001ff },
12961 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
12962 0x00000000, 0x000007ff },
12963 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
12964 0x00000000, 0x000001ff },
12965
12966 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
12967 };
12968
Michael Chanb16250e2006-09-27 16:10:14 -070012969 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012970 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070012971 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000012972 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070012973 is_5750 = 1;
12974 }
Michael Chana71116d2005-05-29 14:58:11 -070012975
12976 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
12977 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
12978 continue;
12979
12980 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
12981 continue;
12982
Joe Perches63c3a662011-04-26 08:12:10 +000012983 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070012984 (reg_tbl[i].flags & TG3_FL_NOT_5788))
12985 continue;
12986
Michael Chanb16250e2006-09-27 16:10:14 -070012987 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
12988 continue;
12989
Michael Chana71116d2005-05-29 14:58:11 -070012990 offset = (u32) reg_tbl[i].offset;
12991 read_mask = reg_tbl[i].read_mask;
12992 write_mask = reg_tbl[i].write_mask;
12993
12994 /* Save the original register content */
12995 save_val = tr32(offset);
12996
12997 /* Determine the read-only value. */
12998 read_val = save_val & read_mask;
12999
13000 /* Write zero to the register, then make sure the read-only bits
13001 * are not changed and the read/write bits are all zeros.
13002 */
13003 tw32(offset, 0);
13004
13005 val = tr32(offset);
13006
13007 /* Test the read-only and read/write bits. */
13008 if (((val & read_mask) != read_val) || (val & write_mask))
13009 goto out;
13010
13011 /* Write ones to all the bits defined by RdMask and WrMask, then
13012 * make sure the read-only bits are not changed and the
13013 * read/write bits are all ones.
13014 */
13015 tw32(offset, read_mask | write_mask);
13016
13017 val = tr32(offset);
13018
13019 /* Test the read-only bits. */
13020 if ((val & read_mask) != read_val)
13021 goto out;
13022
13023 /* Test the read/write bits. */
13024 if ((val & write_mask) != write_mask)
13025 goto out;
13026
13027 tw32(offset, save_val);
13028 }
13029
13030 return 0;
13031
13032out:
Michael Chan9f88f292006-12-07 00:22:54 -080013033 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000013034 netdev_err(tp->dev,
13035 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070013036 tw32(offset, save_val);
13037 return -EIO;
13038}
13039
Michael Chan7942e1d2005-05-29 14:58:36 -070013040static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
13041{
Arjan van de Venf71e1302006-03-03 21:33:57 -050013042 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070013043 int i;
13044 u32 j;
13045
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020013046 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070013047 for (j = 0; j < len; j += 4) {
13048 u32 val;
13049
13050 tg3_write_mem(tp, offset + j, test_pattern[i]);
13051 tg3_read_mem(tp, offset + j, &val);
13052 if (val != test_pattern[i])
13053 return -EIO;
13054 }
13055 }
13056 return 0;
13057}
13058
13059static int tg3_test_memory(struct tg3 *tp)
13060{
13061 static struct mem_entry {
13062 u32 offset;
13063 u32 len;
13064 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080013065 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070013066 { 0x00002000, 0x1c000},
13067 { 0xffffffff, 0x00000}
13068 }, mem_tbl_5705[] = {
13069 { 0x00000100, 0x0000c},
13070 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070013071 { 0x00004000, 0x00800},
13072 { 0x00006000, 0x01000},
13073 { 0x00008000, 0x02000},
13074 { 0x00010000, 0x0e000},
13075 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080013076 }, mem_tbl_5755[] = {
13077 { 0x00000200, 0x00008},
13078 { 0x00004000, 0x00800},
13079 { 0x00006000, 0x00800},
13080 { 0x00008000, 0x02000},
13081 { 0x00010000, 0x0c000},
13082 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070013083 }, mem_tbl_5906[] = {
13084 { 0x00000200, 0x00008},
13085 { 0x00004000, 0x00400},
13086 { 0x00006000, 0x00400},
13087 { 0x00008000, 0x01000},
13088 { 0x00010000, 0x01000},
13089 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000013090 }, mem_tbl_5717[] = {
13091 { 0x00000200, 0x00008},
13092 { 0x00010000, 0x0a000},
13093 { 0x00020000, 0x13c00},
13094 { 0xffffffff, 0x00000}
13095 }, mem_tbl_57765[] = {
13096 { 0x00000200, 0x00008},
13097 { 0x00004000, 0x00800},
13098 { 0x00006000, 0x09800},
13099 { 0x00010000, 0x0a000},
13100 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070013101 };
13102 struct mem_entry *mem_tbl;
13103 int err = 0;
13104 int i;
13105
Joe Perches63c3a662011-04-26 08:12:10 +000013106 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000013107 mem_tbl = mem_tbl_5717;
Michael Chanc65a17f2013-01-06 12:51:07 +000013108 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000013109 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson8b5a6c42010-01-20 16:58:06 +000013110 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000013111 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013112 mem_tbl = mem_tbl_5755;
Joe Perches41535772013-02-16 11:20:04 +000013113 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlson321d32a2008-11-21 17:22:19 -080013114 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000013115 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013116 mem_tbl = mem_tbl_5705;
13117 else
Michael Chan7942e1d2005-05-29 14:58:36 -070013118 mem_tbl = mem_tbl_570x;
13119
13120 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000013121 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
13122 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070013123 break;
13124 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013125
Michael Chan7942e1d2005-05-29 14:58:36 -070013126 return err;
13127}
13128
Matt Carlsonbb158d62011-04-25 12:42:47 +000013129#define TG3_TSO_MSS 500
13130
13131#define TG3_TSO_IP_HDR_LEN 20
13132#define TG3_TSO_TCP_HDR_LEN 20
13133#define TG3_TSO_TCP_OPT_LEN 12
13134
13135static const u8 tg3_tso_header[] = {
131360x08, 0x00,
131370x45, 0x00, 0x00, 0x00,
131380x00, 0x00, 0x40, 0x00,
131390x40, 0x06, 0x00, 0x00,
131400x0a, 0x00, 0x00, 0x01,
131410x0a, 0x00, 0x00, 0x02,
131420x0d, 0x00, 0xe0, 0x00,
131430x00, 0x00, 0x01, 0x00,
131440x00, 0x00, 0x02, 0x00,
131450x80, 0x10, 0x10, 0x00,
131460x14, 0x09, 0x00, 0x00,
131470x01, 0x01, 0x08, 0x0a,
131480x11, 0x11, 0x11, 0x11,
131490x11, 0x11, 0x11, 0x11,
13150};
Michael Chan9f40dea2005-09-05 17:53:06 -070013151
Matt Carlson28a45952011-08-19 13:58:22 +000013152static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070013153{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013154 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013155 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000013156 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000013157 struct sk_buff *skb;
13158 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070013159 dma_addr_t map;
13160 int num_pkts, tx_len, rx_len, i, err;
13161 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000013162 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000013163 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070013164
Matt Carlsonc8873402010-02-12 14:47:11 +000013165 tnapi = &tp->napi[0];
13166 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000013167 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000013168 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000013169 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000013170 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000013171 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000013172 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013173 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000013174
Michael Chanc76949a2005-05-29 14:58:59 -070013175 err = -EIO;
13176
Matt Carlson4852a862011-04-13 11:05:07 +000013177 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070013178 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070013179 if (!skb)
13180 return -ENOMEM;
13181
Michael Chanc76949a2005-05-29 14:58:59 -070013182 tx_data = skb_put(skb, tx_len);
13183 memcpy(tx_data, tp->dev->dev_addr, 6);
13184 memset(tx_data + 6, 0x0, 8);
13185
Matt Carlson4852a862011-04-13 11:05:07 +000013186 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070013187
Matt Carlson28a45952011-08-19 13:58:22 +000013188 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013189 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
13190
13191 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
13192 TG3_TSO_TCP_OPT_LEN;
13193
13194 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
13195 sizeof(tg3_tso_header));
13196 mss = TG3_TSO_MSS;
13197
13198 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
13199 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
13200
13201 /* Set the total length field in the IP header */
13202 iph->tot_len = htons((u16)(mss + hdr_len));
13203
13204 base_flags = (TXD_FLAG_CPU_PRE_DMA |
13205 TXD_FLAG_CPU_POST_DMA);
13206
Joe Perches63c3a662011-04-26 08:12:10 +000013207 if (tg3_flag(tp, HW_TSO_1) ||
13208 tg3_flag(tp, HW_TSO_2) ||
13209 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013210 struct tcphdr *th;
13211 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
13212 th = (struct tcphdr *)&tx_data[val];
13213 th->check = 0;
13214 } else
13215 base_flags |= TXD_FLAG_TCPUDP_CSUM;
13216
Joe Perches63c3a662011-04-26 08:12:10 +000013217 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013218 mss |= (hdr_len & 0xc) << 12;
13219 if (hdr_len & 0x10)
13220 base_flags |= 0x00000010;
13221 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000013222 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013223 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000013224 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +000013225 tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013226 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
13227 } else {
13228 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
13229 }
13230
13231 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
13232 } else {
13233 num_pkts = 1;
13234 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000013235
13236 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
13237 tx_len > VLAN_ETH_FRAME_LEN)
13238 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013239 }
13240
13241 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070013242 tx_data[i] = (u8) (i & 0xff);
13243
Alexander Duyckf4188d82009-12-02 16:48:38 +000013244 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
13245 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000013246 dev_kfree_skb(skb);
13247 return -EIO;
13248 }
Michael Chanc76949a2005-05-29 14:58:59 -070013249
Matt Carlson0d681b22011-07-27 14:20:49 +000013250 val = tnapi->tx_prod;
13251 tnapi->tx_buffers[val].skb = skb;
13252 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
13253
Michael Chanc76949a2005-05-29 14:58:59 -070013254 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013255 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013256
13257 udelay(10);
13258
Matt Carlson898a56f2009-08-28 14:02:40 +000013259 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070013260
Matt Carlson84b67b22011-07-27 14:20:52 +000013261 budget = tg3_tx_avail(tnapi);
13262 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000013263 base_flags | TXD_FLAG_END, mss, 0)) {
13264 tnapi->tx_buffers[val].skb = NULL;
13265 dev_kfree_skb(skb);
13266 return -EIO;
13267 }
Michael Chanc76949a2005-05-29 14:58:59 -070013268
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013269 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070013270
Michael Chan6541b802012-03-04 14:48:14 +000013271 /* Sync BD data before updating mailbox */
13272 wmb();
13273
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013274 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
13275 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070013276
13277 udelay(10);
13278
Matt Carlson303fc922009-11-02 14:27:34 +000013279 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
13280 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070013281 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013282 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013283
13284 udelay(10);
13285
Matt Carlson898a56f2009-08-28 14:02:40 +000013286 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
13287 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013288 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070013289 (rx_idx == (rx_start_idx + num_pkts)))
13290 break;
13291 }
13292
Matt Carlsonba1142e2011-11-04 09:15:00 +000013293 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070013294 dev_kfree_skb(skb);
13295
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013296 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070013297 goto out;
13298
13299 if (rx_idx != rx_start_idx + num_pkts)
13300 goto out;
13301
Matt Carlsonbb158d62011-04-25 12:42:47 +000013302 val = data_off;
13303 while (rx_idx != rx_start_idx) {
13304 desc = &rnapi->rx_rcb[rx_start_idx++];
13305 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
13306 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070013307
Matt Carlsonbb158d62011-04-25 12:42:47 +000013308 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
13309 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000013310 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070013311
Matt Carlsonbb158d62011-04-25 12:42:47 +000013312 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
13313 - ETH_FCS_LEN;
13314
Matt Carlson28a45952011-08-19 13:58:22 +000013315 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013316 if (rx_len != tx_len)
13317 goto out;
13318
13319 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
13320 if (opaque_key != RXD_OPAQUE_RING_STD)
13321 goto out;
13322 } else {
13323 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
13324 goto out;
13325 }
13326 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
13327 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000013328 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013329 goto out;
13330 }
13331
13332 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013333 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013334 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
13335 mapping);
13336 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013337 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013338 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
13339 mapping);
13340 } else
Matt Carlson4852a862011-04-13 11:05:07 +000013341 goto out;
13342
Matt Carlsonbb158d62011-04-25 12:42:47 +000013343 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
13344 PCI_DMA_FROMDEVICE);
13345
Eric Dumazet9205fd92011-11-18 06:47:01 +000013346 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000013347 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013348 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013349 goto out;
13350 }
Matt Carlson4852a862011-04-13 11:05:07 +000013351 }
13352
Michael Chanc76949a2005-05-29 14:58:59 -070013353 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013354
Eric Dumazet9205fd92011-11-18 06:47:01 +000013355 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070013356out:
13357 return err;
13358}
13359
Matt Carlson00c266b2011-04-25 12:42:46 +000013360#define TG3_STD_LOOPBACK_FAILED 1
13361#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000013362#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000013363#define TG3_LOOPBACK_FAILED \
13364 (TG3_STD_LOOPBACK_FAILED | \
13365 TG3_JMB_LOOPBACK_FAILED | \
13366 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000013367
Matt Carlson941ec902011-08-19 13:58:23 +000013368static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070013369{
Matt Carlson28a45952011-08-19 13:58:22 +000013370 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000013371 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000013372 u32 jmb_pkt_sz = 9000;
13373
13374 if (tp->dma_limit)
13375 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070013376
Matt Carlsonab789042011-01-25 15:58:54 +000013377 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
13378 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
13379
Matt Carlson28a45952011-08-19 13:58:22 +000013380 if (!netif_running(tp->dev)) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013381 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13382 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013383 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013384 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000013385 goto done;
13386 }
13387
Joe Perches953c96e2013-04-09 10:18:14 +000013388 err = tg3_reset_hw(tp, true);
Matt Carlsonab789042011-01-25 15:58:54 +000013389 if (err) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013390 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13391 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013392 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013393 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000013394 goto done;
13395 }
Michael Chan9f40dea2005-09-05 17:53:06 -070013396
Joe Perches63c3a662011-04-26 08:12:10 +000013397 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000013398 int i;
13399
13400 /* Reroute all rx packets to the 1st queue */
13401 for (i = MAC_RSS_INDIR_TBL_0;
13402 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
13403 tw32(i, 0x0);
13404 }
13405
Matt Carlson6e01b202011-08-19 13:58:20 +000013406 /* HW errata - mac loopback fails in some cases on 5780.
13407 * Normal traffic and PHY loopback are not affected by
13408 * errata. Also, the MAC loopback test is deprecated for
13409 * all newer ASIC revisions.
13410 */
Joe Perches41535772013-02-16 11:20:04 +000013411 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Matt Carlson6e01b202011-08-19 13:58:20 +000013412 !tg3_flag(tp, CPMU_PRESENT)) {
13413 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070013414
Matt Carlson28a45952011-08-19 13:58:22 +000013415 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013416 data[TG3_MAC_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013417
13418 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013419 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013420 data[TG3_MAC_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013421
13422 tg3_mac_loopback(tp, false);
13423 }
Matt Carlson4852a862011-04-13 11:05:07 +000013424
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013425 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013426 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013427 int i;
13428
Matt Carlson941ec902011-08-19 13:58:23 +000013429 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013430
13431 /* Wait for link */
13432 for (i = 0; i < 100; i++) {
13433 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
13434 break;
13435 mdelay(1);
13436 }
13437
Matt Carlson28a45952011-08-19 13:58:22 +000013438 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013439 data[TG3_PHY_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013440 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000013441 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013442 data[TG3_PHY_LOOPB_TEST] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013443 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013444 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013445 data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070013446
Matt Carlson941ec902011-08-19 13:58:23 +000013447 if (do_extlpbk) {
13448 tg3_phy_lpbk_set(tp, 0, true);
13449
13450 /* All link indications report up, but the hardware
13451 * isn't really ready for about 20 msec. Double it
13452 * to be sure.
13453 */
13454 mdelay(40);
13455
13456 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013457 data[TG3_EXT_LOOPB_TEST] |=
13458 TG3_STD_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013459 if (tg3_flag(tp, TSO_CAPABLE) &&
13460 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013461 data[TG3_EXT_LOOPB_TEST] |=
13462 TG3_TSO_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013463 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013464 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013465 data[TG3_EXT_LOOPB_TEST] |=
13466 TG3_JMB_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013467 }
13468
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013469 /* Re-enable gphy autopowerdown. */
13470 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
13471 tg3_phy_toggle_apd(tp, true);
13472 }
Matt Carlson6833c042008-11-21 17:18:59 -080013473
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013474 err = (data[TG3_MAC_LOOPB_TEST] | data[TG3_PHY_LOOPB_TEST] |
13475 data[TG3_EXT_LOOPB_TEST]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000013476
Matt Carlsonab789042011-01-25 15:58:54 +000013477done:
13478 tp->phy_flags |= eee_cap;
13479
Michael Chan9f40dea2005-09-05 17:53:06 -070013480 return err;
13481}
13482
Michael Chan4cafd3f2005-05-29 14:56:34 -070013483static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
13484 u64 *data)
13485{
Michael Chan566f86a2005-05-29 14:56:58 -070013486 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000013487 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070013488
Nithin Sujir2e460fc2013-05-23 11:11:22 +000013489 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
13490 if (tg3_power_up(tp)) {
13491 etest->flags |= ETH_TEST_FL_FAILED;
13492 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
13493 return;
13494 }
13495 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
Matt Carlsonbed98292011-07-13 09:27:29 +000013496 }
Michael Chanbc1c7562006-03-20 17:48:03 -080013497
Michael Chan566f86a2005-05-29 14:56:58 -070013498 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
13499
13500 if (tg3_test_nvram(tp) != 0) {
13501 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013502 data[TG3_NVRAM_TEST] = 1;
Michael Chan566f86a2005-05-29 14:56:58 -070013503 }
Matt Carlson941ec902011-08-19 13:58:23 +000013504 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070013505 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013506 data[TG3_LINK_TEST] = 1;
Michael Chanca430072005-05-29 14:57:23 -070013507 }
Michael Chana71116d2005-05-29 14:58:11 -070013508 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013509 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070013510
Michael Chanbbe832c2005-06-24 20:20:04 -070013511 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013512 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070013513 tg3_netif_stop(tp);
13514 irq_sync = 1;
13515 }
13516
13517 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070013518 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080013519 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013520 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000013521 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070013522 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080013523 if (!err)
13524 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013525
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013526 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080013527 tg3_phy_reset(tp);
13528
Michael Chana71116d2005-05-29 14:58:11 -070013529 if (tg3_test_registers(tp) != 0) {
13530 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013531 data[TG3_REGISTER_TEST] = 1;
Michael Chana71116d2005-05-29 14:58:11 -070013532 }
Matt Carlson28a45952011-08-19 13:58:22 +000013533
Michael Chan7942e1d2005-05-29 14:58:36 -070013534 if (tg3_test_memory(tp) != 0) {
13535 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013536 data[TG3_MEMORY_TEST] = 1;
Michael Chan7942e1d2005-05-29 14:58:36 -070013537 }
Matt Carlson28a45952011-08-19 13:58:22 +000013538
Matt Carlson941ec902011-08-19 13:58:23 +000013539 if (doextlpbk)
13540 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
13541
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013542 if (tg3_test_loopback(tp, data, doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070013543 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070013544
David S. Millerf47c11e2005-06-24 20:18:35 -070013545 tg3_full_unlock(tp);
13546
Michael Chand4bc3922005-05-29 14:59:20 -070013547 if (tg3_test_interrupt(tp) != 0) {
13548 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013549 data[TG3_INTERRUPT_TEST] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070013550 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013551
13552 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070013553
Michael Chana71116d2005-05-29 14:58:11 -070013554 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13555 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013556 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000013557 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013558 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070013559 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013560 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013561
13562 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013563
13564 if (irq_sync && !err2)
13565 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013566 }
Matt Carlson80096062010-08-02 11:26:06 +000013567 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Nithin Sujir5137a2e2013-07-29 13:58:36 -070013568 tg3_power_down_prepare(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080013569
Michael Chan4cafd3f2005-05-29 14:56:34 -070013570}
13571
Matt Carlson0a633ac2012-12-03 19:36:59 +000013572static int tg3_hwtstamp_ioctl(struct net_device *dev,
13573 struct ifreq *ifr, int cmd)
13574{
13575 struct tg3 *tp = netdev_priv(dev);
13576 struct hwtstamp_config stmpconf;
13577
13578 if (!tg3_flag(tp, PTP_CAPABLE))
13579 return -EINVAL;
13580
13581 if (copy_from_user(&stmpconf, ifr->ifr_data, sizeof(stmpconf)))
13582 return -EFAULT;
13583
13584 if (stmpconf.flags)
13585 return -EINVAL;
13586
13587 switch (stmpconf.tx_type) {
13588 case HWTSTAMP_TX_ON:
13589 tg3_flag_set(tp, TX_TSTAMP_EN);
13590 break;
13591 case HWTSTAMP_TX_OFF:
13592 tg3_flag_clear(tp, TX_TSTAMP_EN);
13593 break;
13594 default:
13595 return -ERANGE;
13596 }
13597
13598 switch (stmpconf.rx_filter) {
13599 case HWTSTAMP_FILTER_NONE:
13600 tp->rxptpctl = 0;
13601 break;
13602 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
13603 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13604 TG3_RX_PTP_CTL_ALL_V1_EVENTS;
13605 break;
13606 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
13607 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13608 TG3_RX_PTP_CTL_SYNC_EVNT;
13609 break;
13610 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
13611 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13612 TG3_RX_PTP_CTL_DELAY_REQ;
13613 break;
13614 case HWTSTAMP_FILTER_PTP_V2_EVENT:
13615 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13616 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13617 break;
13618 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
13619 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13620 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13621 break;
13622 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
13623 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13624 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13625 break;
13626 case HWTSTAMP_FILTER_PTP_V2_SYNC:
13627 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13628 TG3_RX_PTP_CTL_SYNC_EVNT;
13629 break;
13630 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
13631 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13632 TG3_RX_PTP_CTL_SYNC_EVNT;
13633 break;
13634 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
13635 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13636 TG3_RX_PTP_CTL_SYNC_EVNT;
13637 break;
13638 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
13639 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13640 TG3_RX_PTP_CTL_DELAY_REQ;
13641 break;
13642 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
13643 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13644 TG3_RX_PTP_CTL_DELAY_REQ;
13645 break;
13646 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
13647 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13648 TG3_RX_PTP_CTL_DELAY_REQ;
13649 break;
13650 default:
13651 return -ERANGE;
13652 }
13653
13654 if (netif_running(dev) && tp->rxptpctl)
13655 tw32(TG3_RX_PTP_CTL,
13656 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
13657
13658 return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ?
13659 -EFAULT : 0;
13660}
13661
Linus Torvalds1da177e2005-04-16 15:20:36 -070013662static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
13663{
13664 struct mii_ioctl_data *data = if_mii(ifr);
13665 struct tg3 *tp = netdev_priv(dev);
13666 int err;
13667
Joe Perches63c3a662011-04-26 08:12:10 +000013668 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013669 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013670 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013671 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013672 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000013673 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013674 }
13675
Matt Carlson33f401a2010-04-05 10:19:27 +000013676 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013677 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000013678 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013679
13680 /* fallthru */
13681 case SIOCGMIIREG: {
13682 u32 mii_regval;
13683
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013684 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013685 break; /* We have no PHY */
13686
Matt Carlson34eea5a2011-04-20 07:57:38 +000013687 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013688 return -EAGAIN;
13689
David S. Millerf47c11e2005-06-24 20:18:35 -070013690 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013691 err = __tg3_readphy(tp, data->phy_id & 0x1f,
13692 data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070013693 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013694
13695 data->val_out = mii_regval;
13696
13697 return err;
13698 }
13699
13700 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013701 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013702 break; /* We have no PHY */
13703
Matt Carlson34eea5a2011-04-20 07:57:38 +000013704 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013705 return -EAGAIN;
13706
David S. Millerf47c11e2005-06-24 20:18:35 -070013707 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013708 err = __tg3_writephy(tp, data->phy_id & 0x1f,
13709 data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070013710 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013711
13712 return err;
13713
Matt Carlson0a633ac2012-12-03 19:36:59 +000013714 case SIOCSHWTSTAMP:
13715 return tg3_hwtstamp_ioctl(dev, ifr, cmd);
13716
Linus Torvalds1da177e2005-04-16 15:20:36 -070013717 default:
13718 /* do nothing */
13719 break;
13720 }
13721 return -EOPNOTSUPP;
13722}
13723
David S. Miller15f98502005-05-18 22:49:26 -070013724static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13725{
13726 struct tg3 *tp = netdev_priv(dev);
13727
13728 memcpy(ec, &tp->coal, sizeof(*ec));
13729 return 0;
13730}
13731
Michael Chand244c892005-07-05 14:42:33 -070013732static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13733{
13734 struct tg3 *tp = netdev_priv(dev);
13735 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
13736 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
13737
Joe Perches63c3a662011-04-26 08:12:10 +000013738 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070013739 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
13740 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
13741 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
13742 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
13743 }
13744
13745 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
13746 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
13747 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
13748 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
13749 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
13750 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
13751 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
13752 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
13753 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
13754 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
13755 return -EINVAL;
13756
13757 /* No rx interrupts will be generated if both are zero */
13758 if ((ec->rx_coalesce_usecs == 0) &&
13759 (ec->rx_max_coalesced_frames == 0))
13760 return -EINVAL;
13761
13762 /* No tx interrupts will be generated if both are zero */
13763 if ((ec->tx_coalesce_usecs == 0) &&
13764 (ec->tx_max_coalesced_frames == 0))
13765 return -EINVAL;
13766
13767 /* Only copy relevant parameters, ignore all others. */
13768 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
13769 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
13770 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
13771 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
13772 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
13773 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
13774 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
13775 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
13776 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
13777
13778 if (netif_running(dev)) {
13779 tg3_full_lock(tp, 0);
13780 __tg3_set_coalesce(tp, &tp->coal);
13781 tg3_full_unlock(tp);
13782 }
13783 return 0;
13784}
13785
Nithin Sujir1cbf9eb2013-05-18 06:26:55 +000013786static int tg3_set_eee(struct net_device *dev, struct ethtool_eee *edata)
13787{
13788 struct tg3 *tp = netdev_priv(dev);
13789
13790 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
13791 netdev_warn(tp->dev, "Board does not support EEE!\n");
13792 return -EOPNOTSUPP;
13793 }
13794
13795 if (edata->advertised != tp->eee.advertised) {
13796 netdev_warn(tp->dev,
13797 "Direct manipulation of EEE advertisement is not supported\n");
13798 return -EINVAL;
13799 }
13800
13801 if (edata->tx_lpi_timer > TG3_CPMU_DBTMR1_LNKIDLE_MAX) {
13802 netdev_warn(tp->dev,
13803 "Maximal Tx Lpi timer supported is %#x(u)\n",
13804 TG3_CPMU_DBTMR1_LNKIDLE_MAX);
13805 return -EINVAL;
13806 }
13807
13808 tp->eee = *edata;
13809
13810 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
13811 tg3_warn_mgmt_link_flap(tp);
13812
13813 if (netif_running(tp->dev)) {
13814 tg3_full_lock(tp, 0);
13815 tg3_setup_eee(tp);
13816 tg3_phy_reset(tp);
13817 tg3_full_unlock(tp);
13818 }
13819
13820 return 0;
13821}
13822
13823static int tg3_get_eee(struct net_device *dev, struct ethtool_eee *edata)
13824{
13825 struct tg3 *tp = netdev_priv(dev);
13826
13827 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
13828 netdev_warn(tp->dev,
13829 "Board does not support EEE!\n");
13830 return -EOPNOTSUPP;
13831 }
13832
13833 *edata = tp->eee;
13834 return 0;
13835}
13836
Jeff Garzik7282d492006-09-13 14:30:00 -040013837static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013838 .get_settings = tg3_get_settings,
13839 .set_settings = tg3_set_settings,
13840 .get_drvinfo = tg3_get_drvinfo,
13841 .get_regs_len = tg3_get_regs_len,
13842 .get_regs = tg3_get_regs,
13843 .get_wol = tg3_get_wol,
13844 .set_wol = tg3_set_wol,
13845 .get_msglevel = tg3_get_msglevel,
13846 .set_msglevel = tg3_set_msglevel,
13847 .nway_reset = tg3_nway_reset,
13848 .get_link = ethtool_op_get_link,
13849 .get_eeprom_len = tg3_get_eeprom_len,
13850 .get_eeprom = tg3_get_eeprom,
13851 .set_eeprom = tg3_set_eeprom,
13852 .get_ringparam = tg3_get_ringparam,
13853 .set_ringparam = tg3_set_ringparam,
13854 .get_pauseparam = tg3_get_pauseparam,
13855 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070013856 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013857 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000013858 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013859 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070013860 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070013861 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070013862 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000013863 .get_rxnfc = tg3_get_rxnfc,
13864 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
13865 .get_rxfh_indir = tg3_get_rxfh_indir,
13866 .set_rxfh_indir = tg3_set_rxfh_indir,
Michael Chan09681692012-09-28 07:12:42 +000013867 .get_channels = tg3_get_channels,
13868 .set_channels = tg3_set_channels,
Matt Carlson7d41e492012-12-03 19:36:58 +000013869 .get_ts_info = tg3_get_ts_info,
Nithin Sujir1cbf9eb2013-05-18 06:26:55 +000013870 .get_eee = tg3_get_eee,
13871 .set_eee = tg3_set_eee,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013872};
13873
David S. Millerb4017c52012-03-01 17:57:40 -050013874static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
13875 struct rtnl_link_stats64 *stats)
13876{
13877 struct tg3 *tp = netdev_priv(dev);
13878
David S. Millerb4017c52012-03-01 17:57:40 -050013879 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000013880 if (!tp->hw_stats) {
13881 spin_unlock_bh(&tp->lock);
13882 return &tp->net_stats_prev;
13883 }
13884
David S. Millerb4017c52012-03-01 17:57:40 -050013885 tg3_get_nstats(tp, stats);
13886 spin_unlock_bh(&tp->lock);
13887
13888 return stats;
13889}
13890
Matt Carlsonccd5ba92012-02-13 10:20:08 +000013891static void tg3_set_rx_mode(struct net_device *dev)
13892{
13893 struct tg3 *tp = netdev_priv(dev);
13894
13895 if (!netif_running(dev))
13896 return;
13897
13898 tg3_full_lock(tp, 0);
13899 __tg3_set_rx_mode(dev);
13900 tg3_full_unlock(tp);
13901}
13902
Matt Carlsonfaf16272012-02-13 10:20:07 +000013903static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
13904 int new_mtu)
13905{
13906 dev->mtu = new_mtu;
13907
13908 if (new_mtu > ETH_DATA_LEN) {
13909 if (tg3_flag(tp, 5780_CLASS)) {
13910 netdev_update_features(dev);
13911 tg3_flag_clear(tp, TSO_CAPABLE);
13912 } else {
13913 tg3_flag_set(tp, JUMBO_RING_ENABLE);
13914 }
13915 } else {
13916 if (tg3_flag(tp, 5780_CLASS)) {
13917 tg3_flag_set(tp, TSO_CAPABLE);
13918 netdev_update_features(dev);
13919 }
13920 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
13921 }
13922}
13923
13924static int tg3_change_mtu(struct net_device *dev, int new_mtu)
13925{
13926 struct tg3 *tp = netdev_priv(dev);
Joe Perches953c96e2013-04-09 10:18:14 +000013927 int err;
13928 bool reset_phy = false;
Matt Carlsonfaf16272012-02-13 10:20:07 +000013929
13930 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
13931 return -EINVAL;
13932
13933 if (!netif_running(dev)) {
13934 /* We'll just catch it later when the
13935 * device is up'd.
13936 */
13937 tg3_set_mtu(dev, tp, new_mtu);
13938 return 0;
13939 }
13940
13941 tg3_phy_stop(tp);
13942
13943 tg3_netif_stop(tp);
13944
13945 tg3_full_lock(tp, 1);
13946
13947 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13948
13949 tg3_set_mtu(dev, tp, new_mtu);
13950
Michael Chan2fae5e32012-03-04 14:48:15 +000013951 /* Reset PHY, otherwise the read DMA engine will be in a mode that
13952 * breaks all requests to 256 bytes.
13953 */
Joe Perches41535772013-02-16 11:20:04 +000013954 if (tg3_asic_rev(tp) == ASIC_REV_57766)
Joe Perches953c96e2013-04-09 10:18:14 +000013955 reset_phy = true;
Michael Chan2fae5e32012-03-04 14:48:15 +000013956
13957 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000013958
13959 if (!err)
13960 tg3_netif_start(tp);
13961
13962 tg3_full_unlock(tp);
13963
13964 if (!err)
13965 tg3_phy_start(tp);
13966
13967 return err;
13968}
13969
13970static const struct net_device_ops tg3_netdev_ops = {
13971 .ndo_open = tg3_open,
13972 .ndo_stop = tg3_close,
13973 .ndo_start_xmit = tg3_start_xmit,
13974 .ndo_get_stats64 = tg3_get_stats64,
13975 .ndo_validate_addr = eth_validate_addr,
13976 .ndo_set_rx_mode = tg3_set_rx_mode,
13977 .ndo_set_mac_address = tg3_set_mac_addr,
13978 .ndo_do_ioctl = tg3_ioctl,
13979 .ndo_tx_timeout = tg3_tx_timeout,
13980 .ndo_change_mtu = tg3_change_mtu,
13981 .ndo_fix_features = tg3_fix_features,
13982 .ndo_set_features = tg3_set_features,
13983#ifdef CONFIG_NET_POLL_CONTROLLER
13984 .ndo_poll_controller = tg3_poll_controller,
13985#endif
13986};
13987
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013988static void tg3_get_eeprom_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013989{
Michael Chan1b277772006-03-20 22:27:48 -080013990 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013991
13992 tp->nvram_size = EEPROM_CHIP_SIZE;
13993
Matt Carlsone4f34112009-02-25 14:25:00 +000013994 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013995 return;
13996
Michael Chanb16250e2006-09-27 16:10:14 -070013997 if ((magic != TG3_EEPROM_MAGIC) &&
13998 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
13999 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014000 return;
14001
14002 /*
14003 * Size the chip by reading offsets at increasing powers of two.
14004 * When we encounter our validation signature, we know the addressing
14005 * has wrapped around, and thus have our chip size.
14006 */
Michael Chan1b277772006-03-20 22:27:48 -080014007 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014008
14009 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000014010 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014011 return;
14012
Michael Chan18201802006-03-20 22:29:15 -080014013 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014014 break;
14015
14016 cursize <<= 1;
14017 }
14018
14019 tp->nvram_size = cursize;
14020}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014021
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014022static void tg3_get_nvram_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014023{
14024 u32 val;
14025
Joe Perches63c3a662011-04-26 08:12:10 +000014026 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080014027 return;
14028
14029 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080014030 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080014031 tg3_get_eeprom_size(tp);
14032 return;
14033 }
14034
Matt Carlson6d348f22009-02-25 14:25:52 +000014035 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014036 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000014037 /* This is confusing. We want to operate on the
14038 * 16-bit value at offset 0xf2. The tg3_nvram_read()
14039 * call will read from NVRAM and byteswap the data
14040 * according to the byteswapping settings for all
14041 * other register accesses. This ensures the data we
14042 * want will always reside in the lower 16-bits.
14043 * However, the data in NVRAM is in LE format, which
14044 * means the data from the NVRAM read will always be
14045 * opposite the endianness of the CPU. The 16-bit
14046 * byteswap then brings the data to CPU endianness.
14047 */
14048 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014049 return;
14050 }
14051 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070014052 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014053}
14054
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014055static void tg3_get_nvram_info(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014056{
14057 u32 nvcfg1;
14058
14059 nvcfg1 = tr32(NVRAM_CFG1);
14060 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000014061 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014062 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014063 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14064 tw32(NVRAM_CFG1, nvcfg1);
14065 }
14066
Joe Perches41535772013-02-16 11:20:04 +000014067 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014068 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014069 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000014070 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
14071 tp->nvram_jedecnum = JEDEC_ATMEL;
14072 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014073 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014074 break;
14075 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
14076 tp->nvram_jedecnum = JEDEC_ATMEL;
14077 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
14078 break;
14079 case FLASH_VENDOR_ATMEL_EEPROM:
14080 tp->nvram_jedecnum = JEDEC_ATMEL;
14081 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014082 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014083 break;
14084 case FLASH_VENDOR_ST:
14085 tp->nvram_jedecnum = JEDEC_ST;
14086 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014087 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014088 break;
14089 case FLASH_VENDOR_SAIFUN:
14090 tp->nvram_jedecnum = JEDEC_SAIFUN;
14091 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
14092 break;
14093 case FLASH_VENDOR_SST_SMALL:
14094 case FLASH_VENDOR_SST_LARGE:
14095 tp->nvram_jedecnum = JEDEC_SST;
14096 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
14097 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014098 }
Matt Carlson8590a602009-08-28 12:29:16 +000014099 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014100 tp->nvram_jedecnum = JEDEC_ATMEL;
14101 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014102 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014103 }
14104}
14105
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014106static void tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014107{
14108 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
14109 case FLASH_5752PAGE_SIZE_256:
14110 tp->nvram_pagesize = 256;
14111 break;
14112 case FLASH_5752PAGE_SIZE_512:
14113 tp->nvram_pagesize = 512;
14114 break;
14115 case FLASH_5752PAGE_SIZE_1K:
14116 tp->nvram_pagesize = 1024;
14117 break;
14118 case FLASH_5752PAGE_SIZE_2K:
14119 tp->nvram_pagesize = 2048;
14120 break;
14121 case FLASH_5752PAGE_SIZE_4K:
14122 tp->nvram_pagesize = 4096;
14123 break;
14124 case FLASH_5752PAGE_SIZE_264:
14125 tp->nvram_pagesize = 264;
14126 break;
14127 case FLASH_5752PAGE_SIZE_528:
14128 tp->nvram_pagesize = 528;
14129 break;
14130 }
14131}
14132
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014133static void tg3_get_5752_nvram_info(struct tg3 *tp)
Michael Chan361b4ac2005-04-21 17:11:21 -070014134{
14135 u32 nvcfg1;
14136
14137 nvcfg1 = tr32(NVRAM_CFG1);
14138
Michael Chane6af3012005-04-21 17:12:05 -070014139 /* NVRAM protection for TPM */
14140 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000014141 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070014142
Michael Chan361b4ac2005-04-21 17:11:21 -070014143 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000014144 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
14145 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
14146 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014147 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014148 break;
14149 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14150 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014151 tg3_flag_set(tp, NVRAM_BUFFERED);
14152 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014153 break;
14154 case FLASH_5752VENDOR_ST_M45PE10:
14155 case FLASH_5752VENDOR_ST_M45PE20:
14156 case FLASH_5752VENDOR_ST_M45PE40:
14157 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014158 tg3_flag_set(tp, NVRAM_BUFFERED);
14159 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014160 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070014161 }
14162
Joe Perches63c3a662011-04-26 08:12:10 +000014163 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000014164 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000014165 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070014166 /* For eeprom, set pagesize to maximum eeprom size */
14167 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14168
14169 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14170 tw32(NVRAM_CFG1, nvcfg1);
14171 }
14172}
14173
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014174static void tg3_get_5755_nvram_info(struct tg3 *tp)
Michael Chand3c7b882006-03-23 01:28:25 -080014175{
Matt Carlson989a9d22007-05-05 11:51:05 -070014176 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080014177
14178 nvcfg1 = tr32(NVRAM_CFG1);
14179
14180 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070014181 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014182 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070014183 protect = 1;
14184 }
Michael Chand3c7b882006-03-23 01:28:25 -080014185
Matt Carlson989a9d22007-05-05 11:51:05 -070014186 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
14187 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014188 case FLASH_5755VENDOR_ATMEL_FLASH_1:
14189 case FLASH_5755VENDOR_ATMEL_FLASH_2:
14190 case FLASH_5755VENDOR_ATMEL_FLASH_3:
14191 case FLASH_5755VENDOR_ATMEL_FLASH_5:
14192 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014193 tg3_flag_set(tp, NVRAM_BUFFERED);
14194 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014195 tp->nvram_pagesize = 264;
14196 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
14197 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
14198 tp->nvram_size = (protect ? 0x3e200 :
14199 TG3_NVRAM_SIZE_512KB);
14200 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
14201 tp->nvram_size = (protect ? 0x1f200 :
14202 TG3_NVRAM_SIZE_256KB);
14203 else
14204 tp->nvram_size = (protect ? 0x1f200 :
14205 TG3_NVRAM_SIZE_128KB);
14206 break;
14207 case FLASH_5752VENDOR_ST_M45PE10:
14208 case FLASH_5752VENDOR_ST_M45PE20:
14209 case FLASH_5752VENDOR_ST_M45PE40:
14210 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014211 tg3_flag_set(tp, NVRAM_BUFFERED);
14212 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014213 tp->nvram_pagesize = 256;
14214 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
14215 tp->nvram_size = (protect ?
14216 TG3_NVRAM_SIZE_64KB :
14217 TG3_NVRAM_SIZE_128KB);
14218 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
14219 tp->nvram_size = (protect ?
14220 TG3_NVRAM_SIZE_64KB :
14221 TG3_NVRAM_SIZE_256KB);
14222 else
14223 tp->nvram_size = (protect ?
14224 TG3_NVRAM_SIZE_128KB :
14225 TG3_NVRAM_SIZE_512KB);
14226 break;
Michael Chand3c7b882006-03-23 01:28:25 -080014227 }
14228}
14229
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014230static void tg3_get_5787_nvram_info(struct tg3 *tp)
Michael Chan1b277772006-03-20 22:27:48 -080014231{
14232 u32 nvcfg1;
14233
14234 nvcfg1 = tr32(NVRAM_CFG1);
14235
14236 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000014237 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
14238 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14239 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
14240 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14241 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014242 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014243 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080014244
Matt Carlson8590a602009-08-28 12:29:16 +000014245 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14246 tw32(NVRAM_CFG1, nvcfg1);
14247 break;
14248 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14249 case FLASH_5755VENDOR_ATMEL_FLASH_1:
14250 case FLASH_5755VENDOR_ATMEL_FLASH_2:
14251 case FLASH_5755VENDOR_ATMEL_FLASH_3:
14252 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014253 tg3_flag_set(tp, NVRAM_BUFFERED);
14254 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014255 tp->nvram_pagesize = 264;
14256 break;
14257 case FLASH_5752VENDOR_ST_M45PE10:
14258 case FLASH_5752VENDOR_ST_M45PE20:
14259 case FLASH_5752VENDOR_ST_M45PE40:
14260 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014261 tg3_flag_set(tp, NVRAM_BUFFERED);
14262 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014263 tp->nvram_pagesize = 256;
14264 break;
Michael Chan1b277772006-03-20 22:27:48 -080014265 }
14266}
14267
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014268static void tg3_get_5761_nvram_info(struct tg3 *tp)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014269{
14270 u32 nvcfg1, protect = 0;
14271
14272 nvcfg1 = tr32(NVRAM_CFG1);
14273
14274 /* NVRAM protection for TPM */
14275 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014276 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070014277 protect = 1;
14278 }
14279
14280 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
14281 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014282 case FLASH_5761VENDOR_ATMEL_ADB021D:
14283 case FLASH_5761VENDOR_ATMEL_ADB041D:
14284 case FLASH_5761VENDOR_ATMEL_ADB081D:
14285 case FLASH_5761VENDOR_ATMEL_ADB161D:
14286 case FLASH_5761VENDOR_ATMEL_MDB021D:
14287 case FLASH_5761VENDOR_ATMEL_MDB041D:
14288 case FLASH_5761VENDOR_ATMEL_MDB081D:
14289 case FLASH_5761VENDOR_ATMEL_MDB161D:
14290 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014291 tg3_flag_set(tp, NVRAM_BUFFERED);
14292 tg3_flag_set(tp, FLASH);
14293 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000014294 tp->nvram_pagesize = 256;
14295 break;
14296 case FLASH_5761VENDOR_ST_A_M45PE20:
14297 case FLASH_5761VENDOR_ST_A_M45PE40:
14298 case FLASH_5761VENDOR_ST_A_M45PE80:
14299 case FLASH_5761VENDOR_ST_A_M45PE16:
14300 case FLASH_5761VENDOR_ST_M_M45PE20:
14301 case FLASH_5761VENDOR_ST_M_M45PE40:
14302 case FLASH_5761VENDOR_ST_M_M45PE80:
14303 case FLASH_5761VENDOR_ST_M_M45PE16:
14304 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014305 tg3_flag_set(tp, NVRAM_BUFFERED);
14306 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014307 tp->nvram_pagesize = 256;
14308 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014309 }
14310
14311 if (protect) {
14312 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
14313 } else {
14314 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014315 case FLASH_5761VENDOR_ATMEL_ADB161D:
14316 case FLASH_5761VENDOR_ATMEL_MDB161D:
14317 case FLASH_5761VENDOR_ST_A_M45PE16:
14318 case FLASH_5761VENDOR_ST_M_M45PE16:
14319 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
14320 break;
14321 case FLASH_5761VENDOR_ATMEL_ADB081D:
14322 case FLASH_5761VENDOR_ATMEL_MDB081D:
14323 case FLASH_5761VENDOR_ST_A_M45PE80:
14324 case FLASH_5761VENDOR_ST_M_M45PE80:
14325 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14326 break;
14327 case FLASH_5761VENDOR_ATMEL_ADB041D:
14328 case FLASH_5761VENDOR_ATMEL_MDB041D:
14329 case FLASH_5761VENDOR_ST_A_M45PE40:
14330 case FLASH_5761VENDOR_ST_M_M45PE40:
14331 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14332 break;
14333 case FLASH_5761VENDOR_ATMEL_ADB021D:
14334 case FLASH_5761VENDOR_ATMEL_MDB021D:
14335 case FLASH_5761VENDOR_ST_A_M45PE20:
14336 case FLASH_5761VENDOR_ST_M_M45PE20:
14337 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14338 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014339 }
14340 }
14341}
14342
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014343static void tg3_get_5906_nvram_info(struct tg3 *tp)
Michael Chanb5d37722006-09-27 16:06:21 -070014344{
14345 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014346 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070014347 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14348}
14349
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014350static void tg3_get_57780_nvram_info(struct tg3 *tp)
Matt Carlson321d32a2008-11-21 17:22:19 -080014351{
14352 u32 nvcfg1;
14353
14354 nvcfg1 = tr32(NVRAM_CFG1);
14355
14356 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14357 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14358 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14359 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014360 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080014361 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14362
14363 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14364 tw32(NVRAM_CFG1, nvcfg1);
14365 return;
14366 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14367 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14368 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14369 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14370 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14371 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14372 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14373 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014374 tg3_flag_set(tp, NVRAM_BUFFERED);
14375 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014376
14377 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14378 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14379 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14380 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14381 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14382 break;
14383 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14384 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14385 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14386 break;
14387 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14388 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14389 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14390 break;
14391 }
14392 break;
14393 case FLASH_5752VENDOR_ST_M45PE10:
14394 case FLASH_5752VENDOR_ST_M45PE20:
14395 case FLASH_5752VENDOR_ST_M45PE40:
14396 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014397 tg3_flag_set(tp, NVRAM_BUFFERED);
14398 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014399
14400 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14401 case FLASH_5752VENDOR_ST_M45PE10:
14402 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14403 break;
14404 case FLASH_5752VENDOR_ST_M45PE20:
14405 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14406 break;
14407 case FLASH_5752VENDOR_ST_M45PE40:
14408 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14409 break;
14410 }
14411 break;
14412 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014413 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080014414 return;
14415 }
14416
Matt Carlsona1b950d2009-09-01 13:20:17 +000014417 tg3_nvram_get_pagesize(tp, nvcfg1);
14418 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014419 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014420}
14421
14422
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014423static void tg3_get_5717_nvram_info(struct tg3 *tp)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014424{
14425 u32 nvcfg1;
14426
14427 nvcfg1 = tr32(NVRAM_CFG1);
14428
14429 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14430 case FLASH_5717VENDOR_ATMEL_EEPROM:
14431 case FLASH_5717VENDOR_MICRO_EEPROM:
14432 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014433 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014434 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14435
14436 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14437 tw32(NVRAM_CFG1, nvcfg1);
14438 return;
14439 case FLASH_5717VENDOR_ATMEL_MDB011D:
14440 case FLASH_5717VENDOR_ATMEL_ADB011B:
14441 case FLASH_5717VENDOR_ATMEL_ADB011D:
14442 case FLASH_5717VENDOR_ATMEL_MDB021D:
14443 case FLASH_5717VENDOR_ATMEL_ADB021B:
14444 case FLASH_5717VENDOR_ATMEL_ADB021D:
14445 case FLASH_5717VENDOR_ATMEL_45USPT:
14446 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014447 tg3_flag_set(tp, NVRAM_BUFFERED);
14448 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014449
14450 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14451 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014452 /* Detect size with tg3_nvram_get_size() */
14453 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014454 case FLASH_5717VENDOR_ATMEL_ADB021B:
14455 case FLASH_5717VENDOR_ATMEL_ADB021D:
14456 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14457 break;
14458 default:
14459 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14460 break;
14461 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014462 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014463 case FLASH_5717VENDOR_ST_M_M25PE10:
14464 case FLASH_5717VENDOR_ST_A_M25PE10:
14465 case FLASH_5717VENDOR_ST_M_M45PE10:
14466 case FLASH_5717VENDOR_ST_A_M45PE10:
14467 case FLASH_5717VENDOR_ST_M_M25PE20:
14468 case FLASH_5717VENDOR_ST_A_M25PE20:
14469 case FLASH_5717VENDOR_ST_M_M45PE20:
14470 case FLASH_5717VENDOR_ST_A_M45PE20:
14471 case FLASH_5717VENDOR_ST_25USPT:
14472 case FLASH_5717VENDOR_ST_45USPT:
14473 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014474 tg3_flag_set(tp, NVRAM_BUFFERED);
14475 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014476
14477 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14478 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014479 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014480 /* Detect size with tg3_nvram_get_size() */
14481 break;
14482 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014483 case FLASH_5717VENDOR_ST_A_M45PE20:
14484 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14485 break;
14486 default:
14487 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14488 break;
14489 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014490 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014491 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014492 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014493 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080014494 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000014495
14496 tg3_nvram_get_pagesize(tp, nvcfg1);
14497 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014498 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080014499}
14500
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014501static void tg3_get_5720_nvram_info(struct tg3 *tp)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014502{
14503 u32 nvcfg1, nvmpinstrp;
14504
14505 nvcfg1 = tr32(NVRAM_CFG1);
14506 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
14507
Joe Perches41535772013-02-16 11:20:04 +000014508 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014509 if (!(nvcfg1 & NVRAM_CFG1_5762VENDOR_MASK)) {
14510 tg3_flag_set(tp, NO_NVRAM);
14511 return;
14512 }
14513
14514 switch (nvmpinstrp) {
14515 case FLASH_5762_EEPROM_HD:
14516 nvmpinstrp = FLASH_5720_EEPROM_HD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014517 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014518 case FLASH_5762_EEPROM_LD:
14519 nvmpinstrp = FLASH_5720_EEPROM_LD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014520 break;
Michael Chanf6334bb2013-04-09 08:48:02 +000014521 case FLASH_5720VENDOR_M_ST_M45PE20:
14522 /* This pinstrap supports multiple sizes, so force it
14523 * to read the actual size from location 0xf0.
14524 */
14525 nvmpinstrp = FLASH_5720VENDOR_ST_45USPT;
14526 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014527 }
14528 }
14529
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014530 switch (nvmpinstrp) {
14531 case FLASH_5720_EEPROM_HD:
14532 case FLASH_5720_EEPROM_LD:
14533 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014534 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014535
14536 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14537 tw32(NVRAM_CFG1, nvcfg1);
14538 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
14539 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14540 else
14541 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
14542 return;
14543 case FLASH_5720VENDOR_M_ATMEL_DB011D:
14544 case FLASH_5720VENDOR_A_ATMEL_DB011B:
14545 case FLASH_5720VENDOR_A_ATMEL_DB011D:
14546 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14547 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14548 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14549 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14550 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14551 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14552 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14553 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14554 case FLASH_5720VENDOR_ATMEL_45USPT:
14555 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014556 tg3_flag_set(tp, NVRAM_BUFFERED);
14557 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014558
14559 switch (nvmpinstrp) {
14560 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14561 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14562 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14563 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14564 break;
14565 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14566 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14567 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14568 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14569 break;
14570 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14571 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14572 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14573 break;
14574 default:
Joe Perches41535772013-02-16 11:20:04 +000014575 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014576 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014577 break;
14578 }
14579 break;
14580 case FLASH_5720VENDOR_M_ST_M25PE10:
14581 case FLASH_5720VENDOR_M_ST_M45PE10:
14582 case FLASH_5720VENDOR_A_ST_M25PE10:
14583 case FLASH_5720VENDOR_A_ST_M45PE10:
14584 case FLASH_5720VENDOR_M_ST_M25PE20:
14585 case FLASH_5720VENDOR_M_ST_M45PE20:
14586 case FLASH_5720VENDOR_A_ST_M25PE20:
14587 case FLASH_5720VENDOR_A_ST_M45PE20:
14588 case FLASH_5720VENDOR_M_ST_M25PE40:
14589 case FLASH_5720VENDOR_M_ST_M45PE40:
14590 case FLASH_5720VENDOR_A_ST_M25PE40:
14591 case FLASH_5720VENDOR_A_ST_M45PE40:
14592 case FLASH_5720VENDOR_M_ST_M25PE80:
14593 case FLASH_5720VENDOR_M_ST_M45PE80:
14594 case FLASH_5720VENDOR_A_ST_M25PE80:
14595 case FLASH_5720VENDOR_A_ST_M45PE80:
14596 case FLASH_5720VENDOR_ST_25USPT:
14597 case FLASH_5720VENDOR_ST_45USPT:
14598 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014599 tg3_flag_set(tp, NVRAM_BUFFERED);
14600 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014601
14602 switch (nvmpinstrp) {
14603 case FLASH_5720VENDOR_M_ST_M25PE20:
14604 case FLASH_5720VENDOR_M_ST_M45PE20:
14605 case FLASH_5720VENDOR_A_ST_M25PE20:
14606 case FLASH_5720VENDOR_A_ST_M45PE20:
14607 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14608 break;
14609 case FLASH_5720VENDOR_M_ST_M25PE40:
14610 case FLASH_5720VENDOR_M_ST_M45PE40:
14611 case FLASH_5720VENDOR_A_ST_M25PE40:
14612 case FLASH_5720VENDOR_A_ST_M45PE40:
14613 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14614 break;
14615 case FLASH_5720VENDOR_M_ST_M25PE80:
14616 case FLASH_5720VENDOR_M_ST_M45PE80:
14617 case FLASH_5720VENDOR_A_ST_M25PE80:
14618 case FLASH_5720VENDOR_A_ST_M45PE80:
14619 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14620 break;
14621 default:
Joe Perches41535772013-02-16 11:20:04 +000014622 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014623 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014624 break;
14625 }
14626 break;
14627 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014628 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014629 return;
14630 }
14631
14632 tg3_nvram_get_pagesize(tp, nvcfg1);
14633 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014634 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Michael Chanc86a8562013-01-06 12:51:08 +000014635
Joe Perches41535772013-02-16 11:20:04 +000014636 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014637 u32 val;
14638
14639 if (tg3_nvram_read(tp, 0, &val))
14640 return;
14641
14642 if (val != TG3_EEPROM_MAGIC &&
14643 (val & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW)
14644 tg3_flag_set(tp, NO_NVRAM);
14645 }
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014646}
14647
Linus Torvalds1da177e2005-04-16 15:20:36 -070014648/* Chips other than 5700/5701 use the NVRAM for fetching info. */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014649static void tg3_nvram_init(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014650{
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014651 if (tg3_flag(tp, IS_SSB_CORE)) {
14652 /* No NVRAM and EEPROM on the SSB Broadcom GigE core. */
14653 tg3_flag_clear(tp, NVRAM);
14654 tg3_flag_clear(tp, NVRAM_BUFFERED);
14655 tg3_flag_set(tp, NO_NVRAM);
14656 return;
14657 }
14658
Linus Torvalds1da177e2005-04-16 15:20:36 -070014659 tw32_f(GRC_EEPROM_ADDR,
14660 (EEPROM_ADDR_FSM_RESET |
14661 (EEPROM_DEFAULT_CLOCK_PERIOD <<
14662 EEPROM_ADDR_CLKPERD_SHIFT)));
14663
Michael Chan9d57f012006-12-07 00:23:25 -080014664 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014665
14666 /* Enable seeprom accesses. */
14667 tw32_f(GRC_LOCAL_CTRL,
14668 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
14669 udelay(100);
14670
Joe Perches41535772013-02-16 11:20:04 +000014671 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14672 tg3_asic_rev(tp) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000014673 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014674
Michael Chanec41c7d2006-01-17 02:40:55 -080014675 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014676 netdev_warn(tp->dev,
14677 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000014678 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080014679 return;
14680 }
Michael Chane6af3012005-04-21 17:12:05 -070014681 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014682
Matt Carlson989a9d22007-05-05 11:51:05 -070014683 tp->nvram_size = 0;
14684
Joe Perches41535772013-02-16 11:20:04 +000014685 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan361b4ac2005-04-21 17:11:21 -070014686 tg3_get_5752_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014687 else if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chand3c7b882006-03-23 01:28:25 -080014688 tg3_get_5755_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014689 else if (tg3_asic_rev(tp) == ASIC_REV_5787 ||
14690 tg3_asic_rev(tp) == ASIC_REV_5784 ||
14691 tg3_asic_rev(tp) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080014692 tg3_get_5787_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014693 else if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014694 tg3_get_5761_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014695 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014696 tg3_get_5906_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014697 else if (tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014698 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080014699 tg3_get_57780_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014700 else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
14701 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014702 tg3_get_5717_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014703 else if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
14704 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014705 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070014706 else
14707 tg3_get_nvram_info(tp);
14708
Matt Carlson989a9d22007-05-05 11:51:05 -070014709 if (tp->nvram_size == 0)
14710 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014711
Michael Chane6af3012005-04-21 17:12:05 -070014712 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080014713 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014714
14715 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014716 tg3_flag_clear(tp, NVRAM);
14717 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014718
14719 tg3_get_eeprom_size(tp);
14720 }
14721}
14722
Linus Torvalds1da177e2005-04-16 15:20:36 -070014723struct subsys_tbl_ent {
14724 u16 subsys_vendor, subsys_devid;
14725 u32 phy_id;
14726};
14727
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014728static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014729 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014730 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014731 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014732 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014733 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014734 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014735 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014736 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14737 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
14738 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014739 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014740 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014741 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014742 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14743 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
14744 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014745 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014746 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014747 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014748 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014749 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014750 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014751 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014752
14753 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014754 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014755 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014756 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014757 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014758 { TG3PCI_SUBVENDOR_ID_3COM,
14759 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
14760 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014761 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014762 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014763 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014764
14765 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014766 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014767 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014768 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014769 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014770 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014771 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014772 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014773 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014774
14775 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014776 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014777 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014778 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014779 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014780 { TG3PCI_SUBVENDOR_ID_COMPAQ,
14781 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
14782 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014783 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014784 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014785 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014786
14787 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014788 { TG3PCI_SUBVENDOR_ID_IBM,
14789 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014790};
14791
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014792static struct subsys_tbl_ent *tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014793{
14794 int i;
14795
14796 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
14797 if ((subsys_id_to_phy_id[i].subsys_vendor ==
14798 tp->pdev->subsystem_vendor) &&
14799 (subsys_id_to_phy_id[i].subsys_devid ==
14800 tp->pdev->subsystem_device))
14801 return &subsys_id_to_phy_id[i];
14802 }
14803 return NULL;
14804}
14805
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014806static void tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014807{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014808 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070014809
Matt Carlson79eb6902010-02-17 15:17:03 +000014810 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014811 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14812
Gary Zambranoa85feb82007-05-05 11:52:19 -070014813 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000014814 tg3_flag_set(tp, EEPROM_WRITE_PROT);
14815 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080014816
Joe Perches41535772013-02-16 11:20:04 +000014817 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080014818 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014819 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14820 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014821 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014822 val = tr32(VCPU_CFGSHDW);
14823 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000014824 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070014825 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014826 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014827 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014828 device_set_wakeup_enable(&tp->pdev->dev, true);
14829 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014830 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070014831 }
14832
Linus Torvalds1da177e2005-04-16 15:20:36 -070014833 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
14834 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
14835 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070014836 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014837 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014838
14839 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
14840 tp->nic_sram_data_cfg = nic_cfg;
14841
14842 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
14843 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000014844 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14845 tg3_asic_rev(tp) != ASIC_REV_5701 &&
14846 tg3_asic_rev(tp) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014847 (ver > 0) && (ver < 0x100))
14848 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
14849
Joe Perches41535772013-02-16 11:20:04 +000014850 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlsona9daf362008-05-25 23:49:44 -070014851 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
14852
Linus Torvalds1da177e2005-04-16 15:20:36 -070014853 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
14854 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
14855 eeprom_phy_serdes = 1;
14856
14857 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
14858 if (nic_phy_id != 0) {
14859 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
14860 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
14861
14862 eeprom_phy_id = (id1 >> 16) << 10;
14863 eeprom_phy_id |= (id2 & 0xfc00) << 16;
14864 eeprom_phy_id |= (id2 & 0x03ff) << 0;
14865 } else
14866 eeprom_phy_id = 0;
14867
Michael Chan7d0c41e2005-04-21 17:06:20 -070014868 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070014869 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000014870 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014871 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000014872 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014873 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070014874 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070014875
Joe Perches63c3a662011-04-26 08:12:10 +000014876 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014877 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
14878 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070014879 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014880 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
14881
14882 switch (led_cfg) {
14883 default:
14884 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
14885 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14886 break;
14887
14888 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
14889 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14890 break;
14891
14892 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
14893 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070014894
14895 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
14896 * read on some older 5700/5701 bootcode.
14897 */
Joe Perches41535772013-02-16 11:20:04 +000014898 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
14899 tg3_asic_rev(tp) == ASIC_REV_5701)
Michael Chan9ba27792005-06-06 15:16:20 -070014900 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14901
Linus Torvalds1da177e2005-04-16 15:20:36 -070014902 break;
14903
14904 case SHASTA_EXT_LED_SHARED:
14905 tp->led_ctrl = LED_CTRL_MODE_SHARED;
Joe Perches41535772013-02-16 11:20:04 +000014906 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
14907 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014908 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14909 LED_CTRL_MODE_PHY_2);
14910 break;
14911
14912 case SHASTA_EXT_LED_MAC:
14913 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
14914 break;
14915
14916 case SHASTA_EXT_LED_COMBO:
14917 tp->led_ctrl = LED_CTRL_MODE_COMBO;
Joe Perches41535772013-02-16 11:20:04 +000014918 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014919 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14920 LED_CTRL_MODE_PHY_2);
14921 break;
14922
Stephen Hemminger855e1112008-04-16 16:37:28 -070014923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014924
Joe Perches41535772013-02-16 11:20:04 +000014925 if ((tg3_asic_rev(tp) == ASIC_REV_5700 ||
14926 tg3_asic_rev(tp) == ASIC_REV_5701) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014927 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
14928 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14929
Joe Perches41535772013-02-16 11:20:04 +000014930 if (tg3_chip_rev(tp) == CHIPREV_5784_AX)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014931 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080014932
Michael Chan9d26e212006-12-07 00:21:14 -080014933 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000014934 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014935 if ((tp->pdev->subsystem_vendor ==
14936 PCI_VENDOR_ID_ARIMA) &&
14937 (tp->pdev->subsystem_device == 0x205a ||
14938 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000014939 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014940 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014941 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14942 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014944
14945 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000014946 tg3_flag_set(tp, ENABLE_ASF);
14947 if (tg3_flag(tp, 5750_PLUS))
14948 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014949 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014950
14951 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014952 tg3_flag(tp, 5750_PLUS))
14953 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014954
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014955 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070014956 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000014957 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014958
Joe Perches63c3a662011-04-26 08:12:10 +000014959 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014960 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014961 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014962 device_set_wakeup_enable(&tp->pdev->dev, true);
14963 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014964
Linus Torvalds1da177e2005-04-16 15:20:36 -070014965 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014966 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014967
14968 /* serdes signal pre-emphasis in register 0x590 set by */
14969 /* bootcode if bit 18 is set */
14970 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014971 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014972
Joe Perches63c3a662011-04-26 08:12:10 +000014973 if ((tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000014974 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
14975 tg3_chip_rev(tp) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080014976 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014977 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080014978
Nithin Sujir942d1af2013-04-09 08:48:07 +000014979 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070014980 u32 cfg3;
14981
14982 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014983 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
14984 !tg3_flag(tp, 57765_PLUS) &&
14985 (cfg3 & NIC_SRAM_ASPM_DEBOUNCE))
Joe Perches63c3a662011-04-26 08:12:10 +000014986 tg3_flag_set(tp, ASPM_WORKAROUND);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014987 if (cfg3 & NIC_SRAM_LNK_FLAP_AVOID)
14988 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
14989 if (cfg3 & NIC_SRAM_1G_ON_VAUX_OK)
14990 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014991 }
Matt Carlsona9daf362008-05-25 23:49:44 -070014992
Matt Carlson14417062010-02-17 15:16:59 +000014993 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000014994 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070014995 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014996 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070014997 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014998 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014999 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080015000done:
Joe Perches63c3a662011-04-26 08:12:10 +000015001 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000015002 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000015003 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000015004 else
15005 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070015006}
15007
Michael Chanc86a8562013-01-06 12:51:08 +000015008static int tg3_ape_otp_read(struct tg3 *tp, u32 offset, u32 *val)
15009{
15010 int i, err;
15011 u32 val2, off = offset * 8;
15012
15013 err = tg3_nvram_lock(tp);
15014 if (err)
15015 return err;
15016
15017 tg3_ape_write32(tp, TG3_APE_OTP_ADDR, off | APE_OTP_ADDR_CPU_ENABLE);
15018 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, APE_OTP_CTRL_PROG_EN |
15019 APE_OTP_CTRL_CMD_RD | APE_OTP_CTRL_START);
15020 tg3_ape_read32(tp, TG3_APE_OTP_CTRL);
15021 udelay(10);
15022
15023 for (i = 0; i < 100; i++) {
15024 val2 = tg3_ape_read32(tp, TG3_APE_OTP_STATUS);
15025 if (val2 & APE_OTP_STATUS_CMD_DONE) {
15026 *val = tg3_ape_read32(tp, TG3_APE_OTP_RD_DATA);
15027 break;
15028 }
15029 udelay(10);
15030 }
15031
15032 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, 0);
15033
15034 tg3_nvram_unlock(tp);
15035 if (val2 & APE_OTP_STATUS_CMD_DONE)
15036 return 0;
15037
15038 return -EBUSY;
15039}
15040
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015041static int tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070015042{
15043 int i;
15044 u32 val;
15045
15046 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
15047 tw32(OTP_CTRL, cmd);
15048
15049 /* Wait for up to 1 ms for command to execute. */
15050 for (i = 0; i < 100; i++) {
15051 val = tr32(OTP_STATUS);
15052 if (val & OTP_STATUS_CMD_DONE)
15053 break;
15054 udelay(10);
15055 }
15056
15057 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
15058}
15059
15060/* Read the gphy configuration from the OTP region of the chip. The gphy
15061 * configuration is a 32-bit value that straddles the alignment boundary.
15062 * We do two 32-bit reads and then shift and merge the results.
15063 */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015064static u32 tg3_read_otp_phycfg(struct tg3 *tp)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070015065{
15066 u32 bhalf_otp, thalf_otp;
15067
15068 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
15069
15070 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
15071 return 0;
15072
15073 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
15074
15075 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
15076 return 0;
15077
15078 thalf_otp = tr32(OTP_READ_DATA);
15079
15080 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
15081
15082 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
15083 return 0;
15084
15085 bhalf_otp = tr32(OTP_READ_DATA);
15086
15087 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
15088}
15089
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015090static void tg3_phy_init_link_config(struct tg3 *tp)
Matt Carlsone256f8a2011-03-09 16:58:24 +000015091{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000015092 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000015093
15094 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
15095 adv |= ADVERTISED_1000baseT_Half |
15096 ADVERTISED_1000baseT_Full;
15097
15098 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
15099 adv |= ADVERTISED_100baseT_Half |
15100 ADVERTISED_100baseT_Full |
15101 ADVERTISED_10baseT_Half |
15102 ADVERTISED_10baseT_Full |
15103 ADVERTISED_TP;
15104 else
15105 adv |= ADVERTISED_FIBRE;
15106
15107 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000015108 tp->link_config.speed = SPEED_UNKNOWN;
15109 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000015110 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000015111 tp->link_config.active_speed = SPEED_UNKNOWN;
15112 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000015113
15114 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000015115}
15116
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015117static int tg3_phy_probe(struct tg3 *tp)
Michael Chan7d0c41e2005-04-21 17:06:20 -070015118{
15119 u32 hw_phy_id_1, hw_phy_id_2;
15120 u32 hw_phy_id, hw_phy_id_masked;
15121 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015122
Matt Carlsone256f8a2011-03-09 16:58:24 +000015123 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000015124 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000015125 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
15126
Michael Chan8151ad52012-07-29 19:15:41 +000015127 if (tg3_flag(tp, ENABLE_APE)) {
15128 switch (tp->pci_fn) {
15129 case 0:
15130 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
15131 break;
15132 case 1:
15133 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
15134 break;
15135 case 2:
15136 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
15137 break;
15138 case 3:
15139 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
15140 break;
15141 }
15142 }
15143
Nithin Sujir942d1af2013-04-09 08:48:07 +000015144 if (!tg3_flag(tp, ENABLE_ASF) &&
15145 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
15146 !(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
15147 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
15148 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
15149
Joe Perches63c3a662011-04-26 08:12:10 +000015150 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015151 return tg3_phy_init(tp);
15152
Linus Torvalds1da177e2005-04-16 15:20:36 -070015153 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010015154 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015155 */
15156 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000015157 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000015158 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015159 } else {
15160 /* Now read the physical PHY_ID from the chip and verify
15161 * that it is sane. If it doesn't look good, we fall back
15162 * to either the hard-coded table based PHY_ID and failing
15163 * that the value found in the eeprom area.
15164 */
15165 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
15166 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
15167
15168 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
15169 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
15170 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
15171
Matt Carlson79eb6902010-02-17 15:17:03 +000015172 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015173 }
15174
Matt Carlson79eb6902010-02-17 15:17:03 +000015175 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015176 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000015177 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015178 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070015179 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015180 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015181 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000015182 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070015183 /* Do nothing, phy ID already set up in
15184 * tg3_get_eeprom_hw_cfg().
15185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015186 } else {
15187 struct subsys_tbl_ent *p;
15188
15189 /* No eeprom signature? Try the hardcoded
15190 * subsys device table.
15191 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000015192 p = tg3_lookup_by_subsys(tp);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000015193 if (p) {
15194 tp->phy_id = p->phy_id;
15195 } else if (!tg3_flag(tp, IS_SSB_CORE)) {
15196 /* For now we saw the IDs 0xbc050cd0,
15197 * 0xbc050f80 and 0xbc050c30 on devices
15198 * connected to an BCM4785 and there are
15199 * probably more. Just assume that the phy is
15200 * supported when it is connected to a SSB core
15201 * for now.
15202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015203 return -ENODEV;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000015204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015205
Linus Torvalds1da177e2005-04-16 15:20:36 -070015206 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000015207 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015208 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015209 }
15210 }
15211
Matt Carlsona6b68da2010-12-06 08:28:52 +000015212 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000015213 (tg3_asic_rev(tp) == ASIC_REV_5719 ||
15214 tg3_asic_rev(tp) == ASIC_REV_5720 ||
Nithin Sujirc4dab502013-03-06 17:02:34 +000015215 tg3_asic_rev(tp) == ASIC_REV_57766 ||
Joe Perches41535772013-02-16 11:20:04 +000015216 tg3_asic_rev(tp) == ASIC_REV_5762 ||
15217 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
15218 tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0) ||
15219 (tg3_asic_rev(tp) == ASIC_REV_57765 &&
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +000015220 tg3_chip_rev_id(tp) != CHIPREV_ID_57765_A0))) {
Matt Carlson52b02d02010-10-14 10:37:41 +000015221 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
15222
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +000015223 tp->eee.supported = SUPPORTED_100baseT_Full |
15224 SUPPORTED_1000baseT_Full;
15225 tp->eee.advertised = ADVERTISED_100baseT_Full |
15226 ADVERTISED_1000baseT_Full;
15227 tp->eee.eee_enabled = 1;
15228 tp->eee.tx_lpi_enabled = 1;
15229 tp->eee.tx_lpi_timer = TG3_CPMU_DBTMR1_LNKIDLE_2047US;
15230 }
15231
Matt Carlsone256f8a2011-03-09 16:58:24 +000015232 tg3_phy_init_link_config(tp);
15233
Nithin Sujir942d1af2013-04-09 08:48:07 +000015234 if (!(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
15235 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000015236 !tg3_flag(tp, ENABLE_APE) &&
15237 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000015238 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015239
15240 tg3_readphy(tp, MII_BMSR, &bmsr);
15241 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
15242 (bmsr & BMSR_LSTATUS))
15243 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040015244
Linus Torvalds1da177e2005-04-16 15:20:36 -070015245 err = tg3_phy_reset(tp);
15246 if (err)
15247 return err;
15248
Matt Carlson42b64a42011-05-19 12:12:49 +000015249 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015250
Matt Carlsone2bf73e2011-12-08 14:40:15 +000015251 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000015252 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
15253 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015254
15255 tg3_writephy(tp, MII_BMCR,
15256 BMCR_ANENABLE | BMCR_ANRESTART);
15257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015258 }
15259
15260skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000015261 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015262 err = tg3_init_5401phy_dsp(tp);
15263 if (err)
15264 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015265
Linus Torvalds1da177e2005-04-16 15:20:36 -070015266 err = tg3_init_5401phy_dsp(tp);
15267 }
15268
Linus Torvalds1da177e2005-04-16 15:20:36 -070015269 return err;
15270}
15271
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015272static void tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015273{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015274 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015275 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000015276 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000015277 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015278
Matt Carlson535a4902011-07-20 10:20:56 +000015279 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015280 if (!vpd_data)
15281 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015282
Matt Carlson535a4902011-07-20 10:20:56 +000015283 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000015284 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015285 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015286
15287 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
15288 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
15289 i += PCI_VPD_LRDT_TAG_SIZE;
15290
Matt Carlson535a4902011-07-20 10:20:56 +000015291 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015292 goto out_not_found;
15293
Matt Carlson184b8902010-04-05 10:19:25 +000015294 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15295 PCI_VPD_RO_KEYWORD_MFR_ID);
15296 if (j > 0) {
15297 len = pci_vpd_info_field_size(&vpd_data[j]);
15298
15299 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15300 if (j + len > block_end || len != 4 ||
15301 memcmp(&vpd_data[j], "1028", 4))
15302 goto partno;
15303
15304 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15305 PCI_VPD_RO_KEYWORD_VENDOR0);
15306 if (j < 0)
15307 goto partno;
15308
15309 len = pci_vpd_info_field_size(&vpd_data[j]);
15310
15311 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15312 if (j + len > block_end)
15313 goto partno;
15314
Kees Cook715230a2013-03-27 06:40:50 +000015315 if (len >= sizeof(tp->fw_ver))
15316 len = sizeof(tp->fw_ver) - 1;
15317 memset(tp->fw_ver, 0, sizeof(tp->fw_ver));
15318 snprintf(tp->fw_ver, sizeof(tp->fw_ver), "%.*s bc ", len,
15319 &vpd_data[j]);
Matt Carlson184b8902010-04-05 10:19:25 +000015320 }
15321
15322partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000015323 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15324 PCI_VPD_RO_KEYWORD_PARTNO);
15325 if (i < 0)
15326 goto out_not_found;
15327
15328 len = pci_vpd_info_field_size(&vpd_data[i]);
15329
15330 i += PCI_VPD_INFO_FLD_HDR_SIZE;
15331 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000015332 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015333 goto out_not_found;
15334
15335 memcpy(tp->board_part_number, &vpd_data[i], len);
15336
Linus Torvalds1da177e2005-04-16 15:20:36 -070015337out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015338 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000015339 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015340 return;
15341
15342out_no_vpd:
Joe Perches41535772013-02-16 11:20:04 +000015343 if (tg3_asic_rev(tp) == ASIC_REV_5717) {
Michael Chan79d49692012-11-05 14:26:29 +000015344 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15345 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C)
Matt Carlson37a949c2010-09-30 10:34:33 +000015346 strcpy(tp->board_part_number, "BCM5717");
15347 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
15348 strcpy(tp->board_part_number, "BCM5718");
15349 else
15350 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015351 } else if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015352 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
15353 strcpy(tp->board_part_number, "BCM57780");
15354 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
15355 strcpy(tp->board_part_number, "BCM57760");
15356 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
15357 strcpy(tp->board_part_number, "BCM57790");
15358 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
15359 strcpy(tp->board_part_number, "BCM57788");
15360 else
15361 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015362 } else if (tg3_asic_rev(tp) == ASIC_REV_57765) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015363 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
15364 strcpy(tp->board_part_number, "BCM57761");
15365 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
15366 strcpy(tp->board_part_number, "BCM57765");
15367 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
15368 strcpy(tp->board_part_number, "BCM57781");
15369 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
15370 strcpy(tp->board_part_number, "BCM57785");
15371 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
15372 strcpy(tp->board_part_number, "BCM57791");
15373 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
15374 strcpy(tp->board_part_number, "BCM57795");
15375 else
15376 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015377 } else if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlson55086ad2011-12-14 11:09:59 +000015378 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
15379 strcpy(tp->board_part_number, "BCM57762");
15380 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
15381 strcpy(tp->board_part_number, "BCM57766");
15382 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
15383 strcpy(tp->board_part_number, "BCM57782");
15384 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15385 strcpy(tp->board_part_number, "BCM57786");
15386 else
15387 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015388 } else if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015389 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000015390 } else {
15391nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070015392 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000015393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015394}
15395
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015396static int tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
Matt Carlson9c8a6202007-10-21 16:16:08 -070015397{
15398 u32 val;
15399
Matt Carlsone4f34112009-02-25 14:25:00 +000015400 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015401 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015402 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015403 val != 0)
15404 return 0;
15405
15406 return 1;
15407}
15408
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015409static void tg3_read_bc_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015410{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015411 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000015412 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015413 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015414
15415 if (tg3_nvram_read(tp, 0xc, &offset) ||
15416 tg3_nvram_read(tp, 0x4, &start))
15417 return;
15418
15419 offset = tg3_nvram_logical_addr(tp, offset);
15420
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015421 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015422 return;
15423
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015424 if ((val & 0xfc000000) == 0x0c000000) {
15425 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015426 return;
15427
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015428 if (val == 0)
15429 newver = true;
15430 }
15431
Matt Carlson75f99362010-04-05 10:19:24 +000015432 dst_off = strlen(tp->fw_ver);
15433
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015434 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000015435 if (TG3_VER_SIZE - dst_off < 16 ||
15436 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015437 return;
15438
15439 offset = offset + ver_offset - start;
15440 for (i = 0; i < 16; i += 4) {
15441 __be32 v;
15442 if (tg3_nvram_read_be32(tp, offset + i, &v))
15443 return;
15444
Matt Carlson75f99362010-04-05 10:19:24 +000015445 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015446 }
15447 } else {
15448 u32 major, minor;
15449
15450 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
15451 return;
15452
15453 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
15454 TG3_NVM_BCVER_MAJSFT;
15455 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000015456 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
15457 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015458 }
15459}
15460
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015461static void tg3_read_hwsb_ver(struct tg3 *tp)
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015462{
15463 u32 val, major, minor;
15464
15465 /* Use native endian representation */
15466 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
15467 return;
15468
15469 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
15470 TG3_NVM_HWSB_CFG1_MAJSFT;
15471 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
15472 TG3_NVM_HWSB_CFG1_MINSFT;
15473
15474 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
15475}
15476
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015477static void tg3_read_sb_ver(struct tg3 *tp, u32 val)
Matt Carlsondfe00d72008-11-21 17:19:41 -080015478{
15479 u32 offset, major, minor, build;
15480
Matt Carlson75f99362010-04-05 10:19:24 +000015481 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015482
15483 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
15484 return;
15485
15486 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
15487 case TG3_EEPROM_SB_REVISION_0:
15488 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
15489 break;
15490 case TG3_EEPROM_SB_REVISION_2:
15491 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
15492 break;
15493 case TG3_EEPROM_SB_REVISION_3:
15494 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
15495 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000015496 case TG3_EEPROM_SB_REVISION_4:
15497 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
15498 break;
15499 case TG3_EEPROM_SB_REVISION_5:
15500 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
15501 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000015502 case TG3_EEPROM_SB_REVISION_6:
15503 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
15504 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015505 default:
15506 return;
15507 }
15508
Matt Carlsone4f34112009-02-25 14:25:00 +000015509 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080015510 return;
15511
15512 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
15513 TG3_EEPROM_SB_EDH_BLD_SHFT;
15514 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
15515 TG3_EEPROM_SB_EDH_MAJ_SHFT;
15516 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
15517
15518 if (minor > 99 || build > 26)
15519 return;
15520
Matt Carlson75f99362010-04-05 10:19:24 +000015521 offset = strlen(tp->fw_ver);
15522 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
15523 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015524
15525 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000015526 offset = strlen(tp->fw_ver);
15527 if (offset < TG3_VER_SIZE - 1)
15528 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015529 }
15530}
15531
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015532static void tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080015533{
15534 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015535 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070015536
15537 for (offset = TG3_NVM_DIR_START;
15538 offset < TG3_NVM_DIR_END;
15539 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000015540 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015541 return;
15542
15543 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
15544 break;
15545 }
15546
15547 if (offset == TG3_NVM_DIR_END)
15548 return;
15549
Joe Perches63c3a662011-04-26 08:12:10 +000015550 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015551 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000015552 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015553 return;
15554
Matt Carlsone4f34112009-02-25 14:25:00 +000015555 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015556 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015557 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015558 return;
15559
15560 offset += val - start;
15561
Matt Carlsonacd9c112009-02-25 14:26:33 +000015562 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015563
Matt Carlsonacd9c112009-02-25 14:26:33 +000015564 tp->fw_ver[vlen++] = ',';
15565 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070015566
15567 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000015568 __be32 v;
15569 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015570 return;
15571
Al Virob9fc7dc2007-12-17 22:59:57 -080015572 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015573
Matt Carlsonacd9c112009-02-25 14:26:33 +000015574 if (vlen > TG3_VER_SIZE - sizeof(v)) {
15575 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015576 break;
15577 }
15578
Matt Carlsonacd9c112009-02-25 14:26:33 +000015579 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
15580 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015581 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000015582}
15583
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015584static void tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000015585{
Matt Carlson7fd76442009-02-25 14:27:20 +000015586 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000015587
15588 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
15589 if (apedata != APE_SEG_SIG_MAGIC)
15590 return;
15591
15592 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
15593 if (!(apedata & APE_FW_STATUS_READY))
15594 return;
15595
Michael Chan165f4d12012-07-16 16:23:59 +000015596 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
15597 tg3_flag_set(tp, APE_HAS_NCSI);
15598}
15599
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015600static void tg3_read_dash_ver(struct tg3 *tp)
Michael Chan165f4d12012-07-16 16:23:59 +000015601{
15602 int vlen;
15603 u32 apedata;
15604 char *fwtype;
15605
Matt Carlson7fd76442009-02-25 14:27:20 +000015606 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
15607
Michael Chan165f4d12012-07-16 16:23:59 +000015608 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000015609 fwtype = "NCSI";
Michael Chanc86a8562013-01-06 12:51:08 +000015610 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725)
15611 fwtype = "SMASH";
Michael Chan165f4d12012-07-16 16:23:59 +000015612 else
Matt Carlsonecc79642010-08-02 11:26:01 +000015613 fwtype = "DASH";
15614
Matt Carlson7fd76442009-02-25 14:27:20 +000015615 vlen = strlen(tp->fw_ver);
15616
Matt Carlsonecc79642010-08-02 11:26:01 +000015617 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
15618 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000015619 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
15620 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
15621 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
15622 (apedata & APE_FW_VERSION_BLDMSK));
15623}
15624
Michael Chanc86a8562013-01-06 12:51:08 +000015625static void tg3_read_otp_ver(struct tg3 *tp)
15626{
15627 u32 val, val2;
15628
Joe Perches41535772013-02-16 11:20:04 +000015629 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000015630 return;
15631
15632 if (!tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0, &val) &&
15633 !tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0 + 4, &val2) &&
15634 TG3_OTP_MAGIC0_VALID(val)) {
15635 u64 val64 = (u64) val << 32 | val2;
15636 u32 ver = 0;
15637 int i, vlen;
15638
15639 for (i = 0; i < 7; i++) {
15640 if ((val64 & 0xff) == 0)
15641 break;
15642 ver = val64 & 0xff;
15643 val64 >>= 8;
15644 }
15645 vlen = strlen(tp->fw_ver);
15646 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " .%02d", ver);
15647 }
15648}
15649
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015650static void tg3_read_fw_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015651{
15652 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000015653 bool vpd_vers = false;
15654
15655 if (tp->fw_ver[0] != 0)
15656 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015657
Joe Perches63c3a662011-04-26 08:12:10 +000015658 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000015659 strcat(tp->fw_ver, "sb");
Michael Chanc86a8562013-01-06 12:51:08 +000015660 tg3_read_otp_ver(tp);
Matt Carlsondf259d82009-04-20 06:57:14 +000015661 return;
15662 }
15663
Matt Carlsonacd9c112009-02-25 14:26:33 +000015664 if (tg3_nvram_read(tp, 0, &val))
15665 return;
15666
15667 if (val == TG3_EEPROM_MAGIC)
15668 tg3_read_bc_ver(tp);
15669 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
15670 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015671 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
15672 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015673
Michael Chan165f4d12012-07-16 16:23:59 +000015674 if (tg3_flag(tp, ENABLE_ASF)) {
15675 if (tg3_flag(tp, ENABLE_APE)) {
15676 tg3_probe_ncsi(tp);
15677 if (!vpd_vers)
15678 tg3_read_dash_ver(tp);
15679 } else if (!vpd_vers) {
15680 tg3_read_mgmtfw_ver(tp);
15681 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000015682 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070015683
15684 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080015685}
15686
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015687static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
15688{
Joe Perches63c3a662011-04-26 08:12:10 +000015689 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015690 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000015691 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015692 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015693 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000015694 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015695}
15696
Matt Carlson41434702011-03-09 16:58:22 +000015697static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015698 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
15699 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
15700 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
15701 { },
15702};
15703
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015704static struct pci_dev *tg3_find_peer(struct tg3 *tp)
Matt Carlson16c7fa72012-02-13 10:20:10 +000015705{
15706 struct pci_dev *peer;
15707 unsigned int func, devnr = tp->pdev->devfn & ~7;
15708
15709 for (func = 0; func < 8; func++) {
15710 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15711 if (peer && peer != tp->pdev)
15712 break;
15713 pci_dev_put(peer);
15714 }
15715 /* 5704 can be configured in single-port mode, set peer to
15716 * tp->pdev in that case.
15717 */
15718 if (!peer) {
15719 peer = tp->pdev;
15720 return peer;
15721 }
15722
15723 /*
15724 * We don't need to keep the refcount elevated; there's no way
15725 * to remove one half of this device without removing the other
15726 */
15727 pci_dev_put(peer);
15728
15729 return peer;
15730}
15731
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015732static void tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
Matt Carlson42b123b2012-02-13 15:20:13 +000015733{
15734 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000015735 if (tg3_asic_rev(tp) == ASIC_REV_USE_PROD_ID_REG) {
Matt Carlson42b123b2012-02-13 15:20:13 +000015736 u32 reg;
15737
15738 /* All devices that use the alternate
15739 * ASIC REV location have a CPMU.
15740 */
15741 tg3_flag_set(tp, CPMU_PRESENT);
15742
15743 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000015744 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015745 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15746 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000015747 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
15748 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
15749 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
15750 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727)
Matt Carlson42b123b2012-02-13 15:20:13 +000015751 reg = TG3PCI_GEN2_PRODID_ASICREV;
15752 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
15753 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
15754 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
15755 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
15756 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
15757 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
15758 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
15759 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
15760 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
15761 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15762 reg = TG3PCI_GEN15_PRODID_ASICREV;
15763 else
15764 reg = TG3PCI_PRODID_ASICREV;
15765
15766 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
15767 }
15768
15769 /* Wrong chip ID in 5752 A0. This code can be removed later
15770 * as A0 is not in production.
15771 */
Joe Perches41535772013-02-16 11:20:04 +000015772 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5752_A0_HW)
Matt Carlson42b123b2012-02-13 15:20:13 +000015773 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
15774
Joe Perches41535772013-02-16 11:20:04 +000015775 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_C0)
Michael Chan79d49692012-11-05 14:26:29 +000015776 tp->pci_chip_rev_id = CHIPREV_ID_5720_A0;
15777
Joe Perches41535772013-02-16 11:20:04 +000015778 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15779 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15780 tg3_asic_rev(tp) == ASIC_REV_5720)
Matt Carlson42b123b2012-02-13 15:20:13 +000015781 tg3_flag_set(tp, 5717_PLUS);
15782
Joe Perches41535772013-02-16 11:20:04 +000015783 if (tg3_asic_rev(tp) == ASIC_REV_57765 ||
15784 tg3_asic_rev(tp) == ASIC_REV_57766)
Matt Carlson42b123b2012-02-13 15:20:13 +000015785 tg3_flag_set(tp, 57765_CLASS);
15786
Michael Chanc65a17f2013-01-06 12:51:07 +000015787 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015788 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson42b123b2012-02-13 15:20:13 +000015789 tg3_flag_set(tp, 57765_PLUS);
15790
15791 /* Intentionally exclude ASIC_REV_5906 */
Joe Perches41535772013-02-16 11:20:04 +000015792 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
15793 tg3_asic_rev(tp) == ASIC_REV_5787 ||
15794 tg3_asic_rev(tp) == ASIC_REV_5784 ||
15795 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15796 tg3_asic_rev(tp) == ASIC_REV_5785 ||
15797 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015798 tg3_flag(tp, 57765_PLUS))
15799 tg3_flag_set(tp, 5755_PLUS);
15800
Joe Perches41535772013-02-16 11:20:04 +000015801 if (tg3_asic_rev(tp) == ASIC_REV_5780 ||
15802 tg3_asic_rev(tp) == ASIC_REV_5714)
Matt Carlson42b123b2012-02-13 15:20:13 +000015803 tg3_flag_set(tp, 5780_CLASS);
15804
Joe Perches41535772013-02-16 11:20:04 +000015805 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
15806 tg3_asic_rev(tp) == ASIC_REV_5752 ||
15807 tg3_asic_rev(tp) == ASIC_REV_5906 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015808 tg3_flag(tp, 5755_PLUS) ||
15809 tg3_flag(tp, 5780_CLASS))
15810 tg3_flag_set(tp, 5750_PLUS);
15811
Joe Perches41535772013-02-16 11:20:04 +000015812 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015813 tg3_flag(tp, 5750_PLUS))
15814 tg3_flag_set(tp, 5705_PLUS);
15815}
15816
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015817static bool tg3_10_100_only_device(struct tg3 *tp,
15818 const struct pci_device_id *ent)
15819{
15820 u32 grc_misc_cfg = tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK;
15821
Joe Perches41535772013-02-16 11:20:04 +000015822 if ((tg3_asic_rev(tp) == ASIC_REV_5703 &&
15823 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015824 (tp->phy_flags & TG3_PHYFLG_IS_FET))
15825 return true;
15826
15827 if (ent->driver_data & TG3_DRV_DATA_FLAG_10_100_ONLY) {
Joe Perches41535772013-02-16 11:20:04 +000015828 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015829 if (ent->driver_data & TG3_DRV_DATA_FLAG_5705_10_100)
15830 return true;
15831 } else {
15832 return true;
15833 }
15834 }
15835
15836 return false;
15837}
15838
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000015839static int tg3_get_invariants(struct tg3 *tp, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015840{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015841 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015842 u32 pci_state_reg, grc_misc_cfg;
15843 u32 val;
15844 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015845 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015846
Linus Torvalds1da177e2005-04-16 15:20:36 -070015847 /* Force memory write invalidate off. If we leave it on,
15848 * then on 5700_BX chips we have to enable a workaround.
15849 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
15850 * to match the cacheline size. The Broadcom driver have this
15851 * workaround but turns MWI off all the times so never uses
15852 * it. This seems to suggest that the workaround is insufficient.
15853 */
15854 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15855 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
15856 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15857
Matt Carlson16821282011-07-13 09:27:28 +000015858 /* Important! -- Make sure register accesses are byteswapped
15859 * correctly. Also, for those chips that require it, make
15860 * sure that indirect register accesses are enabled before
15861 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015862 */
15863 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15864 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000015865 tp->misc_host_ctrl |= (misc_ctrl_reg &
15866 MISC_HOST_CTRL_CHIPREV);
15867 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15868 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015869
Matt Carlson42b123b2012-02-13 15:20:13 +000015870 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070015871
Michael Chan68929142005-08-09 20:17:14 -070015872 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
15873 * we need to disable memory and use config. cycles
15874 * only to access all registers. The 5702/03 chips
15875 * can mistakenly decode the special cycles from the
15876 * ICH chipsets as memory write cycles, causing corruption
15877 * of register and memory space. Only certain ICH bridges
15878 * will drive special cycles with non-zero data during the
15879 * address phase which can fall within the 5703's address
15880 * range. This is not an ICH bug as the PCI spec allows
15881 * non-zero address during special cycles. However, only
15882 * these ICH bridges are known to drive non-zero addresses
15883 * during special cycles.
15884 *
15885 * Since special cycles do not cross PCI bridges, we only
15886 * enable this workaround if the 5703 is on the secondary
15887 * bus of these ICH bridges.
15888 */
Joe Perches41535772013-02-16 11:20:04 +000015889 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1) ||
15890 (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A2)) {
Michael Chan68929142005-08-09 20:17:14 -070015891 static struct tg3_dev_id {
15892 u32 vendor;
15893 u32 device;
15894 u32 rev;
15895 } ich_chipsets[] = {
15896 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
15897 PCI_ANY_ID },
15898 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
15899 PCI_ANY_ID },
15900 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
15901 0xa },
15902 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
15903 PCI_ANY_ID },
15904 { },
15905 };
15906 struct tg3_dev_id *pci_id = &ich_chipsets[0];
15907 struct pci_dev *bridge = NULL;
15908
15909 while (pci_id->vendor != 0) {
15910 bridge = pci_get_device(pci_id->vendor, pci_id->device,
15911 bridge);
15912 if (!bridge) {
15913 pci_id++;
15914 continue;
15915 }
15916 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070015917 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070015918 continue;
15919 }
15920 if (bridge->subordinate &&
15921 (bridge->subordinate->number ==
15922 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015923 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070015924 pci_dev_put(bridge);
15925 break;
15926 }
15927 }
15928 }
15929
Joe Perches41535772013-02-16 11:20:04 +000015930 if (tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson41588ba12008-04-19 18:12:33 -070015931 static struct tg3_dev_id {
15932 u32 vendor;
15933 u32 device;
15934 } bridge_chipsets[] = {
15935 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
15936 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
15937 { },
15938 };
15939 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
15940 struct pci_dev *bridge = NULL;
15941
15942 while (pci_id->vendor != 0) {
15943 bridge = pci_get_device(pci_id->vendor,
15944 pci_id->device,
15945 bridge);
15946 if (!bridge) {
15947 pci_id++;
15948 continue;
15949 }
15950 if (bridge->subordinate &&
15951 (bridge->subordinate->number <=
15952 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015953 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba12008-04-19 18:12:33 -070015954 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015955 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba12008-04-19 18:12:33 -070015956 pci_dev_put(bridge);
15957 break;
15958 }
15959 }
15960 }
15961
Michael Chan4a29cc22006-03-19 13:21:12 -080015962 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
15963 * DMA addresses > 40-bit. This bridge may have other additional
15964 * 57xx devices behind it in some 4-port NIC designs for example.
15965 * Any tg3 device found behind the bridge will also need the 40-bit
15966 * DMA workaround.
15967 */
Matt Carlson42b123b2012-02-13 15:20:13 +000015968 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015969 tg3_flag_set(tp, 40BIT_DMA_BUG);
Yijing Wang0f847582013-08-08 21:03:12 +080015970 tp->msi_cap = tp->pdev->msi_cap;
Matt Carlson859a588792010-04-05 10:19:28 +000015971 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080015972 struct pci_dev *bridge = NULL;
15973
15974 do {
15975 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
15976 PCI_DEVICE_ID_SERVERWORKS_EPB,
15977 bridge);
15978 if (bridge && bridge->subordinate &&
15979 (bridge->subordinate->number <=
15980 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015981 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080015982 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015983 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080015984 pci_dev_put(bridge);
15985 break;
15986 }
15987 } while (bridge);
15988 }
Michael Chan4cf78e42005-07-25 12:29:19 -070015989
Joe Perches41535772013-02-16 11:20:04 +000015990 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
15991 tg3_asic_rev(tp) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070015992 tp->pdev_peer = tg3_find_peer(tp);
15993
Matt Carlson507399f2009-11-13 13:03:37 +000015994 /* Determine TSO capabilities */
Joe Perches41535772013-02-16 11:20:04 +000015995 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000015996 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000015997 else if (tg3_flag(tp, 57765_PLUS))
15998 tg3_flag_set(tp, HW_TSO_3);
15999 else if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000016000 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000016001 tg3_flag_set(tp, HW_TSO_2);
16002 else if (tg3_flag(tp, 5750_PLUS)) {
16003 tg3_flag_set(tp, HW_TSO_1);
16004 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016005 if (tg3_asic_rev(tp) == ASIC_REV_5750 &&
16006 tg3_chip_rev_id(tp) >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000016007 tg3_flag_clear(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016008 } else if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16009 tg3_asic_rev(tp) != ASIC_REV_5701 &&
16010 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Matt Carlson1caf13e2013-03-06 17:02:29 +000016011 tg3_flag_set(tp, FW_TSO);
16012 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016013 if (tg3_asic_rev(tp) == ASIC_REV_5705)
Matt Carlson507399f2009-11-13 13:03:37 +000016014 tp->fw_needed = FIRMWARE_TG3TSO5;
16015 else
16016 tp->fw_needed = FIRMWARE_TG3TSO;
16017 }
16018
Matt Carlsondabc5c62011-05-19 12:12:52 +000016019 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000016020 if (tg3_flag(tp, HW_TSO_1) ||
16021 tg3_flag(tp, HW_TSO_2) ||
16022 tg3_flag(tp, HW_TSO_3) ||
Matt Carlson1caf13e2013-03-06 17:02:29 +000016023 tg3_flag(tp, FW_TSO)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016024 /* For firmware TSO, assume ASF is disabled.
16025 * We'll disable TSO later if we discover ASF
16026 * is enabled in tg3_get_eeprom_hw_cfg().
16027 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000016028 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016029 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000016030 tg3_flag_clear(tp, TSO_CAPABLE);
16031 tg3_flag_clear(tp, TSO_BUG);
16032 tp->fw_needed = NULL;
16033 }
16034
Joe Perches41535772013-02-16 11:20:04 +000016035 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0)
Matt Carlsondabc5c62011-05-19 12:12:52 +000016036 tp->fw_needed = FIRMWARE_TG3;
16037
Nithin Sujirc4dab502013-03-06 17:02:34 +000016038 if (tg3_asic_rev(tp) == ASIC_REV_57766)
16039 tp->fw_needed = FIRMWARE_TG357766;
16040
Matt Carlson507399f2009-11-13 13:03:37 +000016041 tp->irq_max = 1;
16042
Joe Perches63c3a662011-04-26 08:12:10 +000016043 if (tg3_flag(tp, 5750_PLUS)) {
16044 tg3_flag_set(tp, SUPPORT_MSI);
Joe Perches41535772013-02-16 11:20:04 +000016045 if (tg3_chip_rev(tp) == CHIPREV_5750_AX ||
16046 tg3_chip_rev(tp) == CHIPREV_5750_BX ||
16047 (tg3_asic_rev(tp) == ASIC_REV_5714 &&
16048 tg3_chip_rev_id(tp) <= CHIPREV_ID_5714_A2 &&
Michael Chan7544b092007-05-05 13:08:32 -070016049 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000016050 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070016051
Joe Perches63c3a662011-04-26 08:12:10 +000016052 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000016053 tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000016054 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070016055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016056
Joe Perches63c3a662011-04-26 08:12:10 +000016057 if (tg3_flag(tp, 57765_PLUS)) {
16058 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000016059 tp->irq_max = TG3_IRQ_MAX_VECS;
16060 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000016061 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000016062
Michael Chan91024262012-09-28 07:12:38 +000016063 tp->txq_max = 1;
16064 tp->rxq_max = 1;
16065 if (tp->irq_max > 1) {
16066 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
16067 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
16068
Joe Perches41535772013-02-16 11:20:04 +000016069 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
16070 tg3_asic_rev(tp) == ASIC_REV_5720)
Michael Chan91024262012-09-28 07:12:38 +000016071 tp->txq_max = tp->irq_max - 1;
16072 }
16073
Matt Carlsonb7abee62012-06-07 12:56:54 +000016074 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000016075 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000016076 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000016077
Joe Perches41535772013-02-16 11:20:04 +000016078 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000016079 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000016080
Joe Perches41535772013-02-16 11:20:04 +000016081 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16082 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16083 tg3_asic_rev(tp) == ASIC_REV_5720 ||
16084 tg3_asic_rev(tp) == ASIC_REV_5762)
Joe Perches63c3a662011-04-26 08:12:10 +000016085 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000016086
Joe Perches63c3a662011-04-26 08:12:10 +000016087 if (tg3_flag(tp, 57765_PLUS) &&
Joe Perches41535772013-02-16 11:20:04 +000016088 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000016089 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000016090
Joe Perches63c3a662011-04-26 08:12:10 +000016091 if (!tg3_flag(tp, 5705_PLUS) ||
16092 tg3_flag(tp, 5780_CLASS) ||
16093 tg3_flag(tp, USE_JUMBO_BDFLAG))
16094 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070016095
Matt Carlson52f44902008-11-21 17:17:04 -080016096 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
16097 &pci_state_reg);
16098
Jon Mason708ebb3a2011-06-27 12:56:50 +000016099 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080016100 u16 lnkctl;
16101
Joe Perches63c3a662011-04-26 08:12:10 +000016102 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080016103
Jiang Liu0f49bfb2012-08-20 13:28:20 -060016104 pcie_capability_read_word(tp->pdev, PCI_EXP_LNKCTL, &lnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080016105 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Joe Perches41535772013-02-16 11:20:04 +000016106 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000016107 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000016108 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000016109 }
Joe Perches41535772013-02-16 11:20:04 +000016110 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
16111 tg3_asic_rev(tp) == ASIC_REV_5761 ||
16112 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A0 ||
16113 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000016114 tg3_flag_set(tp, CLKREQ_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016115 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000016116 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080016117 }
Joe Perches41535772013-02-16 11:20:04 +000016118 } else if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000016119 /* BCM5785 devices are effectively PCIe devices, and should
16120 * follow PCIe codepaths, but do not have a PCIe capabilities
16121 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000016122 */
Joe Perches63c3a662011-04-26 08:12:10 +000016123 tg3_flag_set(tp, PCI_EXPRESS);
16124 } else if (!tg3_flag(tp, 5705_PLUS) ||
16125 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080016126 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
16127 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000016128 dev_err(&tp->pdev->dev,
16129 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080016130 return -EIO;
16131 }
16132
16133 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000016134 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080016135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016136
Michael Chan399de502005-10-03 14:02:39 -070016137 /* If we have an AMD 762 or VIA K8T800 chipset, write
16138 * reordering to the mailbox registers done by the host
16139 * controller can cause major troubles. We read back from
16140 * every mailbox register write to force the writes to be
16141 * posted to the chip in order.
16142 */
Matt Carlson41434702011-03-09 16:58:22 +000016143 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000016144 !tg3_flag(tp, PCI_EXPRESS))
16145 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070016146
Matt Carlson69fc4052008-12-21 20:19:57 -080016147 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
16148 &tp->pci_cacheline_sz);
16149 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
16150 &tp->pci_lat_timer);
Joe Perches41535772013-02-16 11:20:04 +000016151 if (tg3_asic_rev(tp) == ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016152 tp->pci_lat_timer < 64) {
16153 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080016154 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
16155 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016156 }
16157
Matt Carlson16821282011-07-13 09:27:28 +000016158 /* Important! -- It is critical that the PCI-X hw workaround
16159 * situation is decided before the first MMIO register access.
16160 */
Joe Perches41535772013-02-16 11:20:04 +000016161 if (tg3_chip_rev(tp) == CHIPREV_5700_BX) {
Matt Carlson52f44902008-11-21 17:17:04 -080016162 /* 5700 BX chips need to have their TX producer index
16163 * mailboxes written twice to workaround a bug.
16164 */
Joe Perches63c3a662011-04-26 08:12:10 +000016165 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070016166
Matt Carlson52f44902008-11-21 17:17:04 -080016167 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016168 *
16169 * The workaround is to use indirect register accesses
16170 * for all chip writes not to mailbox registers.
16171 */
Joe Perches63c3a662011-04-26 08:12:10 +000016172 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016173 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016174
Joe Perches63c3a662011-04-26 08:12:10 +000016175 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016176
16177 /* The chip can have it's power management PCI config
16178 * space registers clobbered due to this bug.
16179 * So explicitly force the chip into D0 here.
16180 */
Matt Carlson9974a352007-10-07 23:27:28 -070016181 pci_read_config_dword(tp->pdev,
16182 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016183 &pm_reg);
16184 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
16185 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070016186 pci_write_config_dword(tp->pdev,
16187 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016188 pm_reg);
16189
16190 /* Also, force SERR#/PERR# in PCI command. */
16191 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
16192 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
16193 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
16194 }
16195 }
16196
Linus Torvalds1da177e2005-04-16 15:20:36 -070016197 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000016198 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016199 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000016200 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016201
16202 /* Chip-specific fixup from Broadcom driver */
Joe Perches41535772013-02-16 11:20:04 +000016203 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016204 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
16205 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
16206 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
16207 }
16208
Michael Chan1ee582d2005-08-09 20:16:46 -070016209 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070016210 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070016211 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070016212 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070016213 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070016214 tp->write32_tx_mbox = tg3_write32;
16215 tp->write32_rx_mbox = tg3_write32;
16216
16217 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000016218 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070016219 tp->write32 = tg3_write_indirect_reg32;
Joe Perches41535772013-02-16 11:20:04 +000016220 else if (tg3_asic_rev(tp) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016221 (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +000016222 tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0)) {
Matt Carlson98efd8a2007-05-05 12:47:25 -070016223 /*
16224 * Back to back register writes can cause problems on these
16225 * chips, the workaround is to read back all reg writes
16226 * except those to mailbox regs.
16227 *
16228 * See tg3_write_indirect_reg32().
16229 */
Michael Chan1ee582d2005-08-09 20:16:46 -070016230 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070016231 }
16232
Joe Perches63c3a662011-04-26 08:12:10 +000016233 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070016234 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000016235 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070016236 tp->write32_rx_mbox = tg3_write_flush_reg32;
16237 }
Michael Chan20094932005-08-09 20:16:32 -070016238
Joe Perches63c3a662011-04-26 08:12:10 +000016239 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070016240 tp->read32 = tg3_read_indirect_reg32;
16241 tp->write32 = tg3_write_indirect_reg32;
16242 tp->read32_mbox = tg3_read_indirect_mbox;
16243 tp->write32_mbox = tg3_write_indirect_mbox;
16244 tp->write32_tx_mbox = tg3_write_indirect_mbox;
16245 tp->write32_rx_mbox = tg3_write_indirect_mbox;
16246
16247 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070016248 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070016249
16250 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
16251 pci_cmd &= ~PCI_COMMAND_MEMORY;
16252 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
16253 }
Joe Perches41535772013-02-16 11:20:04 +000016254 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070016255 tp->read32_mbox = tg3_read32_mbox_5906;
16256 tp->write32_mbox = tg3_write32_mbox_5906;
16257 tp->write32_tx_mbox = tg3_write32_mbox_5906;
16258 tp->write32_rx_mbox = tg3_write32_mbox_5906;
16259 }
Michael Chan68929142005-08-09 20:17:14 -070016260
Michael Chanbbadf502006-04-06 21:46:34 -070016261 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016262 (tg3_flag(tp, PCIX_MODE) &&
Joe Perches41535772013-02-16 11:20:04 +000016263 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16264 tg3_asic_rev(tp) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000016265 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070016266
Matt Carlson16821282011-07-13 09:27:28 +000016267 /* The memory arbiter has to be enabled in order for SRAM accesses
16268 * to succeed. Normally on powerup the tg3 chip firmware will make
16269 * sure it is enabled, but other entities such as system netboot
16270 * code might disable it.
16271 */
16272 val = tr32(MEMARB_MODE);
16273 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
16274
Matt Carlson9dc5e342011-11-04 09:15:02 +000016275 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
Joe Perches41535772013-02-16 11:20:04 +000016276 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Matt Carlson9dc5e342011-11-04 09:15:02 +000016277 tg3_flag(tp, 5780_CLASS)) {
16278 if (tg3_flag(tp, PCIX_MODE)) {
16279 pci_read_config_dword(tp->pdev,
16280 tp->pcix_cap + PCI_X_STATUS,
16281 &val);
16282 tp->pci_fn = val & 0x7;
16283 }
Joe Perches41535772013-02-16 11:20:04 +000016284 } else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16285 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16286 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson9dc5e342011-11-04 09:15:02 +000016287 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
Michael Chan857001f2013-01-06 12:51:09 +000016288 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) != NIC_SRAM_CPMUSTAT_SIG)
16289 val = tr32(TG3_CPMU_STATUS);
16290
Joe Perches41535772013-02-16 11:20:04 +000016291 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Michael Chan857001f2013-01-06 12:51:09 +000016292 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5717) ? 1 : 0;
16293 else
Matt Carlson9dc5e342011-11-04 09:15:02 +000016294 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
16295 TG3_CPMU_STATUS_FSHFT_5719;
Matt Carlson69f11c92011-07-13 09:27:30 +000016296 }
16297
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016298 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
16299 tp->write32_tx_mbox = tg3_write_flush_reg32;
16300 tp->write32_rx_mbox = tg3_write_flush_reg32;
16301 }
16302
Michael Chan7d0c41e2005-04-21 17:06:20 -070016303 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000016304 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070016305 * determined before calling tg3_set_power_state() so that
16306 * we know whether or not to switch out of Vaux power.
16307 * When the flag is set, it means that GPIO1 is used for eeprom
16308 * write protect and also implies that it is a LOM where GPIOs
16309 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040016310 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070016311 tg3_get_eeprom_hw_cfg(tp);
16312
Matt Carlson1caf13e2013-03-06 17:02:29 +000016313 if (tg3_flag(tp, FW_TSO) && tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016314 tg3_flag_clear(tp, TSO_CAPABLE);
16315 tg3_flag_clear(tp, TSO_BUG);
16316 tp->fw_needed = NULL;
16317 }
16318
Joe Perches63c3a662011-04-26 08:12:10 +000016319 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070016320 /* Allow reads and writes to the
16321 * APE register and memory space.
16322 */
16323 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000016324 PCISTATE_ALLOW_APE_SHMEM_WR |
16325 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070016326 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
16327 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000016328
16329 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070016330 }
16331
Matt Carlson16821282011-07-13 09:27:28 +000016332 /* Set up tp->grc_local_ctrl before calling
16333 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
16334 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070016335 * It is also used as eeprom write protect on LOMs.
16336 */
16337 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Joe Perches41535772013-02-16 11:20:04 +000016338 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016339 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070016340 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
16341 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070016342 /* Unused GPIO3 must be driven as output on 5752 because there
16343 * are no pull-up resistors on unused GPIO pins.
16344 */
Joe Perches41535772013-02-16 11:20:04 +000016345 else if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070016346 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070016347
Joe Perches41535772013-02-16 11:20:04 +000016348 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16349 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000016350 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080016351 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
16352
Matt Carlson8d519ab2009-04-20 06:58:01 +000016353 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
16354 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016355 /* Turn off the debug UART. */
16356 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000016357 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016358 /* Keep VMain power. */
16359 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
16360 GRC_LCLCTRL_GPIO_OUTPUT0;
16361 }
16362
Joe Perches41535772013-02-16 11:20:04 +000016363 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000016364 tp->grc_local_ctrl |=
16365 tr32(GRC_LOCAL_CTRL) & GRC_LCLCTRL_GPIO_UART_SEL;
16366
Matt Carlson16821282011-07-13 09:27:28 +000016367 /* Switch out of Vaux if it is a NIC */
16368 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016369
Linus Torvalds1da177e2005-04-16 15:20:36 -070016370 /* Derive initial jumbo mode from MTU assigned in
16371 * ether_setup() via the alloc_etherdev() call
16372 */
Joe Perches63c3a662011-04-26 08:12:10 +000016373 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
16374 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016375
16376 /* Determine WakeOnLan speed to use. */
Joe Perches41535772013-02-16 11:20:04 +000016377 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16378 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16379 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16380 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000016381 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016382 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000016383 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016384 }
16385
Joe Perches41535772013-02-16 11:20:04 +000016386 if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016387 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000016388
Linus Torvalds1da177e2005-04-16 15:20:36 -070016389 /* A few boards don't want Ethernet@WireSpeed phy feature */
Joe Perches41535772013-02-16 11:20:04 +000016390 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16391 (tg3_asic_rev(tp) == ASIC_REV_5705 &&
16392 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) &&
16393 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016394 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
16395 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
16396 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016397
Joe Perches41535772013-02-16 11:20:04 +000016398 if (tg3_chip_rev(tp) == CHIPREV_5703_AX ||
16399 tg3_chip_rev(tp) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016400 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Joe Perches41535772013-02-16 11:20:04 +000016401 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016402 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016403
Joe Perches63c3a662011-04-26 08:12:10 +000016404 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016405 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +000016406 tg3_asic_rev(tp) != ASIC_REV_5785 &&
16407 tg3_asic_rev(tp) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016408 !tg3_flag(tp, 57765_PLUS)) {
Joe Perches41535772013-02-16 11:20:04 +000016409 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16410 tg3_asic_rev(tp) == ASIC_REV_5787 ||
16411 tg3_asic_rev(tp) == ASIC_REV_5784 ||
16412 tg3_asic_rev(tp) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080016413 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
16414 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016415 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080016416 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016417 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080016418 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016419 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070016420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016421
Joe Perches41535772013-02-16 11:20:04 +000016422 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
16423 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -070016424 tp->phy_otp = tg3_read_otp_phycfg(tp);
16425 if (tp->phy_otp == 0)
16426 tp->phy_otp = TG3_OTP_DEFAULT;
16427 }
16428
Joe Perches63c3a662011-04-26 08:12:10 +000016429 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070016430 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
16431 else
16432 tp->mi_mode = MAC_MI_MODE_BASE;
16433
Linus Torvalds1da177e2005-04-16 15:20:36 -070016434 tp->coalesce_mode = 0;
Joe Perches41535772013-02-16 11:20:04 +000016435 if (tg3_chip_rev(tp) != CHIPREV_5700_AX &&
16436 tg3_chip_rev(tp) != CHIPREV_5700_BX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016437 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
16438
Matt Carlson4d958472011-04-20 07:57:35 +000016439 /* Set these bits to enable statistics workaround. */
Joe Perches41535772013-02-16 11:20:04 +000016440 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16441 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
16442 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000016443 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
16444 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
16445 }
16446
Joe Perches41535772013-02-16 11:20:04 +000016447 if (tg3_asic_rev(tp) == ASIC_REV_5785 ||
16448 tg3_asic_rev(tp) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000016449 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070016450
Matt Carlson158d7ab2008-05-29 01:37:54 -070016451 err = tg3_mdio_init(tp);
16452 if (err)
16453 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016454
16455 /* Initialize data/descriptor byte/word swapping. */
16456 val = tr32(GRC_MODE);
Joe Perches41535772013-02-16 11:20:04 +000016457 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
16458 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000016459 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
16460 GRC_MODE_WORD_SWAP_B2HRX_DATA |
16461 GRC_MODE_B2HRX_ENABLE |
16462 GRC_MODE_HTX2B_ENABLE |
16463 GRC_MODE_HOST_STACKUP);
16464 else
16465 val &= GRC_MODE_HOST_STACKUP;
16466
Linus Torvalds1da177e2005-04-16 15:20:36 -070016467 tw32(GRC_MODE, val | tp->grc_mode);
16468
16469 tg3_switch_clocks(tp);
16470
16471 /* Clear this out for sanity. */
16472 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
16473
16474 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
16475 &pci_state_reg);
16476 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016477 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Joe Perches41535772013-02-16 11:20:04 +000016478 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16479 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16480 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2 ||
16481 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016482 void __iomem *sram_base;
16483
16484 /* Write some dummy words into the SRAM status block
16485 * area, see if it reads back correctly. If the return
16486 * value is bad, force enable the PCIX workaround.
16487 */
16488 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
16489
16490 writel(0x00000000, sram_base);
16491 writel(0x00000000, sram_base + 4);
16492 writel(0xffffffff, sram_base + 4);
16493 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000016494 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016495 }
16496 }
16497
16498 udelay(50);
16499 tg3_nvram_init(tp);
16500
Nithin Sujirc4dab502013-03-06 17:02:34 +000016501 /* If the device has an NVRAM, no need to load patch firmware */
16502 if (tg3_asic_rev(tp) == ASIC_REV_57766 &&
16503 !tg3_flag(tp, NO_NVRAM))
16504 tp->fw_needed = NULL;
16505
Linus Torvalds1da177e2005-04-16 15:20:36 -070016506 grc_misc_cfg = tr32(GRC_MISC_CFG);
16507 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
16508
Joe Perches41535772013-02-16 11:20:04 +000016509 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016510 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
16511 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000016512 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016513
Joe Perches63c3a662011-04-26 08:12:10 +000016514 if (!tg3_flag(tp, IS_5788) &&
Joe Perches41535772013-02-16 11:20:04 +000016515 tg3_asic_rev(tp) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016516 tg3_flag_set(tp, TAGGED_STATUS);
16517 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070016518 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
16519 HOSTCC_MODE_CLRTICK_TXBD);
16520
16521 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
16522 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
16523 tp->misc_host_ctrl);
16524 }
16525
Matt Carlson3bda1252008-08-15 14:08:22 -070016526 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000016527 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000016528 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070016529 else
Matt Carlson6e01b202011-08-19 13:58:20 +000016530 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070016531
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016532 if (tg3_10_100_only_device(tp, ent))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016533 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016534
16535 err = tg3_phy_probe(tp);
16536 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000016537 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016538 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016539 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016540 }
16541
Matt Carlson184b8902010-04-05 10:19:25 +000016542 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080016543 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016544
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016545 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
16546 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016547 } else {
Joe Perches41535772013-02-16 11:20:04 +000016548 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016549 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016550 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016551 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016552 }
16553
16554 /* 5700 {AX,BX} chips have a broken status block link
16555 * change bit implementation, so we must use the
16556 * status register in those cases.
16557 */
Joe Perches41535772013-02-16 11:20:04 +000016558 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016559 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016560 else
Joe Perches63c3a662011-04-26 08:12:10 +000016561 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016562
16563 /* The led_ctrl is set during tg3_phy_probe, here we might
16564 * have to force the link status polling mechanism based
16565 * upon subsystem IDs.
16566 */
16567 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Joe Perches41535772013-02-16 11:20:04 +000016568 tg3_asic_rev(tp) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016569 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
16570 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000016571 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016572 }
16573
16574 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016575 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000016576 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016577 else
Joe Perches63c3a662011-04-26 08:12:10 +000016578 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016579
Eric Dumazet9205fd92011-11-18 06:47:01 +000016580 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016581 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Joe Perches41535772013-02-16 11:20:04 +000016582 if (tg3_asic_rev(tp) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016583 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000016584 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016585#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000016586 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016587#endif
16588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016589
Matt Carlson2c49a442010-09-30 10:34:35 +000016590 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
16591 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000016592 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
16593
Matt Carlson2c49a442010-09-30 10:34:35 +000016594 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070016595
16596 /* Increment the rx prod index on the rx std ring by at most
16597 * 8 for these chips to workaround hw errata.
16598 */
Joe Perches41535772013-02-16 11:20:04 +000016599 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
16600 tg3_asic_rev(tp) == ASIC_REV_5752 ||
16601 tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanf92905d2006-06-29 20:14:29 -070016602 tp->rx_std_max_post = 8;
16603
Joe Perches63c3a662011-04-26 08:12:10 +000016604 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070016605 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
16606 PCIE_PWR_MGMT_L1_THRESH_MSK;
16607
Linus Torvalds1da177e2005-04-16 15:20:36 -070016608 return err;
16609}
16610
David S. Miller49b6e95f2007-03-29 01:38:42 -070016611#ifdef CONFIG_SPARC
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016612static int tg3_get_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016613{
16614 struct net_device *dev = tp->dev;
16615 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016616 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070016617 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016618 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016619
David S. Miller49b6e95f2007-03-29 01:38:42 -070016620 addr = of_get_property(dp, "local-mac-address", &len);
16621 if (addr && len == 6) {
16622 memcpy(dev->dev_addr, addr, 6);
David S. Miller49b6e95f2007-03-29 01:38:42 -070016623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016624 }
16625 return -ENODEV;
16626}
16627
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016628static int tg3_get_default_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016629{
16630 struct net_device *dev = tp->dev;
16631
16632 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
16633 return 0;
16634}
16635#endif
16636
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016637static int tg3_get_device_address(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016638{
16639 struct net_device *dev = tp->dev;
16640 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080016641 int addr_ok = 0;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016642 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016643
David S. Miller49b6e95f2007-03-29 01:38:42 -070016644#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016645 if (!tg3_get_macaddr_sparc(tp))
16646 return 0;
16647#endif
16648
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016649 if (tg3_flag(tp, IS_SSB_CORE)) {
16650 err = ssb_gige_get_macaddr(tp->pdev, &dev->dev_addr[0]);
16651 if (!err && is_valid_ether_addr(&dev->dev_addr[0]))
16652 return 0;
16653 }
16654
Linus Torvalds1da177e2005-04-16 15:20:36 -070016655 mac_offset = 0x7c;
Joe Perches41535772013-02-16 11:20:04 +000016656 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016657 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016658 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
16659 mac_offset = 0xcc;
16660 if (tg3_nvram_lock(tp))
16661 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
16662 else
16663 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000016664 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000016665 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000016666 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000016667 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000016668 mac_offset += 0x18c;
Joe Perches41535772013-02-16 11:20:04 +000016669 } else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070016670 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016671
16672 /* First try to get it from MAC address mailbox. */
16673 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
16674 if ((hi >> 16) == 0x484b) {
16675 dev->dev_addr[0] = (hi >> 8) & 0xff;
16676 dev->dev_addr[1] = (hi >> 0) & 0xff;
16677
16678 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
16679 dev->dev_addr[2] = (lo >> 24) & 0xff;
16680 dev->dev_addr[3] = (lo >> 16) & 0xff;
16681 dev->dev_addr[4] = (lo >> 8) & 0xff;
16682 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016683
Michael Chan008652b2006-03-27 23:14:53 -080016684 /* Some old bootcode may report a 0 MAC address in SRAM */
16685 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
16686 }
16687 if (!addr_ok) {
16688 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000016689 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000016690 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000016691 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070016692 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
16693 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080016694 }
16695 /* Finally just fetch it out of the MAC control regs. */
16696 else {
16697 hi = tr32(MAC_ADDR_0_HIGH);
16698 lo = tr32(MAC_ADDR_0_LOW);
16699
16700 dev->dev_addr[5] = lo & 0xff;
16701 dev->dev_addr[4] = (lo >> 8) & 0xff;
16702 dev->dev_addr[3] = (lo >> 16) & 0xff;
16703 dev->dev_addr[2] = (lo >> 24) & 0xff;
16704 dev->dev_addr[1] = hi & 0xff;
16705 dev->dev_addr[0] = (hi >> 8) & 0xff;
16706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016707 }
16708
16709 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070016710#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016711 if (!tg3_get_default_macaddr_sparc(tp))
16712 return 0;
16713#endif
16714 return -EINVAL;
16715 }
16716 return 0;
16717}
16718
David S. Miller59e6b432005-05-18 22:50:10 -070016719#define BOUNDARY_SINGLE_CACHELINE 1
16720#define BOUNDARY_MULTI_CACHELINE 2
16721
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016722static u32 tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
David S. Miller59e6b432005-05-18 22:50:10 -070016723{
16724 int cacheline_size;
16725 u8 byte;
16726 int goal;
16727
16728 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
16729 if (byte == 0)
16730 cacheline_size = 1024;
16731 else
16732 cacheline_size = (int) byte * 4;
16733
16734 /* On 5703 and later chips, the boundary bits have no
16735 * effect.
16736 */
Joe Perches41535772013-02-16 11:20:04 +000016737 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16738 tg3_asic_rev(tp) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016739 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070016740 goto out;
16741
16742#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
16743 goal = BOUNDARY_MULTI_CACHELINE;
16744#else
16745#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
16746 goal = BOUNDARY_SINGLE_CACHELINE;
16747#else
16748 goal = 0;
16749#endif
16750#endif
16751
Joe Perches63c3a662011-04-26 08:12:10 +000016752 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016753 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
16754 goto out;
16755 }
16756
David S. Miller59e6b432005-05-18 22:50:10 -070016757 if (!goal)
16758 goto out;
16759
16760 /* PCI controllers on most RISC systems tend to disconnect
16761 * when a device tries to burst across a cache-line boundary.
16762 * Therefore, letting tg3 do so just wastes PCI bandwidth.
16763 *
16764 * Unfortunately, for PCI-E there are only limited
16765 * write-side controls for this, and thus for reads
16766 * we will still get the disconnects. We'll also waste
16767 * these PCI cycles for both read and write for chips
16768 * other than 5700 and 5701 which do not implement the
16769 * boundary bits.
16770 */
Joe Perches63c3a662011-04-26 08:12:10 +000016771 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016772 switch (cacheline_size) {
16773 case 16:
16774 case 32:
16775 case 64:
16776 case 128:
16777 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16778 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
16779 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
16780 } else {
16781 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16782 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16783 }
16784 break;
16785
16786 case 256:
16787 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
16788 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
16789 break;
16790
16791 default:
16792 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16793 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16794 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016795 }
Joe Perches63c3a662011-04-26 08:12:10 +000016796 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016797 switch (cacheline_size) {
16798 case 16:
16799 case 32:
16800 case 64:
16801 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16802 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16803 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
16804 break;
16805 }
16806 /* fallthrough */
16807 case 128:
16808 default:
16809 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16810 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
16811 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016812 }
David S. Miller59e6b432005-05-18 22:50:10 -070016813 } else {
16814 switch (cacheline_size) {
16815 case 16:
16816 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16817 val |= (DMA_RWCTRL_READ_BNDRY_16 |
16818 DMA_RWCTRL_WRITE_BNDRY_16);
16819 break;
16820 }
16821 /* fallthrough */
16822 case 32:
16823 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16824 val |= (DMA_RWCTRL_READ_BNDRY_32 |
16825 DMA_RWCTRL_WRITE_BNDRY_32);
16826 break;
16827 }
16828 /* fallthrough */
16829 case 64:
16830 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16831 val |= (DMA_RWCTRL_READ_BNDRY_64 |
16832 DMA_RWCTRL_WRITE_BNDRY_64);
16833 break;
16834 }
16835 /* fallthrough */
16836 case 128:
16837 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16838 val |= (DMA_RWCTRL_READ_BNDRY_128 |
16839 DMA_RWCTRL_WRITE_BNDRY_128);
16840 break;
16841 }
16842 /* fallthrough */
16843 case 256:
16844 val |= (DMA_RWCTRL_READ_BNDRY_256 |
16845 DMA_RWCTRL_WRITE_BNDRY_256);
16846 break;
16847 case 512:
16848 val |= (DMA_RWCTRL_READ_BNDRY_512 |
16849 DMA_RWCTRL_WRITE_BNDRY_512);
16850 break;
16851 case 1024:
16852 default:
16853 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
16854 DMA_RWCTRL_WRITE_BNDRY_1024);
16855 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016856 }
David S. Miller59e6b432005-05-18 22:50:10 -070016857 }
16858
16859out:
16860 return val;
16861}
16862
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016863static int tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma,
Joe Perches953c96e2013-04-09 10:18:14 +000016864 int size, bool to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016865{
16866 struct tg3_internal_buffer_desc test_desc;
16867 u32 sram_dma_descs;
16868 int i, ret;
16869
16870 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
16871
16872 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
16873 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
16874 tw32(RDMAC_STATUS, 0);
16875 tw32(WDMAC_STATUS, 0);
16876
16877 tw32(BUFMGR_MODE, 0);
16878 tw32(FTQ_RESET, 0);
16879
16880 test_desc.addr_hi = ((u64) buf_dma) >> 32;
16881 test_desc.addr_lo = buf_dma & 0xffffffff;
16882 test_desc.nic_mbuf = 0x00002100;
16883 test_desc.len = size;
16884
16885 /*
16886 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
16887 * the *second* time the tg3 driver was getting loaded after an
16888 * initial scan.
16889 *
16890 * Broadcom tells me:
16891 * ...the DMA engine is connected to the GRC block and a DMA
16892 * reset may affect the GRC block in some unpredictable way...
16893 * The behavior of resets to individual blocks has not been tested.
16894 *
16895 * Broadcom noted the GRC reset will also reset all sub-components.
16896 */
16897 if (to_device) {
16898 test_desc.cqid_sqid = (13 << 8) | 2;
16899
16900 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
16901 udelay(40);
16902 } else {
16903 test_desc.cqid_sqid = (16 << 8) | 7;
16904
16905 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
16906 udelay(40);
16907 }
16908 test_desc.flags = 0x00000005;
16909
16910 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
16911 u32 val;
16912
16913 val = *(((u32 *)&test_desc) + i);
16914 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
16915 sram_dma_descs + (i * sizeof(u32)));
16916 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
16917 }
16918 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
16919
Matt Carlson859a588792010-04-05 10:19:28 +000016920 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016921 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000016922 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070016923 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016924
16925 ret = -ENODEV;
16926 for (i = 0; i < 40; i++) {
16927 u32 val;
16928
16929 if (to_device)
16930 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
16931 else
16932 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
16933 if ((val & 0xffff) == sram_dma_descs) {
16934 ret = 0;
16935 break;
16936 }
16937
16938 udelay(100);
16939 }
16940
16941 return ret;
16942}
16943
David S. Millerded73402005-05-23 13:59:47 -070016944#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070016945
Matt Carlson41434702011-03-09 16:58:22 +000016946static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080016947 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
16948 { },
16949};
16950
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016951static int tg3_test_dma(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016952{
16953 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070016954 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016955 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016956
Matt Carlson4bae65c2010-11-24 08:31:52 +000016957 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
16958 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016959 if (!buf) {
16960 ret = -ENOMEM;
16961 goto out_nofree;
16962 }
16963
16964 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
16965 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
16966
David S. Miller59e6b432005-05-18 22:50:10 -070016967 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016968
Joe Perches63c3a662011-04-26 08:12:10 +000016969 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016970 goto out;
16971
Joe Perches63c3a662011-04-26 08:12:10 +000016972 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016973 /* DMA read watermark not used on PCIE */
16974 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000016975 } else if (!tg3_flag(tp, PCIX_MODE)) {
Joe Perches41535772013-02-16 11:20:04 +000016976 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
16977 tg3_asic_rev(tp) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016978 tp->dma_rwctrl |= 0x003f0000;
16979 else
16980 tp->dma_rwctrl |= 0x003f000f;
16981 } else {
Joe Perches41535772013-02-16 11:20:04 +000016982 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16983 tg3_asic_rev(tp) == ASIC_REV_5704) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016984 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080016985 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016986
Michael Chan4a29cc22006-03-19 13:21:12 -080016987 /* If the 5704 is behind the EPB bridge, we can
16988 * do the less restrictive ONE_DMA workaround for
16989 * better performance.
16990 */
Joe Perches63c3a662011-04-26 08:12:10 +000016991 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Joe Perches41535772013-02-16 11:20:04 +000016992 tg3_asic_rev(tp) == ASIC_REV_5704)
Michael Chan4a29cc22006-03-19 13:21:12 -080016993 tp->dma_rwctrl |= 0x8000;
16994 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016995 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
16996
Joe Perches41535772013-02-16 11:20:04 +000016997 if (tg3_asic_rev(tp) == ASIC_REV_5703)
Michael Chan49afdeb2007-02-13 12:17:03 -080016998 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070016999 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080017000 tp->dma_rwctrl |=
17001 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
17002 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
17003 (1 << 23);
Joe Perches41535772013-02-16 11:20:04 +000017004 } else if (tg3_asic_rev(tp) == ASIC_REV_5780) {
Michael Chan4cf78e42005-07-25 12:29:19 -070017005 /* 5780 always in PCIX mode */
17006 tp->dma_rwctrl |= 0x00144000;
Joe Perches41535772013-02-16 11:20:04 +000017007 } else if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chana4e2b342005-10-26 15:46:52 -070017008 /* 5714 always in PCIX mode */
17009 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017010 } else {
17011 tp->dma_rwctrl |= 0x001b000f;
17012 }
17013 }
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017014 if (tg3_flag(tp, ONE_DMA_AT_ONCE))
17015 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017016
Joe Perches41535772013-02-16 11:20:04 +000017017 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
17018 tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017019 tp->dma_rwctrl &= 0xfffffff0;
17020
Joe Perches41535772013-02-16 11:20:04 +000017021 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
17022 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017023 /* Remove this if it causes problems for some boards. */
17024 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
17025
17026 /* On 5700/5701 chips, we need to set this bit.
17027 * Otherwise the chip will issue cacheline transactions
17028 * to streamable DMA memory with not all the byte
17029 * enables turned on. This is an error on several
17030 * RISC PCI controllers, in particular sparc64.
17031 *
17032 * On 5703/5704 chips, this bit has been reassigned
17033 * a different meaning. In particular, it is used
17034 * on those chips to enable a PCI-X workaround.
17035 */
17036 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
17037 }
17038
17039 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17040
17041#if 0
17042 /* Unneeded, already done by tg3_get_invariants. */
17043 tg3_switch_clocks(tp);
17044#endif
17045
Joe Perches41535772013-02-16 11:20:04 +000017046 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
17047 tg3_asic_rev(tp) != ASIC_REV_5701)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017048 goto out;
17049
David S. Miller59e6b432005-05-18 22:50:10 -070017050 /* It is best to perform DMA test with maximum write burst size
17051 * to expose the 5700/5701 write DMA bug.
17052 */
17053 saved_dma_rwctrl = tp->dma_rwctrl;
17054 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
17055 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17056
Linus Torvalds1da177e2005-04-16 15:20:36 -070017057 while (1) {
17058 u32 *p = buf, i;
17059
17060 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
17061 p[i] = i;
17062
17063 /* Send the buffer to the chip. */
Joe Perches953c96e2013-04-09 10:18:14 +000017064 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017065 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000017066 dev_err(&tp->pdev->dev,
17067 "%s: Buffer write failed. err = %d\n",
17068 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017069 break;
17070 }
17071
17072#if 0
17073 /* validate data reached card RAM correctly. */
17074 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
17075 u32 val;
17076 tg3_read_mem(tp, 0x2100 + (i*4), &val);
17077 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000017078 dev_err(&tp->pdev->dev,
17079 "%s: Buffer corrupted on device! "
17080 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017081 /* ret = -ENODEV here? */
17082 }
17083 p[i] = 0;
17084 }
17085#endif
17086 /* Now read it back. */
Joe Perches953c96e2013-04-09 10:18:14 +000017087 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017088 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000017089 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
17090 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017091 break;
17092 }
17093
17094 /* Verify it. */
17095 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
17096 if (p[i] == i)
17097 continue;
17098
David S. Miller59e6b432005-05-18 22:50:10 -070017099 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
17100 DMA_RWCTRL_WRITE_BNDRY_16) {
17101 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017102 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
17103 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17104 break;
17105 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000017106 dev_err(&tp->pdev->dev,
17107 "%s: Buffer corrupted on read back! "
17108 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017109 ret = -ENODEV;
17110 goto out;
17111 }
17112 }
17113
17114 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
17115 /* Success. */
17116 ret = 0;
17117 break;
17118 }
17119 }
David S. Miller59e6b432005-05-18 22:50:10 -070017120 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
17121 DMA_RWCTRL_WRITE_BNDRY_16) {
17122 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070017123 * now look for chipsets that are known to expose the
17124 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070017125 */
Matt Carlson41434702011-03-09 16:58:22 +000017126 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070017127 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
17128 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000017129 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070017130 /* Safe to use the calculated DMA boundary. */
17131 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000017132 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070017133
David S. Miller59e6b432005-05-18 22:50:10 -070017134 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017136
17137out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000017138 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017139out_nofree:
17140 return ret;
17141}
17142
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017143static void tg3_init_bufmgr_config(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017144{
Joe Perches63c3a662011-04-26 08:12:10 +000017145 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000017146 tp->bufmgr_config.mbuf_read_dma_low_water =
17147 DEFAULT_MB_RDMA_LOW_WATER_5705;
17148 tp->bufmgr_config.mbuf_mac_rx_low_water =
17149 DEFAULT_MB_MACRX_LOW_WATER_57765;
17150 tp->bufmgr_config.mbuf_high_water =
17151 DEFAULT_MB_HIGH_WATER_57765;
17152
17153 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
17154 DEFAULT_MB_RDMA_LOW_WATER_5705;
17155 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
17156 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
17157 tp->bufmgr_config.mbuf_high_water_jumbo =
17158 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000017159 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070017160 tp->bufmgr_config.mbuf_read_dma_low_water =
17161 DEFAULT_MB_RDMA_LOW_WATER_5705;
17162 tp->bufmgr_config.mbuf_mac_rx_low_water =
17163 DEFAULT_MB_MACRX_LOW_WATER_5705;
17164 tp->bufmgr_config.mbuf_high_water =
17165 DEFAULT_MB_HIGH_WATER_5705;
Joe Perches41535772013-02-16 11:20:04 +000017166 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070017167 tp->bufmgr_config.mbuf_mac_rx_low_water =
17168 DEFAULT_MB_MACRX_LOW_WATER_5906;
17169 tp->bufmgr_config.mbuf_high_water =
17170 DEFAULT_MB_HIGH_WATER_5906;
17171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017172
Michael Chanfdfec1722005-07-25 12:31:48 -070017173 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
17174 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
17175 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
17176 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
17177 tp->bufmgr_config.mbuf_high_water_jumbo =
17178 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
17179 } else {
17180 tp->bufmgr_config.mbuf_read_dma_low_water =
17181 DEFAULT_MB_RDMA_LOW_WATER;
17182 tp->bufmgr_config.mbuf_mac_rx_low_water =
17183 DEFAULT_MB_MACRX_LOW_WATER;
17184 tp->bufmgr_config.mbuf_high_water =
17185 DEFAULT_MB_HIGH_WATER;
17186
17187 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
17188 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
17189 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
17190 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
17191 tp->bufmgr_config.mbuf_high_water_jumbo =
17192 DEFAULT_MB_HIGH_WATER_JUMBO;
17193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017194
17195 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
17196 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
17197}
17198
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017199static char *tg3_phy_string(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017200{
Matt Carlson79eb6902010-02-17 15:17:03 +000017201 switch (tp->phy_id & TG3_PHY_ID_MASK) {
17202 case TG3_PHY_ID_BCM5400: return "5400";
17203 case TG3_PHY_ID_BCM5401: return "5401";
17204 case TG3_PHY_ID_BCM5411: return "5411";
17205 case TG3_PHY_ID_BCM5701: return "5701";
17206 case TG3_PHY_ID_BCM5703: return "5703";
17207 case TG3_PHY_ID_BCM5704: return "5704";
17208 case TG3_PHY_ID_BCM5705: return "5705";
17209 case TG3_PHY_ID_BCM5750: return "5750";
17210 case TG3_PHY_ID_BCM5752: return "5752";
17211 case TG3_PHY_ID_BCM5714: return "5714";
17212 case TG3_PHY_ID_BCM5780: return "5780";
17213 case TG3_PHY_ID_BCM5755: return "5755";
17214 case TG3_PHY_ID_BCM5787: return "5787";
17215 case TG3_PHY_ID_BCM5784: return "5784";
17216 case TG3_PHY_ID_BCM5756: return "5722/5756";
17217 case TG3_PHY_ID_BCM5906: return "5906";
17218 case TG3_PHY_ID_BCM5761: return "5761";
17219 case TG3_PHY_ID_BCM5718C: return "5718C";
17220 case TG3_PHY_ID_BCM5718S: return "5718S";
17221 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000017222 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000017223 case TG3_PHY_ID_BCM5720C: return "5720C";
Michael Chanc65a17f2013-01-06 12:51:07 +000017224 case TG3_PHY_ID_BCM5762: return "5762C";
Matt Carlson79eb6902010-02-17 15:17:03 +000017225 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070017226 case 0: return "serdes";
17227 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070017228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017229}
17230
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017231static char *tg3_bus_string(struct tg3 *tp, char *str)
Michael Chanf9804dd2005-09-27 12:13:10 -070017232{
Joe Perches63c3a662011-04-26 08:12:10 +000017233 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070017234 strcpy(str, "PCI Express");
17235 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000017236 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070017237 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
17238
17239 strcpy(str, "PCIX:");
17240
17241 if ((clock_ctrl == 7) ||
17242 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
17243 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
17244 strcat(str, "133MHz");
17245 else if (clock_ctrl == 0)
17246 strcat(str, "33MHz");
17247 else if (clock_ctrl == 2)
17248 strcat(str, "50MHz");
17249 else if (clock_ctrl == 4)
17250 strcat(str, "66MHz");
17251 else if (clock_ctrl == 6)
17252 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070017253 } else {
17254 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000017255 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070017256 strcat(str, "66MHz");
17257 else
17258 strcat(str, "33MHz");
17259 }
Joe Perches63c3a662011-04-26 08:12:10 +000017260 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070017261 strcat(str, ":32-bit");
17262 else
17263 strcat(str, ":64-bit");
17264 return str;
17265}
17266
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017267static void tg3_init_coal(struct tg3 *tp)
David S. Miller15f98502005-05-18 22:49:26 -070017268{
17269 struct ethtool_coalesce *ec = &tp->coal;
17270
17271 memset(ec, 0, sizeof(*ec));
17272 ec->cmd = ETHTOOL_GCOALESCE;
17273 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
17274 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
17275 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
17276 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
17277 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
17278 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
17279 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
17280 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
17281 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
17282
17283 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
17284 HOSTCC_MODE_CLRTICK_TXBD)) {
17285 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
17286 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
17287 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
17288 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
17289 }
Michael Chand244c892005-07-05 14:42:33 -070017290
Joe Perches63c3a662011-04-26 08:12:10 +000017291 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070017292 ec->rx_coalesce_usecs_irq = 0;
17293 ec->tx_coalesce_usecs_irq = 0;
17294 ec->stats_block_coalesce_usecs = 0;
17295 }
David S. Miller15f98502005-05-18 22:49:26 -070017296}
17297
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017298static int tg3_init_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017299 const struct pci_device_id *ent)
17300{
Linus Torvalds1da177e2005-04-16 15:20:36 -070017301 struct net_device *dev;
17302 struct tg3 *tp;
Yijing Wang5865fc12013-06-02 21:36:21 +000017303 int i, err;
Matt Carlson646c9ed2009-09-01 12:58:41 +000017304 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070017305 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080017306 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000017307 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017308
Joe Perches05dbe002010-02-17 19:44:19 +000017309 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017310
17311 err = pci_enable_device(pdev);
17312 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017313 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017314 return err;
17315 }
17316
Linus Torvalds1da177e2005-04-16 15:20:36 -070017317 err = pci_request_regions(pdev, DRV_MODULE_NAME);
17318 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017319 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017320 goto err_out_disable_pdev;
17321 }
17322
17323 pci_set_master(pdev);
17324
Matt Carlsonfe5f5782009-09-01 13:09:39 +000017325 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017326 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017327 err = -ENOMEM;
Yijing Wang5865fc12013-06-02 21:36:21 +000017328 goto err_out_free_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017329 }
17330
Linus Torvalds1da177e2005-04-16 15:20:36 -070017331 SET_NETDEV_DEV(dev, &pdev->dev);
17332
Linus Torvalds1da177e2005-04-16 15:20:36 -070017333 tp = netdev_priv(dev);
17334 tp->pdev = pdev;
17335 tp->dev = dev;
Yijing Wang5865fc12013-06-02 21:36:21 +000017336 tp->pm_cap = pdev->pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017337 tp->rx_mode = TG3_DEF_RX_MODE;
17338 tp->tx_mode = TG3_DEF_TX_MODE;
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +000017339 tp->irq_sync = 1;
Matt Carlson8ef21422008-05-02 16:47:53 -070017340
Linus Torvalds1da177e2005-04-16 15:20:36 -070017341 if (tg3_debug > 0)
17342 tp->msg_enable = tg3_debug;
17343 else
17344 tp->msg_enable = TG3_DEF_MSG_ENABLE;
17345
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017346 if (pdev_is_ssb_gige_core(pdev)) {
17347 tg3_flag_set(tp, IS_SSB_CORE);
17348 if (ssb_gige_must_flush_posted_writes(pdev))
17349 tg3_flag_set(tp, FLUSH_POSTED_WRITES);
17350 if (ssb_gige_one_dma_at_once(pdev))
17351 tg3_flag_set(tp, ONE_DMA_AT_ONCE);
17352 if (ssb_gige_have_roboswitch(pdev))
17353 tg3_flag_set(tp, ROBOSWITCH);
17354 if (ssb_gige_is_rgmii(pdev))
17355 tg3_flag_set(tp, RGMII_MODE);
17356 }
17357
Linus Torvalds1da177e2005-04-16 15:20:36 -070017358 /* The word/byte swap controls here control register access byte
17359 * swapping. DMA data byte swapping is controlled in the GRC_MODE
17360 * setting below.
17361 */
17362 tp->misc_host_ctrl =
17363 MISC_HOST_CTRL_MASK_PCI_INT |
17364 MISC_HOST_CTRL_WORD_SWAP |
17365 MISC_HOST_CTRL_INDIR_ACCESS |
17366 MISC_HOST_CTRL_PCISTATE_RW;
17367
17368 /* The NONFRM (non-frame) byte/word swap controls take effect
17369 * on descriptor entries, anything which isn't packet data.
17370 *
17371 * The StrongARM chips on the board (one for tx, one for rx)
17372 * are running in big-endian mode.
17373 */
17374 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
17375 GRC_MODE_WSWAP_NONFRM_DATA);
17376#ifdef __BIG_ENDIAN
17377 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
17378#endif
17379 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017380 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000017381 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017382
Matt Carlsond5fe4882008-11-21 17:20:32 -080017383 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010017384 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017385 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017386 err = -ENOMEM;
17387 goto err_out_free_dev;
17388 }
17389
Matt Carlsonc9cab242011-07-13 09:27:27 +000017390 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
17391 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
17392 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
17393 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
17394 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000017395 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlsonc9cab242011-07-13 09:27:27 +000017396 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
17397 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000017398 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
17399 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
17400 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
17401 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727) {
Matt Carlsonc9cab242011-07-13 09:27:27 +000017402 tg3_flag_set(tp, ENABLE_APE);
17403 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
17404 if (!tp->aperegs) {
17405 dev_err(&pdev->dev,
17406 "Cannot map APE registers, aborting\n");
17407 err = -ENOMEM;
17408 goto err_out_iounmap;
17409 }
17410 }
17411
Linus Torvalds1da177e2005-04-16 15:20:36 -070017412 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
17413 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017414
Linus Torvalds1da177e2005-04-16 15:20:36 -070017415 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017416 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000017417 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017418 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017419
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000017420 err = tg3_get_invariants(tp, ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017421 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017422 dev_err(&pdev->dev,
17423 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017424 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017425 }
17426
Michael Chan4a29cc22006-03-19 13:21:12 -080017427 /* The EPB bridge inside 5714, 5715, and 5780 and any
17428 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080017429 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
17430 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
17431 * do DMA address check in tg3_start_xmit().
17432 */
Joe Perches63c3a662011-04-26 08:12:10 +000017433 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070017434 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000017435 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070017436 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080017437#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070017438 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017439#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080017440 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070017441 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017442
17443 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070017444 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080017445 err = pci_set_dma_mask(pdev, dma_mask);
17446 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000017447 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080017448 err = pci_set_consistent_dma_mask(pdev,
17449 persist_dma_mask);
17450 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017451 dev_err(&pdev->dev, "Unable to obtain 64 bit "
17452 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017453 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017454 }
17455 }
17456 }
Yang Hongyang284901a2009-04-06 19:01:15 -070017457 if (err || dma_mask == DMA_BIT_MASK(32)) {
17458 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080017459 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017460 dev_err(&pdev->dev,
17461 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017462 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017463 }
17464 }
17465
Michael Chanfdfec1722005-07-25 12:31:48 -070017466 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017467
Patrick McHardyf6469682013-04-19 02:04:27 +000017468 features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Matt Carlson0da06062011-05-19 12:12:53 +000017469
17470 /* 5700 B0 chips do not support checksumming correctly due
17471 * to hardware bugs.
17472 */
Joe Perches41535772013-02-16 11:20:04 +000017473 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5700_B0) {
Matt Carlson0da06062011-05-19 12:12:53 +000017474 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
17475
17476 if (tg3_flag(tp, 5755_PLUS))
17477 features |= NETIF_F_IPV6_CSUM;
17478 }
17479
Michael Chan4e3a7aa2006-03-20 17:47:44 -080017480 /* TSO is on by default on chips that support hardware TSO.
17481 * Firmware TSO on older chips gives lower performance, so it
17482 * is off by default, but can be enabled using ethtool.
17483 */
Joe Perches63c3a662011-04-26 08:12:10 +000017484 if ((tg3_flag(tp, HW_TSO_1) ||
17485 tg3_flag(tp, HW_TSO_2) ||
17486 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000017487 (features & NETIF_F_IP_CSUM))
17488 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000017489 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000017490 if (features & NETIF_F_IPV6_CSUM)
17491 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000017492 if (tg3_flag(tp, HW_TSO_3) ||
Joe Perches41535772013-02-16 11:20:04 +000017493 tg3_asic_rev(tp) == ASIC_REV_5761 ||
17494 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
17495 tg3_chip_rev(tp) != CHIPREV_5784_AX) ||
17496 tg3_asic_rev(tp) == ASIC_REV_5785 ||
17497 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000017498 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070017499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017500
Matt Carlsond542fe22011-05-19 16:02:43 +000017501 dev->features |= features;
17502 dev->vlan_features |= features;
17503
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017504 /*
17505 * Add loopback capability only for a subset of devices that support
17506 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
17507 * loopback for the remaining devices.
17508 */
Joe Perches41535772013-02-16 11:20:04 +000017509 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017510 !tg3_flag(tp, CPMU_PRESENT))
17511 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000017512 features |= NETIF_F_LOOPBACK;
17513
Matt Carlson0da06062011-05-19 12:12:53 +000017514 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017515
Joe Perches41535772013-02-16 11:20:04 +000017516 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000017517 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070017518 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000017519 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017520 tp->rx_pending = 63;
17521 }
17522
Linus Torvalds1da177e2005-04-16 15:20:36 -070017523 err = tg3_get_device_address(tp);
17524 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017525 dev_err(&pdev->dev,
17526 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017527 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070017528 }
17529
Matt Carlsonc88864d2007-11-12 21:07:01 -080017530 /*
17531 * Reset chip in case UNDI or EFI driver did not shutdown
17532 * DMA self test will enable WDMAC and we'll see (spurious)
17533 * pending DMA on the PCI bus at that point.
17534 */
17535 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
17536 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
17537 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
17538 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
17539 }
17540
17541 err = tg3_test_dma(tp);
17542 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017543 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080017544 goto err_out_apeunmap;
17545 }
17546
Matt Carlson78f90dc2009-11-13 13:03:42 +000017547 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
17548 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
17549 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000017550 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000017551 struct tg3_napi *tnapi = &tp->napi[i];
17552
17553 tnapi->tp = tp;
17554 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
17555
17556 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000017557 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017558 intmbx += 0x8;
17559 else
17560 intmbx += 0x4;
17561
17562 tnapi->consmbox = rcvmbx;
17563 tnapi->prodmbox = sndmbx;
17564
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017565 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017566 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017567 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000017568 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000017569
Joe Perches63c3a662011-04-26 08:12:10 +000017570 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000017571 break;
17572
17573 /*
17574 * If we support MSIX, we'll be using RSS. If we're using
17575 * RSS, the first vector only handles link interrupts and the
17576 * remaining vectors handle rx and tx interrupts. Reuse the
17577 * mailbox values for the next iteration. The values we setup
17578 * above are still useful for the single vectored mode.
17579 */
17580 if (!i)
17581 continue;
17582
17583 rcvmbx += 0x8;
17584
17585 if (sndmbx & 0x4)
17586 sndmbx -= 0x4;
17587 else
17588 sndmbx += 0xc;
17589 }
17590
Matt Carlsonc88864d2007-11-12 21:07:01 -080017591 tg3_init_coal(tp);
17592
Michael Chanc49a1562006-12-17 17:07:29 -080017593 pci_set_drvdata(pdev, dev);
17594
Joe Perches41535772013-02-16 11:20:04 +000017595 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
17596 tg3_asic_rev(tp) == ASIC_REV_5720 ||
17597 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +000017598 tg3_flag_set(tp, PTP_CAPABLE);
17599
Matt Carlson21f76382012-02-22 12:35:21 +000017600 tg3_timer_init(tp);
17601
Michael Chan402e1392013-02-14 12:13:41 +000017602 tg3_carrier_off(tp);
17603
Linus Torvalds1da177e2005-04-16 15:20:36 -070017604 err = register_netdev(dev);
17605 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017606 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070017607 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017608 }
17609
Joe Perches05dbe002010-02-17 19:44:19 +000017610 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
17611 tp->board_part_number,
Joe Perches41535772013-02-16 11:20:04 +000017612 tg3_chip_rev_id(tp),
Joe Perches05dbe002010-02-17 19:44:19 +000017613 tg3_bus_string(tp, str),
17614 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017615
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017616 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000017617 struct phy_device *phydev;
17618 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000017619 netdev_info(dev,
17620 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000017621 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017622 } else {
17623 char *ethtype;
17624
17625 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
17626 ethtype = "10/100Base-TX";
17627 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
17628 ethtype = "1000Base-SX";
17629 else
17630 ethtype = "10/100/1000Base-T";
17631
Matt Carlson5129c3a2010-04-05 10:19:23 +000017632 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000017633 "(WireSpeed[%d], EEE[%d])\n",
17634 tg3_phy_string(tp), ethtype,
17635 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
17636 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017637 }
Matt Carlsondf59c942008-11-03 16:52:56 -080017638
Joe Perches05dbe002010-02-17 19:44:19 +000017639 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000017640 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017641 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017642 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017643 tg3_flag(tp, ENABLE_ASF) != 0,
17644 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000017645 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
17646 tp->dma_rwctrl,
17647 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
17648 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017649
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017650 pci_save_state(pdev);
17651
Linus Torvalds1da177e2005-04-16 15:20:36 -070017652 return 0;
17653
Matt Carlson0d3031d2007-10-10 18:02:43 -070017654err_out_apeunmap:
17655 if (tp->aperegs) {
17656 iounmap(tp->aperegs);
17657 tp->aperegs = NULL;
17658 }
17659
Linus Torvalds1da177e2005-04-16 15:20:36 -070017660err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070017661 if (tp->regs) {
17662 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017663 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017665
17666err_out_free_dev:
17667 free_netdev(dev);
17668
17669err_out_free_res:
17670 pci_release_regions(pdev);
17671
17672err_out_disable_pdev:
Gavin Shanc80dc132013-07-24 17:25:09 +080017673 if (pci_is_enabled(pdev))
17674 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017675 pci_set_drvdata(pdev, NULL);
17676 return err;
17677}
17678
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017679static void tg3_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017680{
17681 struct net_device *dev = pci_get_drvdata(pdev);
17682
17683 if (dev) {
17684 struct tg3 *tp = netdev_priv(dev);
17685
Jesper Juhle3c55302012-04-09 22:50:15 +020017686 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080017687
Matt Carlsondb219972011-11-04 09:15:03 +000017688 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017689
David S. Miller1805b2f2011-10-24 18:18:09 -040017690 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017691 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017692 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017693 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070017694
Linus Torvalds1da177e2005-04-16 15:20:36 -070017695 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070017696 if (tp->aperegs) {
17697 iounmap(tp->aperegs);
17698 tp->aperegs = NULL;
17699 }
Michael Chan68929142005-08-09 20:17:14 -070017700 if (tp->regs) {
17701 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017702 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017704 free_netdev(dev);
17705 pci_release_regions(pdev);
17706 pci_disable_device(pdev);
17707 pci_set_drvdata(pdev, NULL);
17708 }
17709}
17710
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017711#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017712static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017713{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017714 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017715 struct net_device *dev = pci_get_drvdata(pdev);
17716 struct tg3 *tp = netdev_priv(dev);
17717 int err;
17718
17719 if (!netif_running(dev))
17720 return 0;
17721
Matt Carlsondb219972011-11-04 09:15:03 +000017722 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017723 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017724 tg3_netif_stop(tp);
17725
Matt Carlson21f76382012-02-22 12:35:21 +000017726 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017727
David S. Millerf47c11e2005-06-24 20:18:35 -070017728 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017729 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070017730 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017731
17732 netif_device_detach(dev);
17733
David S. Millerf47c11e2005-06-24 20:18:35 -070017734 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070017735 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000017736 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070017737 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017738
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017739 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017740 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017741 int err2;
17742
David S. Millerf47c11e2005-06-24 20:18:35 -070017743 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017744
Joe Perches63c3a662011-04-26 08:12:10 +000017745 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017746 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017747 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070017748 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017749
Matt Carlson21f76382012-02-22 12:35:21 +000017750 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017751
17752 netif_device_attach(dev);
17753 tg3_netif_start(tp);
17754
Michael Chanb9ec6c12006-07-25 16:37:27 -070017755out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017756 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017757
17758 if (!err2)
17759 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017760 }
17761
17762 return err;
17763}
17764
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017765static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017766{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017767 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017768 struct net_device *dev = pci_get_drvdata(pdev);
17769 struct tg3 *tp = netdev_priv(dev);
17770 int err;
17771
17772 if (!netif_running(dev))
17773 return 0;
17774
Linus Torvalds1da177e2005-04-16 15:20:36 -070017775 netif_device_attach(dev);
17776
David S. Millerf47c11e2005-06-24 20:18:35 -070017777 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017778
Nithin Sujir2e460fc2013-05-23 11:11:22 +000017779 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
17780
Joe Perches63c3a662011-04-26 08:12:10 +000017781 tg3_flag_set(tp, INIT_COMPLETE);
Nithin Sujir942d1af2013-04-09 08:48:07 +000017782 err = tg3_restart_hw(tp,
17783 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN));
Michael Chanb9ec6c12006-07-25 16:37:27 -070017784 if (err)
17785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017786
Matt Carlson21f76382012-02-22 12:35:21 +000017787 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017788
Linus Torvalds1da177e2005-04-16 15:20:36 -070017789 tg3_netif_start(tp);
17790
Michael Chanb9ec6c12006-07-25 16:37:27 -070017791out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017792 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017793
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017794 if (!err)
17795 tg3_phy_start(tp);
17796
Michael Chanb9ec6c12006-07-25 16:37:27 -070017797 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017798}
Fabio Estevam42df36a2013-04-16 09:28:29 +000017799#endif /* CONFIG_PM_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017800
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017801static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
17802
Nithin Sujir4c305fa2013-07-29 13:58:37 -070017803static void tg3_shutdown(struct pci_dev *pdev)
17804{
17805 struct net_device *dev = pci_get_drvdata(pdev);
17806 struct tg3 *tp = netdev_priv(dev);
17807
17808 rtnl_lock();
17809 netif_device_detach(dev);
17810
17811 if (netif_running(dev))
17812 dev_close(dev);
17813
17814 if (system_state == SYSTEM_POWER_OFF)
17815 tg3_power_down(tp);
17816
17817 rtnl_unlock();
17818}
17819
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017820/**
17821 * tg3_io_error_detected - called when PCI error is detected
17822 * @pdev: Pointer to PCI device
17823 * @state: The current pci connection state
17824 *
17825 * This function is called after a PCI bus error affecting
17826 * this device has been detected.
17827 */
17828static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
17829 pci_channel_state_t state)
17830{
17831 struct net_device *netdev = pci_get_drvdata(pdev);
17832 struct tg3 *tp = netdev_priv(netdev);
17833 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
17834
17835 netdev_info(netdev, "PCI I/O error detected\n");
17836
17837 rtnl_lock();
17838
Gavin Shand8af4df2013-07-24 17:25:08 +080017839 /* We probably don't have netdev yet */
17840 if (!netdev || !netif_running(netdev))
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017841 goto done;
17842
17843 tg3_phy_stop(tp);
17844
17845 tg3_netif_stop(tp);
17846
Matt Carlson21f76382012-02-22 12:35:21 +000017847 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017848
17849 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000017850 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017851
17852 netif_device_detach(netdev);
17853
17854 /* Clean up software state, even if MMIO is blocked */
17855 tg3_full_lock(tp, 0);
17856 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
17857 tg3_full_unlock(tp);
17858
17859done:
Michael Chan72bb72b2013-06-17 13:47:25 -070017860 if (state == pci_channel_io_perm_failure) {
17861 tg3_napi_enable(tp);
17862 dev_close(netdev);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017863 err = PCI_ERS_RESULT_DISCONNECT;
Michael Chan72bb72b2013-06-17 13:47:25 -070017864 } else {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017865 pci_disable_device(pdev);
Michael Chan72bb72b2013-06-17 13:47:25 -070017866 }
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017867
17868 rtnl_unlock();
17869
17870 return err;
17871}
17872
17873/**
17874 * tg3_io_slot_reset - called after the pci bus has been reset.
17875 * @pdev: Pointer to PCI device
17876 *
17877 * Restart the card from scratch, as if from a cold-boot.
17878 * At this point, the card has exprienced a hard reset,
17879 * followed by fixups by BIOS, and has its config space
17880 * set up identically to what it was at cold boot.
17881 */
17882static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
17883{
17884 struct net_device *netdev = pci_get_drvdata(pdev);
17885 struct tg3 *tp = netdev_priv(netdev);
17886 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
17887 int err;
17888
17889 rtnl_lock();
17890
17891 if (pci_enable_device(pdev)) {
17892 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
17893 goto done;
17894 }
17895
17896 pci_set_master(pdev);
17897 pci_restore_state(pdev);
17898 pci_save_state(pdev);
17899
17900 if (!netif_running(netdev)) {
17901 rc = PCI_ERS_RESULT_RECOVERED;
17902 goto done;
17903 }
17904
17905 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000017906 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017907 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017908
17909 rc = PCI_ERS_RESULT_RECOVERED;
17910
17911done:
Michael Chan72bb72b2013-06-17 13:47:25 -070017912 if (rc != PCI_ERS_RESULT_RECOVERED && netif_running(netdev)) {
17913 tg3_napi_enable(tp);
17914 dev_close(netdev);
17915 }
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017916 rtnl_unlock();
17917
17918 return rc;
17919}
17920
17921/**
17922 * tg3_io_resume - called when traffic can start flowing again.
17923 * @pdev: Pointer to PCI device
17924 *
17925 * This callback is called when the error recovery driver tells
17926 * us that its OK to resume normal operation.
17927 */
17928static void tg3_io_resume(struct pci_dev *pdev)
17929{
17930 struct net_device *netdev = pci_get_drvdata(pdev);
17931 struct tg3 *tp = netdev_priv(netdev);
17932 int err;
17933
17934 rtnl_lock();
17935
17936 if (!netif_running(netdev))
17937 goto done;
17938
17939 tg3_full_lock(tp, 0);
Nithin Sujir2e460fc2013-05-23 11:11:22 +000017940 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
Joe Perches63c3a662011-04-26 08:12:10 +000017941 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017942 err = tg3_restart_hw(tp, true);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017943 if (err) {
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017944 tg3_full_unlock(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017945 netdev_err(netdev, "Cannot restart hardware after reset.\n");
17946 goto done;
17947 }
17948
17949 netif_device_attach(netdev);
17950
Matt Carlson21f76382012-02-22 12:35:21 +000017951 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017952
17953 tg3_netif_start(tp);
17954
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017955 tg3_full_unlock(tp);
17956
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017957 tg3_phy_start(tp);
17958
17959done:
17960 rtnl_unlock();
17961}
17962
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070017963static const struct pci_error_handlers tg3_err_handler = {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017964 .error_detected = tg3_io_error_detected,
17965 .slot_reset = tg3_io_slot_reset,
17966 .resume = tg3_io_resume
17967};
17968
Linus Torvalds1da177e2005-04-16 15:20:36 -070017969static struct pci_driver tg3_driver = {
17970 .name = DRV_MODULE_NAME,
17971 .id_table = tg3_pci_tbl,
17972 .probe = tg3_init_one,
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017973 .remove = tg3_remove_one,
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017974 .err_handler = &tg3_err_handler,
Fabio Estevam42df36a2013-04-16 09:28:29 +000017975 .driver.pm = &tg3_pm_ops,
Nithin Sujir4c305fa2013-07-29 13:58:37 -070017976 .shutdown = tg3_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017977};
17978
Peter Hüwe8dbb0dc2013-05-21 12:58:06 +000017979module_pci_driver(tg3_driver);