blob: a7449984c7a68f01666d101e49b42a53105abd07 [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
Michael Chand8871992013-02-14 12:13:42 +000097#define TG3_MIN_NUM 130
Matt Carlson6867c842010-07-11 09:31:44 +000098#define DRV_MODULE_VERSION \
99 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Michael Chand8871992013-02-14 12:13:42 +0000100#define DRV_MODULE_RELDATE "February 14, 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 Carlson66711e62009-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;
747 udelay(10);
748 }
749
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000750 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700751 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000752 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700753 ret = -EBUSY;
754 }
755
756 return ret;
757}
758
759static void tg3_ape_unlock(struct tg3 *tp, int locknum)
760{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000761 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700762
Joe Perches63c3a662011-04-26 08:12:10 +0000763 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700764 return;
765
766 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000767 case TG3_APE_LOCK_GPIO:
Joe Perches41535772013-02-16 11:20:04 +0000768 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000769 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000770 case TG3_APE_LOCK_GRC:
771 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000772 if (!tp->pci_fn)
773 bit = APE_LOCK_GRANT_DRIVER;
774 else
775 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000776 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000777 case TG3_APE_LOCK_PHY0:
778 case TG3_APE_LOCK_PHY1:
779 case TG3_APE_LOCK_PHY2:
780 case TG3_APE_LOCK_PHY3:
781 bit = APE_LOCK_GRANT_DRIVER;
782 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000783 default:
784 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700785 }
786
Joe Perches41535772013-02-16 11:20:04 +0000787 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000788 gnt = TG3_APE_LOCK_GRANT;
789 else
790 gnt = TG3_APE_PER_LOCK_GRANT;
791
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000792 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700793}
794
Matt Carlsonb65a3722012-07-16 16:24:00 +0000795static int tg3_ape_event_lock(struct tg3 *tp, u32 timeout_us)
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000796{
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000797 u32 apedata;
798
Matt Carlsonb65a3722012-07-16 16:24:00 +0000799 while (timeout_us) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000800 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
Matt Carlsonb65a3722012-07-16 16:24:00 +0000801 return -EBUSY;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000802
803 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000804 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
805 break;
806
Matt Carlsonb65a3722012-07-16 16:24:00 +0000807 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
808
809 udelay(10);
810 timeout_us -= (timeout_us > 10) ? 10 : timeout_us;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000811 }
812
Matt Carlsonb65a3722012-07-16 16:24:00 +0000813 return timeout_us ? 0 : -EBUSY;
814}
815
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000816static int tg3_ape_wait_for_event(struct tg3 *tp, u32 timeout_us)
817{
818 u32 i, apedata;
819
820 for (i = 0; i < timeout_us / 10; i++) {
821 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
822
823 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
824 break;
825
826 udelay(10);
827 }
828
829 return i == timeout_us / 10;
830}
831
Michael Chan86449942012-10-02 20:31:14 -0700832static int tg3_ape_scratchpad_read(struct tg3 *tp, u32 *data, u32 base_off,
833 u32 len)
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000834{
835 int err;
836 u32 i, bufoff, msgoff, maxlen, apedata;
837
838 if (!tg3_flag(tp, APE_HAS_NCSI))
839 return 0;
840
841 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
842 if (apedata != APE_SEG_SIG_MAGIC)
843 return -ENODEV;
844
845 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
846 if (!(apedata & APE_FW_STATUS_READY))
847 return -EAGAIN;
848
849 bufoff = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_OFF) +
850 TG3_APE_SHMEM_BASE;
851 msgoff = bufoff + 2 * sizeof(u32);
852 maxlen = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_LEN);
853
854 while (len) {
855 u32 length;
856
857 /* Cap xfer sizes to scratchpad limits. */
858 length = (len > maxlen) ? maxlen : len;
859 len -= length;
860
861 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
862 if (!(apedata & APE_FW_STATUS_READY))
863 return -EAGAIN;
864
865 /* Wait for up to 1 msec for APE to service previous event. */
866 err = tg3_ape_event_lock(tp, 1000);
867 if (err)
868 return err;
869
870 apedata = APE_EVENT_STATUS_DRIVER_EVNT |
871 APE_EVENT_STATUS_SCRTCHPD_READ |
872 APE_EVENT_STATUS_EVENT_PENDING;
873 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS, apedata);
874
875 tg3_ape_write32(tp, bufoff, base_off);
876 tg3_ape_write32(tp, bufoff + sizeof(u32), length);
877
878 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
879 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
880
881 base_off += length;
882
883 if (tg3_ape_wait_for_event(tp, 30000))
884 return -EAGAIN;
885
886 for (i = 0; length; i += 4, length -= 4) {
887 u32 val = tg3_ape_read32(tp, msgoff + i);
888 memcpy(data, &val, sizeof(u32));
889 data++;
890 }
891 }
892
893 return 0;
894}
895
Matt Carlsonb65a3722012-07-16 16:24:00 +0000896static int tg3_ape_send_event(struct tg3 *tp, u32 event)
897{
898 int err;
899 u32 apedata;
900
901 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
902 if (apedata != APE_SEG_SIG_MAGIC)
903 return -EAGAIN;
904
905 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
906 if (!(apedata & APE_FW_STATUS_READY))
907 return -EAGAIN;
908
909 /* Wait for up to 1 millisecond for APE to service previous event. */
910 err = tg3_ape_event_lock(tp, 1000);
911 if (err)
912 return err;
913
914 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
915 event | APE_EVENT_STATUS_EVENT_PENDING);
916
917 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
918 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
919
920 return 0;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000921}
922
923static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
924{
925 u32 event;
926 u32 apedata;
927
928 if (!tg3_flag(tp, ENABLE_APE))
929 return;
930
931 switch (kind) {
932 case RESET_KIND_INIT:
933 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
934 APE_HOST_SEG_SIG_MAGIC);
935 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
936 APE_HOST_SEG_LEN_MAGIC);
937 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
938 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
939 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
940 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
941 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
942 APE_HOST_BEHAV_NO_PHYLOCK);
943 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
944 TG3_APE_HOST_DRVR_STATE_START);
945
946 event = APE_EVENT_STATUS_STATE_START;
947 break;
948 case RESET_KIND_SHUTDOWN:
949 /* With the interface we are currently using,
950 * APE does not track driver state. Wiping
951 * out the HOST SEGMENT SIGNATURE forces
952 * the APE to assume OS absent status.
953 */
954 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
955
956 if (device_may_wakeup(&tp->pdev->dev) &&
957 tg3_flag(tp, WOL_ENABLE)) {
958 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
959 TG3_APE_HOST_WOL_SPEED_AUTO);
960 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
961 } else
962 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
963
964 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
965
966 event = APE_EVENT_STATUS_STATE_UNLOAD;
967 break;
968 case RESET_KIND_SUSPEND:
969 event = APE_EVENT_STATUS_STATE_SUSPEND;
970 break;
971 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;
1317 if (enable)
1318
1319 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;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001638 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001639 }
1640}
1641
1642/* tp->lock is held. */
Matt Carlsonb28f3892012-02-13 15:20:12 +00001643static void tg3_phy_gather_ump_data(struct tg3 *tp, u32 *data)
Matt Carlson95e28692008-05-25 23:44:14 -07001644{
Matt Carlsonb28f3892012-02-13 15:20:12 +00001645 u32 reg, val;
Matt Carlson95e28692008-05-25 23:44:14 -07001646
1647 val = 0;
1648 if (!tg3_readphy(tp, MII_BMCR, &reg))
1649 val = reg << 16;
1650 if (!tg3_readphy(tp, MII_BMSR, &reg))
1651 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001652 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001653
1654 val = 0;
1655 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1656 val = reg << 16;
1657 if (!tg3_readphy(tp, MII_LPA, &reg))
1658 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001659 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001660
1661 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001662 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001663 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1664 val = reg << 16;
1665 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1666 val |= (reg & 0xffff);
1667 }
Matt Carlsonb28f3892012-02-13 15:20:12 +00001668 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001669
1670 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1671 val = reg << 16;
1672 else
1673 val = 0;
Matt Carlsonb28f3892012-02-13 15:20:12 +00001674 *data++ = val;
1675}
1676
1677/* tp->lock is held. */
1678static void tg3_ump_link_report(struct tg3 *tp)
1679{
1680 u32 data[4];
1681
1682 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
1683 return;
1684
1685 tg3_phy_gather_ump_data(tp, data);
1686
1687 tg3_wait_for_event_ack(tp);
1688
1689 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1690 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1691 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x0, data[0]);
1692 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x4, data[1]);
1693 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x8, data[2]);
1694 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0xc, data[3]);
Matt Carlson95e28692008-05-25 23:44:14 -07001695
Matt Carlson4ba526c2008-08-15 14:10:04 -07001696 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001697}
1698
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001699/* tp->lock is held. */
1700static void tg3_stop_fw(struct tg3 *tp)
1701{
1702 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1703 /* Wait for RX cpu to ACK the previous event. */
1704 tg3_wait_for_event_ack(tp);
1705
1706 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1707
1708 tg3_generate_fw_event(tp);
1709
1710 /* Wait for RX cpu to ACK this event. */
1711 tg3_wait_for_event_ack(tp);
1712 }
1713}
1714
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001715/* tp->lock is held. */
1716static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1717{
1718 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1719 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1720
1721 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1722 switch (kind) {
1723 case RESET_KIND_INIT:
1724 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1725 DRV_STATE_START);
1726 break;
1727
1728 case RESET_KIND_SHUTDOWN:
1729 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1730 DRV_STATE_UNLOAD);
1731 break;
1732
1733 case RESET_KIND_SUSPEND:
1734 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1735 DRV_STATE_SUSPEND);
1736 break;
1737
1738 default:
1739 break;
1740 }
1741 }
1742
1743 if (kind == RESET_KIND_INIT ||
1744 kind == RESET_KIND_SUSPEND)
1745 tg3_ape_driver_state_change(tp, kind);
1746}
1747
1748/* tp->lock is held. */
1749static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1750{
1751 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1752 switch (kind) {
1753 case RESET_KIND_INIT:
1754 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1755 DRV_STATE_START_DONE);
1756 break;
1757
1758 case RESET_KIND_SHUTDOWN:
1759 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1760 DRV_STATE_UNLOAD_DONE);
1761 break;
1762
1763 default:
1764 break;
1765 }
1766 }
1767
1768 if (kind == RESET_KIND_SHUTDOWN)
1769 tg3_ape_driver_state_change(tp, kind);
1770}
1771
1772/* tp->lock is held. */
1773static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1774{
1775 if (tg3_flag(tp, ENABLE_ASF)) {
1776 switch (kind) {
1777 case RESET_KIND_INIT:
1778 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1779 DRV_STATE_START);
1780 break;
1781
1782 case RESET_KIND_SHUTDOWN:
1783 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1784 DRV_STATE_UNLOAD);
1785 break;
1786
1787 case RESET_KIND_SUSPEND:
1788 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1789 DRV_STATE_SUSPEND);
1790 break;
1791
1792 default:
1793 break;
1794 }
1795 }
1796}
1797
1798static int tg3_poll_fw(struct tg3 *tp)
1799{
1800 int i;
1801 u32 val;
1802
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00001803 if (tg3_flag(tp, IS_SSB_CORE)) {
1804 /* We don't use firmware. */
1805 return 0;
1806 }
1807
Joe Perches41535772013-02-16 11:20:04 +00001808 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001809 /* Wait up to 20ms for init done. */
1810 for (i = 0; i < 200; i++) {
1811 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1812 return 0;
1813 udelay(100);
1814 }
1815 return -ENODEV;
1816 }
1817
1818 /* Wait for firmware initialization to complete. */
1819 for (i = 0; i < 100000; i++) {
1820 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1821 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1822 break;
1823 udelay(10);
1824 }
1825
1826 /* Chip might not be fitted with firmware. Some Sun onboard
1827 * parts are configured like that. So don't signal the timeout
1828 * of the above loop as an error, but do report the lack of
1829 * running firmware once.
1830 */
1831 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1832 tg3_flag_set(tp, NO_FWARE_REPORTED);
1833
1834 netdev_info(tp->dev, "No firmware running\n");
1835 }
1836
Joe Perches41535772013-02-16 11:20:04 +00001837 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001838 /* The 57765 A0 needs a little more
1839 * time to do some important work.
1840 */
1841 mdelay(10);
1842 }
1843
1844 return 0;
1845}
1846
Matt Carlson95e28692008-05-25 23:44:14 -07001847static void tg3_link_report(struct tg3 *tp)
1848{
1849 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001850 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001851 tg3_ump_link_report(tp);
1852 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001853 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1854 (tp->link_config.active_speed == SPEED_1000 ?
1855 1000 :
1856 (tp->link_config.active_speed == SPEED_100 ?
1857 100 : 10)),
1858 (tp->link_config.active_duplex == DUPLEX_FULL ?
1859 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001860
Joe Perches05dbe002010-02-17 19:44:19 +00001861 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1862 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1863 "on" : "off",
1864 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1865 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001866
1867 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1868 netdev_info(tp->dev, "EEE is %s\n",
1869 tp->setlpicnt ? "enabled" : "disabled");
1870
Matt Carlson95e28692008-05-25 23:44:14 -07001871 tg3_ump_link_report(tp);
1872 }
Nithin Sujir84421b92013-03-08 08:01:24 +00001873
1874 tp->link_up = netif_carrier_ok(tp->dev);
Matt Carlson95e28692008-05-25 23:44:14 -07001875}
1876
Matt Carlson95e28692008-05-25 23:44:14 -07001877static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1878{
1879 u16 miireg;
1880
Steve Glendinninge18ce342008-12-16 02:00:00 -08001881 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001882 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001883 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001884 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001885 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001886 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1887 else
1888 miireg = 0;
1889
1890 return miireg;
1891}
1892
Matt Carlson95e28692008-05-25 23:44:14 -07001893static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1894{
1895 u8 cap = 0;
1896
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001897 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1898 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1899 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1900 if (lcladv & ADVERTISE_1000XPAUSE)
1901 cap = FLOW_CTRL_RX;
1902 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001903 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001904 }
1905
1906 return cap;
1907}
1908
Matt Carlsonf51f3562008-05-25 23:45:08 -07001909static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001910{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001911 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001912 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001913 u32 old_rx_mode = tp->rx_mode;
1914 u32 old_tx_mode = tp->tx_mode;
1915
Joe Perches63c3a662011-04-26 08:12:10 +00001916 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001917 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001918 else
1919 autoneg = tp->link_config.autoneg;
1920
Joe Perches63c3a662011-04-26 08:12:10 +00001921 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001922 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001923 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001924 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001925 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001926 } else
1927 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001928
Matt Carlsonf51f3562008-05-25 23:45:08 -07001929 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001930
Steve Glendinninge18ce342008-12-16 02:00:00 -08001931 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001932 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1933 else
1934 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1935
Matt Carlsonf51f3562008-05-25 23:45:08 -07001936 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001937 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001938
Steve Glendinninge18ce342008-12-16 02:00:00 -08001939 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001940 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1941 else
1942 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1943
Matt Carlsonf51f3562008-05-25 23:45:08 -07001944 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001945 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001946}
1947
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001948static void tg3_adjust_link(struct net_device *dev)
1949{
1950 u8 oldflowctrl, linkmesg = 0;
1951 u32 mac_mode, lcl_adv, rmt_adv;
1952 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001953 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001954
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001955 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001956
1957 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1958 MAC_MODE_HALF_DUPLEX);
1959
1960 oldflowctrl = tp->link_config.active_flowctrl;
1961
1962 if (phydev->link) {
1963 lcl_adv = 0;
1964 rmt_adv = 0;
1965
1966 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1967 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001968 else if (phydev->speed == SPEED_1000 ||
Joe Perches41535772013-02-16 11:20:04 +00001969 tg3_asic_rev(tp) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001970 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001971 else
1972 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001973
1974 if (phydev->duplex == DUPLEX_HALF)
1975 mac_mode |= MAC_MODE_HALF_DUPLEX;
1976 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00001977 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001978 tp->link_config.flowctrl);
1979
1980 if (phydev->pause)
1981 rmt_adv = LPA_PAUSE_CAP;
1982 if (phydev->asym_pause)
1983 rmt_adv |= LPA_PAUSE_ASYM;
1984 }
1985
1986 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1987 } else
1988 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1989
1990 if (mac_mode != tp->mac_mode) {
1991 tp->mac_mode = mac_mode;
1992 tw32_f(MAC_MODE, tp->mac_mode);
1993 udelay(40);
1994 }
1995
Joe Perches41535772013-02-16 11:20:04 +00001996 if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001997 if (phydev->speed == SPEED_10)
1998 tw32(MAC_MI_STAT,
1999 MAC_MI_STAT_10MBPS_MODE |
2000 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2001 else
2002 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2003 }
2004
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002005 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
2006 tw32(MAC_TX_LENGTHS,
2007 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2008 (6 << TX_LENGTHS_IPG_SHIFT) |
2009 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
2010 else
2011 tw32(MAC_TX_LENGTHS,
2012 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2013 (6 << TX_LENGTHS_IPG_SHIFT) |
2014 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
2015
Matt Carlson34655ad2012-02-22 12:35:18 +00002016 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002017 phydev->speed != tp->link_config.active_speed ||
2018 phydev->duplex != tp->link_config.active_duplex ||
2019 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002020 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002021
Matt Carlson34655ad2012-02-22 12:35:18 +00002022 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002023 tp->link_config.active_speed = phydev->speed;
2024 tp->link_config.active_duplex = phydev->duplex;
2025
Matt Carlson24bb4fb2009-10-05 17:55:29 +00002026 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002027
2028 if (linkmesg)
2029 tg3_link_report(tp);
2030}
2031
2032static int tg3_phy_init(struct tg3 *tp)
2033{
2034 struct phy_device *phydev;
2035
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002036 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002037 return 0;
2038
2039 /* Bring the PHY back to a known state. */
2040 tg3_bmcr_reset(tp);
2041
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002042 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002043
2044 /* Attach the MAC to the PHY. */
Florian Fainellif9a8f832013-01-14 00:52:52 +00002045 phydev = phy_connect(tp->dev, dev_name(&phydev->dev),
2046 tg3_adjust_link, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002047 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00002048 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002049 return PTR_ERR(phydev);
2050 }
2051
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002052 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002053 switch (phydev->interface) {
2054 case PHY_INTERFACE_MODE_GMII:
2055 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002056 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08002057 phydev->supported &= (PHY_GBIT_FEATURES |
2058 SUPPORTED_Pause |
2059 SUPPORTED_Asym_Pause);
2060 break;
2061 }
2062 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002063 case PHY_INTERFACE_MODE_MII:
2064 phydev->supported &= (PHY_BASIC_FEATURES |
2065 SUPPORTED_Pause |
2066 SUPPORTED_Asym_Pause);
2067 break;
2068 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002069 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002070 return -EINVAL;
2071 }
2072
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002073 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002074
2075 phydev->advertising = phydev->supported;
2076
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002077 return 0;
2078}
2079
2080static void tg3_phy_start(struct tg3 *tp)
2081{
2082 struct phy_device *phydev;
2083
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002084 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002085 return;
2086
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002087 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002088
Matt Carlson80096062010-08-02 11:26:06 +00002089 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
2090 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00002091 phydev->speed = tp->link_config.speed;
2092 phydev->duplex = tp->link_config.duplex;
2093 phydev->autoneg = tp->link_config.autoneg;
2094 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002095 }
2096
2097 phy_start(phydev);
2098
2099 phy_start_aneg(phydev);
2100}
2101
2102static void tg3_phy_stop(struct tg3 *tp)
2103{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002104 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002105 return;
2106
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002107 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002108}
2109
2110static void tg3_phy_fini(struct tg3 *tp)
2111{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002112 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002113 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002114 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002115 }
2116}
2117
Matt Carlson941ec902011-08-19 13:58:23 +00002118static int tg3_phy_set_extloopbk(struct tg3 *tp)
2119{
2120 int err;
2121 u32 val;
2122
2123 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
2124 return 0;
2125
2126 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
2127 /* Cannot do read-modify-write on 5401 */
2128 err = tg3_phy_auxctl_write(tp,
2129 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2130 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
2131 0x4c20);
2132 goto done;
2133 }
2134
2135 err = tg3_phy_auxctl_read(tp,
2136 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2137 if (err)
2138 return err;
2139
2140 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
2141 err = tg3_phy_auxctl_write(tp,
2142 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
2143
2144done:
2145 return err;
2146}
2147
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002148static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
2149{
2150 u32 phytest;
2151
2152 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2153 u32 phy;
2154
2155 tg3_writephy(tp, MII_TG3_FET_TEST,
2156 phytest | MII_TG3_FET_SHADOW_EN);
2157 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
2158 if (enable)
2159 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
2160 else
2161 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
2162 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
2163 }
2164 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2165 }
2166}
2167
Matt Carlson6833c042008-11-21 17:18:59 -08002168static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
2169{
2170 u32 reg;
2171
Joe Perches63c3a662011-04-26 08:12:10 +00002172 if (!tg3_flag(tp, 5705_PLUS) ||
2173 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002174 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08002175 return;
2176
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002177 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002178 tg3_phy_fet_toggle_apd(tp, enable);
2179 return;
2180 }
2181
Matt Carlson6833c042008-11-21 17:18:59 -08002182 reg = MII_TG3_MISC_SHDW_WREN |
2183 MII_TG3_MISC_SHDW_SCR5_SEL |
2184 MII_TG3_MISC_SHDW_SCR5_LPED |
2185 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
2186 MII_TG3_MISC_SHDW_SCR5_SDTL |
2187 MII_TG3_MISC_SHDW_SCR5_C125OE;
Joe Perches41535772013-02-16 11:20:04 +00002188 if (tg3_asic_rev(tp) != ASIC_REV_5784 || !enable)
Matt Carlson6833c042008-11-21 17:18:59 -08002189 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2190
2191 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2192
2193
2194 reg = MII_TG3_MISC_SHDW_WREN |
2195 MII_TG3_MISC_SHDW_APD_SEL |
2196 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2197 if (enable)
2198 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2199
2200 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2201}
2202
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002203static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
2204{
2205 u32 phy;
2206
Joe Perches63c3a662011-04-26 08:12:10 +00002207 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002208 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002209 return;
2210
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002211 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002212 u32 ephy;
2213
Matt Carlson535ef6e2009-08-25 10:09:36 +00002214 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2215 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2216
2217 tg3_writephy(tp, MII_TG3_FET_TEST,
2218 ephy | MII_TG3_FET_SHADOW_EN);
2219 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002220 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002221 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002222 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002223 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2224 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002225 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002226 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002227 }
2228 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002229 int ret;
2230
2231 ret = tg3_phy_auxctl_read(tp,
2232 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2233 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002234 if (enable)
2235 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2236 else
2237 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002238 tg3_phy_auxctl_write(tp,
2239 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002240 }
2241 }
2242}
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244static void tg3_phy_set_wirespeed(struct tg3 *tp)
2245{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002246 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 u32 val;
2248
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002249 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return;
2251
Matt Carlson15ee95c2011-04-20 07:57:40 +00002252 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2253 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002254 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2255 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002258static void tg3_phy_apply_otp(struct tg3 *tp)
2259{
2260 u32 otp, phy;
2261
2262 if (!tp->phy_otp)
2263 return;
2264
2265 otp = tp->phy_otp;
2266
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002267 if (tg3_phy_toggle_auxctl_smdsp(tp, true))
Matt Carlson1d36ba42011-04-20 07:57:42 +00002268 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002269
2270 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2271 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2272 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2273
2274 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2275 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2276 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2277
2278 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2279 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2280 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2281
2282 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2283 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2284
2285 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2286 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2287
2288 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2289 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2290 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2291
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002292 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002293}
2294
Matt Carlson52b02d02010-10-14 10:37:41 +00002295static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
2296{
2297 u32 val;
2298
2299 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2300 return;
2301
2302 tp->setlpicnt = 0;
2303
2304 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
2305 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002306 tp->link_config.active_duplex == DUPLEX_FULL &&
2307 (tp->link_config.active_speed == SPEED_100 ||
2308 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002309 u32 eeectl;
2310
2311 if (tp->link_config.active_speed == SPEED_1000)
2312 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2313 else
2314 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2315
2316 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2317
Matt Carlson3110f5f52010-12-06 08:28:50 +00002318 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2319 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002320
Matt Carlsonb0c59432011-05-19 12:12:48 +00002321 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2322 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002323 tp->setlpicnt = 2;
2324 }
2325
2326 if (!tp->setlpicnt) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002327 if (current_link_up == 1 &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002328 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002329 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002330 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb715ce92011-07-20 10:20:52 +00002331 }
2332
Matt Carlson52b02d02010-10-14 10:37:41 +00002333 val = tr32(TG3_CPMU_EEE_MODE);
2334 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2335 }
2336}
2337
Matt Carlsonb0c59432011-05-19 12:12:48 +00002338static void tg3_phy_eee_enable(struct tg3 *tp)
2339{
2340 u32 val;
2341
2342 if (tp->link_config.active_speed == SPEED_1000 &&
Joe Perches41535772013-02-16 11:20:04 +00002343 (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2344 tg3_asic_rev(tp) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002345 tg3_flag(tp, 57765_CLASS)) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002346 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002347 val = MII_TG3_DSP_TAP26_ALNOKO |
2348 MII_TG3_DSP_TAP26_RMRXSTO;
2349 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002350 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002351 }
2352
2353 val = tr32(TG3_CPMU_EEE_MODE);
2354 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2355}
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357static int tg3_wait_macro_done(struct tg3 *tp)
2358{
2359 int limit = 100;
2360
2361 while (limit--) {
2362 u32 tmp32;
2363
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002364 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if ((tmp32 & 0x1000) == 0)
2366 break;
2367 }
2368 }
Roel Kluind4675b52009-02-12 16:33:27 -08002369 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 return -EBUSY;
2371
2372 return 0;
2373}
2374
2375static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2376{
2377 static const u32 test_pat[4][6] = {
2378 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2379 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2380 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2381 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2382 };
2383 int chan;
2384
2385 for (chan = 0; chan < 4; chan++) {
2386 int i;
2387
2388 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2389 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002390 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 for (i = 0; i < 6; i++)
2393 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2394 test_pat[chan][i]);
2395
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002396 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 if (tg3_wait_macro_done(tp)) {
2398 *resetp = 1;
2399 return -EBUSY;
2400 }
2401
2402 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2403 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002404 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (tg3_wait_macro_done(tp)) {
2406 *resetp = 1;
2407 return -EBUSY;
2408 }
2409
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002410 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 if (tg3_wait_macro_done(tp)) {
2412 *resetp = 1;
2413 return -EBUSY;
2414 }
2415
2416 for (i = 0; i < 6; i += 2) {
2417 u32 low, high;
2418
2419 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2420 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2421 tg3_wait_macro_done(tp)) {
2422 *resetp = 1;
2423 return -EBUSY;
2424 }
2425 low &= 0x7fff;
2426 high &= 0x000f;
2427 if (low != test_pat[chan][i] ||
2428 high != test_pat[chan][i+1]) {
2429 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2430 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2431 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2432
2433 return -EBUSY;
2434 }
2435 }
2436 }
2437
2438 return 0;
2439}
2440
2441static int tg3_phy_reset_chanpat(struct tg3 *tp)
2442{
2443 int chan;
2444
2445 for (chan = 0; chan < 4; chan++) {
2446 int i;
2447
2448 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2449 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002450 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 for (i = 0; i < 6; i++)
2452 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002453 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if (tg3_wait_macro_done(tp))
2455 return -EBUSY;
2456 }
2457
2458 return 0;
2459}
2460
2461static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2462{
2463 u32 reg32, phy9_orig;
2464 int retries, do_phy_reset, err;
2465
2466 retries = 10;
2467 do_phy_reset = 1;
2468 do {
2469 if (do_phy_reset) {
2470 err = tg3_bmcr_reset(tp);
2471 if (err)
2472 return err;
2473 do_phy_reset = 0;
2474 }
2475
2476 /* Disable transmitter and interrupt. */
2477 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2478 continue;
2479
2480 reg32 |= 0x3000;
2481 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2482
2483 /* Set full-duplex, 1000 mbps. */
2484 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002485 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002488 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 continue;
2490
Matt Carlson221c5632011-06-13 13:39:01 +00002491 tg3_writephy(tp, MII_CTRL1000,
2492 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002494 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002495 if (err)
2496 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002499 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
2501 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2502 if (!err)
2503 break;
2504 } while (--retries);
2505
2506 err = tg3_phy_reset_chanpat(tp);
2507 if (err)
2508 return err;
2509
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002510 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002513 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002515 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Matt Carlson221c5632011-06-13 13:39:01 +00002517 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2520 reg32 &= ~0x3000;
2521 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2522 } else if (!err)
2523 err = -EBUSY;
2524
2525 return err;
2526}
2527
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002528static void tg3_carrier_off(struct tg3 *tp)
2529{
2530 netif_carrier_off(tp->dev);
2531 tp->link_up = false;
2532}
2533
Nithin Sujirce20f162013-04-09 08:48:04 +00002534static void tg3_warn_mgmt_link_flap(struct tg3 *tp)
2535{
2536 if (tg3_flag(tp, ENABLE_ASF))
2537 netdev_warn(tp->dev,
2538 "Management side-band traffic will be interrupted during phy settings change\n");
2539}
2540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541/* This will reset the tigon3 PHY if there is no valid
2542 * link unless the FORCE argument is non-zero.
2543 */
2544static int tg3_phy_reset(struct tg3 *tp)
2545{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002546 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 int err;
2548
Joe Perches41535772013-02-16 11:20:04 +00002549 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002550 val = tr32(GRC_MISC_CFG);
2551 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2552 udelay(40);
2553 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002554 err = tg3_readphy(tp, MII_BMSR, &val);
2555 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (err != 0)
2557 return -EBUSY;
2558
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002559 if (netif_running(tp->dev) && tp->link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00002560 netif_carrier_off(tp->dev);
Michael Chanc8e1e822006-04-29 18:55:17 -07002561 tg3_link_report(tp);
2562 }
2563
Joe Perches41535772013-02-16 11:20:04 +00002564 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
2565 tg3_asic_rev(tp) == ASIC_REV_5704 ||
2566 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 err = tg3_phy_reset_5703_4_5(tp);
2568 if (err)
2569 return err;
2570 goto out;
2571 }
2572
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002573 cpmuctrl = 0;
Joe Perches41535772013-02-16 11:20:04 +00002574 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
2575 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002576 cpmuctrl = tr32(TG3_CPMU_CTRL);
2577 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2578 tw32(TG3_CPMU_CTRL,
2579 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2580 }
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 err = tg3_bmcr_reset(tp);
2583 if (err)
2584 return err;
2585
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002586 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002587 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2588 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002589
2590 tw32(TG3_CPMU_CTRL, cpmuctrl);
2591 }
2592
Joe Perches41535772013-02-16 11:20:04 +00002593 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
2594 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002595 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2596 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2597 CPMU_LSPD_1000MB_MACCLK_12_5) {
2598 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2599 udelay(40);
2600 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2601 }
2602 }
2603
Joe Perches63c3a662011-04-26 08:12:10 +00002604 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002605 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002606 return 0;
2607
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002608 tg3_phy_apply_otp(tp);
2609
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002610 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002611 tg3_phy_toggle_apd(tp, true);
2612 else
2613 tg3_phy_toggle_apd(tp, false);
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002616 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002617 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002618 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2619 tg3_phydsp_write(tp, 0x000a, 0x0323);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002620 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002622
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002623 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002624 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2625 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002627
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002628 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002629 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002630 tg3_phydsp_write(tp, 0x000a, 0x310b);
2631 tg3_phydsp_write(tp, 0x201f, 0x9506);
2632 tg3_phydsp_write(tp, 0x401f, 0x14e2);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002633 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002634 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002635 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002636 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002637 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2638 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2639 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2640 tg3_writephy(tp, MII_TG3_TEST1,
2641 MII_TG3_TEST1_TRIM_EN | 0x4);
2642 } else
2643 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2644
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002645 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002646 }
Michael Chanc424cb22006-04-29 18:56:34 -07002647 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 /* Set Extended packet length bit (bit 14) on all chips that */
2650 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002651 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002653 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002654 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002656 err = tg3_phy_auxctl_read(tp,
2657 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2658 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002659 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2660 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 }
2662
2663 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2664 * jumbo frames transmission.
2665 */
Joe Perches63c3a662011-04-26 08:12:10 +00002666 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002667 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002668 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002669 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 }
2671
Joe Perches41535772013-02-16 11:20:04 +00002672 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002673 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002674 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002675 }
2676
Joe Perches41535772013-02-16 11:20:04 +00002677 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5762_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00002678 tg3_phydsp_write(tp, 0xffb, 0x4000);
2679
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002680 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 tg3_phy_set_wirespeed(tp);
2682 return 0;
2683}
2684
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002685#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2686#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2687#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2688 TG3_GPIO_MSG_NEED_VAUX)
2689#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2690 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2691 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2692 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2693 (TG3_GPIO_MSG_DRVR_PRES << 12))
2694
2695#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2696 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2697 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2698 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2699 (TG3_GPIO_MSG_NEED_VAUX << 12))
2700
2701static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2702{
2703 u32 status, shift;
2704
Joe Perches41535772013-02-16 11:20:04 +00002705 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2706 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002707 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2708 else
2709 status = tr32(TG3_CPMU_DRV_STATUS);
2710
2711 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2712 status &= ~(TG3_GPIO_MSG_MASK << shift);
2713 status |= (newstat << shift);
2714
Joe Perches41535772013-02-16 11:20:04 +00002715 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2716 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002717 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2718 else
2719 tw32(TG3_CPMU_DRV_STATUS, status);
2720
2721 return status >> TG3_APE_GPIO_MSG_SHIFT;
2722}
2723
Matt Carlson520b2752011-06-13 13:39:02 +00002724static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2725{
2726 if (!tg3_flag(tp, IS_NIC))
2727 return 0;
2728
Joe Perches41535772013-02-16 11:20:04 +00002729 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2730 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2731 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002732 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2733 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002734
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002735 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2736
2737 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2738 TG3_GRC_LCLCTL_PWRSW_DELAY);
2739
2740 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2741 } else {
2742 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2743 TG3_GRC_LCLCTL_PWRSW_DELAY);
2744 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002745
Matt Carlson520b2752011-06-13 13:39:02 +00002746 return 0;
2747}
2748
2749static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2750{
2751 u32 grc_local_ctrl;
2752
2753 if (!tg3_flag(tp, IS_NIC) ||
Joe Perches41535772013-02-16 11:20:04 +00002754 tg3_asic_rev(tp) == ASIC_REV_5700 ||
2755 tg3_asic_rev(tp) == ASIC_REV_5701)
Matt Carlson520b2752011-06-13 13:39:02 +00002756 return;
2757
2758 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2759
2760 tw32_wait_f(GRC_LOCAL_CTRL,
2761 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2762 TG3_GRC_LCLCTL_PWRSW_DELAY);
2763
2764 tw32_wait_f(GRC_LOCAL_CTRL,
2765 grc_local_ctrl,
2766 TG3_GRC_LCLCTL_PWRSW_DELAY);
2767
2768 tw32_wait_f(GRC_LOCAL_CTRL,
2769 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2770 TG3_GRC_LCLCTL_PWRSW_DELAY);
2771}
2772
2773static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2774{
2775 if (!tg3_flag(tp, IS_NIC))
2776 return;
2777
Joe Perches41535772013-02-16 11:20:04 +00002778 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
2779 tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson520b2752011-06-13 13:39:02 +00002780 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2781 (GRC_LCLCTRL_GPIO_OE0 |
2782 GRC_LCLCTRL_GPIO_OE1 |
2783 GRC_LCLCTRL_GPIO_OE2 |
2784 GRC_LCLCTRL_GPIO_OUTPUT0 |
2785 GRC_LCLCTRL_GPIO_OUTPUT1),
2786 TG3_GRC_LCLCTL_PWRSW_DELAY);
2787 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2788 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2789 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2790 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2791 GRC_LCLCTRL_GPIO_OE1 |
2792 GRC_LCLCTRL_GPIO_OE2 |
2793 GRC_LCLCTRL_GPIO_OUTPUT0 |
2794 GRC_LCLCTRL_GPIO_OUTPUT1 |
2795 tp->grc_local_ctrl;
2796 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2797 TG3_GRC_LCLCTL_PWRSW_DELAY);
2798
2799 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2800 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2801 TG3_GRC_LCLCTL_PWRSW_DELAY);
2802
2803 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2804 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2805 TG3_GRC_LCLCTL_PWRSW_DELAY);
2806 } else {
2807 u32 no_gpio2;
2808 u32 grc_local_ctrl = 0;
2809
2810 /* Workaround to prevent overdrawing Amps. */
Joe Perches41535772013-02-16 11:20:04 +00002811 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Matt Carlson520b2752011-06-13 13:39:02 +00002812 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2813 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2814 grc_local_ctrl,
2815 TG3_GRC_LCLCTL_PWRSW_DELAY);
2816 }
2817
2818 /* On 5753 and variants, GPIO2 cannot be used. */
2819 no_gpio2 = tp->nic_sram_data_cfg &
2820 NIC_SRAM_DATA_CFG_NO_GPIO2;
2821
2822 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2823 GRC_LCLCTRL_GPIO_OE1 |
2824 GRC_LCLCTRL_GPIO_OE2 |
2825 GRC_LCLCTRL_GPIO_OUTPUT1 |
2826 GRC_LCLCTRL_GPIO_OUTPUT2;
2827 if (no_gpio2) {
2828 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2829 GRC_LCLCTRL_GPIO_OUTPUT2);
2830 }
2831 tw32_wait_f(GRC_LOCAL_CTRL,
2832 tp->grc_local_ctrl | grc_local_ctrl,
2833 TG3_GRC_LCLCTL_PWRSW_DELAY);
2834
2835 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2836
2837 tw32_wait_f(GRC_LOCAL_CTRL,
2838 tp->grc_local_ctrl | grc_local_ctrl,
2839 TG3_GRC_LCLCTL_PWRSW_DELAY);
2840
2841 if (!no_gpio2) {
2842 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2843 tw32_wait_f(GRC_LOCAL_CTRL,
2844 tp->grc_local_ctrl | grc_local_ctrl,
2845 TG3_GRC_LCLCTL_PWRSW_DELAY);
2846 }
2847 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002848}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002849
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002850static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002851{
2852 u32 msg = 0;
2853
2854 /* Serialize power state transitions */
2855 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2856 return;
2857
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002858 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002859 msg = TG3_GPIO_MSG_NEED_VAUX;
2860
2861 msg = tg3_set_function_status(tp, msg);
2862
2863 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2864 goto done;
2865
2866 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2867 tg3_pwrsrc_switch_to_vaux(tp);
2868 else
2869 tg3_pwrsrc_die_with_vmain(tp);
2870
2871done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002872 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002873}
2874
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002875static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
Matt Carlson683644b2011-03-09 16:58:23 +00002877 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Matt Carlson334355a2010-01-20 16:58:10 +00002879 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002880 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 return;
2882
Joe Perches41535772013-02-16 11:20:04 +00002883 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2884 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2885 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002886 tg3_frob_aux_power_5717(tp, include_wol ?
2887 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002888 return;
2889 }
2890
2891 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002892 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002894 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002895
Michael Chanbc1c7562006-03-20 17:48:03 -08002896 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002897 if (dev_peer) {
2898 struct tg3 *tp_peer = netdev_priv(dev_peer);
2899
Joe Perches63c3a662011-04-26 08:12:10 +00002900 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002901 return;
2902
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002903 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002904 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002905 need_vaux = true;
2906 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002909 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2910 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002911 need_vaux = true;
2912
Matt Carlson520b2752011-06-13 13:39:02 +00002913 if (need_vaux)
2914 tg3_pwrsrc_switch_to_vaux(tp);
2915 else
2916 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917}
2918
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002919static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2920{
2921 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2922 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002923 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002924 if (speed != SPEED_10)
2925 return 1;
2926 } else if (speed == SPEED_10)
2927 return 1;
2928
2929 return 0;
2930}
2931
Matt Carlson0a459aa2008-11-03 16:54:15 -08002932static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002933{
Matt Carlsonce057f02007-11-12 21:08:03 -08002934 u32 val;
2935
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002936 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +00002937 if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Michael Chan51297242007-02-13 12:17:57 -08002938 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2939 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2940
2941 sg_dig_ctrl |=
2942 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2943 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2944 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2945 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002946 return;
Michael Chan51297242007-02-13 12:17:57 -08002947 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002948
Joe Perches41535772013-02-16 11:20:04 +00002949 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002950 tg3_bmcr_reset(tp);
2951 val = tr32(GRC_MISC_CFG);
2952 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2953 udelay(40);
2954 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002955 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002956 u32 phytest;
2957 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2958 u32 phy;
2959
2960 tg3_writephy(tp, MII_ADVERTISE, 0);
2961 tg3_writephy(tp, MII_BMCR,
2962 BMCR_ANENABLE | BMCR_ANRESTART);
2963
2964 tg3_writephy(tp, MII_TG3_FET_TEST,
2965 phytest | MII_TG3_FET_SHADOW_EN);
2966 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2967 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2968 tg3_writephy(tp,
2969 MII_TG3_FET_SHDW_AUXMODE4,
2970 phy);
2971 }
2972 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2973 }
2974 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002975 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002976 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2977 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002978
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002979 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2980 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2981 MII_TG3_AUXCTL_PCTL_VREG_11V;
2982 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002983 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002984
Michael Chan15c3b692006-03-22 01:06:52 -08002985 /* The PHY should not be powered down on some chips because
2986 * of bugs.
2987 */
Joe Perches41535772013-02-16 11:20:04 +00002988 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
2989 tg3_asic_rev(tp) == ASIC_REV_5704 ||
2990 (tg3_asic_rev(tp) == ASIC_REV_5780 &&
Matt Carlson085f1af2012-04-02 09:01:40 +00002991 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)) ||
Joe Perches41535772013-02-16 11:20:04 +00002992 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
Matt Carlson085f1af2012-04-02 09:01:40 +00002993 !tp->pci_fn))
Michael Chan15c3b692006-03-22 01:06:52 -08002994 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002995
Joe Perches41535772013-02-16 11:20:04 +00002996 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
2997 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002998 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2999 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
3000 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
3001 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
3002 }
3003
Michael Chan15c3b692006-03-22 01:06:52 -08003004 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
3005}
3006
Matt Carlson3f007892008-11-03 16:51:36 -08003007/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003008static int tg3_nvram_lock(struct tg3 *tp)
3009{
Joe Perches63c3a662011-04-26 08:12:10 +00003010 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003011 int i;
3012
3013 if (tp->nvram_lock_cnt == 0) {
3014 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
3015 for (i = 0; i < 8000; i++) {
3016 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
3017 break;
3018 udelay(20);
3019 }
3020 if (i == 8000) {
3021 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
3022 return -ENODEV;
3023 }
3024 }
3025 tp->nvram_lock_cnt++;
3026 }
3027 return 0;
3028}
3029
3030/* tp->lock is held. */
3031static void tg3_nvram_unlock(struct tg3 *tp)
3032{
Joe Perches63c3a662011-04-26 08:12:10 +00003033 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003034 if (tp->nvram_lock_cnt > 0)
3035 tp->nvram_lock_cnt--;
3036 if (tp->nvram_lock_cnt == 0)
3037 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
3038 }
3039}
3040
3041/* tp->lock is held. */
3042static void tg3_enable_nvram_access(struct tg3 *tp)
3043{
Joe Perches63c3a662011-04-26 08:12:10 +00003044 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003045 u32 nvaccess = tr32(NVRAM_ACCESS);
3046
3047 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
3048 }
3049}
3050
3051/* tp->lock is held. */
3052static void tg3_disable_nvram_access(struct tg3 *tp)
3053{
Joe Perches63c3a662011-04-26 08:12:10 +00003054 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003055 u32 nvaccess = tr32(NVRAM_ACCESS);
3056
3057 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
3058 }
3059}
3060
3061static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
3062 u32 offset, u32 *val)
3063{
3064 u32 tmp;
3065 int i;
3066
3067 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
3068 return -EINVAL;
3069
3070 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
3071 EEPROM_ADDR_DEVID_MASK |
3072 EEPROM_ADDR_READ);
3073 tw32(GRC_EEPROM_ADDR,
3074 tmp |
3075 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3076 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
3077 EEPROM_ADDR_ADDR_MASK) |
3078 EEPROM_ADDR_READ | EEPROM_ADDR_START);
3079
3080 for (i = 0; i < 1000; i++) {
3081 tmp = tr32(GRC_EEPROM_ADDR);
3082
3083 if (tmp & EEPROM_ADDR_COMPLETE)
3084 break;
3085 msleep(1);
3086 }
3087 if (!(tmp & EEPROM_ADDR_COMPLETE))
3088 return -EBUSY;
3089
Matt Carlson62cedd12009-04-20 14:52:29 -07003090 tmp = tr32(GRC_EEPROM_DATA);
3091
3092 /*
3093 * The data will always be opposite the native endian
3094 * format. Perform a blind byteswap to compensate.
3095 */
3096 *val = swab32(tmp);
3097
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003098 return 0;
3099}
3100
3101#define NVRAM_CMD_TIMEOUT 10000
3102
3103static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
3104{
3105 int i;
3106
3107 tw32(NVRAM_CMD, nvram_cmd);
3108 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
3109 udelay(10);
3110 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
3111 udelay(10);
3112 break;
3113 }
3114 }
3115
3116 if (i == NVRAM_CMD_TIMEOUT)
3117 return -EBUSY;
3118
3119 return 0;
3120}
3121
3122static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
3123{
Joe Perches63c3a662011-04-26 08:12:10 +00003124 if (tg3_flag(tp, NVRAM) &&
3125 tg3_flag(tp, NVRAM_BUFFERED) &&
3126 tg3_flag(tp, FLASH) &&
3127 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003128 (tp->nvram_jedecnum == JEDEC_ATMEL))
3129
3130 addr = ((addr / tp->nvram_pagesize) <<
3131 ATMEL_AT45DB0X1B_PAGE_POS) +
3132 (addr % tp->nvram_pagesize);
3133
3134 return addr;
3135}
3136
3137static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
3138{
Joe Perches63c3a662011-04-26 08:12:10 +00003139 if (tg3_flag(tp, NVRAM) &&
3140 tg3_flag(tp, NVRAM_BUFFERED) &&
3141 tg3_flag(tp, FLASH) &&
3142 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003143 (tp->nvram_jedecnum == JEDEC_ATMEL))
3144
3145 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
3146 tp->nvram_pagesize) +
3147 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
3148
3149 return addr;
3150}
3151
Matt Carlsone4f34112009-02-25 14:25:00 +00003152/* NOTE: Data read in from NVRAM is byteswapped according to
3153 * the byteswapping settings for all other register accesses.
3154 * tg3 devices are BE devices, so on a BE machine, the data
3155 * returned will be exactly as it is seen in NVRAM. On a LE
3156 * machine, the 32-bit value will be byteswapped.
3157 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003158static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
3159{
3160 int ret;
3161
Joe Perches63c3a662011-04-26 08:12:10 +00003162 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003163 return tg3_nvram_read_using_eeprom(tp, offset, val);
3164
3165 offset = tg3_nvram_phys_addr(tp, offset);
3166
3167 if (offset > NVRAM_ADDR_MSK)
3168 return -EINVAL;
3169
3170 ret = tg3_nvram_lock(tp);
3171 if (ret)
3172 return ret;
3173
3174 tg3_enable_nvram_access(tp);
3175
3176 tw32(NVRAM_ADDR, offset);
3177 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
3178 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
3179
3180 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00003181 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003182
3183 tg3_disable_nvram_access(tp);
3184
3185 tg3_nvram_unlock(tp);
3186
3187 return ret;
3188}
3189
Matt Carlsona9dc5292009-02-25 14:25:30 +00003190/* Ensures NVRAM data is in bytestream format. */
3191static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003192{
3193 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00003194 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003195 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003196 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003197 return res;
3198}
3199
Matt Carlsondbe9b922012-02-13 10:20:09 +00003200static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
3201 u32 offset, u32 len, u8 *buf)
3202{
3203 int i, j, rc = 0;
3204 u32 val;
3205
3206 for (i = 0; i < len; i += 4) {
3207 u32 addr;
3208 __be32 data;
3209
3210 addr = offset + i;
3211
3212 memcpy(&data, buf + i, 4);
3213
3214 /*
3215 * The SEEPROM interface expects the data to always be opposite
3216 * the native endian format. We accomplish this by reversing
3217 * all the operations that would have been performed on the
3218 * data from a call to tg3_nvram_read_be32().
3219 */
3220 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3221
3222 val = tr32(GRC_EEPROM_ADDR);
3223 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3224
3225 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3226 EEPROM_ADDR_READ);
3227 tw32(GRC_EEPROM_ADDR, val |
3228 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3229 (addr & EEPROM_ADDR_ADDR_MASK) |
3230 EEPROM_ADDR_START |
3231 EEPROM_ADDR_WRITE);
3232
3233 for (j = 0; j < 1000; j++) {
3234 val = tr32(GRC_EEPROM_ADDR);
3235
3236 if (val & EEPROM_ADDR_COMPLETE)
3237 break;
3238 msleep(1);
3239 }
3240 if (!(val & EEPROM_ADDR_COMPLETE)) {
3241 rc = -EBUSY;
3242 break;
3243 }
3244 }
3245
3246 return rc;
3247}
3248
3249/* offset and length are dword aligned */
3250static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3251 u8 *buf)
3252{
3253 int ret = 0;
3254 u32 pagesize = tp->nvram_pagesize;
3255 u32 pagemask = pagesize - 1;
3256 u32 nvram_cmd;
3257 u8 *tmp;
3258
3259 tmp = kmalloc(pagesize, GFP_KERNEL);
3260 if (tmp == NULL)
3261 return -ENOMEM;
3262
3263 while (len) {
3264 int j;
3265 u32 phy_addr, page_off, size;
3266
3267 phy_addr = offset & ~pagemask;
3268
3269 for (j = 0; j < pagesize; j += 4) {
3270 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3271 (__be32 *) (tmp + j));
3272 if (ret)
3273 break;
3274 }
3275 if (ret)
3276 break;
3277
3278 page_off = offset & pagemask;
3279 size = pagesize;
3280 if (len < size)
3281 size = len;
3282
3283 len -= size;
3284
3285 memcpy(tmp + page_off, buf, size);
3286
3287 offset = offset + (pagesize - page_off);
3288
3289 tg3_enable_nvram_access(tp);
3290
3291 /*
3292 * Before we can erase the flash page, we need
3293 * to issue a special "write enable" command.
3294 */
3295 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3296
3297 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3298 break;
3299
3300 /* Erase the target page */
3301 tw32(NVRAM_ADDR, phy_addr);
3302
3303 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3304 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3305
3306 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3307 break;
3308
3309 /* Issue another write enable to start the write. */
3310 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3311
3312 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3313 break;
3314
3315 for (j = 0; j < pagesize; j += 4) {
3316 __be32 data;
3317
3318 data = *((__be32 *) (tmp + j));
3319
3320 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3321
3322 tw32(NVRAM_ADDR, phy_addr + j);
3323
3324 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3325 NVRAM_CMD_WR;
3326
3327 if (j == 0)
3328 nvram_cmd |= NVRAM_CMD_FIRST;
3329 else if (j == (pagesize - 4))
3330 nvram_cmd |= NVRAM_CMD_LAST;
3331
3332 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3333 if (ret)
3334 break;
3335 }
3336 if (ret)
3337 break;
3338 }
3339
3340 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3341 tg3_nvram_exec_cmd(tp, nvram_cmd);
3342
3343 kfree(tmp);
3344
3345 return ret;
3346}
3347
3348/* offset and length are dword aligned */
3349static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3350 u8 *buf)
3351{
3352 int i, ret = 0;
3353
3354 for (i = 0; i < len; i += 4, offset += 4) {
3355 u32 page_off, phy_addr, nvram_cmd;
3356 __be32 data;
3357
3358 memcpy(&data, buf + i, 4);
3359 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3360
3361 page_off = offset % tp->nvram_pagesize;
3362
3363 phy_addr = tg3_nvram_phys_addr(tp, offset);
3364
Matt Carlsondbe9b922012-02-13 10:20:09 +00003365 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3366
3367 if (page_off == 0 || i == 0)
3368 nvram_cmd |= NVRAM_CMD_FIRST;
3369 if (page_off == (tp->nvram_pagesize - 4))
3370 nvram_cmd |= NVRAM_CMD_LAST;
3371
3372 if (i == (len - 4))
3373 nvram_cmd |= NVRAM_CMD_LAST;
3374
Matt Carlson42278222012-02-13 15:20:11 +00003375 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3376 !tg3_flag(tp, FLASH) ||
3377 !tg3_flag(tp, 57765_PLUS))
3378 tw32(NVRAM_ADDR, phy_addr);
3379
Joe Perches41535772013-02-16 11:20:04 +00003380 if (tg3_asic_rev(tp) != ASIC_REV_5752 &&
Matt Carlsondbe9b922012-02-13 10:20:09 +00003381 !tg3_flag(tp, 5755_PLUS) &&
3382 (tp->nvram_jedecnum == JEDEC_ST) &&
3383 (nvram_cmd & NVRAM_CMD_FIRST)) {
3384 u32 cmd;
3385
3386 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3387 ret = tg3_nvram_exec_cmd(tp, cmd);
3388 if (ret)
3389 break;
3390 }
3391 if (!tg3_flag(tp, FLASH)) {
3392 /* We always do complete word writes to eeprom. */
3393 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3394 }
3395
3396 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3397 if (ret)
3398 break;
3399 }
3400 return ret;
3401}
3402
3403/* offset and length are dword aligned */
3404static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3405{
3406 int ret;
3407
3408 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3409 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3410 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3411 udelay(40);
3412 }
3413
3414 if (!tg3_flag(tp, NVRAM)) {
3415 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3416 } else {
3417 u32 grc_mode;
3418
3419 ret = tg3_nvram_lock(tp);
3420 if (ret)
3421 return ret;
3422
3423 tg3_enable_nvram_access(tp);
3424 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3425 tw32(NVRAM_WRITE1, 0x406);
3426
3427 grc_mode = tr32(GRC_MODE);
3428 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3429
3430 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3431 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3432 buf);
3433 } else {
3434 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3435 buf);
3436 }
3437
3438 grc_mode = tr32(GRC_MODE);
3439 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3440
3441 tg3_disable_nvram_access(tp);
3442 tg3_nvram_unlock(tp);
3443 }
3444
3445 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3446 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3447 udelay(40);
3448 }
3449
3450 return ret;
3451}
3452
Matt Carlson997b4f12011-08-31 11:44:53 +00003453#define RX_CPU_SCRATCH_BASE 0x30000
3454#define RX_CPU_SCRATCH_SIZE 0x04000
3455#define TX_CPU_SCRATCH_BASE 0x34000
3456#define TX_CPU_SCRATCH_SIZE 0x04000
3457
3458/* tp->lock is held. */
Nithin Sujir837c45b2013-03-06 17:02:30 +00003459static int tg3_pause_cpu(struct tg3 *tp, u32 cpu_base)
Matt Carlson997b4f12011-08-31 11:44:53 +00003460{
3461 int i;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003462 const int iters = 10000;
Matt Carlson997b4f12011-08-31 11:44:53 +00003463
Nithin Sujir837c45b2013-03-06 17:02:30 +00003464 for (i = 0; i < iters; i++) {
3465 tw32(cpu_base + CPU_STATE, 0xffffffff);
3466 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3467 if (tr32(cpu_base + CPU_MODE) & CPU_MODE_HALT)
3468 break;
3469 }
3470
3471 return (i == iters) ? -EBUSY : 0;
3472}
3473
3474/* tp->lock is held. */
3475static int tg3_rxcpu_pause(struct tg3 *tp)
3476{
3477 int rc = tg3_pause_cpu(tp, RX_CPU_BASE);
3478
3479 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3480 tw32_f(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3481 udelay(10);
3482
3483 return rc;
3484}
3485
3486/* tp->lock is held. */
3487static int tg3_txcpu_pause(struct tg3 *tp)
3488{
3489 return tg3_pause_cpu(tp, TX_CPU_BASE);
3490}
3491
3492/* tp->lock is held. */
3493static void tg3_resume_cpu(struct tg3 *tp, u32 cpu_base)
3494{
3495 tw32(cpu_base + CPU_STATE, 0xffffffff);
3496 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3497}
3498
3499/* tp->lock is held. */
3500static void tg3_rxcpu_resume(struct tg3 *tp)
3501{
3502 tg3_resume_cpu(tp, RX_CPU_BASE);
3503}
3504
3505/* tp->lock is held. */
3506static int tg3_halt_cpu(struct tg3 *tp, u32 cpu_base)
3507{
3508 int rc;
3509
3510 BUG_ON(cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Matt Carlson997b4f12011-08-31 11:44:53 +00003511
Joe Perches41535772013-02-16 11:20:04 +00003512 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003513 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3514
3515 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3516 return 0;
3517 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003518 if (cpu_base == RX_CPU_BASE) {
3519 rc = tg3_rxcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003520 } else {
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00003521 /*
3522 * There is only an Rx CPU for the 5750 derivative in the
3523 * BCM4785.
3524 */
3525 if (tg3_flag(tp, IS_SSB_CORE))
3526 return 0;
3527
Nithin Sujir837c45b2013-03-06 17:02:30 +00003528 rc = tg3_txcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003529 }
3530
Nithin Sujir837c45b2013-03-06 17:02:30 +00003531 if (rc) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003532 netdev_err(tp->dev, "%s timed out, %s CPU\n",
Nithin Sujir837c45b2013-03-06 17:02:30 +00003533 __func__, cpu_base == RX_CPU_BASE ? "RX" : "TX");
Matt Carlson997b4f12011-08-31 11:44:53 +00003534 return -ENODEV;
3535 }
3536
3537 /* Clear firmware's nvram arbitration. */
3538 if (tg3_flag(tp, NVRAM))
3539 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3540 return 0;
3541}
3542
Nithin Sujir31f11a92013-03-06 17:02:33 +00003543static int tg3_fw_data_len(struct tg3 *tp,
3544 const struct tg3_firmware_hdr *fw_hdr)
3545{
3546 int fw_len;
3547
3548 /* Non fragmented firmware have one firmware header followed by a
3549 * contiguous chunk of data to be written. The length field in that
3550 * header is not the length of data to be written but the complete
3551 * length of the bss. The data length is determined based on
3552 * tp->fw->size minus headers.
3553 *
3554 * Fragmented firmware have a main header followed by multiple
3555 * fragments. Each fragment is identical to non fragmented firmware
3556 * with a firmware header followed by a contiguous chunk of data. In
3557 * the main header, the length field is unused and set to 0xffffffff.
3558 * In each fragment header the length is the entire size of that
3559 * fragment i.e. fragment data + header length. Data length is
3560 * therefore length field in the header minus TG3_FW_HDR_LEN.
3561 */
3562 if (tp->fw_len == 0xffffffff)
3563 fw_len = be32_to_cpu(fw_hdr->len);
3564 else
3565 fw_len = tp->fw->size;
3566
3567 return (fw_len - TG3_FW_HDR_LEN) / sizeof(u32);
3568}
3569
Matt Carlson997b4f12011-08-31 11:44:53 +00003570/* tp->lock is held. */
3571static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3572 u32 cpu_scratch_base, int cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003573 const struct tg3_firmware_hdr *fw_hdr)
Matt Carlson997b4f12011-08-31 11:44:53 +00003574{
Nithin Sujirc4dab502013-03-06 17:02:34 +00003575 int err, i;
Matt Carlson997b4f12011-08-31 11:44:53 +00003576 void (*write_op)(struct tg3 *, u32, u32);
Nithin Sujir31f11a92013-03-06 17:02:33 +00003577 int total_len = tp->fw->size;
Matt Carlson997b4f12011-08-31 11:44:53 +00003578
3579 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3580 netdev_err(tp->dev,
3581 "%s: Trying to load TX cpu firmware which is 5705\n",
3582 __func__);
3583 return -EINVAL;
3584 }
3585
Nithin Sujirc4dab502013-03-06 17:02:34 +00003586 if (tg3_flag(tp, 5705_PLUS) && tg3_asic_rev(tp) != ASIC_REV_57766)
Matt Carlson997b4f12011-08-31 11:44:53 +00003587 write_op = tg3_write_mem;
3588 else
3589 write_op = tg3_write_indirect_reg32;
3590
Nithin Sujirc4dab502013-03-06 17:02:34 +00003591 if (tg3_asic_rev(tp) != ASIC_REV_57766) {
3592 /* It is possible that bootcode is still loading at this point.
3593 * Get the nvram lock first before halting the cpu.
3594 */
3595 int lock_err = tg3_nvram_lock(tp);
3596 err = tg3_halt_cpu(tp, cpu_base);
3597 if (!lock_err)
3598 tg3_nvram_unlock(tp);
3599 if (err)
3600 goto out;
Matt Carlson997b4f12011-08-31 11:44:53 +00003601
Nithin Sujirc4dab502013-03-06 17:02:34 +00003602 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3603 write_op(tp, cpu_scratch_base + i, 0);
3604 tw32(cpu_base + CPU_STATE, 0xffffffff);
3605 tw32(cpu_base + CPU_MODE,
3606 tr32(cpu_base + CPU_MODE) | CPU_MODE_HALT);
3607 } else {
3608 /* Subtract additional main header for fragmented firmware and
3609 * advance to the first fragment
3610 */
3611 total_len -= TG3_FW_HDR_LEN;
3612 fw_hdr++;
3613 }
Nithin Sujir77997ea2013-03-06 17:02:32 +00003614
Nithin Sujir31f11a92013-03-06 17:02:33 +00003615 do {
3616 u32 *fw_data = (u32 *)(fw_hdr + 1);
3617 for (i = 0; i < tg3_fw_data_len(tp, fw_hdr); i++)
3618 write_op(tp, cpu_scratch_base +
3619 (be32_to_cpu(fw_hdr->base_addr) & 0xffff) +
3620 (i * sizeof(u32)),
3621 be32_to_cpu(fw_data[i]));
3622
3623 total_len -= be32_to_cpu(fw_hdr->len);
3624
3625 /* Advance to next fragment */
3626 fw_hdr = (struct tg3_firmware_hdr *)
3627 ((void *)fw_hdr + be32_to_cpu(fw_hdr->len));
3628 } while (total_len > 0);
Matt Carlson997b4f12011-08-31 11:44:53 +00003629
3630 err = 0;
3631
3632out:
3633 return err;
3634}
3635
3636/* tp->lock is held. */
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003637static int tg3_pause_cpu_and_set_pc(struct tg3 *tp, u32 cpu_base, u32 pc)
3638{
3639 int i;
3640 const int iters = 5;
3641
3642 tw32(cpu_base + CPU_STATE, 0xffffffff);
3643 tw32_f(cpu_base + CPU_PC, pc);
3644
3645 for (i = 0; i < iters; i++) {
3646 if (tr32(cpu_base + CPU_PC) == pc)
3647 break;
3648 tw32(cpu_base + CPU_STATE, 0xffffffff);
3649 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3650 tw32_f(cpu_base + CPU_PC, pc);
3651 udelay(1000);
3652 }
3653
3654 return (i == iters) ? -EBUSY : 0;
3655}
3656
3657/* tp->lock is held. */
Matt Carlson997b4f12011-08-31 11:44:53 +00003658static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3659{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003660 const struct tg3_firmware_hdr *fw_hdr;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003661 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003662
Nithin Sujir77997ea2013-03-06 17:02:32 +00003663 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003664
3665 /* Firmware blob starts with version numbers, followed by
3666 start address and length. We are setting complete length.
3667 length = end_address_of_bss - start_address_of_text.
3668 Remainder is the blob to be loaded contiguously
3669 from start address. */
3670
Matt Carlson997b4f12011-08-31 11:44:53 +00003671 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3672 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003673 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003674 if (err)
3675 return err;
3676
3677 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3678 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003679 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003680 if (err)
3681 return err;
3682
3683 /* Now startup only the RX cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003684 err = tg3_pause_cpu_and_set_pc(tp, RX_CPU_BASE,
3685 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003686 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003687 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3688 "should be %08x\n", __func__,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003689 tr32(RX_CPU_BASE + CPU_PC),
3690 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003691 return -ENODEV;
3692 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003693
3694 tg3_rxcpu_resume(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003695
3696 return 0;
3697}
3698
Nithin Sujirc4dab502013-03-06 17:02:34 +00003699static int tg3_validate_rxcpu_state(struct tg3 *tp)
3700{
3701 const int iters = 1000;
3702 int i;
3703 u32 val;
3704
3705 /* Wait for boot code to complete initialization and enter service
3706 * loop. It is then safe to download service patches
3707 */
3708 for (i = 0; i < iters; i++) {
3709 if (tr32(RX_CPU_HWBKPT) == TG3_SBROM_IN_SERVICE_LOOP)
3710 break;
3711
3712 udelay(10);
3713 }
3714
3715 if (i == iters) {
3716 netdev_err(tp->dev, "Boot code not ready for service patches\n");
3717 return -EBUSY;
3718 }
3719
3720 val = tg3_read_indirect_reg32(tp, TG3_57766_FW_HANDSHAKE);
3721 if (val & 0xff) {
3722 netdev_warn(tp->dev,
3723 "Other patches exist. Not downloading EEE patch\n");
3724 return -EEXIST;
3725 }
3726
3727 return 0;
3728}
3729
3730/* tp->lock is held. */
3731static void tg3_load_57766_firmware(struct tg3 *tp)
3732{
3733 struct tg3_firmware_hdr *fw_hdr;
3734
3735 if (!tg3_flag(tp, NO_NVRAM))
3736 return;
3737
3738 if (tg3_validate_rxcpu_state(tp))
3739 return;
3740
3741 if (!tp->fw)
3742 return;
3743
3744 /* This firmware blob has a different format than older firmware
3745 * releases as given below. The main difference is we have fragmented
3746 * data to be written to non-contiguous locations.
3747 *
3748 * In the beginning we have a firmware header identical to other
3749 * firmware which consists of version, base addr and length. The length
3750 * here is unused and set to 0xffffffff.
3751 *
3752 * This is followed by a series of firmware fragments which are
3753 * individually identical to previous firmware. i.e. they have the
3754 * firmware header and followed by data for that fragment. The version
3755 * field of the individual fragment header is unused.
3756 */
3757
3758 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
3759 if (be32_to_cpu(fw_hdr->base_addr) != TG3_57766_FW_BASE_ADDR)
3760 return;
3761
3762 if (tg3_rxcpu_pause(tp))
3763 return;
3764
3765 /* tg3_load_firmware_cpu() will always succeed for the 57766 */
3766 tg3_load_firmware_cpu(tp, 0, TG3_57766_FW_BASE_ADDR, 0, fw_hdr);
3767
3768 tg3_rxcpu_resume(tp);
3769}
3770
Matt Carlson997b4f12011-08-31 11:44:53 +00003771/* tp->lock is held. */
3772static int tg3_load_tso_firmware(struct tg3 *tp)
3773{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003774 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson997b4f12011-08-31 11:44:53 +00003775 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003776 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003777
Matt Carlson1caf13e2013-03-06 17:02:29 +00003778 if (!tg3_flag(tp, FW_TSO))
Matt Carlson997b4f12011-08-31 11:44:53 +00003779 return 0;
3780
Nithin Sujir77997ea2013-03-06 17:02:32 +00003781 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003782
3783 /* Firmware blob starts with version numbers, followed by
3784 start address and length. We are setting complete length.
3785 length = end_address_of_bss - start_address_of_text.
3786 Remainder is the blob to be loaded contiguously
3787 from start address. */
3788
Matt Carlson997b4f12011-08-31 11:44:53 +00003789 cpu_scratch_size = tp->fw_len;
Matt Carlson997b4f12011-08-31 11:44:53 +00003790
Joe Perches41535772013-02-16 11:20:04 +00003791 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003792 cpu_base = RX_CPU_BASE;
3793 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3794 } else {
3795 cpu_base = TX_CPU_BASE;
3796 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3797 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3798 }
3799
3800 err = tg3_load_firmware_cpu(tp, cpu_base,
3801 cpu_scratch_base, cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003802 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003803 if (err)
3804 return err;
3805
3806 /* Now startup the cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003807 err = tg3_pause_cpu_and_set_pc(tp, cpu_base,
3808 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003809 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003810 netdev_err(tp->dev,
3811 "%s fails to set CPU PC, is %08x should be %08x\n",
Nithin Sujir77997ea2013-03-06 17:02:32 +00003812 __func__, tr32(cpu_base + CPU_PC),
3813 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003814 return -ENODEV;
3815 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003816
3817 tg3_resume_cpu(tp, cpu_base);
Matt Carlson997b4f12011-08-31 11:44:53 +00003818 return 0;
3819}
3820
3821
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003822/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08003823static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
3824{
3825 u32 addr_high, addr_low;
3826 int i;
3827
3828 addr_high = ((tp->dev->dev_addr[0] << 8) |
3829 tp->dev->dev_addr[1]);
3830 addr_low = ((tp->dev->dev_addr[2] << 24) |
3831 (tp->dev->dev_addr[3] << 16) |
3832 (tp->dev->dev_addr[4] << 8) |
3833 (tp->dev->dev_addr[5] << 0));
3834 for (i = 0; i < 4; i++) {
3835 if (i == 1 && skip_mac_1)
3836 continue;
3837 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3838 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3839 }
3840
Joe Perches41535772013-02-16 11:20:04 +00003841 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
3842 tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson3f007892008-11-03 16:51:36 -08003843 for (i = 0; i < 12; i++) {
3844 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3845 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3846 }
3847 }
3848
3849 addr_high = (tp->dev->dev_addr[0] +
3850 tp->dev->dev_addr[1] +
3851 tp->dev->dev_addr[2] +
3852 tp->dev->dev_addr[3] +
3853 tp->dev->dev_addr[4] +
3854 tp->dev->dev_addr[5]) &
3855 TX_BACKOFF_SEED_MASK;
3856 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3857}
3858
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003859static void tg3_enable_register_access(struct tg3 *tp)
3860{
3861 /*
3862 * Make sure register accesses (indirect or otherwise) will function
3863 * correctly.
3864 */
3865 pci_write_config_dword(tp->pdev,
3866 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3867}
3868
3869static int tg3_power_up(struct tg3 *tp)
3870{
Matt Carlsonbed98292011-07-13 09:27:29 +00003871 int err;
3872
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003873 tg3_enable_register_access(tp);
3874
Matt Carlsonbed98292011-07-13 09:27:29 +00003875 err = pci_set_power_state(tp->pdev, PCI_D0);
3876 if (!err) {
3877 /* Switch out of Vaux if it is a NIC */
3878 tg3_pwrsrc_switch_to_vmain(tp);
3879 } else {
3880 netdev_err(tp->dev, "Transition to D0 failed\n");
3881 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003882
Matt Carlsonbed98292011-07-13 09:27:29 +00003883 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003884}
3885
Matt Carlson4b409522012-02-13 10:20:11 +00003886static int tg3_setup_phy(struct tg3 *, int);
3887
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003888static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889{
3890 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003891 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003893 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003894
3895 /* Restore the CLKREQ setting. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06003896 if (tg3_flag(tp, CLKREQ_BUG))
3897 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
3898 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003899
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3901 tw32(TG3PCI_MISC_HOST_CTRL,
3902 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3903
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003904 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003905 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003906
Joe Perches63c3a662011-04-26 08:12:10 +00003907 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003908 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003909 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003910 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003911 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003912 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003913
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003914 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003915
Matt Carlson80096062010-08-02 11:26:06 +00003916 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003917
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003918 tp->link_config.speed = phydev->speed;
3919 tp->link_config.duplex = phydev->duplex;
3920 tp->link_config.autoneg = phydev->autoneg;
3921 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003922
3923 advertising = ADVERTISED_TP |
3924 ADVERTISED_Pause |
3925 ADVERTISED_Autoneg |
3926 ADVERTISED_10baseT_Half;
3927
Joe Perches63c3a662011-04-26 08:12:10 +00003928 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3929 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003930 advertising |=
3931 ADVERTISED_100baseT_Half |
3932 ADVERTISED_100baseT_Full |
3933 ADVERTISED_10baseT_Full;
3934 else
3935 advertising |= ADVERTISED_10baseT_Full;
3936 }
3937
3938 phydev->advertising = advertising;
3939
3940 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003941
3942 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003943 if (phyid != PHY_ID_BCMAC131) {
3944 phyid &= PHY_BCM_OUI_MASK;
3945 if (phyid == PHY_BCM_OUI_1 ||
3946 phyid == PHY_BCM_OUI_2 ||
3947 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003948 do_low_power = true;
3949 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003950 }
Matt Carlsondd477002008-05-25 23:45:58 -07003951 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003952 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003953
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003954 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00003955 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Matt Carlson2855b9f2012-02-13 15:20:14 +00003957 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlsondd477002008-05-25 23:45:58 -07003958 tg3_setup_phy(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 }
3960
Joe Perches41535772013-02-16 11:20:04 +00003961 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07003962 u32 val;
3963
3964 val = tr32(GRC_VCPU_EXT_CTRL);
3965 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003966 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003967 int i;
3968 u32 val;
3969
3970 for (i = 0; i < 200; i++) {
3971 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
3972 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
3973 break;
3974 msleep(1);
3975 }
3976 }
Joe Perches63c3a662011-04-26 08:12:10 +00003977 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07003978 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
3979 WOL_DRV_STATE_SHUTDOWN |
3980 WOL_DRV_WOL |
3981 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08003982
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003983 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 u32 mac_mode;
3985
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003986 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003987 if (do_low_power &&
3988 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
3989 tg3_phy_auxctl_write(tp,
3990 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
3991 MII_TG3_AUXCTL_PCTL_WOL_EN |
3992 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3993 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07003994 udelay(40);
3995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003997 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07003998 mac_mode = MAC_MODE_PORT_MODE_GMII;
3999 else
4000 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004002 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
Joe Perches41535772013-02-16 11:20:04 +00004003 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00004004 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004005 SPEED_100 : SPEED_10;
4006 if (tg3_5700_link_polarity(tp, speed))
4007 mac_mode |= MAC_MODE_LINK_POLARITY;
4008 else
4009 mac_mode &= ~MAC_MODE_LINK_POLARITY;
4010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 } else {
4012 mac_mode = MAC_MODE_PORT_MODE_TBI;
4013 }
4014
Joe Perches63c3a662011-04-26 08:12:10 +00004015 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 tw32(MAC_LED_CTRL, tp->led_ctrl);
4017
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004018 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00004019 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
4020 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004021 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
Joe Perches63c3a662011-04-26 08:12:10 +00004023 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00004024 mac_mode |= MAC_MODE_APE_TX_EN |
4025 MAC_MODE_APE_RX_EN |
4026 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07004027
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 tw32_f(MAC_MODE, mac_mode);
4029 udelay(100);
4030
4031 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
4032 udelay(10);
4033 }
4034
Joe Perches63c3a662011-04-26 08:12:10 +00004035 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Joe Perches41535772013-02-16 11:20:04 +00004036 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4037 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 u32 base_val;
4039
4040 base_val = tp->pci_clock_ctrl;
4041 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
4042 CLOCK_CTRL_TXCLK_DISABLE);
4043
Michael Chanb401e9e2005-12-19 16:27:04 -08004044 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
4045 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00004046 } else if (tg3_flag(tp, 5780_CLASS) ||
4047 tg3_flag(tp, CPMU_PRESENT) ||
Joe Perches41535772013-02-16 11:20:04 +00004048 tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07004049 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00004050 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 u32 newbits1, newbits2;
4052
Joe Perches41535772013-02-16 11:20:04 +00004053 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4054 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
4056 CLOCK_CTRL_TXCLK_DISABLE |
4057 CLOCK_CTRL_ALTCLK);
4058 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00004059 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 newbits1 = CLOCK_CTRL_625_CORE;
4061 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
4062 } else {
4063 newbits1 = CLOCK_CTRL_ALTCLK;
4064 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
4065 }
4066
Michael Chanb401e9e2005-12-19 16:27:04 -08004067 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
4068 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Michael Chanb401e9e2005-12-19 16:27:04 -08004070 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
4071 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Joe Perches63c3a662011-04-26 08:12:10 +00004073 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 u32 newbits3;
4075
Joe Perches41535772013-02-16 11:20:04 +00004076 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4077 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
4079 CLOCK_CTRL_TXCLK_DISABLE |
4080 CLOCK_CTRL_44MHZ_CORE);
4081 } else {
4082 newbits3 = CLOCK_CTRL_44MHZ_CORE;
4083 }
4084
Michael Chanb401e9e2005-12-19 16:27:04 -08004085 tw32_wait_f(TG3PCI_CLOCK_CTRL,
4086 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 }
4088 }
4089
Joe Perches63c3a662011-04-26 08:12:10 +00004090 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08004091 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08004092
Matt Carlsoncd0d7222011-07-13 09:27:33 +00004093 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
4095 /* Workaround for unstable PLL clock */
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004096 if ((!tg3_flag(tp, IS_SSB_CORE)) &&
Joe Perches41535772013-02-16 11:20:04 +00004097 ((tg3_chip_rev(tp) == CHIPREV_5750_AX) ||
4098 (tg3_chip_rev(tp) == CHIPREV_5750_BX))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 u32 val = tr32(0x7d00);
4100
4101 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
4102 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00004103 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08004104 int err;
4105
4106 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08004108 if (!err)
4109 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08004110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 }
4112
Michael Chanbbadf502006-04-06 21:46:34 -07004113 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
4114
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 return 0;
4116}
4117
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004118static void tg3_power_down(struct tg3 *tp)
4119{
4120 tg3_power_down_prepare(tp);
4121
Joe Perches63c3a662011-04-26 08:12:10 +00004122 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004123 pci_set_power_state(tp->pdev, PCI_D3hot);
4124}
4125
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
4127{
4128 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
4129 case MII_TG3_AUX_STAT_10HALF:
4130 *speed = SPEED_10;
4131 *duplex = DUPLEX_HALF;
4132 break;
4133
4134 case MII_TG3_AUX_STAT_10FULL:
4135 *speed = SPEED_10;
4136 *duplex = DUPLEX_FULL;
4137 break;
4138
4139 case MII_TG3_AUX_STAT_100HALF:
4140 *speed = SPEED_100;
4141 *duplex = DUPLEX_HALF;
4142 break;
4143
4144 case MII_TG3_AUX_STAT_100FULL:
4145 *speed = SPEED_100;
4146 *duplex = DUPLEX_FULL;
4147 break;
4148
4149 case MII_TG3_AUX_STAT_1000HALF:
4150 *speed = SPEED_1000;
4151 *duplex = DUPLEX_HALF;
4152 break;
4153
4154 case MII_TG3_AUX_STAT_1000FULL:
4155 *speed = SPEED_1000;
4156 *duplex = DUPLEX_FULL;
4157 break;
4158
4159 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004160 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07004161 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
4162 SPEED_10;
4163 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
4164 DUPLEX_HALF;
4165 break;
4166 }
Matt Carlsone7405222012-02-13 15:20:16 +00004167 *speed = SPEED_UNKNOWN;
4168 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171}
4172
Matt Carlson42b64a42011-05-19 12:12:49 +00004173static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174{
Matt Carlson42b64a42011-05-19 12:12:49 +00004175 int err = 0;
4176 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Matt Carlson42b64a42011-05-19 12:12:49 +00004178 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00004179 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00004180 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Matt Carlson42b64a42011-05-19 12:12:49 +00004182 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
4183 if (err)
4184 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185
Matt Carlson4f272092011-12-14 11:09:57 +00004186 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4187 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004188
Joe Perches41535772013-02-16 11:20:04 +00004189 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4190 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)
Matt Carlson4f272092011-12-14 11:09:57 +00004191 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004192
Matt Carlson4f272092011-12-14 11:09:57 +00004193 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
4194 if (err)
4195 goto done;
4196 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004197
Matt Carlson42b64a42011-05-19 12:12:49 +00004198 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4199 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Matt Carlson42b64a42011-05-19 12:12:49 +00004201 tw32(TG3_CPMU_EEE_MODE,
4202 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004203
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004204 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson42b64a42011-05-19 12:12:49 +00004205 if (!err) {
4206 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00004207
Matt Carlsona6b68da2010-12-06 08:28:52 +00004208 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00004209 /* Advertise 100-BaseTX EEE ability */
4210 if (advertise & ADVERTISED_100baseT_Full)
4211 val |= MDIO_AN_EEE_ADV_100TX;
4212 /* Advertise 1000-BaseT EEE ability */
4213 if (advertise & ADVERTISED_1000baseT_Full)
4214 val |= MDIO_AN_EEE_ADV_1000T;
4215 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00004216 if (err)
4217 val = 0;
4218
Joe Perches41535772013-02-16 11:20:04 +00004219 switch (tg3_asic_rev(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00004220 case ASIC_REV_5717:
4221 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00004222 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004223 case ASIC_REV_5719:
4224 /* If we advertised any eee advertisements above... */
4225 if (val)
4226 val = MII_TG3_DSP_TAP26_ALNOKO |
4227 MII_TG3_DSP_TAP26_RMRXSTO |
4228 MII_TG3_DSP_TAP26_OPCSINPT;
4229 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
4230 /* Fall through */
4231 case ASIC_REV_5720:
Michael Chanc65a17f2013-01-06 12:51:07 +00004232 case ASIC_REV_5762:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004233 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
4234 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
4235 MII_TG3_DSP_CH34TP2_HIBW01);
4236 }
Matt Carlson52b02d02010-10-14 10:37:41 +00004237
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004238 err2 = tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson42b64a42011-05-19 12:12:49 +00004239 if (!err)
4240 err = err2;
4241 }
4242
4243done:
4244 return err;
4245}
4246
4247static void tg3_phy_copper_begin(struct tg3 *tp)
4248{
Matt Carlsond13ba512012-02-22 12:35:19 +00004249 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4250 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4251 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004252
Matt Carlsond13ba512012-02-22 12:35:19 +00004253 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
4254 adv = ADVERTISED_10baseT_Half |
4255 ADVERTISED_10baseT_Full;
4256 if (tg3_flag(tp, WOL_SPEED_100MB))
4257 adv |= ADVERTISED_100baseT_Half |
4258 ADVERTISED_100baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00004259
Matt Carlsond13ba512012-02-22 12:35:19 +00004260 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004261 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004262 adv = tp->link_config.advertising;
4263 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4264 adv &= ~(ADVERTISED_1000baseT_Half |
4265 ADVERTISED_1000baseT_Full);
4266
4267 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004268 }
4269
Matt Carlsond13ba512012-02-22 12:35:19 +00004270 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004271
Matt Carlsond13ba512012-02-22 12:35:19 +00004272 tg3_writephy(tp, MII_BMCR,
4273 BMCR_ANENABLE | BMCR_ANRESTART);
4274 } else {
4275 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 u32 bmcr, orig_bmcr;
4277
4278 tp->link_config.active_speed = tp->link_config.speed;
4279 tp->link_config.active_duplex = tp->link_config.duplex;
4280
Nithin Sujir7c6cdea2013-03-12 15:32:48 +00004281 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
4282 /* With autoneg disabled, 5715 only links up when the
4283 * advertisement register has the configured speed
4284 * enabled.
4285 */
4286 tg3_writephy(tp, MII_ADVERTISE, ADVERTISE_ALL);
4287 }
4288
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 bmcr = 0;
4290 switch (tp->link_config.speed) {
4291 default:
4292 case SPEED_10:
4293 break;
4294
4295 case SPEED_100:
4296 bmcr |= BMCR_SPEED100;
4297 break;
4298
4299 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004300 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
4304 if (tp->link_config.duplex == DUPLEX_FULL)
4305 bmcr |= BMCR_FULLDPLX;
4306
4307 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4308 (bmcr != orig_bmcr)) {
4309 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4310 for (i = 0; i < 1500; i++) {
4311 u32 tmp;
4312
4313 udelay(10);
4314 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4315 tg3_readphy(tp, MII_BMSR, &tmp))
4316 continue;
4317 if (!(tmp & BMSR_LSTATUS)) {
4318 udelay(40);
4319 break;
4320 }
4321 }
4322 tg3_writephy(tp, MII_BMCR, bmcr);
4323 udelay(40);
4324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 }
4326}
4327
4328static int tg3_init_5401phy_dsp(struct tg3 *tp)
4329{
4330 int err;
4331
4332 /* Turn off tap power management. */
4333 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004334 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004336 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4337 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4338 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4339 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4340 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341
4342 udelay(40);
4343
4344 return err;
4345}
4346
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004347static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004349 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004350
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004351 advertising = tp->link_config.advertising;
4352 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004354 advmsk = ADVERTISE_ALL;
4355 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004356 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004357 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004360 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4361 return false;
4362
4363 if ((*lcladv & advmsk) != tgtadv)
4364 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004365
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004366 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 u32 tg3_ctrl;
4368
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004369 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004370
Matt Carlson221c5632011-06-13 13:39:01 +00004371 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004372 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Matt Carlson3198e072012-02-13 15:20:10 +00004374 if (tgtadv &&
Joe Perches41535772013-02-16 11:20:04 +00004375 (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4376 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)) {
Matt Carlson3198e072012-02-13 15:20:10 +00004377 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4378 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4379 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4380 } else {
4381 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4382 }
4383
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004384 if (tg3_ctrl != tgtadv)
4385 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004387
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004388 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004389}
4390
Matt Carlson859edb22011-12-08 14:40:16 +00004391static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4392{
4393 u32 lpeth = 0;
4394
4395 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4396 u32 val;
4397
4398 if (tg3_readphy(tp, MII_STAT1000, &val))
4399 return false;
4400
4401 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4402 }
4403
4404 if (tg3_readphy(tp, MII_LPA, rmtadv))
4405 return false;
4406
4407 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4408 tp->link_config.rmt_adv = lpeth;
4409
4410 return true;
4411}
4412
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004413static bool tg3_test_and_report_link_chg(struct tg3 *tp, int curr_link_up)
4414{
4415 if (curr_link_up != tp->link_up) {
4416 if (curr_link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00004417 netif_carrier_on(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004418 } else {
Nithin Sujir84421b92013-03-08 08:01:24 +00004419 netif_carrier_off(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004420 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
4421 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
4422 }
4423
4424 tg3_link_report(tp);
4425 return true;
4426 }
4427
4428 return false;
4429}
4430
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
4432{
4433 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004434 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004435 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 u16 current_speed;
4437 u8 current_duplex;
4438 int i, err;
4439
4440 tw32(MAC_EVENT, 0);
4441
4442 tw32_f(MAC_STATUS,
4443 (MAC_STATUS_SYNC_CHANGED |
4444 MAC_STATUS_CFG_CHANGED |
4445 MAC_STATUS_MI_COMPLETION |
4446 MAC_STATUS_LNKSTATE_CHANGED));
4447 udelay(40);
4448
Matt Carlson8ef21422008-05-02 16:47:53 -07004449 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4450 tw32_f(MAC_MI_MODE,
4451 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4452 udelay(80);
4453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004455 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457 /* Some third-party PHYs need to be reset on link going
4458 * down.
4459 */
Joe Perches41535772013-02-16 11:20:04 +00004460 if ((tg3_asic_rev(tp) == ASIC_REV_5703 ||
4461 tg3_asic_rev(tp) == ASIC_REV_5704 ||
4462 tg3_asic_rev(tp) == ASIC_REV_5705) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004463 tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 tg3_readphy(tp, MII_BMSR, &bmsr);
4465 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4466 !(bmsr & BMSR_LSTATUS))
4467 force_reset = 1;
4468 }
4469 if (force_reset)
4470 tg3_phy_reset(tp);
4471
Matt Carlson79eb6902010-02-17 15:17:03 +00004472 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 tg3_readphy(tp, MII_BMSR, &bmsr);
4474 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004475 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 bmsr = 0;
4477
4478 if (!(bmsr & BMSR_LSTATUS)) {
4479 err = tg3_init_5401phy_dsp(tp);
4480 if (err)
4481 return err;
4482
4483 tg3_readphy(tp, MII_BMSR, &bmsr);
4484 for (i = 0; i < 1000; i++) {
4485 udelay(10);
4486 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4487 (bmsr & BMSR_LSTATUS)) {
4488 udelay(40);
4489 break;
4490 }
4491 }
4492
Matt Carlson79eb6902010-02-17 15:17:03 +00004493 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4494 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 !(bmsr & BMSR_LSTATUS) &&
4496 tp->link_config.active_speed == SPEED_1000) {
4497 err = tg3_phy_reset(tp);
4498 if (!err)
4499 err = tg3_init_5401phy_dsp(tp);
4500 if (err)
4501 return err;
4502 }
4503 }
Joe Perches41535772013-02-16 11:20:04 +00004504 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4505 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 /* 5701 {A0,B0} CRC bug workaround */
4507 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004508 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4509 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4510 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 }
4512
4513 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004514 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4515 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004517 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004519 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4521
Joe Perches41535772013-02-16 11:20:04 +00004522 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4523 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4525 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4526 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4527 else
4528 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4529 }
4530
4531 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00004532 current_speed = SPEED_UNKNOWN;
4533 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004534 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004535 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004537 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004538 err = tg3_phy_auxctl_read(tp,
4539 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4540 &val);
4541 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004542 tg3_phy_auxctl_write(tp,
4543 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4544 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 goto relink;
4546 }
4547 }
4548
4549 bmsr = 0;
4550 for (i = 0; i < 100; i++) {
4551 tg3_readphy(tp, MII_BMSR, &bmsr);
4552 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4553 (bmsr & BMSR_LSTATUS))
4554 break;
4555 udelay(40);
4556 }
4557
4558 if (bmsr & BMSR_LSTATUS) {
4559 u32 aux_stat, bmcr;
4560
4561 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4562 for (i = 0; i < 2000; i++) {
4563 udelay(10);
4564 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4565 aux_stat)
4566 break;
4567 }
4568
4569 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4570 &current_speed,
4571 &current_duplex);
4572
4573 bmcr = 0;
4574 for (i = 0; i < 200; i++) {
4575 tg3_readphy(tp, MII_BMCR, &bmcr);
4576 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4577 continue;
4578 if (bmcr && bmcr != 0x7fff)
4579 break;
4580 udelay(10);
4581 }
4582
Matt Carlsonef167e22007-12-20 20:10:01 -08004583 lcl_adv = 0;
4584 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
Matt Carlsonef167e22007-12-20 20:10:01 -08004586 tp->link_config.active_speed = current_speed;
4587 tp->link_config.active_duplex = current_duplex;
4588
4589 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4590 if ((bmcr & BMCR_ANENABLE) &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004591 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004592 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004593 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 } else {
4595 if (!(bmcr & BMCR_ANENABLE) &&
4596 tp->link_config.speed == current_speed &&
Nithin Sujirf0fcd7a2013-04-09 08:48:01 +00004597 tp->link_config.duplex == current_duplex) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 }
4600 }
4601
Matt Carlsonef167e22007-12-20 20:10:01 -08004602 if (current_link_up == 1 &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004603 tp->link_config.active_duplex == DUPLEX_FULL) {
4604 u32 reg, bit;
4605
4606 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4607 reg = MII_TG3_FET_GEN_STAT;
4608 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4609 } else {
4610 reg = MII_TG3_EXT_STAT;
4611 bit = MII_TG3_EXT_STAT_MDIX;
4612 }
4613
4614 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4615 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4616
Matt Carlsonef167e22007-12-20 20:10:01 -08004617 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 }
4620
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621relink:
Matt Carlson80096062010-08-02 11:26:06 +00004622 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 tg3_phy_copper_begin(tp);
4624
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004625 if (tg3_flag(tp, ROBOSWITCH)) {
4626 current_link_up = 1;
4627 /* FIXME: when BCM5325 switch is used use 100 MBit/s */
4628 current_speed = SPEED_1000;
4629 current_duplex = DUPLEX_FULL;
4630 tp->link_config.active_speed = current_speed;
4631 tp->link_config.active_duplex = current_duplex;
4632 }
4633
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004634 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004635 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4636 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 current_link_up = 1;
4638 }
4639
4640 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
4641 if (current_link_up == 1) {
4642 if (tp->link_config.active_speed == SPEED_100 ||
4643 tp->link_config.active_speed == SPEED_10)
4644 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4645 else
4646 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004647 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004648 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4649 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4651
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004652 /* In order for the 5750 core in BCM4785 chip to work properly
4653 * in RGMII mode, the Led Control Register must be set up.
4654 */
4655 if (tg3_flag(tp, RGMII_MODE)) {
4656 u32 led_ctrl = tr32(MAC_LED_CTRL);
4657 led_ctrl &= ~(LED_CTRL_1000MBPS_ON | LED_CTRL_100MBPS_ON);
4658
4659 if (tp->link_config.active_speed == SPEED_10)
4660 led_ctrl |= LED_CTRL_LNKLED_OVERRIDE;
4661 else if (tp->link_config.active_speed == SPEED_100)
4662 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4663 LED_CTRL_100MBPS_ON);
4664 else if (tp->link_config.active_speed == SPEED_1000)
4665 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4666 LED_CTRL_1000MBPS_ON);
4667
4668 tw32(MAC_LED_CTRL, led_ctrl);
4669 udelay(40);
4670 }
4671
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4673 if (tp->link_config.active_duplex == DUPLEX_HALF)
4674 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4675
Joe Perches41535772013-02-16 11:20:04 +00004676 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004677 if (current_link_up == 1 &&
4678 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004680 else
4681 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 }
4683
4684 /* ??? Without this setting Netgear GA302T PHY does not
4685 * ??? send/receive packets...
4686 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004687 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Joe Perches41535772013-02-16 11:20:04 +00004688 tg3_chip_rev_id(tp) == CHIPREV_ID_5700_ALTIMA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4690 tw32_f(MAC_MI_MODE, tp->mi_mode);
4691 udelay(80);
4692 }
4693
4694 tw32_f(MAC_MODE, tp->mac_mode);
4695 udelay(40);
4696
Matt Carlson52b02d02010-10-14 10:37:41 +00004697 tg3_phy_eee_adjust(tp, current_link_up);
4698
Joe Perches63c3a662011-04-26 08:12:10 +00004699 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 /* Polled via timer. */
4701 tw32_f(MAC_EVENT, 0);
4702 } else {
4703 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4704 }
4705 udelay(40);
4706
Joe Perches41535772013-02-16 11:20:04 +00004707 if (tg3_asic_rev(tp) == ASIC_REV_5700 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 current_link_up == 1 &&
4709 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004710 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 udelay(120);
4712 tw32_f(MAC_STATUS,
4713 (MAC_STATUS_SYNC_CHANGED |
4714 MAC_STATUS_CFG_CHANGED));
4715 udelay(40);
4716 tg3_write_mem(tp,
4717 NIC_SRAM_FIRMWARE_MBOX,
4718 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4719 }
4720
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004721 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004722 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004723 if (tp->link_config.active_speed == SPEED_100 ||
4724 tp->link_config.active_speed == SPEED_10)
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004725 pcie_capability_clear_word(tp->pdev, PCI_EXP_LNKCTL,
4726 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004727 else
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004728 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
4729 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004730 }
4731
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004732 tg3_test_and_report_link_chg(tp, current_link_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
4734 return 0;
4735}
4736
4737struct tg3_fiber_aneginfo {
4738 int state;
4739#define ANEG_STATE_UNKNOWN 0
4740#define ANEG_STATE_AN_ENABLE 1
4741#define ANEG_STATE_RESTART_INIT 2
4742#define ANEG_STATE_RESTART 3
4743#define ANEG_STATE_DISABLE_LINK_OK 4
4744#define ANEG_STATE_ABILITY_DETECT_INIT 5
4745#define ANEG_STATE_ABILITY_DETECT 6
4746#define ANEG_STATE_ACK_DETECT_INIT 7
4747#define ANEG_STATE_ACK_DETECT 8
4748#define ANEG_STATE_COMPLETE_ACK_INIT 9
4749#define ANEG_STATE_COMPLETE_ACK 10
4750#define ANEG_STATE_IDLE_DETECT_INIT 11
4751#define ANEG_STATE_IDLE_DETECT 12
4752#define ANEG_STATE_LINK_OK 13
4753#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4754#define ANEG_STATE_NEXT_PAGE_WAIT 15
4755
4756 u32 flags;
4757#define MR_AN_ENABLE 0x00000001
4758#define MR_RESTART_AN 0x00000002
4759#define MR_AN_COMPLETE 0x00000004
4760#define MR_PAGE_RX 0x00000008
4761#define MR_NP_LOADED 0x00000010
4762#define MR_TOGGLE_TX 0x00000020
4763#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4764#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4765#define MR_LP_ADV_SYM_PAUSE 0x00000100
4766#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4767#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4768#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4769#define MR_LP_ADV_NEXT_PAGE 0x00001000
4770#define MR_TOGGLE_RX 0x00002000
4771#define MR_NP_RX 0x00004000
4772
4773#define MR_LINK_OK 0x80000000
4774
4775 unsigned long link_time, cur_time;
4776
4777 u32 ability_match_cfg;
4778 int ability_match_count;
4779
4780 char ability_match, idle_match, ack_match;
4781
4782 u32 txconfig, rxconfig;
4783#define ANEG_CFG_NP 0x00000080
4784#define ANEG_CFG_ACK 0x00000040
4785#define ANEG_CFG_RF2 0x00000020
4786#define ANEG_CFG_RF1 0x00000010
4787#define ANEG_CFG_PS2 0x00000001
4788#define ANEG_CFG_PS1 0x00008000
4789#define ANEG_CFG_HD 0x00004000
4790#define ANEG_CFG_FD 0x00002000
4791#define ANEG_CFG_INVAL 0x00001f06
4792
4793};
4794#define ANEG_OK 0
4795#define ANEG_DONE 1
4796#define ANEG_TIMER_ENAB 2
4797#define ANEG_FAILED -1
4798
4799#define ANEG_STATE_SETTLE_TIME 10000
4800
4801static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4802 struct tg3_fiber_aneginfo *ap)
4803{
Matt Carlson5be73b42007-12-20 20:09:29 -08004804 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 unsigned long delta;
4806 u32 rx_cfg_reg;
4807 int ret;
4808
4809 if (ap->state == ANEG_STATE_UNKNOWN) {
4810 ap->rxconfig = 0;
4811 ap->link_time = 0;
4812 ap->cur_time = 0;
4813 ap->ability_match_cfg = 0;
4814 ap->ability_match_count = 0;
4815 ap->ability_match = 0;
4816 ap->idle_match = 0;
4817 ap->ack_match = 0;
4818 }
4819 ap->cur_time++;
4820
4821 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
4822 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
4823
4824 if (rx_cfg_reg != ap->ability_match_cfg) {
4825 ap->ability_match_cfg = rx_cfg_reg;
4826 ap->ability_match = 0;
4827 ap->ability_match_count = 0;
4828 } else {
4829 if (++ap->ability_match_count > 1) {
4830 ap->ability_match = 1;
4831 ap->ability_match_cfg = rx_cfg_reg;
4832 }
4833 }
4834 if (rx_cfg_reg & ANEG_CFG_ACK)
4835 ap->ack_match = 1;
4836 else
4837 ap->ack_match = 0;
4838
4839 ap->idle_match = 0;
4840 } else {
4841 ap->idle_match = 1;
4842 ap->ability_match_cfg = 0;
4843 ap->ability_match_count = 0;
4844 ap->ability_match = 0;
4845 ap->ack_match = 0;
4846
4847 rx_cfg_reg = 0;
4848 }
4849
4850 ap->rxconfig = rx_cfg_reg;
4851 ret = ANEG_OK;
4852
Matt Carlson33f401a2010-04-05 10:19:27 +00004853 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 case ANEG_STATE_UNKNOWN:
4855 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
4856 ap->state = ANEG_STATE_AN_ENABLE;
4857
4858 /* fallthru */
4859 case ANEG_STATE_AN_ENABLE:
4860 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
4861 if (ap->flags & MR_AN_ENABLE) {
4862 ap->link_time = 0;
4863 ap->cur_time = 0;
4864 ap->ability_match_cfg = 0;
4865 ap->ability_match_count = 0;
4866 ap->ability_match = 0;
4867 ap->idle_match = 0;
4868 ap->ack_match = 0;
4869
4870 ap->state = ANEG_STATE_RESTART_INIT;
4871 } else {
4872 ap->state = ANEG_STATE_DISABLE_LINK_OK;
4873 }
4874 break;
4875
4876 case ANEG_STATE_RESTART_INIT:
4877 ap->link_time = ap->cur_time;
4878 ap->flags &= ~(MR_NP_LOADED);
4879 ap->txconfig = 0;
4880 tw32(MAC_TX_AUTO_NEG, 0);
4881 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4882 tw32_f(MAC_MODE, tp->mac_mode);
4883 udelay(40);
4884
4885 ret = ANEG_TIMER_ENAB;
4886 ap->state = ANEG_STATE_RESTART;
4887
4888 /* fallthru */
4889 case ANEG_STATE_RESTART:
4890 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00004891 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00004893 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 break;
4896
4897 case ANEG_STATE_DISABLE_LINK_OK:
4898 ret = ANEG_DONE;
4899 break;
4900
4901 case ANEG_STATE_ABILITY_DETECT_INIT:
4902 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08004903 ap->txconfig = ANEG_CFG_FD;
4904 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4905 if (flowctrl & ADVERTISE_1000XPAUSE)
4906 ap->txconfig |= ANEG_CFG_PS1;
4907 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4908 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4910 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4911 tw32_f(MAC_MODE, tp->mac_mode);
4912 udelay(40);
4913
4914 ap->state = ANEG_STATE_ABILITY_DETECT;
4915 break;
4916
4917 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00004918 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 break;
4921
4922 case ANEG_STATE_ACK_DETECT_INIT:
4923 ap->txconfig |= ANEG_CFG_ACK;
4924 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4925 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4926 tw32_f(MAC_MODE, tp->mac_mode);
4927 udelay(40);
4928
4929 ap->state = ANEG_STATE_ACK_DETECT;
4930
4931 /* fallthru */
4932 case ANEG_STATE_ACK_DETECT:
4933 if (ap->ack_match != 0) {
4934 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
4935 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
4936 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
4937 } else {
4938 ap->state = ANEG_STATE_AN_ENABLE;
4939 }
4940 } else if (ap->ability_match != 0 &&
4941 ap->rxconfig == 0) {
4942 ap->state = ANEG_STATE_AN_ENABLE;
4943 }
4944 break;
4945
4946 case ANEG_STATE_COMPLETE_ACK_INIT:
4947 if (ap->rxconfig & ANEG_CFG_INVAL) {
4948 ret = ANEG_FAILED;
4949 break;
4950 }
4951 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
4952 MR_LP_ADV_HALF_DUPLEX |
4953 MR_LP_ADV_SYM_PAUSE |
4954 MR_LP_ADV_ASYM_PAUSE |
4955 MR_LP_ADV_REMOTE_FAULT1 |
4956 MR_LP_ADV_REMOTE_FAULT2 |
4957 MR_LP_ADV_NEXT_PAGE |
4958 MR_TOGGLE_RX |
4959 MR_NP_RX);
4960 if (ap->rxconfig & ANEG_CFG_FD)
4961 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
4962 if (ap->rxconfig & ANEG_CFG_HD)
4963 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
4964 if (ap->rxconfig & ANEG_CFG_PS1)
4965 ap->flags |= MR_LP_ADV_SYM_PAUSE;
4966 if (ap->rxconfig & ANEG_CFG_PS2)
4967 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
4968 if (ap->rxconfig & ANEG_CFG_RF1)
4969 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
4970 if (ap->rxconfig & ANEG_CFG_RF2)
4971 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
4972 if (ap->rxconfig & ANEG_CFG_NP)
4973 ap->flags |= MR_LP_ADV_NEXT_PAGE;
4974
4975 ap->link_time = ap->cur_time;
4976
4977 ap->flags ^= (MR_TOGGLE_TX);
4978 if (ap->rxconfig & 0x0008)
4979 ap->flags |= MR_TOGGLE_RX;
4980 if (ap->rxconfig & ANEG_CFG_NP)
4981 ap->flags |= MR_NP_RX;
4982 ap->flags |= MR_PAGE_RX;
4983
4984 ap->state = ANEG_STATE_COMPLETE_ACK;
4985 ret = ANEG_TIMER_ENAB;
4986 break;
4987
4988 case ANEG_STATE_COMPLETE_ACK:
4989 if (ap->ability_match != 0 &&
4990 ap->rxconfig == 0) {
4991 ap->state = ANEG_STATE_AN_ENABLE;
4992 break;
4993 }
4994 delta = ap->cur_time - ap->link_time;
4995 if (delta > ANEG_STATE_SETTLE_TIME) {
4996 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
4997 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4998 } else {
4999 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
5000 !(ap->flags & MR_NP_RX)) {
5001 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5002 } else {
5003 ret = ANEG_FAILED;
5004 }
5005 }
5006 }
5007 break;
5008
5009 case ANEG_STATE_IDLE_DETECT_INIT:
5010 ap->link_time = ap->cur_time;
5011 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5012 tw32_f(MAC_MODE, tp->mac_mode);
5013 udelay(40);
5014
5015 ap->state = ANEG_STATE_IDLE_DETECT;
5016 ret = ANEG_TIMER_ENAB;
5017 break;
5018
5019 case ANEG_STATE_IDLE_DETECT:
5020 if (ap->ability_match != 0 &&
5021 ap->rxconfig == 0) {
5022 ap->state = ANEG_STATE_AN_ENABLE;
5023 break;
5024 }
5025 delta = ap->cur_time - ap->link_time;
5026 if (delta > ANEG_STATE_SETTLE_TIME) {
5027 /* XXX another gem from the Broadcom driver :( */
5028 ap->state = ANEG_STATE_LINK_OK;
5029 }
5030 break;
5031
5032 case ANEG_STATE_LINK_OK:
5033 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
5034 ret = ANEG_DONE;
5035 break;
5036
5037 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
5038 /* ??? unimplemented */
5039 break;
5040
5041 case ANEG_STATE_NEXT_PAGE_WAIT:
5042 /* ??? unimplemented */
5043 break;
5044
5045 default:
5046 ret = ANEG_FAILED;
5047 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
5050 return ret;
5051}
5052
Matt Carlson5be73b42007-12-20 20:09:29 -08005053static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054{
5055 int res = 0;
5056 struct tg3_fiber_aneginfo aninfo;
5057 int status = ANEG_FAILED;
5058 unsigned int tick;
5059 u32 tmp;
5060
5061 tw32_f(MAC_TX_AUTO_NEG, 0);
5062
5063 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
5064 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
5065 udelay(40);
5066
5067 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
5068 udelay(40);
5069
5070 memset(&aninfo, 0, sizeof(aninfo));
5071 aninfo.flags |= MR_AN_ENABLE;
5072 aninfo.state = ANEG_STATE_UNKNOWN;
5073 aninfo.cur_time = 0;
5074 tick = 0;
5075 while (++tick < 195000) {
5076 status = tg3_fiber_aneg_smachine(tp, &aninfo);
5077 if (status == ANEG_DONE || status == ANEG_FAILED)
5078 break;
5079
5080 udelay(1);
5081 }
5082
5083 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5084 tw32_f(MAC_MODE, tp->mac_mode);
5085 udelay(40);
5086
Matt Carlson5be73b42007-12-20 20:09:29 -08005087 *txflags = aninfo.txconfig;
5088 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
5090 if (status == ANEG_DONE &&
5091 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
5092 MR_LP_ADV_FULL_DUPLEX)))
5093 res = 1;
5094
5095 return res;
5096}
5097
5098static void tg3_init_bcm8002(struct tg3 *tp)
5099{
5100 u32 mac_status = tr32(MAC_STATUS);
5101 int i;
5102
5103 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00005104 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 !(mac_status & MAC_STATUS_PCS_SYNCED))
5106 return;
5107
5108 /* Set PLL lock range. */
5109 tg3_writephy(tp, 0x16, 0x8007);
5110
5111 /* SW reset */
5112 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
5113
5114 /* Wait for reset to complete. */
5115 /* XXX schedule_timeout() ... */
5116 for (i = 0; i < 500; i++)
5117 udelay(10);
5118
5119 /* Config mode; select PMA/Ch 1 regs. */
5120 tg3_writephy(tp, 0x10, 0x8411);
5121
5122 /* Enable auto-lock and comdet, select txclk for tx. */
5123 tg3_writephy(tp, 0x11, 0x0a10);
5124
5125 tg3_writephy(tp, 0x18, 0x00a0);
5126 tg3_writephy(tp, 0x16, 0x41ff);
5127
5128 /* Assert and deassert POR. */
5129 tg3_writephy(tp, 0x13, 0x0400);
5130 udelay(40);
5131 tg3_writephy(tp, 0x13, 0x0000);
5132
5133 tg3_writephy(tp, 0x11, 0x0a50);
5134 udelay(40);
5135 tg3_writephy(tp, 0x11, 0x0a10);
5136
5137 /* Wait for signal to stabilize */
5138 /* XXX schedule_timeout() ... */
5139 for (i = 0; i < 15000; i++)
5140 udelay(10);
5141
5142 /* Deselect the channel register so we can read the PHYID
5143 * later.
5144 */
5145 tg3_writephy(tp, 0x10, 0x8011);
5146}
5147
5148static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
5149{
Matt Carlson82cd3d12007-12-20 20:09:00 -08005150 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 u32 sg_dig_ctrl, sg_dig_status;
5152 u32 serdes_cfg, expected_sg_dig_ctrl;
5153 int workaround, port_a;
5154 int current_link_up;
5155
5156 serdes_cfg = 0;
5157 expected_sg_dig_ctrl = 0;
5158 workaround = 0;
5159 port_a = 1;
5160 current_link_up = 0;
5161
Joe Perches41535772013-02-16 11:20:04 +00005162 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A0 &&
5163 tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 workaround = 1;
5165 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
5166 port_a = 0;
5167
5168 /* preserve bits 0-11,13,14 for signal pre-emphasis */
5169 /* preserve bits 20-23 for voltage regulator */
5170 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
5171 }
5172
5173 sg_dig_ctrl = tr32(SG_DIG_CTRL);
5174
5175 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005176 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 if (workaround) {
5178 u32 val = serdes_cfg;
5179
5180 if (port_a)
5181 val |= 0xc010000;
5182 else
5183 val |= 0x4010000;
5184 tw32_f(MAC_SERDES_CFG, val);
5185 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005186
5187 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 }
5189 if (mac_status & MAC_STATUS_PCS_SYNCED) {
5190 tg3_setup_flow_control(tp, 0, 0);
5191 current_link_up = 1;
5192 }
5193 goto out;
5194 }
5195
5196 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005197 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198
Matt Carlson82cd3d12007-12-20 20:09:00 -08005199 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5200 if (flowctrl & ADVERTISE_1000XPAUSE)
5201 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
5202 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5203 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
5205 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005206 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07005207 tp->serdes_counter &&
5208 ((mac_status & (MAC_STATUS_PCS_SYNCED |
5209 MAC_STATUS_RCVD_CFG)) ==
5210 MAC_STATUS_PCS_SYNCED)) {
5211 tp->serdes_counter--;
5212 current_link_up = 1;
5213 goto out;
5214 }
5215restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 if (workaround)
5217 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005218 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 udelay(5);
5220 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
5221
Michael Chan3d3ebe72006-09-27 15:59:15 -07005222 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005223 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
5225 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005226 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 mac_status = tr32(MAC_STATUS);
5228
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005229 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08005231 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232
Matt Carlson82cd3d12007-12-20 20:09:00 -08005233 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
5234 local_adv |= ADVERTISE_1000XPAUSE;
5235 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
5236 local_adv |= ADVERTISE_1000XPSE_ASYM;
5237
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005238 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005239 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005240 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005241 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242
Matt Carlson859edb22011-12-08 14:40:16 +00005243 tp->link_config.rmt_adv =
5244 mii_adv_to_ethtool_adv_x(remote_adv);
5245
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 tg3_setup_flow_control(tp, local_adv, remote_adv);
5247 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005248 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005249 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005250 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005251 if (tp->serdes_counter)
5252 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 else {
5254 if (workaround) {
5255 u32 val = serdes_cfg;
5256
5257 if (port_a)
5258 val |= 0xc010000;
5259 else
5260 val |= 0x4010000;
5261
5262 tw32_f(MAC_SERDES_CFG, val);
5263 }
5264
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005265 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 udelay(40);
5267
5268 /* Link parallel detection - link is up */
5269 /* only if we have PCS_SYNC and not */
5270 /* receiving config code words */
5271 mac_status = tr32(MAC_STATUS);
5272 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
5273 !(mac_status & MAC_STATUS_RCVD_CFG)) {
5274 tg3_setup_flow_control(tp, 0, 0);
5275 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005276 tp->phy_flags |=
5277 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005278 tp->serdes_counter =
5279 SERDES_PARALLEL_DET_TIMEOUT;
5280 } else
5281 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 }
5283 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07005284 } else {
5285 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005286 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 }
5288
5289out:
5290 return current_link_up;
5291}
5292
5293static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
5294{
5295 int current_link_up = 0;
5296
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005297 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005301 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005303
Matt Carlson5be73b42007-12-20 20:09:29 -08005304 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5305 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
Matt Carlson5be73b42007-12-20 20:09:29 -08005307 if (txflags & ANEG_CFG_PS1)
5308 local_adv |= ADVERTISE_1000XPAUSE;
5309 if (txflags & ANEG_CFG_PS2)
5310 local_adv |= ADVERTISE_1000XPSE_ASYM;
5311
5312 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5313 remote_adv |= LPA_1000XPAUSE;
5314 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5315 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316
Matt Carlson859edb22011-12-08 14:40:16 +00005317 tp->link_config.rmt_adv =
5318 mii_adv_to_ethtool_adv_x(remote_adv);
5319
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 tg3_setup_flow_control(tp, local_adv, remote_adv);
5321
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 current_link_up = 1;
5323 }
5324 for (i = 0; i < 30; i++) {
5325 udelay(20);
5326 tw32_f(MAC_STATUS,
5327 (MAC_STATUS_SYNC_CHANGED |
5328 MAC_STATUS_CFG_CHANGED));
5329 udelay(40);
5330 if ((tr32(MAC_STATUS) &
5331 (MAC_STATUS_SYNC_CHANGED |
5332 MAC_STATUS_CFG_CHANGED)) == 0)
5333 break;
5334 }
5335
5336 mac_status = tr32(MAC_STATUS);
5337 if (current_link_up == 0 &&
5338 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5339 !(mac_status & MAC_STATUS_RCVD_CFG))
5340 current_link_up = 1;
5341 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005342 tg3_setup_flow_control(tp, 0, 0);
5343
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 /* Forcing 1000FD link up. */
5345 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346
5347 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5348 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005349
5350 tw32_f(MAC_MODE, tp->mac_mode);
5351 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 }
5353
5354out:
5355 return current_link_up;
5356}
5357
5358static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
5359{
5360 u32 orig_pause_cfg;
5361 u16 orig_active_speed;
5362 u8 orig_active_duplex;
5363 u32 mac_status;
5364 int current_link_up;
5365 int i;
5366
Matt Carlson8d018622007-12-20 20:05:44 -08005367 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368 orig_active_speed = tp->link_config.active_speed;
5369 orig_active_duplex = tp->link_config.active_duplex;
5370
Joe Perches63c3a662011-04-26 08:12:10 +00005371 if (!tg3_flag(tp, HW_AUTONEG) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005372 tp->link_up &&
Joe Perches63c3a662011-04-26 08:12:10 +00005373 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 mac_status = tr32(MAC_STATUS);
5375 mac_status &= (MAC_STATUS_PCS_SYNCED |
5376 MAC_STATUS_SIGNAL_DET |
5377 MAC_STATUS_CFG_CHANGED |
5378 MAC_STATUS_RCVD_CFG);
5379 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5380 MAC_STATUS_SIGNAL_DET)) {
5381 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5382 MAC_STATUS_CFG_CHANGED));
5383 return 0;
5384 }
5385 }
5386
5387 tw32_f(MAC_TX_AUTO_NEG, 0);
5388
5389 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5390 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5391 tw32_f(MAC_MODE, tp->mac_mode);
5392 udelay(40);
5393
Matt Carlson79eb6902010-02-17 15:17:03 +00005394 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 tg3_init_bcm8002(tp);
5396
5397 /* Enable link change event even when serdes polling. */
5398 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5399 udelay(40);
5400
5401 current_link_up = 0;
Matt Carlson859edb22011-12-08 14:40:16 +00005402 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403 mac_status = tr32(MAC_STATUS);
5404
Joe Perches63c3a662011-04-26 08:12:10 +00005405 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5407 else
5408 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5409
Matt Carlson898a56f2009-08-28 14:02:40 +00005410 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005412 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
5414 for (i = 0; i < 100; i++) {
5415 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5416 MAC_STATUS_CFG_CHANGED));
5417 udelay(5);
5418 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005419 MAC_STATUS_CFG_CHANGED |
5420 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 break;
5422 }
5423
5424 mac_status = tr32(MAC_STATUS);
5425 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
5426 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005427 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5428 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 tw32_f(MAC_MODE, (tp->mac_mode |
5430 MAC_MODE_SEND_CONFIGS));
5431 udelay(1);
5432 tw32_f(MAC_MODE, tp->mac_mode);
5433 }
5434 }
5435
5436 if (current_link_up == 1) {
5437 tp->link_config.active_speed = SPEED_1000;
5438 tp->link_config.active_duplex = DUPLEX_FULL;
5439 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5440 LED_CTRL_LNKLED_OVERRIDE |
5441 LED_CTRL_1000MBPS_ON));
5442 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005443 tp->link_config.active_speed = SPEED_UNKNOWN;
5444 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5446 LED_CTRL_LNKLED_OVERRIDE |
5447 LED_CTRL_TRAFFIC_OVERRIDE));
5448 }
5449
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005450 if (!tg3_test_and_report_link_chg(tp, current_link_up)) {
Matt Carlson8d018622007-12-20 20:05:44 -08005451 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 if (orig_pause_cfg != now_pause_cfg ||
5453 orig_active_speed != tp->link_config.active_speed ||
5454 orig_active_duplex != tp->link_config.active_duplex)
5455 tg3_link_report(tp);
5456 }
5457
5458 return 0;
5459}
5460
Michael Chan747e8f82005-07-25 12:33:22 -07005461static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
5462{
5463 int current_link_up, err = 0;
5464 u32 bmsr, bmcr;
5465 u16 current_speed;
5466 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08005467 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07005468
5469 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5470 tw32_f(MAC_MODE, tp->mac_mode);
5471 udelay(40);
5472
5473 tw32(MAC_EVENT, 0);
5474
5475 tw32_f(MAC_STATUS,
5476 (MAC_STATUS_SYNC_CHANGED |
5477 MAC_STATUS_CFG_CHANGED |
5478 MAC_STATUS_MI_COMPLETION |
5479 MAC_STATUS_LNKSTATE_CHANGED));
5480 udelay(40);
5481
5482 if (force_reset)
5483 tg3_phy_reset(tp);
5484
5485 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00005486 current_speed = SPEED_UNKNOWN;
5487 current_duplex = DUPLEX_UNKNOWN;
Matt Carlson859edb22011-12-08 14:40:16 +00005488 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005489
5490 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5491 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005492 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005493 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5494 bmsr |= BMSR_LSTATUS;
5495 else
5496 bmsr &= ~BMSR_LSTATUS;
5497 }
Michael Chan747e8f82005-07-25 12:33:22 -07005498
5499 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5500
5501 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005502 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005503 /* do nothing, just check for link up at the end */
5504 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005505 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005506
5507 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005508 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5509 ADVERTISE_1000XPAUSE |
5510 ADVERTISE_1000XPSE_ASYM |
5511 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005512
Matt Carlson28011cf2011-11-16 18:36:59 -05005513 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005514 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005515
Matt Carlson28011cf2011-11-16 18:36:59 -05005516 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5517 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005518 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5519 tg3_writephy(tp, MII_BMCR, bmcr);
5520
5521 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005522 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005523 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005524
5525 return err;
5526 }
5527 } else {
5528 u32 new_bmcr;
5529
5530 bmcr &= ~BMCR_SPEED1000;
5531 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5532
5533 if (tp->link_config.duplex == DUPLEX_FULL)
5534 new_bmcr |= BMCR_FULLDPLX;
5535
5536 if (new_bmcr != bmcr) {
5537 /* BMCR_SPEED1000 is a reserved bit that needs
5538 * to be set on write.
5539 */
5540 new_bmcr |= BMCR_SPEED1000;
5541
5542 /* Force a linkdown */
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005543 if (tp->link_up) {
Michael Chan747e8f82005-07-25 12:33:22 -07005544 u32 adv;
5545
5546 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5547 adv &= ~(ADVERTISE_1000XFULL |
5548 ADVERTISE_1000XHALF |
5549 ADVERTISE_SLCT);
5550 tg3_writephy(tp, MII_ADVERTISE, adv);
5551 tg3_writephy(tp, MII_BMCR, bmcr |
5552 BMCR_ANRESTART |
5553 BMCR_ANENABLE);
5554 udelay(10);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005555 tg3_carrier_off(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005556 }
5557 tg3_writephy(tp, MII_BMCR, new_bmcr);
5558 bmcr = new_bmcr;
5559 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5560 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005561 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005562 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5563 bmsr |= BMSR_LSTATUS;
5564 else
5565 bmsr &= ~BMSR_LSTATUS;
5566 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005567 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005568 }
5569 }
5570
5571 if (bmsr & BMSR_LSTATUS) {
5572 current_speed = SPEED_1000;
5573 current_link_up = 1;
5574 if (bmcr & BMCR_FULLDPLX)
5575 current_duplex = DUPLEX_FULL;
5576 else
5577 current_duplex = DUPLEX_HALF;
5578
Matt Carlsonef167e22007-12-20 20:10:01 -08005579 local_adv = 0;
5580 remote_adv = 0;
5581
Michael Chan747e8f82005-07-25 12:33:22 -07005582 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005583 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005584
5585 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5586 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5587 common = local_adv & remote_adv;
5588 if (common & (ADVERTISE_1000XHALF |
5589 ADVERTISE_1000XFULL)) {
5590 if (common & ADVERTISE_1000XFULL)
5591 current_duplex = DUPLEX_FULL;
5592 else
5593 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005594
5595 tp->link_config.rmt_adv =
5596 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005597 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005598 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005599 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07005600 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00005601 }
Michael Chan747e8f82005-07-25 12:33:22 -07005602 }
5603 }
5604
Matt Carlsonef167e22007-12-20 20:10:01 -08005605 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
5606 tg3_setup_flow_control(tp, local_adv, remote_adv);
5607
Michael Chan747e8f82005-07-25 12:33:22 -07005608 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5609 if (tp->link_config.active_duplex == DUPLEX_HALF)
5610 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5611
5612 tw32_f(MAC_MODE, tp->mac_mode);
5613 udelay(40);
5614
5615 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5616
5617 tp->link_config.active_speed = current_speed;
5618 tp->link_config.active_duplex = current_duplex;
5619
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005620 tg3_test_and_report_link_chg(tp, current_link_up);
Michael Chan747e8f82005-07-25 12:33:22 -07005621 return err;
5622}
5623
5624static void tg3_serdes_parallel_detect(struct tg3 *tp)
5625{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005626 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005627 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005628 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005629 return;
5630 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005631
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005632 if (!tp->link_up &&
Michael Chan747e8f82005-07-25 12:33:22 -07005633 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5634 u32 bmcr;
5635
5636 tg3_readphy(tp, MII_BMCR, &bmcr);
5637 if (bmcr & BMCR_ANENABLE) {
5638 u32 phy1, phy2;
5639
5640 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005641 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5642 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005643
5644 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005645 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5646 MII_TG3_DSP_EXP1_INT_STAT);
5647 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5648 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005649
5650 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5651 /* We have signal detect and not receiving
5652 * config code words, link is up by parallel
5653 * detection.
5654 */
5655
5656 bmcr &= ~BMCR_ANENABLE;
5657 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5658 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005659 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005660 }
5661 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005662 } else if (tp->link_up &&
Matt Carlson859a588792010-04-05 10:19:28 +00005663 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005664 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005665 u32 phy2;
5666
5667 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005668 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5669 MII_TG3_DSP_EXP1_INT_STAT);
5670 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005671 if (phy2 & 0x20) {
5672 u32 bmcr;
5673
5674 /* Config code words received, turn on autoneg. */
5675 tg3_readphy(tp, MII_BMCR, &bmcr);
5676 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5677
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005678 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005679
5680 }
5681 }
5682}
5683
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684static int tg3_setup_phy(struct tg3 *tp, int force_reset)
5685{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005686 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 int err;
5688
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005689 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005691 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005692 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005693 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695
Joe Perches41535772013-02-16 11:20:04 +00005696 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005697 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005698
5699 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5700 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5701 scale = 65;
5702 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5703 scale = 6;
5704 else
5705 scale = 12;
5706
5707 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5708 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5709 tw32(GRC_MISC_CFG, val);
5710 }
5711
Matt Carlsonf2096f92011-04-05 14:22:48 +00005712 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5713 (6 << TX_LENGTHS_IPG_SHIFT);
Joe Perches41535772013-02-16 11:20:04 +00005714 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
5715 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005716 val |= tr32(MAC_TX_LENGTHS) &
5717 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5718 TX_LENGTHS_CNT_DWN_VAL_MSK);
5719
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720 if (tp->link_config.active_speed == SPEED_1000 &&
5721 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005722 tw32(MAC_TX_LENGTHS, val |
5723 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005725 tw32(MAC_TX_LENGTHS, val |
5726 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727
Joe Perches63c3a662011-04-26 08:12:10 +00005728 if (!tg3_flag(tp, 5705_PLUS)) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005729 if (tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005731 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 } else {
5733 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5734 }
5735 }
5736
Joe Perches63c3a662011-04-26 08:12:10 +00005737 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005738 val = tr32(PCIE_PWR_MGMT_THRESH);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005739 if (!tp->link_up)
Matt Carlson8ed5d972007-05-07 00:25:49 -07005740 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5741 tp->pwrmgmt_thresh;
5742 else
5743 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5744 tw32(PCIE_PWR_MGMT_THRESH, val);
5745 }
5746
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 return err;
5748}
5749
Matt Carlsonbe947302012-12-03 19:36:57 +00005750/* tp->lock must be held */
Matt Carlson7d41e492012-12-03 19:36:58 +00005751static u64 tg3_refclk_read(struct tg3 *tp)
5752{
5753 u64 stamp = tr32(TG3_EAV_REF_CLCK_LSB);
5754 return stamp | (u64)tr32(TG3_EAV_REF_CLCK_MSB) << 32;
5755}
5756
5757/* tp->lock must be held */
Matt Carlsonbe947302012-12-03 19:36:57 +00005758static void tg3_refclk_write(struct tg3 *tp, u64 newval)
5759{
5760 tw32(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_STOP);
5761 tw32(TG3_EAV_REF_CLCK_LSB, newval & 0xffffffff);
5762 tw32(TG3_EAV_REF_CLCK_MSB, newval >> 32);
5763 tw32_f(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_RESUME);
5764}
5765
Matt Carlson7d41e492012-12-03 19:36:58 +00005766static inline void tg3_full_lock(struct tg3 *tp, int irq_sync);
5767static inline void tg3_full_unlock(struct tg3 *tp);
5768static int tg3_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
5769{
5770 struct tg3 *tp = netdev_priv(dev);
5771
5772 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
5773 SOF_TIMESTAMPING_RX_SOFTWARE |
5774 SOF_TIMESTAMPING_SOFTWARE |
5775 SOF_TIMESTAMPING_TX_HARDWARE |
5776 SOF_TIMESTAMPING_RX_HARDWARE |
5777 SOF_TIMESTAMPING_RAW_HARDWARE;
5778
5779 if (tp->ptp_clock)
5780 info->phc_index = ptp_clock_index(tp->ptp_clock);
5781 else
5782 info->phc_index = -1;
5783
5784 info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
5785
5786 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
5787 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
5788 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
5789 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
5790 return 0;
5791}
5792
5793static int tg3_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
5794{
5795 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
5796 bool neg_adj = false;
5797 u32 correction = 0;
5798
5799 if (ppb < 0) {
5800 neg_adj = true;
5801 ppb = -ppb;
5802 }
5803
5804 /* Frequency adjustment is performed using hardware with a 24 bit
5805 * accumulator and a programmable correction value. On each clk, the
5806 * correction value gets added to the accumulator and when it
5807 * overflows, the time counter is incremented/decremented.
5808 *
5809 * So conversion from ppb to correction value is
5810 * ppb * (1 << 24) / 1000000000
5811 */
5812 correction = div_u64((u64)ppb * (1 << 24), 1000000000ULL) &
5813 TG3_EAV_REF_CLK_CORRECT_MASK;
5814
5815 tg3_full_lock(tp, 0);
5816
5817 if (correction)
5818 tw32(TG3_EAV_REF_CLK_CORRECT_CTL,
5819 TG3_EAV_REF_CLK_CORRECT_EN |
5820 (neg_adj ? TG3_EAV_REF_CLK_CORRECT_NEG : 0) | correction);
5821 else
5822 tw32(TG3_EAV_REF_CLK_CORRECT_CTL, 0);
5823
5824 tg3_full_unlock(tp);
5825
5826 return 0;
5827}
5828
5829static int tg3_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
5830{
5831 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
5832
5833 tg3_full_lock(tp, 0);
5834 tp->ptp_adjust += delta;
5835 tg3_full_unlock(tp);
5836
5837 return 0;
5838}
5839
5840static int tg3_ptp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
5841{
5842 u64 ns;
5843 u32 remainder;
5844 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
5845
5846 tg3_full_lock(tp, 0);
5847 ns = tg3_refclk_read(tp);
5848 ns += tp->ptp_adjust;
5849 tg3_full_unlock(tp);
5850
5851 ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder);
5852 ts->tv_nsec = remainder;
5853
5854 return 0;
5855}
5856
5857static int tg3_ptp_settime(struct ptp_clock_info *ptp,
5858 const struct timespec *ts)
5859{
5860 u64 ns;
5861 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
5862
5863 ns = timespec_to_ns(ts);
5864
5865 tg3_full_lock(tp, 0);
5866 tg3_refclk_write(tp, ns);
5867 tp->ptp_adjust = 0;
5868 tg3_full_unlock(tp);
5869
5870 return 0;
5871}
5872
5873static int tg3_ptp_enable(struct ptp_clock_info *ptp,
5874 struct ptp_clock_request *rq, int on)
5875{
5876 return -EOPNOTSUPP;
5877}
5878
5879static const struct ptp_clock_info tg3_ptp_caps = {
5880 .owner = THIS_MODULE,
5881 .name = "tg3 clock",
5882 .max_adj = 250000000,
5883 .n_alarm = 0,
5884 .n_ext_ts = 0,
5885 .n_per_out = 0,
5886 .pps = 0,
5887 .adjfreq = tg3_ptp_adjfreq,
5888 .adjtime = tg3_ptp_adjtime,
5889 .gettime = tg3_ptp_gettime,
5890 .settime = tg3_ptp_settime,
5891 .enable = tg3_ptp_enable,
5892};
5893
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00005894static void tg3_hwclock_to_timestamp(struct tg3 *tp, u64 hwclock,
5895 struct skb_shared_hwtstamps *timestamp)
5896{
5897 memset(timestamp, 0, sizeof(struct skb_shared_hwtstamps));
5898 timestamp->hwtstamp = ns_to_ktime((hwclock & TG3_TSTAMP_MASK) +
5899 tp->ptp_adjust);
5900}
5901
Matt Carlsonbe947302012-12-03 19:36:57 +00005902/* tp->lock must be held */
5903static void tg3_ptp_init(struct tg3 *tp)
5904{
5905 if (!tg3_flag(tp, PTP_CAPABLE))
5906 return;
5907
5908 /* Initialize the hardware clock to the system time. */
5909 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()));
5910 tp->ptp_adjust = 0;
Matt Carlson7d41e492012-12-03 19:36:58 +00005911 tp->ptp_info = tg3_ptp_caps;
Matt Carlsonbe947302012-12-03 19:36:57 +00005912}
5913
5914/* tp->lock must be held */
5915static void tg3_ptp_resume(struct tg3 *tp)
5916{
5917 if (!tg3_flag(tp, PTP_CAPABLE))
5918 return;
5919
5920 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()) + tp->ptp_adjust);
5921 tp->ptp_adjust = 0;
5922}
5923
5924static void tg3_ptp_fini(struct tg3 *tp)
5925{
5926 if (!tg3_flag(tp, PTP_CAPABLE) || !tp->ptp_clock)
5927 return;
5928
Matt Carlson7d41e492012-12-03 19:36:58 +00005929 ptp_clock_unregister(tp->ptp_clock);
Matt Carlsonbe947302012-12-03 19:36:57 +00005930 tp->ptp_clock = NULL;
5931 tp->ptp_adjust = 0;
5932}
5933
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005934static inline int tg3_irq_sync(struct tg3 *tp)
5935{
5936 return tp->irq_sync;
5937}
5938
Matt Carlson97bd8e42011-04-13 11:05:04 +00005939static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
5940{
5941 int i;
5942
5943 dst = (u32 *)((u8 *)dst + off);
5944 for (i = 0; i < len; i += sizeof(u32))
5945 *dst++ = tr32(off + i);
5946}
5947
5948static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
5949{
5950 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
5951 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
5952 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
5953 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
5954 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
5955 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
5956 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
5957 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
5958 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
5959 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
5960 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
5961 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
5962 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
5963 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
5964 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
5965 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
5966 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
5967 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
5968 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
5969
Joe Perches63c3a662011-04-26 08:12:10 +00005970 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005971 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
5972
5973 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
5974 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
5975 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
5976 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
5977 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
5978 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
5979 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
5980 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
5981
Joe Perches63c3a662011-04-26 08:12:10 +00005982 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005983 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
5984 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
5985 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
5986 }
5987
5988 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
5989 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
5990 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
5991 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
5992 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
5993
Joe Perches63c3a662011-04-26 08:12:10 +00005994 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005995 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
5996}
5997
5998static void tg3_dump_state(struct tg3 *tp)
5999{
6000 int i;
6001 u32 *regs;
6002
6003 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
Joe Perchesb2adaca2013-02-03 17:43:58 +00006004 if (!regs)
Matt Carlson97bd8e42011-04-13 11:05:04 +00006005 return;
Matt Carlson97bd8e42011-04-13 11:05:04 +00006006
Joe Perches63c3a662011-04-26 08:12:10 +00006007 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006008 /* Read up to but not including private PCI registers */
6009 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
6010 regs[i / sizeof(u32)] = tr32(i);
6011 } else
6012 tg3_dump_legacy_regs(tp, regs);
6013
6014 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
6015 if (!regs[i + 0] && !regs[i + 1] &&
6016 !regs[i + 2] && !regs[i + 3])
6017 continue;
6018
6019 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
6020 i * 4,
6021 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
6022 }
6023
6024 kfree(regs);
6025
6026 for (i = 0; i < tp->irq_cnt; i++) {
6027 struct tg3_napi *tnapi = &tp->napi[i];
6028
6029 /* SW status block */
6030 netdev_err(tp->dev,
6031 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
6032 i,
6033 tnapi->hw_status->status,
6034 tnapi->hw_status->status_tag,
6035 tnapi->hw_status->rx_jumbo_consumer,
6036 tnapi->hw_status->rx_consumer,
6037 tnapi->hw_status->rx_mini_consumer,
6038 tnapi->hw_status->idx[0].rx_producer,
6039 tnapi->hw_status->idx[0].tx_consumer);
6040
6041 netdev_err(tp->dev,
6042 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
6043 i,
6044 tnapi->last_tag, tnapi->last_irq_tag,
6045 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
6046 tnapi->rx_rcb_ptr,
6047 tnapi->prodring.rx_std_prod_idx,
6048 tnapi->prodring.rx_std_cons_idx,
6049 tnapi->prodring.rx_jmb_prod_idx,
6050 tnapi->prodring.rx_jmb_cons_idx);
6051 }
6052}
6053
Michael Chandf3e6542006-05-26 17:48:07 -07006054/* This is called whenever we suspect that the system chipset is re-
6055 * ordering the sequence of MMIO to the tx send mailbox. The symptom
6056 * is bogus tx completions. We try to recover by setting the
6057 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
6058 * in the workqueue.
6059 */
6060static void tg3_tx_recover(struct tg3 *tp)
6061{
Joe Perches63c3a662011-04-26 08:12:10 +00006062 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07006063 tp->write32_tx_mbox == tg3_write_indirect_mbox);
6064
Matt Carlson5129c3a2010-04-05 10:19:23 +00006065 netdev_warn(tp->dev,
6066 "The system may be re-ordering memory-mapped I/O "
6067 "cycles to the network device, attempting to recover. "
6068 "Please report the problem to the driver maintainer "
6069 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07006070
6071 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006072 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006073 spin_unlock(&tp->lock);
6074}
6075
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006076static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07006077{
Matt Carlsonf65aac12010-08-02 11:26:03 +00006078 /* Tell compiler to fetch tx indices from memory. */
6079 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006080 return tnapi->tx_pending -
6081 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07006082}
6083
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084/* Tigon3 never reports partial packet sends. So we do not
6085 * need special logic to handle SKBs that have not had all
6086 * of their frags sent yet, like SunGEM does.
6087 */
Matt Carlson17375d22009-08-28 14:02:18 +00006088static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089{
Matt Carlson17375d22009-08-28 14:02:18 +00006090 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006091 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006092 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006093 struct netdev_queue *txq;
6094 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00006095 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006096
Joe Perches63c3a662011-04-26 08:12:10 +00006097 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006098 index--;
6099
6100 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101
6102 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00006103 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07006105 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106
Michael Chandf3e6542006-05-26 17:48:07 -07006107 if (unlikely(skb == NULL)) {
6108 tg3_tx_recover(tp);
6109 return;
6110 }
6111
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006112 if (tnapi->tx_ring[sw_idx].len_flags & TXD_FLAG_HWTSTAMP) {
6113 struct skb_shared_hwtstamps timestamp;
6114 u64 hwclock = tr32(TG3_TX_TSTAMP_LSB);
6115 hwclock |= (u64)tr32(TG3_TX_TSTAMP_MSB) << 32;
6116
6117 tg3_hwclock_to_timestamp(tp, hwclock, &timestamp);
6118
6119 skb_tstamp_tx(skb, &timestamp);
6120 }
6121
Alexander Duyckf4188d82009-12-02 16:48:38 +00006122 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006123 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006124 skb_headlen(skb),
6125 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126
6127 ri->skb = NULL;
6128
Matt Carlsone01ee142011-07-27 14:20:50 +00006129 while (ri->fragmented) {
6130 ri->fragmented = false;
6131 sw_idx = NEXT_TX(sw_idx);
6132 ri = &tnapi->tx_buffers[sw_idx];
6133 }
6134
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135 sw_idx = NEXT_TX(sw_idx);
6136
6137 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006138 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07006139 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
6140 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006141
6142 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006143 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006144 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006145 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006146
6147 while (ri->fragmented) {
6148 ri->fragmented = false;
6149 sw_idx = NEXT_TX(sw_idx);
6150 ri = &tnapi->tx_buffers[sw_idx];
6151 }
6152
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153 sw_idx = NEXT_TX(sw_idx);
6154 }
6155
Tom Herbert298376d2011-11-28 16:33:30 +00006156 pkts_compl++;
6157 bytes_compl += skb->len;
6158
David S. Millerf47c11e2005-06-24 20:18:35 -07006159 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07006160
6161 if (unlikely(tx_bug)) {
6162 tg3_tx_recover(tp);
6163 return;
6164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165 }
6166
Tom Herbert5cb917b2012-03-05 19:53:50 +00006167 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00006168
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006169 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170
Michael Chan1b2a7202006-08-07 21:46:02 -07006171 /* Need to make the tx_cons update visible to tg3_start_xmit()
6172 * before checking for netif_queue_stopped(). Without the
6173 * memory barrier, there is a small possibility that tg3_start_xmit()
6174 * will miss it and cause the queue to be stopped forever.
6175 */
6176 smp_mb();
6177
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006178 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006179 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006180 __netif_tx_lock(txq, smp_processor_id());
6181 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006182 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006183 netif_tx_wake_queue(txq);
6184 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186}
6187
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006188static void tg3_frag_free(bool is_frag, void *data)
6189{
6190 if (is_frag)
6191 put_page(virt_to_head_page(data));
6192 else
6193 kfree(data);
6194}
6195
Eric Dumazet9205fd92011-11-18 06:47:01 +00006196static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006197{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006198 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
6199 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
6200
Eric Dumazet9205fd92011-11-18 06:47:01 +00006201 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006202 return;
6203
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006204 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006205 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006206 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006207 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006208}
6209
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006210
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211/* Returns size of skb allocated or < 0 on error.
6212 *
6213 * We only need to fill in the address because the other members
6214 * of the RX descriptor are invariant, see tg3_init_rings.
6215 *
6216 * Note the purposeful assymetry of cpu vs. chip accesses. For
6217 * posting buffers we only dirty the first cache line of the RX
6218 * descriptor (containing the address). Whereas for the RX status
6219 * buffers the cpu only reads the last cacheline of the RX descriptor
6220 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
6221 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006222static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006223 u32 opaque_key, u32 dest_idx_unmasked,
6224 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225{
6226 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00006227 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006228 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006230 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 switch (opaque_key) {
6233 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006234 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00006235 desc = &tpr->rx_std[dest_idx];
6236 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006237 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238 break;
6239
6240 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006241 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00006242 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00006243 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006244 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245 break;
6246
6247 default:
6248 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250
6251 /* Do not overwrite any of the map or rp information
6252 * until we are sure we can commit to a new buffer.
6253 *
6254 * Callers depend upon this behavior and assume that
6255 * we leave everything unchanged if we fail.
6256 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006257 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
6258 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006259 if (skb_size <= PAGE_SIZE) {
6260 data = netdev_alloc_frag(skb_size);
6261 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006262 } else {
6263 data = kmalloc(skb_size, GFP_ATOMIC);
6264 *frag_size = 0;
6265 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00006266 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267 return -ENOMEM;
6268
Eric Dumazet9205fd92011-11-18 06:47:01 +00006269 mapping = pci_map_single(tp->pdev,
6270 data + TG3_RX_OFFSET(tp),
6271 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006273 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006274 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00006275 return -EIO;
6276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277
Eric Dumazet9205fd92011-11-18 06:47:01 +00006278 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006279 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281 desc->addr_hi = ((u64)mapping >> 32);
6282 desc->addr_lo = ((u64)mapping & 0xffffffff);
6283
Eric Dumazet9205fd92011-11-18 06:47:01 +00006284 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285}
6286
6287/* We only need to move over in the address because the other
6288 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00006289 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290 */
Matt Carlsona3896162009-11-13 13:03:44 +00006291static void tg3_recycle_rx(struct tg3_napi *tnapi,
6292 struct tg3_rx_prodring_set *dpr,
6293 u32 opaque_key, int src_idx,
6294 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295{
Matt Carlson17375d22009-08-28 14:02:18 +00006296 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
6298 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006299 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006300 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301
6302 switch (opaque_key) {
6303 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006304 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006305 dest_desc = &dpr->rx_std[dest_idx];
6306 dest_map = &dpr->rx_std_buffers[dest_idx];
6307 src_desc = &spr->rx_std[src_idx];
6308 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309 break;
6310
6311 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006312 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006313 dest_desc = &dpr->rx_jmb[dest_idx].std;
6314 dest_map = &dpr->rx_jmb_buffers[dest_idx];
6315 src_desc = &spr->rx_jmb[src_idx].std;
6316 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 break;
6318
6319 default:
6320 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
Eric Dumazet9205fd92011-11-18 06:47:01 +00006323 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006324 dma_unmap_addr_set(dest_map, mapping,
6325 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326 dest_desc->addr_hi = src_desc->addr_hi;
6327 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00006328
6329 /* Ensure that the update to the skb happens after the physical
6330 * addresses have been transferred to the new BD location.
6331 */
6332 smp_wmb();
6333
Eric Dumazet9205fd92011-11-18 06:47:01 +00006334 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335}
6336
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337/* The RX ring scheme is composed of multiple rings which post fresh
6338 * buffers to the chip, and one special ring the chip uses to report
6339 * status back to the host.
6340 *
6341 * The special ring reports the status of received packets to the
6342 * host. The chip does not write into the original descriptor the
6343 * RX buffer was obtained from. The chip simply takes the original
6344 * descriptor as provided by the host, updates the status and length
6345 * field, then writes this into the next status ring entry.
6346 *
6347 * Each ring the host uses to post buffers to the chip is described
6348 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
6349 * it is first placed into the on-chip ram. When the packet's length
6350 * is known, it walks down the TG3_BDINFO entries to select the ring.
6351 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
6352 * which is within the range of the new packet's length is chosen.
6353 *
6354 * The "separate ring for rx status" scheme may sound queer, but it makes
6355 * sense from a cache coherency perspective. If only the host writes
6356 * to the buffer post rings, and only the chip writes to the rx status
6357 * rings, then cache lines never move beyond shared-modified state.
6358 * If both the host and chip were to write into the same ring, cache line
6359 * eviction could occur since both entities want it in an exclusive state.
6360 */
Matt Carlson17375d22009-08-28 14:02:18 +00006361static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362{
Matt Carlson17375d22009-08-28 14:02:18 +00006363 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07006364 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006365 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00006366 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07006367 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006369 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006371 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372 /*
6373 * We need to order the read of hw_idx and the read of
6374 * the opaque cookie.
6375 */
6376 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377 work_mask = 0;
6378 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006379 std_prod_idx = tpr->rx_std_prod_idx;
6380 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00006382 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00006383 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 unsigned int len;
6385 struct sk_buff *skb;
6386 dma_addr_t dma_addr;
6387 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006388 u8 *data;
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006389 u64 tstamp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390
6391 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
6392 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
6393 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006394 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006395 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006396 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006397 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07006398 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006400 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006401 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006402 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006403 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00006404 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
6407 work_mask |= opaque_key;
6408
6409 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
6410 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
6411 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00006412 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413 desc_idx, *post_ptr);
6414 drop_it_no_recycle:
6415 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00006416 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 goto next_pkt;
6418 }
6419
Eric Dumazet9205fd92011-11-18 06:47:01 +00006420 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08006421 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
6422 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006424 if ((desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6425 RXD_FLAG_PTPSTAT_PTPV1 ||
6426 (desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6427 RXD_FLAG_PTPSTAT_PTPV2) {
6428 tstamp = tr32(TG3_RX_TSTAMP_LSB);
6429 tstamp |= (u64)tr32(TG3_RX_TSTAMP_MSB) << 32;
6430 }
6431
Matt Carlsond2757fc2010-04-12 06:58:27 +00006432 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006434 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
Eric Dumazet9205fd92011-11-18 06:47:01 +00006436 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006437 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438 if (skb_size < 0)
6439 goto drop_it;
6440
Matt Carlson287be122009-08-28 13:58:46 +00006441 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 PCI_DMA_FROMDEVICE);
6443
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006444 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006445 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006446 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006447 goto drop_it_no_recycle;
6448 }
6449 skb_reserve(skb, TG3_RX_OFFSET(tp));
6450 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00006451 * after the usage of the old DMA mapping.
6452 */
6453 smp_wmb();
6454
Eric Dumazet9205fd92011-11-18 06:47:01 +00006455 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00006456
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00006458 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 desc_idx, *post_ptr);
6460
Eric Dumazet9205fd92011-11-18 06:47:01 +00006461 skb = netdev_alloc_skb(tp->dev,
6462 len + TG3_RAW_IP_ALIGN);
6463 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464 goto drop_it_no_recycle;
6465
Eric Dumazet9205fd92011-11-18 06:47:01 +00006466 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006468 memcpy(skb->data,
6469 data + TG3_RX_OFFSET(tp),
6470 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472 }
6473
Eric Dumazet9205fd92011-11-18 06:47:01 +00006474 skb_put(skb, len);
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006475 if (tstamp)
6476 tg3_hwclock_to_timestamp(tp, tstamp,
6477 skb_hwtstamps(skb));
6478
Michał Mirosławdc668912011-04-07 03:35:07 +00006479 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6481 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6482 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6483 skb->ip_summed = CHECKSUM_UNNECESSARY;
6484 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006485 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486
6487 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006488
6489 if (len > (tp->dev->mtu + ETH_HLEN) &&
6490 skb->protocol != htons(ETH_P_8021Q)) {
6491 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006492 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006493 }
6494
Matt Carlson9dc7a112010-04-12 06:58:28 +00006495 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006496 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
6497 __vlan_hwaccel_put_tag(skb,
6498 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006499
Matt Carlsonbf933c82011-01-25 15:58:49 +00006500 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502 received++;
6503 budget--;
6504
6505next_pkt:
6506 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006507
6508 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006509 tpr->rx_std_prod_idx = std_prod_idx &
6510 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006511 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6512 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006513 work_mask &= ~RXD_OPAQUE_RING_STD;
6514 rx_std_posted = 0;
6515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006517 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006518 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006519
6520 /* Refresh hw_idx to see if there is new work */
6521 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006522 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006523 rmb();
6524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 }
6526
6527 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006528 tnapi->rx_rcb_ptr = sw_idx;
6529 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530
6531 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006532 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006533 /* Sync BD data before updating mailbox */
6534 wmb();
6535
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006536 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006537 tpr->rx_std_prod_idx = std_prod_idx &
6538 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006539 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6540 tpr->rx_std_prod_idx);
6541 }
6542 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006543 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6544 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006545 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6546 tpr->rx_jmb_prod_idx);
6547 }
6548 mmiowb();
6549 } else if (work_mask) {
6550 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6551 * updated before the producer indices can be updated.
6552 */
6553 smp_wmb();
6554
Matt Carlson2c49a442010-09-30 10:34:35 +00006555 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6556 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006557
Michael Chan7ae52892012-03-21 15:38:33 +00006558 if (tnapi != &tp->napi[1]) {
6559 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006560 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006563
6564 return received;
6565}
6566
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006567static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00006570 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006571 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
6572
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573 if (sblk->status & SD_STATUS_LINK_CHG) {
6574 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006575 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006576 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006577 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006578 tw32_f(MAC_STATUS,
6579 (MAC_STATUS_SYNC_CHANGED |
6580 MAC_STATUS_CFG_CHANGED |
6581 MAC_STATUS_MI_COMPLETION |
6582 MAC_STATUS_LNKSTATE_CHANGED));
6583 udelay(40);
6584 } else
6585 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07006586 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587 }
6588 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006589}
6590
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006591static int tg3_rx_prodring_xfer(struct tg3 *tp,
6592 struct tg3_rx_prodring_set *dpr,
6593 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006594{
6595 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006596 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006597
6598 while (1) {
6599 src_prod_idx = spr->rx_std_prod_idx;
6600
6601 /* Make sure updates to the rx_std_buffers[] entries and the
6602 * standard producer index are seen in the correct order.
6603 */
6604 smp_rmb();
6605
6606 if (spr->rx_std_cons_idx == src_prod_idx)
6607 break;
6608
6609 if (spr->rx_std_cons_idx < src_prod_idx)
6610 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6611 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006612 cpycnt = tp->rx_std_ring_mask + 1 -
6613 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006614
Matt Carlson2c49a442010-09-30 10:34:35 +00006615 cpycnt = min(cpycnt,
6616 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006617
6618 si = spr->rx_std_cons_idx;
6619 di = dpr->rx_std_prod_idx;
6620
Matt Carlsone92967b2010-02-12 14:47:06 +00006621 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006622 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006623 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006624 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006625 break;
6626 }
6627 }
6628
6629 if (!cpycnt)
6630 break;
6631
6632 /* Ensure that updates to the rx_std_buffers ring and the
6633 * shadowed hardware producer ring from tg3_recycle_skb() are
6634 * ordered correctly WRT the skb check above.
6635 */
6636 smp_rmb();
6637
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006638 memcpy(&dpr->rx_std_buffers[di],
6639 &spr->rx_std_buffers[si],
6640 cpycnt * sizeof(struct ring_info));
6641
6642 for (i = 0; i < cpycnt; i++, di++, si++) {
6643 struct tg3_rx_buffer_desc *sbd, *dbd;
6644 sbd = &spr->rx_std[si];
6645 dbd = &dpr->rx_std[di];
6646 dbd->addr_hi = sbd->addr_hi;
6647 dbd->addr_lo = sbd->addr_lo;
6648 }
6649
Matt Carlson2c49a442010-09-30 10:34:35 +00006650 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6651 tp->rx_std_ring_mask;
6652 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6653 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006654 }
6655
6656 while (1) {
6657 src_prod_idx = spr->rx_jmb_prod_idx;
6658
6659 /* Make sure updates to the rx_jmb_buffers[] entries and
6660 * the jumbo producer index are seen in the correct order.
6661 */
6662 smp_rmb();
6663
6664 if (spr->rx_jmb_cons_idx == src_prod_idx)
6665 break;
6666
6667 if (spr->rx_jmb_cons_idx < src_prod_idx)
6668 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6669 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006670 cpycnt = tp->rx_jmb_ring_mask + 1 -
6671 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006672
6673 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006674 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006675
6676 si = spr->rx_jmb_cons_idx;
6677 di = dpr->rx_jmb_prod_idx;
6678
Matt Carlsone92967b2010-02-12 14:47:06 +00006679 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006680 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006681 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006682 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006683 break;
6684 }
6685 }
6686
6687 if (!cpycnt)
6688 break;
6689
6690 /* Ensure that updates to the rx_jmb_buffers ring and the
6691 * shadowed hardware producer ring from tg3_recycle_skb() are
6692 * ordered correctly WRT the skb check above.
6693 */
6694 smp_rmb();
6695
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006696 memcpy(&dpr->rx_jmb_buffers[di],
6697 &spr->rx_jmb_buffers[si],
6698 cpycnt * sizeof(struct ring_info));
6699
6700 for (i = 0; i < cpycnt; i++, di++, si++) {
6701 struct tg3_rx_buffer_desc *sbd, *dbd;
6702 sbd = &spr->rx_jmb[si].std;
6703 dbd = &dpr->rx_jmb[di].std;
6704 dbd->addr_hi = sbd->addr_hi;
6705 dbd->addr_lo = sbd->addr_lo;
6706 }
6707
Matt Carlson2c49a442010-09-30 10:34:35 +00006708 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6709 tp->rx_jmb_ring_mask;
6710 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6711 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006712 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006713
6714 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006715}
6716
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006717static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6718{
6719 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720
6721 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006722 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006723 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006724 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006725 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726 }
6727
Matt Carlsonf891ea12012-04-24 13:37:01 +00006728 if (!tnapi->rx_rcb_prod_idx)
6729 return work_done;
6730
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731 /* run RX thread, within the bounds set by NAPI.
6732 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006733 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006735 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006736 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
Joe Perches63c3a662011-04-26 08:12:10 +00006738 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006739 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006740 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006741 u32 std_prod_idx = dpr->rx_std_prod_idx;
6742 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006743
Michael Chan7ae52892012-03-21 15:38:33 +00006744 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00006745 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006746 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006747 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006748
6749 wmb();
6750
Matt Carlsone4af1af2010-02-12 14:47:05 +00006751 if (std_prod_idx != dpr->rx_std_prod_idx)
6752 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6753 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006754
Matt Carlsone4af1af2010-02-12 14:47:05 +00006755 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
6756 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6757 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006758
6759 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006760
6761 if (err)
6762 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006763 }
6764
David S. Miller6f535762007-10-11 18:08:29 -07006765 return work_done;
6766}
David S. Millerf7383c22005-05-18 22:50:53 -07006767
Matt Carlsondb219972011-11-04 09:15:03 +00006768static inline void tg3_reset_task_schedule(struct tg3 *tp)
6769{
6770 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
6771 schedule_work(&tp->reset_task);
6772}
6773
6774static inline void tg3_reset_task_cancel(struct tg3 *tp)
6775{
6776 cancel_work_sync(&tp->reset_task);
6777 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00006778 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00006779}
6780
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006781static int tg3_poll_msix(struct napi_struct *napi, int budget)
6782{
6783 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6784 struct tg3 *tp = tnapi->tp;
6785 int work_done = 0;
6786 struct tg3_hw_status *sblk = tnapi->hw_status;
6787
6788 while (1) {
6789 work_done = tg3_poll_work(tnapi, work_done, budget);
6790
Joe Perches63c3a662011-04-26 08:12:10 +00006791 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006792 goto tx_recovery;
6793
6794 if (unlikely(work_done >= budget))
6795 break;
6796
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006797 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006798 * to tell the hw how much work has been processed,
6799 * so we must read it before checking for more work.
6800 */
6801 tnapi->last_tag = sblk->status_tag;
6802 tnapi->last_irq_tag = tnapi->last_tag;
6803 rmb();
6804
6805 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00006806 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
6807 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00006808
6809 /* This test here is not race free, but will reduce
6810 * the number of interrupts by looping again.
6811 */
6812 if (tnapi == &tp->napi[1] && tp->rx_refill)
6813 continue;
6814
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006815 napi_complete(napi);
6816 /* Reenable interrupts. */
6817 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00006818
6819 /* This test here is synchronized by napi_schedule()
6820 * and napi_complete() to close the race condition.
6821 */
6822 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
6823 tw32(HOSTCC_MODE, tp->coalesce_mode |
6824 HOSTCC_MODE_ENABLE |
6825 tnapi->coal_now);
6826 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006827 mmiowb();
6828 break;
6829 }
6830 }
6831
6832 return work_done;
6833
6834tx_recovery:
6835 /* work_done is guaranteed to be less than budget. */
6836 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006837 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006838 return work_done;
6839}
6840
Matt Carlsone64de4e2011-04-13 11:05:05 +00006841static void tg3_process_error(struct tg3 *tp)
6842{
6843 u32 val;
6844 bool real_error = false;
6845
Joe Perches63c3a662011-04-26 08:12:10 +00006846 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00006847 return;
6848
6849 /* Check Flow Attention register */
6850 val = tr32(HOSTCC_FLOW_ATTN);
6851 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
6852 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
6853 real_error = true;
6854 }
6855
6856 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
6857 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
6858 real_error = true;
6859 }
6860
6861 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
6862 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
6863 real_error = true;
6864 }
6865
6866 if (!real_error)
6867 return;
6868
6869 tg3_dump_state(tp);
6870
Joe Perches63c3a662011-04-26 08:12:10 +00006871 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00006872 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00006873}
6874
David S. Miller6f535762007-10-11 18:08:29 -07006875static int tg3_poll(struct napi_struct *napi, int budget)
6876{
Matt Carlson8ef04422009-08-28 14:01:37 +00006877 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6878 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07006879 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00006880 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07006881
6882 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00006883 if (sblk->status & SD_STATUS_ERROR)
6884 tg3_process_error(tp);
6885
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006886 tg3_poll_link(tp);
6887
Matt Carlson17375d22009-08-28 14:02:18 +00006888 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07006889
Joe Perches63c3a662011-04-26 08:12:10 +00006890 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07006891 goto tx_recovery;
6892
6893 if (unlikely(work_done >= budget))
6894 break;
6895
Joe Perches63c3a662011-04-26 08:12:10 +00006896 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00006897 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07006898 * to tell the hw how much work has been processed,
6899 * so we must read it before checking for more work.
6900 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006901 tnapi->last_tag = sblk->status_tag;
6902 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07006903 rmb();
6904 } else
6905 sblk->status &= ~SD_STATUS_UPDATED;
6906
Matt Carlson17375d22009-08-28 14:02:18 +00006907 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006908 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00006909 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07006910 break;
6911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912 }
6913
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006914 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07006915
6916tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07006917 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08006918 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006919 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07006920 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921}
6922
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006923static void tg3_napi_disable(struct tg3 *tp)
6924{
6925 int i;
6926
6927 for (i = tp->irq_cnt - 1; i >= 0; i--)
6928 napi_disable(&tp->napi[i].napi);
6929}
6930
6931static void tg3_napi_enable(struct tg3 *tp)
6932{
6933 int i;
6934
6935 for (i = 0; i < tp->irq_cnt; i++)
6936 napi_enable(&tp->napi[i].napi);
6937}
6938
6939static void tg3_napi_init(struct tg3 *tp)
6940{
6941 int i;
6942
6943 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
6944 for (i = 1; i < tp->irq_cnt; i++)
6945 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
6946}
6947
6948static void tg3_napi_fini(struct tg3 *tp)
6949{
6950 int i;
6951
6952 for (i = 0; i < tp->irq_cnt; i++)
6953 netif_napi_del(&tp->napi[i].napi);
6954}
6955
6956static inline void tg3_netif_stop(struct tg3 *tp)
6957{
6958 tp->dev->trans_start = jiffies; /* prevent tx timeout */
6959 tg3_napi_disable(tp);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006960 netif_carrier_off(tp->dev);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006961 netif_tx_disable(tp->dev);
6962}
6963
Nithin Nayak Sujir35763062012-12-03 19:36:56 +00006964/* tp->lock must be held */
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006965static inline void tg3_netif_start(struct tg3 *tp)
6966{
Matt Carlsonbe947302012-12-03 19:36:57 +00006967 tg3_ptp_resume(tp);
6968
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006969 /* NOTE: unconditional netif_tx_wake_all_queues is only
6970 * appropriate so long as all callers are assured to
6971 * have free tx slots (such as after tg3_init_hw)
6972 */
6973 netif_tx_wake_all_queues(tp->dev);
6974
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006975 if (tp->link_up)
6976 netif_carrier_on(tp->dev);
6977
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006978 tg3_napi_enable(tp);
6979 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
6980 tg3_enable_ints(tp);
6981}
6982
David S. Millerf47c11e2005-06-24 20:18:35 -07006983static void tg3_irq_quiesce(struct tg3 *tp)
6984{
Matt Carlson4f125f42009-09-01 12:55:02 +00006985 int i;
6986
David S. Millerf47c11e2005-06-24 20:18:35 -07006987 BUG_ON(tp->irq_sync);
6988
6989 tp->irq_sync = 1;
6990 smp_mb();
6991
Matt Carlson4f125f42009-09-01 12:55:02 +00006992 for (i = 0; i < tp->irq_cnt; i++)
6993 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07006994}
6995
David S. Millerf47c11e2005-06-24 20:18:35 -07006996/* Fully shutdown all tg3 driver activity elsewhere in the system.
6997 * If irq_sync is non-zero, then the IRQ handler must be synchronized
6998 * with as well. Most of the time, this is not necessary except when
6999 * shutting down the device.
7000 */
7001static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
7002{
Michael Chan46966542007-07-11 19:47:19 -07007003 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07007004 if (irq_sync)
7005 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007006}
7007
7008static inline void tg3_full_unlock(struct tg3 *tp)
7009{
David S. Millerf47c11e2005-06-24 20:18:35 -07007010 spin_unlock_bh(&tp->lock);
7011}
7012
Michael Chanfcfa0a32006-03-20 22:28:41 -08007013/* One-shot MSI handler - Chip automatically disables interrupt
7014 * after sending MSI so driver doesn't have to do it.
7015 */
David Howells7d12e782006-10-05 14:55:46 +01007016static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007017{
Matt Carlson09943a12009-08-28 14:01:57 +00007018 struct tg3_napi *tnapi = dev_id;
7019 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007020
Matt Carlson898a56f2009-08-28 14:02:40 +00007021 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007022 if (tnapi->rx_rcb)
7023 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007024
7025 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007026 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007027
7028 return IRQ_HANDLED;
7029}
7030
Michael Chan88b06bc22005-04-21 17:13:25 -07007031/* MSI ISR - No need to check for interrupt sharing and no need to
7032 * flush status block and interrupt mailbox. PCI ordering rules
7033 * guarantee that MSI will arrive after the status block.
7034 */
David Howells7d12e782006-10-05 14:55:46 +01007035static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07007036{
Matt Carlson09943a12009-08-28 14:01:57 +00007037 struct tg3_napi *tnapi = dev_id;
7038 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07007039
Matt Carlson898a56f2009-08-28 14:02:40 +00007040 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007041 if (tnapi->rx_rcb)
7042 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07007043 /*
David S. Millerfac9b832005-05-18 22:46:34 -07007044 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07007045 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07007046 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07007047 * NIC to stop sending us irqs, engaging "in-intr-handler"
7048 * event coalescing.
7049 */
Matt Carlson5b39de92011-08-31 11:44:50 +00007050 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07007051 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007052 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07007053
Michael Chan88b06bc22005-04-21 17:13:25 -07007054 return IRQ_RETVAL(1);
7055}
7056
David Howells7d12e782006-10-05 14:55:46 +01007057static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058{
Matt Carlson09943a12009-08-28 14:01:57 +00007059 struct tg3_napi *tnapi = dev_id;
7060 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007061 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062 unsigned int handled = 1;
7063
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064 /* In INTx mode, it is possible for the interrupt to arrive at
7065 * the CPU before the status block posted prior to the interrupt.
7066 * Reading the PCI State register will confirm whether the
7067 * interrupt is ours and will flush the status block.
7068 */
Michael Chand18edcb2007-03-24 20:57:11 -07007069 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00007070 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007071 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7072 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007073 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07007074 }
Michael Chand18edcb2007-03-24 20:57:11 -07007075 }
7076
7077 /*
7078 * Writing any value to intr-mbox-0 clears PCI INTA# and
7079 * chip-internal interrupt pending events.
7080 * Writing non-zero to intr-mbox-0 additional tells the
7081 * NIC to stop sending us irqs, engaging "in-intr-handler"
7082 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007083 *
7084 * Flush the mailbox to de-assert the IRQ immediately to prevent
7085 * spurious interrupts. The flush impacts performance but
7086 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007087 */
Michael Chanc04cb342007-05-07 00:26:15 -07007088 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07007089 if (tg3_irq_sync(tp))
7090 goto out;
7091 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00007092 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00007093 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00007094 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07007095 } else {
7096 /* No work, shared interrupt perhaps? re-enable
7097 * interrupts, and flush that PCI write
7098 */
7099 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
7100 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07007101 }
David S. Millerf47c11e2005-06-24 20:18:35 -07007102out:
David S. Millerfac9b832005-05-18 22:46:34 -07007103 return IRQ_RETVAL(handled);
7104}
7105
David Howells7d12e782006-10-05 14:55:46 +01007106static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07007107{
Matt Carlson09943a12009-08-28 14:01:57 +00007108 struct tg3_napi *tnapi = dev_id;
7109 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007110 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07007111 unsigned int handled = 1;
7112
David S. Millerfac9b832005-05-18 22:46:34 -07007113 /* In INTx mode, it is possible for the interrupt to arrive at
7114 * the CPU before the status block posted prior to the interrupt.
7115 * Reading the PCI State register will confirm whether the
7116 * interrupt is ours and will flush the status block.
7117 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007118 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00007119 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007120 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7121 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007122 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123 }
Michael Chand18edcb2007-03-24 20:57:11 -07007124 }
7125
7126 /*
7127 * writing any value to intr-mbox-0 clears PCI INTA# and
7128 * chip-internal interrupt pending events.
7129 * writing non-zero to intr-mbox-0 additional tells the
7130 * NIC to stop sending us irqs, engaging "in-intr-handler"
7131 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007132 *
7133 * Flush the mailbox to de-assert the IRQ immediately to prevent
7134 * spurious interrupts. The flush impacts performance but
7135 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007136 */
Michael Chanc04cb342007-05-07 00:26:15 -07007137 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00007138
7139 /*
7140 * In a shared interrupt configuration, sometimes other devices'
7141 * interrupts will scream. We record the current status tag here
7142 * so that the above check can report that the screaming interrupts
7143 * are unhandled. Eventually they will be silenced.
7144 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007145 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00007146
Michael Chand18edcb2007-03-24 20:57:11 -07007147 if (tg3_irq_sync(tp))
7148 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00007149
Matt Carlson72334482009-08-28 14:03:01 +00007150 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00007151
Matt Carlson09943a12009-08-28 14:01:57 +00007152 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00007153
David S. Millerf47c11e2005-06-24 20:18:35 -07007154out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155 return IRQ_RETVAL(handled);
7156}
7157
Michael Chan79381092005-04-21 17:13:59 -07007158/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01007159static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07007160{
Matt Carlson09943a12009-08-28 14:01:57 +00007161 struct tg3_napi *tnapi = dev_id;
7162 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007163 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07007164
Michael Chanf9804dd2005-09-27 12:13:10 -07007165 if ((sblk->status & SD_STATUS_UPDATED) ||
7166 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07007167 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07007168 return IRQ_RETVAL(1);
7169 }
7170 return IRQ_RETVAL(0);
7171}
7172
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173#ifdef CONFIG_NET_POLL_CONTROLLER
7174static void tg3_poll_controller(struct net_device *dev)
7175{
Matt Carlson4f125f42009-09-01 12:55:02 +00007176 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07007177 struct tg3 *tp = netdev_priv(dev);
7178
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +00007179 if (tg3_irq_sync(tp))
7180 return;
7181
Matt Carlson4f125f42009-09-01 12:55:02 +00007182 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00007183 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184}
7185#endif
7186
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187static void tg3_tx_timeout(struct net_device *dev)
7188{
7189 struct tg3 *tp = netdev_priv(dev);
7190
Michael Chanb0408752007-02-13 12:18:30 -08007191 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007192 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00007193 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08007194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007195
Matt Carlsondb219972011-11-04 09:15:03 +00007196 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197}
7198
Michael Chanc58ec932005-09-17 00:46:27 -07007199/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
7200static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
7201{
7202 u32 base = (u32) mapping & 0xffffffff;
7203
Eric Dumazet807540b2010-09-23 05:40:09 +00007204 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07007205}
7206
Michael Chan72f2afb2006-03-06 19:28:35 -08007207/* Test for DMA addresses > 40-bit */
7208static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7209 int len)
7210{
7211#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00007212 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00007213 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08007214 return 0;
7215#else
7216 return 0;
7217#endif
7218}
7219
Matt Carlsond1a3b732011-07-27 14:20:51 +00007220static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007221 dma_addr_t mapping, u32 len, u32 flags,
7222 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00007223{
Matt Carlson92cd3a12011-07-27 14:20:47 +00007224 txbd->addr_hi = ((u64) mapping >> 32);
7225 txbd->addr_lo = ((u64) mapping & 0xffffffff);
7226 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
7227 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00007228}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229
Matt Carlson84b67b22011-07-27 14:20:52 +00007230static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007231 dma_addr_t map, u32 len, u32 flags,
7232 u32 mss, u32 vlan)
7233{
7234 struct tg3 *tp = tnapi->tp;
7235 bool hwbug = false;
7236
7237 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00007238 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007239
7240 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007241 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007242
7243 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007244 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007245
Matt Carlsona4cb4282011-12-14 11:09:58 +00007246 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007247 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00007248 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00007249 while (len > tp->dma_limit && *budget) {
7250 u32 frag_len = tp->dma_limit;
7251 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00007252
Matt Carlsonb9e45482011-11-04 09:14:59 +00007253 /* Avoid the 8byte DMA problem */
7254 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00007255 len += tp->dma_limit / 2;
7256 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00007257 }
7258
Matt Carlsonb9e45482011-11-04 09:14:59 +00007259 tnapi->tx_buffers[*entry].fragmented = true;
7260
7261 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7262 frag_len, tmp_flag, mss, vlan);
7263 *budget -= 1;
7264 prvidx = *entry;
7265 *entry = NEXT_TX(*entry);
7266
Matt Carlsone31aa982011-07-27 14:20:53 +00007267 map += frag_len;
7268 }
7269
7270 if (len) {
7271 if (*budget) {
7272 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7273 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00007274 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00007275 *entry = NEXT_TX(*entry);
7276 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00007277 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007278 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00007279 }
7280 }
7281 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00007282 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7283 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00007284 *entry = NEXT_TX(*entry);
7285 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00007286
7287 return hwbug;
7288}
7289
Matt Carlson0d681b22011-07-27 14:20:49 +00007290static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00007291{
7292 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00007293 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00007294 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007295
Matt Carlson0d681b22011-07-27 14:20:49 +00007296 skb = txb->skb;
7297 txb->skb = NULL;
7298
Matt Carlson432aa7e2011-05-19 12:12:45 +00007299 pci_unmap_single(tnapi->tp->pdev,
7300 dma_unmap_addr(txb, mapping),
7301 skb_headlen(skb),
7302 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007303
7304 while (txb->fragmented) {
7305 txb->fragmented = false;
7306 entry = NEXT_TX(entry);
7307 txb = &tnapi->tx_buffers[entry];
7308 }
7309
Matt Carlsonba1142e2011-11-04 09:15:00 +00007310 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00007311 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007312
7313 entry = NEXT_TX(entry);
7314 txb = &tnapi->tx_buffers[entry];
7315
7316 pci_unmap_page(tnapi->tp->pdev,
7317 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00007318 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007319
7320 while (txb->fragmented) {
7321 txb->fragmented = false;
7322 entry = NEXT_TX(entry);
7323 txb = &tnapi->tx_buffers[entry];
7324 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00007325 }
7326}
7327
Michael Chan72f2afb2006-03-06 19:28:35 -08007328/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007329static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04007330 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00007331 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007332 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333{
Matt Carlson24f4efd2009-11-13 13:03:35 +00007334 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04007335 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07007336 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007337 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338
Joe Perches41535772013-02-16 11:20:04 +00007339 if (tg3_asic_rev(tp) != ASIC_REV_5701)
Matt Carlson41588ba2008-04-19 18:12:33 -07007340 new_skb = skb_copy(skb, GFP_ATOMIC);
7341 else {
7342 int more_headroom = 4 - ((unsigned long)skb->data & 3);
7343
7344 new_skb = skb_copy_expand(skb,
7345 skb_headroom(skb) + more_headroom,
7346 skb_tailroom(skb), GFP_ATOMIC);
7347 }
7348
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07007350 ret = -1;
7351 } else {
7352 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00007353 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
7354 PCI_DMA_TODEVICE);
7355 /* Make sure the mapping succeeded */
7356 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00007357 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07007358 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07007359 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007360 u32 save_entry = *entry;
7361
Matt Carlson92cd3a12011-07-27 14:20:47 +00007362 base_flags |= TXD_FLAG_END;
7363
Matt Carlson84b67b22011-07-27 14:20:52 +00007364 tnapi->tx_buffers[*entry].skb = new_skb;
7365 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00007366 mapping, new_addr);
7367
Matt Carlson84b67b22011-07-27 14:20:52 +00007368 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007369 new_skb->len, base_flags,
7370 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00007371 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00007372 dev_kfree_skb(new_skb);
7373 ret = -1;
7374 }
Michael Chanc58ec932005-09-17 00:46:27 -07007375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376 }
7377
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04007379 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07007380 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381}
7382
Matt Carlson2ffcc982011-05-19 12:12:44 +00007383static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07007384
7385/* Use GSO to workaround a rare TSO bug that may be triggered when the
7386 * TSO header is greater than 80 bytes.
7387 */
7388static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
7389{
7390 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007391 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07007392
7393 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007394 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07007395 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007396
7397 /* netif_tx_stop_queue() must be done before checking
7398 * checking tx index in tg3_tx_avail() below, because in
7399 * tg3_tx(), we update tx index before checking for
7400 * netif_tx_queue_stopped().
7401 */
7402 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007403 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08007404 return NETDEV_TX_BUSY;
7405
7406 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007407 }
7408
7409 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07007410 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07007411 goto tg3_tso_bug_end;
7412
7413 do {
7414 nskb = segs;
7415 segs = segs->next;
7416 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00007417 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007418 } while (segs);
7419
7420tg3_tso_bug_end:
7421 dev_kfree_skb(skb);
7422
7423 return NETDEV_TX_OK;
7424}
Michael Chan52c0fd82006-06-29 20:15:54 -07007425
Michael Chan5a6f3072006-03-20 22:28:05 -08007426/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00007427 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08007428 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00007429static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08007430{
7431 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00007432 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00007433 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007434 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07007435 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007436 struct tg3_napi *tnapi;
7437 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007438 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007439
Matt Carlson24f4efd2009-11-13 13:03:35 +00007440 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
7441 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00007442 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007443 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444
Matt Carlson84b67b22011-07-27 14:20:52 +00007445 budget = tg3_tx_avail(tnapi);
7446
Michael Chan00b70502006-06-17 21:58:45 -07007447 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007448 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07007449 * interrupt. Furthermore, IRQ processing runs lockless so we have
7450 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007452 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007453 if (!netif_tx_queue_stopped(txq)) {
7454 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007455
7456 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00007457 netdev_err(dev,
7458 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460 return NETDEV_TX_BUSY;
7461 }
7462
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007463 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07007465 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007467
Matt Carlsonbe98da62010-07-11 09:31:46 +00007468 mss = skb_shinfo(skb)->gso_size;
7469 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007470 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00007471 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472
7473 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00007474 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7475 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476
Matt Carlson34195c32010-07-11 09:31:42 +00007477 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07007478 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479
Eric Dumazeta5a11952012-01-23 01:22:09 +00007480 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00007481
Eric Dumazeta5a11952012-01-23 01:22:09 +00007482 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00007483 iph->check = 0;
7484 iph->tot_len = htons(mss + hdr_len);
7485 }
7486
Michael Chan52c0fd82006-06-29 20:15:54 -07007487 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007488 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00007489 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007490
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7492 TXD_FLAG_CPU_POST_DMA);
7493
Joe Perches63c3a662011-04-26 08:12:10 +00007494 if (tg3_flag(tp, HW_TSO_1) ||
7495 tg3_flag(tp, HW_TSO_2) ||
7496 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007497 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007499 } else
7500 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7501 iph->daddr, 0,
7502 IPPROTO_TCP,
7503 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504
Joe Perches63c3a662011-04-26 08:12:10 +00007505 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007506 mss |= (hdr_len & 0xc) << 12;
7507 if (hdr_len & 0x10)
7508 base_flags |= 0x00000010;
7509 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007510 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007511 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007512 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +00007513 tg3_asic_rev(tp) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007514 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515 int tsflags;
7516
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007517 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518 mss |= (tsflags << 11);
7519 }
7520 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007521 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522 int tsflags;
7523
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007524 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007525 base_flags |= tsflags << 12;
7526 }
7527 }
7528 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00007529
Matt Carlson93a700a2011-08-31 11:44:54 +00007530 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
7531 !mss && skb->len > VLAN_ETH_FRAME_LEN)
7532 base_flags |= TXD_FLAG_JMB_PKT;
7533
Matt Carlson92cd3a12011-07-27 14:20:47 +00007534 if (vlan_tx_tag_present(skb)) {
7535 base_flags |= TXD_FLAG_VLAN;
7536 vlan = vlan_tx_tag_get(skb);
7537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00007539 if ((unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) &&
7540 tg3_flag(tp, TX_TSTAMP_EN)) {
7541 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7542 base_flags |= TXD_FLAG_HWTSTAMP;
7543 }
7544
Alexander Duyckf4188d82009-12-02 16:48:38 +00007545 len = skb_headlen(skb);
7546
7547 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00007548 if (pci_dma_mapping_error(tp->pdev, mapping))
7549 goto drop;
7550
David S. Miller90079ce2008-09-11 04:52:51 -07007551
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007552 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007553 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554
7555 would_hit_hwbug = 0;
7556
Joe Perches63c3a662011-04-26 08:12:10 +00007557 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07007558 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
Matt Carlson84b67b22011-07-27 14:20:52 +00007560 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00007561 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00007562 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00007563 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00007564 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00007565 u32 tmp_mss = mss;
7566
7567 if (!tg3_flag(tp, HW_TSO_1) &&
7568 !tg3_flag(tp, HW_TSO_2) &&
7569 !tg3_flag(tp, HW_TSO_3))
7570 tmp_mss = 0;
7571
Matt Carlsonc5665a52012-02-13 10:20:12 +00007572 /* Now loop through additional data
7573 * fragments, and queue them.
7574 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575 last = skb_shinfo(skb)->nr_frags - 1;
7576 for (i = 0; i <= last; i++) {
7577 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
7578
Eric Dumazet9e903e02011-10-18 21:00:24 +00007579 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00007580 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007581 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007583 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007584 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00007585 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007586 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00007587 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588
Matt Carlsonb9e45482011-11-04 09:14:59 +00007589 if (!budget ||
7590 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00007591 len, base_flags |
7592 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00007593 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007594 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007595 break;
7596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597 }
7598 }
7599
7600 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00007601 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602
7603 /* If the workaround fails due to memory/mapping
7604 * failure, silently drop this packet.
7605 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007606 entry = tnapi->tx_prod;
7607 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04007608 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00007609 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00007610 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611 }
7612
Richard Cochrand515b452011-06-19 03:31:41 +00007613 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007614 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007615
Michael Chan6541b802012-03-04 14:48:14 +00007616 /* Sync BD data before updating mailbox */
7617 wmb();
7618
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007620 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007622 tnapi->tx_prod = entry;
7623 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007624 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007625
7626 /* netif_tx_stop_queue() must be done before checking
7627 * checking tx index in tg3_tx_avail() below, because in
7628 * tg3_tx(), we update tx index before checking for
7629 * netif_tx_queue_stopped().
7630 */
7631 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007632 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007633 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007636 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007638
7639dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007640 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007641 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007642drop:
7643 dev_kfree_skb(skb);
7644drop_nofree:
7645 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007646 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647}
7648
Matt Carlson6e01b202011-08-19 13:58:20 +00007649static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7650{
7651 if (enable) {
7652 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7653 MAC_MODE_PORT_MODE_MASK);
7654
7655 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7656
7657 if (!tg3_flag(tp, 5705_PLUS))
7658 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7659
7660 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7661 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7662 else
7663 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7664 } else {
7665 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7666
7667 if (tg3_flag(tp, 5705_PLUS) ||
7668 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
Joe Perches41535772013-02-16 11:20:04 +00007669 tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlson6e01b202011-08-19 13:58:20 +00007670 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7671 }
7672
7673 tw32(MAC_MODE, tp->mac_mode);
7674 udelay(40);
7675}
7676
Matt Carlson941ec902011-08-19 13:58:23 +00007677static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007678{
Matt Carlson941ec902011-08-19 13:58:23 +00007679 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007680
7681 tg3_phy_toggle_apd(tp, false);
7682 tg3_phy_toggle_automdix(tp, 0);
7683
Matt Carlson941ec902011-08-19 13:58:23 +00007684 if (extlpbk && tg3_phy_set_extloopbk(tp))
7685 return -EIO;
7686
7687 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007688 switch (speed) {
7689 case SPEED_10:
7690 break;
7691 case SPEED_100:
7692 bmcr |= BMCR_SPEED100;
7693 break;
7694 case SPEED_1000:
7695 default:
7696 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7697 speed = SPEED_100;
7698 bmcr |= BMCR_SPEED100;
7699 } else {
7700 speed = SPEED_1000;
7701 bmcr |= BMCR_SPEED1000;
7702 }
7703 }
7704
Matt Carlson941ec902011-08-19 13:58:23 +00007705 if (extlpbk) {
7706 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7707 tg3_readphy(tp, MII_CTRL1000, &val);
7708 val |= CTL1000_AS_MASTER |
7709 CTL1000_ENABLE_MASTER;
7710 tg3_writephy(tp, MII_CTRL1000, val);
7711 } else {
7712 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7713 MII_TG3_FET_PTEST_TRIM_2;
7714 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7715 }
7716 } else
7717 bmcr |= BMCR_LOOPBACK;
7718
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007719 tg3_writephy(tp, MII_BMCR, bmcr);
7720
7721 /* The write needs to be flushed for the FETs */
7722 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7723 tg3_readphy(tp, MII_BMCR, &bmcr);
7724
7725 udelay(40);
7726
7727 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +00007728 tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007729 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007730 MII_TG3_FET_PTEST_FRC_TX_LINK |
7731 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7732
7733 /* The write needs to be flushed for the AC131 */
7734 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7735 }
7736
7737 /* Reset to prevent losing 1st rx packet intermittently */
7738 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
7739 tg3_flag(tp, 5780_CLASS)) {
7740 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7741 udelay(10);
7742 tw32_f(MAC_RX_MODE, tp->rx_mode);
7743 }
7744
7745 mac_mode = tp->mac_mode &
7746 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
7747 if (speed == SPEED_1000)
7748 mac_mode |= MAC_MODE_PORT_MODE_GMII;
7749 else
7750 mac_mode |= MAC_MODE_PORT_MODE_MII;
7751
Joe Perches41535772013-02-16 11:20:04 +00007752 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007753 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
7754
7755 if (masked_phy_id == TG3_PHY_ID_BCM5401)
7756 mac_mode &= ~MAC_MODE_LINK_POLARITY;
7757 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
7758 mac_mode |= MAC_MODE_LINK_POLARITY;
7759
7760 tg3_writephy(tp, MII_TG3_EXT_CTRL,
7761 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
7762 }
7763
7764 tw32(MAC_MODE, mac_mode);
7765 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00007766
7767 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007768}
7769
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007770static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007771{
7772 struct tg3 *tp = netdev_priv(dev);
7773
7774 if (features & NETIF_F_LOOPBACK) {
7775 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
7776 return;
7777
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007778 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007779 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007780 netif_carrier_on(tp->dev);
7781 spin_unlock_bh(&tp->lock);
7782 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
7783 } else {
7784 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
7785 return;
7786
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007787 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007788 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007789 /* Force link status check */
7790 tg3_setup_phy(tp, 1);
7791 spin_unlock_bh(&tp->lock);
7792 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
7793 }
7794}
7795
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007796static netdev_features_t tg3_fix_features(struct net_device *dev,
7797 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00007798{
7799 struct tg3 *tp = netdev_priv(dev);
7800
Joe Perches63c3a662011-04-26 08:12:10 +00007801 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00007802 features &= ~NETIF_F_ALL_TSO;
7803
7804 return features;
7805}
7806
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007807static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007808{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007809 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007810
7811 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
7812 tg3_set_loopback(dev, features);
7813
7814 return 0;
7815}
7816
Matt Carlson21f581a2009-08-28 14:00:25 +00007817static void tg3_rx_prodring_free(struct tg3 *tp,
7818 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820 int i;
7821
Matt Carlson8fea32b2010-09-15 08:59:58 +00007822 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007823 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007824 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007825 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007826 tp->rx_pkt_map_sz);
7827
Joe Perches63c3a662011-04-26 08:12:10 +00007828 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007829 for (i = tpr->rx_jmb_cons_idx;
7830 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007831 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007832 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007833 TG3_RX_JMB_MAP_SZ);
7834 }
7835 }
7836
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007837 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839
Matt Carlson2c49a442010-09-30 10:34:35 +00007840 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007841 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007842 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843
Joe Perches63c3a662011-04-26 08:12:10 +00007844 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007845 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007846 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007847 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007848 }
7849}
7850
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007851/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852 *
7853 * The chip has been shut down and the driver detached from
7854 * the networking, so no interrupts or new tx packets will
7855 * end up in the driver. tp->{tx,}lock are held and thus
7856 * we may not sleep.
7857 */
Matt Carlson21f581a2009-08-28 14:00:25 +00007858static int tg3_rx_prodring_alloc(struct tg3 *tp,
7859 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007860{
Matt Carlson287be122009-08-28 13:58:46 +00007861 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007863 tpr->rx_std_cons_idx = 0;
7864 tpr->rx_std_prod_idx = 0;
7865 tpr->rx_jmb_cons_idx = 0;
7866 tpr->rx_jmb_prod_idx = 0;
7867
Matt Carlson8fea32b2010-09-15 08:59:58 +00007868 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007869 memset(&tpr->rx_std_buffers[0], 0,
7870 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00007871 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007872 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00007873 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007874 goto done;
7875 }
7876
Linus Torvalds1da177e2005-04-16 15:20:36 -07007877 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00007878 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879
Matt Carlson287be122009-08-28 13:58:46 +00007880 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00007881 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00007882 tp->dev->mtu > ETH_DATA_LEN)
7883 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
7884 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07007885
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886 /* Initialize invariants of the rings, we only set this
7887 * stuff once. This works because the card does not
7888 * write into the rx buffer posting rings.
7889 */
Matt Carlson2c49a442010-09-30 10:34:35 +00007890 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891 struct tg3_rx_buffer_desc *rxd;
7892
Matt Carlson21f581a2009-08-28 14:00:25 +00007893 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00007894 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
7896 rxd->opaque = (RXD_OPAQUE_RING_STD |
7897 (i << RXD_OPAQUE_INDEX_SHIFT));
7898 }
7899
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007900 /* Now allocate fresh SKBs for each rx ring. */
7901 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007902 unsigned int frag_size;
7903
7904 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
7905 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007906 netdev_warn(tp->dev,
7907 "Using a smaller RX standard ring. Only "
7908 "%d out of %d buffers were allocated "
7909 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007910 if (i == 0)
7911 goto initfail;
7912 tp->rx_pending = i;
7913 break;
7914 }
7915 }
7916
Joe Perches63c3a662011-04-26 08:12:10 +00007917 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007918 goto done;
7919
Matt Carlson2c49a442010-09-30 10:34:35 +00007920 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007921
Joe Perches63c3a662011-04-26 08:12:10 +00007922 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00007923 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007924
Matt Carlson2c49a442010-09-30 10:34:35 +00007925 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00007926 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927
Matt Carlson0d86df82010-02-17 15:17:00 +00007928 rxd = &tpr->rx_jmb[i].std;
7929 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
7930 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
7931 RXD_FLAG_JUMBO;
7932 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
7933 (i << RXD_OPAQUE_INDEX_SHIFT));
7934 }
7935
7936 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007937 unsigned int frag_size;
7938
7939 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
7940 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007941 netdev_warn(tp->dev,
7942 "Using a smaller RX jumbo ring. Only %d "
7943 "out of %d buffers were allocated "
7944 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00007945 if (i == 0)
7946 goto initfail;
7947 tp->rx_jumbo_pending = i;
7948 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007949 }
7950 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007951
7952done:
Michael Chan32d8c572006-07-25 16:38:29 -07007953 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007954
7955initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00007956 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007957 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958}
7959
Matt Carlson21f581a2009-08-28 14:00:25 +00007960static void tg3_rx_prodring_fini(struct tg3 *tp,
7961 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007962{
Matt Carlson21f581a2009-08-28 14:00:25 +00007963 kfree(tpr->rx_std_buffers);
7964 tpr->rx_std_buffers = NULL;
7965 kfree(tpr->rx_jmb_buffers);
7966 tpr->rx_jmb_buffers = NULL;
7967 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007968 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
7969 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007970 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007971 }
Matt Carlson21f581a2009-08-28 14:00:25 +00007972 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007973 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
7974 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007975 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007977}
7978
Matt Carlson21f581a2009-08-28 14:00:25 +00007979static int tg3_rx_prodring_init(struct tg3 *tp,
7980 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007981{
Matt Carlson2c49a442010-09-30 10:34:35 +00007982 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
7983 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007984 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007985 return -ENOMEM;
7986
Matt Carlson4bae65c2010-11-24 08:31:52 +00007987 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
7988 TG3_RX_STD_RING_BYTES(tp),
7989 &tpr->rx_std_mapping,
7990 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007991 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007992 goto err_out;
7993
Joe Perches63c3a662011-04-26 08:12:10 +00007994 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007995 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00007996 GFP_KERNEL);
7997 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007998 goto err_out;
7999
Matt Carlson4bae65c2010-11-24 08:31:52 +00008000 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
8001 TG3_RX_JMB_RING_BYTES(tp),
8002 &tpr->rx_jmb_mapping,
8003 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008004 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008005 goto err_out;
8006 }
8007
8008 return 0;
8009
8010err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00008011 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008012 return -ENOMEM;
8013}
8014
8015/* Free up pending packets in all rx/tx rings.
8016 *
8017 * The chip has been shut down and the driver detached from
8018 * the networking, so no interrupts or new tx packets will
8019 * end up in the driver. tp->{tx,}lock is not held and we are not
8020 * in an interrupt context and thus may sleep.
8021 */
8022static void tg3_free_rings(struct tg3 *tp)
8023{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008024 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008025
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008026 for (j = 0; j < tp->irq_cnt; j++) {
8027 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008028
Matt Carlson8fea32b2010-09-15 08:59:58 +00008029 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00008030
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008031 if (!tnapi->tx_buffers)
8032 continue;
8033
Matt Carlson0d681b22011-07-27 14:20:49 +00008034 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
8035 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008036
Matt Carlson0d681b22011-07-27 14:20:49 +00008037 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008038 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008039
Matt Carlsonba1142e2011-11-04 09:15:00 +00008040 tg3_tx_skb_unmap(tnapi, i,
8041 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008042
8043 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008044 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00008045 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008046 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008047}
8048
8049/* Initialize tx/rx rings for packet processing.
8050 *
8051 * The chip has been shut down and the driver detached from
8052 * the networking, so no interrupts or new tx packets will
8053 * end up in the driver. tp->{tx,}lock are held and thus
8054 * we may not sleep.
8055 */
8056static int tg3_init_rings(struct tg3 *tp)
8057{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008058 int i;
Matt Carlson72334482009-08-28 14:03:01 +00008059
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008060 /* Free up all the SKBs. */
8061 tg3_free_rings(tp);
8062
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008063 for (i = 0; i < tp->irq_cnt; i++) {
8064 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008065
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008066 tnapi->last_tag = 0;
8067 tnapi->last_irq_tag = 0;
8068 tnapi->hw_status->status = 0;
8069 tnapi->hw_status->status_tag = 0;
8070 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8071
8072 tnapi->tx_prod = 0;
8073 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008074 if (tnapi->tx_ring)
8075 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008076
8077 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008078 if (tnapi->rx_rcb)
8079 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008080
Matt Carlson8fea32b2010-09-15 08:59:58 +00008081 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00008082 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008083 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00008084 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008085 }
Matt Carlson72334482009-08-28 14:03:01 +00008086
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008087 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008088}
8089
Michael Chan49a359e2012-09-28 07:12:37 +00008090static void tg3_mem_tx_release(struct tg3 *tp)
8091{
8092 int i;
8093
8094 for (i = 0; i < tp->irq_max; i++) {
8095 struct tg3_napi *tnapi = &tp->napi[i];
8096
8097 if (tnapi->tx_ring) {
8098 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
8099 tnapi->tx_ring, tnapi->tx_desc_mapping);
8100 tnapi->tx_ring = NULL;
8101 }
8102
8103 kfree(tnapi->tx_buffers);
8104 tnapi->tx_buffers = NULL;
8105 }
8106}
8107
8108static int tg3_mem_tx_acquire(struct tg3 *tp)
8109{
8110 int i;
8111 struct tg3_napi *tnapi = &tp->napi[0];
8112
8113 /* If multivector TSS is enabled, vector 0 does not handle
8114 * tx interrupts. Don't allocate any resources for it.
8115 */
8116 if (tg3_flag(tp, ENABLE_TSS))
8117 tnapi++;
8118
8119 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
8120 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
8121 TG3_TX_RING_SIZE, GFP_KERNEL);
8122 if (!tnapi->tx_buffers)
8123 goto err_out;
8124
8125 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
8126 TG3_TX_RING_BYTES,
8127 &tnapi->tx_desc_mapping,
8128 GFP_KERNEL);
8129 if (!tnapi->tx_ring)
8130 goto err_out;
8131 }
8132
8133 return 0;
8134
8135err_out:
8136 tg3_mem_tx_release(tp);
8137 return -ENOMEM;
8138}
8139
8140static void tg3_mem_rx_release(struct tg3 *tp)
8141{
8142 int i;
8143
8144 for (i = 0; i < tp->irq_max; i++) {
8145 struct tg3_napi *tnapi = &tp->napi[i];
8146
8147 tg3_rx_prodring_fini(tp, &tnapi->prodring);
8148
8149 if (!tnapi->rx_rcb)
8150 continue;
8151
8152 dma_free_coherent(&tp->pdev->dev,
8153 TG3_RX_RCB_RING_BYTES(tp),
8154 tnapi->rx_rcb,
8155 tnapi->rx_rcb_mapping);
8156 tnapi->rx_rcb = NULL;
8157 }
8158}
8159
8160static int tg3_mem_rx_acquire(struct tg3 *tp)
8161{
8162 unsigned int i, limit;
8163
8164 limit = tp->rxq_cnt;
8165
8166 /* If RSS is enabled, we need a (dummy) producer ring
8167 * set on vector zero. This is the true hw prodring.
8168 */
8169 if (tg3_flag(tp, ENABLE_RSS))
8170 limit++;
8171
8172 for (i = 0; i < limit; i++) {
8173 struct tg3_napi *tnapi = &tp->napi[i];
8174
8175 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
8176 goto err_out;
8177
8178 /* If multivector RSS is enabled, vector 0
8179 * does not handle rx or tx interrupts.
8180 * Don't allocate any resources for it.
8181 */
8182 if (!i && tg3_flag(tp, ENABLE_RSS))
8183 continue;
8184
8185 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
8186 TG3_RX_RCB_RING_BYTES(tp),
8187 &tnapi->rx_rcb_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008188 GFP_KERNEL | __GFP_ZERO);
Michael Chan49a359e2012-09-28 07:12:37 +00008189 if (!tnapi->rx_rcb)
8190 goto err_out;
Michael Chan49a359e2012-09-28 07:12:37 +00008191 }
8192
8193 return 0;
8194
8195err_out:
8196 tg3_mem_rx_release(tp);
8197 return -ENOMEM;
8198}
8199
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008200/*
8201 * Must not be invoked with interrupt sources disabled and
8202 * the hardware shutdown down.
8203 */
8204static void tg3_free_consistent(struct tg3 *tp)
8205{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008206 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008207
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008208 for (i = 0; i < tp->irq_cnt; i++) {
8209 struct tg3_napi *tnapi = &tp->napi[i];
8210
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008211 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008212 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
8213 tnapi->hw_status,
8214 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008215 tnapi->hw_status = NULL;
8216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008218
Michael Chan49a359e2012-09-28 07:12:37 +00008219 tg3_mem_rx_release(tp);
8220 tg3_mem_tx_release(tp);
8221
Linus Torvalds1da177e2005-04-16 15:20:36 -07008222 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008223 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
8224 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225 tp->hw_stats = NULL;
8226 }
8227}
8228
8229/*
8230 * Must not be invoked with interrupt sources disabled and
8231 * the hardware shutdown down. Can sleep.
8232 */
8233static int tg3_alloc_consistent(struct tg3 *tp)
8234{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008235 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008236
Matt Carlson4bae65c2010-11-24 08:31:52 +00008237 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
8238 sizeof(struct tg3_hw_stats),
8239 &tp->stats_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008240 GFP_KERNEL | __GFP_ZERO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241 if (!tp->hw_stats)
8242 goto err_out;
8243
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008244 for (i = 0; i < tp->irq_cnt; i++) {
8245 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008246 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008247
Matt Carlson4bae65c2010-11-24 08:31:52 +00008248 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
8249 TG3_HW_STATUS_SIZE,
8250 &tnapi->status_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008251 GFP_KERNEL | __GFP_ZERO);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008252 if (!tnapi->hw_status)
8253 goto err_out;
8254
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008255 sblk = tnapi->hw_status;
8256
Michael Chan49a359e2012-09-28 07:12:37 +00008257 if (tg3_flag(tp, ENABLE_RSS)) {
Michael Chan86449942012-10-02 20:31:14 -07008258 u16 *prodptr = NULL;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008259
Michael Chan49a359e2012-09-28 07:12:37 +00008260 /*
8261 * When RSS is enabled, the status block format changes
8262 * slightly. The "rx_jumbo_consumer", "reserved",
8263 * and "rx_mini_consumer" members get mapped to the
8264 * other three rx return ring producer indexes.
8265 */
8266 switch (i) {
8267 case 1:
8268 prodptr = &sblk->idx[0].rx_producer;
8269 break;
8270 case 2:
8271 prodptr = &sblk->rx_jumbo_consumer;
8272 break;
8273 case 3:
8274 prodptr = &sblk->reserved;
8275 break;
8276 case 4:
8277 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00008278 break;
8279 }
Michael Chan49a359e2012-09-28 07:12:37 +00008280 tnapi->rx_rcb_prod_idx = prodptr;
8281 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008282 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008283 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008284 }
8285
Michael Chan49a359e2012-09-28 07:12:37 +00008286 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
8287 goto err_out;
8288
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289 return 0;
8290
8291err_out:
8292 tg3_free_consistent(tp);
8293 return -ENOMEM;
8294}
8295
8296#define MAX_WAIT_CNT 1000
8297
8298/* To stop a block, clear the enable bit and poll till it
8299 * clears. tp->lock is held.
8300 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008301static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008302{
8303 unsigned int i;
8304 u32 val;
8305
Joe Perches63c3a662011-04-26 08:12:10 +00008306 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307 switch (ofs) {
8308 case RCVLSC_MODE:
8309 case DMAC_MODE:
8310 case MBFREE_MODE:
8311 case BUFMGR_MODE:
8312 case MEMARB_MODE:
8313 /* We can't enable/disable these bits of the
8314 * 5705/5750, just say success.
8315 */
8316 return 0;
8317
8318 default:
8319 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321 }
8322
8323 val = tr32(ofs);
8324 val &= ~enable_bit;
8325 tw32_f(ofs, val);
8326
8327 for (i = 0; i < MAX_WAIT_CNT; i++) {
8328 udelay(100);
8329 val = tr32(ofs);
8330 if ((val & enable_bit) == 0)
8331 break;
8332 }
8333
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008334 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00008335 dev_err(&tp->pdev->dev,
8336 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
8337 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338 return -ENODEV;
8339 }
8340
8341 return 0;
8342}
8343
8344/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008345static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008346{
8347 int i, err;
8348
8349 tg3_disable_ints(tp);
8350
8351 tp->rx_mode &= ~RX_MODE_ENABLE;
8352 tw32_f(MAC_RX_MODE, tp->rx_mode);
8353 udelay(10);
8354
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008355 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
8356 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
8357 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
8358 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
8359 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
8360 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008362 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
8363 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
8364 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
8365 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
8366 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
8367 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
8368 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
8370 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8371 tw32_f(MAC_MODE, tp->mac_mode);
8372 udelay(40);
8373
8374 tp->tx_mode &= ~TX_MODE_ENABLE;
8375 tw32_f(MAC_TX_MODE, tp->tx_mode);
8376
8377 for (i = 0; i < MAX_WAIT_CNT; i++) {
8378 udelay(100);
8379 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
8380 break;
8381 }
8382 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00008383 dev_err(&tp->pdev->dev,
8384 "%s timed out, TX_MODE_ENABLE will not clear "
8385 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07008386 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387 }
8388
Michael Chane6de8ad2005-05-05 14:42:41 -07008389 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008390 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
8391 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392
8393 tw32(FTQ_RESET, 0xffffffff);
8394 tw32(FTQ_RESET, 0x00000000);
8395
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008396 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
8397 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008399 for (i = 0; i < tp->irq_cnt; i++) {
8400 struct tg3_napi *tnapi = &tp->napi[i];
8401 if (tnapi->hw_status)
8402 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405 return err;
8406}
8407
Michael Chanee6a99b2007-07-18 21:49:10 -07008408/* Save PCI command register before chip reset */
8409static void tg3_save_pci_state(struct tg3 *tp)
8410{
Matt Carlson8a6eac92007-10-21 16:17:55 -07008411 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008412}
8413
8414/* Restore PCI state after chip reset */
8415static void tg3_restore_pci_state(struct tg3 *tp)
8416{
8417 u32 val;
8418
8419 /* Re-enable indirect register accesses. */
8420 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8421 tp->misc_host_ctrl);
8422
8423 /* Set MAX PCI retry to zero. */
8424 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
Joe Perches41535772013-02-16 11:20:04 +00008425 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008426 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07008427 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008428 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00008429 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07008430 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008431 PCISTATE_ALLOW_APE_SHMEM_WR |
8432 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07008433 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
8434
Matt Carlson8a6eac92007-10-21 16:17:55 -07008435 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008436
Matt Carlson2c55a3d2011-11-28 09:41:04 +00008437 if (!tg3_flag(tp, PCI_EXPRESS)) {
8438 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
8439 tp->pci_cacheline_sz);
8440 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
8441 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07008442 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08008443
Michael Chanee6a99b2007-07-18 21:49:10 -07008444 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00008445 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008446 u16 pcix_cmd;
8447
8448 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8449 &pcix_cmd);
8450 pcix_cmd &= ~PCI_X_CMD_ERO;
8451 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8452 pcix_cmd);
8453 }
Michael Chanee6a99b2007-07-18 21:49:10 -07008454
Joe Perches63c3a662011-04-26 08:12:10 +00008455 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008456
8457 /* Chip reset on 5780 will reset MSI enable bit,
8458 * so need to restore it.
8459 */
Joe Perches63c3a662011-04-26 08:12:10 +00008460 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008461 u16 ctrl;
8462
8463 pci_read_config_word(tp->pdev,
8464 tp->msi_cap + PCI_MSI_FLAGS,
8465 &ctrl);
8466 pci_write_config_word(tp->pdev,
8467 tp->msi_cap + PCI_MSI_FLAGS,
8468 ctrl | PCI_MSI_FLAGS_ENABLE);
8469 val = tr32(MSGINT_MODE);
8470 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
8471 }
8472 }
8473}
8474
Linus Torvalds1da177e2005-04-16 15:20:36 -07008475/* tp->lock is held. */
8476static int tg3_chip_reset(struct tg3 *tp)
8477{
8478 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07008479 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00008480 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008481
David S. Millerf49639e2006-06-09 11:58:36 -07008482 tg3_nvram_lock(tp);
8483
Matt Carlson77b483f2008-08-15 14:07:24 -07008484 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
8485
David S. Millerf49639e2006-06-09 11:58:36 -07008486 /* No matching tg3_nvram_unlock() after this because
8487 * chip reset below will undo the nvram lock.
8488 */
8489 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490
Michael Chanee6a99b2007-07-18 21:49:10 -07008491 /* GRC_MISC_CFG core clock reset will clear the memory
8492 * enable bit in PCI register 4 and the MSI enable bit
8493 * on some chips, so we save relevant registers here.
8494 */
8495 tg3_save_pci_state(tp);
8496
Joe Perches41535772013-02-16 11:20:04 +00008497 if (tg3_asic_rev(tp) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008498 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08008499 tw32(GRC_FASTBOOT_PC, 0);
8500
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501 /*
8502 * We must avoid the readl() that normally takes place.
8503 * It locks machines, causes machine checks, and other
8504 * fun things. So, temporarily disable the 5701
8505 * hardware workaround, while we do the reset.
8506 */
Michael Chan1ee582d2005-08-09 20:16:46 -07008507 write_op = tp->write32;
8508 if (write_op == tg3_write_flush_reg32)
8509 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510
Michael Chand18edcb2007-03-24 20:57:11 -07008511 /* Prevent the irq handler from reading or writing PCI registers
8512 * during chip reset when the memory enable bit in the PCI command
8513 * register may be cleared. The chip does not generate interrupt
8514 * at this time, but the irq handler may still be called due to irq
8515 * sharing or irqpoll.
8516 */
Joe Perches63c3a662011-04-26 08:12:10 +00008517 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008518 for (i = 0; i < tp->irq_cnt; i++) {
8519 struct tg3_napi *tnapi = &tp->napi[i];
8520 if (tnapi->hw_status) {
8521 tnapi->hw_status->status = 0;
8522 tnapi->hw_status->status_tag = 0;
8523 }
8524 tnapi->last_tag = 0;
8525 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07008526 }
Michael Chand18edcb2007-03-24 20:57:11 -07008527 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00008528
8529 for (i = 0; i < tp->irq_cnt; i++)
8530 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07008531
Joe Perches41535772013-02-16 11:20:04 +00008532 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson255ca312009-08-25 10:07:27 +00008533 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8534 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
8535 }
8536
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537 /* do the reset */
8538 val = GRC_MISC_CFG_CORECLK_RESET;
8539
Joe Perches63c3a662011-04-26 08:12:10 +00008540 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00008541 /* Force PCIe 1.0a mode */
Joe Perches41535772013-02-16 11:20:04 +00008542 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008543 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00008544 tr32(TG3_PCIE_PHY_TSTCTL) ==
8545 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
8546 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
8547
Joe Perches41535772013-02-16 11:20:04 +00008548 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008549 tw32(GRC_MISC_CFG, (1 << 29));
8550 val |= (1 << 29);
8551 }
8552 }
8553
Joe Perches41535772013-02-16 11:20:04 +00008554 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07008555 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
8556 tw32(GRC_VCPU_EXT_CTRL,
8557 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
8558 }
8559
Matt Carlsonf37500d2010-08-02 11:25:59 +00008560 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00008561 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00008563
Linus Torvalds1da177e2005-04-16 15:20:36 -07008564 tw32(GRC_MISC_CFG, val);
8565
Michael Chan1ee582d2005-08-09 20:16:46 -07008566 /* restore 5701 hardware bug workaround write method */
8567 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568
8569 /* Unfortunately, we have to delay before the PCI read back.
8570 * Some 575X chips even will not respond to a PCI cfg access
8571 * when the reset command is given to the chip.
8572 *
8573 * How do these hardware designers expect things to work
8574 * properly if the PCI write is posted for a long period
8575 * of time? It is always necessary to have some method by
8576 * which a register read back can occur to push the write
8577 * out which does the reset.
8578 *
8579 * For most tg3 variants the trick below was working.
8580 * Ho hum...
8581 */
8582 udelay(120);
8583
8584 /* Flush PCI posted writes. The normal MMIO registers
8585 * are inaccessible at this time so this is the only
8586 * way to make this reliably (actually, this is no longer
8587 * the case, see above). I tried to use indirect
8588 * register read/write but this upset some 5701 variants.
8589 */
8590 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
8591
8592 udelay(120);
8593
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008594 if (tg3_flag(tp, PCI_EXPRESS) && pci_is_pcie(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00008595 u16 val16;
8596
Joe Perches41535772013-02-16 11:20:04 +00008597 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0) {
Michael Chan86449942012-10-02 20:31:14 -07008598 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599 u32 cfg_val;
8600
8601 /* Wait for link training to complete. */
Michael Chan86449942012-10-02 20:31:14 -07008602 for (j = 0; j < 5000; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008603 udelay(100);
8604
8605 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
8606 pci_write_config_dword(tp->pdev, 0xc4,
8607 cfg_val | (1 << 15));
8608 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008609
Matt Carlsone7126992009-08-25 10:08:16 +00008610 /* Clear the "no snoop" and "relaxed ordering" bits. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008611 val16 = PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
Matt Carlsone7126992009-08-25 10:08:16 +00008612 /*
8613 * Older PCIe devices only support the 128 byte
8614 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008615 */
Joe Perches63c3a662011-04-26 08:12:10 +00008616 if (!tg3_flag(tp, CPMU_PRESENT))
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008617 val16 |= PCI_EXP_DEVCTL_PAYLOAD;
8618 pcie_capability_clear_word(tp->pdev, PCI_EXP_DEVCTL, val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008619
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008620 /* Clear error status */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008621 pcie_capability_write_word(tp->pdev, PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008622 PCI_EXP_DEVSTA_CED |
8623 PCI_EXP_DEVSTA_NFED |
8624 PCI_EXP_DEVSTA_FED |
8625 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626 }
8627
Michael Chanee6a99b2007-07-18 21:49:10 -07008628 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629
Joe Perches63c3a662011-04-26 08:12:10 +00008630 tg3_flag_clear(tp, CHIP_RESETTING);
8631 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07008632
Michael Chanee6a99b2007-07-18 21:49:10 -07008633 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008634 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07008635 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07008636 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008637
Joe Perches41535772013-02-16 11:20:04 +00008638 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008639 tg3_stop_fw(tp);
8640 tw32(0x5000, 0x400);
8641 }
8642
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00008643 if (tg3_flag(tp, IS_SSB_CORE)) {
8644 /*
8645 * BCM4785: In order to avoid repercussions from using
8646 * potentially defective internal ROM, stop the Rx RISC CPU,
8647 * which is not required.
8648 */
8649 tg3_stop_fw(tp);
8650 tg3_halt_cpu(tp, RX_CPU_BASE);
8651 }
8652
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653 tw32(GRC_MODE, tp->grc_mode);
8654
Joe Perches41535772013-02-16 11:20:04 +00008655 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008656 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657
8658 tw32(0xc4, val | (1 << 15));
8659 }
8660
8661 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
Joe Perches41535772013-02-16 11:20:04 +00008662 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
Joe Perches41535772013-02-16 11:20:04 +00008664 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008665 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
8666 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8667 }
8668
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008669 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008670 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008671 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008672 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008673 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008674 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008675 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008676 val = 0;
8677
8678 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679 udelay(40);
8680
Matt Carlson77b483f2008-08-15 14:07:24 -07008681 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8682
Michael Chan7a6f4362006-09-27 16:03:31 -07008683 err = tg3_poll_fw(tp);
8684 if (err)
8685 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686
Matt Carlson0a9140c2009-08-28 12:27:50 +00008687 tg3_mdio_start(tp);
8688
Joe Perches63c3a662011-04-26 08:12:10 +00008689 if (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +00008690 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
8691 tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008692 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008693 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008694
8695 tw32(0x7c00, val | (1 << 25));
8696 }
8697
Joe Perches41535772013-02-16 11:20:04 +00008698 if (tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsond78b59f2011-04-05 14:22:46 +00008699 val = tr32(TG3_CPMU_CLCK_ORIDE);
8700 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8701 }
8702
Linus Torvalds1da177e2005-04-16 15:20:36 -07008703 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008704 tg3_flag_clear(tp, ENABLE_ASF);
8705 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8707 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8708 u32 nic_cfg;
8709
8710 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8711 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008712 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008713 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008714 if (tg3_flag(tp, 5750_PLUS))
8715 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008716 }
8717 }
8718
8719 return 0;
8720}
8721
Matt Carlson65ec6982012-02-28 23:33:37 +00008722static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8723static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008724
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07008726static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008727{
8728 int err;
8729
8730 tg3_stop_fw(tp);
8731
Michael Chan944d9802005-05-29 14:57:48 -07008732 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008733
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008734 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008735 err = tg3_chip_reset(tp);
8736
Matt Carlsondaba2a62009-04-20 06:58:52 +00008737 __tg3_set_mac_addr(tp, 0);
8738
Michael Chan944d9802005-05-29 14:57:48 -07008739 tg3_write_sig_legacy(tp, kind);
8740 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008741
Matt Carlson92feeab2011-12-08 14:40:14 +00008742 if (tp->hw_stats) {
8743 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05008744 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00008745 tg3_get_estats(tp, &tp->estats_prev);
8746
8747 /* And make sure the next sample is new data */
8748 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
8749 }
8750
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751 if (err)
8752 return err;
8753
8754 return 0;
8755}
8756
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757static int tg3_set_mac_addr(struct net_device *dev, void *p)
8758{
8759 struct tg3 *tp = netdev_priv(dev);
8760 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07008761 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008762
Michael Chanf9804dd2005-09-27 12:13:10 -07008763 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00008764 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07008765
Linus Torvalds1da177e2005-04-16 15:20:36 -07008766 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
8767
Michael Chane75f7c92006-03-20 21:33:26 -08008768 if (!netif_running(dev))
8769 return 0;
8770
Joe Perches63c3a662011-04-26 08:12:10 +00008771 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07008772 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07008773
Michael Chan986e0ae2007-05-05 12:10:20 -07008774 addr0_high = tr32(MAC_ADDR_0_HIGH);
8775 addr0_low = tr32(MAC_ADDR_0_LOW);
8776 addr1_high = tr32(MAC_ADDR_1_HIGH);
8777 addr1_low = tr32(MAC_ADDR_1_LOW);
8778
8779 /* Skip MAC addr 1 if ASF is using it. */
8780 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
8781 !(addr1_high == 0 && addr1_low == 0))
8782 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07008783 }
Michael Chan986e0ae2007-05-05 12:10:20 -07008784 spin_lock_bh(&tp->lock);
8785 __tg3_set_mac_addr(tp, skip_mac_1);
8786 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008787
Michael Chanb9ec6c12006-07-25 16:37:27 -07008788 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008789}
8790
8791/* tp->lock is held. */
8792static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
8793 dma_addr_t mapping, u32 maxlen_flags,
8794 u32 nic_addr)
8795{
8796 tg3_write_mem(tp,
8797 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
8798 ((u64) mapping >> 32));
8799 tg3_write_mem(tp,
8800 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
8801 ((u64) mapping & 0xffffffff));
8802 tg3_write_mem(tp,
8803 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
8804 maxlen_flags);
8805
Joe Perches63c3a662011-04-26 08:12:10 +00008806 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008807 tg3_write_mem(tp,
8808 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
8809 nic_addr);
8810}
8811
Michael Chana489b6d2012-09-28 07:12:39 +00008812
8813static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07008814{
Michael Chana489b6d2012-09-28 07:12:39 +00008815 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00008816
Joe Perches63c3a662011-04-26 08:12:10 +00008817 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008818 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
8819 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
8820 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008821 } else {
8822 tw32(HOSTCC_TXCOL_TICKS, 0);
8823 tw32(HOSTCC_TXMAX_FRAMES, 0);
8824 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00008825
8826 for (; i < tp->txq_cnt; i++) {
8827 u32 reg;
8828
8829 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
8830 tw32(reg, ec->tx_coalesce_usecs);
8831 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
8832 tw32(reg, ec->tx_max_coalesced_frames);
8833 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
8834 tw32(reg, ec->tx_max_coalesced_frames_irq);
8835 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00008836 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008837
Michael Chana489b6d2012-09-28 07:12:39 +00008838 for (; i < tp->irq_max - 1; i++) {
8839 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
8840 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
8841 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8842 }
8843}
8844
8845static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
8846{
8847 int i = 0;
8848 u32 limit = tp->rxq_cnt;
8849
Joe Perches63c3a662011-04-26 08:12:10 +00008850 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008851 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
8852 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
8853 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00008854 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00008855 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008856 tw32(HOSTCC_RXCOL_TICKS, 0);
8857 tw32(HOSTCC_RXMAX_FRAMES, 0);
8858 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07008859 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008860
Michael Chana489b6d2012-09-28 07:12:39 +00008861 for (; i < limit; i++) {
8862 u32 reg;
8863
8864 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
8865 tw32(reg, ec->rx_coalesce_usecs);
8866 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
8867 tw32(reg, ec->rx_max_coalesced_frames);
8868 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
8869 tw32(reg, ec->rx_max_coalesced_frames_irq);
8870 }
8871
8872 for (; i < tp->irq_max - 1; i++) {
8873 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
8874 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
8875 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8876 }
8877}
8878
8879static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
8880{
8881 tg3_coal_tx_init(tp, ec);
8882 tg3_coal_rx_init(tp, ec);
8883
Joe Perches63c3a662011-04-26 08:12:10 +00008884 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07008885 u32 val = ec->stats_block_coalesce_usecs;
8886
Matt Carlsonb6080e12009-09-01 13:12:00 +00008887 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
8888 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
8889
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00008890 if (!tp->link_up)
David S. Miller15f98502005-05-18 22:49:26 -07008891 val = 0;
8892
8893 tw32(HOSTCC_STAT_COAL_TICKS, val);
8894 }
8895}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896
8897/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00008898static void tg3_rings_reset(struct tg3 *tp)
8899{
8900 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008901 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008902 struct tg3_napi *tnapi = &tp->napi[0];
8903
8904 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008905 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008906 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008907 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00008908 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Michael Chanc65a17f2013-01-06 12:51:07 +00008909 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00008910 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonb703df62009-12-03 08:36:21 +00008911 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008912 else
8913 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8914
8915 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8916 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
8917 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
8918 BDINFO_FLAGS_DISABLED);
8919
8920
8921 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008922 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008923 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00008924 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008925 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches41535772013-02-16 11:20:04 +00008926 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
8927 tg3_asic_rev(tp) == ASIC_REV_5762 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008928 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008929 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
8930 else
8931 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8932
8933 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8934 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
8935 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
8936 BDINFO_FLAGS_DISABLED);
8937
8938 /* Disable interrupts */
8939 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008940 tp->napi[0].chk_msi_cnt = 0;
8941 tp->napi[0].last_rx_cons = 0;
8942 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008943
8944 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00008945 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00008946 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008947 tp->napi[i].tx_prod = 0;
8948 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008949 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008950 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008951 tw32_rx_mbox(tp->napi[i].consmbox, 0);
8952 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00008953 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008954 tp->napi[i].last_rx_cons = 0;
8955 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008956 }
Joe Perches63c3a662011-04-26 08:12:10 +00008957 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008958 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008959 } else {
8960 tp->napi[0].tx_prod = 0;
8961 tp->napi[0].tx_cons = 0;
8962 tw32_mailbox(tp->napi[0].prodmbox, 0);
8963 tw32_rx_mbox(tp->napi[0].consmbox, 0);
8964 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008965
8966 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00008967 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00008968 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
8969 for (i = 0; i < 16; i++)
8970 tw32_tx_mbox(mbox + i * 8, 0);
8971 }
8972
8973 txrcb = NIC_SRAM_SEND_RCB;
8974 rxrcb = NIC_SRAM_RCV_RET_RCB;
8975
8976 /* Clear status block in ram. */
8977 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8978
8979 /* Set status block DMA address */
8980 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8981 ((u64) tnapi->status_mapping >> 32));
8982 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8983 ((u64) tnapi->status_mapping & 0xffffffff));
8984
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008985 if (tnapi->tx_ring) {
8986 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8987 (TG3_TX_RING_SIZE <<
8988 BDINFO_FLAGS_MAXLEN_SHIFT),
8989 NIC_SRAM_TX_BUFFER_DESC);
8990 txrcb += TG3_BDINFO_SIZE;
8991 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008992
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008993 if (tnapi->rx_rcb) {
8994 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008995 (tp->rx_ret_ring_mask + 1) <<
8996 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008997 rxrcb += TG3_BDINFO_SIZE;
8998 }
8999
9000 stblk = HOSTCC_STATBLCK_RING1;
9001
9002 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
9003 u64 mapping = (u64)tnapi->status_mapping;
9004 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
9005 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
9006
9007 /* Clear status block in ram. */
9008 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9009
Matt Carlson19cfaec2009-12-03 08:36:20 +00009010 if (tnapi->tx_ring) {
9011 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9012 (TG3_TX_RING_SIZE <<
9013 BDINFO_FLAGS_MAXLEN_SHIFT),
9014 NIC_SRAM_TX_BUFFER_DESC);
9015 txrcb += TG3_BDINFO_SIZE;
9016 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009017
9018 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009019 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009020 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
9021
9022 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009023 rxrcb += TG3_BDINFO_SIZE;
9024 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009025}
9026
Matt Carlsoneb07a942011-04-20 07:57:36 +00009027static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
9028{
9029 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
9030
Joe Perches63c3a662011-04-26 08:12:10 +00009031 if (!tg3_flag(tp, 5750_PLUS) ||
9032 tg3_flag(tp, 5780_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009033 tg3_asic_rev(tp) == ASIC_REV_5750 ||
9034 tg3_asic_rev(tp) == ASIC_REV_5752 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00009035 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009036 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
Joe Perches41535772013-02-16 11:20:04 +00009037 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9038 tg3_asic_rev(tp) == ASIC_REV_5787)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009039 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
9040 else
9041 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
9042
9043 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
9044 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
9045
9046 val = min(nic_rep_thresh, host_rep_thresh);
9047 tw32(RCVBDI_STD_THRESH, val);
9048
Joe Perches63c3a662011-04-26 08:12:10 +00009049 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009050 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
9051
Joe Perches63c3a662011-04-26 08:12:10 +00009052 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009053 return;
9054
Matt Carlson513aa6e2011-11-21 15:01:18 +00009055 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00009056
9057 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
9058
9059 val = min(bdcache_maxcnt / 2, host_rep_thresh);
9060 tw32(RCVBDI_JUMBO_THRESH, val);
9061
Joe Perches63c3a662011-04-26 08:12:10 +00009062 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009063 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
9064}
9065
Matt Carlsonccd5ba92012-02-13 10:20:08 +00009066static inline u32 calc_crc(unsigned char *buf, int len)
9067{
9068 u32 reg;
9069 u32 tmp;
9070 int j, k;
9071
9072 reg = 0xffffffff;
9073
9074 for (j = 0; j < len; j++) {
9075 reg ^= buf[j];
9076
9077 for (k = 0; k < 8; k++) {
9078 tmp = reg & 0x01;
9079
9080 reg >>= 1;
9081
9082 if (tmp)
9083 reg ^= 0xedb88320;
9084 }
9085 }
9086
9087 return ~reg;
9088}
9089
9090static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9091{
9092 /* accept or reject all multicast frames */
9093 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9094 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9095 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9096 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9097}
9098
9099static void __tg3_set_rx_mode(struct net_device *dev)
9100{
9101 struct tg3 *tp = netdev_priv(dev);
9102 u32 rx_mode;
9103
9104 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9105 RX_MODE_KEEP_VLAN_TAG);
9106
9107#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
9108 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9109 * flag clear.
9110 */
9111 if (!tg3_flag(tp, ENABLE_ASF))
9112 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9113#endif
9114
9115 if (dev->flags & IFF_PROMISC) {
9116 /* Promiscuous mode. */
9117 rx_mode |= RX_MODE_PROMISC;
9118 } else if (dev->flags & IFF_ALLMULTI) {
9119 /* Accept all multicast. */
9120 tg3_set_multi(tp, 1);
9121 } else if (netdev_mc_empty(dev)) {
9122 /* Reject all multicast. */
9123 tg3_set_multi(tp, 0);
9124 } else {
9125 /* Accept one or more multicast(s). */
9126 struct netdev_hw_addr *ha;
9127 u32 mc_filter[4] = { 0, };
9128 u32 regidx;
9129 u32 bit;
9130 u32 crc;
9131
9132 netdev_for_each_mc_addr(ha, dev) {
9133 crc = calc_crc(ha->addr, ETH_ALEN);
9134 bit = ~crc & 0x7f;
9135 regidx = (bit & 0x60) >> 5;
9136 bit &= 0x1f;
9137 mc_filter[regidx] |= (1 << bit);
9138 }
9139
9140 tw32(MAC_HASH_REG_0, mc_filter[0]);
9141 tw32(MAC_HASH_REG_1, mc_filter[1]);
9142 tw32(MAC_HASH_REG_2, mc_filter[2]);
9143 tw32(MAC_HASH_REG_3, mc_filter[3]);
9144 }
9145
9146 if (rx_mode != tp->rx_mode) {
9147 tp->rx_mode = rx_mode;
9148 tw32_f(MAC_RX_MODE, rx_mode);
9149 udelay(10);
9150 }
9151}
9152
Michael Chan91024262012-09-28 07:12:38 +00009153static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00009154{
9155 int i;
9156
9157 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00009158 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00009159}
9160
9161static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009162{
9163 int i;
9164
9165 if (!tg3_flag(tp, SUPPORT_MSIX))
9166 return;
9167
Michael Chan0b3ba052012-11-14 14:44:29 +00009168 if (tp->rxq_cnt == 1) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009169 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00009170 return;
9171 }
9172
9173 /* Validate table against current IRQ count */
9174 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
Michael Chan0b3ba052012-11-14 14:44:29 +00009175 if (tp->rss_ind_tbl[i] >= tp->rxq_cnt)
Matt Carlson90415472011-12-16 13:33:23 +00009176 break;
9177 }
9178
9179 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00009180 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009181}
9182
Matt Carlson90415472011-12-16 13:33:23 +00009183static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009184{
9185 int i = 0;
9186 u32 reg = MAC_RSS_INDIR_TBL_0;
9187
9188 while (i < TG3_RSS_INDIR_TBL_SIZE) {
9189 u32 val = tp->rss_ind_tbl[i];
9190 i++;
9191 for (; i % 8; i++) {
9192 val <<= 4;
9193 val |= tp->rss_ind_tbl[i];
9194 }
9195 tw32(reg, val);
9196 reg += 4;
9197 }
9198}
9199
Matt Carlson2d31eca2009-09-01 12:53:31 +00009200/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009201static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009202{
9203 u32 val, rdmac_mode;
9204 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00009205 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009206
9207 tg3_disable_ints(tp);
9208
9209 tg3_stop_fw(tp);
9210
9211 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
9212
Joe Perches63c3a662011-04-26 08:12:10 +00009213 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07009214 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009215
Matt Carlson699c0192010-12-06 08:28:51 +00009216 /* Enable MAC control of LPI */
9217 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009218 val = TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
9219 TG3_CPMU_EEE_LNKIDL_UART_IDL;
Joe Perches41535772013-02-16 11:20:04 +00009220 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00009221 val |= TG3_CPMU_EEE_LNKIDL_APE_TX_MT;
9222
9223 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL, val);
Matt Carlson699c0192010-12-06 08:28:51 +00009224
9225 tw32_f(TG3_CPMU_EEE_CTRL,
9226 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
9227
Matt Carlsona386b902010-12-06 08:28:53 +00009228 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
9229 TG3_CPMU_EEEMD_LPI_IN_TX |
9230 TG3_CPMU_EEEMD_LPI_IN_RX |
9231 TG3_CPMU_EEEMD_EEE_ENABLE;
9232
Joe Perches41535772013-02-16 11:20:04 +00009233 if (tg3_asic_rev(tp) != ASIC_REV_5717)
Matt Carlsona386b902010-12-06 08:28:53 +00009234 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
9235
Joe Perches63c3a662011-04-26 08:12:10 +00009236 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00009237 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
9238
9239 tw32_f(TG3_CPMU_EEE_MODE, val);
9240
9241 tw32_f(TG3_CPMU_EEE_DBTMR1,
9242 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
9243 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
9244
9245 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00009246 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00009247 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00009248 }
9249
Matt Carlson603f1172010-02-12 14:47:10 +00009250 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08009251 tg3_phy_reset(tp);
9252
Linus Torvalds1da177e2005-04-16 15:20:36 -07009253 err = tg3_chip_reset(tp);
9254 if (err)
9255 return err;
9256
9257 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
9258
Joe Perches41535772013-02-16 11:20:04 +00009259 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009260 val = tr32(TG3_CPMU_CTRL);
9261 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
9262 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08009263
9264 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9265 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9266 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9267 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
9268
9269 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
9270 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
9271 val |= CPMU_LNK_AWARE_MACCLK_6_25;
9272 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
9273
9274 val = tr32(TG3_CPMU_HST_ACC);
9275 val &= ~CPMU_HST_ACC_MACCLK_MASK;
9276 val |= CPMU_HST_ACC_MACCLK_6_25;
9277 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07009278 }
9279
Joe Perches41535772013-02-16 11:20:04 +00009280 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson33466d92009-04-20 06:57:41 +00009281 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
9282 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
9283 PCIE_PWR_MGMT_L1_THRESH_4MS;
9284 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00009285
9286 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
9287 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
9288
9289 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00009290
Matt Carlsonf40386c2009-11-02 14:24:02 +00009291 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
9292 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00009293 }
9294
Joe Perches63c3a662011-04-26 08:12:10 +00009295 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00009296 u32 grc_mode = tr32(GRC_MODE);
9297
9298 /* Access the lower 1K of PL PCIE block registers. */
9299 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9300 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
9301
9302 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
9303 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
9304 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
9305
9306 tw32(GRC_MODE, grc_mode);
9307 }
9308
Matt Carlson55086ad2011-12-14 11:09:59 +00009309 if (tg3_flag(tp, 57765_CLASS)) {
Joe Perches41535772013-02-16 11:20:04 +00009310 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlson5093eed2010-11-24 08:31:45 +00009311 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00009312
Matt Carlson5093eed2010-11-24 08:31:45 +00009313 /* Access the lower 1K of PL PCIE block registers. */
9314 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9315 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00009316
Matt Carlson5093eed2010-11-24 08:31:45 +00009317 val = tr32(TG3_PCIE_TLDLPL_PORT +
9318 TG3_PCIE_PL_LO_PHYCTL5);
9319 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
9320 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00009321
Matt Carlson5093eed2010-11-24 08:31:45 +00009322 tw32(GRC_MODE, grc_mode);
9323 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00009324
Joe Perches41535772013-02-16 11:20:04 +00009325 if (tg3_chip_rev(tp) != CHIPREV_57765_AX) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009326 u32 grc_mode;
9327
9328 /* Fix transmit hangs */
9329 val = tr32(TG3_CPMU_PADRNG_CTL);
9330 val |= TG3_CPMU_PADRNG_CTL_RDIV2;
9331 tw32(TG3_CPMU_PADRNG_CTL, val);
9332
9333 grc_mode = tr32(GRC_MODE);
Matt Carlson1ff30a52011-05-19 12:12:46 +00009334
9335 /* Access the lower 1K of DL PCIE block registers. */
9336 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9337 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
9338
9339 val = tr32(TG3_PCIE_TLDLPL_PORT +
9340 TG3_PCIE_DL_LO_FTSMAX);
9341 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
9342 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
9343 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
9344
9345 tw32(GRC_MODE, grc_mode);
9346 }
9347
Matt Carlsona977dbe2010-04-12 06:58:26 +00009348 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9349 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9350 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9351 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00009352 }
9353
Linus Torvalds1da177e2005-04-16 15:20:36 -07009354 /* This works around an issue with Athlon chipsets on
9355 * B3 tigon3 silicon. This bit has no effect on any
9356 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07009357 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009358 */
Joe Perches63c3a662011-04-26 08:12:10 +00009359 if (!tg3_flag(tp, CPMU_PRESENT)) {
9360 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07009361 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
9362 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009364
Joe Perches41535772013-02-16 11:20:04 +00009365 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009366 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009367 val = tr32(TG3PCI_PCISTATE);
9368 val |= PCISTATE_RETRY_SAME_DMA;
9369 tw32(TG3PCI_PCISTATE, val);
9370 }
9371
Joe Perches63c3a662011-04-26 08:12:10 +00009372 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07009373 /* Allow reads and writes to the
9374 * APE register and memory space.
9375 */
9376 val = tr32(TG3PCI_PCISTATE);
9377 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00009378 PCISTATE_ALLOW_APE_SHMEM_WR |
9379 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07009380 tw32(TG3PCI_PCISTATE, val);
9381 }
9382
Joe Perches41535772013-02-16 11:20:04 +00009383 if (tg3_chip_rev(tp) == CHIPREV_5704_BX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009384 /* Enable some hw fixes. */
9385 val = tr32(TG3PCI_MSI_DATA);
9386 val |= (1 << 26) | (1 << 28) | (1 << 29);
9387 tw32(TG3PCI_MSI_DATA, val);
9388 }
9389
9390 /* Descriptor ring init may make accesses to the
9391 * NIC SRAM area to setup the TX descriptors, so we
9392 * can only do this after the hardware has been
9393 * successfully reset.
9394 */
Michael Chan32d8c572006-07-25 16:38:29 -07009395 err = tg3_init_rings(tp);
9396 if (err)
9397 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009398
Joe Perches63c3a662011-04-26 08:12:10 +00009399 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009400 val = tr32(TG3PCI_DMA_RW_CTRL) &
9401 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Joe Perches41535772013-02-16 11:20:04 +00009402 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Matt Carlson1a319022010-04-12 06:58:25 +00009403 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00009404 if (!tg3_flag(tp, 57765_CLASS) &&
Joe Perches41535772013-02-16 11:20:04 +00009405 tg3_asic_rev(tp) != ASIC_REV_5717 &&
9406 tg3_asic_rev(tp) != ASIC_REV_5762)
Matt Carlson0aebff42011-04-25 12:42:45 +00009407 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009408 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
Joe Perches41535772013-02-16 11:20:04 +00009409 } else if (tg3_asic_rev(tp) != ASIC_REV_5784 &&
9410 tg3_asic_rev(tp) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009411 /* This value is determined during the probe time DMA
9412 * engine test, tg3_test_dma.
9413 */
9414 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009416
9417 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
9418 GRC_MODE_4X_NIC_SEND_RINGS |
9419 GRC_MODE_NO_TX_PHDR_CSUM |
9420 GRC_MODE_NO_RX_PHDR_CSUM);
9421 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07009422
9423 /* Pseudo-header checksum is done by hardware logic and not
9424 * the offload processers, so make the chip do the pseudo-
9425 * header checksums on receive. For transmit it is more
9426 * convenient to do the pseudo-header checksum in software
9427 * as Linux does that on transmit for us in all cases.
9428 */
9429 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009430
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00009431 val = GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP;
9432 if (tp->rxptpctl)
9433 tw32(TG3_RX_PTP_CTL,
9434 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
9435
9436 if (tg3_flag(tp, PTP_CAPABLE))
9437 val |= GRC_MODE_TIME_SYNC_ENABLE;
9438
9439 tw32(GRC_MODE, tp->grc_mode | val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009440
9441 /* Setup the timer prescalar register. Clock is always 66Mhz. */
9442 val = tr32(GRC_MISC_CFG);
9443 val &= ~0xff;
9444 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
9445 tw32(GRC_MISC_CFG, val);
9446
9447 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00009448 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009449 /* Do nothing. */
Joe Perches41535772013-02-16 11:20:04 +00009450 } else if (tg3_asic_rev(tp) != ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009451 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
Joe Perches41535772013-02-16 11:20:04 +00009452 if (tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009453 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
9454 else
9455 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
9456 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
9457 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00009458 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009459 int fw_len;
9460
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08009461 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009462 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
9463 tw32(BUFMGR_MB_POOL_ADDR,
9464 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
9465 tw32(BUFMGR_MB_POOL_SIZE,
9466 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
9467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009468
Michael Chan0f893dc2005-07-25 12:30:38 -07009469 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009470 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9471 tp->bufmgr_config.mbuf_read_dma_low_water);
9472 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9473 tp->bufmgr_config.mbuf_mac_rx_low_water);
9474 tw32(BUFMGR_MB_HIGH_WATER,
9475 tp->bufmgr_config.mbuf_high_water);
9476 } else {
9477 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9478 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
9479 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9480 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
9481 tw32(BUFMGR_MB_HIGH_WATER,
9482 tp->bufmgr_config.mbuf_high_water_jumbo);
9483 }
9484 tw32(BUFMGR_DMA_LOW_WATER,
9485 tp->bufmgr_config.dma_low_water);
9486 tw32(BUFMGR_DMA_HIGH_WATER,
9487 tp->bufmgr_config.dma_high_water);
9488
Matt Carlsond309a462010-09-30 10:34:31 +00009489 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
Joe Perches41535772013-02-16 11:20:04 +00009490 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsond309a462010-09-30 10:34:31 +00009491 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Joe Perches41535772013-02-16 11:20:04 +00009492 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
9493 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9494 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0)
Matt Carlson4d958472011-04-20 07:57:35 +00009495 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00009496 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009497 for (i = 0; i < 2000; i++) {
9498 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
9499 break;
9500 udelay(10);
9501 }
9502 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00009503 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009504 return -ENODEV;
9505 }
9506
Joe Perches41535772013-02-16 11:20:04 +00009507 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5906_A1)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009508 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07009509
Matt Carlsoneb07a942011-04-20 07:57:36 +00009510 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009511
9512 /* Initialize TG3_BDINFO's at:
9513 * RCVDBDI_STD_BD: standard eth size rx ring
9514 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
9515 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
9516 *
9517 * like so:
9518 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
9519 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
9520 * ring attribute flags
9521 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
9522 *
9523 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
9524 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
9525 *
9526 * The size of each ring is fixed in the firmware, but the location is
9527 * configurable.
9528 */
9529 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009530 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009531 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009532 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00009533 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00009534 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
9535 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009536
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009537 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00009538 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009539 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
9540 BDINFO_FLAGS_DISABLED);
9541
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009542 /* Program the jumbo buffer descriptor ring control
9543 * blocks on those devices that have them.
9544 */
Joe Perches41535772013-02-16 11:20:04 +00009545 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009546 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009547
Joe Perches63c3a662011-04-26 08:12:10 +00009548 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009549 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009550 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009551 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009552 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00009553 val = TG3_RX_JMB_RING_SIZE(tp) <<
9554 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009555 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00009556 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00009557 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Michael Chanc65a17f2013-01-06 12:51:07 +00009558 tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009559 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson87668d32009-11-13 13:03:34 +00009560 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
9561 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009562 } else {
9563 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
9564 BDINFO_FLAGS_DISABLED);
9565 }
9566
Joe Perches63c3a662011-04-26 08:12:10 +00009567 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00009568 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009569 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
9570 val |= (TG3_RX_STD_DMA_SZ << 2);
9571 } else
Matt Carlson04380d42010-04-12 06:58:29 +00009572 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009573 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00009574 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009575
9576 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009577
Matt Carlson411da642009-11-13 13:03:46 +00009578 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00009579 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009580
Joe Perches63c3a662011-04-26 08:12:10 +00009581 tpr->rx_jmb_prod_idx =
9582 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00009583 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009584
Matt Carlson2d31eca2009-09-01 12:53:31 +00009585 tg3_rings_reset(tp);
9586
Linus Torvalds1da177e2005-04-16 15:20:36 -07009587 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07009588 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009589
9590 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00009591 tw32(MAC_RX_MTU_SIZE,
9592 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009593
9594 /* The slot time is changed by tg3_setup_phy if we
9595 * run at gigabit with half duplex.
9596 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00009597 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
9598 (6 << TX_LENGTHS_IPG_SHIFT) |
9599 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
9600
Joe Perches41535772013-02-16 11:20:04 +00009601 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9602 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009603 val |= tr32(MAC_TX_LENGTHS) &
9604 (TX_LENGTHS_JMB_FRM_LEN_MSK |
9605 TX_LENGTHS_CNT_DWN_VAL_MSK);
9606
9607 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009608
9609 /* Receive rules. */
9610 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
9611 tw32(RCVLPC_CONFIG, 0x0181);
9612
9613 /* Calculate RDMAC_MODE setting early, we need it to determine
9614 * the RCVLPC_STATE_ENABLE mask.
9615 */
9616 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
9617 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
9618 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
9619 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
9620 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07009621
Joe Perches41535772013-02-16 11:20:04 +00009622 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00009623 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
9624
Joe Perches41535772013-02-16 11:20:04 +00009625 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
9626 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9627 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07009628 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
9629 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
9630 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
9631
Joe Perches41535772013-02-16 11:20:04 +00009632 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
9633 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009634 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +00009635 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009636 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
9637 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009638 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009639 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9640 }
9641 }
9642
Joe Perches63c3a662011-04-26 08:12:10 +00009643 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07009644 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9645
Joe Perches41535772013-02-16 11:20:04 +00009646 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009647 tp->dma_limit = 0;
9648 if (tp->dev->mtu <= ETH_DATA_LEN) {
9649 rdmac_mode |= RDMAC_MODE_JMB_2K_MMRR;
9650 tp->dma_limit = TG3_TX_BD_DMA_MAX_2K;
9651 }
9652 }
9653
Joe Perches63c3a662011-04-26 08:12:10 +00009654 if (tg3_flag(tp, HW_TSO_1) ||
9655 tg3_flag(tp, HW_TSO_2) ||
9656 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08009657 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
9658
Matt Carlson108a6c12011-05-19 12:12:47 +00009659 if (tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +00009660 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9661 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson027455a2008-12-21 20:19:30 -08009662 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009663
Joe Perches41535772013-02-16 11:20:04 +00009664 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9665 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009666 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
9667
Joe Perches41535772013-02-16 11:20:04 +00009668 if (tg3_asic_rev(tp) == ASIC_REV_5761 ||
9669 tg3_asic_rev(tp) == ASIC_REV_5784 ||
9670 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9671 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009672 tg3_flag(tp, 57765_PLUS)) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009673 u32 tgtreg;
9674
Joe Perches41535772013-02-16 11:20:04 +00009675 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009676 tgtreg = TG3_RDMA_RSRVCTRL_REG2;
9677 else
9678 tgtreg = TG3_RDMA_RSRVCTRL_REG;
9679
9680 val = tr32(tgtreg);
Joe Perches41535772013-02-16 11:20:04 +00009681 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9682 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00009683 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
9684 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
9685 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
9686 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
9687 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
9688 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00009689 }
Michael Chanc65a17f2013-01-06 12:51:07 +00009690 tw32(tgtreg, val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009691 }
9692
Joe Perches41535772013-02-16 11:20:04 +00009693 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
9694 tg3_asic_rev(tp) == ASIC_REV_5720 ||
9695 tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009696 u32 tgtreg;
9697
Joe Perches41535772013-02-16 11:20:04 +00009698 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009699 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL2;
9700 else
9701 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL;
9702
9703 val = tr32(tgtreg);
9704 tw32(tgtreg, val |
Matt Carlsond309a462010-09-30 10:34:31 +00009705 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
9706 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
9707 }
9708
Linus Torvalds1da177e2005-04-16 15:20:36 -07009709 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00009710 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07009711 val = tr32(RCVLPC_STATS_ENABLE);
9712 val &= ~RCVLPC_STATSENAB_DACK_FIX;
9713 tw32(RCVLPC_STATS_ENABLE, val);
9714 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009715 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009716 val = tr32(RCVLPC_STATS_ENABLE);
9717 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
9718 tw32(RCVLPC_STATS_ENABLE, val);
9719 } else {
9720 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
9721 }
9722 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
9723 tw32(SNDDATAI_STATSENAB, 0xffffff);
9724 tw32(SNDDATAI_STATSCTRL,
9725 (SNDDATAI_SCTRL_ENABLE |
9726 SNDDATAI_SCTRL_FASTUPD));
9727
9728 /* Setup host coalescing engine. */
9729 tw32(HOSTCC_MODE, 0);
9730 for (i = 0; i < 2000; i++) {
9731 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
9732 break;
9733 udelay(10);
9734 }
9735
Michael Chand244c892005-07-05 14:42:33 -07009736 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009737
Joe Perches63c3a662011-04-26 08:12:10 +00009738 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009739 /* Status/statistics block address. See tg3_timer,
9740 * the tg3_periodic_fetch_stats call there, and
9741 * tg3_get_stats to see how this works for 5705/5750 chips.
9742 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009743 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9744 ((u64) tp->stats_mapping >> 32));
9745 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9746 ((u64) tp->stats_mapping & 0xffffffff));
9747 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009748
Linus Torvalds1da177e2005-04-16 15:20:36 -07009749 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009750
9751 /* Clear statistics and status block memory areas */
9752 for (i = NIC_SRAM_STATS_BLK;
9753 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
9754 i += sizeof(u32)) {
9755 tg3_write_mem(tp, i, 0);
9756 udelay(40);
9757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009758 }
9759
9760 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
9761
9762 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
9763 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009764 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009765 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
9766
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009767 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
9768 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07009769 /* reset to prevent losing 1st rx packet intermittently */
9770 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9771 udelay(10);
9772 }
9773
Matt Carlson3bda1252008-08-15 14:08:22 -07009774 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00009775 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
9776 MAC_MODE_FHDE_ENABLE;
9777 if (tg3_flag(tp, ENABLE_APE))
9778 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00009779 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009780 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +00009781 tg3_asic_rev(tp) != ASIC_REV_5700)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009782 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009783 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
9784 udelay(40);
9785
Michael Chan314fba32005-04-21 17:07:04 -07009786 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00009787 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07009788 * register to preserve the GPIO settings for LOMs. The GPIOs,
9789 * whether used as inputs or outputs, are set by boot code after
9790 * reset.
9791 */
Joe Perches63c3a662011-04-26 08:12:10 +00009792 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07009793 u32 gpio_mask;
9794
Michael Chan9d26e212006-12-07 00:21:14 -08009795 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
9796 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
9797 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07009798
Joe Perches41535772013-02-16 11:20:04 +00009799 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -07009800 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
9801 GRC_LCLCTRL_GPIO_OUTPUT3;
9802
Joe Perches41535772013-02-16 11:20:04 +00009803 if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanaf36e6b2006-03-23 01:28:06 -08009804 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
9805
Gary Zambranoaaf84462007-05-05 11:51:45 -07009806 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07009807 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
9808
9809 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00009810 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08009811 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
9812 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07009813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009814 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9815 udelay(100);
9816
Matt Carlsonc3b50032012-01-17 15:27:23 +00009817 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009818 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +00009819 val |= MSGINT_MODE_ENABLE;
9820 if (tp->irq_cnt > 1)
9821 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009822 if (!tg3_flag(tp, 1SHOT_MSI))
9823 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009824 tw32(MSGINT_MODE, val);
9825 }
9826
Joe Perches63c3a662011-04-26 08:12:10 +00009827 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009828 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
9829 udelay(40);
9830 }
9831
9832 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
9833 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
9834 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
9835 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
9836 WDMAC_MODE_LNGREAD_ENAB);
9837
Joe Perches41535772013-02-16 11:20:04 +00009838 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
9839 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009840 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +00009841 (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 ||
9842 tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009843 /* nothing */
9844 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009845 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009846 val |= WDMAC_MODE_RX_ACCEL;
9847 }
9848 }
9849
Michael Chand9ab5ad12006-03-20 22:27:35 -08009850 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00009851 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07009852 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08009853
Joe Perches41535772013-02-16 11:20:04 +00009854 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson788a0352009-11-02 14:26:03 +00009855 val |= WDMAC_MODE_BURST_ALL_DATA;
9856
Linus Torvalds1da177e2005-04-16 15:20:36 -07009857 tw32_f(WDMAC_MODE, val);
9858 udelay(40);
9859
Joe Perches63c3a662011-04-26 08:12:10 +00009860 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07009861 u16 pcix_cmd;
9862
9863 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9864 &pcix_cmd);
Joe Perches41535772013-02-16 11:20:04 +00009865 if (tg3_asic_rev(tp) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07009866 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
9867 pcix_cmd |= PCI_X_CMD_READ_2K;
Joe Perches41535772013-02-16 11:20:04 +00009868 } else if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07009869 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
9870 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009871 }
Matt Carlson9974a352007-10-07 23:27:28 -07009872 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9873 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009874 }
9875
9876 tw32_f(RDMAC_MODE, rdmac_mode);
9877 udelay(40);
9878
Joe Perches41535772013-02-16 11:20:04 +00009879 if (tg3_asic_rev(tp) == ASIC_REV_5719) {
Michael Chan091f0ea2012-07-29 19:15:43 +00009880 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
9881 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
9882 break;
9883 }
9884 if (i < TG3_NUM_RDMA_CHANNELS) {
9885 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
9886 val |= TG3_LSO_RD_DMA_TX_LENGTH_WA;
9887 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
9888 tg3_flag_set(tp, 5719_RDMA_BUG);
9889 }
9890 }
9891
Linus Torvalds1da177e2005-04-16 15:20:36 -07009892 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009893 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009894 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07009895
Joe Perches41535772013-02-16 11:20:04 +00009896 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson9936bcf2007-10-10 18:03:07 -07009897 tw32(SNDDATAC_MODE,
9898 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
9899 else
9900 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
9901
Linus Torvalds1da177e2005-04-16 15:20:36 -07009902 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
9903 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009904 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00009905 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009906 val |= RCVDBDI_MODE_LRG_RING_SZ;
9907 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009908 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009909 if (tg3_flag(tp, HW_TSO_1) ||
9910 tg3_flag(tp, HW_TSO_2) ||
9911 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009912 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009913 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009914 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009915 val |= SNDBDI_MODE_MULTI_TXQ_EN;
9916 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009917 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
9918
Joe Perches41535772013-02-16 11:20:04 +00009919 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009920 err = tg3_load_5701_a0_firmware_fix(tp);
9921 if (err)
9922 return err;
9923 }
9924
Nithin Sujirc4dab502013-03-06 17:02:34 +00009925 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
9926 /* Ignore any errors for the firmware download. If download
9927 * fails, the device will operate with EEE disabled
9928 */
9929 tg3_load_57766_firmware(tp);
9930 }
9931
Joe Perches63c3a662011-04-26 08:12:10 +00009932 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009933 err = tg3_load_tso_firmware(tp);
9934 if (err)
9935 return err;
9936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009937
9938 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009939
Joe Perches63c3a662011-04-26 08:12:10 +00009940 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +00009941 tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonb1d05212010-06-05 17:24:31 +00009942 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009943
Joe Perches41535772013-02-16 11:20:04 +00009944 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9945 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00009946 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
9947 tp->tx_mode &= ~val;
9948 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
9949 }
9950
Linus Torvalds1da177e2005-04-16 15:20:36 -07009951 tw32_f(MAC_TX_MODE, tp->tx_mode);
9952 udelay(100);
9953
Joe Perches63c3a662011-04-26 08:12:10 +00009954 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009955 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009956
9957 /* Setup the "secret" hash key. */
9958 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
9959 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
9960 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
9961 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
9962 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
9963 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
9964 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
9965 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
9966 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
9967 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
9968 }
9969
Linus Torvalds1da177e2005-04-16 15:20:36 -07009970 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009971 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08009972 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
9973
Joe Perches63c3a662011-04-26 08:12:10 +00009974 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009975 tp->rx_mode |= RX_MODE_RSS_ENABLE |
9976 RX_MODE_RSS_ITBL_HASH_BITS_7 |
9977 RX_MODE_RSS_IPV6_HASH_EN |
9978 RX_MODE_RSS_TCP_IPV6_HASH_EN |
9979 RX_MODE_RSS_IPV4_HASH_EN |
9980 RX_MODE_RSS_TCP_IPV4_HASH_EN;
9981
Linus Torvalds1da177e2005-04-16 15:20:36 -07009982 tw32_f(MAC_RX_MODE, tp->rx_mode);
9983 udelay(10);
9984
Linus Torvalds1da177e2005-04-16 15:20:36 -07009985 tw32(MAC_LED_CTRL, tp->led_ctrl);
9986
9987 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009988 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009989 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9990 udelay(10);
9991 }
9992 tw32_f(MAC_RX_MODE, tp->rx_mode);
9993 udelay(10);
9994
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009995 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +00009996 if ((tg3_asic_rev(tp) == ASIC_REV_5704) &&
9997 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009998 /* Set drive transmission level to 1.2V */
9999 /* only if the signal pre-emphasis bit is not set */
10000 val = tr32(MAC_SERDES_CFG);
10001 val &= 0xfffff000;
10002 val |= 0x880;
10003 tw32(MAC_SERDES_CFG, val);
10004 }
Joe Perches41535772013-02-16 11:20:04 +000010005 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010006 tw32(MAC_SERDES_CFG, 0x616000);
10007 }
10008
10009 /* Prevent chip from dropping frames when flow control
10010 * is enabled.
10011 */
Matt Carlson55086ad2011-12-14 11:09:59 +000010012 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +000010013 val = 1;
10014 else
10015 val = 2;
10016 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010017
Joe Perches41535772013-02-16 11:20:04 +000010018 if (tg3_asic_rev(tp) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010019 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010020 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +000010021 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010022 }
10023
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010024 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010025 tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -080010026 u32 tmp;
10027
10028 tmp = tr32(SERDES_RX_CTRL);
10029 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
10030 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
10031 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
10032 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10033 }
10034
Joe Perches63c3a662011-04-26 08:12:10 +000010035 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010036 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +000010037 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010038
Matt Carlsondd477002008-05-25 23:45:58 -070010039 err = tg3_setup_phy(tp, 0);
10040 if (err)
10041 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010043 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
10044 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -070010045 u32 tmp;
10046
10047 /* Clear CRC stats. */
10048 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
10049 tg3_writephy(tp, MII_TG3_TEST1,
10050 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010051 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -070010052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010053 }
10054 }
10055
10056 __tg3_set_rx_mode(tp->dev);
10057
10058 /* Initialize receive rules. */
10059 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
10060 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
10061 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
10062 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
10063
Joe Perches63c3a662011-04-26 08:12:10 +000010064 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010065 limit = 8;
10066 else
10067 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +000010068 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010069 limit -= 4;
10070 switch (limit) {
10071 case 16:
10072 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
10073 case 15:
10074 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
10075 case 14:
10076 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
10077 case 13:
10078 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
10079 case 12:
10080 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
10081 case 11:
10082 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
10083 case 10:
10084 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
10085 case 9:
10086 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
10087 case 8:
10088 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
10089 case 7:
10090 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
10091 case 6:
10092 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
10093 case 5:
10094 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
10095 case 4:
10096 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
10097 case 3:
10098 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
10099 case 2:
10100 case 1:
10101
10102 default:
10103 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070010104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010105
Joe Perches63c3a662011-04-26 08:12:10 +000010106 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -070010107 /* Write our heartbeat update interval to APE. */
10108 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
10109 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -070010110
Linus Torvalds1da177e2005-04-16 15:20:36 -070010111 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
10112
Linus Torvalds1da177e2005-04-16 15:20:36 -070010113 return 0;
10114}
10115
10116/* Called at device open time to get the chip ready for
10117 * packet processing. Invoked with tp->lock held.
10118 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -070010119static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010120{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010121 tg3_switch_clocks(tp);
10122
10123 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
10124
Matt Carlson2f751b62008-08-04 23:17:34 -070010125 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010126}
10127
Michael Chanaed93e02012-07-16 16:24:02 +000010128static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
10129{
10130 int i;
10131
10132 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
10133 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
10134
10135 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
10136 off += len;
10137
10138 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
10139 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
10140 memset(ocir, 0, TG3_OCIR_LEN);
10141 }
10142}
10143
10144/* sysfs attributes for hwmon */
10145static ssize_t tg3_show_temp(struct device *dev,
10146 struct device_attribute *devattr, char *buf)
10147{
10148 struct pci_dev *pdev = to_pci_dev(dev);
10149 struct net_device *netdev = pci_get_drvdata(pdev);
10150 struct tg3 *tp = netdev_priv(netdev);
10151 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
10152 u32 temperature;
10153
10154 spin_lock_bh(&tp->lock);
10155 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
10156 sizeof(temperature));
10157 spin_unlock_bh(&tp->lock);
10158 return sprintf(buf, "%u\n", temperature);
10159}
10160
10161
10162static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
10163 TG3_TEMP_SENSOR_OFFSET);
10164static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
10165 TG3_TEMP_CAUTION_OFFSET);
10166static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
10167 TG3_TEMP_MAX_OFFSET);
10168
10169static struct attribute *tg3_attributes[] = {
10170 &sensor_dev_attr_temp1_input.dev_attr.attr,
10171 &sensor_dev_attr_temp1_crit.dev_attr.attr,
10172 &sensor_dev_attr_temp1_max.dev_attr.attr,
10173 NULL
10174};
10175
10176static const struct attribute_group tg3_group = {
10177 .attrs = tg3_attributes,
10178};
10179
Michael Chanaed93e02012-07-16 16:24:02 +000010180static void tg3_hwmon_close(struct tg3 *tp)
10181{
Michael Chanaed93e02012-07-16 16:24:02 +000010182 if (tp->hwmon_dev) {
10183 hwmon_device_unregister(tp->hwmon_dev);
10184 tp->hwmon_dev = NULL;
10185 sysfs_remove_group(&tp->pdev->dev.kobj, &tg3_group);
10186 }
Michael Chanaed93e02012-07-16 16:24:02 +000010187}
10188
10189static void tg3_hwmon_open(struct tg3 *tp)
10190{
Michael Chanaed93e02012-07-16 16:24:02 +000010191 int i, err;
10192 u32 size = 0;
10193 struct pci_dev *pdev = tp->pdev;
10194 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
10195
10196 tg3_sd_scan_scratchpad(tp, ocirs);
10197
10198 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
10199 if (!ocirs[i].src_data_length)
10200 continue;
10201
10202 size += ocirs[i].src_hdr_length;
10203 size += ocirs[i].src_data_length;
10204 }
10205
10206 if (!size)
10207 return;
10208
10209 /* Register hwmon sysfs hooks */
10210 err = sysfs_create_group(&pdev->dev.kobj, &tg3_group);
10211 if (err) {
10212 dev_err(&pdev->dev, "Cannot create sysfs group, aborting\n");
10213 return;
10214 }
10215
10216 tp->hwmon_dev = hwmon_device_register(&pdev->dev);
10217 if (IS_ERR(tp->hwmon_dev)) {
10218 tp->hwmon_dev = NULL;
10219 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
10220 sysfs_remove_group(&pdev->dev.kobj, &tg3_group);
10221 }
Michael Chanaed93e02012-07-16 16:24:02 +000010222}
10223
10224
Linus Torvalds1da177e2005-04-16 15:20:36 -070010225#define TG3_STAT_ADD32(PSTAT, REG) \
10226do { u32 __val = tr32(REG); \
10227 (PSTAT)->low += __val; \
10228 if ((PSTAT)->low < __val) \
10229 (PSTAT)->high += 1; \
10230} while (0)
10231
10232static void tg3_periodic_fetch_stats(struct tg3 *tp)
10233{
10234 struct tg3_hw_stats *sp = tp->hw_stats;
10235
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010236 if (!tp->link_up)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010237 return;
10238
10239 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
10240 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
10241 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
10242 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
10243 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
10244 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
10245 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
10246 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
10247 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
10248 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
10249 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
10250 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
10251 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Michael Chan091f0ea2012-07-29 19:15:43 +000010252 if (unlikely(tg3_flag(tp, 5719_RDMA_BUG) &&
10253 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
10254 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
10255 u32 val;
10256
10257 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
10258 val &= ~TG3_LSO_RD_DMA_TX_LENGTH_WA;
10259 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
10260 tg3_flag_clear(tp, 5719_RDMA_BUG);
10261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262
10263 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
10264 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
10265 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
10266 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
10267 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
10268 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
10269 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
10270 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
10271 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
10272 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
10273 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
10274 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
10275 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
10276 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -070010277
10278 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Joe Perches41535772013-02-16 11:20:04 +000010279 if (tg3_asic_rev(tp) != ASIC_REV_5717 &&
10280 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0 &&
10281 tg3_chip_rev_id(tp) != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000010282 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
10283 } else {
10284 u32 val = tr32(HOSTCC_FLOW_ATTN);
10285 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
10286 if (val) {
10287 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
10288 sp->rx_discards.low += val;
10289 if (sp->rx_discards.low < val)
10290 sp->rx_discards.high += 1;
10291 }
10292 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
10293 }
Michael Chan463d3052006-05-22 16:36:27 -070010294 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010295}
10296
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010297static void tg3_chk_missed_msi(struct tg3 *tp)
10298{
10299 u32 i;
10300
10301 for (i = 0; i < tp->irq_cnt; i++) {
10302 struct tg3_napi *tnapi = &tp->napi[i];
10303
10304 if (tg3_has_work(tnapi)) {
10305 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
10306 tnapi->last_tx_cons == tnapi->tx_cons) {
10307 if (tnapi->chk_msi_cnt < 1) {
10308 tnapi->chk_msi_cnt++;
10309 return;
10310 }
Matt Carlson7f230732011-08-31 11:44:48 +000010311 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010312 }
10313 }
10314 tnapi->chk_msi_cnt = 0;
10315 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
10316 tnapi->last_tx_cons = tnapi->tx_cons;
10317 }
10318}
10319
Linus Torvalds1da177e2005-04-16 15:20:36 -070010320static void tg3_timer(unsigned long __opaque)
10321{
10322 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010323
Matt Carlson5b190622011-11-04 09:15:04 +000010324 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -080010325 goto restart_timer;
10326
David S. Millerf47c11e2005-06-24 20:18:35 -070010327 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010328
Joe Perches41535772013-02-16 11:20:04 +000010329 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000010330 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010331 tg3_chk_missed_msi(tp);
10332
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000010333 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
10334 /* BCM4785: Flush posted writes from GbE to host memory. */
10335 tr32(HOSTCC_MODE);
10336 }
10337
Joe Perches63c3a662011-04-26 08:12:10 +000010338 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070010339 /* All of this garbage is because when using non-tagged
10340 * IRQ status the mailbox/status_block protocol the chip
10341 * uses with the cpu is race prone.
10342 */
Matt Carlson898a56f2009-08-28 14:02:40 +000010343 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -070010344 tw32(GRC_LOCAL_CTRL,
10345 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
10346 } else {
10347 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010348 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -070010349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010350
David S. Millerfac9b832005-05-18 22:46:34 -070010351 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010352 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +000010353 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +000010354 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -070010355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010356 }
10357
Linus Torvalds1da177e2005-04-16 15:20:36 -070010358 /* This part only runs once per second. */
10359 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010360 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -070010361 tg3_periodic_fetch_stats(tp);
10362
Matt Carlsonb0c59432011-05-19 12:12:48 +000010363 if (tp->setlpicnt && !--tp->setlpicnt)
10364 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +000010365
Joe Perches63c3a662011-04-26 08:12:10 +000010366 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010367 u32 mac_stat;
10368 int phy_event;
10369
10370 mac_stat = tr32(MAC_STATUS);
10371
10372 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010373 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010374 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
10375 phy_event = 1;
10376 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
10377 phy_event = 1;
10378
10379 if (phy_event)
10380 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000010381 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010382 u32 mac_stat = tr32(MAC_STATUS);
10383 int need_setup = 0;
10384
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010385 if (tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010386 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
10387 need_setup = 1;
10388 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010389 if (!tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010390 (mac_stat & (MAC_STATUS_PCS_SYNCED |
10391 MAC_STATUS_SIGNAL_DET))) {
10392 need_setup = 1;
10393 }
10394 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -070010395 if (!tp->serdes_counter) {
10396 tw32_f(MAC_MODE,
10397 (tp->mac_mode &
10398 ~MAC_MODE_PORT_MODE_MASK));
10399 udelay(40);
10400 tw32_f(MAC_MODE, tp->mac_mode);
10401 udelay(40);
10402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010403 tg3_setup_phy(tp, 0);
10404 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010405 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010406 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -070010407 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +000010408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010409
10410 tp->timer_counter = tp->timer_multiplier;
10411 }
10412
Michael Chan130b8e42006-09-27 16:00:40 -070010413 /* Heartbeat is only sent once every 2 seconds.
10414 *
10415 * The heartbeat is to tell the ASF firmware that the host
10416 * driver is still alive. In the event that the OS crashes,
10417 * ASF needs to reset the hardware to free up the FIFO space
10418 * that may be filled with rx packets destined for the host.
10419 * If the FIFO is full, ASF will no longer function properly.
10420 *
10421 * Unintended resets have been reported on real time kernels
10422 * where the timer doesn't run on time. Netpoll will also have
10423 * same problem.
10424 *
10425 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
10426 * to check the ring condition when the heartbeat is expiring
10427 * before doing the reset. This will prevent most unintended
10428 * resets.
10429 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010430 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010431 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -070010432 tg3_wait_for_event_ack(tp);
10433
Michael Chanbbadf502006-04-06 21:46:34 -070010434 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -070010435 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -070010436 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010437 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
10438 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -070010439
10440 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010441 }
10442 tp->asf_counter = tp->asf_multiplier;
10443 }
10444
David S. Millerf47c11e2005-06-24 20:18:35 -070010445 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010446
Michael Chanf475f162006-03-27 23:20:14 -080010447restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -070010448 tp->timer.expires = jiffies + tp->timer_offset;
10449 add_timer(&tp->timer);
10450}
10451
Bill Pemberton229b1ad2012-12-03 09:22:59 -050010452static void tg3_timer_init(struct tg3 *tp)
Matt Carlson21f76382012-02-22 12:35:21 +000010453{
10454 if (tg3_flag(tp, TAGGED_STATUS) &&
Joe Perches41535772013-02-16 11:20:04 +000010455 tg3_asic_rev(tp) != ASIC_REV_5717 &&
Matt Carlson21f76382012-02-22 12:35:21 +000010456 !tg3_flag(tp, 57765_CLASS))
10457 tp->timer_offset = HZ;
10458 else
10459 tp->timer_offset = HZ / 10;
10460
10461 BUG_ON(tp->timer_offset > HZ);
10462
10463 tp->timer_multiplier = (HZ / tp->timer_offset);
10464 tp->asf_multiplier = (HZ / tp->timer_offset) *
10465 TG3_FW_UPDATE_FREQ_SEC;
10466
10467 init_timer(&tp->timer);
10468 tp->timer.data = (unsigned long) tp;
10469 tp->timer.function = tg3_timer;
10470}
10471
10472static void tg3_timer_start(struct tg3 *tp)
10473{
10474 tp->asf_counter = tp->asf_multiplier;
10475 tp->timer_counter = tp->timer_multiplier;
10476
10477 tp->timer.expires = jiffies + tp->timer_offset;
10478 add_timer(&tp->timer);
10479}
10480
10481static void tg3_timer_stop(struct tg3 *tp)
10482{
10483 del_timer_sync(&tp->timer);
10484}
10485
10486/* Restart hardware after configuration changes, self-test, etc.
10487 * Invoked with tp->lock held.
10488 */
10489static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
10490 __releases(tp->lock)
10491 __acquires(tp->lock)
10492{
10493 int err;
10494
10495 err = tg3_init_hw(tp, reset_phy);
10496 if (err) {
10497 netdev_err(tp->dev,
10498 "Failed to re-initialize device, aborting\n");
10499 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10500 tg3_full_unlock(tp);
10501 tg3_timer_stop(tp);
10502 tp->irq_sync = 0;
10503 tg3_napi_enable(tp);
10504 dev_close(tp->dev);
10505 tg3_full_lock(tp, 0);
10506 }
10507 return err;
10508}
10509
10510static void tg3_reset_task(struct work_struct *work)
10511{
10512 struct tg3 *tp = container_of(work, struct tg3, reset_task);
10513 int err;
10514
10515 tg3_full_lock(tp, 0);
10516
10517 if (!netif_running(tp->dev)) {
10518 tg3_flag_clear(tp, RESET_TASK_PENDING);
10519 tg3_full_unlock(tp);
10520 return;
10521 }
10522
10523 tg3_full_unlock(tp);
10524
10525 tg3_phy_stop(tp);
10526
10527 tg3_netif_stop(tp);
10528
10529 tg3_full_lock(tp, 1);
10530
10531 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
10532 tp->write32_tx_mbox = tg3_write32_tx_mbox;
10533 tp->write32_rx_mbox = tg3_write_flush_reg32;
10534 tg3_flag_set(tp, MBOX_WRITE_REORDER);
10535 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
10536 }
10537
10538 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
10539 err = tg3_init_hw(tp, 1);
10540 if (err)
10541 goto out;
10542
10543 tg3_netif_start(tp);
10544
10545out:
10546 tg3_full_unlock(tp);
10547
10548 if (!err)
10549 tg3_phy_start(tp);
10550
10551 tg3_flag_clear(tp, RESET_TASK_PENDING);
10552}
10553
Matt Carlson4f125f42009-09-01 12:55:02 +000010554static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -080010555{
David Howells7d12e782006-10-05 14:55:46 +010010556 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010557 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000010558 char *name;
10559 struct tg3_napi *tnapi = &tp->napi[irq_num];
10560
10561 if (tp->irq_cnt == 1)
10562 name = tp->dev->name;
10563 else {
10564 name = &tnapi->irq_lbl[0];
10565 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
10566 name[IFNAMSIZ-1] = 0;
10567 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010568
Joe Perches63c3a662011-04-26 08:12:10 +000010569 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080010570 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000010571 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010572 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010573 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010574 } else {
10575 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000010576 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010577 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010578 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010579 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010580
10581 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010582}
10583
Michael Chan79381092005-04-21 17:13:59 -070010584static int tg3_test_interrupt(struct tg3 *tp)
10585{
Matt Carlson09943a12009-08-28 14:01:57 +000010586 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070010587 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070010588 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010589 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070010590
Michael Chand4bc3922005-05-29 14:59:20 -070010591 if (!netif_running(dev))
10592 return -ENODEV;
10593
Michael Chan79381092005-04-21 17:13:59 -070010594 tg3_disable_ints(tp);
10595
Matt Carlson4f125f42009-09-01 12:55:02 +000010596 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010597
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010598 /*
10599 * Turn off MSI one shot mode. Otherwise this test has no
10600 * observable way to know whether the interrupt was delivered.
10601 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010602 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010603 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
10604 tw32(MSGINT_MODE, val);
10605 }
10606
Matt Carlson4f125f42009-09-01 12:55:02 +000010607 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000010608 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010609 if (err)
10610 return err;
10611
Matt Carlson898a56f2009-08-28 14:02:40 +000010612 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070010613 tg3_enable_ints(tp);
10614
10615 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010616 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070010617
10618 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070010619 u32 int_mbox, misc_host_ctrl;
10620
Matt Carlson898a56f2009-08-28 14:02:40 +000010621 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070010622 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
10623
10624 if ((int_mbox != 0) ||
10625 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
10626 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070010627 break;
Michael Chanb16250e2006-09-27 16:10:14 -070010628 }
10629
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010630 if (tg3_flag(tp, 57765_PLUS) &&
10631 tnapi->hw_status->status_tag != tnapi->last_tag)
10632 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
10633
Michael Chan79381092005-04-21 17:13:59 -070010634 msleep(10);
10635 }
10636
10637 tg3_disable_ints(tp);
10638
Matt Carlson4f125f42009-09-01 12:55:02 +000010639 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010640
Matt Carlson4f125f42009-09-01 12:55:02 +000010641 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010642
10643 if (err)
10644 return err;
10645
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010646 if (intr_ok) {
10647 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000010648 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010649 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
10650 tw32(MSGINT_MODE, val);
10651 }
Michael Chan79381092005-04-21 17:13:59 -070010652 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010653 }
Michael Chan79381092005-04-21 17:13:59 -070010654
10655 return -EIO;
10656}
10657
10658/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
10659 * successfully restored
10660 */
10661static int tg3_test_msi(struct tg3 *tp)
10662{
Michael Chan79381092005-04-21 17:13:59 -070010663 int err;
10664 u16 pci_cmd;
10665
Joe Perches63c3a662011-04-26 08:12:10 +000010666 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070010667 return 0;
10668
10669 /* Turn off SERR reporting in case MSI terminates with Master
10670 * Abort.
10671 */
10672 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
10673 pci_write_config_word(tp->pdev, PCI_COMMAND,
10674 pci_cmd & ~PCI_COMMAND_SERR);
10675
10676 err = tg3_test_interrupt(tp);
10677
10678 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
10679
10680 if (!err)
10681 return 0;
10682
10683 /* other failures */
10684 if (err != -EIO)
10685 return err;
10686
10687 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010688 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
10689 "to INTx mode. Please report this failure to the PCI "
10690 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070010691
Matt Carlson4f125f42009-09-01 12:55:02 +000010692 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000010693
Michael Chan79381092005-04-21 17:13:59 -070010694 pci_disable_msi(tp->pdev);
10695
Joe Perches63c3a662011-04-26 08:12:10 +000010696 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000010697 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070010698
Matt Carlson4f125f42009-09-01 12:55:02 +000010699 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010700 if (err)
10701 return err;
10702
10703 /* Need to reset the chip because the MSI cycle may have terminated
10704 * with Master Abort.
10705 */
David S. Millerf47c11e2005-06-24 20:18:35 -070010706 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010707
Michael Chan944d9802005-05-29 14:57:48 -070010708 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -070010709 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010710
David S. Millerf47c11e2005-06-24 20:18:35 -070010711 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010712
10713 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000010714 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070010715
10716 return err;
10717}
10718
Matt Carlson9e9fd122009-01-19 16:57:45 -080010719static int tg3_request_firmware(struct tg3 *tp)
10720{
Nithin Sujir77997ea2013-03-06 17:02:32 +000010721 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson9e9fd122009-01-19 16:57:45 -080010722
10723 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010724 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
10725 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010726 return -ENOENT;
10727 }
10728
Nithin Sujir77997ea2013-03-06 17:02:32 +000010729 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson9e9fd122009-01-19 16:57:45 -080010730
10731 /* Firmware blob starts with version numbers, followed by
10732 * start address and _full_ length including BSS sections
10733 * (which must be longer than the actual data, of course
10734 */
10735
Nithin Sujir77997ea2013-03-06 17:02:32 +000010736 tp->fw_len = be32_to_cpu(fw_hdr->len); /* includes bss */
10737 if (tp->fw_len < (tp->fw->size - TG3_FW_HDR_LEN)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010738 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
10739 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010740 release_firmware(tp->fw);
10741 tp->fw = NULL;
10742 return -EINVAL;
10743 }
10744
10745 /* We no longer need firmware; we have it. */
10746 tp->fw_needed = NULL;
10747 return 0;
10748}
10749
Michael Chan91024262012-09-28 07:12:38 +000010750static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000010751{
Michael Chan91024262012-09-28 07:12:38 +000010752 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000010753
Michael Chan91024262012-09-28 07:12:38 +000010754 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000010755 /* We want as many rx rings enabled as there are cpus.
10756 * In multiqueue MSI-X mode, the first MSI-X vector
10757 * only deals with link interrupts, etc, so we add
10758 * one to the number of vectors we are requesting.
10759 */
Michael Chan91024262012-09-28 07:12:38 +000010760 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010761 }
Matt Carlson679563f2009-09-01 12:55:46 +000010762
Michael Chan91024262012-09-28 07:12:38 +000010763 return irq_cnt;
10764}
10765
10766static bool tg3_enable_msix(struct tg3 *tp)
10767{
10768 int i, rc;
Michael Chan86449942012-10-02 20:31:14 -070010769 struct msix_entry msix_ent[TG3_IRQ_MAX_VECS];
Michael Chan91024262012-09-28 07:12:38 +000010770
Michael Chan09681692012-09-28 07:12:42 +000010771 tp->txq_cnt = tp->txq_req;
10772 tp->rxq_cnt = tp->rxq_req;
10773 if (!tp->rxq_cnt)
10774 tp->rxq_cnt = netif_get_num_default_rss_queues();
Michael Chan91024262012-09-28 07:12:38 +000010775 if (tp->rxq_cnt > tp->rxq_max)
10776 tp->rxq_cnt = tp->rxq_max;
Michael Chancf6d6ea2012-09-28 07:12:43 +000010777
10778 /* Disable multiple TX rings by default. Simple round-robin hardware
10779 * scheduling of the TX rings can cause starvation of rings with
10780 * small packets when other rings have TSO or jumbo packets.
10781 */
10782 if (!tp->txq_req)
10783 tp->txq_cnt = 1;
Michael Chan91024262012-09-28 07:12:38 +000010784
10785 tp->irq_cnt = tg3_irq_count(tp);
10786
Matt Carlson679563f2009-09-01 12:55:46 +000010787 for (i = 0; i < tp->irq_max; i++) {
10788 msix_ent[i].entry = i;
10789 msix_ent[i].vector = 0;
10790 }
10791
10792 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000010793 if (rc < 0) {
10794 return false;
10795 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +000010796 if (pci_enable_msix(tp->pdev, msix_ent, rc))
10797 return false;
Joe Perches05dbe002010-02-17 19:44:19 +000010798 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
10799 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000010800 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000010801 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000010802 if (tp->txq_cnt)
10803 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000010804 }
10805
10806 for (i = 0; i < tp->irq_max; i++)
10807 tp->napi[i].irq_vec = msix_ent[i].vector;
10808
Michael Chan49a359e2012-09-28 07:12:37 +000010809 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070010810 pci_disable_msix(tp->pdev);
10811 return false;
10812 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000010813
Michael Chan91024262012-09-28 07:12:38 +000010814 if (tp->irq_cnt == 1)
10815 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000010816
Michael Chan91024262012-09-28 07:12:38 +000010817 tg3_flag_set(tp, ENABLE_RSS);
10818
10819 if (tp->txq_cnt > 1)
10820 tg3_flag_set(tp, ENABLE_TSS);
10821
10822 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000010823
Matt Carlson679563f2009-09-01 12:55:46 +000010824 return true;
10825}
10826
Matt Carlson07b01732009-08-28 14:01:15 +000010827static void tg3_ints_init(struct tg3 *tp)
10828{
Joe Perches63c3a662011-04-26 08:12:10 +000010829 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
10830 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000010831 /* All MSI supporting chips should support tagged
10832 * status. Assert that this is the case.
10833 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010834 netdev_warn(tp->dev,
10835 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000010836 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000010837 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010838
Joe Perches63c3a662011-04-26 08:12:10 +000010839 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
10840 tg3_flag_set(tp, USING_MSIX);
10841 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
10842 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000010843
Joe Perches63c3a662011-04-26 08:12:10 +000010844 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000010845 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000010846 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010847 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010848 if (!tg3_flag(tp, 1SHOT_MSI))
10849 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000010850 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
10851 }
10852defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000010853 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000010854 tp->irq_cnt = 1;
10855 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000010856 }
10857
10858 if (tp->irq_cnt == 1) {
10859 tp->txq_cnt = 1;
10860 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070010861 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070010862 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000010863 }
Matt Carlson07b01732009-08-28 14:01:15 +000010864}
10865
10866static void tg3_ints_fini(struct tg3 *tp)
10867{
Joe Perches63c3a662011-04-26 08:12:10 +000010868 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000010869 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000010870 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000010871 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000010872 tg3_flag_clear(tp, USING_MSI);
10873 tg3_flag_clear(tp, USING_MSIX);
10874 tg3_flag_clear(tp, ENABLE_RSS);
10875 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000010876}
10877
Matt Carlsonbe947302012-12-03 19:36:57 +000010878static int tg3_start(struct tg3 *tp, bool reset_phy, bool test_irq,
10879 bool init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010880{
Michael Chand8f4cd32012-09-28 07:12:40 +000010881 struct net_device *dev = tp->dev;
Matt Carlson4f125f42009-09-01 12:55:02 +000010882 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010883
Matt Carlson679563f2009-09-01 12:55:46 +000010884 /*
10885 * Setup interrupts first so we know how
10886 * many NAPI resources to allocate
10887 */
10888 tg3_ints_init(tp);
10889
Matt Carlson90415472011-12-16 13:33:23 +000010890 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010891
Linus Torvalds1da177e2005-04-16 15:20:36 -070010892 /* The placement of this call is tied
10893 * to the setup and use of Host TX descriptors.
10894 */
10895 err = tg3_alloc_consistent(tp);
10896 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010897 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010898
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010899 tg3_napi_init(tp);
10900
Matt Carlsonfed97812009-09-01 13:10:19 +000010901 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070010902
Matt Carlson4f125f42009-09-01 12:55:02 +000010903 for (i = 0; i < tp->irq_cnt; i++) {
10904 struct tg3_napi *tnapi = &tp->napi[i];
10905 err = tg3_request_irq(tp, i);
10906 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000010907 for (i--; i >= 0; i--) {
10908 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000010909 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000010910 }
10911 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000010912 }
10913 }
Matt Carlson07b01732009-08-28 14:01:15 +000010914
David S. Millerf47c11e2005-06-24 20:18:35 -070010915 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010916
Michael Chand8f4cd32012-09-28 07:12:40 +000010917 err = tg3_init_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010918 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070010919 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010920 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010921 }
10922
David S. Millerf47c11e2005-06-24 20:18:35 -070010923 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010924
Matt Carlson07b01732009-08-28 14:01:15 +000010925 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010926 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010927
Michael Chand8f4cd32012-09-28 07:12:40 +000010928 if (test_irq && tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070010929 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070010930
Michael Chan79381092005-04-21 17:13:59 -070010931 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010932 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070010933 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070010934 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070010935 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010936
Matt Carlson679563f2009-09-01 12:55:46 +000010937 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070010938 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010939
Joe Perches63c3a662011-04-26 08:12:10 +000010940 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010941 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010942
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010943 tw32(PCIE_TRANSACTION_CFG,
10944 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010945 }
Michael Chan79381092005-04-21 17:13:59 -070010946 }
10947
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010948 tg3_phy_start(tp);
10949
Michael Chanaed93e02012-07-16 16:24:02 +000010950 tg3_hwmon_open(tp);
10951
David S. Millerf47c11e2005-06-24 20:18:35 -070010952 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010953
Matt Carlson21f76382012-02-22 12:35:21 +000010954 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010955 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010956 tg3_enable_ints(tp);
10957
Matt Carlsonbe947302012-12-03 19:36:57 +000010958 if (init)
10959 tg3_ptp_init(tp);
10960 else
10961 tg3_ptp_resume(tp);
10962
10963
David S. Millerf47c11e2005-06-24 20:18:35 -070010964 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010965
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010966 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010967
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000010968 /*
10969 * Reset loopback feature if it was turned on while the device was down
10970 * make sure that it's installed properly now.
10971 */
10972 if (dev->features & NETIF_F_LOOPBACK)
10973 tg3_set_loopback(dev, dev->features);
10974
Linus Torvalds1da177e2005-04-16 15:20:36 -070010975 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000010976
Matt Carlson679563f2009-09-01 12:55:46 +000010977err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000010978 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10979 struct tg3_napi *tnapi = &tp->napi[i];
10980 free_irq(tnapi->irq_vec, tnapi);
10981 }
Matt Carlson07b01732009-08-28 14:01:15 +000010982
Matt Carlson679563f2009-09-01 12:55:46 +000010983err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000010984 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010985 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000010986 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000010987
10988err_out1:
10989 tg3_ints_fini(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000010990
Matt Carlson07b01732009-08-28 14:01:15 +000010991 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010992}
10993
Michael Chan65138592012-09-28 07:12:41 +000010994static void tg3_stop(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010995{
Matt Carlson4f125f42009-09-01 12:55:02 +000010996 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010997
Matt Carlsondb219972011-11-04 09:15:03 +000010998 tg3_reset_task_cancel(tp);
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000010999 tg3_netif_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011000
Matt Carlson21f76382012-02-22 12:35:21 +000011001 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011002
Michael Chanaed93e02012-07-16 16:24:02 +000011003 tg3_hwmon_close(tp);
11004
Matt Carlson24bb4fb2009-10-05 17:55:29 +000011005 tg3_phy_stop(tp);
11006
David S. Millerf47c11e2005-06-24 20:18:35 -070011007 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011008
11009 tg3_disable_ints(tp);
11010
Michael Chan944d9802005-05-29 14:57:48 -070011011 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011012 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011013 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011014
David S. Millerf47c11e2005-06-24 20:18:35 -070011015 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011016
Matt Carlson4f125f42009-09-01 12:55:02 +000011017 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11018 struct tg3_napi *tnapi = &tp->napi[i];
11019 free_irq(tnapi->irq_vec, tnapi);
11020 }
Matt Carlson07b01732009-08-28 14:01:15 +000011021
11022 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011023
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011024 tg3_napi_fini(tp);
11025
Linus Torvalds1da177e2005-04-16 15:20:36 -070011026 tg3_free_consistent(tp);
Michael Chan65138592012-09-28 07:12:41 +000011027}
11028
Michael Chand8f4cd32012-09-28 07:12:40 +000011029static int tg3_open(struct net_device *dev)
11030{
11031 struct tg3 *tp = netdev_priv(dev);
11032 int err;
11033
11034 if (tp->fw_needed) {
11035 err = tg3_request_firmware(tp);
Nithin Sujirc4dab502013-03-06 17:02:34 +000011036 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
11037 if (err) {
11038 netdev_warn(tp->dev, "EEE capability disabled\n");
11039 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11040 } else if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
11041 netdev_warn(tp->dev, "EEE capability restored\n");
11042 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
11043 }
11044 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Michael Chand8f4cd32012-09-28 07:12:40 +000011045 if (err)
11046 return err;
11047 } else if (err) {
11048 netdev_warn(tp->dev, "TSO capability disabled\n");
11049 tg3_flag_clear(tp, TSO_CAPABLE);
11050 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
11051 netdev_notice(tp->dev, "TSO capability restored\n");
11052 tg3_flag_set(tp, TSO_CAPABLE);
11053 }
11054 }
11055
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011056 tg3_carrier_off(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011057
11058 err = tg3_power_up(tp);
11059 if (err)
11060 return err;
11061
11062 tg3_full_lock(tp, 0);
11063
11064 tg3_disable_ints(tp);
11065 tg3_flag_clear(tp, INIT_COMPLETE);
11066
11067 tg3_full_unlock(tp);
11068
Matt Carlsonbe947302012-12-03 19:36:57 +000011069 err = tg3_start(tp, true, true, true);
Michael Chand8f4cd32012-09-28 07:12:40 +000011070 if (err) {
11071 tg3_frob_aux_power(tp, false);
11072 pci_set_power_state(tp->pdev, PCI_D3hot);
11073 }
Matt Carlsonbe947302012-12-03 19:36:57 +000011074
Matt Carlson7d41e492012-12-03 19:36:58 +000011075 if (tg3_flag(tp, PTP_CAPABLE)) {
11076 tp->ptp_clock = ptp_clock_register(&tp->ptp_info,
11077 &tp->pdev->dev);
11078 if (IS_ERR(tp->ptp_clock))
11079 tp->ptp_clock = NULL;
11080 }
11081
Linus Torvalds1da177e2005-04-16 15:20:36 -070011082 return err;
11083}
11084
11085static int tg3_close(struct net_device *dev)
11086{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011087 struct tg3 *tp = netdev_priv(dev);
11088
Matt Carlsonbe947302012-12-03 19:36:57 +000011089 tg3_ptp_fini(tp);
11090
Michael Chan65138592012-09-28 07:12:41 +000011091 tg3_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011092
11093 /* Clear stats across close / open calls */
11094 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
11095 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011096
11097 tg3_power_down(tp);
11098
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011099 tg3_carrier_off(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011100
11101 return 0;
11102}
11103
11104static inline u64 get_stat64(tg3_stat64_t *val)
11105{
11106 return ((u64)val->high << 32) | ((u64)val->low);
11107}
11108
11109static u64 tg3_calc_crc_errors(struct tg3 *tp)
11110{
11111 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11112
11113 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000011114 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
11115 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011116 u32 val;
11117
11118 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
11119 tg3_writephy(tp, MII_TG3_TEST1,
11120 val | MII_TG3_TEST1_CRC_EN);
11121 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
11122 } else
11123 val = 0;
11124
11125 tp->phy_crc_errors += val;
11126
11127 return tp->phy_crc_errors;
11128 }
11129
11130 return get_stat64(&hw_stats->rx_fcs_errors);
11131}
11132
11133#define ESTAT_ADD(member) \
11134 estats->member = old_estats->member + \
11135 get_stat64(&hw_stats->member)
11136
11137static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
11138{
11139 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
11140 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11141
11142 ESTAT_ADD(rx_octets);
11143 ESTAT_ADD(rx_fragments);
11144 ESTAT_ADD(rx_ucast_packets);
11145 ESTAT_ADD(rx_mcast_packets);
11146 ESTAT_ADD(rx_bcast_packets);
11147 ESTAT_ADD(rx_fcs_errors);
11148 ESTAT_ADD(rx_align_errors);
11149 ESTAT_ADD(rx_xon_pause_rcvd);
11150 ESTAT_ADD(rx_xoff_pause_rcvd);
11151 ESTAT_ADD(rx_mac_ctrl_rcvd);
11152 ESTAT_ADD(rx_xoff_entered);
11153 ESTAT_ADD(rx_frame_too_long_errors);
11154 ESTAT_ADD(rx_jabbers);
11155 ESTAT_ADD(rx_undersize_packets);
11156 ESTAT_ADD(rx_in_length_errors);
11157 ESTAT_ADD(rx_out_length_errors);
11158 ESTAT_ADD(rx_64_or_less_octet_packets);
11159 ESTAT_ADD(rx_65_to_127_octet_packets);
11160 ESTAT_ADD(rx_128_to_255_octet_packets);
11161 ESTAT_ADD(rx_256_to_511_octet_packets);
11162 ESTAT_ADD(rx_512_to_1023_octet_packets);
11163 ESTAT_ADD(rx_1024_to_1522_octet_packets);
11164 ESTAT_ADD(rx_1523_to_2047_octet_packets);
11165 ESTAT_ADD(rx_2048_to_4095_octet_packets);
11166 ESTAT_ADD(rx_4096_to_8191_octet_packets);
11167 ESTAT_ADD(rx_8192_to_9022_octet_packets);
11168
11169 ESTAT_ADD(tx_octets);
11170 ESTAT_ADD(tx_collisions);
11171 ESTAT_ADD(tx_xon_sent);
11172 ESTAT_ADD(tx_xoff_sent);
11173 ESTAT_ADD(tx_flow_control);
11174 ESTAT_ADD(tx_mac_errors);
11175 ESTAT_ADD(tx_single_collisions);
11176 ESTAT_ADD(tx_mult_collisions);
11177 ESTAT_ADD(tx_deferred);
11178 ESTAT_ADD(tx_excessive_collisions);
11179 ESTAT_ADD(tx_late_collisions);
11180 ESTAT_ADD(tx_collide_2times);
11181 ESTAT_ADD(tx_collide_3times);
11182 ESTAT_ADD(tx_collide_4times);
11183 ESTAT_ADD(tx_collide_5times);
11184 ESTAT_ADD(tx_collide_6times);
11185 ESTAT_ADD(tx_collide_7times);
11186 ESTAT_ADD(tx_collide_8times);
11187 ESTAT_ADD(tx_collide_9times);
11188 ESTAT_ADD(tx_collide_10times);
11189 ESTAT_ADD(tx_collide_11times);
11190 ESTAT_ADD(tx_collide_12times);
11191 ESTAT_ADD(tx_collide_13times);
11192 ESTAT_ADD(tx_collide_14times);
11193 ESTAT_ADD(tx_collide_15times);
11194 ESTAT_ADD(tx_ucast_packets);
11195 ESTAT_ADD(tx_mcast_packets);
11196 ESTAT_ADD(tx_bcast_packets);
11197 ESTAT_ADD(tx_carrier_sense_errors);
11198 ESTAT_ADD(tx_discards);
11199 ESTAT_ADD(tx_errors);
11200
11201 ESTAT_ADD(dma_writeq_full);
11202 ESTAT_ADD(dma_write_prioq_full);
11203 ESTAT_ADD(rxbds_empty);
11204 ESTAT_ADD(rx_discards);
11205 ESTAT_ADD(rx_errors);
11206 ESTAT_ADD(rx_threshold_hit);
11207
11208 ESTAT_ADD(dma_readq_full);
11209 ESTAT_ADD(dma_read_prioq_full);
11210 ESTAT_ADD(tx_comp_queue_full);
11211
11212 ESTAT_ADD(ring_set_send_prod_index);
11213 ESTAT_ADD(ring_status_update);
11214 ESTAT_ADD(nic_irqs);
11215 ESTAT_ADD(nic_avoided_irqs);
11216 ESTAT_ADD(nic_tx_threshold_hit);
11217
Matt Carlson4452d092011-05-19 12:12:51 +000011218 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011219}
11220
Matt Carlson65ec6982012-02-28 23:33:37 +000011221static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011222{
Eric Dumazet511d2222010-07-07 20:44:24 +000011223 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011224 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11225
Linus Torvalds1da177e2005-04-16 15:20:36 -070011226 stats->rx_packets = old_stats->rx_packets +
11227 get_stat64(&hw_stats->rx_ucast_packets) +
11228 get_stat64(&hw_stats->rx_mcast_packets) +
11229 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011230
Linus Torvalds1da177e2005-04-16 15:20:36 -070011231 stats->tx_packets = old_stats->tx_packets +
11232 get_stat64(&hw_stats->tx_ucast_packets) +
11233 get_stat64(&hw_stats->tx_mcast_packets) +
11234 get_stat64(&hw_stats->tx_bcast_packets);
11235
11236 stats->rx_bytes = old_stats->rx_bytes +
11237 get_stat64(&hw_stats->rx_octets);
11238 stats->tx_bytes = old_stats->tx_bytes +
11239 get_stat64(&hw_stats->tx_octets);
11240
11241 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070011242 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011243 stats->tx_errors = old_stats->tx_errors +
11244 get_stat64(&hw_stats->tx_errors) +
11245 get_stat64(&hw_stats->tx_mac_errors) +
11246 get_stat64(&hw_stats->tx_carrier_sense_errors) +
11247 get_stat64(&hw_stats->tx_discards);
11248
11249 stats->multicast = old_stats->multicast +
11250 get_stat64(&hw_stats->rx_mcast_packets);
11251 stats->collisions = old_stats->collisions +
11252 get_stat64(&hw_stats->tx_collisions);
11253
11254 stats->rx_length_errors = old_stats->rx_length_errors +
11255 get_stat64(&hw_stats->rx_frame_too_long_errors) +
11256 get_stat64(&hw_stats->rx_undersize_packets);
11257
11258 stats->rx_over_errors = old_stats->rx_over_errors +
11259 get_stat64(&hw_stats->rxbds_empty);
11260 stats->rx_frame_errors = old_stats->rx_frame_errors +
11261 get_stat64(&hw_stats->rx_align_errors);
11262 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11263 get_stat64(&hw_stats->tx_discards);
11264 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11265 get_stat64(&hw_stats->tx_carrier_sense_errors);
11266
11267 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000011268 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011269
John W. Linville4f63b872005-09-12 14:43:18 -070011270 stats->rx_missed_errors = old_stats->rx_missed_errors +
11271 get_stat64(&hw_stats->rx_discards);
11272
Eric Dumazetb0057c52010-10-10 19:55:52 +000011273 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000011274 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011275}
11276
Linus Torvalds1da177e2005-04-16 15:20:36 -070011277static int tg3_get_regs_len(struct net_device *dev)
11278{
Matt Carlson97bd8e42011-04-13 11:05:04 +000011279 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011280}
11281
11282static void tg3_get_regs(struct net_device *dev,
11283 struct ethtool_regs *regs, void *_p)
11284{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011285 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011286
11287 regs->version = 0;
11288
Matt Carlson97bd8e42011-04-13 11:05:04 +000011289 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011290
Matt Carlson80096062010-08-02 11:26:06 +000011291 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011292 return;
11293
David S. Millerf47c11e2005-06-24 20:18:35 -070011294 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011295
Matt Carlson97bd8e42011-04-13 11:05:04 +000011296 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011297
David S. Millerf47c11e2005-06-24 20:18:35 -070011298 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011299}
11300
11301static int tg3_get_eeprom_len(struct net_device *dev)
11302{
11303 struct tg3 *tp = netdev_priv(dev);
11304
11305 return tp->nvram_size;
11306}
11307
Linus Torvalds1da177e2005-04-16 15:20:36 -070011308static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11309{
11310 struct tg3 *tp = netdev_priv(dev);
11311 int ret;
11312 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080011313 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011314 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011315
Joe Perches63c3a662011-04-26 08:12:10 +000011316 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011317 return -EINVAL;
11318
Matt Carlson80096062010-08-02 11:26:06 +000011319 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011320 return -EAGAIN;
11321
Linus Torvalds1da177e2005-04-16 15:20:36 -070011322 offset = eeprom->offset;
11323 len = eeprom->len;
11324 eeprom->len = 0;
11325
11326 eeprom->magic = TG3_EEPROM_MAGIC;
11327
11328 if (offset & 3) {
11329 /* adjustments to start on required 4 byte boundary */
11330 b_offset = offset & 3;
11331 b_count = 4 - b_offset;
11332 if (b_count > len) {
11333 /* i.e. offset=1 len=2 */
11334 b_count = len;
11335 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000011336 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011337 if (ret)
11338 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000011339 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011340 len -= b_count;
11341 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011342 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011343 }
11344
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011345 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011346 pd = &data[eeprom->len];
11347 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011348 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011349 if (ret) {
11350 eeprom->len += i;
11351 return ret;
11352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011353 memcpy(pd + i, &val, 4);
11354 }
11355 eeprom->len += i;
11356
11357 if (len & 3) {
11358 /* read last bytes not ending on 4 byte boundary */
11359 pd = &data[eeprom->len];
11360 b_count = len & 3;
11361 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011362 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011363 if (ret)
11364 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011365 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011366 eeprom->len += b_count;
11367 }
11368 return 0;
11369}
11370
Linus Torvalds1da177e2005-04-16 15:20:36 -070011371static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11372{
11373 struct tg3 *tp = netdev_priv(dev);
11374 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011375 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011376 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011377 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011378
Matt Carlson80096062010-08-02 11:26:06 +000011379 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011380 return -EAGAIN;
11381
Joe Perches63c3a662011-04-26 08:12:10 +000011382 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000011383 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011384 return -EINVAL;
11385
11386 offset = eeprom->offset;
11387 len = eeprom->len;
11388
11389 if ((b_offset = (offset & 3))) {
11390 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011391 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011392 if (ret)
11393 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011394 len += b_offset;
11395 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070011396 if (len < 4)
11397 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011398 }
11399
11400 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070011401 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011402 /* adjustments to end on required 4 byte boundary */
11403 odd_len = 1;
11404 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011405 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011406 if (ret)
11407 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011408 }
11409
11410 buf = data;
11411 if (b_offset || odd_len) {
11412 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011413 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011414 return -ENOMEM;
11415 if (b_offset)
11416 memcpy(buf, &start, 4);
11417 if (odd_len)
11418 memcpy(buf+len-4, &end, 4);
11419 memcpy(buf + b_offset, data, eeprom->len);
11420 }
11421
11422 ret = tg3_nvram_write_block(tp, offset, len, buf);
11423
11424 if (buf != data)
11425 kfree(buf);
11426
11427 return ret;
11428}
11429
11430static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11431{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011432 struct tg3 *tp = netdev_priv(dev);
11433
Joe Perches63c3a662011-04-26 08:12:10 +000011434 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011435 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011436 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011437 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011438 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11439 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011440 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011441
Linus Torvalds1da177e2005-04-16 15:20:36 -070011442 cmd->supported = (SUPPORTED_Autoneg);
11443
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011444 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011445 cmd->supported |= (SUPPORTED_1000baseT_Half |
11446 SUPPORTED_1000baseT_Full);
11447
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011448 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011449 cmd->supported |= (SUPPORTED_100baseT_Half |
11450 SUPPORTED_100baseT_Full |
11451 SUPPORTED_10baseT_Half |
11452 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080011453 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070011454 cmd->port = PORT_TP;
11455 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011456 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070011457 cmd->port = PORT_FIBRE;
11458 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011459
Linus Torvalds1da177e2005-04-16 15:20:36 -070011460 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000011461 if (tg3_flag(tp, PAUSE_AUTONEG)) {
11462 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
11463 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11464 cmd->advertising |= ADVERTISED_Pause;
11465 } else {
11466 cmd->advertising |= ADVERTISED_Pause |
11467 ADVERTISED_Asym_Pause;
11468 }
11469 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11470 cmd->advertising |= ADVERTISED_Asym_Pause;
11471 }
11472 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011473 if (netif_running(dev) && tp->link_up) {
David Decotigny70739492011-04-27 18:32:40 +000011474 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011475 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000011476 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011477 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
11478 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
11479 cmd->eth_tp_mdix = ETH_TP_MDI_X;
11480 else
11481 cmd->eth_tp_mdix = ETH_TP_MDI;
11482 }
Matt Carlson64c22182010-10-14 10:37:44 +000011483 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000011484 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
11485 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011486 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011487 }
Matt Carlson882e9792009-09-01 13:21:36 +000011488 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011489 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011490 cmd->autoneg = tp->link_config.autoneg;
11491 cmd->maxtxpkt = 0;
11492 cmd->maxrxpkt = 0;
11493 return 0;
11494}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011495
Linus Torvalds1da177e2005-04-16 15:20:36 -070011496static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11497{
11498 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000011499 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011500
Joe Perches63c3a662011-04-26 08:12:10 +000011501 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011502 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011503 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011504 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011505 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11506 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011507 }
11508
Matt Carlson7e5856b2009-02-25 14:23:01 +000011509 if (cmd->autoneg != AUTONEG_ENABLE &&
11510 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070011511 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011512
11513 if (cmd->autoneg == AUTONEG_DISABLE &&
11514 cmd->duplex != DUPLEX_FULL &&
11515 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070011516 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011517
Matt Carlson7e5856b2009-02-25 14:23:01 +000011518 if (cmd->autoneg == AUTONEG_ENABLE) {
11519 u32 mask = ADVERTISED_Autoneg |
11520 ADVERTISED_Pause |
11521 ADVERTISED_Asym_Pause;
11522
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011523 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011524 mask |= ADVERTISED_1000baseT_Half |
11525 ADVERTISED_1000baseT_Full;
11526
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011527 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011528 mask |= ADVERTISED_100baseT_Half |
11529 ADVERTISED_100baseT_Full |
11530 ADVERTISED_10baseT_Half |
11531 ADVERTISED_10baseT_Full |
11532 ADVERTISED_TP;
11533 else
11534 mask |= ADVERTISED_FIBRE;
11535
11536 if (cmd->advertising & ~mask)
11537 return -EINVAL;
11538
11539 mask &= (ADVERTISED_1000baseT_Half |
11540 ADVERTISED_1000baseT_Full |
11541 ADVERTISED_100baseT_Half |
11542 ADVERTISED_100baseT_Full |
11543 ADVERTISED_10baseT_Half |
11544 ADVERTISED_10baseT_Full);
11545
11546 cmd->advertising &= mask;
11547 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011548 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000011549 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011550 return -EINVAL;
11551
11552 if (cmd->duplex != DUPLEX_FULL)
11553 return -EINVAL;
11554 } else {
David Decotigny25db0332011-04-27 18:32:39 +000011555 if (speed != SPEED_100 &&
11556 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011557 return -EINVAL;
11558 }
11559 }
11560
David S. Millerf47c11e2005-06-24 20:18:35 -070011561 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011562
11563 tp->link_config.autoneg = cmd->autoneg;
11564 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070011565 tp->link_config.advertising = (cmd->advertising |
11566 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000011567 tp->link_config.speed = SPEED_UNKNOWN;
11568 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011569 } else {
11570 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000011571 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011572 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011573 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011574
Nithin Sujirce20f162013-04-09 08:48:04 +000011575 tg3_warn_mgmt_link_flap(tp);
11576
Linus Torvalds1da177e2005-04-16 15:20:36 -070011577 if (netif_running(dev))
11578 tg3_setup_phy(tp, 1);
11579
David S. Millerf47c11e2005-06-24 20:18:35 -070011580 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011581
Linus Torvalds1da177e2005-04-16 15:20:36 -070011582 return 0;
11583}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011584
Linus Torvalds1da177e2005-04-16 15:20:36 -070011585static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
11586{
11587 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011588
Rick Jones68aad782011-11-07 13:29:27 +000011589 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
11590 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
11591 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
11592 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011593}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011594
Linus Torvalds1da177e2005-04-16 15:20:36 -070011595static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11596{
11597 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011598
Joe Perches63c3a662011-04-26 08:12:10 +000011599 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070011600 wol->supported = WAKE_MAGIC;
11601 else
11602 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011603 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011604 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011605 wol->wolopts = WAKE_MAGIC;
11606 memset(&wol->sopass, 0, sizeof(wol->sopass));
11607}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011608
Linus Torvalds1da177e2005-04-16 15:20:36 -070011609static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11610{
11611 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011612 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011613
Linus Torvalds1da177e2005-04-16 15:20:36 -070011614 if (wol->wolopts & ~WAKE_MAGIC)
11615 return -EINVAL;
11616 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011617 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011618 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011619
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011620 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
11621
David S. Millerf47c11e2005-06-24 20:18:35 -070011622 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011623 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000011624 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011625 else
Joe Perches63c3a662011-04-26 08:12:10 +000011626 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070011627 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011628
Linus Torvalds1da177e2005-04-16 15:20:36 -070011629 return 0;
11630}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011631
Linus Torvalds1da177e2005-04-16 15:20:36 -070011632static u32 tg3_get_msglevel(struct net_device *dev)
11633{
11634 struct tg3 *tp = netdev_priv(dev);
11635 return tp->msg_enable;
11636}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011637
Linus Torvalds1da177e2005-04-16 15:20:36 -070011638static void tg3_set_msglevel(struct net_device *dev, u32 value)
11639{
11640 struct tg3 *tp = netdev_priv(dev);
11641 tp->msg_enable = value;
11642}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011643
Linus Torvalds1da177e2005-04-16 15:20:36 -070011644static int tg3_nway_reset(struct net_device *dev)
11645{
11646 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011647 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011648
Linus Torvalds1da177e2005-04-16 15:20:36 -070011649 if (!netif_running(dev))
11650 return -EAGAIN;
11651
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011652 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070011653 return -EINVAL;
11654
Nithin Sujirce20f162013-04-09 08:48:04 +000011655 tg3_warn_mgmt_link_flap(tp);
11656
Joe Perches63c3a662011-04-26 08:12:10 +000011657 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011658 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011659 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011660 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011661 } else {
11662 u32 bmcr;
11663
11664 spin_lock_bh(&tp->lock);
11665 r = -EINVAL;
11666 tg3_readphy(tp, MII_BMCR, &bmcr);
11667 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
11668 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011669 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011670 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
11671 BMCR_ANENABLE);
11672 r = 0;
11673 }
11674 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011675 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011676
Linus Torvalds1da177e2005-04-16 15:20:36 -070011677 return r;
11678}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011679
Linus Torvalds1da177e2005-04-16 15:20:36 -070011680static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11681{
11682 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011683
Matt Carlson2c49a442010-09-30 10:34:35 +000011684 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000011685 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000011686 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080011687 else
11688 ering->rx_jumbo_max_pending = 0;
11689
11690 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011691
11692 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000011693 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080011694 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
11695 else
11696 ering->rx_jumbo_pending = 0;
11697
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011698 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011699}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011700
Linus Torvalds1da177e2005-04-16 15:20:36 -070011701static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11702{
11703 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000011704 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011705
Matt Carlson2c49a442010-09-30 10:34:35 +000011706 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
11707 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070011708 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
11709 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011710 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070011711 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011712 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011713
Michael Chanbbe832c2005-06-24 20:20:04 -070011714 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011715 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011716 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011717 irq_sync = 1;
11718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011719
Michael Chanbbe832c2005-06-24 20:20:04 -070011720 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011721
Linus Torvalds1da177e2005-04-16 15:20:36 -070011722 tp->rx_pending = ering->rx_pending;
11723
Joe Perches63c3a662011-04-26 08:12:10 +000011724 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070011725 tp->rx_pending > 63)
11726 tp->rx_pending = 63;
11727 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000011728
Matt Carlson6fd45cb2010-09-15 08:59:57 +000011729 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000011730 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011731
11732 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070011733 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Nithin Sujirf1315d22013-04-09 08:48:03 +000011734 err = tg3_restart_hw(tp, 0);
Michael Chanb9ec6c12006-07-25 16:37:27 -070011735 if (!err)
11736 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011737 }
11738
David S. Millerf47c11e2005-06-24 20:18:35 -070011739 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011740
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011741 if (irq_sync && !err)
11742 tg3_phy_start(tp);
11743
Michael Chanb9ec6c12006-07-25 16:37:27 -070011744 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011745}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011746
Linus Torvalds1da177e2005-04-16 15:20:36 -070011747static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
11748{
11749 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011750
Joe Perches63c3a662011-04-26 08:12:10 +000011751 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080011752
Matt Carlson4a2db502011-12-08 14:40:17 +000011753 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080011754 epause->rx_pause = 1;
11755 else
11756 epause->rx_pause = 0;
11757
Matt Carlson4a2db502011-12-08 14:40:17 +000011758 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080011759 epause->tx_pause = 1;
11760 else
11761 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011762}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011763
Linus Torvalds1da177e2005-04-16 15:20:36 -070011764static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
11765{
11766 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011767 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011768
Nithin Sujirce20f162013-04-09 08:48:04 +000011769 if (tp->link_config.autoneg == AUTONEG_ENABLE)
11770 tg3_warn_mgmt_link_flap(tp);
11771
Joe Perches63c3a662011-04-26 08:12:10 +000011772 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000011773 u32 newadv;
11774 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011775
Matt Carlson27121682010-02-17 15:16:57 +000011776 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011777
Matt Carlson27121682010-02-17 15:16:57 +000011778 if (!(phydev->supported & SUPPORTED_Pause) ||
11779 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000011780 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000011781 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011782
Matt Carlson27121682010-02-17 15:16:57 +000011783 tp->link_config.flowctrl = 0;
11784 if (epause->rx_pause) {
11785 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011786
Matt Carlson27121682010-02-17 15:16:57 +000011787 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080011788 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000011789 newadv = ADVERTISED_Pause;
11790 } else
11791 newadv = ADVERTISED_Pause |
11792 ADVERTISED_Asym_Pause;
11793 } else if (epause->tx_pause) {
11794 tp->link_config.flowctrl |= FLOW_CTRL_TX;
11795 newadv = ADVERTISED_Asym_Pause;
11796 } else
11797 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011798
Matt Carlson27121682010-02-17 15:16:57 +000011799 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000011800 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000011801 else
Joe Perches63c3a662011-04-26 08:12:10 +000011802 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000011803
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011804 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000011805 u32 oldadv = phydev->advertising &
11806 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
11807 if (oldadv != newadv) {
11808 phydev->advertising &=
11809 ~(ADVERTISED_Pause |
11810 ADVERTISED_Asym_Pause);
11811 phydev->advertising |= newadv;
11812 if (phydev->autoneg) {
11813 /*
11814 * Always renegotiate the link to
11815 * inform our link partner of our
11816 * flow control settings, even if the
11817 * flow control is forced. Let
11818 * tg3_adjust_link() do the final
11819 * flow control setup.
11820 */
11821 return phy_start_aneg(phydev);
11822 }
11823 }
11824
11825 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011826 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000011827 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000011828 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000011829 ~(ADVERTISED_Pause |
11830 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000011831 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011832 }
11833 } else {
11834 int irq_sync = 0;
11835
11836 if (netif_running(dev)) {
11837 tg3_netif_stop(tp);
11838 irq_sync = 1;
11839 }
11840
11841 tg3_full_lock(tp, irq_sync);
11842
11843 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000011844 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011845 else
Joe Perches63c3a662011-04-26 08:12:10 +000011846 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011847 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080011848 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011849 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080011850 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011851 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080011852 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011853 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080011854 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011855
11856 if (netif_running(dev)) {
11857 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Nithin Sujirf1315d22013-04-09 08:48:03 +000011858 err = tg3_restart_hw(tp, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011859 if (!err)
11860 tg3_netif_start(tp);
11861 }
11862
11863 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011865
Michael Chanb9ec6c12006-07-25 16:37:27 -070011866 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011867}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011868
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011869static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011870{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011871 switch (sset) {
11872 case ETH_SS_TEST:
11873 return TG3_NUM_TEST;
11874 case ETH_SS_STATS:
11875 return TG3_NUM_STATS;
11876 default:
11877 return -EOPNOTSUPP;
11878 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070011879}
11880
Matt Carlson90415472011-12-16 13:33:23 +000011881static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
11882 u32 *rules __always_unused)
11883{
11884 struct tg3 *tp = netdev_priv(dev);
11885
11886 if (!tg3_flag(tp, SUPPORT_MSIX))
11887 return -EOPNOTSUPP;
11888
11889 switch (info->cmd) {
11890 case ETHTOOL_GRXRINGS:
11891 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000011892 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000011893 else {
11894 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000011895 if (info->data > TG3_RSS_MAX_NUM_QS)
11896 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000011897 }
11898
11899 /* The first interrupt vector only
11900 * handles link interrupts.
11901 */
11902 info->data -= 1;
11903 return 0;
11904
11905 default:
11906 return -EOPNOTSUPP;
11907 }
11908}
11909
11910static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
11911{
11912 u32 size = 0;
11913 struct tg3 *tp = netdev_priv(dev);
11914
11915 if (tg3_flag(tp, SUPPORT_MSIX))
11916 size = TG3_RSS_INDIR_TBL_SIZE;
11917
11918 return size;
11919}
11920
11921static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
11922{
11923 struct tg3 *tp = netdev_priv(dev);
11924 int i;
11925
11926 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11927 indir[i] = tp->rss_ind_tbl[i];
11928
11929 return 0;
11930}
11931
11932static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
11933{
11934 struct tg3 *tp = netdev_priv(dev);
11935 size_t i;
11936
11937 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11938 tp->rss_ind_tbl[i] = indir[i];
11939
11940 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
11941 return 0;
11942
11943 /* It is legal to write the indirection
11944 * table while the device is running.
11945 */
11946 tg3_full_lock(tp, 0);
11947 tg3_rss_write_indir_tbl(tp);
11948 tg3_full_unlock(tp);
11949
11950 return 0;
11951}
11952
Michael Chan09681692012-09-28 07:12:42 +000011953static void tg3_get_channels(struct net_device *dev,
11954 struct ethtool_channels *channel)
11955{
11956 struct tg3 *tp = netdev_priv(dev);
11957 u32 deflt_qs = netif_get_num_default_rss_queues();
11958
11959 channel->max_rx = tp->rxq_max;
11960 channel->max_tx = tp->txq_max;
11961
11962 if (netif_running(dev)) {
11963 channel->rx_count = tp->rxq_cnt;
11964 channel->tx_count = tp->txq_cnt;
11965 } else {
11966 if (tp->rxq_req)
11967 channel->rx_count = tp->rxq_req;
11968 else
11969 channel->rx_count = min(deflt_qs, tp->rxq_max);
11970
11971 if (tp->txq_req)
11972 channel->tx_count = tp->txq_req;
11973 else
11974 channel->tx_count = min(deflt_qs, tp->txq_max);
11975 }
11976}
11977
11978static int tg3_set_channels(struct net_device *dev,
11979 struct ethtool_channels *channel)
11980{
11981 struct tg3 *tp = netdev_priv(dev);
11982
11983 if (!tg3_flag(tp, SUPPORT_MSIX))
11984 return -EOPNOTSUPP;
11985
11986 if (channel->rx_count > tp->rxq_max ||
11987 channel->tx_count > tp->txq_max)
11988 return -EINVAL;
11989
11990 tp->rxq_req = channel->rx_count;
11991 tp->txq_req = channel->tx_count;
11992
11993 if (!netif_running(dev))
11994 return 0;
11995
11996 tg3_stop(tp);
11997
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011998 tg3_carrier_off(tp);
Michael Chan09681692012-09-28 07:12:42 +000011999
Matt Carlsonbe947302012-12-03 19:36:57 +000012000 tg3_start(tp, true, false, false);
Michael Chan09681692012-09-28 07:12:42 +000012001
12002 return 0;
12003}
12004
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012005static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012006{
12007 switch (stringset) {
12008 case ETH_SS_STATS:
12009 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
12010 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070012011 case ETH_SS_TEST:
12012 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
12013 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012014 default:
12015 WARN_ON(1); /* we need a WARN() */
12016 break;
12017 }
12018}
12019
stephen hemminger81b87092011-04-04 08:43:50 +000012020static int tg3_set_phys_id(struct net_device *dev,
12021 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070012022{
12023 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070012024
12025 if (!netif_running(tp->dev))
12026 return -EAGAIN;
12027
stephen hemminger81b87092011-04-04 08:43:50 +000012028 switch (state) {
12029 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000012030 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070012031
stephen hemminger81b87092011-04-04 08:43:50 +000012032 case ETHTOOL_ID_ON:
12033 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12034 LED_CTRL_1000MBPS_ON |
12035 LED_CTRL_100MBPS_ON |
12036 LED_CTRL_10MBPS_ON |
12037 LED_CTRL_TRAFFIC_OVERRIDE |
12038 LED_CTRL_TRAFFIC_BLINK |
12039 LED_CTRL_TRAFFIC_LED);
12040 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012041
stephen hemminger81b87092011-04-04 08:43:50 +000012042 case ETHTOOL_ID_OFF:
12043 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12044 LED_CTRL_TRAFFIC_OVERRIDE);
12045 break;
Michael Chan4009a932005-09-05 17:52:54 -070012046
stephen hemminger81b87092011-04-04 08:43:50 +000012047 case ETHTOOL_ID_INACTIVE:
12048 tw32(MAC_LED_CTRL, tp->led_ctrl);
12049 break;
Michael Chan4009a932005-09-05 17:52:54 -070012050 }
stephen hemminger81b87092011-04-04 08:43:50 +000012051
Michael Chan4009a932005-09-05 17:52:54 -070012052 return 0;
12053}
12054
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012055static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012056 struct ethtool_stats *estats, u64 *tmp_stats)
12057{
12058 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000012059
Matt Carlsonb546e462012-02-13 15:20:09 +000012060 if (tp->hw_stats)
12061 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
12062 else
12063 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012064}
12065
Matt Carlson535a4902011-07-20 10:20:56 +000012066static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000012067{
12068 int i;
12069 __be32 *buf;
12070 u32 offset = 0, len = 0;
12071 u32 magic, val;
12072
Joe Perches63c3a662011-04-26 08:12:10 +000012073 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000012074 return NULL;
12075
12076 if (magic == TG3_EEPROM_MAGIC) {
12077 for (offset = TG3_NVM_DIR_START;
12078 offset < TG3_NVM_DIR_END;
12079 offset += TG3_NVM_DIRENT_SIZE) {
12080 if (tg3_nvram_read(tp, offset, &val))
12081 return NULL;
12082
12083 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
12084 TG3_NVM_DIRTYPE_EXTVPD)
12085 break;
12086 }
12087
12088 if (offset != TG3_NVM_DIR_END) {
12089 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
12090 if (tg3_nvram_read(tp, offset + 4, &offset))
12091 return NULL;
12092
12093 offset = tg3_nvram_logical_addr(tp, offset);
12094 }
12095 }
12096
12097 if (!offset || !len) {
12098 offset = TG3_NVM_VPD_OFF;
12099 len = TG3_NVM_VPD_LEN;
12100 }
12101
12102 buf = kmalloc(len, GFP_KERNEL);
12103 if (buf == NULL)
12104 return NULL;
12105
12106 if (magic == TG3_EEPROM_MAGIC) {
12107 for (i = 0; i < len; i += 4) {
12108 /* The data is in little-endian format in NVRAM.
12109 * Use the big-endian read routines to preserve
12110 * the byte order as it exists in NVRAM.
12111 */
12112 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
12113 goto error;
12114 }
12115 } else {
12116 u8 *ptr;
12117 ssize_t cnt;
12118 unsigned int pos = 0;
12119
12120 ptr = (u8 *)&buf[0];
12121 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
12122 cnt = pci_read_vpd(tp->pdev, pos,
12123 len - pos, ptr);
12124 if (cnt == -ETIMEDOUT || cnt == -EINTR)
12125 cnt = 0;
12126 else if (cnt < 0)
12127 goto error;
12128 }
12129 if (pos != len)
12130 goto error;
12131 }
12132
Matt Carlson535a4902011-07-20 10:20:56 +000012133 *vpdlen = len;
12134
Matt Carlsonc3e94502011-04-13 11:05:08 +000012135 return buf;
12136
12137error:
12138 kfree(buf);
12139 return NULL;
12140}
12141
Michael Chan566f86a2005-05-29 14:56:58 -070012142#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080012143#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
12144#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
12145#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000012146#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
12147#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000012148#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070012149#define NVRAM_SELFBOOT_HW_SIZE 0x20
12150#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070012151
12152static int tg3_test_nvram(struct tg3 *tp)
12153{
Matt Carlson535a4902011-07-20 10:20:56 +000012154 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012155 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012156 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070012157
Joe Perches63c3a662011-04-26 08:12:10 +000012158 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000012159 return 0;
12160
Matt Carlsone4f34112009-02-25 14:25:00 +000012161 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012162 return -EIO;
12163
Michael Chan1b277772006-03-20 22:27:48 -080012164 if (magic == TG3_EEPROM_MAGIC)
12165 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070012166 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080012167 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
12168 TG3_EEPROM_SB_FORMAT_1) {
12169 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
12170 case TG3_EEPROM_SB_REVISION_0:
12171 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
12172 break;
12173 case TG3_EEPROM_SB_REVISION_2:
12174 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
12175 break;
12176 case TG3_EEPROM_SB_REVISION_3:
12177 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
12178 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000012179 case TG3_EEPROM_SB_REVISION_4:
12180 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
12181 break;
12182 case TG3_EEPROM_SB_REVISION_5:
12183 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
12184 break;
12185 case TG3_EEPROM_SB_REVISION_6:
12186 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
12187 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080012188 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000012189 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080012190 }
12191 } else
Michael Chan1b277772006-03-20 22:27:48 -080012192 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070012193 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12194 size = NVRAM_SELFBOOT_HW_SIZE;
12195 else
Michael Chan1b277772006-03-20 22:27:48 -080012196 return -EIO;
12197
12198 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070012199 if (buf == NULL)
12200 return -ENOMEM;
12201
Michael Chan1b277772006-03-20 22:27:48 -080012202 err = -EIO;
12203 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012204 err = tg3_nvram_read_be32(tp, i, &buf[j]);
12205 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070012206 break;
Michael Chan566f86a2005-05-29 14:56:58 -070012207 }
Michael Chan1b277772006-03-20 22:27:48 -080012208 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070012209 goto out;
12210
Michael Chan1b277772006-03-20 22:27:48 -080012211 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000012212 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080012213 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012214 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080012215 u8 *buf8 = (u8 *) buf, csum8 = 0;
12216
Al Virob9fc7dc2007-12-17 22:59:57 -080012217 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080012218 TG3_EEPROM_SB_REVISION_2) {
12219 /* For rev 2, the csum doesn't include the MBA. */
12220 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
12221 csum8 += buf8[i];
12222 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
12223 csum8 += buf8[i];
12224 } else {
12225 for (i = 0; i < size; i++)
12226 csum8 += buf8[i];
12227 }
Michael Chan1b277772006-03-20 22:27:48 -080012228
Adrian Bunkad96b482006-04-05 22:21:04 -070012229 if (csum8 == 0) {
12230 err = 0;
12231 goto out;
12232 }
12233
12234 err = -EIO;
12235 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080012236 }
Michael Chan566f86a2005-05-29 14:56:58 -070012237
Al Virob9fc7dc2007-12-17 22:59:57 -080012238 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012239 TG3_EEPROM_MAGIC_HW) {
12240 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000012241 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070012242 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070012243
12244 /* Separate the parity bits and the data bytes. */
12245 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
12246 if ((i == 0) || (i == 8)) {
12247 int l;
12248 u8 msk;
12249
12250 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
12251 parity[k++] = buf8[i] & msk;
12252 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000012253 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070012254 int l;
12255 u8 msk;
12256
12257 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
12258 parity[k++] = buf8[i] & msk;
12259 i++;
12260
12261 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
12262 parity[k++] = buf8[i] & msk;
12263 i++;
12264 }
12265 data[j++] = buf8[i];
12266 }
12267
12268 err = -EIO;
12269 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
12270 u8 hw8 = hweight8(data[i]);
12271
12272 if ((hw8 & 0x1) && parity[i])
12273 goto out;
12274 else if (!(hw8 & 0x1) && !parity[i])
12275 goto out;
12276 }
12277 err = 0;
12278 goto out;
12279 }
12280
Matt Carlson01c3a392011-03-09 16:58:20 +000012281 err = -EIO;
12282
Michael Chan566f86a2005-05-29 14:56:58 -070012283 /* Bootstrap checksum at offset 0x10 */
12284 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000012285 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070012286 goto out;
12287
12288 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
12289 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000012290 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000012291 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070012292
Matt Carlsonc3e94502011-04-13 11:05:08 +000012293 kfree(buf);
12294
Matt Carlson535a4902011-07-20 10:20:56 +000012295 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000012296 if (!buf)
12297 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000012298
Matt Carlson535a4902011-07-20 10:20:56 +000012299 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000012300 if (i > 0) {
12301 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
12302 if (j < 0)
12303 goto out;
12304
Matt Carlson535a4902011-07-20 10:20:56 +000012305 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000012306 goto out;
12307
12308 i += PCI_VPD_LRDT_TAG_SIZE;
12309 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
12310 PCI_VPD_RO_KEYWORD_CHKSUM);
12311 if (j > 0) {
12312 u8 csum8 = 0;
12313
12314 j += PCI_VPD_INFO_FLD_HDR_SIZE;
12315
12316 for (i = 0; i <= j; i++)
12317 csum8 += ((u8 *)buf)[i];
12318
12319 if (csum8)
12320 goto out;
12321 }
12322 }
12323
Michael Chan566f86a2005-05-29 14:56:58 -070012324 err = 0;
12325
12326out:
12327 kfree(buf);
12328 return err;
12329}
12330
Michael Chanca430072005-05-29 14:57:23 -070012331#define TG3_SERDES_TIMEOUT_SEC 2
12332#define TG3_COPPER_TIMEOUT_SEC 6
12333
12334static int tg3_test_link(struct tg3 *tp)
12335{
12336 int i, max;
12337
12338 if (!netif_running(tp->dev))
12339 return -ENODEV;
12340
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012341 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070012342 max = TG3_SERDES_TIMEOUT_SEC;
12343 else
12344 max = TG3_COPPER_TIMEOUT_SEC;
12345
12346 for (i = 0; i < max; i++) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012347 if (tp->link_up)
Michael Chanca430072005-05-29 14:57:23 -070012348 return 0;
12349
12350 if (msleep_interruptible(1000))
12351 break;
12352 }
12353
12354 return -EIO;
12355}
12356
Michael Chana71116d2005-05-29 14:58:11 -070012357/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080012358static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070012359{
Michael Chanb16250e2006-09-27 16:10:14 -070012360 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070012361 u32 offset, read_mask, write_mask, val, save_val, read_val;
12362 static struct {
12363 u16 offset;
12364 u16 flags;
12365#define TG3_FL_5705 0x1
12366#define TG3_FL_NOT_5705 0x2
12367#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070012368#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070012369 u32 read_mask;
12370 u32 write_mask;
12371 } reg_tbl[] = {
12372 /* MAC Control Registers */
12373 { MAC_MODE, TG3_FL_NOT_5705,
12374 0x00000000, 0x00ef6f8c },
12375 { MAC_MODE, TG3_FL_5705,
12376 0x00000000, 0x01ef6b8c },
12377 { MAC_STATUS, TG3_FL_NOT_5705,
12378 0x03800107, 0x00000000 },
12379 { MAC_STATUS, TG3_FL_5705,
12380 0x03800100, 0x00000000 },
12381 { MAC_ADDR_0_HIGH, 0x0000,
12382 0x00000000, 0x0000ffff },
12383 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012384 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070012385 { MAC_RX_MTU_SIZE, 0x0000,
12386 0x00000000, 0x0000ffff },
12387 { MAC_TX_MODE, 0x0000,
12388 0x00000000, 0x00000070 },
12389 { MAC_TX_LENGTHS, 0x0000,
12390 0x00000000, 0x00003fff },
12391 { MAC_RX_MODE, TG3_FL_NOT_5705,
12392 0x00000000, 0x000007fc },
12393 { MAC_RX_MODE, TG3_FL_5705,
12394 0x00000000, 0x000007dc },
12395 { MAC_HASH_REG_0, 0x0000,
12396 0x00000000, 0xffffffff },
12397 { MAC_HASH_REG_1, 0x0000,
12398 0x00000000, 0xffffffff },
12399 { MAC_HASH_REG_2, 0x0000,
12400 0x00000000, 0xffffffff },
12401 { MAC_HASH_REG_3, 0x0000,
12402 0x00000000, 0xffffffff },
12403
12404 /* Receive Data and Receive BD Initiator Control Registers. */
12405 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
12406 0x00000000, 0xffffffff },
12407 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
12408 0x00000000, 0xffffffff },
12409 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
12410 0x00000000, 0x00000003 },
12411 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
12412 0x00000000, 0xffffffff },
12413 { RCVDBDI_STD_BD+0, 0x0000,
12414 0x00000000, 0xffffffff },
12415 { RCVDBDI_STD_BD+4, 0x0000,
12416 0x00000000, 0xffffffff },
12417 { RCVDBDI_STD_BD+8, 0x0000,
12418 0x00000000, 0xffff0002 },
12419 { RCVDBDI_STD_BD+0xc, 0x0000,
12420 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012421
Michael Chana71116d2005-05-29 14:58:11 -070012422 /* Receive BD Initiator Control Registers. */
12423 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
12424 0x00000000, 0xffffffff },
12425 { RCVBDI_STD_THRESH, TG3_FL_5705,
12426 0x00000000, 0x000003ff },
12427 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
12428 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012429
Michael Chana71116d2005-05-29 14:58:11 -070012430 /* Host Coalescing Control Registers. */
12431 { HOSTCC_MODE, TG3_FL_NOT_5705,
12432 0x00000000, 0x00000004 },
12433 { HOSTCC_MODE, TG3_FL_5705,
12434 0x00000000, 0x000000f6 },
12435 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
12436 0x00000000, 0xffffffff },
12437 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
12438 0x00000000, 0x000003ff },
12439 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
12440 0x00000000, 0xffffffff },
12441 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
12442 0x00000000, 0x000003ff },
12443 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
12444 0x00000000, 0xffffffff },
12445 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12446 0x00000000, 0x000000ff },
12447 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
12448 0x00000000, 0xffffffff },
12449 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12450 0x00000000, 0x000000ff },
12451 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
12452 0x00000000, 0xffffffff },
12453 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
12454 0x00000000, 0xffffffff },
12455 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12456 0x00000000, 0xffffffff },
12457 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12458 0x00000000, 0x000000ff },
12459 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12460 0x00000000, 0xffffffff },
12461 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12462 0x00000000, 0x000000ff },
12463 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
12464 0x00000000, 0xffffffff },
12465 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
12466 0x00000000, 0xffffffff },
12467 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
12468 0x00000000, 0xffffffff },
12469 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
12470 0x00000000, 0xffffffff },
12471 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
12472 0x00000000, 0xffffffff },
12473 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
12474 0xffffffff, 0x00000000 },
12475 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
12476 0xffffffff, 0x00000000 },
12477
12478 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070012479 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012480 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070012481 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012482 0x00000000, 0x007fffff },
12483 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
12484 0x00000000, 0x0000003f },
12485 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
12486 0x00000000, 0x000001ff },
12487 { BUFMGR_MB_HIGH_WATER, 0x0000,
12488 0x00000000, 0x000001ff },
12489 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
12490 0xffffffff, 0x00000000 },
12491 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
12492 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012493
Michael Chana71116d2005-05-29 14:58:11 -070012494 /* Mailbox Registers */
12495 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
12496 0x00000000, 0x000001ff },
12497 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
12498 0x00000000, 0x000001ff },
12499 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
12500 0x00000000, 0x000007ff },
12501 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
12502 0x00000000, 0x000001ff },
12503
12504 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
12505 };
12506
Michael Chanb16250e2006-09-27 16:10:14 -070012507 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012508 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070012509 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000012510 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070012511 is_5750 = 1;
12512 }
Michael Chana71116d2005-05-29 14:58:11 -070012513
12514 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
12515 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
12516 continue;
12517
12518 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
12519 continue;
12520
Joe Perches63c3a662011-04-26 08:12:10 +000012521 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070012522 (reg_tbl[i].flags & TG3_FL_NOT_5788))
12523 continue;
12524
Michael Chanb16250e2006-09-27 16:10:14 -070012525 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
12526 continue;
12527
Michael Chana71116d2005-05-29 14:58:11 -070012528 offset = (u32) reg_tbl[i].offset;
12529 read_mask = reg_tbl[i].read_mask;
12530 write_mask = reg_tbl[i].write_mask;
12531
12532 /* Save the original register content */
12533 save_val = tr32(offset);
12534
12535 /* Determine the read-only value. */
12536 read_val = save_val & read_mask;
12537
12538 /* Write zero to the register, then make sure the read-only bits
12539 * are not changed and the read/write bits are all zeros.
12540 */
12541 tw32(offset, 0);
12542
12543 val = tr32(offset);
12544
12545 /* Test the read-only and read/write bits. */
12546 if (((val & read_mask) != read_val) || (val & write_mask))
12547 goto out;
12548
12549 /* Write ones to all the bits defined by RdMask and WrMask, then
12550 * make sure the read-only bits are not changed and the
12551 * read/write bits are all ones.
12552 */
12553 tw32(offset, read_mask | write_mask);
12554
12555 val = tr32(offset);
12556
12557 /* Test the read-only bits. */
12558 if ((val & read_mask) != read_val)
12559 goto out;
12560
12561 /* Test the read/write bits. */
12562 if ((val & write_mask) != write_mask)
12563 goto out;
12564
12565 tw32(offset, save_val);
12566 }
12567
12568 return 0;
12569
12570out:
Michael Chan9f88f292006-12-07 00:22:54 -080012571 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000012572 netdev_err(tp->dev,
12573 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070012574 tw32(offset, save_val);
12575 return -EIO;
12576}
12577
Michael Chan7942e1d2005-05-29 14:58:36 -070012578static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
12579{
Arjan van de Venf71e1302006-03-03 21:33:57 -050012580 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070012581 int i;
12582 u32 j;
12583
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020012584 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070012585 for (j = 0; j < len; j += 4) {
12586 u32 val;
12587
12588 tg3_write_mem(tp, offset + j, test_pattern[i]);
12589 tg3_read_mem(tp, offset + j, &val);
12590 if (val != test_pattern[i])
12591 return -EIO;
12592 }
12593 }
12594 return 0;
12595}
12596
12597static int tg3_test_memory(struct tg3 *tp)
12598{
12599 static struct mem_entry {
12600 u32 offset;
12601 u32 len;
12602 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080012603 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070012604 { 0x00002000, 0x1c000},
12605 { 0xffffffff, 0x00000}
12606 }, mem_tbl_5705[] = {
12607 { 0x00000100, 0x0000c},
12608 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070012609 { 0x00004000, 0x00800},
12610 { 0x00006000, 0x01000},
12611 { 0x00008000, 0x02000},
12612 { 0x00010000, 0x0e000},
12613 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080012614 }, mem_tbl_5755[] = {
12615 { 0x00000200, 0x00008},
12616 { 0x00004000, 0x00800},
12617 { 0x00006000, 0x00800},
12618 { 0x00008000, 0x02000},
12619 { 0x00010000, 0x0c000},
12620 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070012621 }, mem_tbl_5906[] = {
12622 { 0x00000200, 0x00008},
12623 { 0x00004000, 0x00400},
12624 { 0x00006000, 0x00400},
12625 { 0x00008000, 0x01000},
12626 { 0x00010000, 0x01000},
12627 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012628 }, mem_tbl_5717[] = {
12629 { 0x00000200, 0x00008},
12630 { 0x00010000, 0x0a000},
12631 { 0x00020000, 0x13c00},
12632 { 0xffffffff, 0x00000}
12633 }, mem_tbl_57765[] = {
12634 { 0x00000200, 0x00008},
12635 { 0x00004000, 0x00800},
12636 { 0x00006000, 0x09800},
12637 { 0x00010000, 0x0a000},
12638 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070012639 };
12640 struct mem_entry *mem_tbl;
12641 int err = 0;
12642 int i;
12643
Joe Perches63c3a662011-04-26 08:12:10 +000012644 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012645 mem_tbl = mem_tbl_5717;
Michael Chanc65a17f2013-01-06 12:51:07 +000012646 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000012647 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012648 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000012649 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012650 mem_tbl = mem_tbl_5755;
Joe Perches41535772013-02-16 11:20:04 +000012651 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlson321d32a2008-11-21 17:22:19 -080012652 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000012653 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012654 mem_tbl = mem_tbl_5705;
12655 else
Michael Chan7942e1d2005-05-29 14:58:36 -070012656 mem_tbl = mem_tbl_570x;
12657
12658 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000012659 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
12660 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070012661 break;
12662 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012663
Michael Chan7942e1d2005-05-29 14:58:36 -070012664 return err;
12665}
12666
Matt Carlsonbb158d62011-04-25 12:42:47 +000012667#define TG3_TSO_MSS 500
12668
12669#define TG3_TSO_IP_HDR_LEN 20
12670#define TG3_TSO_TCP_HDR_LEN 20
12671#define TG3_TSO_TCP_OPT_LEN 12
12672
12673static const u8 tg3_tso_header[] = {
126740x08, 0x00,
126750x45, 0x00, 0x00, 0x00,
126760x00, 0x00, 0x40, 0x00,
126770x40, 0x06, 0x00, 0x00,
126780x0a, 0x00, 0x00, 0x01,
126790x0a, 0x00, 0x00, 0x02,
126800x0d, 0x00, 0xe0, 0x00,
126810x00, 0x00, 0x01, 0x00,
126820x00, 0x00, 0x02, 0x00,
126830x80, 0x10, 0x10, 0x00,
126840x14, 0x09, 0x00, 0x00,
126850x01, 0x01, 0x08, 0x0a,
126860x11, 0x11, 0x11, 0x11,
126870x11, 0x11, 0x11, 0x11,
12688};
Michael Chan9f40dea2005-09-05 17:53:06 -070012689
Matt Carlson28a45952011-08-19 13:58:22 +000012690static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070012691{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012692 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012693 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000012694 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000012695 struct sk_buff *skb;
12696 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070012697 dma_addr_t map;
12698 int num_pkts, tx_len, rx_len, i, err;
12699 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000012700 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000012701 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070012702
Matt Carlsonc8873402010-02-12 14:47:11 +000012703 tnapi = &tp->napi[0];
12704 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012705 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000012706 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000012707 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000012708 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000012709 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012710 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012711 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000012712
Michael Chanc76949a2005-05-29 14:58:59 -070012713 err = -EIO;
12714
Matt Carlson4852a862011-04-13 11:05:07 +000012715 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070012716 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070012717 if (!skb)
12718 return -ENOMEM;
12719
Michael Chanc76949a2005-05-29 14:58:59 -070012720 tx_data = skb_put(skb, tx_len);
12721 memcpy(tx_data, tp->dev->dev_addr, 6);
12722 memset(tx_data + 6, 0x0, 8);
12723
Matt Carlson4852a862011-04-13 11:05:07 +000012724 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070012725
Matt Carlson28a45952011-08-19 13:58:22 +000012726 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012727 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
12728
12729 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
12730 TG3_TSO_TCP_OPT_LEN;
12731
12732 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
12733 sizeof(tg3_tso_header));
12734 mss = TG3_TSO_MSS;
12735
12736 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
12737 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
12738
12739 /* Set the total length field in the IP header */
12740 iph->tot_len = htons((u16)(mss + hdr_len));
12741
12742 base_flags = (TXD_FLAG_CPU_PRE_DMA |
12743 TXD_FLAG_CPU_POST_DMA);
12744
Joe Perches63c3a662011-04-26 08:12:10 +000012745 if (tg3_flag(tp, HW_TSO_1) ||
12746 tg3_flag(tp, HW_TSO_2) ||
12747 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012748 struct tcphdr *th;
12749 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
12750 th = (struct tcphdr *)&tx_data[val];
12751 th->check = 0;
12752 } else
12753 base_flags |= TXD_FLAG_TCPUDP_CSUM;
12754
Joe Perches63c3a662011-04-26 08:12:10 +000012755 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012756 mss |= (hdr_len & 0xc) << 12;
12757 if (hdr_len & 0x10)
12758 base_flags |= 0x00000010;
12759 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000012760 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000012761 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000012762 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +000012763 tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012764 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
12765 } else {
12766 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
12767 }
12768
12769 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
12770 } else {
12771 num_pkts = 1;
12772 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000012773
12774 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
12775 tx_len > VLAN_ETH_FRAME_LEN)
12776 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012777 }
12778
12779 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070012780 tx_data[i] = (u8) (i & 0xff);
12781
Alexander Duyckf4188d82009-12-02 16:48:38 +000012782 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
12783 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000012784 dev_kfree_skb(skb);
12785 return -EIO;
12786 }
Michael Chanc76949a2005-05-29 14:58:59 -070012787
Matt Carlson0d681b22011-07-27 14:20:49 +000012788 val = tnapi->tx_prod;
12789 tnapi->tx_buffers[val].skb = skb;
12790 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
12791
Michael Chanc76949a2005-05-29 14:58:59 -070012792 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012793 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070012794
12795 udelay(10);
12796
Matt Carlson898a56f2009-08-28 14:02:40 +000012797 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070012798
Matt Carlson84b67b22011-07-27 14:20:52 +000012799 budget = tg3_tx_avail(tnapi);
12800 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000012801 base_flags | TXD_FLAG_END, mss, 0)) {
12802 tnapi->tx_buffers[val].skb = NULL;
12803 dev_kfree_skb(skb);
12804 return -EIO;
12805 }
Michael Chanc76949a2005-05-29 14:58:59 -070012806
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012807 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070012808
Michael Chan6541b802012-03-04 14:48:14 +000012809 /* Sync BD data before updating mailbox */
12810 wmb();
12811
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012812 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
12813 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070012814
12815 udelay(10);
12816
Matt Carlson303fc922009-11-02 14:27:34 +000012817 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
12818 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070012819 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012820 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070012821
12822 udelay(10);
12823
Matt Carlson898a56f2009-08-28 14:02:40 +000012824 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
12825 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012826 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070012827 (rx_idx == (rx_start_idx + num_pkts)))
12828 break;
12829 }
12830
Matt Carlsonba1142e2011-11-04 09:15:00 +000012831 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070012832 dev_kfree_skb(skb);
12833
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012834 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070012835 goto out;
12836
12837 if (rx_idx != rx_start_idx + num_pkts)
12838 goto out;
12839
Matt Carlsonbb158d62011-04-25 12:42:47 +000012840 val = data_off;
12841 while (rx_idx != rx_start_idx) {
12842 desc = &rnapi->rx_rcb[rx_start_idx++];
12843 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
12844 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070012845
Matt Carlsonbb158d62011-04-25 12:42:47 +000012846 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
12847 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000012848 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070012849
Matt Carlsonbb158d62011-04-25 12:42:47 +000012850 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
12851 - ETH_FCS_LEN;
12852
Matt Carlson28a45952011-08-19 13:58:22 +000012853 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012854 if (rx_len != tx_len)
12855 goto out;
12856
12857 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
12858 if (opaque_key != RXD_OPAQUE_RING_STD)
12859 goto out;
12860 } else {
12861 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
12862 goto out;
12863 }
12864 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
12865 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000012866 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012867 goto out;
12868 }
12869
12870 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012871 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012872 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
12873 mapping);
12874 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012875 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012876 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
12877 mapping);
12878 } else
Matt Carlson4852a862011-04-13 11:05:07 +000012879 goto out;
12880
Matt Carlsonbb158d62011-04-25 12:42:47 +000012881 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
12882 PCI_DMA_FROMDEVICE);
12883
Eric Dumazet9205fd92011-11-18 06:47:01 +000012884 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000012885 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000012886 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000012887 goto out;
12888 }
Matt Carlson4852a862011-04-13 11:05:07 +000012889 }
12890
Michael Chanc76949a2005-05-29 14:58:59 -070012891 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012892
Eric Dumazet9205fd92011-11-18 06:47:01 +000012893 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070012894out:
12895 return err;
12896}
12897
Matt Carlson00c266b2011-04-25 12:42:46 +000012898#define TG3_STD_LOOPBACK_FAILED 1
12899#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000012900#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000012901#define TG3_LOOPBACK_FAILED \
12902 (TG3_STD_LOOPBACK_FAILED | \
12903 TG3_JMB_LOOPBACK_FAILED | \
12904 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000012905
Matt Carlson941ec902011-08-19 13:58:23 +000012906static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070012907{
Matt Carlson28a45952011-08-19 13:58:22 +000012908 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000012909 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000012910 u32 jmb_pkt_sz = 9000;
12911
12912 if (tp->dma_limit)
12913 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070012914
Matt Carlsonab789042011-01-25 15:58:54 +000012915 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
12916 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
12917
Matt Carlson28a45952011-08-19 13:58:22 +000012918 if (!netif_running(tp->dev)) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012919 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
12920 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012921 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012922 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000012923 goto done;
12924 }
12925
Michael Chanb9ec6c12006-07-25 16:37:27 -070012926 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000012927 if (err) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012928 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
12929 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012930 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012931 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000012932 goto done;
12933 }
Michael Chan9f40dea2005-09-05 17:53:06 -070012934
Joe Perches63c3a662011-04-26 08:12:10 +000012935 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000012936 int i;
12937
12938 /* Reroute all rx packets to the 1st queue */
12939 for (i = MAC_RSS_INDIR_TBL_0;
12940 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
12941 tw32(i, 0x0);
12942 }
12943
Matt Carlson6e01b202011-08-19 13:58:20 +000012944 /* HW errata - mac loopback fails in some cases on 5780.
12945 * Normal traffic and PHY loopback are not affected by
12946 * errata. Also, the MAC loopback test is deprecated for
12947 * all newer ASIC revisions.
12948 */
Joe Perches41535772013-02-16 11:20:04 +000012949 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Matt Carlson6e01b202011-08-19 13:58:20 +000012950 !tg3_flag(tp, CPMU_PRESENT)) {
12951 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070012952
Matt Carlson28a45952011-08-19 13:58:22 +000012953 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012954 data[TG3_MAC_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000012955
12956 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012957 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012958 data[TG3_MAC_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000012959
12960 tg3_mac_loopback(tp, false);
12961 }
Matt Carlson4852a862011-04-13 11:05:07 +000012962
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012963 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012964 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012965 int i;
12966
Matt Carlson941ec902011-08-19 13:58:23 +000012967 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012968
12969 /* Wait for link */
12970 for (i = 0; i < 100; i++) {
12971 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
12972 break;
12973 mdelay(1);
12974 }
12975
Matt Carlson28a45952011-08-19 13:58:22 +000012976 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012977 data[TG3_PHY_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012978 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000012979 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012980 data[TG3_PHY_LOOPB_TEST] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012981 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012982 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012983 data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070012984
Matt Carlson941ec902011-08-19 13:58:23 +000012985 if (do_extlpbk) {
12986 tg3_phy_lpbk_set(tp, 0, true);
12987
12988 /* All link indications report up, but the hardware
12989 * isn't really ready for about 20 msec. Double it
12990 * to be sure.
12991 */
12992 mdelay(40);
12993
12994 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012995 data[TG3_EXT_LOOPB_TEST] |=
12996 TG3_STD_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012997 if (tg3_flag(tp, TSO_CAPABLE) &&
12998 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000012999 data[TG3_EXT_LOOPB_TEST] |=
13000 TG3_TSO_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013001 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013002 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013003 data[TG3_EXT_LOOPB_TEST] |=
13004 TG3_JMB_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013005 }
13006
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013007 /* Re-enable gphy autopowerdown. */
13008 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
13009 tg3_phy_toggle_apd(tp, true);
13010 }
Matt Carlson6833c042008-11-21 17:18:59 -080013011
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013012 err = (data[TG3_MAC_LOOPB_TEST] | data[TG3_PHY_LOOPB_TEST] |
13013 data[TG3_EXT_LOOPB_TEST]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000013014
Matt Carlsonab789042011-01-25 15:58:54 +000013015done:
13016 tp->phy_flags |= eee_cap;
13017
Michael Chan9f40dea2005-09-05 17:53:06 -070013018 return err;
13019}
13020
Michael Chan4cafd3f2005-05-29 14:56:34 -070013021static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
13022 u64 *data)
13023{
Michael Chan566f86a2005-05-29 14:56:58 -070013024 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000013025 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070013026
Matt Carlsonbed98292011-07-13 09:27:29 +000013027 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
13028 tg3_power_up(tp)) {
13029 etest->flags |= ETH_TEST_FL_FAILED;
13030 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
13031 return;
13032 }
Michael Chanbc1c7562006-03-20 17:48:03 -080013033
Michael Chan566f86a2005-05-29 14:56:58 -070013034 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
13035
13036 if (tg3_test_nvram(tp) != 0) {
13037 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013038 data[TG3_NVRAM_TEST] = 1;
Michael Chan566f86a2005-05-29 14:56:58 -070013039 }
Matt Carlson941ec902011-08-19 13:58:23 +000013040 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070013041 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013042 data[TG3_LINK_TEST] = 1;
Michael Chanca430072005-05-29 14:57:23 -070013043 }
Michael Chana71116d2005-05-29 14:58:11 -070013044 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013045 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070013046
Michael Chanbbe832c2005-06-24 20:20:04 -070013047 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013048 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070013049 tg3_netif_stop(tp);
13050 irq_sync = 1;
13051 }
13052
13053 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070013054 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080013055 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013056 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000013057 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070013058 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080013059 if (!err)
13060 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013061
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013062 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080013063 tg3_phy_reset(tp);
13064
Michael Chana71116d2005-05-29 14:58:11 -070013065 if (tg3_test_registers(tp) != 0) {
13066 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013067 data[TG3_REGISTER_TEST] = 1;
Michael Chana71116d2005-05-29 14:58:11 -070013068 }
Matt Carlson28a45952011-08-19 13:58:22 +000013069
Michael Chan7942e1d2005-05-29 14:58:36 -070013070 if (tg3_test_memory(tp) != 0) {
13071 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013072 data[TG3_MEMORY_TEST] = 1;
Michael Chan7942e1d2005-05-29 14:58:36 -070013073 }
Matt Carlson28a45952011-08-19 13:58:22 +000013074
Matt Carlson941ec902011-08-19 13:58:23 +000013075 if (doextlpbk)
13076 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
13077
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013078 if (tg3_test_loopback(tp, data, doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070013079 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070013080
David S. Millerf47c11e2005-06-24 20:18:35 -070013081 tg3_full_unlock(tp);
13082
Michael Chand4bc3922005-05-29 14:59:20 -070013083 if (tg3_test_interrupt(tp) != 0) {
13084 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013085 data[TG3_INTERRUPT_TEST] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070013086 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013087
13088 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070013089
Michael Chana71116d2005-05-29 14:58:11 -070013090 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13091 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013092 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013093 err2 = tg3_restart_hw(tp, 1);
13094 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070013095 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013096 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013097
13098 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013099
13100 if (irq_sync && !err2)
13101 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013102 }
Matt Carlson80096062010-08-02 11:26:06 +000013103 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000013104 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080013105
Michael Chan4cafd3f2005-05-29 14:56:34 -070013106}
13107
Matt Carlson0a633ac2012-12-03 19:36:59 +000013108static int tg3_hwtstamp_ioctl(struct net_device *dev,
13109 struct ifreq *ifr, int cmd)
13110{
13111 struct tg3 *tp = netdev_priv(dev);
13112 struct hwtstamp_config stmpconf;
13113
13114 if (!tg3_flag(tp, PTP_CAPABLE))
13115 return -EINVAL;
13116
13117 if (copy_from_user(&stmpconf, ifr->ifr_data, sizeof(stmpconf)))
13118 return -EFAULT;
13119
13120 if (stmpconf.flags)
13121 return -EINVAL;
13122
13123 switch (stmpconf.tx_type) {
13124 case HWTSTAMP_TX_ON:
13125 tg3_flag_set(tp, TX_TSTAMP_EN);
13126 break;
13127 case HWTSTAMP_TX_OFF:
13128 tg3_flag_clear(tp, TX_TSTAMP_EN);
13129 break;
13130 default:
13131 return -ERANGE;
13132 }
13133
13134 switch (stmpconf.rx_filter) {
13135 case HWTSTAMP_FILTER_NONE:
13136 tp->rxptpctl = 0;
13137 break;
13138 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
13139 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13140 TG3_RX_PTP_CTL_ALL_V1_EVENTS;
13141 break;
13142 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
13143 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13144 TG3_RX_PTP_CTL_SYNC_EVNT;
13145 break;
13146 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
13147 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13148 TG3_RX_PTP_CTL_DELAY_REQ;
13149 break;
13150 case HWTSTAMP_FILTER_PTP_V2_EVENT:
13151 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13152 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13153 break;
13154 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
13155 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13156 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13157 break;
13158 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
13159 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13160 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13161 break;
13162 case HWTSTAMP_FILTER_PTP_V2_SYNC:
13163 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13164 TG3_RX_PTP_CTL_SYNC_EVNT;
13165 break;
13166 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
13167 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13168 TG3_RX_PTP_CTL_SYNC_EVNT;
13169 break;
13170 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
13171 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13172 TG3_RX_PTP_CTL_SYNC_EVNT;
13173 break;
13174 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
13175 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13176 TG3_RX_PTP_CTL_DELAY_REQ;
13177 break;
13178 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
13179 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13180 TG3_RX_PTP_CTL_DELAY_REQ;
13181 break;
13182 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
13183 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13184 TG3_RX_PTP_CTL_DELAY_REQ;
13185 break;
13186 default:
13187 return -ERANGE;
13188 }
13189
13190 if (netif_running(dev) && tp->rxptpctl)
13191 tw32(TG3_RX_PTP_CTL,
13192 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
13193
13194 return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ?
13195 -EFAULT : 0;
13196}
13197
Linus Torvalds1da177e2005-04-16 15:20:36 -070013198static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
13199{
13200 struct mii_ioctl_data *data = if_mii(ifr);
13201 struct tg3 *tp = netdev_priv(dev);
13202 int err;
13203
Joe Perches63c3a662011-04-26 08:12:10 +000013204 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013205 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013206 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013207 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013208 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000013209 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013210 }
13211
Matt Carlson33f401a2010-04-05 10:19:27 +000013212 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013213 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000013214 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013215
13216 /* fallthru */
13217 case SIOCGMIIREG: {
13218 u32 mii_regval;
13219
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013220 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013221 break; /* We have no PHY */
13222
Matt Carlson34eea5a2011-04-20 07:57:38 +000013223 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013224 return -EAGAIN;
13225
David S. Millerf47c11e2005-06-24 20:18:35 -070013226 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013227 err = __tg3_readphy(tp, data->phy_id & 0x1f,
13228 data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070013229 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013230
13231 data->val_out = mii_regval;
13232
13233 return err;
13234 }
13235
13236 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013237 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013238 break; /* We have no PHY */
13239
Matt Carlson34eea5a2011-04-20 07:57:38 +000013240 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013241 return -EAGAIN;
13242
David S. Millerf47c11e2005-06-24 20:18:35 -070013243 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013244 err = __tg3_writephy(tp, data->phy_id & 0x1f,
13245 data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070013246 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013247
13248 return err;
13249
Matt Carlson0a633ac2012-12-03 19:36:59 +000013250 case SIOCSHWTSTAMP:
13251 return tg3_hwtstamp_ioctl(dev, ifr, cmd);
13252
Linus Torvalds1da177e2005-04-16 15:20:36 -070013253 default:
13254 /* do nothing */
13255 break;
13256 }
13257 return -EOPNOTSUPP;
13258}
13259
David S. Miller15f98502005-05-18 22:49:26 -070013260static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13261{
13262 struct tg3 *tp = netdev_priv(dev);
13263
13264 memcpy(ec, &tp->coal, sizeof(*ec));
13265 return 0;
13266}
13267
Michael Chand244c892005-07-05 14:42:33 -070013268static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13269{
13270 struct tg3 *tp = netdev_priv(dev);
13271 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
13272 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
13273
Joe Perches63c3a662011-04-26 08:12:10 +000013274 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070013275 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
13276 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
13277 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
13278 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
13279 }
13280
13281 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
13282 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
13283 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
13284 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
13285 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
13286 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
13287 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
13288 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
13289 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
13290 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
13291 return -EINVAL;
13292
13293 /* No rx interrupts will be generated if both are zero */
13294 if ((ec->rx_coalesce_usecs == 0) &&
13295 (ec->rx_max_coalesced_frames == 0))
13296 return -EINVAL;
13297
13298 /* No tx interrupts will be generated if both are zero */
13299 if ((ec->tx_coalesce_usecs == 0) &&
13300 (ec->tx_max_coalesced_frames == 0))
13301 return -EINVAL;
13302
13303 /* Only copy relevant parameters, ignore all others. */
13304 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
13305 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
13306 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
13307 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
13308 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
13309 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
13310 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
13311 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
13312 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
13313
13314 if (netif_running(dev)) {
13315 tg3_full_lock(tp, 0);
13316 __tg3_set_coalesce(tp, &tp->coal);
13317 tg3_full_unlock(tp);
13318 }
13319 return 0;
13320}
13321
Jeff Garzik7282d492006-09-13 14:30:00 -040013322static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013323 .get_settings = tg3_get_settings,
13324 .set_settings = tg3_set_settings,
13325 .get_drvinfo = tg3_get_drvinfo,
13326 .get_regs_len = tg3_get_regs_len,
13327 .get_regs = tg3_get_regs,
13328 .get_wol = tg3_get_wol,
13329 .set_wol = tg3_set_wol,
13330 .get_msglevel = tg3_get_msglevel,
13331 .set_msglevel = tg3_set_msglevel,
13332 .nway_reset = tg3_nway_reset,
13333 .get_link = ethtool_op_get_link,
13334 .get_eeprom_len = tg3_get_eeprom_len,
13335 .get_eeprom = tg3_get_eeprom,
13336 .set_eeprom = tg3_set_eeprom,
13337 .get_ringparam = tg3_get_ringparam,
13338 .set_ringparam = tg3_set_ringparam,
13339 .get_pauseparam = tg3_get_pauseparam,
13340 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070013341 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013342 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000013343 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013344 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070013345 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070013346 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070013347 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000013348 .get_rxnfc = tg3_get_rxnfc,
13349 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
13350 .get_rxfh_indir = tg3_get_rxfh_indir,
13351 .set_rxfh_indir = tg3_set_rxfh_indir,
Michael Chan09681692012-09-28 07:12:42 +000013352 .get_channels = tg3_get_channels,
13353 .set_channels = tg3_set_channels,
Matt Carlson7d41e492012-12-03 19:36:58 +000013354 .get_ts_info = tg3_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013355};
13356
David S. Millerb4017c52012-03-01 17:57:40 -050013357static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
13358 struct rtnl_link_stats64 *stats)
13359{
13360 struct tg3 *tp = netdev_priv(dev);
13361
David S. Millerb4017c52012-03-01 17:57:40 -050013362 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000013363 if (!tp->hw_stats) {
13364 spin_unlock_bh(&tp->lock);
13365 return &tp->net_stats_prev;
13366 }
13367
David S. Millerb4017c52012-03-01 17:57:40 -050013368 tg3_get_nstats(tp, stats);
13369 spin_unlock_bh(&tp->lock);
13370
13371 return stats;
13372}
13373
Matt Carlsonccd5ba92012-02-13 10:20:08 +000013374static void tg3_set_rx_mode(struct net_device *dev)
13375{
13376 struct tg3 *tp = netdev_priv(dev);
13377
13378 if (!netif_running(dev))
13379 return;
13380
13381 tg3_full_lock(tp, 0);
13382 __tg3_set_rx_mode(dev);
13383 tg3_full_unlock(tp);
13384}
13385
Matt Carlsonfaf16272012-02-13 10:20:07 +000013386static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
13387 int new_mtu)
13388{
13389 dev->mtu = new_mtu;
13390
13391 if (new_mtu > ETH_DATA_LEN) {
13392 if (tg3_flag(tp, 5780_CLASS)) {
13393 netdev_update_features(dev);
13394 tg3_flag_clear(tp, TSO_CAPABLE);
13395 } else {
13396 tg3_flag_set(tp, JUMBO_RING_ENABLE);
13397 }
13398 } else {
13399 if (tg3_flag(tp, 5780_CLASS)) {
13400 tg3_flag_set(tp, TSO_CAPABLE);
13401 netdev_update_features(dev);
13402 }
13403 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
13404 }
13405}
13406
13407static int tg3_change_mtu(struct net_device *dev, int new_mtu)
13408{
13409 struct tg3 *tp = netdev_priv(dev);
Michael Chan2fae5e32012-03-04 14:48:15 +000013410 int err, reset_phy = 0;
Matt Carlsonfaf16272012-02-13 10:20:07 +000013411
13412 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
13413 return -EINVAL;
13414
13415 if (!netif_running(dev)) {
13416 /* We'll just catch it later when the
13417 * device is up'd.
13418 */
13419 tg3_set_mtu(dev, tp, new_mtu);
13420 return 0;
13421 }
13422
13423 tg3_phy_stop(tp);
13424
13425 tg3_netif_stop(tp);
13426
13427 tg3_full_lock(tp, 1);
13428
13429 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13430
13431 tg3_set_mtu(dev, tp, new_mtu);
13432
Michael Chan2fae5e32012-03-04 14:48:15 +000013433 /* Reset PHY, otherwise the read DMA engine will be in a mode that
13434 * breaks all requests to 256 bytes.
13435 */
Joe Perches41535772013-02-16 11:20:04 +000013436 if (tg3_asic_rev(tp) == ASIC_REV_57766)
Michael Chan2fae5e32012-03-04 14:48:15 +000013437 reset_phy = 1;
13438
13439 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000013440
13441 if (!err)
13442 tg3_netif_start(tp);
13443
13444 tg3_full_unlock(tp);
13445
13446 if (!err)
13447 tg3_phy_start(tp);
13448
13449 return err;
13450}
13451
13452static const struct net_device_ops tg3_netdev_ops = {
13453 .ndo_open = tg3_open,
13454 .ndo_stop = tg3_close,
13455 .ndo_start_xmit = tg3_start_xmit,
13456 .ndo_get_stats64 = tg3_get_stats64,
13457 .ndo_validate_addr = eth_validate_addr,
13458 .ndo_set_rx_mode = tg3_set_rx_mode,
13459 .ndo_set_mac_address = tg3_set_mac_addr,
13460 .ndo_do_ioctl = tg3_ioctl,
13461 .ndo_tx_timeout = tg3_tx_timeout,
13462 .ndo_change_mtu = tg3_change_mtu,
13463 .ndo_fix_features = tg3_fix_features,
13464 .ndo_set_features = tg3_set_features,
13465#ifdef CONFIG_NET_POLL_CONTROLLER
13466 .ndo_poll_controller = tg3_poll_controller,
13467#endif
13468};
13469
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013470static void tg3_get_eeprom_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013471{
Michael Chan1b277772006-03-20 22:27:48 -080013472 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013473
13474 tp->nvram_size = EEPROM_CHIP_SIZE;
13475
Matt Carlsone4f34112009-02-25 14:25:00 +000013476 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013477 return;
13478
Michael Chanb16250e2006-09-27 16:10:14 -070013479 if ((magic != TG3_EEPROM_MAGIC) &&
13480 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
13481 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013482 return;
13483
13484 /*
13485 * Size the chip by reading offsets at increasing powers of two.
13486 * When we encounter our validation signature, we know the addressing
13487 * has wrapped around, and thus have our chip size.
13488 */
Michael Chan1b277772006-03-20 22:27:48 -080013489 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013490
13491 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013492 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013493 return;
13494
Michael Chan18201802006-03-20 22:29:15 -080013495 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013496 break;
13497
13498 cursize <<= 1;
13499 }
13500
13501 tp->nvram_size = cursize;
13502}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013503
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013504static void tg3_get_nvram_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013505{
13506 u32 val;
13507
Joe Perches63c3a662011-04-26 08:12:10 +000013508 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080013509 return;
13510
13511 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080013512 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080013513 tg3_get_eeprom_size(tp);
13514 return;
13515 }
13516
Matt Carlson6d348f22009-02-25 14:25:52 +000013517 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013518 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000013519 /* This is confusing. We want to operate on the
13520 * 16-bit value at offset 0xf2. The tg3_nvram_read()
13521 * call will read from NVRAM and byteswap the data
13522 * according to the byteswapping settings for all
13523 * other register accesses. This ensures the data we
13524 * want will always reside in the lower 16-bits.
13525 * However, the data in NVRAM is in LE format, which
13526 * means the data from the NVRAM read will always be
13527 * opposite the endianness of the CPU. The 16-bit
13528 * byteswap then brings the data to CPU endianness.
13529 */
13530 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013531 return;
13532 }
13533 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070013534 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013535}
13536
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013537static void tg3_get_nvram_info(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013538{
13539 u32 nvcfg1;
13540
13541 nvcfg1 = tr32(NVRAM_CFG1);
13542 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000013543 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013544 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013545 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13546 tw32(NVRAM_CFG1, nvcfg1);
13547 }
13548
Joe Perches41535772013-02-16 11:20:04 +000013549 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013550 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013551 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013552 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
13553 tp->nvram_jedecnum = JEDEC_ATMEL;
13554 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013555 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013556 break;
13557 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
13558 tp->nvram_jedecnum = JEDEC_ATMEL;
13559 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
13560 break;
13561 case FLASH_VENDOR_ATMEL_EEPROM:
13562 tp->nvram_jedecnum = JEDEC_ATMEL;
13563 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013564 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013565 break;
13566 case FLASH_VENDOR_ST:
13567 tp->nvram_jedecnum = JEDEC_ST;
13568 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013569 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013570 break;
13571 case FLASH_VENDOR_SAIFUN:
13572 tp->nvram_jedecnum = JEDEC_SAIFUN;
13573 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
13574 break;
13575 case FLASH_VENDOR_SST_SMALL:
13576 case FLASH_VENDOR_SST_LARGE:
13577 tp->nvram_jedecnum = JEDEC_SST;
13578 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
13579 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013580 }
Matt Carlson8590a602009-08-28 12:29:16 +000013581 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013582 tp->nvram_jedecnum = JEDEC_ATMEL;
13583 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013584 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013585 }
13586}
13587
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013588static void tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013589{
13590 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
13591 case FLASH_5752PAGE_SIZE_256:
13592 tp->nvram_pagesize = 256;
13593 break;
13594 case FLASH_5752PAGE_SIZE_512:
13595 tp->nvram_pagesize = 512;
13596 break;
13597 case FLASH_5752PAGE_SIZE_1K:
13598 tp->nvram_pagesize = 1024;
13599 break;
13600 case FLASH_5752PAGE_SIZE_2K:
13601 tp->nvram_pagesize = 2048;
13602 break;
13603 case FLASH_5752PAGE_SIZE_4K:
13604 tp->nvram_pagesize = 4096;
13605 break;
13606 case FLASH_5752PAGE_SIZE_264:
13607 tp->nvram_pagesize = 264;
13608 break;
13609 case FLASH_5752PAGE_SIZE_528:
13610 tp->nvram_pagesize = 528;
13611 break;
13612 }
13613}
13614
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013615static void tg3_get_5752_nvram_info(struct tg3 *tp)
Michael Chan361b4ac2005-04-21 17:11:21 -070013616{
13617 u32 nvcfg1;
13618
13619 nvcfg1 = tr32(NVRAM_CFG1);
13620
Michael Chane6af3012005-04-21 17:12:05 -070013621 /* NVRAM protection for TPM */
13622 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000013623 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070013624
Michael Chan361b4ac2005-04-21 17:11:21 -070013625 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013626 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
13627 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
13628 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013629 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013630 break;
13631 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13632 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013633 tg3_flag_set(tp, NVRAM_BUFFERED);
13634 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013635 break;
13636 case FLASH_5752VENDOR_ST_M45PE10:
13637 case FLASH_5752VENDOR_ST_M45PE20:
13638 case FLASH_5752VENDOR_ST_M45PE40:
13639 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013640 tg3_flag_set(tp, NVRAM_BUFFERED);
13641 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013642 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070013643 }
13644
Joe Perches63c3a662011-04-26 08:12:10 +000013645 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000013646 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000013647 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070013648 /* For eeprom, set pagesize to maximum eeprom size */
13649 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13650
13651 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13652 tw32(NVRAM_CFG1, nvcfg1);
13653 }
13654}
13655
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013656static void tg3_get_5755_nvram_info(struct tg3 *tp)
Michael Chand3c7b882006-03-23 01:28:25 -080013657{
Matt Carlson989a9d22007-05-05 11:51:05 -070013658 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080013659
13660 nvcfg1 = tr32(NVRAM_CFG1);
13661
13662 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070013663 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013664 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070013665 protect = 1;
13666 }
Michael Chand3c7b882006-03-23 01:28:25 -080013667
Matt Carlson989a9d22007-05-05 11:51:05 -070013668 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
13669 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013670 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13671 case FLASH_5755VENDOR_ATMEL_FLASH_2:
13672 case FLASH_5755VENDOR_ATMEL_FLASH_3:
13673 case FLASH_5755VENDOR_ATMEL_FLASH_5:
13674 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013675 tg3_flag_set(tp, NVRAM_BUFFERED);
13676 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013677 tp->nvram_pagesize = 264;
13678 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
13679 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
13680 tp->nvram_size = (protect ? 0x3e200 :
13681 TG3_NVRAM_SIZE_512KB);
13682 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
13683 tp->nvram_size = (protect ? 0x1f200 :
13684 TG3_NVRAM_SIZE_256KB);
13685 else
13686 tp->nvram_size = (protect ? 0x1f200 :
13687 TG3_NVRAM_SIZE_128KB);
13688 break;
13689 case FLASH_5752VENDOR_ST_M45PE10:
13690 case FLASH_5752VENDOR_ST_M45PE20:
13691 case FLASH_5752VENDOR_ST_M45PE40:
13692 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013693 tg3_flag_set(tp, NVRAM_BUFFERED);
13694 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013695 tp->nvram_pagesize = 256;
13696 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
13697 tp->nvram_size = (protect ?
13698 TG3_NVRAM_SIZE_64KB :
13699 TG3_NVRAM_SIZE_128KB);
13700 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
13701 tp->nvram_size = (protect ?
13702 TG3_NVRAM_SIZE_64KB :
13703 TG3_NVRAM_SIZE_256KB);
13704 else
13705 tp->nvram_size = (protect ?
13706 TG3_NVRAM_SIZE_128KB :
13707 TG3_NVRAM_SIZE_512KB);
13708 break;
Michael Chand3c7b882006-03-23 01:28:25 -080013709 }
13710}
13711
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013712static void tg3_get_5787_nvram_info(struct tg3 *tp)
Michael Chan1b277772006-03-20 22:27:48 -080013713{
13714 u32 nvcfg1;
13715
13716 nvcfg1 = tr32(NVRAM_CFG1);
13717
13718 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013719 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
13720 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
13721 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
13722 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
13723 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013724 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013725 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080013726
Matt Carlson8590a602009-08-28 12:29:16 +000013727 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13728 tw32(NVRAM_CFG1, nvcfg1);
13729 break;
13730 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13731 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13732 case FLASH_5755VENDOR_ATMEL_FLASH_2:
13733 case FLASH_5755VENDOR_ATMEL_FLASH_3:
13734 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013735 tg3_flag_set(tp, NVRAM_BUFFERED);
13736 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013737 tp->nvram_pagesize = 264;
13738 break;
13739 case FLASH_5752VENDOR_ST_M45PE10:
13740 case FLASH_5752VENDOR_ST_M45PE20:
13741 case FLASH_5752VENDOR_ST_M45PE40:
13742 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013743 tg3_flag_set(tp, NVRAM_BUFFERED);
13744 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013745 tp->nvram_pagesize = 256;
13746 break;
Michael Chan1b277772006-03-20 22:27:48 -080013747 }
13748}
13749
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013750static void tg3_get_5761_nvram_info(struct tg3 *tp)
Matt Carlson6b91fa02007-10-10 18:01:09 -070013751{
13752 u32 nvcfg1, protect = 0;
13753
13754 nvcfg1 = tr32(NVRAM_CFG1);
13755
13756 /* NVRAM protection for TPM */
13757 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013758 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070013759 protect = 1;
13760 }
13761
13762 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
13763 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013764 case FLASH_5761VENDOR_ATMEL_ADB021D:
13765 case FLASH_5761VENDOR_ATMEL_ADB041D:
13766 case FLASH_5761VENDOR_ATMEL_ADB081D:
13767 case FLASH_5761VENDOR_ATMEL_ADB161D:
13768 case FLASH_5761VENDOR_ATMEL_MDB021D:
13769 case FLASH_5761VENDOR_ATMEL_MDB041D:
13770 case FLASH_5761VENDOR_ATMEL_MDB081D:
13771 case FLASH_5761VENDOR_ATMEL_MDB161D:
13772 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013773 tg3_flag_set(tp, NVRAM_BUFFERED);
13774 tg3_flag_set(tp, FLASH);
13775 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000013776 tp->nvram_pagesize = 256;
13777 break;
13778 case FLASH_5761VENDOR_ST_A_M45PE20:
13779 case FLASH_5761VENDOR_ST_A_M45PE40:
13780 case FLASH_5761VENDOR_ST_A_M45PE80:
13781 case FLASH_5761VENDOR_ST_A_M45PE16:
13782 case FLASH_5761VENDOR_ST_M_M45PE20:
13783 case FLASH_5761VENDOR_ST_M_M45PE40:
13784 case FLASH_5761VENDOR_ST_M_M45PE80:
13785 case FLASH_5761VENDOR_ST_M_M45PE16:
13786 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013787 tg3_flag_set(tp, NVRAM_BUFFERED);
13788 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013789 tp->nvram_pagesize = 256;
13790 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070013791 }
13792
13793 if (protect) {
13794 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
13795 } else {
13796 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013797 case FLASH_5761VENDOR_ATMEL_ADB161D:
13798 case FLASH_5761VENDOR_ATMEL_MDB161D:
13799 case FLASH_5761VENDOR_ST_A_M45PE16:
13800 case FLASH_5761VENDOR_ST_M_M45PE16:
13801 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
13802 break;
13803 case FLASH_5761VENDOR_ATMEL_ADB081D:
13804 case FLASH_5761VENDOR_ATMEL_MDB081D:
13805 case FLASH_5761VENDOR_ST_A_M45PE80:
13806 case FLASH_5761VENDOR_ST_M_M45PE80:
13807 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13808 break;
13809 case FLASH_5761VENDOR_ATMEL_ADB041D:
13810 case FLASH_5761VENDOR_ATMEL_MDB041D:
13811 case FLASH_5761VENDOR_ST_A_M45PE40:
13812 case FLASH_5761VENDOR_ST_M_M45PE40:
13813 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13814 break;
13815 case FLASH_5761VENDOR_ATMEL_ADB021D:
13816 case FLASH_5761VENDOR_ATMEL_MDB021D:
13817 case FLASH_5761VENDOR_ST_A_M45PE20:
13818 case FLASH_5761VENDOR_ST_M_M45PE20:
13819 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13820 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070013821 }
13822 }
13823}
13824
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013825static void tg3_get_5906_nvram_info(struct tg3 *tp)
Michael Chanb5d37722006-09-27 16:06:21 -070013826{
13827 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013828 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070013829 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13830}
13831
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013832static void tg3_get_57780_nvram_info(struct tg3 *tp)
Matt Carlson321d32a2008-11-21 17:22:19 -080013833{
13834 u32 nvcfg1;
13835
13836 nvcfg1 = tr32(NVRAM_CFG1);
13837
13838 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13839 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
13840 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
13841 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013842 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080013843 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13844
13845 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13846 tw32(NVRAM_CFG1, nvcfg1);
13847 return;
13848 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13849 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
13850 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
13851 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
13852 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
13853 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
13854 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
13855 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013856 tg3_flag_set(tp, NVRAM_BUFFERED);
13857 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080013858
13859 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13860 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13861 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
13862 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
13863 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13864 break;
13865 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
13866 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
13867 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13868 break;
13869 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
13870 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
13871 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13872 break;
13873 }
13874 break;
13875 case FLASH_5752VENDOR_ST_M45PE10:
13876 case FLASH_5752VENDOR_ST_M45PE20:
13877 case FLASH_5752VENDOR_ST_M45PE40:
13878 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013879 tg3_flag_set(tp, NVRAM_BUFFERED);
13880 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080013881
13882 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13883 case FLASH_5752VENDOR_ST_M45PE10:
13884 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13885 break;
13886 case FLASH_5752VENDOR_ST_M45PE20:
13887 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13888 break;
13889 case FLASH_5752VENDOR_ST_M45PE40:
13890 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
13891 break;
13892 }
13893 break;
13894 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013895 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080013896 return;
13897 }
13898
Matt Carlsona1b950d2009-09-01 13:20:17 +000013899 tg3_nvram_get_pagesize(tp, nvcfg1);
13900 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013901 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013902}
13903
13904
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013905static void tg3_get_5717_nvram_info(struct tg3 *tp)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013906{
13907 u32 nvcfg1;
13908
13909 nvcfg1 = tr32(NVRAM_CFG1);
13910
13911 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13912 case FLASH_5717VENDOR_ATMEL_EEPROM:
13913 case FLASH_5717VENDOR_MICRO_EEPROM:
13914 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013915 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013916 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13917
13918 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13919 tw32(NVRAM_CFG1, nvcfg1);
13920 return;
13921 case FLASH_5717VENDOR_ATMEL_MDB011D:
13922 case FLASH_5717VENDOR_ATMEL_ADB011B:
13923 case FLASH_5717VENDOR_ATMEL_ADB011D:
13924 case FLASH_5717VENDOR_ATMEL_MDB021D:
13925 case FLASH_5717VENDOR_ATMEL_ADB021B:
13926 case FLASH_5717VENDOR_ATMEL_ADB021D:
13927 case FLASH_5717VENDOR_ATMEL_45USPT:
13928 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013929 tg3_flag_set(tp, NVRAM_BUFFERED);
13930 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013931
13932 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13933 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000013934 /* Detect size with tg3_nvram_get_size() */
13935 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013936 case FLASH_5717VENDOR_ATMEL_ADB021B:
13937 case FLASH_5717VENDOR_ATMEL_ADB021D:
13938 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13939 break;
13940 default:
13941 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13942 break;
13943 }
Matt Carlson321d32a2008-11-21 17:22:19 -080013944 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013945 case FLASH_5717VENDOR_ST_M_M25PE10:
13946 case FLASH_5717VENDOR_ST_A_M25PE10:
13947 case FLASH_5717VENDOR_ST_M_M45PE10:
13948 case FLASH_5717VENDOR_ST_A_M45PE10:
13949 case FLASH_5717VENDOR_ST_M_M25PE20:
13950 case FLASH_5717VENDOR_ST_A_M25PE20:
13951 case FLASH_5717VENDOR_ST_M_M45PE20:
13952 case FLASH_5717VENDOR_ST_A_M45PE20:
13953 case FLASH_5717VENDOR_ST_25USPT:
13954 case FLASH_5717VENDOR_ST_45USPT:
13955 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013956 tg3_flag_set(tp, NVRAM_BUFFERED);
13957 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013958
13959 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
13960 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000013961 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000013962 /* Detect size with tg3_nvram_get_size() */
13963 break;
13964 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000013965 case FLASH_5717VENDOR_ST_A_M45PE20:
13966 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
13967 break;
13968 default:
13969 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13970 break;
13971 }
Matt Carlson321d32a2008-11-21 17:22:19 -080013972 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000013973 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013974 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000013975 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080013976 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000013977
13978 tg3_nvram_get_pagesize(tp, nvcfg1);
13979 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013980 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013981}
13982
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013983static void tg3_get_5720_nvram_info(struct tg3 *tp)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013984{
13985 u32 nvcfg1, nvmpinstrp;
13986
13987 nvcfg1 = tr32(NVRAM_CFG1);
13988 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
13989
Joe Perches41535772013-02-16 11:20:04 +000013990 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000013991 if (!(nvcfg1 & NVRAM_CFG1_5762VENDOR_MASK)) {
13992 tg3_flag_set(tp, NO_NVRAM);
13993 return;
13994 }
13995
13996 switch (nvmpinstrp) {
13997 case FLASH_5762_EEPROM_HD:
13998 nvmpinstrp = FLASH_5720_EEPROM_HD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030013999 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014000 case FLASH_5762_EEPROM_LD:
14001 nvmpinstrp = FLASH_5720_EEPROM_LD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014002 break;
Michael Chanf6334bb2013-04-09 08:48:02 +000014003 case FLASH_5720VENDOR_M_ST_M45PE20:
14004 /* This pinstrap supports multiple sizes, so force it
14005 * to read the actual size from location 0xf0.
14006 */
14007 nvmpinstrp = FLASH_5720VENDOR_ST_45USPT;
14008 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014009 }
14010 }
14011
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014012 switch (nvmpinstrp) {
14013 case FLASH_5720_EEPROM_HD:
14014 case FLASH_5720_EEPROM_LD:
14015 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014016 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014017
14018 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14019 tw32(NVRAM_CFG1, nvcfg1);
14020 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
14021 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14022 else
14023 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
14024 return;
14025 case FLASH_5720VENDOR_M_ATMEL_DB011D:
14026 case FLASH_5720VENDOR_A_ATMEL_DB011B:
14027 case FLASH_5720VENDOR_A_ATMEL_DB011D:
14028 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14029 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14030 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14031 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14032 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14033 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14034 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14035 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14036 case FLASH_5720VENDOR_ATMEL_45USPT:
14037 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014038 tg3_flag_set(tp, NVRAM_BUFFERED);
14039 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014040
14041 switch (nvmpinstrp) {
14042 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14043 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14044 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14045 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14046 break;
14047 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14048 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14049 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14050 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14051 break;
14052 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14053 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14054 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14055 break;
14056 default:
Joe Perches41535772013-02-16 11:20:04 +000014057 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014058 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014059 break;
14060 }
14061 break;
14062 case FLASH_5720VENDOR_M_ST_M25PE10:
14063 case FLASH_5720VENDOR_M_ST_M45PE10:
14064 case FLASH_5720VENDOR_A_ST_M25PE10:
14065 case FLASH_5720VENDOR_A_ST_M45PE10:
14066 case FLASH_5720VENDOR_M_ST_M25PE20:
14067 case FLASH_5720VENDOR_M_ST_M45PE20:
14068 case FLASH_5720VENDOR_A_ST_M25PE20:
14069 case FLASH_5720VENDOR_A_ST_M45PE20:
14070 case FLASH_5720VENDOR_M_ST_M25PE40:
14071 case FLASH_5720VENDOR_M_ST_M45PE40:
14072 case FLASH_5720VENDOR_A_ST_M25PE40:
14073 case FLASH_5720VENDOR_A_ST_M45PE40:
14074 case FLASH_5720VENDOR_M_ST_M25PE80:
14075 case FLASH_5720VENDOR_M_ST_M45PE80:
14076 case FLASH_5720VENDOR_A_ST_M25PE80:
14077 case FLASH_5720VENDOR_A_ST_M45PE80:
14078 case FLASH_5720VENDOR_ST_25USPT:
14079 case FLASH_5720VENDOR_ST_45USPT:
14080 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014081 tg3_flag_set(tp, NVRAM_BUFFERED);
14082 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014083
14084 switch (nvmpinstrp) {
14085 case FLASH_5720VENDOR_M_ST_M25PE20:
14086 case FLASH_5720VENDOR_M_ST_M45PE20:
14087 case FLASH_5720VENDOR_A_ST_M25PE20:
14088 case FLASH_5720VENDOR_A_ST_M45PE20:
14089 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14090 break;
14091 case FLASH_5720VENDOR_M_ST_M25PE40:
14092 case FLASH_5720VENDOR_M_ST_M45PE40:
14093 case FLASH_5720VENDOR_A_ST_M25PE40:
14094 case FLASH_5720VENDOR_A_ST_M45PE40:
14095 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14096 break;
14097 case FLASH_5720VENDOR_M_ST_M25PE80:
14098 case FLASH_5720VENDOR_M_ST_M45PE80:
14099 case FLASH_5720VENDOR_A_ST_M25PE80:
14100 case FLASH_5720VENDOR_A_ST_M45PE80:
14101 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14102 break;
14103 default:
Joe Perches41535772013-02-16 11:20:04 +000014104 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014105 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014106 break;
14107 }
14108 break;
14109 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014110 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014111 return;
14112 }
14113
14114 tg3_nvram_get_pagesize(tp, nvcfg1);
14115 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014116 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Michael Chanc86a8562013-01-06 12:51:08 +000014117
Joe Perches41535772013-02-16 11:20:04 +000014118 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014119 u32 val;
14120
14121 if (tg3_nvram_read(tp, 0, &val))
14122 return;
14123
14124 if (val != TG3_EEPROM_MAGIC &&
14125 (val & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW)
14126 tg3_flag_set(tp, NO_NVRAM);
14127 }
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014128}
14129
Linus Torvalds1da177e2005-04-16 15:20:36 -070014130/* Chips other than 5700/5701 use the NVRAM for fetching info. */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014131static void tg3_nvram_init(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014132{
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014133 if (tg3_flag(tp, IS_SSB_CORE)) {
14134 /* No NVRAM and EEPROM on the SSB Broadcom GigE core. */
14135 tg3_flag_clear(tp, NVRAM);
14136 tg3_flag_clear(tp, NVRAM_BUFFERED);
14137 tg3_flag_set(tp, NO_NVRAM);
14138 return;
14139 }
14140
Linus Torvalds1da177e2005-04-16 15:20:36 -070014141 tw32_f(GRC_EEPROM_ADDR,
14142 (EEPROM_ADDR_FSM_RESET |
14143 (EEPROM_DEFAULT_CLOCK_PERIOD <<
14144 EEPROM_ADDR_CLKPERD_SHIFT)));
14145
Michael Chan9d57f012006-12-07 00:23:25 -080014146 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014147
14148 /* Enable seeprom accesses. */
14149 tw32_f(GRC_LOCAL_CTRL,
14150 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
14151 udelay(100);
14152
Joe Perches41535772013-02-16 11:20:04 +000014153 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14154 tg3_asic_rev(tp) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000014155 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014156
Michael Chanec41c7d2006-01-17 02:40:55 -080014157 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014158 netdev_warn(tp->dev,
14159 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000014160 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080014161 return;
14162 }
Michael Chane6af3012005-04-21 17:12:05 -070014163 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014164
Matt Carlson989a9d22007-05-05 11:51:05 -070014165 tp->nvram_size = 0;
14166
Joe Perches41535772013-02-16 11:20:04 +000014167 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan361b4ac2005-04-21 17:11:21 -070014168 tg3_get_5752_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014169 else if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chand3c7b882006-03-23 01:28:25 -080014170 tg3_get_5755_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014171 else if (tg3_asic_rev(tp) == ASIC_REV_5787 ||
14172 tg3_asic_rev(tp) == ASIC_REV_5784 ||
14173 tg3_asic_rev(tp) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080014174 tg3_get_5787_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014175 else if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014176 tg3_get_5761_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014177 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014178 tg3_get_5906_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014179 else if (tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014180 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080014181 tg3_get_57780_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014182 else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
14183 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014184 tg3_get_5717_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014185 else if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
14186 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014187 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070014188 else
14189 tg3_get_nvram_info(tp);
14190
Matt Carlson989a9d22007-05-05 11:51:05 -070014191 if (tp->nvram_size == 0)
14192 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014193
Michael Chane6af3012005-04-21 17:12:05 -070014194 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080014195 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014196
14197 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014198 tg3_flag_clear(tp, NVRAM);
14199 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014200
14201 tg3_get_eeprom_size(tp);
14202 }
14203}
14204
Linus Torvalds1da177e2005-04-16 15:20:36 -070014205struct subsys_tbl_ent {
14206 u16 subsys_vendor, subsys_devid;
14207 u32 phy_id;
14208};
14209
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014210static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014211 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014212 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014213 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014214 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014215 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014216 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014217 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014218 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14219 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
14220 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014221 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014222 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014223 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014224 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14225 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
14226 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014227 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014228 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014229 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014230 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014231 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014232 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014233 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014234
14235 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014236 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014237 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014238 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014239 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014240 { TG3PCI_SUBVENDOR_ID_3COM,
14241 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
14242 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014243 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014244 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014245 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014246
14247 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014248 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014249 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014250 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014251 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014252 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014253 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014254 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014255 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014256
14257 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014258 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014259 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014260 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014261 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014262 { TG3PCI_SUBVENDOR_ID_COMPAQ,
14263 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
14264 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014265 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014266 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014267 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014268
14269 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014270 { TG3PCI_SUBVENDOR_ID_IBM,
14271 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014272};
14273
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014274static struct subsys_tbl_ent *tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014275{
14276 int i;
14277
14278 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
14279 if ((subsys_id_to_phy_id[i].subsys_vendor ==
14280 tp->pdev->subsystem_vendor) &&
14281 (subsys_id_to_phy_id[i].subsys_devid ==
14282 tp->pdev->subsystem_device))
14283 return &subsys_id_to_phy_id[i];
14284 }
14285 return NULL;
14286}
14287
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014288static void tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014289{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014290 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070014291
Matt Carlson79eb6902010-02-17 15:17:03 +000014292 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014293 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14294
Gary Zambranoa85feb82007-05-05 11:52:19 -070014295 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000014296 tg3_flag_set(tp, EEPROM_WRITE_PROT);
14297 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080014298
Joe Perches41535772013-02-16 11:20:04 +000014299 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080014300 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014301 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14302 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014303 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014304 val = tr32(VCPU_CFGSHDW);
14305 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000014306 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070014307 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014308 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014309 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014310 device_set_wakeup_enable(&tp->pdev->dev, true);
14311 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014312 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070014313 }
14314
Linus Torvalds1da177e2005-04-16 15:20:36 -070014315 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
14316 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
14317 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070014318 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014319 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014320
14321 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
14322 tp->nic_sram_data_cfg = nic_cfg;
14323
14324 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
14325 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000014326 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14327 tg3_asic_rev(tp) != ASIC_REV_5701 &&
14328 tg3_asic_rev(tp) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014329 (ver > 0) && (ver < 0x100))
14330 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
14331
Joe Perches41535772013-02-16 11:20:04 +000014332 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlsona9daf362008-05-25 23:49:44 -070014333 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
14334
Linus Torvalds1da177e2005-04-16 15:20:36 -070014335 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
14336 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
14337 eeprom_phy_serdes = 1;
14338
14339 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
14340 if (nic_phy_id != 0) {
14341 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
14342 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
14343
14344 eeprom_phy_id = (id1 >> 16) << 10;
14345 eeprom_phy_id |= (id2 & 0xfc00) << 16;
14346 eeprom_phy_id |= (id2 & 0x03ff) << 0;
14347 } else
14348 eeprom_phy_id = 0;
14349
Michael Chan7d0c41e2005-04-21 17:06:20 -070014350 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070014351 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000014352 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014353 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000014354 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014355 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070014356 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070014357
Joe Perches63c3a662011-04-26 08:12:10 +000014358 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014359 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
14360 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070014361 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014362 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
14363
14364 switch (led_cfg) {
14365 default:
14366 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
14367 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14368 break;
14369
14370 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
14371 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14372 break;
14373
14374 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
14375 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070014376
14377 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
14378 * read on some older 5700/5701 bootcode.
14379 */
Joe Perches41535772013-02-16 11:20:04 +000014380 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
14381 tg3_asic_rev(tp) == ASIC_REV_5701)
Michael Chan9ba27792005-06-06 15:16:20 -070014382 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14383
Linus Torvalds1da177e2005-04-16 15:20:36 -070014384 break;
14385
14386 case SHASTA_EXT_LED_SHARED:
14387 tp->led_ctrl = LED_CTRL_MODE_SHARED;
Joe Perches41535772013-02-16 11:20:04 +000014388 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
14389 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014390 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14391 LED_CTRL_MODE_PHY_2);
14392 break;
14393
14394 case SHASTA_EXT_LED_MAC:
14395 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
14396 break;
14397
14398 case SHASTA_EXT_LED_COMBO:
14399 tp->led_ctrl = LED_CTRL_MODE_COMBO;
Joe Perches41535772013-02-16 11:20:04 +000014400 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014401 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14402 LED_CTRL_MODE_PHY_2);
14403 break;
14404
Stephen Hemminger855e1112008-04-16 16:37:28 -070014405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014406
Joe Perches41535772013-02-16 11:20:04 +000014407 if ((tg3_asic_rev(tp) == ASIC_REV_5700 ||
14408 tg3_asic_rev(tp) == ASIC_REV_5701) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014409 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
14410 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14411
Joe Perches41535772013-02-16 11:20:04 +000014412 if (tg3_chip_rev(tp) == CHIPREV_5784_AX)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014413 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080014414
Michael Chan9d26e212006-12-07 00:21:14 -080014415 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000014416 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014417 if ((tp->pdev->subsystem_vendor ==
14418 PCI_VENDOR_ID_ARIMA) &&
14419 (tp->pdev->subsystem_device == 0x205a ||
14420 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000014421 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014422 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014423 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14424 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014426
14427 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000014428 tg3_flag_set(tp, ENABLE_ASF);
14429 if (tg3_flag(tp, 5750_PLUS))
14430 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014431 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014432
14433 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014434 tg3_flag(tp, 5750_PLUS))
14435 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014436
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014437 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070014438 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000014439 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014440
Joe Perches63c3a662011-04-26 08:12:10 +000014441 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014442 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014443 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014444 device_set_wakeup_enable(&tp->pdev->dev, true);
14445 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014446
Linus Torvalds1da177e2005-04-16 15:20:36 -070014447 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014448 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014449
14450 /* serdes signal pre-emphasis in register 0x590 set by */
14451 /* bootcode if bit 18 is set */
14452 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014453 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014454
Joe Perches63c3a662011-04-26 08:12:10 +000014455 if ((tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000014456 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
14457 tg3_chip_rev(tp) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080014458 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014459 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080014460
Joe Perches63c3a662011-04-26 08:12:10 +000014461 if (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +000014462 tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014463 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070014464 u32 cfg3;
14465
14466 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
14467 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000014468 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070014469 }
Matt Carlsona9daf362008-05-25 23:49:44 -070014470
Matt Carlson14417062010-02-17 15:16:59 +000014471 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000014472 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070014473 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014474 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070014475 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014476 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014477 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014478done:
Joe Perches63c3a662011-04-26 08:12:10 +000014479 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014480 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000014481 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014482 else
14483 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070014484}
14485
Michael Chanc86a8562013-01-06 12:51:08 +000014486static int tg3_ape_otp_read(struct tg3 *tp, u32 offset, u32 *val)
14487{
14488 int i, err;
14489 u32 val2, off = offset * 8;
14490
14491 err = tg3_nvram_lock(tp);
14492 if (err)
14493 return err;
14494
14495 tg3_ape_write32(tp, TG3_APE_OTP_ADDR, off | APE_OTP_ADDR_CPU_ENABLE);
14496 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, APE_OTP_CTRL_PROG_EN |
14497 APE_OTP_CTRL_CMD_RD | APE_OTP_CTRL_START);
14498 tg3_ape_read32(tp, TG3_APE_OTP_CTRL);
14499 udelay(10);
14500
14501 for (i = 0; i < 100; i++) {
14502 val2 = tg3_ape_read32(tp, TG3_APE_OTP_STATUS);
14503 if (val2 & APE_OTP_STATUS_CMD_DONE) {
14504 *val = tg3_ape_read32(tp, TG3_APE_OTP_RD_DATA);
14505 break;
14506 }
14507 udelay(10);
14508 }
14509
14510 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, 0);
14511
14512 tg3_nvram_unlock(tp);
14513 if (val2 & APE_OTP_STATUS_CMD_DONE)
14514 return 0;
14515
14516 return -EBUSY;
14517}
14518
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014519static int tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014520{
14521 int i;
14522 u32 val;
14523
14524 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
14525 tw32(OTP_CTRL, cmd);
14526
14527 /* Wait for up to 1 ms for command to execute. */
14528 for (i = 0; i < 100; i++) {
14529 val = tr32(OTP_STATUS);
14530 if (val & OTP_STATUS_CMD_DONE)
14531 break;
14532 udelay(10);
14533 }
14534
14535 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
14536}
14537
14538/* Read the gphy configuration from the OTP region of the chip. The gphy
14539 * configuration is a 32-bit value that straddles the alignment boundary.
14540 * We do two 32-bit reads and then shift and merge the results.
14541 */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014542static u32 tg3_read_otp_phycfg(struct tg3 *tp)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014543{
14544 u32 bhalf_otp, thalf_otp;
14545
14546 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
14547
14548 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
14549 return 0;
14550
14551 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
14552
14553 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14554 return 0;
14555
14556 thalf_otp = tr32(OTP_READ_DATA);
14557
14558 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
14559
14560 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14561 return 0;
14562
14563 bhalf_otp = tr32(OTP_READ_DATA);
14564
14565 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
14566}
14567
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014568static void tg3_phy_init_link_config(struct tg3 *tp)
Matt Carlsone256f8a2011-03-09 16:58:24 +000014569{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000014570 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014571
14572 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
14573 adv |= ADVERTISED_1000baseT_Half |
14574 ADVERTISED_1000baseT_Full;
14575
14576 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14577 adv |= ADVERTISED_100baseT_Half |
14578 ADVERTISED_100baseT_Full |
14579 ADVERTISED_10baseT_Half |
14580 ADVERTISED_10baseT_Full |
14581 ADVERTISED_TP;
14582 else
14583 adv |= ADVERTISED_FIBRE;
14584
14585 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000014586 tp->link_config.speed = SPEED_UNKNOWN;
14587 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014588 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000014589 tp->link_config.active_speed = SPEED_UNKNOWN;
14590 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000014591
14592 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014593}
14594
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014595static int tg3_phy_probe(struct tg3 *tp)
Michael Chan7d0c41e2005-04-21 17:06:20 -070014596{
14597 u32 hw_phy_id_1, hw_phy_id_2;
14598 u32 hw_phy_id, hw_phy_id_masked;
14599 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014600
Matt Carlsone256f8a2011-03-09 16:58:24 +000014601 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000014602 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000014603 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
14604
Michael Chan8151ad52012-07-29 19:15:41 +000014605 if (tg3_flag(tp, ENABLE_APE)) {
14606 switch (tp->pci_fn) {
14607 case 0:
14608 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
14609 break;
14610 case 1:
14611 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
14612 break;
14613 case 2:
14614 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
14615 break;
14616 case 3:
14617 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
14618 break;
14619 }
14620 }
14621
Joe Perches63c3a662011-04-26 08:12:10 +000014622 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014623 return tg3_phy_init(tp);
14624
Linus Torvalds1da177e2005-04-16 15:20:36 -070014625 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010014626 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014627 */
14628 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000014629 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000014630 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014631 } else {
14632 /* Now read the physical PHY_ID from the chip and verify
14633 * that it is sane. If it doesn't look good, we fall back
14634 * to either the hard-coded table based PHY_ID and failing
14635 * that the value found in the eeprom area.
14636 */
14637 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
14638 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
14639
14640 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
14641 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
14642 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
14643
Matt Carlson79eb6902010-02-17 15:17:03 +000014644 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014645 }
14646
Matt Carlson79eb6902010-02-17 15:17:03 +000014647 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014648 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000014649 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014650 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070014651 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014652 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014653 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000014654 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070014655 /* Do nothing, phy ID already set up in
14656 * tg3_get_eeprom_hw_cfg().
14657 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014658 } else {
14659 struct subsys_tbl_ent *p;
14660
14661 /* No eeprom signature? Try the hardcoded
14662 * subsys device table.
14663 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014664 p = tg3_lookup_by_subsys(tp);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014665 if (p) {
14666 tp->phy_id = p->phy_id;
14667 } else if (!tg3_flag(tp, IS_SSB_CORE)) {
14668 /* For now we saw the IDs 0xbc050cd0,
14669 * 0xbc050f80 and 0xbc050c30 on devices
14670 * connected to an BCM4785 and there are
14671 * probably more. Just assume that the phy is
14672 * supported when it is connected to a SSB core
14673 * for now.
14674 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014675 return -ENODEV;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014677
Linus Torvalds1da177e2005-04-16 15:20:36 -070014678 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000014679 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014680 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014681 }
14682 }
14683
Matt Carlsona6b68da2010-12-06 08:28:52 +000014684 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000014685 (tg3_asic_rev(tp) == ASIC_REV_5719 ||
14686 tg3_asic_rev(tp) == ASIC_REV_5720 ||
Nithin Sujirc4dab502013-03-06 17:02:34 +000014687 tg3_asic_rev(tp) == ASIC_REV_57766 ||
Joe Perches41535772013-02-16 11:20:04 +000014688 tg3_asic_rev(tp) == ASIC_REV_5762 ||
14689 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
14690 tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0) ||
14691 (tg3_asic_rev(tp) == ASIC_REV_57765 &&
14692 tg3_chip_rev_id(tp) != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000014693 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
14694
Matt Carlsone256f8a2011-03-09 16:58:24 +000014695 tg3_phy_init_link_config(tp);
14696
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014697 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014698 !tg3_flag(tp, ENABLE_APE) &&
14699 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000014700 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014701
14702 tg3_readphy(tp, MII_BMSR, &bmsr);
14703 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
14704 (bmsr & BMSR_LSTATUS))
14705 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014706
Linus Torvalds1da177e2005-04-16 15:20:36 -070014707 err = tg3_phy_reset(tp);
14708 if (err)
14709 return err;
14710
Matt Carlson42b64a42011-05-19 12:12:49 +000014711 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014712
Matt Carlsone2bf73e2011-12-08 14:40:15 +000014713 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000014714 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
14715 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014716
14717 tg3_writephy(tp, MII_BMCR,
14718 BMCR_ANENABLE | BMCR_ANRESTART);
14719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014720 }
14721
14722skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000014723 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014724 err = tg3_init_5401phy_dsp(tp);
14725 if (err)
14726 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014727
Linus Torvalds1da177e2005-04-16 15:20:36 -070014728 err = tg3_init_5401phy_dsp(tp);
14729 }
14730
Linus Torvalds1da177e2005-04-16 15:20:36 -070014731 return err;
14732}
14733
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014734static void tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014735{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000014736 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000014737 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000014738 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000014739 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014740
Matt Carlson535a4902011-07-20 10:20:56 +000014741 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000014742 if (!vpd_data)
14743 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014744
Matt Carlson535a4902011-07-20 10:20:56 +000014745 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000014746 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014747 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000014748
14749 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
14750 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
14751 i += PCI_VPD_LRDT_TAG_SIZE;
14752
Matt Carlson535a4902011-07-20 10:20:56 +000014753 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000014754 goto out_not_found;
14755
Matt Carlson184b8902010-04-05 10:19:25 +000014756 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
14757 PCI_VPD_RO_KEYWORD_MFR_ID);
14758 if (j > 0) {
14759 len = pci_vpd_info_field_size(&vpd_data[j]);
14760
14761 j += PCI_VPD_INFO_FLD_HDR_SIZE;
14762 if (j + len > block_end || len != 4 ||
14763 memcmp(&vpd_data[j], "1028", 4))
14764 goto partno;
14765
14766 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
14767 PCI_VPD_RO_KEYWORD_VENDOR0);
14768 if (j < 0)
14769 goto partno;
14770
14771 len = pci_vpd_info_field_size(&vpd_data[j]);
14772
14773 j += PCI_VPD_INFO_FLD_HDR_SIZE;
14774 if (j + len > block_end)
14775 goto partno;
14776
Kees Cook715230a2013-03-27 06:40:50 +000014777 if (len >= sizeof(tp->fw_ver))
14778 len = sizeof(tp->fw_ver) - 1;
14779 memset(tp->fw_ver, 0, sizeof(tp->fw_ver));
14780 snprintf(tp->fw_ver, sizeof(tp->fw_ver), "%.*s bc ", len,
14781 &vpd_data[j]);
Matt Carlson184b8902010-04-05 10:19:25 +000014782 }
14783
14784partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000014785 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
14786 PCI_VPD_RO_KEYWORD_PARTNO);
14787 if (i < 0)
14788 goto out_not_found;
14789
14790 len = pci_vpd_info_field_size(&vpd_data[i]);
14791
14792 i += PCI_VPD_INFO_FLD_HDR_SIZE;
14793 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000014794 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000014795 goto out_not_found;
14796
14797 memcpy(tp->board_part_number, &vpd_data[i], len);
14798
Linus Torvalds1da177e2005-04-16 15:20:36 -070014799out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000014800 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000014801 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000014802 return;
14803
14804out_no_vpd:
Joe Perches41535772013-02-16 11:20:04 +000014805 if (tg3_asic_rev(tp) == ASIC_REV_5717) {
Michael Chan79d49692012-11-05 14:26:29 +000014806 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
14807 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C)
Matt Carlson37a949c2010-09-30 10:34:33 +000014808 strcpy(tp->board_part_number, "BCM5717");
14809 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
14810 strcpy(tp->board_part_number, "BCM5718");
14811 else
14812 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000014813 } else if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson37a949c2010-09-30 10:34:33 +000014814 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
14815 strcpy(tp->board_part_number, "BCM57780");
14816 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
14817 strcpy(tp->board_part_number, "BCM57760");
14818 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
14819 strcpy(tp->board_part_number, "BCM57790");
14820 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
14821 strcpy(tp->board_part_number, "BCM57788");
14822 else
14823 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000014824 } else if (tg3_asic_rev(tp) == ASIC_REV_57765) {
Matt Carlson37a949c2010-09-30 10:34:33 +000014825 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
14826 strcpy(tp->board_part_number, "BCM57761");
14827 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
14828 strcpy(tp->board_part_number, "BCM57765");
14829 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
14830 strcpy(tp->board_part_number, "BCM57781");
14831 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
14832 strcpy(tp->board_part_number, "BCM57785");
14833 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
14834 strcpy(tp->board_part_number, "BCM57791");
14835 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
14836 strcpy(tp->board_part_number, "BCM57795");
14837 else
14838 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000014839 } else if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlson55086ad2011-12-14 11:09:59 +000014840 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
14841 strcpy(tp->board_part_number, "BCM57762");
14842 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
14843 strcpy(tp->board_part_number, "BCM57766");
14844 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
14845 strcpy(tp->board_part_number, "BCM57782");
14846 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
14847 strcpy(tp->board_part_number, "BCM57786");
14848 else
14849 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000014850 } else if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070014851 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000014852 } else {
14853nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070014854 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000014855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014856}
14857
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014858static int tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
Matt Carlson9c8a6202007-10-21 16:16:08 -070014859{
14860 u32 val;
14861
Matt Carlsone4f34112009-02-25 14:25:00 +000014862 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014863 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000014864 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070014865 val != 0)
14866 return 0;
14867
14868 return 1;
14869}
14870
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014871static void tg3_read_bc_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000014872{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014873 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000014874 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014875 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014876
14877 if (tg3_nvram_read(tp, 0xc, &offset) ||
14878 tg3_nvram_read(tp, 0x4, &start))
14879 return;
14880
14881 offset = tg3_nvram_logical_addr(tp, offset);
14882
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014883 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000014884 return;
14885
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014886 if ((val & 0xfc000000) == 0x0c000000) {
14887 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000014888 return;
14889
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014890 if (val == 0)
14891 newver = true;
14892 }
14893
Matt Carlson75f99362010-04-05 10:19:24 +000014894 dst_off = strlen(tp->fw_ver);
14895
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014896 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000014897 if (TG3_VER_SIZE - dst_off < 16 ||
14898 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014899 return;
14900
14901 offset = offset + ver_offset - start;
14902 for (i = 0; i < 16; i += 4) {
14903 __be32 v;
14904 if (tg3_nvram_read_be32(tp, offset + i, &v))
14905 return;
14906
Matt Carlson75f99362010-04-05 10:19:24 +000014907 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000014908 }
14909 } else {
14910 u32 major, minor;
14911
14912 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
14913 return;
14914
14915 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
14916 TG3_NVM_BCVER_MAJSFT;
14917 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000014918 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
14919 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000014920 }
14921}
14922
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014923static void tg3_read_hwsb_ver(struct tg3 *tp)
Matt Carlsona6f6cb12009-02-25 14:27:43 +000014924{
14925 u32 val, major, minor;
14926
14927 /* Use native endian representation */
14928 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
14929 return;
14930
14931 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
14932 TG3_NVM_HWSB_CFG1_MAJSFT;
14933 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
14934 TG3_NVM_HWSB_CFG1_MINSFT;
14935
14936 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
14937}
14938
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014939static void tg3_read_sb_ver(struct tg3 *tp, u32 val)
Matt Carlsondfe00d72008-11-21 17:19:41 -080014940{
14941 u32 offset, major, minor, build;
14942
Matt Carlson75f99362010-04-05 10:19:24 +000014943 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080014944
14945 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
14946 return;
14947
14948 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
14949 case TG3_EEPROM_SB_REVISION_0:
14950 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
14951 break;
14952 case TG3_EEPROM_SB_REVISION_2:
14953 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
14954 break;
14955 case TG3_EEPROM_SB_REVISION_3:
14956 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
14957 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000014958 case TG3_EEPROM_SB_REVISION_4:
14959 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
14960 break;
14961 case TG3_EEPROM_SB_REVISION_5:
14962 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
14963 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000014964 case TG3_EEPROM_SB_REVISION_6:
14965 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
14966 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080014967 default:
14968 return;
14969 }
14970
Matt Carlsone4f34112009-02-25 14:25:00 +000014971 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080014972 return;
14973
14974 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
14975 TG3_EEPROM_SB_EDH_BLD_SHFT;
14976 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
14977 TG3_EEPROM_SB_EDH_MAJ_SHFT;
14978 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
14979
14980 if (minor > 99 || build > 26)
14981 return;
14982
Matt Carlson75f99362010-04-05 10:19:24 +000014983 offset = strlen(tp->fw_ver);
14984 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
14985 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080014986
14987 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000014988 offset = strlen(tp->fw_ver);
14989 if (offset < TG3_VER_SIZE - 1)
14990 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080014991 }
14992}
14993
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014994static void tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080014995{
14996 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000014997 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070014998
14999 for (offset = TG3_NVM_DIR_START;
15000 offset < TG3_NVM_DIR_END;
15001 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000015002 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015003 return;
15004
15005 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
15006 break;
15007 }
15008
15009 if (offset == TG3_NVM_DIR_END)
15010 return;
15011
Joe Perches63c3a662011-04-26 08:12:10 +000015012 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015013 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000015014 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015015 return;
15016
Matt Carlsone4f34112009-02-25 14:25:00 +000015017 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015018 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015019 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015020 return;
15021
15022 offset += val - start;
15023
Matt Carlsonacd9c112009-02-25 14:26:33 +000015024 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015025
Matt Carlsonacd9c112009-02-25 14:26:33 +000015026 tp->fw_ver[vlen++] = ',';
15027 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070015028
15029 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000015030 __be32 v;
15031 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015032 return;
15033
Al Virob9fc7dc2007-12-17 22:59:57 -080015034 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015035
Matt Carlsonacd9c112009-02-25 14:26:33 +000015036 if (vlen > TG3_VER_SIZE - sizeof(v)) {
15037 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015038 break;
15039 }
15040
Matt Carlsonacd9c112009-02-25 14:26:33 +000015041 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
15042 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015043 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000015044}
15045
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015046static void tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000015047{
Matt Carlson7fd76442009-02-25 14:27:20 +000015048 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000015049
15050 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
15051 if (apedata != APE_SEG_SIG_MAGIC)
15052 return;
15053
15054 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
15055 if (!(apedata & APE_FW_STATUS_READY))
15056 return;
15057
Michael Chan165f4d12012-07-16 16:23:59 +000015058 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
15059 tg3_flag_set(tp, APE_HAS_NCSI);
15060}
15061
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015062static void tg3_read_dash_ver(struct tg3 *tp)
Michael Chan165f4d12012-07-16 16:23:59 +000015063{
15064 int vlen;
15065 u32 apedata;
15066 char *fwtype;
15067
Matt Carlson7fd76442009-02-25 14:27:20 +000015068 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
15069
Michael Chan165f4d12012-07-16 16:23:59 +000015070 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000015071 fwtype = "NCSI";
Michael Chanc86a8562013-01-06 12:51:08 +000015072 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725)
15073 fwtype = "SMASH";
Michael Chan165f4d12012-07-16 16:23:59 +000015074 else
Matt Carlsonecc79642010-08-02 11:26:01 +000015075 fwtype = "DASH";
15076
Matt Carlson7fd76442009-02-25 14:27:20 +000015077 vlen = strlen(tp->fw_ver);
15078
Matt Carlsonecc79642010-08-02 11:26:01 +000015079 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
15080 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000015081 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
15082 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
15083 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
15084 (apedata & APE_FW_VERSION_BLDMSK));
15085}
15086
Michael Chanc86a8562013-01-06 12:51:08 +000015087static void tg3_read_otp_ver(struct tg3 *tp)
15088{
15089 u32 val, val2;
15090
Joe Perches41535772013-02-16 11:20:04 +000015091 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000015092 return;
15093
15094 if (!tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0, &val) &&
15095 !tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0 + 4, &val2) &&
15096 TG3_OTP_MAGIC0_VALID(val)) {
15097 u64 val64 = (u64) val << 32 | val2;
15098 u32 ver = 0;
15099 int i, vlen;
15100
15101 for (i = 0; i < 7; i++) {
15102 if ((val64 & 0xff) == 0)
15103 break;
15104 ver = val64 & 0xff;
15105 val64 >>= 8;
15106 }
15107 vlen = strlen(tp->fw_ver);
15108 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " .%02d", ver);
15109 }
15110}
15111
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015112static void tg3_read_fw_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015113{
15114 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000015115 bool vpd_vers = false;
15116
15117 if (tp->fw_ver[0] != 0)
15118 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015119
Joe Perches63c3a662011-04-26 08:12:10 +000015120 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000015121 strcat(tp->fw_ver, "sb");
Michael Chanc86a8562013-01-06 12:51:08 +000015122 tg3_read_otp_ver(tp);
Matt Carlsondf259d82009-04-20 06:57:14 +000015123 return;
15124 }
15125
Matt Carlsonacd9c112009-02-25 14:26:33 +000015126 if (tg3_nvram_read(tp, 0, &val))
15127 return;
15128
15129 if (val == TG3_EEPROM_MAGIC)
15130 tg3_read_bc_ver(tp);
15131 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
15132 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015133 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
15134 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015135
Michael Chan165f4d12012-07-16 16:23:59 +000015136 if (tg3_flag(tp, ENABLE_ASF)) {
15137 if (tg3_flag(tp, ENABLE_APE)) {
15138 tg3_probe_ncsi(tp);
15139 if (!vpd_vers)
15140 tg3_read_dash_ver(tp);
15141 } else if (!vpd_vers) {
15142 tg3_read_mgmtfw_ver(tp);
15143 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000015144 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070015145
15146 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080015147}
15148
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015149static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
15150{
Joe Perches63c3a662011-04-26 08:12:10 +000015151 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015152 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000015153 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015154 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015155 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000015156 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015157}
15158
Matt Carlson41434702011-03-09 16:58:22 +000015159static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015160 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
15161 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
15162 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
15163 { },
15164};
15165
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015166static struct pci_dev *tg3_find_peer(struct tg3 *tp)
Matt Carlson16c7fa72012-02-13 10:20:10 +000015167{
15168 struct pci_dev *peer;
15169 unsigned int func, devnr = tp->pdev->devfn & ~7;
15170
15171 for (func = 0; func < 8; func++) {
15172 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15173 if (peer && peer != tp->pdev)
15174 break;
15175 pci_dev_put(peer);
15176 }
15177 /* 5704 can be configured in single-port mode, set peer to
15178 * tp->pdev in that case.
15179 */
15180 if (!peer) {
15181 peer = tp->pdev;
15182 return peer;
15183 }
15184
15185 /*
15186 * We don't need to keep the refcount elevated; there's no way
15187 * to remove one half of this device without removing the other
15188 */
15189 pci_dev_put(peer);
15190
15191 return peer;
15192}
15193
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015194static void tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
Matt Carlson42b123b2012-02-13 15:20:13 +000015195{
15196 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000015197 if (tg3_asic_rev(tp) == ASIC_REV_USE_PROD_ID_REG) {
Matt Carlson42b123b2012-02-13 15:20:13 +000015198 u32 reg;
15199
15200 /* All devices that use the alternate
15201 * ASIC REV location have a CPMU.
15202 */
15203 tg3_flag_set(tp, CPMU_PRESENT);
15204
15205 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000015206 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015207 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15208 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000015209 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
15210 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
15211 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
15212 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727)
Matt Carlson42b123b2012-02-13 15:20:13 +000015213 reg = TG3PCI_GEN2_PRODID_ASICREV;
15214 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
15215 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
15216 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
15217 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
15218 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
15219 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
15220 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
15221 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
15222 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
15223 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15224 reg = TG3PCI_GEN15_PRODID_ASICREV;
15225 else
15226 reg = TG3PCI_PRODID_ASICREV;
15227
15228 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
15229 }
15230
15231 /* Wrong chip ID in 5752 A0. This code can be removed later
15232 * as A0 is not in production.
15233 */
Joe Perches41535772013-02-16 11:20:04 +000015234 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5752_A0_HW)
Matt Carlson42b123b2012-02-13 15:20:13 +000015235 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
15236
Joe Perches41535772013-02-16 11:20:04 +000015237 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_C0)
Michael Chan79d49692012-11-05 14:26:29 +000015238 tp->pci_chip_rev_id = CHIPREV_ID_5720_A0;
15239
Joe Perches41535772013-02-16 11:20:04 +000015240 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15241 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15242 tg3_asic_rev(tp) == ASIC_REV_5720)
Matt Carlson42b123b2012-02-13 15:20:13 +000015243 tg3_flag_set(tp, 5717_PLUS);
15244
Joe Perches41535772013-02-16 11:20:04 +000015245 if (tg3_asic_rev(tp) == ASIC_REV_57765 ||
15246 tg3_asic_rev(tp) == ASIC_REV_57766)
Matt Carlson42b123b2012-02-13 15:20:13 +000015247 tg3_flag_set(tp, 57765_CLASS);
15248
Michael Chanc65a17f2013-01-06 12:51:07 +000015249 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015250 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson42b123b2012-02-13 15:20:13 +000015251 tg3_flag_set(tp, 57765_PLUS);
15252
15253 /* Intentionally exclude ASIC_REV_5906 */
Joe Perches41535772013-02-16 11:20:04 +000015254 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
15255 tg3_asic_rev(tp) == ASIC_REV_5787 ||
15256 tg3_asic_rev(tp) == ASIC_REV_5784 ||
15257 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15258 tg3_asic_rev(tp) == ASIC_REV_5785 ||
15259 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015260 tg3_flag(tp, 57765_PLUS))
15261 tg3_flag_set(tp, 5755_PLUS);
15262
Joe Perches41535772013-02-16 11:20:04 +000015263 if (tg3_asic_rev(tp) == ASIC_REV_5780 ||
15264 tg3_asic_rev(tp) == ASIC_REV_5714)
Matt Carlson42b123b2012-02-13 15:20:13 +000015265 tg3_flag_set(tp, 5780_CLASS);
15266
Joe Perches41535772013-02-16 11:20:04 +000015267 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
15268 tg3_asic_rev(tp) == ASIC_REV_5752 ||
15269 tg3_asic_rev(tp) == ASIC_REV_5906 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015270 tg3_flag(tp, 5755_PLUS) ||
15271 tg3_flag(tp, 5780_CLASS))
15272 tg3_flag_set(tp, 5750_PLUS);
15273
Joe Perches41535772013-02-16 11:20:04 +000015274 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015275 tg3_flag(tp, 5750_PLUS))
15276 tg3_flag_set(tp, 5705_PLUS);
15277}
15278
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015279static bool tg3_10_100_only_device(struct tg3 *tp,
15280 const struct pci_device_id *ent)
15281{
15282 u32 grc_misc_cfg = tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK;
15283
Joe Perches41535772013-02-16 11:20:04 +000015284 if ((tg3_asic_rev(tp) == ASIC_REV_5703 &&
15285 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015286 (tp->phy_flags & TG3_PHYFLG_IS_FET))
15287 return true;
15288
15289 if (ent->driver_data & TG3_DRV_DATA_FLAG_10_100_ONLY) {
Joe Perches41535772013-02-16 11:20:04 +000015290 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015291 if (ent->driver_data & TG3_DRV_DATA_FLAG_5705_10_100)
15292 return true;
15293 } else {
15294 return true;
15295 }
15296 }
15297
15298 return false;
15299}
15300
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000015301static int tg3_get_invariants(struct tg3 *tp, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015302{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015303 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015304 u32 pci_state_reg, grc_misc_cfg;
15305 u32 val;
15306 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015307 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015308
Linus Torvalds1da177e2005-04-16 15:20:36 -070015309 /* Force memory write invalidate off. If we leave it on,
15310 * then on 5700_BX chips we have to enable a workaround.
15311 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
15312 * to match the cacheline size. The Broadcom driver have this
15313 * workaround but turns MWI off all the times so never uses
15314 * it. This seems to suggest that the workaround is insufficient.
15315 */
15316 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15317 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
15318 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15319
Matt Carlson16821282011-07-13 09:27:28 +000015320 /* Important! -- Make sure register accesses are byteswapped
15321 * correctly. Also, for those chips that require it, make
15322 * sure that indirect register accesses are enabled before
15323 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015324 */
15325 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15326 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000015327 tp->misc_host_ctrl |= (misc_ctrl_reg &
15328 MISC_HOST_CTRL_CHIPREV);
15329 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15330 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015331
Matt Carlson42b123b2012-02-13 15:20:13 +000015332 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070015333
Michael Chan68929142005-08-09 20:17:14 -070015334 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
15335 * we need to disable memory and use config. cycles
15336 * only to access all registers. The 5702/03 chips
15337 * can mistakenly decode the special cycles from the
15338 * ICH chipsets as memory write cycles, causing corruption
15339 * of register and memory space. Only certain ICH bridges
15340 * will drive special cycles with non-zero data during the
15341 * address phase which can fall within the 5703's address
15342 * range. This is not an ICH bug as the PCI spec allows
15343 * non-zero address during special cycles. However, only
15344 * these ICH bridges are known to drive non-zero addresses
15345 * during special cycles.
15346 *
15347 * Since special cycles do not cross PCI bridges, we only
15348 * enable this workaround if the 5703 is on the secondary
15349 * bus of these ICH bridges.
15350 */
Joe Perches41535772013-02-16 11:20:04 +000015351 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1) ||
15352 (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A2)) {
Michael Chan68929142005-08-09 20:17:14 -070015353 static struct tg3_dev_id {
15354 u32 vendor;
15355 u32 device;
15356 u32 rev;
15357 } ich_chipsets[] = {
15358 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
15359 PCI_ANY_ID },
15360 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
15361 PCI_ANY_ID },
15362 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
15363 0xa },
15364 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
15365 PCI_ANY_ID },
15366 { },
15367 };
15368 struct tg3_dev_id *pci_id = &ich_chipsets[0];
15369 struct pci_dev *bridge = NULL;
15370
15371 while (pci_id->vendor != 0) {
15372 bridge = pci_get_device(pci_id->vendor, pci_id->device,
15373 bridge);
15374 if (!bridge) {
15375 pci_id++;
15376 continue;
15377 }
15378 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070015379 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070015380 continue;
15381 }
15382 if (bridge->subordinate &&
15383 (bridge->subordinate->number ==
15384 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015385 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070015386 pci_dev_put(bridge);
15387 break;
15388 }
15389 }
15390 }
15391
Joe Perches41535772013-02-16 11:20:04 +000015392 if (tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070015393 static struct tg3_dev_id {
15394 u32 vendor;
15395 u32 device;
15396 } bridge_chipsets[] = {
15397 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
15398 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
15399 { },
15400 };
15401 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
15402 struct pci_dev *bridge = NULL;
15403
15404 while (pci_id->vendor != 0) {
15405 bridge = pci_get_device(pci_id->vendor,
15406 pci_id->device,
15407 bridge);
15408 if (!bridge) {
15409 pci_id++;
15410 continue;
15411 }
15412 if (bridge->subordinate &&
15413 (bridge->subordinate->number <=
15414 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015415 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba2008-04-19 18:12:33 -070015416 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015417 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070015418 pci_dev_put(bridge);
15419 break;
15420 }
15421 }
15422 }
15423
Michael Chan4a29cc22006-03-19 13:21:12 -080015424 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
15425 * DMA addresses > 40-bit. This bridge may have other additional
15426 * 57xx devices behind it in some 4-port NIC designs for example.
15427 * Any tg3 device found behind the bridge will also need the 40-bit
15428 * DMA workaround.
15429 */
Matt Carlson42b123b2012-02-13 15:20:13 +000015430 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015431 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070015432 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000015433 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080015434 struct pci_dev *bridge = NULL;
15435
15436 do {
15437 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
15438 PCI_DEVICE_ID_SERVERWORKS_EPB,
15439 bridge);
15440 if (bridge && bridge->subordinate &&
15441 (bridge->subordinate->number <=
15442 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015443 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080015444 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015445 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080015446 pci_dev_put(bridge);
15447 break;
15448 }
15449 } while (bridge);
15450 }
Michael Chan4cf78e42005-07-25 12:29:19 -070015451
Joe Perches41535772013-02-16 11:20:04 +000015452 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
15453 tg3_asic_rev(tp) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070015454 tp->pdev_peer = tg3_find_peer(tp);
15455
Matt Carlson507399f2009-11-13 13:03:37 +000015456 /* Determine TSO capabilities */
Joe Perches41535772013-02-16 11:20:04 +000015457 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000015458 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000015459 else if (tg3_flag(tp, 57765_PLUS))
15460 tg3_flag_set(tp, HW_TSO_3);
15461 else if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015462 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015463 tg3_flag_set(tp, HW_TSO_2);
15464 else if (tg3_flag(tp, 5750_PLUS)) {
15465 tg3_flag_set(tp, HW_TSO_1);
15466 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015467 if (tg3_asic_rev(tp) == ASIC_REV_5750 &&
15468 tg3_chip_rev_id(tp) >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000015469 tg3_flag_clear(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015470 } else if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
15471 tg3_asic_rev(tp) != ASIC_REV_5701 &&
15472 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Matt Carlson1caf13e2013-03-06 17:02:29 +000015473 tg3_flag_set(tp, FW_TSO);
15474 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015475 if (tg3_asic_rev(tp) == ASIC_REV_5705)
Matt Carlson507399f2009-11-13 13:03:37 +000015476 tp->fw_needed = FIRMWARE_TG3TSO5;
15477 else
15478 tp->fw_needed = FIRMWARE_TG3TSO;
15479 }
15480
Matt Carlsondabc5c62011-05-19 12:12:52 +000015481 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000015482 if (tg3_flag(tp, HW_TSO_1) ||
15483 tg3_flag(tp, HW_TSO_2) ||
15484 tg3_flag(tp, HW_TSO_3) ||
Matt Carlson1caf13e2013-03-06 17:02:29 +000015485 tg3_flag(tp, FW_TSO)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015486 /* For firmware TSO, assume ASF is disabled.
15487 * We'll disable TSO later if we discover ASF
15488 * is enabled in tg3_get_eeprom_hw_cfg().
15489 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000015490 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015491 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000015492 tg3_flag_clear(tp, TSO_CAPABLE);
15493 tg3_flag_clear(tp, TSO_BUG);
15494 tp->fw_needed = NULL;
15495 }
15496
Joe Perches41535772013-02-16 11:20:04 +000015497 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0)
Matt Carlsondabc5c62011-05-19 12:12:52 +000015498 tp->fw_needed = FIRMWARE_TG3;
15499
Nithin Sujirc4dab502013-03-06 17:02:34 +000015500 if (tg3_asic_rev(tp) == ASIC_REV_57766)
15501 tp->fw_needed = FIRMWARE_TG357766;
15502
Matt Carlson507399f2009-11-13 13:03:37 +000015503 tp->irq_max = 1;
15504
Joe Perches63c3a662011-04-26 08:12:10 +000015505 if (tg3_flag(tp, 5750_PLUS)) {
15506 tg3_flag_set(tp, SUPPORT_MSI);
Joe Perches41535772013-02-16 11:20:04 +000015507 if (tg3_chip_rev(tp) == CHIPREV_5750_AX ||
15508 tg3_chip_rev(tp) == CHIPREV_5750_BX ||
15509 (tg3_asic_rev(tp) == ASIC_REV_5714 &&
15510 tg3_chip_rev_id(tp) <= CHIPREV_ID_5714_A2 &&
Michael Chan7544b092007-05-05 13:08:32 -070015511 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000015512 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070015513
Joe Perches63c3a662011-04-26 08:12:10 +000015514 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015515 tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015516 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070015517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015518
Joe Perches63c3a662011-04-26 08:12:10 +000015519 if (tg3_flag(tp, 57765_PLUS)) {
15520 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000015521 tp->irq_max = TG3_IRQ_MAX_VECS;
15522 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015523 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000015524
Michael Chan91024262012-09-28 07:12:38 +000015525 tp->txq_max = 1;
15526 tp->rxq_max = 1;
15527 if (tp->irq_max > 1) {
15528 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
15529 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
15530
Joe Perches41535772013-02-16 11:20:04 +000015531 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
15532 tg3_asic_rev(tp) == ASIC_REV_5720)
Michael Chan91024262012-09-28 07:12:38 +000015533 tp->txq_max = tp->irq_max - 1;
15534 }
15535
Matt Carlsonb7abee62012-06-07 12:56:54 +000015536 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015537 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015538 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015539
Joe Perches41535772013-02-16 11:20:04 +000015540 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000015541 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000015542
Joe Perches41535772013-02-16 11:20:04 +000015543 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15544 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15545 tg3_asic_rev(tp) == ASIC_REV_5720 ||
15546 tg3_asic_rev(tp) == ASIC_REV_5762)
Joe Perches63c3a662011-04-26 08:12:10 +000015547 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000015548
Joe Perches63c3a662011-04-26 08:12:10 +000015549 if (tg3_flag(tp, 57765_PLUS) &&
Joe Perches41535772013-02-16 11:20:04 +000015550 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000015551 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000015552
Joe Perches63c3a662011-04-26 08:12:10 +000015553 if (!tg3_flag(tp, 5705_PLUS) ||
15554 tg3_flag(tp, 5780_CLASS) ||
15555 tg3_flag(tp, USE_JUMBO_BDFLAG))
15556 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070015557
Matt Carlson52f44902008-11-21 17:17:04 -080015558 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
15559 &pci_state_reg);
15560
Jon Mason708ebb3a2011-06-27 12:56:50 +000015561 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015562 u16 lnkctl;
15563
Joe Perches63c3a662011-04-26 08:12:10 +000015564 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080015565
Jiang Liu0f49bfb2012-08-20 13:28:20 -060015566 pcie_capability_read_word(tp->pdev, PCI_EXP_LNKCTL, &lnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015567 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Joe Perches41535772013-02-16 11:20:04 +000015568 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015569 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000015570 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000015571 }
Joe Perches41535772013-02-16 11:20:04 +000015572 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
15573 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15574 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A0 ||
15575 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000015576 tg3_flag_set(tp, CLKREQ_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015577 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000015578 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080015579 }
Joe Perches41535772013-02-16 11:20:04 +000015580 } else if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000015581 /* BCM5785 devices are effectively PCIe devices, and should
15582 * follow PCIe codepaths, but do not have a PCIe capabilities
15583 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000015584 */
Joe Perches63c3a662011-04-26 08:12:10 +000015585 tg3_flag_set(tp, PCI_EXPRESS);
15586 } else if (!tg3_flag(tp, 5705_PLUS) ||
15587 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080015588 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
15589 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000015590 dev_err(&tp->pdev->dev,
15591 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080015592 return -EIO;
15593 }
15594
15595 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000015596 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080015597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015598
Michael Chan399de502005-10-03 14:02:39 -070015599 /* If we have an AMD 762 or VIA K8T800 chipset, write
15600 * reordering to the mailbox registers done by the host
15601 * controller can cause major troubles. We read back from
15602 * every mailbox register write to force the writes to be
15603 * posted to the chip in order.
15604 */
Matt Carlson41434702011-03-09 16:58:22 +000015605 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000015606 !tg3_flag(tp, PCI_EXPRESS))
15607 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070015608
Matt Carlson69fc4052008-12-21 20:19:57 -080015609 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
15610 &tp->pci_cacheline_sz);
15611 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15612 &tp->pci_lat_timer);
Joe Perches41535772013-02-16 11:20:04 +000015613 if (tg3_asic_rev(tp) == ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015614 tp->pci_lat_timer < 64) {
15615 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080015616 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15617 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015618 }
15619
Matt Carlson16821282011-07-13 09:27:28 +000015620 /* Important! -- It is critical that the PCI-X hw workaround
15621 * situation is decided before the first MMIO register access.
15622 */
Joe Perches41535772013-02-16 11:20:04 +000015623 if (tg3_chip_rev(tp) == CHIPREV_5700_BX) {
Matt Carlson52f44902008-11-21 17:17:04 -080015624 /* 5700 BX chips need to have their TX producer index
15625 * mailboxes written twice to workaround a bug.
15626 */
Joe Perches63c3a662011-04-26 08:12:10 +000015627 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070015628
Matt Carlson52f44902008-11-21 17:17:04 -080015629 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015630 *
15631 * The workaround is to use indirect register accesses
15632 * for all chip writes not to mailbox registers.
15633 */
Joe Perches63c3a662011-04-26 08:12:10 +000015634 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015635 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015636
Joe Perches63c3a662011-04-26 08:12:10 +000015637 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015638
15639 /* The chip can have it's power management PCI config
15640 * space registers clobbered due to this bug.
15641 * So explicitly force the chip into D0 here.
15642 */
Matt Carlson9974a352007-10-07 23:27:28 -070015643 pci_read_config_dword(tp->pdev,
15644 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015645 &pm_reg);
15646 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
15647 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070015648 pci_write_config_dword(tp->pdev,
15649 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015650 pm_reg);
15651
15652 /* Also, force SERR#/PERR# in PCI command. */
15653 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15654 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
15655 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15656 }
15657 }
15658
Linus Torvalds1da177e2005-04-16 15:20:36 -070015659 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015660 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015661 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015662 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015663
15664 /* Chip-specific fixup from Broadcom driver */
Joe Perches41535772013-02-16 11:20:04 +000015665 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015666 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
15667 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
15668 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
15669 }
15670
Michael Chan1ee582d2005-08-09 20:16:46 -070015671 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070015672 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015673 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070015674 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070015675 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015676 tp->write32_tx_mbox = tg3_write32;
15677 tp->write32_rx_mbox = tg3_write32;
15678
15679 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000015680 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070015681 tp->write32 = tg3_write_indirect_reg32;
Joe Perches41535772013-02-16 11:20:04 +000015682 else if (tg3_asic_rev(tp) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015683 (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +000015684 tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0)) {
Matt Carlson98efd8a2007-05-05 12:47:25 -070015685 /*
15686 * Back to back register writes can cause problems on these
15687 * chips, the workaround is to read back all reg writes
15688 * except those to mailbox regs.
15689 *
15690 * See tg3_write_indirect_reg32().
15691 */
Michael Chan1ee582d2005-08-09 20:16:46 -070015692 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070015693 }
15694
Joe Perches63c3a662011-04-26 08:12:10 +000015695 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070015696 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000015697 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070015698 tp->write32_rx_mbox = tg3_write_flush_reg32;
15699 }
Michael Chan20094932005-08-09 20:16:32 -070015700
Joe Perches63c3a662011-04-26 08:12:10 +000015701 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070015702 tp->read32 = tg3_read_indirect_reg32;
15703 tp->write32 = tg3_write_indirect_reg32;
15704 tp->read32_mbox = tg3_read_indirect_mbox;
15705 tp->write32_mbox = tg3_write_indirect_mbox;
15706 tp->write32_tx_mbox = tg3_write_indirect_mbox;
15707 tp->write32_rx_mbox = tg3_write_indirect_mbox;
15708
15709 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015710 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015711
15712 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15713 pci_cmd &= ~PCI_COMMAND_MEMORY;
15714 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15715 }
Joe Perches41535772013-02-16 11:20:04 +000015716 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015717 tp->read32_mbox = tg3_read32_mbox_5906;
15718 tp->write32_mbox = tg3_write32_mbox_5906;
15719 tp->write32_tx_mbox = tg3_write32_mbox_5906;
15720 tp->write32_rx_mbox = tg3_write32_mbox_5906;
15721 }
Michael Chan68929142005-08-09 20:17:14 -070015722
Michael Chanbbadf502006-04-06 21:46:34 -070015723 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015724 (tg3_flag(tp, PCIX_MODE) &&
Joe Perches41535772013-02-16 11:20:04 +000015725 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
15726 tg3_asic_rev(tp) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000015727 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070015728
Matt Carlson16821282011-07-13 09:27:28 +000015729 /* The memory arbiter has to be enabled in order for SRAM accesses
15730 * to succeed. Normally on powerup the tg3 chip firmware will make
15731 * sure it is enabled, but other entities such as system netboot
15732 * code might disable it.
15733 */
15734 val = tr32(MEMARB_MODE);
15735 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
15736
Matt Carlson9dc5e342011-11-04 09:15:02 +000015737 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
Joe Perches41535772013-02-16 11:20:04 +000015738 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Matt Carlson9dc5e342011-11-04 09:15:02 +000015739 tg3_flag(tp, 5780_CLASS)) {
15740 if (tg3_flag(tp, PCIX_MODE)) {
15741 pci_read_config_dword(tp->pdev,
15742 tp->pcix_cap + PCI_X_STATUS,
15743 &val);
15744 tp->pci_fn = val & 0x7;
15745 }
Joe Perches41535772013-02-16 11:20:04 +000015746 } else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15747 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15748 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson9dc5e342011-11-04 09:15:02 +000015749 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
Michael Chan857001f2013-01-06 12:51:09 +000015750 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) != NIC_SRAM_CPMUSTAT_SIG)
15751 val = tr32(TG3_CPMU_STATUS);
15752
Joe Perches41535772013-02-16 11:20:04 +000015753 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Michael Chan857001f2013-01-06 12:51:09 +000015754 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5717) ? 1 : 0;
15755 else
Matt Carlson9dc5e342011-11-04 09:15:02 +000015756 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
15757 TG3_CPMU_STATUS_FSHFT_5719;
Matt Carlson69f11c92011-07-13 09:27:30 +000015758 }
15759
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000015760 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
15761 tp->write32_tx_mbox = tg3_write_flush_reg32;
15762 tp->write32_rx_mbox = tg3_write_flush_reg32;
15763 }
15764
Michael Chan7d0c41e2005-04-21 17:06:20 -070015765 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000015766 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070015767 * determined before calling tg3_set_power_state() so that
15768 * we know whether or not to switch out of Vaux power.
15769 * When the flag is set, it means that GPIO1 is used for eeprom
15770 * write protect and also implies that it is a LOM where GPIOs
15771 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040015772 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070015773 tg3_get_eeprom_hw_cfg(tp);
15774
Matt Carlson1caf13e2013-03-06 17:02:29 +000015775 if (tg3_flag(tp, FW_TSO) && tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015776 tg3_flag_clear(tp, TSO_CAPABLE);
15777 tg3_flag_clear(tp, TSO_BUG);
15778 tp->fw_needed = NULL;
15779 }
15780
Joe Perches63c3a662011-04-26 08:12:10 +000015781 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070015782 /* Allow reads and writes to the
15783 * APE register and memory space.
15784 */
15785 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000015786 PCISTATE_ALLOW_APE_SHMEM_WR |
15787 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015788 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
15789 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000015790
15791 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015792 }
15793
Matt Carlson16821282011-07-13 09:27:28 +000015794 /* Set up tp->grc_local_ctrl before calling
15795 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
15796 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070015797 * It is also used as eeprom write protect on LOMs.
15798 */
15799 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Joe Perches41535772013-02-16 11:20:04 +000015800 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015801 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070015802 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
15803 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070015804 /* Unused GPIO3 must be driven as output on 5752 because there
15805 * are no pull-up resistors on unused GPIO pins.
15806 */
Joe Perches41535772013-02-16 11:20:04 +000015807 else if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070015808 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070015809
Joe Perches41535772013-02-16 11:20:04 +000015810 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
15811 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000015812 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080015813 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
15814
Matt Carlson8d519ab2009-04-20 06:58:01 +000015815 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15816 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070015817 /* Turn off the debug UART. */
15818 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000015819 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070015820 /* Keep VMain power. */
15821 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
15822 GRC_LCLCTRL_GPIO_OUTPUT0;
15823 }
15824
Joe Perches41535772013-02-16 11:20:04 +000015825 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000015826 tp->grc_local_ctrl |=
15827 tr32(GRC_LOCAL_CTRL) & GRC_LCLCTRL_GPIO_UART_SEL;
15828
Matt Carlson16821282011-07-13 09:27:28 +000015829 /* Switch out of Vaux if it is a NIC */
15830 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015831
Linus Torvalds1da177e2005-04-16 15:20:36 -070015832 /* Derive initial jumbo mode from MTU assigned in
15833 * ether_setup() via the alloc_etherdev() call
15834 */
Joe Perches63c3a662011-04-26 08:12:10 +000015835 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
15836 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015837
15838 /* Determine WakeOnLan speed to use. */
Joe Perches41535772013-02-16 11:20:04 +000015839 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
15840 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
15841 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
15842 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000015843 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015844 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000015845 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015846 }
15847
Joe Perches41535772013-02-16 11:20:04 +000015848 if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015849 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000015850
Linus Torvalds1da177e2005-04-16 15:20:36 -070015851 /* A few boards don't want Ethernet@WireSpeed phy feature */
Joe Perches41535772013-02-16 11:20:04 +000015852 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
15853 (tg3_asic_rev(tp) == ASIC_REV_5705 &&
15854 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) &&
15855 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015856 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
15857 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
15858 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015859
Joe Perches41535772013-02-16 11:20:04 +000015860 if (tg3_chip_rev(tp) == CHIPREV_5703_AX ||
15861 tg3_chip_rev(tp) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015862 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Joe Perches41535772013-02-16 11:20:04 +000015863 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015864 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015865
Joe Perches63c3a662011-04-26 08:12:10 +000015866 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015867 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +000015868 tg3_asic_rev(tp) != ASIC_REV_5785 &&
15869 tg3_asic_rev(tp) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015870 !tg3_flag(tp, 57765_PLUS)) {
Joe Perches41535772013-02-16 11:20:04 +000015871 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
15872 tg3_asic_rev(tp) == ASIC_REV_5787 ||
15873 tg3_asic_rev(tp) == ASIC_REV_5784 ||
15874 tg3_asic_rev(tp) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080015875 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
15876 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015877 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080015878 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015879 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080015880 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015881 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070015882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015883
Joe Perches41535772013-02-16 11:20:04 +000015884 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
15885 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -070015886 tp->phy_otp = tg3_read_otp_phycfg(tp);
15887 if (tp->phy_otp == 0)
15888 tp->phy_otp = TG3_OTP_DEFAULT;
15889 }
15890
Joe Perches63c3a662011-04-26 08:12:10 +000015891 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070015892 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
15893 else
15894 tp->mi_mode = MAC_MI_MODE_BASE;
15895
Linus Torvalds1da177e2005-04-16 15:20:36 -070015896 tp->coalesce_mode = 0;
Joe Perches41535772013-02-16 11:20:04 +000015897 if (tg3_chip_rev(tp) != CHIPREV_5700_AX &&
15898 tg3_chip_rev(tp) != CHIPREV_5700_BX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015899 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
15900
Matt Carlson4d958472011-04-20 07:57:35 +000015901 /* Set these bits to enable statistics workaround. */
Joe Perches41535772013-02-16 11:20:04 +000015902 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15903 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
15904 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000015905 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
15906 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
15907 }
15908
Joe Perches41535772013-02-16 11:20:04 +000015909 if (tg3_asic_rev(tp) == ASIC_REV_5785 ||
15910 tg3_asic_rev(tp) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000015911 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070015912
Matt Carlson158d7ab2008-05-29 01:37:54 -070015913 err = tg3_mdio_init(tp);
15914 if (err)
15915 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015916
15917 /* Initialize data/descriptor byte/word swapping. */
15918 val = tr32(GRC_MODE);
Joe Perches41535772013-02-16 11:20:04 +000015919 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
15920 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000015921 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
15922 GRC_MODE_WORD_SWAP_B2HRX_DATA |
15923 GRC_MODE_B2HRX_ENABLE |
15924 GRC_MODE_HTX2B_ENABLE |
15925 GRC_MODE_HOST_STACKUP);
15926 else
15927 val &= GRC_MODE_HOST_STACKUP;
15928
Linus Torvalds1da177e2005-04-16 15:20:36 -070015929 tw32(GRC_MODE, val | tp->grc_mode);
15930
15931 tg3_switch_clocks(tp);
15932
15933 /* Clear this out for sanity. */
15934 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
15935
15936 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
15937 &pci_state_reg);
15938 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015939 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Joe Perches41535772013-02-16 11:20:04 +000015940 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
15941 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
15942 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2 ||
15943 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015944 void __iomem *sram_base;
15945
15946 /* Write some dummy words into the SRAM status block
15947 * area, see if it reads back correctly. If the return
15948 * value is bad, force enable the PCIX workaround.
15949 */
15950 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
15951
15952 writel(0x00000000, sram_base);
15953 writel(0x00000000, sram_base + 4);
15954 writel(0xffffffff, sram_base + 4);
15955 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000015956 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015957 }
15958 }
15959
15960 udelay(50);
15961 tg3_nvram_init(tp);
15962
Nithin Sujirc4dab502013-03-06 17:02:34 +000015963 /* If the device has an NVRAM, no need to load patch firmware */
15964 if (tg3_asic_rev(tp) == ASIC_REV_57766 &&
15965 !tg3_flag(tp, NO_NVRAM))
15966 tp->fw_needed = NULL;
15967
Linus Torvalds1da177e2005-04-16 15:20:36 -070015968 grc_misc_cfg = tr32(GRC_MISC_CFG);
15969 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
15970
Joe Perches41535772013-02-16 11:20:04 +000015971 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015972 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
15973 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000015974 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015975
Joe Perches63c3a662011-04-26 08:12:10 +000015976 if (!tg3_flag(tp, IS_5788) &&
Joe Perches41535772013-02-16 11:20:04 +000015977 tg3_asic_rev(tp) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000015978 tg3_flag_set(tp, TAGGED_STATUS);
15979 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070015980 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
15981 HOSTCC_MODE_CLRTICK_TXBD);
15982
15983 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
15984 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15985 tp->misc_host_ctrl);
15986 }
15987
Matt Carlson3bda1252008-08-15 14:08:22 -070015988 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000015989 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000015990 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070015991 else
Matt Carlson6e01b202011-08-19 13:58:20 +000015992 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070015993
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015994 if (tg3_10_100_only_device(tp, ent))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015995 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015996
15997 err = tg3_phy_probe(tp);
15998 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015999 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016000 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016001 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016002 }
16003
Matt Carlson184b8902010-04-05 10:19:25 +000016004 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080016005 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016006
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016007 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
16008 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016009 } else {
Joe Perches41535772013-02-16 11:20:04 +000016010 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016011 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016012 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016013 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016014 }
16015
16016 /* 5700 {AX,BX} chips have a broken status block link
16017 * change bit implementation, so we must use the
16018 * status register in those cases.
16019 */
Joe Perches41535772013-02-16 11:20:04 +000016020 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016021 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016022 else
Joe Perches63c3a662011-04-26 08:12:10 +000016023 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016024
16025 /* The led_ctrl is set during tg3_phy_probe, here we might
16026 * have to force the link status polling mechanism based
16027 * upon subsystem IDs.
16028 */
16029 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Joe Perches41535772013-02-16 11:20:04 +000016030 tg3_asic_rev(tp) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016031 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
16032 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000016033 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016034 }
16035
16036 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016037 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000016038 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016039 else
Joe Perches63c3a662011-04-26 08:12:10 +000016040 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016041
Eric Dumazet9205fd92011-11-18 06:47:01 +000016042 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016043 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Joe Perches41535772013-02-16 11:20:04 +000016044 if (tg3_asic_rev(tp) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016045 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000016046 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016047#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000016048 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016049#endif
16050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016051
Matt Carlson2c49a442010-09-30 10:34:35 +000016052 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
16053 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000016054 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
16055
Matt Carlson2c49a442010-09-30 10:34:35 +000016056 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070016057
16058 /* Increment the rx prod index on the rx std ring by at most
16059 * 8 for these chips to workaround hw errata.
16060 */
Joe Perches41535772013-02-16 11:20:04 +000016061 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
16062 tg3_asic_rev(tp) == ASIC_REV_5752 ||
16063 tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanf92905d2006-06-29 20:14:29 -070016064 tp->rx_std_max_post = 8;
16065
Joe Perches63c3a662011-04-26 08:12:10 +000016066 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070016067 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
16068 PCIE_PWR_MGMT_L1_THRESH_MSK;
16069
Linus Torvalds1da177e2005-04-16 15:20:36 -070016070 return err;
16071}
16072
David S. Miller49b6e95f2007-03-29 01:38:42 -070016073#ifdef CONFIG_SPARC
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016074static int tg3_get_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016075{
16076 struct net_device *dev = tp->dev;
16077 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016078 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070016079 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016080 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016081
David S. Miller49b6e95f2007-03-29 01:38:42 -070016082 addr = of_get_property(dp, "local-mac-address", &len);
16083 if (addr && len == 6) {
16084 memcpy(dev->dev_addr, addr, 6);
David S. Miller49b6e95f2007-03-29 01:38:42 -070016085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016086 }
16087 return -ENODEV;
16088}
16089
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016090static int tg3_get_default_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016091{
16092 struct net_device *dev = tp->dev;
16093
16094 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
16095 return 0;
16096}
16097#endif
16098
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016099static int tg3_get_device_address(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016100{
16101 struct net_device *dev = tp->dev;
16102 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080016103 int addr_ok = 0;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016104 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016105
David S. Miller49b6e95f2007-03-29 01:38:42 -070016106#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016107 if (!tg3_get_macaddr_sparc(tp))
16108 return 0;
16109#endif
16110
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016111 if (tg3_flag(tp, IS_SSB_CORE)) {
16112 err = ssb_gige_get_macaddr(tp->pdev, &dev->dev_addr[0]);
16113 if (!err && is_valid_ether_addr(&dev->dev_addr[0]))
16114 return 0;
16115 }
16116
Linus Torvalds1da177e2005-04-16 15:20:36 -070016117 mac_offset = 0x7c;
Joe Perches41535772013-02-16 11:20:04 +000016118 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016119 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016120 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
16121 mac_offset = 0xcc;
16122 if (tg3_nvram_lock(tp))
16123 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
16124 else
16125 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000016126 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000016127 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000016128 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000016129 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000016130 mac_offset += 0x18c;
Joe Perches41535772013-02-16 11:20:04 +000016131 } else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070016132 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016133
16134 /* First try to get it from MAC address mailbox. */
16135 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
16136 if ((hi >> 16) == 0x484b) {
16137 dev->dev_addr[0] = (hi >> 8) & 0xff;
16138 dev->dev_addr[1] = (hi >> 0) & 0xff;
16139
16140 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
16141 dev->dev_addr[2] = (lo >> 24) & 0xff;
16142 dev->dev_addr[3] = (lo >> 16) & 0xff;
16143 dev->dev_addr[4] = (lo >> 8) & 0xff;
16144 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016145
Michael Chan008652b2006-03-27 23:14:53 -080016146 /* Some old bootcode may report a 0 MAC address in SRAM */
16147 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
16148 }
16149 if (!addr_ok) {
16150 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000016151 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000016152 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000016153 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070016154 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
16155 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080016156 }
16157 /* Finally just fetch it out of the MAC control regs. */
16158 else {
16159 hi = tr32(MAC_ADDR_0_HIGH);
16160 lo = tr32(MAC_ADDR_0_LOW);
16161
16162 dev->dev_addr[5] = lo & 0xff;
16163 dev->dev_addr[4] = (lo >> 8) & 0xff;
16164 dev->dev_addr[3] = (lo >> 16) & 0xff;
16165 dev->dev_addr[2] = (lo >> 24) & 0xff;
16166 dev->dev_addr[1] = hi & 0xff;
16167 dev->dev_addr[0] = (hi >> 8) & 0xff;
16168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016169 }
16170
16171 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070016172#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016173 if (!tg3_get_default_macaddr_sparc(tp))
16174 return 0;
16175#endif
16176 return -EINVAL;
16177 }
16178 return 0;
16179}
16180
David S. Miller59e6b432005-05-18 22:50:10 -070016181#define BOUNDARY_SINGLE_CACHELINE 1
16182#define BOUNDARY_MULTI_CACHELINE 2
16183
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016184static u32 tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
David S. Miller59e6b432005-05-18 22:50:10 -070016185{
16186 int cacheline_size;
16187 u8 byte;
16188 int goal;
16189
16190 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
16191 if (byte == 0)
16192 cacheline_size = 1024;
16193 else
16194 cacheline_size = (int) byte * 4;
16195
16196 /* On 5703 and later chips, the boundary bits have no
16197 * effect.
16198 */
Joe Perches41535772013-02-16 11:20:04 +000016199 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16200 tg3_asic_rev(tp) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016201 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070016202 goto out;
16203
16204#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
16205 goal = BOUNDARY_MULTI_CACHELINE;
16206#else
16207#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
16208 goal = BOUNDARY_SINGLE_CACHELINE;
16209#else
16210 goal = 0;
16211#endif
16212#endif
16213
Joe Perches63c3a662011-04-26 08:12:10 +000016214 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016215 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
16216 goto out;
16217 }
16218
David S. Miller59e6b432005-05-18 22:50:10 -070016219 if (!goal)
16220 goto out;
16221
16222 /* PCI controllers on most RISC systems tend to disconnect
16223 * when a device tries to burst across a cache-line boundary.
16224 * Therefore, letting tg3 do so just wastes PCI bandwidth.
16225 *
16226 * Unfortunately, for PCI-E there are only limited
16227 * write-side controls for this, and thus for reads
16228 * we will still get the disconnects. We'll also waste
16229 * these PCI cycles for both read and write for chips
16230 * other than 5700 and 5701 which do not implement the
16231 * boundary bits.
16232 */
Joe Perches63c3a662011-04-26 08:12:10 +000016233 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016234 switch (cacheline_size) {
16235 case 16:
16236 case 32:
16237 case 64:
16238 case 128:
16239 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16240 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
16241 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
16242 } else {
16243 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16244 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16245 }
16246 break;
16247
16248 case 256:
16249 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
16250 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
16251 break;
16252
16253 default:
16254 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16255 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16256 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016257 }
Joe Perches63c3a662011-04-26 08:12:10 +000016258 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016259 switch (cacheline_size) {
16260 case 16:
16261 case 32:
16262 case 64:
16263 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16264 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16265 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
16266 break;
16267 }
16268 /* fallthrough */
16269 case 128:
16270 default:
16271 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16272 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
16273 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016274 }
David S. Miller59e6b432005-05-18 22:50:10 -070016275 } else {
16276 switch (cacheline_size) {
16277 case 16:
16278 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16279 val |= (DMA_RWCTRL_READ_BNDRY_16 |
16280 DMA_RWCTRL_WRITE_BNDRY_16);
16281 break;
16282 }
16283 /* fallthrough */
16284 case 32:
16285 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16286 val |= (DMA_RWCTRL_READ_BNDRY_32 |
16287 DMA_RWCTRL_WRITE_BNDRY_32);
16288 break;
16289 }
16290 /* fallthrough */
16291 case 64:
16292 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16293 val |= (DMA_RWCTRL_READ_BNDRY_64 |
16294 DMA_RWCTRL_WRITE_BNDRY_64);
16295 break;
16296 }
16297 /* fallthrough */
16298 case 128:
16299 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16300 val |= (DMA_RWCTRL_READ_BNDRY_128 |
16301 DMA_RWCTRL_WRITE_BNDRY_128);
16302 break;
16303 }
16304 /* fallthrough */
16305 case 256:
16306 val |= (DMA_RWCTRL_READ_BNDRY_256 |
16307 DMA_RWCTRL_WRITE_BNDRY_256);
16308 break;
16309 case 512:
16310 val |= (DMA_RWCTRL_READ_BNDRY_512 |
16311 DMA_RWCTRL_WRITE_BNDRY_512);
16312 break;
16313 case 1024:
16314 default:
16315 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
16316 DMA_RWCTRL_WRITE_BNDRY_1024);
16317 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016318 }
David S. Miller59e6b432005-05-18 22:50:10 -070016319 }
16320
16321out:
16322 return val;
16323}
16324
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016325static int tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma,
16326 int size, int to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016327{
16328 struct tg3_internal_buffer_desc test_desc;
16329 u32 sram_dma_descs;
16330 int i, ret;
16331
16332 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
16333
16334 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
16335 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
16336 tw32(RDMAC_STATUS, 0);
16337 tw32(WDMAC_STATUS, 0);
16338
16339 tw32(BUFMGR_MODE, 0);
16340 tw32(FTQ_RESET, 0);
16341
16342 test_desc.addr_hi = ((u64) buf_dma) >> 32;
16343 test_desc.addr_lo = buf_dma & 0xffffffff;
16344 test_desc.nic_mbuf = 0x00002100;
16345 test_desc.len = size;
16346
16347 /*
16348 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
16349 * the *second* time the tg3 driver was getting loaded after an
16350 * initial scan.
16351 *
16352 * Broadcom tells me:
16353 * ...the DMA engine is connected to the GRC block and a DMA
16354 * reset may affect the GRC block in some unpredictable way...
16355 * The behavior of resets to individual blocks has not been tested.
16356 *
16357 * Broadcom noted the GRC reset will also reset all sub-components.
16358 */
16359 if (to_device) {
16360 test_desc.cqid_sqid = (13 << 8) | 2;
16361
16362 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
16363 udelay(40);
16364 } else {
16365 test_desc.cqid_sqid = (16 << 8) | 7;
16366
16367 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
16368 udelay(40);
16369 }
16370 test_desc.flags = 0x00000005;
16371
16372 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
16373 u32 val;
16374
16375 val = *(((u32 *)&test_desc) + i);
16376 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
16377 sram_dma_descs + (i * sizeof(u32)));
16378 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
16379 }
16380 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
16381
Matt Carlson859a588792010-04-05 10:19:28 +000016382 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016383 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000016384 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070016385 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016386
16387 ret = -ENODEV;
16388 for (i = 0; i < 40; i++) {
16389 u32 val;
16390
16391 if (to_device)
16392 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
16393 else
16394 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
16395 if ((val & 0xffff) == sram_dma_descs) {
16396 ret = 0;
16397 break;
16398 }
16399
16400 udelay(100);
16401 }
16402
16403 return ret;
16404}
16405
David S. Millerded73402005-05-23 13:59:47 -070016406#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070016407
Matt Carlson41434702011-03-09 16:58:22 +000016408static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080016409 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
16410 { },
16411};
16412
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016413static int tg3_test_dma(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016414{
16415 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070016416 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016417 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016418
Matt Carlson4bae65c2010-11-24 08:31:52 +000016419 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
16420 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016421 if (!buf) {
16422 ret = -ENOMEM;
16423 goto out_nofree;
16424 }
16425
16426 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
16427 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
16428
David S. Miller59e6b432005-05-18 22:50:10 -070016429 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016430
Joe Perches63c3a662011-04-26 08:12:10 +000016431 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016432 goto out;
16433
Joe Perches63c3a662011-04-26 08:12:10 +000016434 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016435 /* DMA read watermark not used on PCIE */
16436 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000016437 } else if (!tg3_flag(tp, PCIX_MODE)) {
Joe Perches41535772013-02-16 11:20:04 +000016438 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
16439 tg3_asic_rev(tp) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016440 tp->dma_rwctrl |= 0x003f0000;
16441 else
16442 tp->dma_rwctrl |= 0x003f000f;
16443 } else {
Joe Perches41535772013-02-16 11:20:04 +000016444 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16445 tg3_asic_rev(tp) == ASIC_REV_5704) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016446 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080016447 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016448
Michael Chan4a29cc22006-03-19 13:21:12 -080016449 /* If the 5704 is behind the EPB bridge, we can
16450 * do the less restrictive ONE_DMA workaround for
16451 * better performance.
16452 */
Joe Perches63c3a662011-04-26 08:12:10 +000016453 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Joe Perches41535772013-02-16 11:20:04 +000016454 tg3_asic_rev(tp) == ASIC_REV_5704)
Michael Chan4a29cc22006-03-19 13:21:12 -080016455 tp->dma_rwctrl |= 0x8000;
16456 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016457 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
16458
Joe Perches41535772013-02-16 11:20:04 +000016459 if (tg3_asic_rev(tp) == ASIC_REV_5703)
Michael Chan49afdeb2007-02-13 12:17:03 -080016460 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070016461 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080016462 tp->dma_rwctrl |=
16463 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
16464 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
16465 (1 << 23);
Joe Perches41535772013-02-16 11:20:04 +000016466 } else if (tg3_asic_rev(tp) == ASIC_REV_5780) {
Michael Chan4cf78e42005-07-25 12:29:19 -070016467 /* 5780 always in PCIX mode */
16468 tp->dma_rwctrl |= 0x00144000;
Joe Perches41535772013-02-16 11:20:04 +000016469 } else if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chana4e2b342005-10-26 15:46:52 -070016470 /* 5714 always in PCIX mode */
16471 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016472 } else {
16473 tp->dma_rwctrl |= 0x001b000f;
16474 }
16475 }
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016476 if (tg3_flag(tp, ONE_DMA_AT_ONCE))
16477 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016478
Joe Perches41535772013-02-16 11:20:04 +000016479 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16480 tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016481 tp->dma_rwctrl &= 0xfffffff0;
16482
Joe Perches41535772013-02-16 11:20:04 +000016483 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16484 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016485 /* Remove this if it causes problems for some boards. */
16486 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
16487
16488 /* On 5700/5701 chips, we need to set this bit.
16489 * Otherwise the chip will issue cacheline transactions
16490 * to streamable DMA memory with not all the byte
16491 * enables turned on. This is an error on several
16492 * RISC PCI controllers, in particular sparc64.
16493 *
16494 * On 5703/5704 chips, this bit has been reassigned
16495 * a different meaning. In particular, it is used
16496 * on those chips to enable a PCI-X workaround.
16497 */
16498 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
16499 }
16500
16501 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16502
16503#if 0
16504 /* Unneeded, already done by tg3_get_invariants. */
16505 tg3_switch_clocks(tp);
16506#endif
16507
Joe Perches41535772013-02-16 11:20:04 +000016508 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16509 tg3_asic_rev(tp) != ASIC_REV_5701)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016510 goto out;
16511
David S. Miller59e6b432005-05-18 22:50:10 -070016512 /* It is best to perform DMA test with maximum write burst size
16513 * to expose the 5700/5701 write DMA bug.
16514 */
16515 saved_dma_rwctrl = tp->dma_rwctrl;
16516 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16517 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16518
Linus Torvalds1da177e2005-04-16 15:20:36 -070016519 while (1) {
16520 u32 *p = buf, i;
16521
16522 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
16523 p[i] = i;
16524
16525 /* Send the buffer to the chip. */
16526 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
16527 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000016528 dev_err(&tp->pdev->dev,
16529 "%s: Buffer write failed. err = %d\n",
16530 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016531 break;
16532 }
16533
16534#if 0
16535 /* validate data reached card RAM correctly. */
16536 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16537 u32 val;
16538 tg3_read_mem(tp, 0x2100 + (i*4), &val);
16539 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000016540 dev_err(&tp->pdev->dev,
16541 "%s: Buffer corrupted on device! "
16542 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016543 /* ret = -ENODEV here? */
16544 }
16545 p[i] = 0;
16546 }
16547#endif
16548 /* Now read it back. */
16549 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
16550 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000016551 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
16552 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016553 break;
16554 }
16555
16556 /* Verify it. */
16557 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16558 if (p[i] == i)
16559 continue;
16560
David S. Miller59e6b432005-05-18 22:50:10 -070016561 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16562 DMA_RWCTRL_WRITE_BNDRY_16) {
16563 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016564 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
16565 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16566 break;
16567 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000016568 dev_err(&tp->pdev->dev,
16569 "%s: Buffer corrupted on read back! "
16570 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016571 ret = -ENODEV;
16572 goto out;
16573 }
16574 }
16575
16576 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
16577 /* Success. */
16578 ret = 0;
16579 break;
16580 }
16581 }
David S. Miller59e6b432005-05-18 22:50:10 -070016582 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16583 DMA_RWCTRL_WRITE_BNDRY_16) {
16584 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070016585 * now look for chipsets that are known to expose the
16586 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070016587 */
Matt Carlson41434702011-03-09 16:58:22 +000016588 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016589 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16590 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000016591 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016592 /* Safe to use the calculated DMA boundary. */
16593 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000016594 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070016595
David S. Miller59e6b432005-05-18 22:50:10 -070016596 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016598
16599out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000016600 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016601out_nofree:
16602 return ret;
16603}
16604
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016605static void tg3_init_bufmgr_config(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016606{
Joe Perches63c3a662011-04-26 08:12:10 +000016607 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000016608 tp->bufmgr_config.mbuf_read_dma_low_water =
16609 DEFAULT_MB_RDMA_LOW_WATER_5705;
16610 tp->bufmgr_config.mbuf_mac_rx_low_water =
16611 DEFAULT_MB_MACRX_LOW_WATER_57765;
16612 tp->bufmgr_config.mbuf_high_water =
16613 DEFAULT_MB_HIGH_WATER_57765;
16614
16615 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16616 DEFAULT_MB_RDMA_LOW_WATER_5705;
16617 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16618 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
16619 tp->bufmgr_config.mbuf_high_water_jumbo =
16620 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000016621 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070016622 tp->bufmgr_config.mbuf_read_dma_low_water =
16623 DEFAULT_MB_RDMA_LOW_WATER_5705;
16624 tp->bufmgr_config.mbuf_mac_rx_low_water =
16625 DEFAULT_MB_MACRX_LOW_WATER_5705;
16626 tp->bufmgr_config.mbuf_high_water =
16627 DEFAULT_MB_HIGH_WATER_5705;
Joe Perches41535772013-02-16 11:20:04 +000016628 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070016629 tp->bufmgr_config.mbuf_mac_rx_low_water =
16630 DEFAULT_MB_MACRX_LOW_WATER_5906;
16631 tp->bufmgr_config.mbuf_high_water =
16632 DEFAULT_MB_HIGH_WATER_5906;
16633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016634
Michael Chanfdfec1722005-07-25 12:31:48 -070016635 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16636 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
16637 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16638 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
16639 tp->bufmgr_config.mbuf_high_water_jumbo =
16640 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
16641 } else {
16642 tp->bufmgr_config.mbuf_read_dma_low_water =
16643 DEFAULT_MB_RDMA_LOW_WATER;
16644 tp->bufmgr_config.mbuf_mac_rx_low_water =
16645 DEFAULT_MB_MACRX_LOW_WATER;
16646 tp->bufmgr_config.mbuf_high_water =
16647 DEFAULT_MB_HIGH_WATER;
16648
16649 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16650 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
16651 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16652 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
16653 tp->bufmgr_config.mbuf_high_water_jumbo =
16654 DEFAULT_MB_HIGH_WATER_JUMBO;
16655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016656
16657 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
16658 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
16659}
16660
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016661static char *tg3_phy_string(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016662{
Matt Carlson79eb6902010-02-17 15:17:03 +000016663 switch (tp->phy_id & TG3_PHY_ID_MASK) {
16664 case TG3_PHY_ID_BCM5400: return "5400";
16665 case TG3_PHY_ID_BCM5401: return "5401";
16666 case TG3_PHY_ID_BCM5411: return "5411";
16667 case TG3_PHY_ID_BCM5701: return "5701";
16668 case TG3_PHY_ID_BCM5703: return "5703";
16669 case TG3_PHY_ID_BCM5704: return "5704";
16670 case TG3_PHY_ID_BCM5705: return "5705";
16671 case TG3_PHY_ID_BCM5750: return "5750";
16672 case TG3_PHY_ID_BCM5752: return "5752";
16673 case TG3_PHY_ID_BCM5714: return "5714";
16674 case TG3_PHY_ID_BCM5780: return "5780";
16675 case TG3_PHY_ID_BCM5755: return "5755";
16676 case TG3_PHY_ID_BCM5787: return "5787";
16677 case TG3_PHY_ID_BCM5784: return "5784";
16678 case TG3_PHY_ID_BCM5756: return "5722/5756";
16679 case TG3_PHY_ID_BCM5906: return "5906";
16680 case TG3_PHY_ID_BCM5761: return "5761";
16681 case TG3_PHY_ID_BCM5718C: return "5718C";
16682 case TG3_PHY_ID_BCM5718S: return "5718S";
16683 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000016684 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000016685 case TG3_PHY_ID_BCM5720C: return "5720C";
Michael Chanc65a17f2013-01-06 12:51:07 +000016686 case TG3_PHY_ID_BCM5762: return "5762C";
Matt Carlson79eb6902010-02-17 15:17:03 +000016687 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070016688 case 0: return "serdes";
16689 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070016690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016691}
16692
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016693static char *tg3_bus_string(struct tg3 *tp, char *str)
Michael Chanf9804dd2005-09-27 12:13:10 -070016694{
Joe Perches63c3a662011-04-26 08:12:10 +000016695 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016696 strcpy(str, "PCI Express");
16697 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000016698 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016699 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
16700
16701 strcpy(str, "PCIX:");
16702
16703 if ((clock_ctrl == 7) ||
16704 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
16705 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
16706 strcat(str, "133MHz");
16707 else if (clock_ctrl == 0)
16708 strcat(str, "33MHz");
16709 else if (clock_ctrl == 2)
16710 strcat(str, "50MHz");
16711 else if (clock_ctrl == 4)
16712 strcat(str, "66MHz");
16713 else if (clock_ctrl == 6)
16714 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070016715 } else {
16716 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000016717 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070016718 strcat(str, "66MHz");
16719 else
16720 strcat(str, "33MHz");
16721 }
Joe Perches63c3a662011-04-26 08:12:10 +000016722 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070016723 strcat(str, ":32-bit");
16724 else
16725 strcat(str, ":64-bit");
16726 return str;
16727}
16728
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016729static void tg3_init_coal(struct tg3 *tp)
David S. Miller15f98502005-05-18 22:49:26 -070016730{
16731 struct ethtool_coalesce *ec = &tp->coal;
16732
16733 memset(ec, 0, sizeof(*ec));
16734 ec->cmd = ETHTOOL_GCOALESCE;
16735 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
16736 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
16737 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
16738 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
16739 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
16740 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
16741 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
16742 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
16743 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
16744
16745 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
16746 HOSTCC_MODE_CLRTICK_TXBD)) {
16747 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
16748 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
16749 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
16750 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
16751 }
Michael Chand244c892005-07-05 14:42:33 -070016752
Joe Perches63c3a662011-04-26 08:12:10 +000016753 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070016754 ec->rx_coalesce_usecs_irq = 0;
16755 ec->tx_coalesce_usecs_irq = 0;
16756 ec->stats_block_coalesce_usecs = 0;
16757 }
David S. Miller15f98502005-05-18 22:49:26 -070016758}
16759
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016760static int tg3_init_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016761 const struct pci_device_id *ent)
16762{
Linus Torvalds1da177e2005-04-16 15:20:36 -070016763 struct net_device *dev;
16764 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000016765 int i, err, pm_cap;
16766 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070016767 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080016768 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000016769 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016770
Joe Perches05dbe002010-02-17 19:44:19 +000016771 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016772
16773 err = pci_enable_device(pdev);
16774 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000016775 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070016776 return err;
16777 }
16778
Linus Torvalds1da177e2005-04-16 15:20:36 -070016779 err = pci_request_regions(pdev, DRV_MODULE_NAME);
16780 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000016781 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070016782 goto err_out_disable_pdev;
16783 }
16784
16785 pci_set_master(pdev);
16786
16787 /* Find power-management capability. */
16788 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
16789 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000016790 dev_err(&pdev->dev,
16791 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070016792 err = -EIO;
16793 goto err_out_free_res;
16794 }
16795
Matt Carlson16821282011-07-13 09:27:28 +000016796 err = pci_set_power_state(pdev, PCI_D0);
16797 if (err) {
16798 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
16799 goto err_out_free_res;
16800 }
16801
Matt Carlsonfe5f5782009-09-01 13:09:39 +000016802 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016803 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016804 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000016805 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016806 }
16807
Linus Torvalds1da177e2005-04-16 15:20:36 -070016808 SET_NETDEV_DEV(dev, &pdev->dev);
16809
Linus Torvalds1da177e2005-04-16 15:20:36 -070016810 tp = netdev_priv(dev);
16811 tp->pdev = pdev;
16812 tp->dev = dev;
16813 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016814 tp->rx_mode = TG3_DEF_RX_MODE;
16815 tp->tx_mode = TG3_DEF_TX_MODE;
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +000016816 tp->irq_sync = 1;
Matt Carlson8ef21422008-05-02 16:47:53 -070016817
Linus Torvalds1da177e2005-04-16 15:20:36 -070016818 if (tg3_debug > 0)
16819 tp->msg_enable = tg3_debug;
16820 else
16821 tp->msg_enable = TG3_DEF_MSG_ENABLE;
16822
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016823 if (pdev_is_ssb_gige_core(pdev)) {
16824 tg3_flag_set(tp, IS_SSB_CORE);
16825 if (ssb_gige_must_flush_posted_writes(pdev))
16826 tg3_flag_set(tp, FLUSH_POSTED_WRITES);
16827 if (ssb_gige_one_dma_at_once(pdev))
16828 tg3_flag_set(tp, ONE_DMA_AT_ONCE);
16829 if (ssb_gige_have_roboswitch(pdev))
16830 tg3_flag_set(tp, ROBOSWITCH);
16831 if (ssb_gige_is_rgmii(pdev))
16832 tg3_flag_set(tp, RGMII_MODE);
16833 }
16834
Linus Torvalds1da177e2005-04-16 15:20:36 -070016835 /* The word/byte swap controls here control register access byte
16836 * swapping. DMA data byte swapping is controlled in the GRC_MODE
16837 * setting below.
16838 */
16839 tp->misc_host_ctrl =
16840 MISC_HOST_CTRL_MASK_PCI_INT |
16841 MISC_HOST_CTRL_WORD_SWAP |
16842 MISC_HOST_CTRL_INDIR_ACCESS |
16843 MISC_HOST_CTRL_PCISTATE_RW;
16844
16845 /* The NONFRM (non-frame) byte/word swap controls take effect
16846 * on descriptor entries, anything which isn't packet data.
16847 *
16848 * The StrongARM chips on the board (one for tx, one for rx)
16849 * are running in big-endian mode.
16850 */
16851 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
16852 GRC_MODE_WSWAP_NONFRM_DATA);
16853#ifdef __BIG_ENDIAN
16854 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
16855#endif
16856 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016857 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000016858 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016859
Matt Carlsond5fe4882008-11-21 17:20:32 -080016860 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010016861 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016862 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070016863 err = -ENOMEM;
16864 goto err_out_free_dev;
16865 }
16866
Matt Carlsonc9cab242011-07-13 09:27:27 +000016867 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
16868 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
16869 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
16870 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
16871 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000016872 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlsonc9cab242011-07-13 09:27:27 +000016873 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
16874 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000016875 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
16876 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
16877 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
16878 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727) {
Matt Carlsonc9cab242011-07-13 09:27:27 +000016879 tg3_flag_set(tp, ENABLE_APE);
16880 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
16881 if (!tp->aperegs) {
16882 dev_err(&pdev->dev,
16883 "Cannot map APE registers, aborting\n");
16884 err = -ENOMEM;
16885 goto err_out_iounmap;
16886 }
16887 }
16888
Linus Torvalds1da177e2005-04-16 15:20:36 -070016889 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
16890 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016891
Linus Torvalds1da177e2005-04-16 15:20:36 -070016892 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016893 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000016894 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016895 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016896
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016897 err = tg3_get_invariants(tp, ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016898 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016899 dev_err(&pdev->dev,
16900 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016901 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016902 }
16903
Michael Chan4a29cc22006-03-19 13:21:12 -080016904 /* The EPB bridge inside 5714, 5715, and 5780 and any
16905 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080016906 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
16907 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
16908 * do DMA address check in tg3_start_xmit().
16909 */
Joe Perches63c3a662011-04-26 08:12:10 +000016910 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070016911 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000016912 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070016913 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080016914#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070016915 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080016916#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080016917 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070016918 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080016919
16920 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070016921 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080016922 err = pci_set_dma_mask(pdev, dma_mask);
16923 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000016924 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080016925 err = pci_set_consistent_dma_mask(pdev,
16926 persist_dma_mask);
16927 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016928 dev_err(&pdev->dev, "Unable to obtain 64 bit "
16929 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016930 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080016931 }
16932 }
16933 }
Yang Hongyang284901a2009-04-06 19:01:15 -070016934 if (err || dma_mask == DMA_BIT_MASK(32)) {
16935 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080016936 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000016937 dev_err(&pdev->dev,
16938 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000016939 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080016940 }
16941 }
16942
Michael Chanfdfec1722005-07-25 12:31:48 -070016943 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016944
Matt Carlson0da06062011-05-19 12:12:53 +000016945 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
16946
16947 /* 5700 B0 chips do not support checksumming correctly due
16948 * to hardware bugs.
16949 */
Joe Perches41535772013-02-16 11:20:04 +000016950 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5700_B0) {
Matt Carlson0da06062011-05-19 12:12:53 +000016951 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
16952
16953 if (tg3_flag(tp, 5755_PLUS))
16954 features |= NETIF_F_IPV6_CSUM;
16955 }
16956
Michael Chan4e3a7aa2006-03-20 17:47:44 -080016957 /* TSO is on by default on chips that support hardware TSO.
16958 * Firmware TSO on older chips gives lower performance, so it
16959 * is off by default, but can be enabled using ethtool.
16960 */
Joe Perches63c3a662011-04-26 08:12:10 +000016961 if ((tg3_flag(tp, HW_TSO_1) ||
16962 tg3_flag(tp, HW_TSO_2) ||
16963 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000016964 (features & NETIF_F_IP_CSUM))
16965 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000016966 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000016967 if (features & NETIF_F_IPV6_CSUM)
16968 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000016969 if (tg3_flag(tp, HW_TSO_3) ||
Joe Perches41535772013-02-16 11:20:04 +000016970 tg3_asic_rev(tp) == ASIC_REV_5761 ||
16971 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
16972 tg3_chip_rev(tp) != CHIPREV_5784_AX) ||
16973 tg3_asic_rev(tp) == ASIC_REV_5785 ||
16974 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000016975 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070016976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016977
Matt Carlsond542fe22011-05-19 16:02:43 +000016978 dev->features |= features;
16979 dev->vlan_features |= features;
16980
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000016981 /*
16982 * Add loopback capability only for a subset of devices that support
16983 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
16984 * loopback for the remaining devices.
16985 */
Joe Perches41535772013-02-16 11:20:04 +000016986 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000016987 !tg3_flag(tp, CPMU_PRESENT))
16988 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000016989 features |= NETIF_F_LOOPBACK;
16990
Matt Carlson0da06062011-05-19 12:12:53 +000016991 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000016992
Joe Perches41535772013-02-16 11:20:04 +000016993 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016994 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016995 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000016996 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016997 tp->rx_pending = 63;
16998 }
16999
Linus Torvalds1da177e2005-04-16 15:20:36 -070017000 err = tg3_get_device_address(tp);
17001 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017002 dev_err(&pdev->dev,
17003 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017004 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070017005 }
17006
Matt Carlsonc88864d2007-11-12 21:07:01 -080017007 /*
17008 * Reset chip in case UNDI or EFI driver did not shutdown
17009 * DMA self test will enable WDMAC and we'll see (spurious)
17010 * pending DMA on the PCI bus at that point.
17011 */
17012 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
17013 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
17014 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
17015 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
17016 }
17017
17018 err = tg3_test_dma(tp);
17019 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017020 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080017021 goto err_out_apeunmap;
17022 }
17023
Matt Carlson78f90dc2009-11-13 13:03:42 +000017024 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
17025 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
17026 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000017027 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000017028 struct tg3_napi *tnapi = &tp->napi[i];
17029
17030 tnapi->tp = tp;
17031 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
17032
17033 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000017034 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017035 intmbx += 0x8;
17036 else
17037 intmbx += 0x4;
17038
17039 tnapi->consmbox = rcvmbx;
17040 tnapi->prodmbox = sndmbx;
17041
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017042 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017043 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017044 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000017045 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000017046
Joe Perches63c3a662011-04-26 08:12:10 +000017047 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000017048 break;
17049
17050 /*
17051 * If we support MSIX, we'll be using RSS. If we're using
17052 * RSS, the first vector only handles link interrupts and the
17053 * remaining vectors handle rx and tx interrupts. Reuse the
17054 * mailbox values for the next iteration. The values we setup
17055 * above are still useful for the single vectored mode.
17056 */
17057 if (!i)
17058 continue;
17059
17060 rcvmbx += 0x8;
17061
17062 if (sndmbx & 0x4)
17063 sndmbx -= 0x4;
17064 else
17065 sndmbx += 0xc;
17066 }
17067
Matt Carlsonc88864d2007-11-12 21:07:01 -080017068 tg3_init_coal(tp);
17069
Michael Chanc49a1562006-12-17 17:07:29 -080017070 pci_set_drvdata(pdev, dev);
17071
Joe Perches41535772013-02-16 11:20:04 +000017072 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
17073 tg3_asic_rev(tp) == ASIC_REV_5720 ||
17074 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +000017075 tg3_flag_set(tp, PTP_CAPABLE);
17076
Matt Carlsoncd0d7222011-07-13 09:27:33 +000017077 if (tg3_flag(tp, 5717_PLUS)) {
17078 /* Resume a low-power mode */
17079 tg3_frob_aux_power(tp, false);
17080 }
17081
Matt Carlson21f76382012-02-22 12:35:21 +000017082 tg3_timer_init(tp);
17083
Michael Chan402e1392013-02-14 12:13:41 +000017084 tg3_carrier_off(tp);
17085
Linus Torvalds1da177e2005-04-16 15:20:36 -070017086 err = register_netdev(dev);
17087 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017088 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070017089 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017090 }
17091
Joe Perches05dbe002010-02-17 19:44:19 +000017092 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
17093 tp->board_part_number,
Joe Perches41535772013-02-16 11:20:04 +000017094 tg3_chip_rev_id(tp),
Joe Perches05dbe002010-02-17 19:44:19 +000017095 tg3_bus_string(tp, str),
17096 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017097
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017098 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000017099 struct phy_device *phydev;
17100 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000017101 netdev_info(dev,
17102 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000017103 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017104 } else {
17105 char *ethtype;
17106
17107 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
17108 ethtype = "10/100Base-TX";
17109 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
17110 ethtype = "1000Base-SX";
17111 else
17112 ethtype = "10/100/1000Base-T";
17113
Matt Carlson5129c3a2010-04-05 10:19:23 +000017114 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000017115 "(WireSpeed[%d], EEE[%d])\n",
17116 tg3_phy_string(tp), ethtype,
17117 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
17118 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017119 }
Matt Carlsondf59c942008-11-03 16:52:56 -080017120
Joe Perches05dbe002010-02-17 19:44:19 +000017121 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000017122 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017123 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017124 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017125 tg3_flag(tp, ENABLE_ASF) != 0,
17126 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000017127 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
17128 tp->dma_rwctrl,
17129 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
17130 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017131
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017132 pci_save_state(pdev);
17133
Linus Torvalds1da177e2005-04-16 15:20:36 -070017134 return 0;
17135
Matt Carlson0d3031d2007-10-10 18:02:43 -070017136err_out_apeunmap:
17137 if (tp->aperegs) {
17138 iounmap(tp->aperegs);
17139 tp->aperegs = NULL;
17140 }
17141
Linus Torvalds1da177e2005-04-16 15:20:36 -070017142err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070017143 if (tp->regs) {
17144 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017145 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017147
17148err_out_free_dev:
17149 free_netdev(dev);
17150
Matt Carlson16821282011-07-13 09:27:28 +000017151err_out_power_down:
17152 pci_set_power_state(pdev, PCI_D3hot);
17153
Linus Torvalds1da177e2005-04-16 15:20:36 -070017154err_out_free_res:
17155 pci_release_regions(pdev);
17156
17157err_out_disable_pdev:
17158 pci_disable_device(pdev);
17159 pci_set_drvdata(pdev, NULL);
17160 return err;
17161}
17162
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017163static void tg3_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017164{
17165 struct net_device *dev = pci_get_drvdata(pdev);
17166
17167 if (dev) {
17168 struct tg3 *tp = netdev_priv(dev);
17169
Jesper Juhle3c55302012-04-09 22:50:15 +020017170 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080017171
Matt Carlsondb219972011-11-04 09:15:03 +000017172 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017173
David S. Miller1805b2f2011-10-24 18:18:09 -040017174 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017175 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017176 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017177 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070017178
Linus Torvalds1da177e2005-04-16 15:20:36 -070017179 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070017180 if (tp->aperegs) {
17181 iounmap(tp->aperegs);
17182 tp->aperegs = NULL;
17183 }
Michael Chan68929142005-08-09 20:17:14 -070017184 if (tp->regs) {
17185 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017186 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017188 free_netdev(dev);
17189 pci_release_regions(pdev);
17190 pci_disable_device(pdev);
17191 pci_set_drvdata(pdev, NULL);
17192 }
17193}
17194
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017195#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017196static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017197{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017198 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017199 struct net_device *dev = pci_get_drvdata(pdev);
17200 struct tg3 *tp = netdev_priv(dev);
17201 int err;
17202
17203 if (!netif_running(dev))
17204 return 0;
17205
Matt Carlsondb219972011-11-04 09:15:03 +000017206 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017207 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017208 tg3_netif_stop(tp);
17209
Matt Carlson21f76382012-02-22 12:35:21 +000017210 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017211
David S. Millerf47c11e2005-06-24 20:18:35 -070017212 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017213 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070017214 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017215
17216 netif_device_detach(dev);
17217
David S. Millerf47c11e2005-06-24 20:18:35 -070017218 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070017219 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000017220 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070017221 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017222
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017223 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017224 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017225 int err2;
17226
David S. Millerf47c11e2005-06-24 20:18:35 -070017227 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017228
Joe Perches63c3a662011-04-26 08:12:10 +000017229 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017230 err2 = tg3_restart_hw(tp, 1);
17231 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070017232 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017233
Matt Carlson21f76382012-02-22 12:35:21 +000017234 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017235
17236 netif_device_attach(dev);
17237 tg3_netif_start(tp);
17238
Michael Chanb9ec6c12006-07-25 16:37:27 -070017239out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017240 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017241
17242 if (!err2)
17243 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017244 }
17245
17246 return err;
17247}
17248
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017249static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017250{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017251 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017252 struct net_device *dev = pci_get_drvdata(pdev);
17253 struct tg3 *tp = netdev_priv(dev);
17254 int err;
17255
17256 if (!netif_running(dev))
17257 return 0;
17258
Linus Torvalds1da177e2005-04-16 15:20:36 -070017259 netif_device_attach(dev);
17260
David S. Millerf47c11e2005-06-24 20:18:35 -070017261 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017262
Joe Perches63c3a662011-04-26 08:12:10 +000017263 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070017264 err = tg3_restart_hw(tp, 1);
17265 if (err)
17266 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017267
Matt Carlson21f76382012-02-22 12:35:21 +000017268 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017269
Linus Torvalds1da177e2005-04-16 15:20:36 -070017270 tg3_netif_start(tp);
17271
Michael Chanb9ec6c12006-07-25 16:37:27 -070017272out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017273 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017274
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017275 if (!err)
17276 tg3_phy_start(tp);
17277
Michael Chanb9ec6c12006-07-25 16:37:27 -070017278 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017279}
17280
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017281static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017282#define TG3_PM_OPS (&tg3_pm_ops)
17283
17284#else
17285
17286#define TG3_PM_OPS NULL
17287
17288#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017289
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017290/**
17291 * tg3_io_error_detected - called when PCI error is detected
17292 * @pdev: Pointer to PCI device
17293 * @state: The current pci connection state
17294 *
17295 * This function is called after a PCI bus error affecting
17296 * this device has been detected.
17297 */
17298static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
17299 pci_channel_state_t state)
17300{
17301 struct net_device *netdev = pci_get_drvdata(pdev);
17302 struct tg3 *tp = netdev_priv(netdev);
17303 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
17304
17305 netdev_info(netdev, "PCI I/O error detected\n");
17306
17307 rtnl_lock();
17308
17309 if (!netif_running(netdev))
17310 goto done;
17311
17312 tg3_phy_stop(tp);
17313
17314 tg3_netif_stop(tp);
17315
Matt Carlson21f76382012-02-22 12:35:21 +000017316 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017317
17318 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000017319 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017320
17321 netif_device_detach(netdev);
17322
17323 /* Clean up software state, even if MMIO is blocked */
17324 tg3_full_lock(tp, 0);
17325 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
17326 tg3_full_unlock(tp);
17327
17328done:
17329 if (state == pci_channel_io_perm_failure)
17330 err = PCI_ERS_RESULT_DISCONNECT;
17331 else
17332 pci_disable_device(pdev);
17333
17334 rtnl_unlock();
17335
17336 return err;
17337}
17338
17339/**
17340 * tg3_io_slot_reset - called after the pci bus has been reset.
17341 * @pdev: Pointer to PCI device
17342 *
17343 * Restart the card from scratch, as if from a cold-boot.
17344 * At this point, the card has exprienced a hard reset,
17345 * followed by fixups by BIOS, and has its config space
17346 * set up identically to what it was at cold boot.
17347 */
17348static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
17349{
17350 struct net_device *netdev = pci_get_drvdata(pdev);
17351 struct tg3 *tp = netdev_priv(netdev);
17352 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
17353 int err;
17354
17355 rtnl_lock();
17356
17357 if (pci_enable_device(pdev)) {
17358 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
17359 goto done;
17360 }
17361
17362 pci_set_master(pdev);
17363 pci_restore_state(pdev);
17364 pci_save_state(pdev);
17365
17366 if (!netif_running(netdev)) {
17367 rc = PCI_ERS_RESULT_RECOVERED;
17368 goto done;
17369 }
17370
17371 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000017372 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017373 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017374
17375 rc = PCI_ERS_RESULT_RECOVERED;
17376
17377done:
17378 rtnl_unlock();
17379
17380 return rc;
17381}
17382
17383/**
17384 * tg3_io_resume - called when traffic can start flowing again.
17385 * @pdev: Pointer to PCI device
17386 *
17387 * This callback is called when the error recovery driver tells
17388 * us that its OK to resume normal operation.
17389 */
17390static void tg3_io_resume(struct pci_dev *pdev)
17391{
17392 struct net_device *netdev = pci_get_drvdata(pdev);
17393 struct tg3 *tp = netdev_priv(netdev);
17394 int err;
17395
17396 rtnl_lock();
17397
17398 if (!netif_running(netdev))
17399 goto done;
17400
17401 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000017402 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017403 err = tg3_restart_hw(tp, 1);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017404 if (err) {
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017405 tg3_full_unlock(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017406 netdev_err(netdev, "Cannot restart hardware after reset.\n");
17407 goto done;
17408 }
17409
17410 netif_device_attach(netdev);
17411
Matt Carlson21f76382012-02-22 12:35:21 +000017412 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017413
17414 tg3_netif_start(tp);
17415
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017416 tg3_full_unlock(tp);
17417
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017418 tg3_phy_start(tp);
17419
17420done:
17421 rtnl_unlock();
17422}
17423
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070017424static const struct pci_error_handlers tg3_err_handler = {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017425 .error_detected = tg3_io_error_detected,
17426 .slot_reset = tg3_io_slot_reset,
17427 .resume = tg3_io_resume
17428};
17429
Linus Torvalds1da177e2005-04-16 15:20:36 -070017430static struct pci_driver tg3_driver = {
17431 .name = DRV_MODULE_NAME,
17432 .id_table = tg3_pci_tbl,
17433 .probe = tg3_init_one,
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017434 .remove = tg3_remove_one,
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017435 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017436 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017437};
17438
17439static int __init tg3_init(void)
17440{
Jeff Garzik29917622006-08-19 17:48:59 -040017441 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017442}
17443
17444static void __exit tg3_cleanup(void)
17445{
17446 pci_unregister_driver(&tg3_driver);
17447}
17448
17449module_init(tg3_init);
17450module_exit(tg3_cleanup);