blob: 158a7c90db7c7db1781c4348336fb0b030f5369f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * tg3.c: Broadcom Tigon3 ethernet driver.
3 *
4 * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com)
5 * Copyright (C) 2001, 2002, 2003 Jeff Garzik (jgarzik@pobox.com)
6 * Copyright (C) 2004 Sun Microsystems Inc.
Nithin Nayak Sujirb681b652013-01-06 12:51:10 +00007 * Copyright (C) 2005-2013 Broadcom Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Firmware is:
Michael Chan49cabf42005-06-06 15:15:17 -070010 * Derived from proprietary unpublished source code,
11 * Copyright (C) 2000-2003 Broadcom Corporation.
12 *
13 * Permission is hereby granted for the distribution of this firmware
14 * data in hexadecimal or equivalent format, provided this copyright
15 * notice is accompanying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <linux/module.h>
20#include <linux/moduleparam.h>
Matt Carlson6867c842010-07-11 09:31:44 +000021#include <linux/stringify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/types.h>
24#include <linux/compiler.h>
25#include <linux/slab.h>
26#include <linux/delay.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020027#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000029#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/ioport.h>
31#include <linux/pci.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/ethtool.h>
Matt Carlson3110f5f52010-12-06 08:28:50 +000036#include <linux/mdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070038#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070039#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/if_vlan.h>
41#include <linux/ip.h>
42#include <linux/tcp.h>
43#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070044#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020045#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080046#include <linux/firmware.h>
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000047#include <linux/ssb/ssb_driver_gige.h>
Michael Chanaed93e02012-07-16 16:24:02 +000048#include <linux/hwmon.h>
49#include <linux/hwmon-sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030052#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000054#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000056#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Matt Carlsonbe947302012-12-03 19:36:57 +000058#include <uapi/linux/net_tstamp.h>
59#include <linux/ptp_clock_kernel.h>
60
David S. Miller49b6e95f2007-03-29 01:38:42 -070061#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070063#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#endif
65
Matt Carlson63532392008-11-03 16:49:57 -080066#define BAR_0 0
67#define BAR_2 2
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include "tg3.h"
70
Joe Perches63c3a662011-04-26 08:12:10 +000071/* Functions & macros to verify TG3_FLAGS types */
72
73static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
74{
75 return test_bit(flag, bits);
76}
77
78static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
79{
80 set_bit(flag, bits);
81}
82
83static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
84{
85 clear_bit(flag, bits);
86}
87
88#define tg3_flag(tp, flag) \
89 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
90#define tg3_flag_set(tp, flag) \
91 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
92#define tg3_flag_clear(tp, flag) \
93 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000096#define TG3_MAJ_NUM 3
Nithin Sujir7a28fde2013-04-09 08:48:10 +000097#define TG3_MIN_NUM 131
Matt Carlson6867c842010-07-11 09:31:44 +000098#define DRV_MODULE_VERSION \
99 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Nithin Sujir7a28fde2013-04-09 08:48:10 +0000100#define DRV_MODULE_RELDATE "April 09, 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
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001877static u32 tg3_decode_flowctrl_1000T(u32 adv)
1878{
1879 u32 flowctrl = 0;
1880
1881 if (adv & ADVERTISE_PAUSE_CAP) {
1882 flowctrl |= FLOW_CTRL_RX;
1883 if (!(adv & ADVERTISE_PAUSE_ASYM))
1884 flowctrl |= FLOW_CTRL_TX;
1885 } else if (adv & ADVERTISE_PAUSE_ASYM)
1886 flowctrl |= FLOW_CTRL_TX;
1887
1888 return flowctrl;
1889}
1890
Matt Carlson95e28692008-05-25 23:44:14 -07001891static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1892{
1893 u16 miireg;
1894
Steve Glendinninge18ce342008-12-16 02:00:00 -08001895 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001896 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001897 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001898 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001899 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001900 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1901 else
1902 miireg = 0;
1903
1904 return miireg;
1905}
1906
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001907static u32 tg3_decode_flowctrl_1000X(u32 adv)
1908{
1909 u32 flowctrl = 0;
1910
1911 if (adv & ADVERTISE_1000XPAUSE) {
1912 flowctrl |= FLOW_CTRL_RX;
1913 if (!(adv & ADVERTISE_1000XPSE_ASYM))
1914 flowctrl |= FLOW_CTRL_TX;
1915 } else if (adv & ADVERTISE_1000XPSE_ASYM)
1916 flowctrl |= FLOW_CTRL_TX;
1917
1918 return flowctrl;
1919}
1920
Matt Carlson95e28692008-05-25 23:44:14 -07001921static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1922{
1923 u8 cap = 0;
1924
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001925 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1926 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1927 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1928 if (lcladv & ADVERTISE_1000XPAUSE)
1929 cap = FLOW_CTRL_RX;
1930 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001931 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001932 }
1933
1934 return cap;
1935}
1936
Matt Carlsonf51f3562008-05-25 23:45:08 -07001937static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001938{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001939 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001940 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001941 u32 old_rx_mode = tp->rx_mode;
1942 u32 old_tx_mode = tp->tx_mode;
1943
Joe Perches63c3a662011-04-26 08:12:10 +00001944 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001945 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001946 else
1947 autoneg = tp->link_config.autoneg;
1948
Joe Perches63c3a662011-04-26 08:12:10 +00001949 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001950 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001951 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001952 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001953 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001954 } else
1955 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001956
Matt Carlsonf51f3562008-05-25 23:45:08 -07001957 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001958
Steve Glendinninge18ce342008-12-16 02:00:00 -08001959 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001960 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1961 else
1962 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1963
Matt Carlsonf51f3562008-05-25 23:45:08 -07001964 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001965 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001966
Steve Glendinninge18ce342008-12-16 02:00:00 -08001967 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001968 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1969 else
1970 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1971
Matt Carlsonf51f3562008-05-25 23:45:08 -07001972 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001973 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001974}
1975
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001976static void tg3_adjust_link(struct net_device *dev)
1977{
1978 u8 oldflowctrl, linkmesg = 0;
1979 u32 mac_mode, lcl_adv, rmt_adv;
1980 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001981 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001982
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001983 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001984
1985 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1986 MAC_MODE_HALF_DUPLEX);
1987
1988 oldflowctrl = tp->link_config.active_flowctrl;
1989
1990 if (phydev->link) {
1991 lcl_adv = 0;
1992 rmt_adv = 0;
1993
1994 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1995 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001996 else if (phydev->speed == SPEED_1000 ||
Joe Perches41535772013-02-16 11:20:04 +00001997 tg3_asic_rev(tp) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001998 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001999 else
2000 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002001
2002 if (phydev->duplex == DUPLEX_HALF)
2003 mac_mode |= MAC_MODE_HALF_DUPLEX;
2004 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00002005 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002006 tp->link_config.flowctrl);
2007
2008 if (phydev->pause)
2009 rmt_adv = LPA_PAUSE_CAP;
2010 if (phydev->asym_pause)
2011 rmt_adv |= LPA_PAUSE_ASYM;
2012 }
2013
2014 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
2015 } else
2016 mac_mode |= MAC_MODE_PORT_MODE_GMII;
2017
2018 if (mac_mode != tp->mac_mode) {
2019 tp->mac_mode = mac_mode;
2020 tw32_f(MAC_MODE, tp->mac_mode);
2021 udelay(40);
2022 }
2023
Joe Perches41535772013-02-16 11:20:04 +00002024 if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -08002025 if (phydev->speed == SPEED_10)
2026 tw32(MAC_MI_STAT,
2027 MAC_MI_STAT_10MBPS_MODE |
2028 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2029 else
2030 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2031 }
2032
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002033 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
2034 tw32(MAC_TX_LENGTHS,
2035 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2036 (6 << TX_LENGTHS_IPG_SHIFT) |
2037 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
2038 else
2039 tw32(MAC_TX_LENGTHS,
2040 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2041 (6 << TX_LENGTHS_IPG_SHIFT) |
2042 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
2043
Matt Carlson34655ad2012-02-22 12:35:18 +00002044 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002045 phydev->speed != tp->link_config.active_speed ||
2046 phydev->duplex != tp->link_config.active_duplex ||
2047 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002048 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002049
Matt Carlson34655ad2012-02-22 12:35:18 +00002050 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002051 tp->link_config.active_speed = phydev->speed;
2052 tp->link_config.active_duplex = phydev->duplex;
2053
Matt Carlson24bb4fb2009-10-05 17:55:29 +00002054 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002055
2056 if (linkmesg)
2057 tg3_link_report(tp);
2058}
2059
2060static int tg3_phy_init(struct tg3 *tp)
2061{
2062 struct phy_device *phydev;
2063
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002064 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002065 return 0;
2066
2067 /* Bring the PHY back to a known state. */
2068 tg3_bmcr_reset(tp);
2069
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002070 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002071
2072 /* Attach the MAC to the PHY. */
Florian Fainellif9a8f832013-01-14 00:52:52 +00002073 phydev = phy_connect(tp->dev, dev_name(&phydev->dev),
2074 tg3_adjust_link, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002075 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00002076 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002077 return PTR_ERR(phydev);
2078 }
2079
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002080 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002081 switch (phydev->interface) {
2082 case PHY_INTERFACE_MODE_GMII:
2083 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002084 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08002085 phydev->supported &= (PHY_GBIT_FEATURES |
2086 SUPPORTED_Pause |
2087 SUPPORTED_Asym_Pause);
2088 break;
2089 }
2090 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002091 case PHY_INTERFACE_MODE_MII:
2092 phydev->supported &= (PHY_BASIC_FEATURES |
2093 SUPPORTED_Pause |
2094 SUPPORTED_Asym_Pause);
2095 break;
2096 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002097 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002098 return -EINVAL;
2099 }
2100
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002101 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002102
2103 phydev->advertising = phydev->supported;
2104
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002105 return 0;
2106}
2107
2108static void tg3_phy_start(struct tg3 *tp)
2109{
2110 struct phy_device *phydev;
2111
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002112 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002113 return;
2114
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002115 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002116
Matt Carlson80096062010-08-02 11:26:06 +00002117 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
2118 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00002119 phydev->speed = tp->link_config.speed;
2120 phydev->duplex = tp->link_config.duplex;
2121 phydev->autoneg = tp->link_config.autoneg;
2122 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002123 }
2124
2125 phy_start(phydev);
2126
2127 phy_start_aneg(phydev);
2128}
2129
2130static void tg3_phy_stop(struct tg3 *tp)
2131{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002132 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002133 return;
2134
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002135 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002136}
2137
2138static void tg3_phy_fini(struct tg3 *tp)
2139{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002140 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002141 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002142 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002143 }
2144}
2145
Matt Carlson941ec902011-08-19 13:58:23 +00002146static int tg3_phy_set_extloopbk(struct tg3 *tp)
2147{
2148 int err;
2149 u32 val;
2150
2151 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
2152 return 0;
2153
2154 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
2155 /* Cannot do read-modify-write on 5401 */
2156 err = tg3_phy_auxctl_write(tp,
2157 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2158 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
2159 0x4c20);
2160 goto done;
2161 }
2162
2163 err = tg3_phy_auxctl_read(tp,
2164 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2165 if (err)
2166 return err;
2167
2168 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
2169 err = tg3_phy_auxctl_write(tp,
2170 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
2171
2172done:
2173 return err;
2174}
2175
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002176static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
2177{
2178 u32 phytest;
2179
2180 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2181 u32 phy;
2182
2183 tg3_writephy(tp, MII_TG3_FET_TEST,
2184 phytest | MII_TG3_FET_SHADOW_EN);
2185 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
2186 if (enable)
2187 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
2188 else
2189 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
2190 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
2191 }
2192 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2193 }
2194}
2195
Matt Carlson6833c042008-11-21 17:18:59 -08002196static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
2197{
2198 u32 reg;
2199
Joe Perches63c3a662011-04-26 08:12:10 +00002200 if (!tg3_flag(tp, 5705_PLUS) ||
2201 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002202 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08002203 return;
2204
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002205 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002206 tg3_phy_fet_toggle_apd(tp, enable);
2207 return;
2208 }
2209
Matt Carlson6833c042008-11-21 17:18:59 -08002210 reg = MII_TG3_MISC_SHDW_WREN |
2211 MII_TG3_MISC_SHDW_SCR5_SEL |
2212 MII_TG3_MISC_SHDW_SCR5_LPED |
2213 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
2214 MII_TG3_MISC_SHDW_SCR5_SDTL |
2215 MII_TG3_MISC_SHDW_SCR5_C125OE;
Joe Perches41535772013-02-16 11:20:04 +00002216 if (tg3_asic_rev(tp) != ASIC_REV_5784 || !enable)
Matt Carlson6833c042008-11-21 17:18:59 -08002217 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2218
2219 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2220
2221
2222 reg = MII_TG3_MISC_SHDW_WREN |
2223 MII_TG3_MISC_SHDW_APD_SEL |
2224 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2225 if (enable)
2226 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2227
2228 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2229}
2230
Joe Perches953c96e2013-04-09 10:18:14 +00002231static void tg3_phy_toggle_automdix(struct tg3 *tp, bool enable)
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002232{
2233 u32 phy;
2234
Joe Perches63c3a662011-04-26 08:12:10 +00002235 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002236 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002237 return;
2238
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002239 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002240 u32 ephy;
2241
Matt Carlson535ef6e2009-08-25 10:09:36 +00002242 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2243 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2244
2245 tg3_writephy(tp, MII_TG3_FET_TEST,
2246 ephy | MII_TG3_FET_SHADOW_EN);
2247 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002248 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002249 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002250 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002251 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2252 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002253 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002254 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002255 }
2256 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002257 int ret;
2258
2259 ret = tg3_phy_auxctl_read(tp,
2260 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2261 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002262 if (enable)
2263 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2264 else
2265 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002266 tg3_phy_auxctl_write(tp,
2267 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002268 }
2269 }
2270}
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272static void tg3_phy_set_wirespeed(struct tg3 *tp)
2273{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002274 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 u32 val;
2276
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002277 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 return;
2279
Matt Carlson15ee95c2011-04-20 07:57:40 +00002280 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2281 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002282 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2283 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284}
2285
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002286static void tg3_phy_apply_otp(struct tg3 *tp)
2287{
2288 u32 otp, phy;
2289
2290 if (!tp->phy_otp)
2291 return;
2292
2293 otp = tp->phy_otp;
2294
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002295 if (tg3_phy_toggle_auxctl_smdsp(tp, true))
Matt Carlson1d36ba42011-04-20 07:57:42 +00002296 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002297
2298 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2299 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2300 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2301
2302 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2303 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2304 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2305
2306 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2307 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2308 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2309
2310 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2311 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2312
2313 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2314 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2315
2316 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2317 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2318 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2319
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002320 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002321}
2322
Joe Perches953c96e2013-04-09 10:18:14 +00002323static void tg3_phy_eee_adjust(struct tg3 *tp, bool current_link_up)
Matt Carlson52b02d02010-10-14 10:37:41 +00002324{
2325 u32 val;
2326
2327 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2328 return;
2329
2330 tp->setlpicnt = 0;
2331
2332 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
Joe Perches953c96e2013-04-09 10:18:14 +00002333 current_link_up &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002334 tp->link_config.active_duplex == DUPLEX_FULL &&
2335 (tp->link_config.active_speed == SPEED_100 ||
2336 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002337 u32 eeectl;
2338
2339 if (tp->link_config.active_speed == SPEED_1000)
2340 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2341 else
2342 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2343
2344 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2345
Matt Carlson3110f5f52010-12-06 08:28:50 +00002346 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2347 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002348
Matt Carlsonb0c59432011-05-19 12:12:48 +00002349 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2350 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002351 tp->setlpicnt = 2;
2352 }
2353
2354 if (!tp->setlpicnt) {
Joe Perches953c96e2013-04-09 10:18:14 +00002355 if (current_link_up &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002356 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002357 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002358 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb715ce92011-07-20 10:20:52 +00002359 }
2360
Matt Carlson52b02d02010-10-14 10:37:41 +00002361 val = tr32(TG3_CPMU_EEE_MODE);
2362 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2363 }
2364}
2365
Matt Carlsonb0c59432011-05-19 12:12:48 +00002366static void tg3_phy_eee_enable(struct tg3 *tp)
2367{
2368 u32 val;
2369
2370 if (tp->link_config.active_speed == SPEED_1000 &&
Joe Perches41535772013-02-16 11:20:04 +00002371 (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2372 tg3_asic_rev(tp) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002373 tg3_flag(tp, 57765_CLASS)) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002374 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002375 val = MII_TG3_DSP_TAP26_ALNOKO |
2376 MII_TG3_DSP_TAP26_RMRXSTO;
2377 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002378 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002379 }
2380
2381 val = tr32(TG3_CPMU_EEE_MODE);
2382 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2383}
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385static int tg3_wait_macro_done(struct tg3 *tp)
2386{
2387 int limit = 100;
2388
2389 while (limit--) {
2390 u32 tmp32;
2391
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002392 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 if ((tmp32 & 0x1000) == 0)
2394 break;
2395 }
2396 }
Roel Kluind4675b52009-02-12 16:33:27 -08002397 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return -EBUSY;
2399
2400 return 0;
2401}
2402
2403static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2404{
2405 static const u32 test_pat[4][6] = {
2406 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2407 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2408 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2409 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2410 };
2411 int chan;
2412
2413 for (chan = 0; chan < 4; chan++) {
2414 int i;
2415
2416 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2417 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002418 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420 for (i = 0; i < 6; i++)
2421 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2422 test_pat[chan][i]);
2423
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002424 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (tg3_wait_macro_done(tp)) {
2426 *resetp = 1;
2427 return -EBUSY;
2428 }
2429
2430 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2431 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002432 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 if (tg3_wait_macro_done(tp)) {
2434 *resetp = 1;
2435 return -EBUSY;
2436 }
2437
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002438 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (tg3_wait_macro_done(tp)) {
2440 *resetp = 1;
2441 return -EBUSY;
2442 }
2443
2444 for (i = 0; i < 6; i += 2) {
2445 u32 low, high;
2446
2447 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2448 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2449 tg3_wait_macro_done(tp)) {
2450 *resetp = 1;
2451 return -EBUSY;
2452 }
2453 low &= 0x7fff;
2454 high &= 0x000f;
2455 if (low != test_pat[chan][i] ||
2456 high != test_pat[chan][i+1]) {
2457 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2458 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2459 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2460
2461 return -EBUSY;
2462 }
2463 }
2464 }
2465
2466 return 0;
2467}
2468
2469static int tg3_phy_reset_chanpat(struct tg3 *tp)
2470{
2471 int chan;
2472
2473 for (chan = 0; chan < 4; chan++) {
2474 int i;
2475
2476 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2477 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002478 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 for (i = 0; i < 6; i++)
2480 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002481 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 if (tg3_wait_macro_done(tp))
2483 return -EBUSY;
2484 }
2485
2486 return 0;
2487}
2488
2489static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2490{
2491 u32 reg32, phy9_orig;
2492 int retries, do_phy_reset, err;
2493
2494 retries = 10;
2495 do_phy_reset = 1;
2496 do {
2497 if (do_phy_reset) {
2498 err = tg3_bmcr_reset(tp);
2499 if (err)
2500 return err;
2501 do_phy_reset = 0;
2502 }
2503
2504 /* Disable transmitter and interrupt. */
2505 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2506 continue;
2507
2508 reg32 |= 0x3000;
2509 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2510
2511 /* Set full-duplex, 1000 mbps. */
2512 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002513 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002516 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 continue;
2518
Matt Carlson221c5632011-06-13 13:39:01 +00002519 tg3_writephy(tp, MII_CTRL1000,
2520 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002522 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002523 if (err)
2524 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002527 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2530 if (!err)
2531 break;
2532 } while (--retries);
2533
2534 err = tg3_phy_reset_chanpat(tp);
2535 if (err)
2536 return err;
2537
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002538 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002541 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002543 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Matt Carlson221c5632011-06-13 13:39:01 +00002545 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2548 reg32 &= ~0x3000;
2549 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2550 } else if (!err)
2551 err = -EBUSY;
2552
2553 return err;
2554}
2555
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002556static void tg3_carrier_off(struct tg3 *tp)
2557{
2558 netif_carrier_off(tp->dev);
2559 tp->link_up = false;
2560}
2561
Nithin Sujirce20f162013-04-09 08:48:04 +00002562static void tg3_warn_mgmt_link_flap(struct tg3 *tp)
2563{
2564 if (tg3_flag(tp, ENABLE_ASF))
2565 netdev_warn(tp->dev,
2566 "Management side-band traffic will be interrupted during phy settings change\n");
2567}
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569/* This will reset the tigon3 PHY if there is no valid
2570 * link unless the FORCE argument is non-zero.
2571 */
2572static int tg3_phy_reset(struct tg3 *tp)
2573{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002574 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 int err;
2576
Joe Perches41535772013-02-16 11:20:04 +00002577 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002578 val = tr32(GRC_MISC_CFG);
2579 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2580 udelay(40);
2581 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002582 err = tg3_readphy(tp, MII_BMSR, &val);
2583 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 if (err != 0)
2585 return -EBUSY;
2586
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002587 if (netif_running(tp->dev) && tp->link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00002588 netif_carrier_off(tp->dev);
Michael Chanc8e1e822006-04-29 18:55:17 -07002589 tg3_link_report(tp);
2590 }
2591
Joe Perches41535772013-02-16 11:20:04 +00002592 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
2593 tg3_asic_rev(tp) == ASIC_REV_5704 ||
2594 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 err = tg3_phy_reset_5703_4_5(tp);
2596 if (err)
2597 return err;
2598 goto out;
2599 }
2600
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002601 cpmuctrl = 0;
Joe Perches41535772013-02-16 11:20:04 +00002602 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
2603 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002604 cpmuctrl = tr32(TG3_CPMU_CTRL);
2605 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2606 tw32(TG3_CPMU_CTRL,
2607 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2608 }
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 err = tg3_bmcr_reset(tp);
2611 if (err)
2612 return err;
2613
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002614 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002615 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2616 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002617
2618 tw32(TG3_CPMU_CTRL, cpmuctrl);
2619 }
2620
Joe Perches41535772013-02-16 11:20:04 +00002621 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
2622 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002623 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2624 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2625 CPMU_LSPD_1000MB_MACCLK_12_5) {
2626 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2627 udelay(40);
2628 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2629 }
2630 }
2631
Joe Perches63c3a662011-04-26 08:12:10 +00002632 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002633 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002634 return 0;
2635
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002636 tg3_phy_apply_otp(tp);
2637
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002638 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002639 tg3_phy_toggle_apd(tp, true);
2640 else
2641 tg3_phy_toggle_apd(tp, false);
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002644 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002645 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002646 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2647 tg3_phydsp_write(tp, 0x000a, 0x0323);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002648 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002650
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002651 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002652 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2653 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002655
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002656 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002657 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002658 tg3_phydsp_write(tp, 0x000a, 0x310b);
2659 tg3_phydsp_write(tp, 0x201f, 0x9506);
2660 tg3_phydsp_write(tp, 0x401f, 0x14e2);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002661 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002662 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002663 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002664 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002665 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2666 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2667 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2668 tg3_writephy(tp, MII_TG3_TEST1,
2669 MII_TG3_TEST1_TRIM_EN | 0x4);
2670 } else
2671 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2672
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002673 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002674 }
Michael Chanc424cb22006-04-29 18:56:34 -07002675 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 /* Set Extended packet length bit (bit 14) on all chips that */
2678 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002679 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002681 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002682 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002684 err = tg3_phy_auxctl_read(tp,
2685 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2686 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002687 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2688 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
2690
2691 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2692 * jumbo frames transmission.
2693 */
Joe Perches63c3a662011-04-26 08:12:10 +00002694 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002695 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002696 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002697 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 }
2699
Joe Perches41535772013-02-16 11:20:04 +00002700 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002701 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002702 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002703 }
2704
Joe Perches41535772013-02-16 11:20:04 +00002705 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5762_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00002706 tg3_phydsp_write(tp, 0xffb, 0x4000);
2707
Joe Perches953c96e2013-04-09 10:18:14 +00002708 tg3_phy_toggle_automdix(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 tg3_phy_set_wirespeed(tp);
2710 return 0;
2711}
2712
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002713#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2714#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2715#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2716 TG3_GPIO_MSG_NEED_VAUX)
2717#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2718 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2719 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2720 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2721 (TG3_GPIO_MSG_DRVR_PRES << 12))
2722
2723#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2724 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2725 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2726 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2727 (TG3_GPIO_MSG_NEED_VAUX << 12))
2728
2729static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2730{
2731 u32 status, shift;
2732
Joe Perches41535772013-02-16 11:20:04 +00002733 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2734 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002735 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2736 else
2737 status = tr32(TG3_CPMU_DRV_STATUS);
2738
2739 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2740 status &= ~(TG3_GPIO_MSG_MASK << shift);
2741 status |= (newstat << shift);
2742
Joe Perches41535772013-02-16 11:20:04 +00002743 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2744 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002745 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2746 else
2747 tw32(TG3_CPMU_DRV_STATUS, status);
2748
2749 return status >> TG3_APE_GPIO_MSG_SHIFT;
2750}
2751
Matt Carlson520b2752011-06-13 13:39:02 +00002752static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2753{
2754 if (!tg3_flag(tp, IS_NIC))
2755 return 0;
2756
Joe Perches41535772013-02-16 11:20:04 +00002757 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2758 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2759 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002760 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2761 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002762
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002763 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2764
2765 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2766 TG3_GRC_LCLCTL_PWRSW_DELAY);
2767
2768 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2769 } else {
2770 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2771 TG3_GRC_LCLCTL_PWRSW_DELAY);
2772 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002773
Matt Carlson520b2752011-06-13 13:39:02 +00002774 return 0;
2775}
2776
2777static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2778{
2779 u32 grc_local_ctrl;
2780
2781 if (!tg3_flag(tp, IS_NIC) ||
Joe Perches41535772013-02-16 11:20:04 +00002782 tg3_asic_rev(tp) == ASIC_REV_5700 ||
2783 tg3_asic_rev(tp) == ASIC_REV_5701)
Matt Carlson520b2752011-06-13 13:39:02 +00002784 return;
2785
2786 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2787
2788 tw32_wait_f(GRC_LOCAL_CTRL,
2789 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2790 TG3_GRC_LCLCTL_PWRSW_DELAY);
2791
2792 tw32_wait_f(GRC_LOCAL_CTRL,
2793 grc_local_ctrl,
2794 TG3_GRC_LCLCTL_PWRSW_DELAY);
2795
2796 tw32_wait_f(GRC_LOCAL_CTRL,
2797 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2798 TG3_GRC_LCLCTL_PWRSW_DELAY);
2799}
2800
2801static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2802{
2803 if (!tg3_flag(tp, IS_NIC))
2804 return;
2805
Joe Perches41535772013-02-16 11:20:04 +00002806 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
2807 tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson520b2752011-06-13 13:39:02 +00002808 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2809 (GRC_LCLCTRL_GPIO_OE0 |
2810 GRC_LCLCTRL_GPIO_OE1 |
2811 GRC_LCLCTRL_GPIO_OE2 |
2812 GRC_LCLCTRL_GPIO_OUTPUT0 |
2813 GRC_LCLCTRL_GPIO_OUTPUT1),
2814 TG3_GRC_LCLCTL_PWRSW_DELAY);
2815 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2816 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2817 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2818 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2819 GRC_LCLCTRL_GPIO_OE1 |
2820 GRC_LCLCTRL_GPIO_OE2 |
2821 GRC_LCLCTRL_GPIO_OUTPUT0 |
2822 GRC_LCLCTRL_GPIO_OUTPUT1 |
2823 tp->grc_local_ctrl;
2824 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2825 TG3_GRC_LCLCTL_PWRSW_DELAY);
2826
2827 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2828 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2829 TG3_GRC_LCLCTL_PWRSW_DELAY);
2830
2831 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2832 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2833 TG3_GRC_LCLCTL_PWRSW_DELAY);
2834 } else {
2835 u32 no_gpio2;
2836 u32 grc_local_ctrl = 0;
2837
2838 /* Workaround to prevent overdrawing Amps. */
Joe Perches41535772013-02-16 11:20:04 +00002839 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Matt Carlson520b2752011-06-13 13:39:02 +00002840 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2841 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2842 grc_local_ctrl,
2843 TG3_GRC_LCLCTL_PWRSW_DELAY);
2844 }
2845
2846 /* On 5753 and variants, GPIO2 cannot be used. */
2847 no_gpio2 = tp->nic_sram_data_cfg &
2848 NIC_SRAM_DATA_CFG_NO_GPIO2;
2849
2850 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2851 GRC_LCLCTRL_GPIO_OE1 |
2852 GRC_LCLCTRL_GPIO_OE2 |
2853 GRC_LCLCTRL_GPIO_OUTPUT1 |
2854 GRC_LCLCTRL_GPIO_OUTPUT2;
2855 if (no_gpio2) {
2856 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2857 GRC_LCLCTRL_GPIO_OUTPUT2);
2858 }
2859 tw32_wait_f(GRC_LOCAL_CTRL,
2860 tp->grc_local_ctrl | grc_local_ctrl,
2861 TG3_GRC_LCLCTL_PWRSW_DELAY);
2862
2863 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2864
2865 tw32_wait_f(GRC_LOCAL_CTRL,
2866 tp->grc_local_ctrl | grc_local_ctrl,
2867 TG3_GRC_LCLCTL_PWRSW_DELAY);
2868
2869 if (!no_gpio2) {
2870 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2871 tw32_wait_f(GRC_LOCAL_CTRL,
2872 tp->grc_local_ctrl | grc_local_ctrl,
2873 TG3_GRC_LCLCTL_PWRSW_DELAY);
2874 }
2875 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002876}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002877
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002878static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002879{
2880 u32 msg = 0;
2881
2882 /* Serialize power state transitions */
2883 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2884 return;
2885
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002886 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002887 msg = TG3_GPIO_MSG_NEED_VAUX;
2888
2889 msg = tg3_set_function_status(tp, msg);
2890
2891 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2892 goto done;
2893
2894 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2895 tg3_pwrsrc_switch_to_vaux(tp);
2896 else
2897 tg3_pwrsrc_die_with_vmain(tp);
2898
2899done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002900 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002901}
2902
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002903static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Matt Carlson683644b2011-03-09 16:58:23 +00002905 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Matt Carlson334355a2010-01-20 16:58:10 +00002907 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002908 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 return;
2910
Joe Perches41535772013-02-16 11:20:04 +00002911 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2912 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2913 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002914 tg3_frob_aux_power_5717(tp, include_wol ?
2915 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002916 return;
2917 }
2918
2919 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002920 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002922 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002923
Michael Chanbc1c7562006-03-20 17:48:03 -08002924 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002925 if (dev_peer) {
2926 struct tg3 *tp_peer = netdev_priv(dev_peer);
2927
Joe Perches63c3a662011-04-26 08:12:10 +00002928 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002929 return;
2930
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002931 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002932 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002933 need_vaux = true;
2934 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002937 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2938 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002939 need_vaux = true;
2940
Matt Carlson520b2752011-06-13 13:39:02 +00002941 if (need_vaux)
2942 tg3_pwrsrc_switch_to_vaux(tp);
2943 else
2944 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945}
2946
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002947static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2948{
2949 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2950 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002951 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002952 if (speed != SPEED_10)
2953 return 1;
2954 } else if (speed == SPEED_10)
2955 return 1;
2956
2957 return 0;
2958}
2959
Nithin Sujir44f3b502013-05-13 11:04:15 +00002960static bool tg3_phy_power_bug(struct tg3 *tp)
2961{
2962 switch (tg3_asic_rev(tp)) {
2963 case ASIC_REV_5700:
2964 case ASIC_REV_5704:
2965 return true;
2966 case ASIC_REV_5780:
2967 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
2968 return true;
2969 return false;
2970 case ASIC_REV_5717:
2971 if (!tp->pci_fn)
2972 return true;
2973 return false;
2974 case ASIC_REV_5719:
2975 case ASIC_REV_5720:
2976 if ((tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
2977 !tp->pci_fn)
2978 return true;
2979 return false;
2980 }
2981
2982 return false;
2983}
2984
Matt Carlson0a459aa2008-11-03 16:54:15 -08002985static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002986{
Matt Carlsonce057f02007-11-12 21:08:03 -08002987 u32 val;
2988
Nithin Sujir942d1af2013-04-09 08:48:07 +00002989 if (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)
2990 return;
2991
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002992 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +00002993 if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Michael Chan51297242007-02-13 12:17:57 -08002994 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2995 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2996
2997 sg_dig_ctrl |=
2998 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2999 tw32(SG_DIG_CTRL, sg_dig_ctrl);
3000 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
3001 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003002 return;
Michael Chan51297242007-02-13 12:17:57 -08003003 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003004
Joe Perches41535772013-02-16 11:20:04 +00003005 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08003006 tg3_bmcr_reset(tp);
3007 val = tr32(GRC_MISC_CFG);
3008 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
3009 udelay(40);
3010 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003011 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00003012 u32 phytest;
3013 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
3014 u32 phy;
3015
3016 tg3_writephy(tp, MII_ADVERTISE, 0);
3017 tg3_writephy(tp, MII_BMCR,
3018 BMCR_ANENABLE | BMCR_ANRESTART);
3019
3020 tg3_writephy(tp, MII_TG3_FET_TEST,
3021 phytest | MII_TG3_FET_SHADOW_EN);
3022 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
3023 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
3024 tg3_writephy(tp,
3025 MII_TG3_FET_SHDW_AUXMODE4,
3026 phy);
3027 }
3028 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
3029 }
3030 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003031 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07003032 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3033 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003034
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003035 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3036 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
3037 MII_TG3_AUXCTL_PCTL_VREG_11V;
3038 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07003039 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003040
Michael Chan15c3b692006-03-22 01:06:52 -08003041 /* The PHY should not be powered down on some chips because
3042 * of bugs.
3043 */
Nithin Sujir44f3b502013-05-13 11:04:15 +00003044 if (tg3_phy_power_bug(tp))
Michael Chan15c3b692006-03-22 01:06:52 -08003045 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08003046
Joe Perches41535772013-02-16 11:20:04 +00003047 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
3048 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08003049 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
3050 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
3051 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
3052 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
3053 }
3054
Michael Chan15c3b692006-03-22 01:06:52 -08003055 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
3056}
3057
Matt Carlson3f007892008-11-03 16:51:36 -08003058/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003059static int tg3_nvram_lock(struct tg3 *tp)
3060{
Joe Perches63c3a662011-04-26 08:12:10 +00003061 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003062 int i;
3063
3064 if (tp->nvram_lock_cnt == 0) {
3065 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
3066 for (i = 0; i < 8000; i++) {
3067 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
3068 break;
3069 udelay(20);
3070 }
3071 if (i == 8000) {
3072 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
3073 return -ENODEV;
3074 }
3075 }
3076 tp->nvram_lock_cnt++;
3077 }
3078 return 0;
3079}
3080
3081/* tp->lock is held. */
3082static void tg3_nvram_unlock(struct tg3 *tp)
3083{
Joe Perches63c3a662011-04-26 08:12:10 +00003084 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003085 if (tp->nvram_lock_cnt > 0)
3086 tp->nvram_lock_cnt--;
3087 if (tp->nvram_lock_cnt == 0)
3088 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
3089 }
3090}
3091
3092/* tp->lock is held. */
3093static void tg3_enable_nvram_access(struct tg3 *tp)
3094{
Joe Perches63c3a662011-04-26 08:12:10 +00003095 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003096 u32 nvaccess = tr32(NVRAM_ACCESS);
3097
3098 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
3099 }
3100}
3101
3102/* tp->lock is held. */
3103static void tg3_disable_nvram_access(struct tg3 *tp)
3104{
Joe Perches63c3a662011-04-26 08:12:10 +00003105 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003106 u32 nvaccess = tr32(NVRAM_ACCESS);
3107
3108 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
3109 }
3110}
3111
3112static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
3113 u32 offset, u32 *val)
3114{
3115 u32 tmp;
3116 int i;
3117
3118 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
3119 return -EINVAL;
3120
3121 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
3122 EEPROM_ADDR_DEVID_MASK |
3123 EEPROM_ADDR_READ);
3124 tw32(GRC_EEPROM_ADDR,
3125 tmp |
3126 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3127 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
3128 EEPROM_ADDR_ADDR_MASK) |
3129 EEPROM_ADDR_READ | EEPROM_ADDR_START);
3130
3131 for (i = 0; i < 1000; i++) {
3132 tmp = tr32(GRC_EEPROM_ADDR);
3133
3134 if (tmp & EEPROM_ADDR_COMPLETE)
3135 break;
3136 msleep(1);
3137 }
3138 if (!(tmp & EEPROM_ADDR_COMPLETE))
3139 return -EBUSY;
3140
Matt Carlson62cedd12009-04-20 14:52:29 -07003141 tmp = tr32(GRC_EEPROM_DATA);
3142
3143 /*
3144 * The data will always be opposite the native endian
3145 * format. Perform a blind byteswap to compensate.
3146 */
3147 *val = swab32(tmp);
3148
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003149 return 0;
3150}
3151
3152#define NVRAM_CMD_TIMEOUT 10000
3153
3154static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
3155{
3156 int i;
3157
3158 tw32(NVRAM_CMD, nvram_cmd);
3159 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
3160 udelay(10);
3161 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
3162 udelay(10);
3163 break;
3164 }
3165 }
3166
3167 if (i == NVRAM_CMD_TIMEOUT)
3168 return -EBUSY;
3169
3170 return 0;
3171}
3172
3173static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
3174{
Joe Perches63c3a662011-04-26 08:12:10 +00003175 if (tg3_flag(tp, NVRAM) &&
3176 tg3_flag(tp, NVRAM_BUFFERED) &&
3177 tg3_flag(tp, FLASH) &&
3178 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003179 (tp->nvram_jedecnum == JEDEC_ATMEL))
3180
3181 addr = ((addr / tp->nvram_pagesize) <<
3182 ATMEL_AT45DB0X1B_PAGE_POS) +
3183 (addr % tp->nvram_pagesize);
3184
3185 return addr;
3186}
3187
3188static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
3189{
Joe Perches63c3a662011-04-26 08:12:10 +00003190 if (tg3_flag(tp, NVRAM) &&
3191 tg3_flag(tp, NVRAM_BUFFERED) &&
3192 tg3_flag(tp, FLASH) &&
3193 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003194 (tp->nvram_jedecnum == JEDEC_ATMEL))
3195
3196 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
3197 tp->nvram_pagesize) +
3198 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
3199
3200 return addr;
3201}
3202
Matt Carlsone4f34112009-02-25 14:25:00 +00003203/* NOTE: Data read in from NVRAM is byteswapped according to
3204 * the byteswapping settings for all other register accesses.
3205 * tg3 devices are BE devices, so on a BE machine, the data
3206 * returned will be exactly as it is seen in NVRAM. On a LE
3207 * machine, the 32-bit value will be byteswapped.
3208 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003209static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
3210{
3211 int ret;
3212
Joe Perches63c3a662011-04-26 08:12:10 +00003213 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003214 return tg3_nvram_read_using_eeprom(tp, offset, val);
3215
3216 offset = tg3_nvram_phys_addr(tp, offset);
3217
3218 if (offset > NVRAM_ADDR_MSK)
3219 return -EINVAL;
3220
3221 ret = tg3_nvram_lock(tp);
3222 if (ret)
3223 return ret;
3224
3225 tg3_enable_nvram_access(tp);
3226
3227 tw32(NVRAM_ADDR, offset);
3228 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
3229 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
3230
3231 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00003232 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003233
3234 tg3_disable_nvram_access(tp);
3235
3236 tg3_nvram_unlock(tp);
3237
3238 return ret;
3239}
3240
Matt Carlsona9dc5292009-02-25 14:25:30 +00003241/* Ensures NVRAM data is in bytestream format. */
3242static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003243{
3244 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00003245 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003246 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003247 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003248 return res;
3249}
3250
Matt Carlsondbe9b922012-02-13 10:20:09 +00003251static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
3252 u32 offset, u32 len, u8 *buf)
3253{
3254 int i, j, rc = 0;
3255 u32 val;
3256
3257 for (i = 0; i < len; i += 4) {
3258 u32 addr;
3259 __be32 data;
3260
3261 addr = offset + i;
3262
3263 memcpy(&data, buf + i, 4);
3264
3265 /*
3266 * The SEEPROM interface expects the data to always be opposite
3267 * the native endian format. We accomplish this by reversing
3268 * all the operations that would have been performed on the
3269 * data from a call to tg3_nvram_read_be32().
3270 */
3271 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3272
3273 val = tr32(GRC_EEPROM_ADDR);
3274 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3275
3276 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3277 EEPROM_ADDR_READ);
3278 tw32(GRC_EEPROM_ADDR, val |
3279 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3280 (addr & EEPROM_ADDR_ADDR_MASK) |
3281 EEPROM_ADDR_START |
3282 EEPROM_ADDR_WRITE);
3283
3284 for (j = 0; j < 1000; j++) {
3285 val = tr32(GRC_EEPROM_ADDR);
3286
3287 if (val & EEPROM_ADDR_COMPLETE)
3288 break;
3289 msleep(1);
3290 }
3291 if (!(val & EEPROM_ADDR_COMPLETE)) {
3292 rc = -EBUSY;
3293 break;
3294 }
3295 }
3296
3297 return rc;
3298}
3299
3300/* offset and length are dword aligned */
3301static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3302 u8 *buf)
3303{
3304 int ret = 0;
3305 u32 pagesize = tp->nvram_pagesize;
3306 u32 pagemask = pagesize - 1;
3307 u32 nvram_cmd;
3308 u8 *tmp;
3309
3310 tmp = kmalloc(pagesize, GFP_KERNEL);
3311 if (tmp == NULL)
3312 return -ENOMEM;
3313
3314 while (len) {
3315 int j;
3316 u32 phy_addr, page_off, size;
3317
3318 phy_addr = offset & ~pagemask;
3319
3320 for (j = 0; j < pagesize; j += 4) {
3321 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3322 (__be32 *) (tmp + j));
3323 if (ret)
3324 break;
3325 }
3326 if (ret)
3327 break;
3328
3329 page_off = offset & pagemask;
3330 size = pagesize;
3331 if (len < size)
3332 size = len;
3333
3334 len -= size;
3335
3336 memcpy(tmp + page_off, buf, size);
3337
3338 offset = offset + (pagesize - page_off);
3339
3340 tg3_enable_nvram_access(tp);
3341
3342 /*
3343 * Before we can erase the flash page, we need
3344 * to issue a special "write enable" command.
3345 */
3346 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3347
3348 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3349 break;
3350
3351 /* Erase the target page */
3352 tw32(NVRAM_ADDR, phy_addr);
3353
3354 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3355 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3356
3357 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3358 break;
3359
3360 /* Issue another write enable to start the write. */
3361 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3362
3363 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3364 break;
3365
3366 for (j = 0; j < pagesize; j += 4) {
3367 __be32 data;
3368
3369 data = *((__be32 *) (tmp + j));
3370
3371 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3372
3373 tw32(NVRAM_ADDR, phy_addr + j);
3374
3375 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3376 NVRAM_CMD_WR;
3377
3378 if (j == 0)
3379 nvram_cmd |= NVRAM_CMD_FIRST;
3380 else if (j == (pagesize - 4))
3381 nvram_cmd |= NVRAM_CMD_LAST;
3382
3383 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3384 if (ret)
3385 break;
3386 }
3387 if (ret)
3388 break;
3389 }
3390
3391 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3392 tg3_nvram_exec_cmd(tp, nvram_cmd);
3393
3394 kfree(tmp);
3395
3396 return ret;
3397}
3398
3399/* offset and length are dword aligned */
3400static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3401 u8 *buf)
3402{
3403 int i, ret = 0;
3404
3405 for (i = 0; i < len; i += 4, offset += 4) {
3406 u32 page_off, phy_addr, nvram_cmd;
3407 __be32 data;
3408
3409 memcpy(&data, buf + i, 4);
3410 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3411
3412 page_off = offset % tp->nvram_pagesize;
3413
3414 phy_addr = tg3_nvram_phys_addr(tp, offset);
3415
Matt Carlsondbe9b922012-02-13 10:20:09 +00003416 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3417
3418 if (page_off == 0 || i == 0)
3419 nvram_cmd |= NVRAM_CMD_FIRST;
3420 if (page_off == (tp->nvram_pagesize - 4))
3421 nvram_cmd |= NVRAM_CMD_LAST;
3422
3423 if (i == (len - 4))
3424 nvram_cmd |= NVRAM_CMD_LAST;
3425
Matt Carlson42278222012-02-13 15:20:11 +00003426 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3427 !tg3_flag(tp, FLASH) ||
3428 !tg3_flag(tp, 57765_PLUS))
3429 tw32(NVRAM_ADDR, phy_addr);
3430
Joe Perches41535772013-02-16 11:20:04 +00003431 if (tg3_asic_rev(tp) != ASIC_REV_5752 &&
Matt Carlsondbe9b922012-02-13 10:20:09 +00003432 !tg3_flag(tp, 5755_PLUS) &&
3433 (tp->nvram_jedecnum == JEDEC_ST) &&
3434 (nvram_cmd & NVRAM_CMD_FIRST)) {
3435 u32 cmd;
3436
3437 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3438 ret = tg3_nvram_exec_cmd(tp, cmd);
3439 if (ret)
3440 break;
3441 }
3442 if (!tg3_flag(tp, FLASH)) {
3443 /* We always do complete word writes to eeprom. */
3444 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3445 }
3446
3447 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3448 if (ret)
3449 break;
3450 }
3451 return ret;
3452}
3453
3454/* offset and length are dword aligned */
3455static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3456{
3457 int ret;
3458
3459 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3460 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3461 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3462 udelay(40);
3463 }
3464
3465 if (!tg3_flag(tp, NVRAM)) {
3466 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3467 } else {
3468 u32 grc_mode;
3469
3470 ret = tg3_nvram_lock(tp);
3471 if (ret)
3472 return ret;
3473
3474 tg3_enable_nvram_access(tp);
3475 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3476 tw32(NVRAM_WRITE1, 0x406);
3477
3478 grc_mode = tr32(GRC_MODE);
3479 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3480
3481 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3482 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3483 buf);
3484 } else {
3485 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3486 buf);
3487 }
3488
3489 grc_mode = tr32(GRC_MODE);
3490 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3491
3492 tg3_disable_nvram_access(tp);
3493 tg3_nvram_unlock(tp);
3494 }
3495
3496 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3497 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3498 udelay(40);
3499 }
3500
3501 return ret;
3502}
3503
Matt Carlson997b4f12011-08-31 11:44:53 +00003504#define RX_CPU_SCRATCH_BASE 0x30000
3505#define RX_CPU_SCRATCH_SIZE 0x04000
3506#define TX_CPU_SCRATCH_BASE 0x34000
3507#define TX_CPU_SCRATCH_SIZE 0x04000
3508
3509/* tp->lock is held. */
Nithin Sujir837c45b2013-03-06 17:02:30 +00003510static int tg3_pause_cpu(struct tg3 *tp, u32 cpu_base)
Matt Carlson997b4f12011-08-31 11:44:53 +00003511{
3512 int i;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003513 const int iters = 10000;
Matt Carlson997b4f12011-08-31 11:44:53 +00003514
Nithin Sujir837c45b2013-03-06 17:02:30 +00003515 for (i = 0; i < iters; i++) {
3516 tw32(cpu_base + CPU_STATE, 0xffffffff);
3517 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3518 if (tr32(cpu_base + CPU_MODE) & CPU_MODE_HALT)
3519 break;
3520 }
3521
3522 return (i == iters) ? -EBUSY : 0;
3523}
3524
3525/* tp->lock is held. */
3526static int tg3_rxcpu_pause(struct tg3 *tp)
3527{
3528 int rc = tg3_pause_cpu(tp, RX_CPU_BASE);
3529
3530 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3531 tw32_f(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3532 udelay(10);
3533
3534 return rc;
3535}
3536
3537/* tp->lock is held. */
3538static int tg3_txcpu_pause(struct tg3 *tp)
3539{
3540 return tg3_pause_cpu(tp, TX_CPU_BASE);
3541}
3542
3543/* tp->lock is held. */
3544static void tg3_resume_cpu(struct tg3 *tp, u32 cpu_base)
3545{
3546 tw32(cpu_base + CPU_STATE, 0xffffffff);
3547 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3548}
3549
3550/* tp->lock is held. */
3551static void tg3_rxcpu_resume(struct tg3 *tp)
3552{
3553 tg3_resume_cpu(tp, RX_CPU_BASE);
3554}
3555
3556/* tp->lock is held. */
3557static int tg3_halt_cpu(struct tg3 *tp, u32 cpu_base)
3558{
3559 int rc;
3560
3561 BUG_ON(cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Matt Carlson997b4f12011-08-31 11:44:53 +00003562
Joe Perches41535772013-02-16 11:20:04 +00003563 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003564 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3565
3566 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3567 return 0;
3568 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003569 if (cpu_base == RX_CPU_BASE) {
3570 rc = tg3_rxcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003571 } else {
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00003572 /*
3573 * There is only an Rx CPU for the 5750 derivative in the
3574 * BCM4785.
3575 */
3576 if (tg3_flag(tp, IS_SSB_CORE))
3577 return 0;
3578
Nithin Sujir837c45b2013-03-06 17:02:30 +00003579 rc = tg3_txcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003580 }
3581
Nithin Sujir837c45b2013-03-06 17:02:30 +00003582 if (rc) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003583 netdev_err(tp->dev, "%s timed out, %s CPU\n",
Nithin Sujir837c45b2013-03-06 17:02:30 +00003584 __func__, cpu_base == RX_CPU_BASE ? "RX" : "TX");
Matt Carlson997b4f12011-08-31 11:44:53 +00003585 return -ENODEV;
3586 }
3587
3588 /* Clear firmware's nvram arbitration. */
3589 if (tg3_flag(tp, NVRAM))
3590 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3591 return 0;
3592}
3593
Nithin Sujir31f11a92013-03-06 17:02:33 +00003594static int tg3_fw_data_len(struct tg3 *tp,
3595 const struct tg3_firmware_hdr *fw_hdr)
3596{
3597 int fw_len;
3598
3599 /* Non fragmented firmware have one firmware header followed by a
3600 * contiguous chunk of data to be written. The length field in that
3601 * header is not the length of data to be written but the complete
3602 * length of the bss. The data length is determined based on
3603 * tp->fw->size minus headers.
3604 *
3605 * Fragmented firmware have a main header followed by multiple
3606 * fragments. Each fragment is identical to non fragmented firmware
3607 * with a firmware header followed by a contiguous chunk of data. In
3608 * the main header, the length field is unused and set to 0xffffffff.
3609 * In each fragment header the length is the entire size of that
3610 * fragment i.e. fragment data + header length. Data length is
3611 * therefore length field in the header minus TG3_FW_HDR_LEN.
3612 */
3613 if (tp->fw_len == 0xffffffff)
3614 fw_len = be32_to_cpu(fw_hdr->len);
3615 else
3616 fw_len = tp->fw->size;
3617
3618 return (fw_len - TG3_FW_HDR_LEN) / sizeof(u32);
3619}
3620
Matt Carlson997b4f12011-08-31 11:44:53 +00003621/* tp->lock is held. */
3622static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3623 u32 cpu_scratch_base, int cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003624 const struct tg3_firmware_hdr *fw_hdr)
Matt Carlson997b4f12011-08-31 11:44:53 +00003625{
Nithin Sujirc4dab502013-03-06 17:02:34 +00003626 int err, i;
Matt Carlson997b4f12011-08-31 11:44:53 +00003627 void (*write_op)(struct tg3 *, u32, u32);
Nithin Sujir31f11a92013-03-06 17:02:33 +00003628 int total_len = tp->fw->size;
Matt Carlson997b4f12011-08-31 11:44:53 +00003629
3630 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3631 netdev_err(tp->dev,
3632 "%s: Trying to load TX cpu firmware which is 5705\n",
3633 __func__);
3634 return -EINVAL;
3635 }
3636
Nithin Sujirc4dab502013-03-06 17:02:34 +00003637 if (tg3_flag(tp, 5705_PLUS) && tg3_asic_rev(tp) != ASIC_REV_57766)
Matt Carlson997b4f12011-08-31 11:44:53 +00003638 write_op = tg3_write_mem;
3639 else
3640 write_op = tg3_write_indirect_reg32;
3641
Nithin Sujirc4dab502013-03-06 17:02:34 +00003642 if (tg3_asic_rev(tp) != ASIC_REV_57766) {
3643 /* It is possible that bootcode is still loading at this point.
3644 * Get the nvram lock first before halting the cpu.
3645 */
3646 int lock_err = tg3_nvram_lock(tp);
3647 err = tg3_halt_cpu(tp, cpu_base);
3648 if (!lock_err)
3649 tg3_nvram_unlock(tp);
3650 if (err)
3651 goto out;
Matt Carlson997b4f12011-08-31 11:44:53 +00003652
Nithin Sujirc4dab502013-03-06 17:02:34 +00003653 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3654 write_op(tp, cpu_scratch_base + i, 0);
3655 tw32(cpu_base + CPU_STATE, 0xffffffff);
3656 tw32(cpu_base + CPU_MODE,
3657 tr32(cpu_base + CPU_MODE) | CPU_MODE_HALT);
3658 } else {
3659 /* Subtract additional main header for fragmented firmware and
3660 * advance to the first fragment
3661 */
3662 total_len -= TG3_FW_HDR_LEN;
3663 fw_hdr++;
3664 }
Nithin Sujir77997ea2013-03-06 17:02:32 +00003665
Nithin Sujir31f11a92013-03-06 17:02:33 +00003666 do {
3667 u32 *fw_data = (u32 *)(fw_hdr + 1);
3668 for (i = 0; i < tg3_fw_data_len(tp, fw_hdr); i++)
3669 write_op(tp, cpu_scratch_base +
3670 (be32_to_cpu(fw_hdr->base_addr) & 0xffff) +
3671 (i * sizeof(u32)),
3672 be32_to_cpu(fw_data[i]));
3673
3674 total_len -= be32_to_cpu(fw_hdr->len);
3675
3676 /* Advance to next fragment */
3677 fw_hdr = (struct tg3_firmware_hdr *)
3678 ((void *)fw_hdr + be32_to_cpu(fw_hdr->len));
3679 } while (total_len > 0);
Matt Carlson997b4f12011-08-31 11:44:53 +00003680
3681 err = 0;
3682
3683out:
3684 return err;
3685}
3686
3687/* tp->lock is held. */
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003688static int tg3_pause_cpu_and_set_pc(struct tg3 *tp, u32 cpu_base, u32 pc)
3689{
3690 int i;
3691 const int iters = 5;
3692
3693 tw32(cpu_base + CPU_STATE, 0xffffffff);
3694 tw32_f(cpu_base + CPU_PC, pc);
3695
3696 for (i = 0; i < iters; i++) {
3697 if (tr32(cpu_base + CPU_PC) == pc)
3698 break;
3699 tw32(cpu_base + CPU_STATE, 0xffffffff);
3700 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3701 tw32_f(cpu_base + CPU_PC, pc);
3702 udelay(1000);
3703 }
3704
3705 return (i == iters) ? -EBUSY : 0;
3706}
3707
3708/* tp->lock is held. */
Matt Carlson997b4f12011-08-31 11:44:53 +00003709static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3710{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003711 const struct tg3_firmware_hdr *fw_hdr;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003712 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003713
Nithin Sujir77997ea2013-03-06 17:02:32 +00003714 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003715
3716 /* Firmware blob starts with version numbers, followed by
3717 start address and length. We are setting complete length.
3718 length = end_address_of_bss - start_address_of_text.
3719 Remainder is the blob to be loaded contiguously
3720 from start address. */
3721
Matt Carlson997b4f12011-08-31 11:44:53 +00003722 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3723 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003724 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003725 if (err)
3726 return err;
3727
3728 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3729 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003730 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003731 if (err)
3732 return err;
3733
3734 /* Now startup only the RX cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003735 err = tg3_pause_cpu_and_set_pc(tp, RX_CPU_BASE,
3736 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003737 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003738 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3739 "should be %08x\n", __func__,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003740 tr32(RX_CPU_BASE + CPU_PC),
3741 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003742 return -ENODEV;
3743 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003744
3745 tg3_rxcpu_resume(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003746
3747 return 0;
3748}
3749
Nithin Sujirc4dab502013-03-06 17:02:34 +00003750static int tg3_validate_rxcpu_state(struct tg3 *tp)
3751{
3752 const int iters = 1000;
3753 int i;
3754 u32 val;
3755
3756 /* Wait for boot code to complete initialization and enter service
3757 * loop. It is then safe to download service patches
3758 */
3759 for (i = 0; i < iters; i++) {
3760 if (tr32(RX_CPU_HWBKPT) == TG3_SBROM_IN_SERVICE_LOOP)
3761 break;
3762
3763 udelay(10);
3764 }
3765
3766 if (i == iters) {
3767 netdev_err(tp->dev, "Boot code not ready for service patches\n");
3768 return -EBUSY;
3769 }
3770
3771 val = tg3_read_indirect_reg32(tp, TG3_57766_FW_HANDSHAKE);
3772 if (val & 0xff) {
3773 netdev_warn(tp->dev,
3774 "Other patches exist. Not downloading EEE patch\n");
3775 return -EEXIST;
3776 }
3777
3778 return 0;
3779}
3780
3781/* tp->lock is held. */
3782static void tg3_load_57766_firmware(struct tg3 *tp)
3783{
3784 struct tg3_firmware_hdr *fw_hdr;
3785
3786 if (!tg3_flag(tp, NO_NVRAM))
3787 return;
3788
3789 if (tg3_validate_rxcpu_state(tp))
3790 return;
3791
3792 if (!tp->fw)
3793 return;
3794
3795 /* This firmware blob has a different format than older firmware
3796 * releases as given below. The main difference is we have fragmented
3797 * data to be written to non-contiguous locations.
3798 *
3799 * In the beginning we have a firmware header identical to other
3800 * firmware which consists of version, base addr and length. The length
3801 * here is unused and set to 0xffffffff.
3802 *
3803 * This is followed by a series of firmware fragments which are
3804 * individually identical to previous firmware. i.e. they have the
3805 * firmware header and followed by data for that fragment. The version
3806 * field of the individual fragment header is unused.
3807 */
3808
3809 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
3810 if (be32_to_cpu(fw_hdr->base_addr) != TG3_57766_FW_BASE_ADDR)
3811 return;
3812
3813 if (tg3_rxcpu_pause(tp))
3814 return;
3815
3816 /* tg3_load_firmware_cpu() will always succeed for the 57766 */
3817 tg3_load_firmware_cpu(tp, 0, TG3_57766_FW_BASE_ADDR, 0, fw_hdr);
3818
3819 tg3_rxcpu_resume(tp);
3820}
3821
Matt Carlson997b4f12011-08-31 11:44:53 +00003822/* tp->lock is held. */
3823static int tg3_load_tso_firmware(struct tg3 *tp)
3824{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003825 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson997b4f12011-08-31 11:44:53 +00003826 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003827 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003828
Matt Carlson1caf13e2013-03-06 17:02:29 +00003829 if (!tg3_flag(tp, FW_TSO))
Matt Carlson997b4f12011-08-31 11:44:53 +00003830 return 0;
3831
Nithin Sujir77997ea2013-03-06 17:02:32 +00003832 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003833
3834 /* Firmware blob starts with version numbers, followed by
3835 start address and length. We are setting complete length.
3836 length = end_address_of_bss - start_address_of_text.
3837 Remainder is the blob to be loaded contiguously
3838 from start address. */
3839
Matt Carlson997b4f12011-08-31 11:44:53 +00003840 cpu_scratch_size = tp->fw_len;
Matt Carlson997b4f12011-08-31 11:44:53 +00003841
Joe Perches41535772013-02-16 11:20:04 +00003842 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003843 cpu_base = RX_CPU_BASE;
3844 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3845 } else {
3846 cpu_base = TX_CPU_BASE;
3847 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3848 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3849 }
3850
3851 err = tg3_load_firmware_cpu(tp, cpu_base,
3852 cpu_scratch_base, cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003853 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003854 if (err)
3855 return err;
3856
3857 /* Now startup the cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003858 err = tg3_pause_cpu_and_set_pc(tp, cpu_base,
3859 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003860 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003861 netdev_err(tp->dev,
3862 "%s fails to set CPU PC, is %08x should be %08x\n",
Nithin Sujir77997ea2013-03-06 17:02:32 +00003863 __func__, tr32(cpu_base + CPU_PC),
3864 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003865 return -ENODEV;
3866 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003867
3868 tg3_resume_cpu(tp, cpu_base);
Matt Carlson997b4f12011-08-31 11:44:53 +00003869 return 0;
3870}
3871
3872
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003873/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00003874static void __tg3_set_mac_addr(struct tg3 *tp, bool skip_mac_1)
Matt Carlson3f007892008-11-03 16:51:36 -08003875{
3876 u32 addr_high, addr_low;
3877 int i;
3878
3879 addr_high = ((tp->dev->dev_addr[0] << 8) |
3880 tp->dev->dev_addr[1]);
3881 addr_low = ((tp->dev->dev_addr[2] << 24) |
3882 (tp->dev->dev_addr[3] << 16) |
3883 (tp->dev->dev_addr[4] << 8) |
3884 (tp->dev->dev_addr[5] << 0));
3885 for (i = 0; i < 4; i++) {
3886 if (i == 1 && skip_mac_1)
3887 continue;
3888 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3889 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3890 }
3891
Joe Perches41535772013-02-16 11:20:04 +00003892 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
3893 tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson3f007892008-11-03 16:51:36 -08003894 for (i = 0; i < 12; i++) {
3895 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3896 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3897 }
3898 }
3899
3900 addr_high = (tp->dev->dev_addr[0] +
3901 tp->dev->dev_addr[1] +
3902 tp->dev->dev_addr[2] +
3903 tp->dev->dev_addr[3] +
3904 tp->dev->dev_addr[4] +
3905 tp->dev->dev_addr[5]) &
3906 TX_BACKOFF_SEED_MASK;
3907 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3908}
3909
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003910static void tg3_enable_register_access(struct tg3 *tp)
3911{
3912 /*
3913 * Make sure register accesses (indirect or otherwise) will function
3914 * correctly.
3915 */
3916 pci_write_config_dword(tp->pdev,
3917 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3918}
3919
3920static int tg3_power_up(struct tg3 *tp)
3921{
Matt Carlsonbed98292011-07-13 09:27:29 +00003922 int err;
3923
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003924 tg3_enable_register_access(tp);
3925
Matt Carlsonbed98292011-07-13 09:27:29 +00003926 err = pci_set_power_state(tp->pdev, PCI_D0);
3927 if (!err) {
3928 /* Switch out of Vaux if it is a NIC */
3929 tg3_pwrsrc_switch_to_vmain(tp);
3930 } else {
3931 netdev_err(tp->dev, "Transition to D0 failed\n");
3932 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003933
Matt Carlsonbed98292011-07-13 09:27:29 +00003934 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003935}
3936
Joe Perches953c96e2013-04-09 10:18:14 +00003937static int tg3_setup_phy(struct tg3 *, bool);
Matt Carlson4b409522012-02-13 10:20:11 +00003938
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003939static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
3941 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003942 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003944 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003945
3946 /* Restore the CLKREQ setting. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06003947 if (tg3_flag(tp, CLKREQ_BUG))
3948 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
3949 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3952 tw32(TG3PCI_MISC_HOST_CTRL,
3953 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3954
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003955 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003956 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003957
Joe Perches63c3a662011-04-26 08:12:10 +00003958 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003959 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003960 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003961 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003962 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003963 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003964
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003965 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003966
Matt Carlson80096062010-08-02 11:26:06 +00003967 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003968
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003969 tp->link_config.speed = phydev->speed;
3970 tp->link_config.duplex = phydev->duplex;
3971 tp->link_config.autoneg = phydev->autoneg;
3972 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003973
3974 advertising = ADVERTISED_TP |
3975 ADVERTISED_Pause |
3976 ADVERTISED_Autoneg |
3977 ADVERTISED_10baseT_Half;
3978
Joe Perches63c3a662011-04-26 08:12:10 +00003979 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3980 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003981 advertising |=
3982 ADVERTISED_100baseT_Half |
3983 ADVERTISED_100baseT_Full |
3984 ADVERTISED_10baseT_Full;
3985 else
3986 advertising |= ADVERTISED_10baseT_Full;
3987 }
3988
3989 phydev->advertising = advertising;
3990
3991 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003992
3993 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003994 if (phyid != PHY_ID_BCMAC131) {
3995 phyid &= PHY_BCM_OUI_MASK;
3996 if (phyid == PHY_BCM_OUI_1 ||
3997 phyid == PHY_BCM_OUI_2 ||
3998 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003999 do_low_power = true;
4000 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004001 }
Matt Carlsondd477002008-05-25 23:45:58 -07004002 } else {
Matt Carlson20232762008-12-21 20:18:56 -08004003 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08004004
Matt Carlsonc6700ce2012-02-13 15:20:15 +00004005 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00004006 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
Matt Carlson2855b9f2012-02-13 15:20:14 +00004008 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Joe Perches953c96e2013-04-09 10:18:14 +00004009 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 }
4011
Joe Perches41535772013-02-16 11:20:04 +00004012 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07004013 u32 val;
4014
4015 val = tr32(GRC_VCPU_EXT_CTRL);
4016 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00004017 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08004018 int i;
4019 u32 val;
4020
4021 for (i = 0; i < 200; i++) {
4022 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
4023 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
4024 break;
4025 msleep(1);
4026 }
4027 }
Joe Perches63c3a662011-04-26 08:12:10 +00004028 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07004029 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
4030 WOL_DRV_STATE_SHUTDOWN |
4031 WOL_DRV_WOL |
4032 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08004033
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004034 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 u32 mac_mode;
4036
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004037 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004038 if (do_low_power &&
4039 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
4040 tg3_phy_auxctl_write(tp,
4041 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
4042 MII_TG3_AUXCTL_PCTL_WOL_EN |
4043 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
4044 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07004045 udelay(40);
4046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004048 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07004049 mac_mode = MAC_MODE_PORT_MODE_GMII;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004050 else if (tp->phy_flags &
4051 TG3_PHYFLG_KEEP_LINK_ON_PWRDN) {
4052 if (tp->link_config.active_speed == SPEED_1000)
4053 mac_mode = MAC_MODE_PORT_MODE_GMII;
4054 else
4055 mac_mode = MAC_MODE_PORT_MODE_MII;
4056 } else
Michael Chan3f7045c2006-09-27 16:02:29 -07004057 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004059 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
Joe Perches41535772013-02-16 11:20:04 +00004060 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00004061 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004062 SPEED_100 : SPEED_10;
4063 if (tg3_5700_link_polarity(tp, speed))
4064 mac_mode |= MAC_MODE_LINK_POLARITY;
4065 else
4066 mac_mode &= ~MAC_MODE_LINK_POLARITY;
4067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 } else {
4069 mac_mode = MAC_MODE_PORT_MODE_TBI;
4070 }
4071
Joe Perches63c3a662011-04-26 08:12:10 +00004072 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 tw32(MAC_LED_CTRL, tp->led_ctrl);
4074
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004075 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00004076 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
4077 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004078 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Joe Perches63c3a662011-04-26 08:12:10 +00004080 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00004081 mac_mode |= MAC_MODE_APE_TX_EN |
4082 MAC_MODE_APE_RX_EN |
4083 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07004084
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 tw32_f(MAC_MODE, mac_mode);
4086 udelay(100);
4087
4088 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
4089 udelay(10);
4090 }
4091
Joe Perches63c3a662011-04-26 08:12:10 +00004092 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Joe Perches41535772013-02-16 11:20:04 +00004093 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4094 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 u32 base_val;
4096
4097 base_val = tp->pci_clock_ctrl;
4098 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
4099 CLOCK_CTRL_TXCLK_DISABLE);
4100
Michael Chanb401e9e2005-12-19 16:27:04 -08004101 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
4102 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00004103 } else if (tg3_flag(tp, 5780_CLASS) ||
4104 tg3_flag(tp, CPMU_PRESENT) ||
Joe Perches41535772013-02-16 11:20:04 +00004105 tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07004106 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00004107 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 u32 newbits1, newbits2;
4109
Joe Perches41535772013-02-16 11:20:04 +00004110 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4111 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
4113 CLOCK_CTRL_TXCLK_DISABLE |
4114 CLOCK_CTRL_ALTCLK);
4115 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00004116 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 newbits1 = CLOCK_CTRL_625_CORE;
4118 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
4119 } else {
4120 newbits1 = CLOCK_CTRL_ALTCLK;
4121 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
4122 }
4123
Michael Chanb401e9e2005-12-19 16:27:04 -08004124 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
4125 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Michael Chanb401e9e2005-12-19 16:27:04 -08004127 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
4128 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Joe Perches63c3a662011-04-26 08:12:10 +00004130 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 u32 newbits3;
4132
Joe Perches41535772013-02-16 11:20:04 +00004133 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4134 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
4136 CLOCK_CTRL_TXCLK_DISABLE |
4137 CLOCK_CTRL_44MHZ_CORE);
4138 } else {
4139 newbits3 = CLOCK_CTRL_44MHZ_CORE;
4140 }
4141
Michael Chanb401e9e2005-12-19 16:27:04 -08004142 tw32_wait_f(TG3PCI_CLOCK_CTRL,
4143 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 }
4145 }
4146
Joe Perches63c3a662011-04-26 08:12:10 +00004147 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08004148 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08004149
Matt Carlsoncd0d7222011-07-13 09:27:33 +00004150 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
4152 /* Workaround for unstable PLL clock */
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004153 if ((!tg3_flag(tp, IS_SSB_CORE)) &&
Joe Perches41535772013-02-16 11:20:04 +00004154 ((tg3_chip_rev(tp) == CHIPREV_5750_AX) ||
4155 (tg3_chip_rev(tp) == CHIPREV_5750_BX))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 u32 val = tr32(0x7d00);
4157
4158 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
4159 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00004160 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08004161 int err;
4162
4163 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08004165 if (!err)
4166 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08004167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 }
4169
Michael Chanbbadf502006-04-06 21:46:34 -07004170 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
4171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 return 0;
4173}
4174
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004175static void tg3_power_down(struct tg3 *tp)
4176{
4177 tg3_power_down_prepare(tp);
4178
Joe Perches63c3a662011-04-26 08:12:10 +00004179 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004180 pci_set_power_state(tp->pdev, PCI_D3hot);
4181}
4182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
4184{
4185 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
4186 case MII_TG3_AUX_STAT_10HALF:
4187 *speed = SPEED_10;
4188 *duplex = DUPLEX_HALF;
4189 break;
4190
4191 case MII_TG3_AUX_STAT_10FULL:
4192 *speed = SPEED_10;
4193 *duplex = DUPLEX_FULL;
4194 break;
4195
4196 case MII_TG3_AUX_STAT_100HALF:
4197 *speed = SPEED_100;
4198 *duplex = DUPLEX_HALF;
4199 break;
4200
4201 case MII_TG3_AUX_STAT_100FULL:
4202 *speed = SPEED_100;
4203 *duplex = DUPLEX_FULL;
4204 break;
4205
4206 case MII_TG3_AUX_STAT_1000HALF:
4207 *speed = SPEED_1000;
4208 *duplex = DUPLEX_HALF;
4209 break;
4210
4211 case MII_TG3_AUX_STAT_1000FULL:
4212 *speed = SPEED_1000;
4213 *duplex = DUPLEX_FULL;
4214 break;
4215
4216 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004217 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07004218 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
4219 SPEED_10;
4220 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
4221 DUPLEX_HALF;
4222 break;
4223 }
Matt Carlsone7405222012-02-13 15:20:16 +00004224 *speed = SPEED_UNKNOWN;
4225 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
Matt Carlson42b64a42011-05-19 12:12:49 +00004230static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231{
Matt Carlson42b64a42011-05-19 12:12:49 +00004232 int err = 0;
4233 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
Matt Carlson42b64a42011-05-19 12:12:49 +00004235 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00004236 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00004237 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238
Matt Carlson42b64a42011-05-19 12:12:49 +00004239 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
4240 if (err)
4241 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Matt Carlson4f272092011-12-14 11:09:57 +00004243 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4244 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004245
Joe Perches41535772013-02-16 11:20:04 +00004246 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4247 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)
Matt Carlson4f272092011-12-14 11:09:57 +00004248 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004249
Matt Carlson4f272092011-12-14 11:09:57 +00004250 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
4251 if (err)
4252 goto done;
4253 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004254
Matt Carlson42b64a42011-05-19 12:12:49 +00004255 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4256 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
Matt Carlson42b64a42011-05-19 12:12:49 +00004258 tw32(TG3_CPMU_EEE_MODE,
4259 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004260
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004261 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson42b64a42011-05-19 12:12:49 +00004262 if (!err) {
4263 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00004264
Matt Carlsona6b68da2010-12-06 08:28:52 +00004265 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00004266 /* Advertise 100-BaseTX EEE ability */
4267 if (advertise & ADVERTISED_100baseT_Full)
4268 val |= MDIO_AN_EEE_ADV_100TX;
4269 /* Advertise 1000-BaseT EEE ability */
4270 if (advertise & ADVERTISED_1000baseT_Full)
4271 val |= MDIO_AN_EEE_ADV_1000T;
4272 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00004273 if (err)
4274 val = 0;
4275
Joe Perches41535772013-02-16 11:20:04 +00004276 switch (tg3_asic_rev(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00004277 case ASIC_REV_5717:
4278 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00004279 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004280 case ASIC_REV_5719:
4281 /* If we advertised any eee advertisements above... */
4282 if (val)
4283 val = MII_TG3_DSP_TAP26_ALNOKO |
4284 MII_TG3_DSP_TAP26_RMRXSTO |
4285 MII_TG3_DSP_TAP26_OPCSINPT;
4286 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
4287 /* Fall through */
4288 case ASIC_REV_5720:
Michael Chanc65a17f2013-01-06 12:51:07 +00004289 case ASIC_REV_5762:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004290 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
4291 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
4292 MII_TG3_DSP_CH34TP2_HIBW01);
4293 }
Matt Carlson52b02d02010-10-14 10:37:41 +00004294
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004295 err2 = tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson42b64a42011-05-19 12:12:49 +00004296 if (!err)
4297 err = err2;
4298 }
4299
4300done:
4301 return err;
4302}
4303
4304static void tg3_phy_copper_begin(struct tg3 *tp)
4305{
Matt Carlsond13ba512012-02-22 12:35:19 +00004306 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4307 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4308 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004309
Nithin Sujir942d1af2013-04-09 08:48:07 +00004310 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4311 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
Matt Carlsond13ba512012-02-22 12:35:19 +00004312 adv = ADVERTISED_10baseT_Half |
4313 ADVERTISED_10baseT_Full;
4314 if (tg3_flag(tp, WOL_SPEED_100MB))
4315 adv |= ADVERTISED_100baseT_Half |
4316 ADVERTISED_100baseT_Full;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004317 if (tp->phy_flags & TG3_PHYFLG_1G_ON_VAUX_OK)
4318 adv |= ADVERTISED_1000baseT_Half |
4319 ADVERTISED_1000baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00004320
Matt Carlsond13ba512012-02-22 12:35:19 +00004321 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004322 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004323 adv = tp->link_config.advertising;
4324 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4325 adv &= ~(ADVERTISED_1000baseT_Half |
4326 ADVERTISED_1000baseT_Full);
4327
4328 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004329 }
4330
Matt Carlsond13ba512012-02-22 12:35:19 +00004331 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004332
Nithin Sujir942d1af2013-04-09 08:48:07 +00004333 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4334 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
4335 /* Normally during power down we want to autonegotiate
4336 * the lowest possible speed for WOL. However, to avoid
4337 * link flap, we leave it untouched.
4338 */
4339 return;
4340 }
4341
Matt Carlsond13ba512012-02-22 12:35:19 +00004342 tg3_writephy(tp, MII_BMCR,
4343 BMCR_ANENABLE | BMCR_ANRESTART);
4344 } else {
4345 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 u32 bmcr, orig_bmcr;
4347
4348 tp->link_config.active_speed = tp->link_config.speed;
4349 tp->link_config.active_duplex = tp->link_config.duplex;
4350
Nithin Sujir7c6cdea2013-03-12 15:32:48 +00004351 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
4352 /* With autoneg disabled, 5715 only links up when the
4353 * advertisement register has the configured speed
4354 * enabled.
4355 */
4356 tg3_writephy(tp, MII_ADVERTISE, ADVERTISE_ALL);
4357 }
4358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 bmcr = 0;
4360 switch (tp->link_config.speed) {
4361 default:
4362 case SPEED_10:
4363 break;
4364
4365 case SPEED_100:
4366 bmcr |= BMCR_SPEED100;
4367 break;
4368
4369 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004370 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
4374 if (tp->link_config.duplex == DUPLEX_FULL)
4375 bmcr |= BMCR_FULLDPLX;
4376
4377 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4378 (bmcr != orig_bmcr)) {
4379 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4380 for (i = 0; i < 1500; i++) {
4381 u32 tmp;
4382
4383 udelay(10);
4384 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4385 tg3_readphy(tp, MII_BMSR, &tmp))
4386 continue;
4387 if (!(tmp & BMSR_LSTATUS)) {
4388 udelay(40);
4389 break;
4390 }
4391 }
4392 tg3_writephy(tp, MII_BMCR, bmcr);
4393 udelay(40);
4394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 }
4396}
4397
Nithin Sujirfdad8de2013-04-09 08:48:08 +00004398static int tg3_phy_pull_config(struct tg3 *tp)
4399{
4400 int err;
4401 u32 val;
4402
4403 err = tg3_readphy(tp, MII_BMCR, &val);
4404 if (err)
4405 goto done;
4406
4407 if (!(val & BMCR_ANENABLE)) {
4408 tp->link_config.autoneg = AUTONEG_DISABLE;
4409 tp->link_config.advertising = 0;
4410 tg3_flag_clear(tp, PAUSE_AUTONEG);
4411
4412 err = -EIO;
4413
4414 switch (val & (BMCR_SPEED1000 | BMCR_SPEED100)) {
4415 case 0:
4416 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4417 goto done;
4418
4419 tp->link_config.speed = SPEED_10;
4420 break;
4421 case BMCR_SPEED100:
4422 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4423 goto done;
4424
4425 tp->link_config.speed = SPEED_100;
4426 break;
4427 case BMCR_SPEED1000:
4428 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4429 tp->link_config.speed = SPEED_1000;
4430 break;
4431 }
4432 /* Fall through */
4433 default:
4434 goto done;
4435 }
4436
4437 if (val & BMCR_FULLDPLX)
4438 tp->link_config.duplex = DUPLEX_FULL;
4439 else
4440 tp->link_config.duplex = DUPLEX_HALF;
4441
4442 tp->link_config.flowctrl = FLOW_CTRL_RX | FLOW_CTRL_TX;
4443
4444 err = 0;
4445 goto done;
4446 }
4447
4448 tp->link_config.autoneg = AUTONEG_ENABLE;
4449 tp->link_config.advertising = ADVERTISED_Autoneg;
4450 tg3_flag_set(tp, PAUSE_AUTONEG);
4451
4452 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4453 u32 adv;
4454
4455 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4456 if (err)
4457 goto done;
4458
4459 adv = mii_adv_to_ethtool_adv_t(val & ADVERTISE_ALL);
4460 tp->link_config.advertising |= adv | ADVERTISED_TP;
4461
4462 tp->link_config.flowctrl = tg3_decode_flowctrl_1000T(val);
4463 } else {
4464 tp->link_config.advertising |= ADVERTISED_FIBRE;
4465 }
4466
4467 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4468 u32 adv;
4469
4470 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4471 err = tg3_readphy(tp, MII_CTRL1000, &val);
4472 if (err)
4473 goto done;
4474
4475 adv = mii_ctrl1000_to_ethtool_adv_t(val);
4476 } else {
4477 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4478 if (err)
4479 goto done;
4480
4481 adv = tg3_decode_flowctrl_1000X(val);
4482 tp->link_config.flowctrl = adv;
4483
4484 val &= (ADVERTISE_1000XHALF | ADVERTISE_1000XFULL);
4485 adv = mii_adv_to_ethtool_adv_x(val);
4486 }
4487
4488 tp->link_config.advertising |= adv;
4489 }
4490
4491done:
4492 return err;
4493}
4494
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495static int tg3_init_5401phy_dsp(struct tg3 *tp)
4496{
4497 int err;
4498
4499 /* Turn off tap power management. */
4500 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004501 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004503 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4504 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4505 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4506 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4507 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
4509 udelay(40);
4510
4511 return err;
4512}
4513
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004514static bool tg3_phy_eee_config_ok(struct tg3 *tp)
4515{
4516 u32 val;
4517 u32 tgtadv = 0;
4518 u32 advertising = tp->link_config.advertising;
4519
4520 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4521 return true;
4522
4523 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, &val))
4524 return false;
4525
4526 val &= (MDIO_AN_EEE_ADV_100TX | MDIO_AN_EEE_ADV_1000T);
4527
4528
4529 if (advertising & ADVERTISED_100baseT_Full)
4530 tgtadv |= MDIO_AN_EEE_ADV_100TX;
4531 if (advertising & ADVERTISED_1000baseT_Full)
4532 tgtadv |= MDIO_AN_EEE_ADV_1000T;
4533
4534 if (val != tgtadv)
4535 return false;
4536
4537 return true;
4538}
4539
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004540static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004542 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004543
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004544 advertising = tp->link_config.advertising;
4545 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004547 advmsk = ADVERTISE_ALL;
4548 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004549 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004550 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004553 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4554 return false;
4555
4556 if ((*lcladv & advmsk) != tgtadv)
4557 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004558
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004559 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 u32 tg3_ctrl;
4561
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004562 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004563
Matt Carlson221c5632011-06-13 13:39:01 +00004564 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004565 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Matt Carlson3198e072012-02-13 15:20:10 +00004567 if (tgtadv &&
Joe Perches41535772013-02-16 11:20:04 +00004568 (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4569 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)) {
Matt Carlson3198e072012-02-13 15:20:10 +00004570 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4571 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4572 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4573 } else {
4574 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4575 }
4576
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004577 if (tg3_ctrl != tgtadv)
4578 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004580
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004581 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004582}
4583
Matt Carlson859edb22011-12-08 14:40:16 +00004584static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4585{
4586 u32 lpeth = 0;
4587
4588 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4589 u32 val;
4590
4591 if (tg3_readphy(tp, MII_STAT1000, &val))
4592 return false;
4593
4594 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4595 }
4596
4597 if (tg3_readphy(tp, MII_LPA, rmtadv))
4598 return false;
4599
4600 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4601 tp->link_config.rmt_adv = lpeth;
4602
4603 return true;
4604}
4605
Joe Perches953c96e2013-04-09 10:18:14 +00004606static bool tg3_test_and_report_link_chg(struct tg3 *tp, bool curr_link_up)
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004607{
4608 if (curr_link_up != tp->link_up) {
4609 if (curr_link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00004610 netif_carrier_on(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004611 } else {
Nithin Sujir84421b92013-03-08 08:01:24 +00004612 netif_carrier_off(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004613 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
4614 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
4615 }
4616
4617 tg3_link_report(tp);
4618 return true;
4619 }
4620
4621 return false;
4622}
4623
Michael Chan3310e242013-04-09 08:48:05 +00004624static void tg3_clear_mac_status(struct tg3 *tp)
4625{
4626 tw32(MAC_EVENT, 0);
4627
4628 tw32_f(MAC_STATUS,
4629 MAC_STATUS_SYNC_CHANGED |
4630 MAC_STATUS_CFG_CHANGED |
4631 MAC_STATUS_MI_COMPLETION |
4632 MAC_STATUS_LNKSTATE_CHANGED);
4633 udelay(40);
4634}
4635
Joe Perches953c96e2013-04-09 10:18:14 +00004636static int tg3_setup_copper_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637{
Joe Perches953c96e2013-04-09 10:18:14 +00004638 bool current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004639 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004640 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 u16 current_speed;
4642 u8 current_duplex;
4643 int i, err;
4644
Michael Chan3310e242013-04-09 08:48:05 +00004645 tg3_clear_mac_status(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Matt Carlson8ef21422008-05-02 16:47:53 -07004647 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4648 tw32_f(MAC_MI_MODE,
4649 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4650 udelay(80);
4651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004653 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
4655 /* Some third-party PHYs need to be reset on link going
4656 * down.
4657 */
Joe Perches41535772013-02-16 11:20:04 +00004658 if ((tg3_asic_rev(tp) == ASIC_REV_5703 ||
4659 tg3_asic_rev(tp) == ASIC_REV_5704 ||
4660 tg3_asic_rev(tp) == ASIC_REV_5705) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004661 tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 tg3_readphy(tp, MII_BMSR, &bmsr);
4663 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4664 !(bmsr & BMSR_LSTATUS))
Joe Perches953c96e2013-04-09 10:18:14 +00004665 force_reset = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 }
4667 if (force_reset)
4668 tg3_phy_reset(tp);
4669
Matt Carlson79eb6902010-02-17 15:17:03 +00004670 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 tg3_readphy(tp, MII_BMSR, &bmsr);
4672 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004673 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 bmsr = 0;
4675
4676 if (!(bmsr & BMSR_LSTATUS)) {
4677 err = tg3_init_5401phy_dsp(tp);
4678 if (err)
4679 return err;
4680
4681 tg3_readphy(tp, MII_BMSR, &bmsr);
4682 for (i = 0; i < 1000; i++) {
4683 udelay(10);
4684 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4685 (bmsr & BMSR_LSTATUS)) {
4686 udelay(40);
4687 break;
4688 }
4689 }
4690
Matt Carlson79eb6902010-02-17 15:17:03 +00004691 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4692 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 !(bmsr & BMSR_LSTATUS) &&
4694 tp->link_config.active_speed == SPEED_1000) {
4695 err = tg3_phy_reset(tp);
4696 if (!err)
4697 err = tg3_init_5401phy_dsp(tp);
4698 if (err)
4699 return err;
4700 }
4701 }
Joe Perches41535772013-02-16 11:20:04 +00004702 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4703 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 /* 5701 {A0,B0} CRC bug workaround */
4705 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004706 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4707 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4708 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 }
4710
4711 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004712 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4713 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004715 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004717 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4719
Joe Perches41535772013-02-16 11:20:04 +00004720 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4721 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4723 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4724 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4725 else
4726 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4727 }
4728
Joe Perches953c96e2013-04-09 10:18:14 +00004729 current_link_up = false;
Matt Carlsone7405222012-02-13 15:20:16 +00004730 current_speed = SPEED_UNKNOWN;
4731 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004732 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004733 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004735 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004736 err = tg3_phy_auxctl_read(tp,
4737 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4738 &val);
4739 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004740 tg3_phy_auxctl_write(tp,
4741 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4742 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 goto relink;
4744 }
4745 }
4746
4747 bmsr = 0;
4748 for (i = 0; i < 100; i++) {
4749 tg3_readphy(tp, MII_BMSR, &bmsr);
4750 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4751 (bmsr & BMSR_LSTATUS))
4752 break;
4753 udelay(40);
4754 }
4755
4756 if (bmsr & BMSR_LSTATUS) {
4757 u32 aux_stat, bmcr;
4758
4759 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4760 for (i = 0; i < 2000; i++) {
4761 udelay(10);
4762 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4763 aux_stat)
4764 break;
4765 }
4766
4767 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4768 &current_speed,
4769 &current_duplex);
4770
4771 bmcr = 0;
4772 for (i = 0; i < 200; i++) {
4773 tg3_readphy(tp, MII_BMCR, &bmcr);
4774 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4775 continue;
4776 if (bmcr && bmcr != 0x7fff)
4777 break;
4778 udelay(10);
4779 }
4780
Matt Carlsonef167e22007-12-20 20:10:01 -08004781 lcl_adv = 0;
4782 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Matt Carlsonef167e22007-12-20 20:10:01 -08004784 tp->link_config.active_speed = current_speed;
4785 tp->link_config.active_duplex = current_duplex;
4786
4787 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004788 bool eee_config_ok = tg3_phy_eee_config_ok(tp);
4789
Matt Carlsonef167e22007-12-20 20:10:01 -08004790 if ((bmcr & BMCR_ANENABLE) &&
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004791 eee_config_ok &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004792 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004793 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Joe Perches953c96e2013-04-09 10:18:14 +00004794 current_link_up = true;
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004795
4796 /* EEE settings changes take effect only after a phy
4797 * reset. If we have skipped a reset due to Link Flap
4798 * Avoidance being enabled, do it now.
4799 */
4800 if (!eee_config_ok &&
4801 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
4802 !force_reset)
4803 tg3_phy_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 } else {
4805 if (!(bmcr & BMCR_ANENABLE) &&
4806 tp->link_config.speed == current_speed &&
Nithin Sujirf0fcd7a2013-04-09 08:48:01 +00004807 tp->link_config.duplex == current_duplex) {
Joe Perches953c96e2013-04-09 10:18:14 +00004808 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 }
4810 }
4811
Joe Perches953c96e2013-04-09 10:18:14 +00004812 if (current_link_up &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004813 tp->link_config.active_duplex == DUPLEX_FULL) {
4814 u32 reg, bit;
4815
4816 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4817 reg = MII_TG3_FET_GEN_STAT;
4818 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4819 } else {
4820 reg = MII_TG3_EXT_STAT;
4821 bit = MII_TG3_EXT_STAT_MDIX;
4822 }
4823
4824 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4825 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4826
Matt Carlsonef167e22007-12-20 20:10:01 -08004827 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 }
4830
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831relink:
Joe Perches953c96e2013-04-09 10:18:14 +00004832 if (!current_link_up || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 tg3_phy_copper_begin(tp);
4834
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004835 if (tg3_flag(tp, ROBOSWITCH)) {
Joe Perches953c96e2013-04-09 10:18:14 +00004836 current_link_up = true;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004837 /* FIXME: when BCM5325 switch is used use 100 MBit/s */
4838 current_speed = SPEED_1000;
4839 current_duplex = DUPLEX_FULL;
4840 tp->link_config.active_speed = current_speed;
4841 tp->link_config.active_duplex = current_duplex;
4842 }
4843
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004844 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004845 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4846 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Joe Perches953c96e2013-04-09 10:18:14 +00004847 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 }
4849
4850 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
Joe Perches953c96e2013-04-09 10:18:14 +00004851 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 if (tp->link_config.active_speed == SPEED_100 ||
4853 tp->link_config.active_speed == SPEED_10)
4854 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4855 else
4856 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004857 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004858 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4859 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4861
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004862 /* In order for the 5750 core in BCM4785 chip to work properly
4863 * in RGMII mode, the Led Control Register must be set up.
4864 */
4865 if (tg3_flag(tp, RGMII_MODE)) {
4866 u32 led_ctrl = tr32(MAC_LED_CTRL);
4867 led_ctrl &= ~(LED_CTRL_1000MBPS_ON | LED_CTRL_100MBPS_ON);
4868
4869 if (tp->link_config.active_speed == SPEED_10)
4870 led_ctrl |= LED_CTRL_LNKLED_OVERRIDE;
4871 else if (tp->link_config.active_speed == SPEED_100)
4872 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4873 LED_CTRL_100MBPS_ON);
4874 else if (tp->link_config.active_speed == SPEED_1000)
4875 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4876 LED_CTRL_1000MBPS_ON);
4877
4878 tw32(MAC_LED_CTRL, led_ctrl);
4879 udelay(40);
4880 }
4881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4883 if (tp->link_config.active_duplex == DUPLEX_HALF)
4884 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4885
Joe Perches41535772013-02-16 11:20:04 +00004886 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches953c96e2013-04-09 10:18:14 +00004887 if (current_link_up &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004888 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004890 else
4891 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 }
4893
4894 /* ??? Without this setting Netgear GA302T PHY does not
4895 * ??? send/receive packets...
4896 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004897 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Joe Perches41535772013-02-16 11:20:04 +00004898 tg3_chip_rev_id(tp) == CHIPREV_ID_5700_ALTIMA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4900 tw32_f(MAC_MI_MODE, tp->mi_mode);
4901 udelay(80);
4902 }
4903
4904 tw32_f(MAC_MODE, tp->mac_mode);
4905 udelay(40);
4906
Matt Carlson52b02d02010-10-14 10:37:41 +00004907 tg3_phy_eee_adjust(tp, current_link_up);
4908
Joe Perches63c3a662011-04-26 08:12:10 +00004909 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 /* Polled via timer. */
4911 tw32_f(MAC_EVENT, 0);
4912 } else {
4913 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4914 }
4915 udelay(40);
4916
Joe Perches41535772013-02-16 11:20:04 +00004917 if (tg3_asic_rev(tp) == ASIC_REV_5700 &&
Joe Perches953c96e2013-04-09 10:18:14 +00004918 current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004920 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 udelay(120);
4922 tw32_f(MAC_STATUS,
4923 (MAC_STATUS_SYNC_CHANGED |
4924 MAC_STATUS_CFG_CHANGED));
4925 udelay(40);
4926 tg3_write_mem(tp,
4927 NIC_SRAM_FIRMWARE_MBOX,
4928 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4929 }
4930
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004931 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004932 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004933 if (tp->link_config.active_speed == SPEED_100 ||
4934 tp->link_config.active_speed == SPEED_10)
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004935 pcie_capability_clear_word(tp->pdev, PCI_EXP_LNKCTL,
4936 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004937 else
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004938 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
4939 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004940 }
4941
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004942 tg3_test_and_report_link_chg(tp, current_link_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
4944 return 0;
4945}
4946
4947struct tg3_fiber_aneginfo {
4948 int state;
4949#define ANEG_STATE_UNKNOWN 0
4950#define ANEG_STATE_AN_ENABLE 1
4951#define ANEG_STATE_RESTART_INIT 2
4952#define ANEG_STATE_RESTART 3
4953#define ANEG_STATE_DISABLE_LINK_OK 4
4954#define ANEG_STATE_ABILITY_DETECT_INIT 5
4955#define ANEG_STATE_ABILITY_DETECT 6
4956#define ANEG_STATE_ACK_DETECT_INIT 7
4957#define ANEG_STATE_ACK_DETECT 8
4958#define ANEG_STATE_COMPLETE_ACK_INIT 9
4959#define ANEG_STATE_COMPLETE_ACK 10
4960#define ANEG_STATE_IDLE_DETECT_INIT 11
4961#define ANEG_STATE_IDLE_DETECT 12
4962#define ANEG_STATE_LINK_OK 13
4963#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4964#define ANEG_STATE_NEXT_PAGE_WAIT 15
4965
4966 u32 flags;
4967#define MR_AN_ENABLE 0x00000001
4968#define MR_RESTART_AN 0x00000002
4969#define MR_AN_COMPLETE 0x00000004
4970#define MR_PAGE_RX 0x00000008
4971#define MR_NP_LOADED 0x00000010
4972#define MR_TOGGLE_TX 0x00000020
4973#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4974#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4975#define MR_LP_ADV_SYM_PAUSE 0x00000100
4976#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4977#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4978#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4979#define MR_LP_ADV_NEXT_PAGE 0x00001000
4980#define MR_TOGGLE_RX 0x00002000
4981#define MR_NP_RX 0x00004000
4982
4983#define MR_LINK_OK 0x80000000
4984
4985 unsigned long link_time, cur_time;
4986
4987 u32 ability_match_cfg;
4988 int ability_match_count;
4989
4990 char ability_match, idle_match, ack_match;
4991
4992 u32 txconfig, rxconfig;
4993#define ANEG_CFG_NP 0x00000080
4994#define ANEG_CFG_ACK 0x00000040
4995#define ANEG_CFG_RF2 0x00000020
4996#define ANEG_CFG_RF1 0x00000010
4997#define ANEG_CFG_PS2 0x00000001
4998#define ANEG_CFG_PS1 0x00008000
4999#define ANEG_CFG_HD 0x00004000
5000#define ANEG_CFG_FD 0x00002000
5001#define ANEG_CFG_INVAL 0x00001f06
5002
5003};
5004#define ANEG_OK 0
5005#define ANEG_DONE 1
5006#define ANEG_TIMER_ENAB 2
5007#define ANEG_FAILED -1
5008
5009#define ANEG_STATE_SETTLE_TIME 10000
5010
5011static int tg3_fiber_aneg_smachine(struct tg3 *tp,
5012 struct tg3_fiber_aneginfo *ap)
5013{
Matt Carlson5be73b42007-12-20 20:09:29 -08005014 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 unsigned long delta;
5016 u32 rx_cfg_reg;
5017 int ret;
5018
5019 if (ap->state == ANEG_STATE_UNKNOWN) {
5020 ap->rxconfig = 0;
5021 ap->link_time = 0;
5022 ap->cur_time = 0;
5023 ap->ability_match_cfg = 0;
5024 ap->ability_match_count = 0;
5025 ap->ability_match = 0;
5026 ap->idle_match = 0;
5027 ap->ack_match = 0;
5028 }
5029 ap->cur_time++;
5030
5031 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
5032 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
5033
5034 if (rx_cfg_reg != ap->ability_match_cfg) {
5035 ap->ability_match_cfg = rx_cfg_reg;
5036 ap->ability_match = 0;
5037 ap->ability_match_count = 0;
5038 } else {
5039 if (++ap->ability_match_count > 1) {
5040 ap->ability_match = 1;
5041 ap->ability_match_cfg = rx_cfg_reg;
5042 }
5043 }
5044 if (rx_cfg_reg & ANEG_CFG_ACK)
5045 ap->ack_match = 1;
5046 else
5047 ap->ack_match = 0;
5048
5049 ap->idle_match = 0;
5050 } else {
5051 ap->idle_match = 1;
5052 ap->ability_match_cfg = 0;
5053 ap->ability_match_count = 0;
5054 ap->ability_match = 0;
5055 ap->ack_match = 0;
5056
5057 rx_cfg_reg = 0;
5058 }
5059
5060 ap->rxconfig = rx_cfg_reg;
5061 ret = ANEG_OK;
5062
Matt Carlson33f401a2010-04-05 10:19:27 +00005063 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 case ANEG_STATE_UNKNOWN:
5065 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
5066 ap->state = ANEG_STATE_AN_ENABLE;
5067
5068 /* fallthru */
5069 case ANEG_STATE_AN_ENABLE:
5070 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
5071 if (ap->flags & MR_AN_ENABLE) {
5072 ap->link_time = 0;
5073 ap->cur_time = 0;
5074 ap->ability_match_cfg = 0;
5075 ap->ability_match_count = 0;
5076 ap->ability_match = 0;
5077 ap->idle_match = 0;
5078 ap->ack_match = 0;
5079
5080 ap->state = ANEG_STATE_RESTART_INIT;
5081 } else {
5082 ap->state = ANEG_STATE_DISABLE_LINK_OK;
5083 }
5084 break;
5085
5086 case ANEG_STATE_RESTART_INIT:
5087 ap->link_time = ap->cur_time;
5088 ap->flags &= ~(MR_NP_LOADED);
5089 ap->txconfig = 0;
5090 tw32(MAC_TX_AUTO_NEG, 0);
5091 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5092 tw32_f(MAC_MODE, tp->mac_mode);
5093 udelay(40);
5094
5095 ret = ANEG_TIMER_ENAB;
5096 ap->state = ANEG_STATE_RESTART;
5097
5098 /* fallthru */
5099 case ANEG_STATE_RESTART:
5100 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00005101 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00005103 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 break;
5106
5107 case ANEG_STATE_DISABLE_LINK_OK:
5108 ret = ANEG_DONE;
5109 break;
5110
5111 case ANEG_STATE_ABILITY_DETECT_INIT:
5112 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08005113 ap->txconfig = ANEG_CFG_FD;
5114 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5115 if (flowctrl & ADVERTISE_1000XPAUSE)
5116 ap->txconfig |= ANEG_CFG_PS1;
5117 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5118 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5120 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5121 tw32_f(MAC_MODE, tp->mac_mode);
5122 udelay(40);
5123
5124 ap->state = ANEG_STATE_ABILITY_DETECT;
5125 break;
5126
5127 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00005128 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 break;
5131
5132 case ANEG_STATE_ACK_DETECT_INIT:
5133 ap->txconfig |= ANEG_CFG_ACK;
5134 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5135 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5136 tw32_f(MAC_MODE, tp->mac_mode);
5137 udelay(40);
5138
5139 ap->state = ANEG_STATE_ACK_DETECT;
5140
5141 /* fallthru */
5142 case ANEG_STATE_ACK_DETECT:
5143 if (ap->ack_match != 0) {
5144 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
5145 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
5146 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
5147 } else {
5148 ap->state = ANEG_STATE_AN_ENABLE;
5149 }
5150 } else if (ap->ability_match != 0 &&
5151 ap->rxconfig == 0) {
5152 ap->state = ANEG_STATE_AN_ENABLE;
5153 }
5154 break;
5155
5156 case ANEG_STATE_COMPLETE_ACK_INIT:
5157 if (ap->rxconfig & ANEG_CFG_INVAL) {
5158 ret = ANEG_FAILED;
5159 break;
5160 }
5161 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
5162 MR_LP_ADV_HALF_DUPLEX |
5163 MR_LP_ADV_SYM_PAUSE |
5164 MR_LP_ADV_ASYM_PAUSE |
5165 MR_LP_ADV_REMOTE_FAULT1 |
5166 MR_LP_ADV_REMOTE_FAULT2 |
5167 MR_LP_ADV_NEXT_PAGE |
5168 MR_TOGGLE_RX |
5169 MR_NP_RX);
5170 if (ap->rxconfig & ANEG_CFG_FD)
5171 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
5172 if (ap->rxconfig & ANEG_CFG_HD)
5173 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
5174 if (ap->rxconfig & ANEG_CFG_PS1)
5175 ap->flags |= MR_LP_ADV_SYM_PAUSE;
5176 if (ap->rxconfig & ANEG_CFG_PS2)
5177 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
5178 if (ap->rxconfig & ANEG_CFG_RF1)
5179 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
5180 if (ap->rxconfig & ANEG_CFG_RF2)
5181 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
5182 if (ap->rxconfig & ANEG_CFG_NP)
5183 ap->flags |= MR_LP_ADV_NEXT_PAGE;
5184
5185 ap->link_time = ap->cur_time;
5186
5187 ap->flags ^= (MR_TOGGLE_TX);
5188 if (ap->rxconfig & 0x0008)
5189 ap->flags |= MR_TOGGLE_RX;
5190 if (ap->rxconfig & ANEG_CFG_NP)
5191 ap->flags |= MR_NP_RX;
5192 ap->flags |= MR_PAGE_RX;
5193
5194 ap->state = ANEG_STATE_COMPLETE_ACK;
5195 ret = ANEG_TIMER_ENAB;
5196 break;
5197
5198 case ANEG_STATE_COMPLETE_ACK:
5199 if (ap->ability_match != 0 &&
5200 ap->rxconfig == 0) {
5201 ap->state = ANEG_STATE_AN_ENABLE;
5202 break;
5203 }
5204 delta = ap->cur_time - ap->link_time;
5205 if (delta > ANEG_STATE_SETTLE_TIME) {
5206 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
5207 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5208 } else {
5209 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
5210 !(ap->flags & MR_NP_RX)) {
5211 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5212 } else {
5213 ret = ANEG_FAILED;
5214 }
5215 }
5216 }
5217 break;
5218
5219 case ANEG_STATE_IDLE_DETECT_INIT:
5220 ap->link_time = ap->cur_time;
5221 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5222 tw32_f(MAC_MODE, tp->mac_mode);
5223 udelay(40);
5224
5225 ap->state = ANEG_STATE_IDLE_DETECT;
5226 ret = ANEG_TIMER_ENAB;
5227 break;
5228
5229 case ANEG_STATE_IDLE_DETECT:
5230 if (ap->ability_match != 0 &&
5231 ap->rxconfig == 0) {
5232 ap->state = ANEG_STATE_AN_ENABLE;
5233 break;
5234 }
5235 delta = ap->cur_time - ap->link_time;
5236 if (delta > ANEG_STATE_SETTLE_TIME) {
5237 /* XXX another gem from the Broadcom driver :( */
5238 ap->state = ANEG_STATE_LINK_OK;
5239 }
5240 break;
5241
5242 case ANEG_STATE_LINK_OK:
5243 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
5244 ret = ANEG_DONE;
5245 break;
5246
5247 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
5248 /* ??? unimplemented */
5249 break;
5250
5251 case ANEG_STATE_NEXT_PAGE_WAIT:
5252 /* ??? unimplemented */
5253 break;
5254
5255 default:
5256 ret = ANEG_FAILED;
5257 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
5260 return ret;
5261}
5262
Matt Carlson5be73b42007-12-20 20:09:29 -08005263static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264{
5265 int res = 0;
5266 struct tg3_fiber_aneginfo aninfo;
5267 int status = ANEG_FAILED;
5268 unsigned int tick;
5269 u32 tmp;
5270
5271 tw32_f(MAC_TX_AUTO_NEG, 0);
5272
5273 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
5274 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
5275 udelay(40);
5276
5277 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
5278 udelay(40);
5279
5280 memset(&aninfo, 0, sizeof(aninfo));
5281 aninfo.flags |= MR_AN_ENABLE;
5282 aninfo.state = ANEG_STATE_UNKNOWN;
5283 aninfo.cur_time = 0;
5284 tick = 0;
5285 while (++tick < 195000) {
5286 status = tg3_fiber_aneg_smachine(tp, &aninfo);
5287 if (status == ANEG_DONE || status == ANEG_FAILED)
5288 break;
5289
5290 udelay(1);
5291 }
5292
5293 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5294 tw32_f(MAC_MODE, tp->mac_mode);
5295 udelay(40);
5296
Matt Carlson5be73b42007-12-20 20:09:29 -08005297 *txflags = aninfo.txconfig;
5298 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300 if (status == ANEG_DONE &&
5301 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
5302 MR_LP_ADV_FULL_DUPLEX)))
5303 res = 1;
5304
5305 return res;
5306}
5307
5308static void tg3_init_bcm8002(struct tg3 *tp)
5309{
5310 u32 mac_status = tr32(MAC_STATUS);
5311 int i;
5312
5313 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00005314 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 !(mac_status & MAC_STATUS_PCS_SYNCED))
5316 return;
5317
5318 /* Set PLL lock range. */
5319 tg3_writephy(tp, 0x16, 0x8007);
5320
5321 /* SW reset */
5322 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
5323
5324 /* Wait for reset to complete. */
5325 /* XXX schedule_timeout() ... */
5326 for (i = 0; i < 500; i++)
5327 udelay(10);
5328
5329 /* Config mode; select PMA/Ch 1 regs. */
5330 tg3_writephy(tp, 0x10, 0x8411);
5331
5332 /* Enable auto-lock and comdet, select txclk for tx. */
5333 tg3_writephy(tp, 0x11, 0x0a10);
5334
5335 tg3_writephy(tp, 0x18, 0x00a0);
5336 tg3_writephy(tp, 0x16, 0x41ff);
5337
5338 /* Assert and deassert POR. */
5339 tg3_writephy(tp, 0x13, 0x0400);
5340 udelay(40);
5341 tg3_writephy(tp, 0x13, 0x0000);
5342
5343 tg3_writephy(tp, 0x11, 0x0a50);
5344 udelay(40);
5345 tg3_writephy(tp, 0x11, 0x0a10);
5346
5347 /* Wait for signal to stabilize */
5348 /* XXX schedule_timeout() ... */
5349 for (i = 0; i < 15000; i++)
5350 udelay(10);
5351
5352 /* Deselect the channel register so we can read the PHYID
5353 * later.
5354 */
5355 tg3_writephy(tp, 0x10, 0x8011);
5356}
5357
Joe Perches953c96e2013-04-09 10:18:14 +00005358static bool tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359{
Matt Carlson82cd3d12007-12-20 20:09:00 -08005360 u16 flowctrl;
Joe Perches953c96e2013-04-09 10:18:14 +00005361 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 u32 sg_dig_ctrl, sg_dig_status;
5363 u32 serdes_cfg, expected_sg_dig_ctrl;
5364 int workaround, port_a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
5366 serdes_cfg = 0;
5367 expected_sg_dig_ctrl = 0;
5368 workaround = 0;
5369 port_a = 1;
Joe Perches953c96e2013-04-09 10:18:14 +00005370 current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
Joe Perches41535772013-02-16 11:20:04 +00005372 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A0 &&
5373 tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 workaround = 1;
5375 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
5376 port_a = 0;
5377
5378 /* preserve bits 0-11,13,14 for signal pre-emphasis */
5379 /* preserve bits 20-23 for voltage regulator */
5380 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
5381 }
5382
5383 sg_dig_ctrl = tr32(SG_DIG_CTRL);
5384
5385 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005386 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 if (workaround) {
5388 u32 val = serdes_cfg;
5389
5390 if (port_a)
5391 val |= 0xc010000;
5392 else
5393 val |= 0x4010000;
5394 tw32_f(MAC_SERDES_CFG, val);
5395 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005396
5397 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 }
5399 if (mac_status & MAC_STATUS_PCS_SYNCED) {
5400 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005401 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 }
5403 goto out;
5404 }
5405
5406 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005407 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408
Matt Carlson82cd3d12007-12-20 20:09:00 -08005409 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5410 if (flowctrl & ADVERTISE_1000XPAUSE)
5411 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
5412 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5413 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
5415 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005416 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07005417 tp->serdes_counter &&
5418 ((mac_status & (MAC_STATUS_PCS_SYNCED |
5419 MAC_STATUS_RCVD_CFG)) ==
5420 MAC_STATUS_PCS_SYNCED)) {
5421 tp->serdes_counter--;
Joe Perches953c96e2013-04-09 10:18:14 +00005422 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005423 goto out;
5424 }
5425restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426 if (workaround)
5427 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005428 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 udelay(5);
5430 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
5431
Michael Chan3d3ebe72006-09-27 15:59:15 -07005432 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005433 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
5435 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005436 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437 mac_status = tr32(MAC_STATUS);
5438
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005439 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08005441 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442
Matt Carlson82cd3d12007-12-20 20:09:00 -08005443 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
5444 local_adv |= ADVERTISE_1000XPAUSE;
5445 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
5446 local_adv |= ADVERTISE_1000XPSE_ASYM;
5447
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005448 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005449 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005450 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005451 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
Matt Carlson859edb22011-12-08 14:40:16 +00005453 tp->link_config.rmt_adv =
5454 mii_adv_to_ethtool_adv_x(remote_adv);
5455
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 tg3_setup_flow_control(tp, local_adv, remote_adv);
Joe Perches953c96e2013-04-09 10:18:14 +00005457 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005458 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005459 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005460 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005461 if (tp->serdes_counter)
5462 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 else {
5464 if (workaround) {
5465 u32 val = serdes_cfg;
5466
5467 if (port_a)
5468 val |= 0xc010000;
5469 else
5470 val |= 0x4010000;
5471
5472 tw32_f(MAC_SERDES_CFG, val);
5473 }
5474
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005475 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 udelay(40);
5477
5478 /* Link parallel detection - link is up */
5479 /* only if we have PCS_SYNC and not */
5480 /* receiving config code words */
5481 mac_status = tr32(MAC_STATUS);
5482 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
5483 !(mac_status & MAC_STATUS_RCVD_CFG)) {
5484 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005485 current_link_up = true;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005486 tp->phy_flags |=
5487 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005488 tp->serdes_counter =
5489 SERDES_PARALLEL_DET_TIMEOUT;
5490 } else
5491 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 }
5493 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07005494 } else {
5495 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005496 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 }
5498
5499out:
5500 return current_link_up;
5501}
5502
Joe Perches953c96e2013-04-09 10:18:14 +00005503static bool tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504{
Joe Perches953c96e2013-04-09 10:18:14 +00005505 bool current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005507 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
5510 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005511 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005513
Matt Carlson5be73b42007-12-20 20:09:29 -08005514 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5515 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516
Matt Carlson5be73b42007-12-20 20:09:29 -08005517 if (txflags & ANEG_CFG_PS1)
5518 local_adv |= ADVERTISE_1000XPAUSE;
5519 if (txflags & ANEG_CFG_PS2)
5520 local_adv |= ADVERTISE_1000XPSE_ASYM;
5521
5522 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5523 remote_adv |= LPA_1000XPAUSE;
5524 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5525 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Matt Carlson859edb22011-12-08 14:40:16 +00005527 tp->link_config.rmt_adv =
5528 mii_adv_to_ethtool_adv_x(remote_adv);
5529
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 tg3_setup_flow_control(tp, local_adv, remote_adv);
5531
Joe Perches953c96e2013-04-09 10:18:14 +00005532 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533 }
5534 for (i = 0; i < 30; i++) {
5535 udelay(20);
5536 tw32_f(MAC_STATUS,
5537 (MAC_STATUS_SYNC_CHANGED |
5538 MAC_STATUS_CFG_CHANGED));
5539 udelay(40);
5540 if ((tr32(MAC_STATUS) &
5541 (MAC_STATUS_SYNC_CHANGED |
5542 MAC_STATUS_CFG_CHANGED)) == 0)
5543 break;
5544 }
5545
5546 mac_status = tr32(MAC_STATUS);
Joe Perches953c96e2013-04-09 10:18:14 +00005547 if (!current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5549 !(mac_status & MAC_STATUS_RCVD_CFG))
Joe Perches953c96e2013-04-09 10:18:14 +00005550 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005552 tg3_setup_flow_control(tp, 0, 0);
5553
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 /* Forcing 1000FD link up. */
Joe Perches953c96e2013-04-09 10:18:14 +00005555 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
5557 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5558 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005559
5560 tw32_f(MAC_MODE, tp->mac_mode);
5561 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562 }
5563
5564out:
5565 return current_link_up;
5566}
5567
Joe Perches953c96e2013-04-09 10:18:14 +00005568static int tg3_setup_fiber_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569{
5570 u32 orig_pause_cfg;
5571 u16 orig_active_speed;
5572 u8 orig_active_duplex;
5573 u32 mac_status;
Joe Perches953c96e2013-04-09 10:18:14 +00005574 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 int i;
5576
Matt Carlson8d018622007-12-20 20:05:44 -08005577 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 orig_active_speed = tp->link_config.active_speed;
5579 orig_active_duplex = tp->link_config.active_duplex;
5580
Joe Perches63c3a662011-04-26 08:12:10 +00005581 if (!tg3_flag(tp, HW_AUTONEG) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005582 tp->link_up &&
Joe Perches63c3a662011-04-26 08:12:10 +00005583 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 mac_status = tr32(MAC_STATUS);
5585 mac_status &= (MAC_STATUS_PCS_SYNCED |
5586 MAC_STATUS_SIGNAL_DET |
5587 MAC_STATUS_CFG_CHANGED |
5588 MAC_STATUS_RCVD_CFG);
5589 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5590 MAC_STATUS_SIGNAL_DET)) {
5591 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5592 MAC_STATUS_CFG_CHANGED));
5593 return 0;
5594 }
5595 }
5596
5597 tw32_f(MAC_TX_AUTO_NEG, 0);
5598
5599 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5600 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5601 tw32_f(MAC_MODE, tp->mac_mode);
5602 udelay(40);
5603
Matt Carlson79eb6902010-02-17 15:17:03 +00005604 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 tg3_init_bcm8002(tp);
5606
5607 /* Enable link change event even when serdes polling. */
5608 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5609 udelay(40);
5610
Joe Perches953c96e2013-04-09 10:18:14 +00005611 current_link_up = false;
Matt Carlson859edb22011-12-08 14:40:16 +00005612 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613 mac_status = tr32(MAC_STATUS);
5614
Joe Perches63c3a662011-04-26 08:12:10 +00005615 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5617 else
5618 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5619
Matt Carlson898a56f2009-08-28 14:02:40 +00005620 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005622 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
5624 for (i = 0; i < 100; i++) {
5625 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5626 MAC_STATUS_CFG_CHANGED));
5627 udelay(5);
5628 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005629 MAC_STATUS_CFG_CHANGED |
5630 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 break;
5632 }
5633
5634 mac_status = tr32(MAC_STATUS);
5635 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
Joe Perches953c96e2013-04-09 10:18:14 +00005636 current_link_up = false;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005637 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5638 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639 tw32_f(MAC_MODE, (tp->mac_mode |
5640 MAC_MODE_SEND_CONFIGS));
5641 udelay(1);
5642 tw32_f(MAC_MODE, tp->mac_mode);
5643 }
5644 }
5645
Joe Perches953c96e2013-04-09 10:18:14 +00005646 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 tp->link_config.active_speed = SPEED_1000;
5648 tp->link_config.active_duplex = DUPLEX_FULL;
5649 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5650 LED_CTRL_LNKLED_OVERRIDE |
5651 LED_CTRL_1000MBPS_ON));
5652 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005653 tp->link_config.active_speed = SPEED_UNKNOWN;
5654 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5656 LED_CTRL_LNKLED_OVERRIDE |
5657 LED_CTRL_TRAFFIC_OVERRIDE));
5658 }
5659
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005660 if (!tg3_test_and_report_link_chg(tp, current_link_up)) {
Matt Carlson8d018622007-12-20 20:05:44 -08005661 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662 if (orig_pause_cfg != now_pause_cfg ||
5663 orig_active_speed != tp->link_config.active_speed ||
5664 orig_active_duplex != tp->link_config.active_duplex)
5665 tg3_link_report(tp);
5666 }
5667
5668 return 0;
5669}
5670
Joe Perches953c96e2013-04-09 10:18:14 +00005671static int tg3_setup_fiber_mii_phy(struct tg3 *tp, bool force_reset)
Michael Chan747e8f82005-07-25 12:33:22 -07005672{
Joe Perches953c96e2013-04-09 10:18:14 +00005673 int err = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005674 u32 bmsr, bmcr;
Michael Chan85730a62013-04-09 08:48:06 +00005675 u16 current_speed = SPEED_UNKNOWN;
5676 u8 current_duplex = DUPLEX_UNKNOWN;
Joe Perches953c96e2013-04-09 10:18:14 +00005677 bool current_link_up = false;
Michael Chan85730a62013-04-09 08:48:06 +00005678 u32 local_adv, remote_adv, sgsr;
5679
5680 if ((tg3_asic_rev(tp) == ASIC_REV_5719 ||
5681 tg3_asic_rev(tp) == ASIC_REV_5720) &&
5682 !tg3_readphy(tp, SERDES_TG3_1000X_STATUS, &sgsr) &&
5683 (sgsr & SERDES_TG3_SGMII_MODE)) {
5684
5685 if (force_reset)
5686 tg3_phy_reset(tp);
5687
5688 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
5689
5690 if (!(sgsr & SERDES_TG3_LINK_UP)) {
5691 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5692 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005693 current_link_up = true;
Michael Chan85730a62013-04-09 08:48:06 +00005694 if (sgsr & SERDES_TG3_SPEED_1000) {
5695 current_speed = SPEED_1000;
5696 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5697 } else if (sgsr & SERDES_TG3_SPEED_100) {
5698 current_speed = SPEED_100;
5699 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5700 } else {
5701 current_speed = SPEED_10;
5702 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5703 }
5704
5705 if (sgsr & SERDES_TG3_FULL_DUPLEX)
5706 current_duplex = DUPLEX_FULL;
5707 else
5708 current_duplex = DUPLEX_HALF;
5709 }
5710
5711 tw32_f(MAC_MODE, tp->mac_mode);
5712 udelay(40);
5713
5714 tg3_clear_mac_status(tp);
5715
5716 goto fiber_setup_done;
5717 }
Michael Chan747e8f82005-07-25 12:33:22 -07005718
5719 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5720 tw32_f(MAC_MODE, tp->mac_mode);
5721 udelay(40);
5722
Michael Chan3310e242013-04-09 08:48:05 +00005723 tg3_clear_mac_status(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005724
5725 if (force_reset)
5726 tg3_phy_reset(tp);
5727
Matt Carlson859edb22011-12-08 14:40:16 +00005728 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005729
5730 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5731 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005732 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005733 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5734 bmsr |= BMSR_LSTATUS;
5735 else
5736 bmsr &= ~BMSR_LSTATUS;
5737 }
Michael Chan747e8f82005-07-25 12:33:22 -07005738
5739 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5740
5741 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005742 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005743 /* do nothing, just check for link up at the end */
5744 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005745 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005746
5747 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005748 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5749 ADVERTISE_1000XPAUSE |
5750 ADVERTISE_1000XPSE_ASYM |
5751 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005752
Matt Carlson28011cf2011-11-16 18:36:59 -05005753 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005754 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005755
Matt Carlson28011cf2011-11-16 18:36:59 -05005756 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5757 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005758 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5759 tg3_writephy(tp, MII_BMCR, bmcr);
5760
5761 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005762 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005763 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005764
5765 return err;
5766 }
5767 } else {
5768 u32 new_bmcr;
5769
5770 bmcr &= ~BMCR_SPEED1000;
5771 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5772
5773 if (tp->link_config.duplex == DUPLEX_FULL)
5774 new_bmcr |= BMCR_FULLDPLX;
5775
5776 if (new_bmcr != bmcr) {
5777 /* BMCR_SPEED1000 is a reserved bit that needs
5778 * to be set on write.
5779 */
5780 new_bmcr |= BMCR_SPEED1000;
5781
5782 /* Force a linkdown */
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005783 if (tp->link_up) {
Michael Chan747e8f82005-07-25 12:33:22 -07005784 u32 adv;
5785
5786 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5787 adv &= ~(ADVERTISE_1000XFULL |
5788 ADVERTISE_1000XHALF |
5789 ADVERTISE_SLCT);
5790 tg3_writephy(tp, MII_ADVERTISE, adv);
5791 tg3_writephy(tp, MII_BMCR, bmcr |
5792 BMCR_ANRESTART |
5793 BMCR_ANENABLE);
5794 udelay(10);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005795 tg3_carrier_off(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005796 }
5797 tg3_writephy(tp, MII_BMCR, new_bmcr);
5798 bmcr = new_bmcr;
5799 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5800 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005801 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005802 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5803 bmsr |= BMSR_LSTATUS;
5804 else
5805 bmsr &= ~BMSR_LSTATUS;
5806 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005807 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005808 }
5809 }
5810
5811 if (bmsr & BMSR_LSTATUS) {
5812 current_speed = SPEED_1000;
Joe Perches953c96e2013-04-09 10:18:14 +00005813 current_link_up = true;
Michael Chan747e8f82005-07-25 12:33:22 -07005814 if (bmcr & BMCR_FULLDPLX)
5815 current_duplex = DUPLEX_FULL;
5816 else
5817 current_duplex = DUPLEX_HALF;
5818
Matt Carlsonef167e22007-12-20 20:10:01 -08005819 local_adv = 0;
5820 remote_adv = 0;
5821
Michael Chan747e8f82005-07-25 12:33:22 -07005822 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005823 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005824
5825 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5826 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5827 common = local_adv & remote_adv;
5828 if (common & (ADVERTISE_1000XHALF |
5829 ADVERTISE_1000XFULL)) {
5830 if (common & ADVERTISE_1000XFULL)
5831 current_duplex = DUPLEX_FULL;
5832 else
5833 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005834
5835 tp->link_config.rmt_adv =
5836 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005837 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005838 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005839 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005840 current_link_up = false;
Matt Carlson859a588792010-04-05 10:19:28 +00005841 }
Michael Chan747e8f82005-07-25 12:33:22 -07005842 }
5843 }
5844
Michael Chan85730a62013-04-09 08:48:06 +00005845fiber_setup_done:
Joe Perches953c96e2013-04-09 10:18:14 +00005846 if (current_link_up && current_duplex == DUPLEX_FULL)
Matt Carlsonef167e22007-12-20 20:10:01 -08005847 tg3_setup_flow_control(tp, local_adv, remote_adv);
5848
Michael Chan747e8f82005-07-25 12:33:22 -07005849 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5850 if (tp->link_config.active_duplex == DUPLEX_HALF)
5851 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5852
5853 tw32_f(MAC_MODE, tp->mac_mode);
5854 udelay(40);
5855
5856 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5857
5858 tp->link_config.active_speed = current_speed;
5859 tp->link_config.active_duplex = current_duplex;
5860
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005861 tg3_test_and_report_link_chg(tp, current_link_up);
Michael Chan747e8f82005-07-25 12:33:22 -07005862 return err;
5863}
5864
5865static void tg3_serdes_parallel_detect(struct tg3 *tp)
5866{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005867 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005868 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005869 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005870 return;
5871 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005872
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005873 if (!tp->link_up &&
Michael Chan747e8f82005-07-25 12:33:22 -07005874 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5875 u32 bmcr;
5876
5877 tg3_readphy(tp, MII_BMCR, &bmcr);
5878 if (bmcr & BMCR_ANENABLE) {
5879 u32 phy1, phy2;
5880
5881 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005882 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5883 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005884
5885 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005886 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5887 MII_TG3_DSP_EXP1_INT_STAT);
5888 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5889 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005890
5891 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5892 /* We have signal detect and not receiving
5893 * config code words, link is up by parallel
5894 * detection.
5895 */
5896
5897 bmcr &= ~BMCR_ANENABLE;
5898 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5899 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005900 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005901 }
5902 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005903 } else if (tp->link_up &&
Matt Carlson859a588792010-04-05 10:19:28 +00005904 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005905 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005906 u32 phy2;
5907
5908 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005909 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5910 MII_TG3_DSP_EXP1_INT_STAT);
5911 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005912 if (phy2 & 0x20) {
5913 u32 bmcr;
5914
5915 /* Config code words received, turn on autoneg. */
5916 tg3_readphy(tp, MII_BMCR, &bmcr);
5917 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5918
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005919 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005920
5921 }
5922 }
5923}
5924
Joe Perches953c96e2013-04-09 10:18:14 +00005925static int tg3_setup_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005927 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928 int err;
5929
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005930 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005932 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005933 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005934 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
Joe Perches41535772013-02-16 11:20:04 +00005937 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005938 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005939
5940 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5941 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5942 scale = 65;
5943 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5944 scale = 6;
5945 else
5946 scale = 12;
5947
5948 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5949 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5950 tw32(GRC_MISC_CFG, val);
5951 }
5952
Matt Carlsonf2096f92011-04-05 14:22:48 +00005953 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5954 (6 << TX_LENGTHS_IPG_SHIFT);
Joe Perches41535772013-02-16 11:20:04 +00005955 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
5956 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005957 val |= tr32(MAC_TX_LENGTHS) &
5958 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5959 TX_LENGTHS_CNT_DWN_VAL_MSK);
5960
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961 if (tp->link_config.active_speed == SPEED_1000 &&
5962 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005963 tw32(MAC_TX_LENGTHS, val |
5964 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005966 tw32(MAC_TX_LENGTHS, val |
5967 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968
Joe Perches63c3a662011-04-26 08:12:10 +00005969 if (!tg3_flag(tp, 5705_PLUS)) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005970 if (tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005972 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 } else {
5974 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5975 }
5976 }
5977
Joe Perches63c3a662011-04-26 08:12:10 +00005978 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005979 val = tr32(PCIE_PWR_MGMT_THRESH);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005980 if (!tp->link_up)
Matt Carlson8ed5d972007-05-07 00:25:49 -07005981 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5982 tp->pwrmgmt_thresh;
5983 else
5984 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5985 tw32(PCIE_PWR_MGMT_THRESH, val);
5986 }
5987
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 return err;
5989}
5990
Matt Carlsonbe947302012-12-03 19:36:57 +00005991/* tp->lock must be held */
Matt Carlson7d41e492012-12-03 19:36:58 +00005992static u64 tg3_refclk_read(struct tg3 *tp)
5993{
5994 u64 stamp = tr32(TG3_EAV_REF_CLCK_LSB);
5995 return stamp | (u64)tr32(TG3_EAV_REF_CLCK_MSB) << 32;
5996}
5997
5998/* tp->lock must be held */
Matt Carlsonbe947302012-12-03 19:36:57 +00005999static void tg3_refclk_write(struct tg3 *tp, u64 newval)
6000{
6001 tw32(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_STOP);
6002 tw32(TG3_EAV_REF_CLCK_LSB, newval & 0xffffffff);
6003 tw32(TG3_EAV_REF_CLCK_MSB, newval >> 32);
6004 tw32_f(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_RESUME);
6005}
6006
Matt Carlson7d41e492012-12-03 19:36:58 +00006007static inline void tg3_full_lock(struct tg3 *tp, int irq_sync);
6008static inline void tg3_full_unlock(struct tg3 *tp);
6009static int tg3_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
6010{
6011 struct tg3 *tp = netdev_priv(dev);
6012
6013 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
6014 SOF_TIMESTAMPING_RX_SOFTWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006015 SOF_TIMESTAMPING_SOFTWARE;
6016
6017 if (tg3_flag(tp, PTP_CAPABLE)) {
Flavio Leitner32e19272013-04-30 07:20:34 +00006018 info->so_timestamping |= SOF_TIMESTAMPING_TX_HARDWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006019 SOF_TIMESTAMPING_RX_HARDWARE |
6020 SOF_TIMESTAMPING_RAW_HARDWARE;
6021 }
Matt Carlson7d41e492012-12-03 19:36:58 +00006022
6023 if (tp->ptp_clock)
6024 info->phc_index = ptp_clock_index(tp->ptp_clock);
6025 else
6026 info->phc_index = -1;
6027
6028 info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
6029
6030 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
6031 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
6032 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
6033 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
6034 return 0;
6035}
6036
6037static int tg3_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
6038{
6039 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6040 bool neg_adj = false;
6041 u32 correction = 0;
6042
6043 if (ppb < 0) {
6044 neg_adj = true;
6045 ppb = -ppb;
6046 }
6047
6048 /* Frequency adjustment is performed using hardware with a 24 bit
6049 * accumulator and a programmable correction value. On each clk, the
6050 * correction value gets added to the accumulator and when it
6051 * overflows, the time counter is incremented/decremented.
6052 *
6053 * So conversion from ppb to correction value is
6054 * ppb * (1 << 24) / 1000000000
6055 */
6056 correction = div_u64((u64)ppb * (1 << 24), 1000000000ULL) &
6057 TG3_EAV_REF_CLK_CORRECT_MASK;
6058
6059 tg3_full_lock(tp, 0);
6060
6061 if (correction)
6062 tw32(TG3_EAV_REF_CLK_CORRECT_CTL,
6063 TG3_EAV_REF_CLK_CORRECT_EN |
6064 (neg_adj ? TG3_EAV_REF_CLK_CORRECT_NEG : 0) | correction);
6065 else
6066 tw32(TG3_EAV_REF_CLK_CORRECT_CTL, 0);
6067
6068 tg3_full_unlock(tp);
6069
6070 return 0;
6071}
6072
6073static int tg3_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
6074{
6075 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6076
6077 tg3_full_lock(tp, 0);
6078 tp->ptp_adjust += delta;
6079 tg3_full_unlock(tp);
6080
6081 return 0;
6082}
6083
6084static int tg3_ptp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
6085{
6086 u64 ns;
6087 u32 remainder;
6088 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6089
6090 tg3_full_lock(tp, 0);
6091 ns = tg3_refclk_read(tp);
6092 ns += tp->ptp_adjust;
6093 tg3_full_unlock(tp);
6094
6095 ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder);
6096 ts->tv_nsec = remainder;
6097
6098 return 0;
6099}
6100
6101static int tg3_ptp_settime(struct ptp_clock_info *ptp,
6102 const struct timespec *ts)
6103{
6104 u64 ns;
6105 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6106
6107 ns = timespec_to_ns(ts);
6108
6109 tg3_full_lock(tp, 0);
6110 tg3_refclk_write(tp, ns);
6111 tp->ptp_adjust = 0;
6112 tg3_full_unlock(tp);
6113
6114 return 0;
6115}
6116
6117static int tg3_ptp_enable(struct ptp_clock_info *ptp,
6118 struct ptp_clock_request *rq, int on)
6119{
6120 return -EOPNOTSUPP;
6121}
6122
6123static const struct ptp_clock_info tg3_ptp_caps = {
6124 .owner = THIS_MODULE,
6125 .name = "tg3 clock",
6126 .max_adj = 250000000,
6127 .n_alarm = 0,
6128 .n_ext_ts = 0,
6129 .n_per_out = 0,
6130 .pps = 0,
6131 .adjfreq = tg3_ptp_adjfreq,
6132 .adjtime = tg3_ptp_adjtime,
6133 .gettime = tg3_ptp_gettime,
6134 .settime = tg3_ptp_settime,
6135 .enable = tg3_ptp_enable,
6136};
6137
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006138static void tg3_hwclock_to_timestamp(struct tg3 *tp, u64 hwclock,
6139 struct skb_shared_hwtstamps *timestamp)
6140{
6141 memset(timestamp, 0, sizeof(struct skb_shared_hwtstamps));
6142 timestamp->hwtstamp = ns_to_ktime((hwclock & TG3_TSTAMP_MASK) +
6143 tp->ptp_adjust);
6144}
6145
Matt Carlsonbe947302012-12-03 19:36:57 +00006146/* tp->lock must be held */
6147static void tg3_ptp_init(struct tg3 *tp)
6148{
6149 if (!tg3_flag(tp, PTP_CAPABLE))
6150 return;
6151
6152 /* Initialize the hardware clock to the system time. */
6153 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()));
6154 tp->ptp_adjust = 0;
Matt Carlson7d41e492012-12-03 19:36:58 +00006155 tp->ptp_info = tg3_ptp_caps;
Matt Carlsonbe947302012-12-03 19:36:57 +00006156}
6157
6158/* tp->lock must be held */
6159static void tg3_ptp_resume(struct tg3 *tp)
6160{
6161 if (!tg3_flag(tp, PTP_CAPABLE))
6162 return;
6163
6164 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()) + tp->ptp_adjust);
6165 tp->ptp_adjust = 0;
6166}
6167
6168static void tg3_ptp_fini(struct tg3 *tp)
6169{
6170 if (!tg3_flag(tp, PTP_CAPABLE) || !tp->ptp_clock)
6171 return;
6172
Matt Carlson7d41e492012-12-03 19:36:58 +00006173 ptp_clock_unregister(tp->ptp_clock);
Matt Carlsonbe947302012-12-03 19:36:57 +00006174 tp->ptp_clock = NULL;
6175 tp->ptp_adjust = 0;
6176}
6177
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006178static inline int tg3_irq_sync(struct tg3 *tp)
6179{
6180 return tp->irq_sync;
6181}
6182
Matt Carlson97bd8e42011-04-13 11:05:04 +00006183static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
6184{
6185 int i;
6186
6187 dst = (u32 *)((u8 *)dst + off);
6188 for (i = 0; i < len; i += sizeof(u32))
6189 *dst++ = tr32(off + i);
6190}
6191
6192static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
6193{
6194 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
6195 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
6196 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
6197 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
6198 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
6199 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
6200 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
6201 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
6202 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
6203 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
6204 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
6205 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
6206 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
6207 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
6208 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
6209 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
6210 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
6211 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
6212 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
6213
Joe Perches63c3a662011-04-26 08:12:10 +00006214 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006215 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
6216
6217 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
6218 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
6219 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
6220 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
6221 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
6222 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
6223 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
6224 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
6225
Joe Perches63c3a662011-04-26 08:12:10 +00006226 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006227 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
6228 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
6229 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
6230 }
6231
6232 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
6233 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
6234 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
6235 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
6236 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
6237
Joe Perches63c3a662011-04-26 08:12:10 +00006238 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006239 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
6240}
6241
6242static void tg3_dump_state(struct tg3 *tp)
6243{
6244 int i;
6245 u32 *regs;
6246
6247 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
Joe Perchesb2adaca2013-02-03 17:43:58 +00006248 if (!regs)
Matt Carlson97bd8e42011-04-13 11:05:04 +00006249 return;
Matt Carlson97bd8e42011-04-13 11:05:04 +00006250
Joe Perches63c3a662011-04-26 08:12:10 +00006251 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006252 /* Read up to but not including private PCI registers */
6253 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
6254 regs[i / sizeof(u32)] = tr32(i);
6255 } else
6256 tg3_dump_legacy_regs(tp, regs);
6257
6258 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
6259 if (!regs[i + 0] && !regs[i + 1] &&
6260 !regs[i + 2] && !regs[i + 3])
6261 continue;
6262
6263 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
6264 i * 4,
6265 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
6266 }
6267
6268 kfree(regs);
6269
6270 for (i = 0; i < tp->irq_cnt; i++) {
6271 struct tg3_napi *tnapi = &tp->napi[i];
6272
6273 /* SW status block */
6274 netdev_err(tp->dev,
6275 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
6276 i,
6277 tnapi->hw_status->status,
6278 tnapi->hw_status->status_tag,
6279 tnapi->hw_status->rx_jumbo_consumer,
6280 tnapi->hw_status->rx_consumer,
6281 tnapi->hw_status->rx_mini_consumer,
6282 tnapi->hw_status->idx[0].rx_producer,
6283 tnapi->hw_status->idx[0].tx_consumer);
6284
6285 netdev_err(tp->dev,
6286 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
6287 i,
6288 tnapi->last_tag, tnapi->last_irq_tag,
6289 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
6290 tnapi->rx_rcb_ptr,
6291 tnapi->prodring.rx_std_prod_idx,
6292 tnapi->prodring.rx_std_cons_idx,
6293 tnapi->prodring.rx_jmb_prod_idx,
6294 tnapi->prodring.rx_jmb_cons_idx);
6295 }
6296}
6297
Michael Chandf3e6542006-05-26 17:48:07 -07006298/* This is called whenever we suspect that the system chipset is re-
6299 * ordering the sequence of MMIO to the tx send mailbox. The symptom
6300 * is bogus tx completions. We try to recover by setting the
6301 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
6302 * in the workqueue.
6303 */
6304static void tg3_tx_recover(struct tg3 *tp)
6305{
Joe Perches63c3a662011-04-26 08:12:10 +00006306 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07006307 tp->write32_tx_mbox == tg3_write_indirect_mbox);
6308
Matt Carlson5129c3a2010-04-05 10:19:23 +00006309 netdev_warn(tp->dev,
6310 "The system may be re-ordering memory-mapped I/O "
6311 "cycles to the network device, attempting to recover. "
6312 "Please report the problem to the driver maintainer "
6313 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07006314
6315 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006316 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006317 spin_unlock(&tp->lock);
6318}
6319
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006320static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07006321{
Matt Carlsonf65aac12010-08-02 11:26:03 +00006322 /* Tell compiler to fetch tx indices from memory. */
6323 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006324 return tnapi->tx_pending -
6325 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07006326}
6327
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328/* Tigon3 never reports partial packet sends. So we do not
6329 * need special logic to handle SKBs that have not had all
6330 * of their frags sent yet, like SunGEM does.
6331 */
Matt Carlson17375d22009-08-28 14:02:18 +00006332static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333{
Matt Carlson17375d22009-08-28 14:02:18 +00006334 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006335 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006336 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006337 struct netdev_queue *txq;
6338 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00006339 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006340
Joe Perches63c3a662011-04-26 08:12:10 +00006341 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006342 index--;
6343
6344 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345
6346 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00006347 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07006349 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
Michael Chandf3e6542006-05-26 17:48:07 -07006351 if (unlikely(skb == NULL)) {
6352 tg3_tx_recover(tp);
6353 return;
6354 }
6355
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006356 if (tnapi->tx_ring[sw_idx].len_flags & TXD_FLAG_HWTSTAMP) {
6357 struct skb_shared_hwtstamps timestamp;
6358 u64 hwclock = tr32(TG3_TX_TSTAMP_LSB);
6359 hwclock |= (u64)tr32(TG3_TX_TSTAMP_MSB) << 32;
6360
6361 tg3_hwclock_to_timestamp(tp, hwclock, &timestamp);
6362
6363 skb_tstamp_tx(skb, &timestamp);
6364 }
6365
Alexander Duyckf4188d82009-12-02 16:48:38 +00006366 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006367 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006368 skb_headlen(skb),
6369 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
6371 ri->skb = NULL;
6372
Matt Carlsone01ee142011-07-27 14:20:50 +00006373 while (ri->fragmented) {
6374 ri->fragmented = false;
6375 sw_idx = NEXT_TX(sw_idx);
6376 ri = &tnapi->tx_buffers[sw_idx];
6377 }
6378
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 sw_idx = NEXT_TX(sw_idx);
6380
6381 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006382 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07006383 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
6384 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006385
6386 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006387 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006388 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006389 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006390
6391 while (ri->fragmented) {
6392 ri->fragmented = false;
6393 sw_idx = NEXT_TX(sw_idx);
6394 ri = &tnapi->tx_buffers[sw_idx];
6395 }
6396
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 sw_idx = NEXT_TX(sw_idx);
6398 }
6399
Tom Herbert298376d2011-11-28 16:33:30 +00006400 pkts_compl++;
6401 bytes_compl += skb->len;
6402
David S. Millerf47c11e2005-06-24 20:18:35 -07006403 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07006404
6405 if (unlikely(tx_bug)) {
6406 tg3_tx_recover(tp);
6407 return;
6408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409 }
6410
Tom Herbert5cb917b2012-03-05 19:53:50 +00006411 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00006412
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006413 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414
Michael Chan1b2a7202006-08-07 21:46:02 -07006415 /* Need to make the tx_cons update visible to tg3_start_xmit()
6416 * before checking for netif_queue_stopped(). Without the
6417 * memory barrier, there is a small possibility that tg3_start_xmit()
6418 * will miss it and cause the queue to be stopped forever.
6419 */
6420 smp_mb();
6421
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006422 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006423 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006424 __netif_tx_lock(txq, smp_processor_id());
6425 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006426 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006427 netif_tx_wake_queue(txq);
6428 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430}
6431
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006432static void tg3_frag_free(bool is_frag, void *data)
6433{
6434 if (is_frag)
6435 put_page(virt_to_head_page(data));
6436 else
6437 kfree(data);
6438}
6439
Eric Dumazet9205fd92011-11-18 06:47:01 +00006440static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006441{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006442 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
6443 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
6444
Eric Dumazet9205fd92011-11-18 06:47:01 +00006445 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006446 return;
6447
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006448 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006449 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006450 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006451 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006452}
6453
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006454
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455/* Returns size of skb allocated or < 0 on error.
6456 *
6457 * We only need to fill in the address because the other members
6458 * of the RX descriptor are invariant, see tg3_init_rings.
6459 *
6460 * Note the purposeful assymetry of cpu vs. chip accesses. For
6461 * posting buffers we only dirty the first cache line of the RX
6462 * descriptor (containing the address). Whereas for the RX status
6463 * buffers the cpu only reads the last cacheline of the RX descriptor
6464 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
6465 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006466static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006467 u32 opaque_key, u32 dest_idx_unmasked,
6468 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469{
6470 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00006471 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006472 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006474 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476 switch (opaque_key) {
6477 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006478 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00006479 desc = &tpr->rx_std[dest_idx];
6480 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006481 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482 break;
6483
6484 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006485 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00006486 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00006487 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006488 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489 break;
6490
6491 default:
6492 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494
6495 /* Do not overwrite any of the map or rp information
6496 * until we are sure we can commit to a new buffer.
6497 *
6498 * Callers depend upon this behavior and assume that
6499 * we leave everything unchanged if we fail.
6500 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006501 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
6502 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006503 if (skb_size <= PAGE_SIZE) {
6504 data = netdev_alloc_frag(skb_size);
6505 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006506 } else {
6507 data = kmalloc(skb_size, GFP_ATOMIC);
6508 *frag_size = 0;
6509 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00006510 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511 return -ENOMEM;
6512
Eric Dumazet9205fd92011-11-18 06:47:01 +00006513 mapping = pci_map_single(tp->pdev,
6514 data + TG3_RX_OFFSET(tp),
6515 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006517 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006518 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00006519 return -EIO;
6520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
Eric Dumazet9205fd92011-11-18 06:47:01 +00006522 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006523 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 desc->addr_hi = ((u64)mapping >> 32);
6526 desc->addr_lo = ((u64)mapping & 0xffffffff);
6527
Eric Dumazet9205fd92011-11-18 06:47:01 +00006528 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529}
6530
6531/* We only need to move over in the address because the other
6532 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00006533 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 */
Matt Carlsona3896162009-11-13 13:03:44 +00006535static void tg3_recycle_rx(struct tg3_napi *tnapi,
6536 struct tg3_rx_prodring_set *dpr,
6537 u32 opaque_key, int src_idx,
6538 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539{
Matt Carlson17375d22009-08-28 14:02:18 +00006540 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
6542 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006543 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006544 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545
6546 switch (opaque_key) {
6547 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006548 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006549 dest_desc = &dpr->rx_std[dest_idx];
6550 dest_map = &dpr->rx_std_buffers[dest_idx];
6551 src_desc = &spr->rx_std[src_idx];
6552 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553 break;
6554
6555 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006556 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006557 dest_desc = &dpr->rx_jmb[dest_idx].std;
6558 dest_map = &dpr->rx_jmb_buffers[dest_idx];
6559 src_desc = &spr->rx_jmb[src_idx].std;
6560 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 break;
6562
6563 default:
6564 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566
Eric Dumazet9205fd92011-11-18 06:47:01 +00006567 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006568 dma_unmap_addr_set(dest_map, mapping,
6569 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 dest_desc->addr_hi = src_desc->addr_hi;
6571 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00006572
6573 /* Ensure that the update to the skb happens after the physical
6574 * addresses have been transferred to the new BD location.
6575 */
6576 smp_wmb();
6577
Eric Dumazet9205fd92011-11-18 06:47:01 +00006578 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579}
6580
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581/* The RX ring scheme is composed of multiple rings which post fresh
6582 * buffers to the chip, and one special ring the chip uses to report
6583 * status back to the host.
6584 *
6585 * The special ring reports the status of received packets to the
6586 * host. The chip does not write into the original descriptor the
6587 * RX buffer was obtained from. The chip simply takes the original
6588 * descriptor as provided by the host, updates the status and length
6589 * field, then writes this into the next status ring entry.
6590 *
6591 * Each ring the host uses to post buffers to the chip is described
6592 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
6593 * it is first placed into the on-chip ram. When the packet's length
6594 * is known, it walks down the TG3_BDINFO entries to select the ring.
6595 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
6596 * which is within the range of the new packet's length is chosen.
6597 *
6598 * The "separate ring for rx status" scheme may sound queer, but it makes
6599 * sense from a cache coherency perspective. If only the host writes
6600 * to the buffer post rings, and only the chip writes to the rx status
6601 * rings, then cache lines never move beyond shared-modified state.
6602 * If both the host and chip were to write into the same ring, cache line
6603 * eviction could occur since both entities want it in an exclusive state.
6604 */
Matt Carlson17375d22009-08-28 14:02:18 +00006605static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606{
Matt Carlson17375d22009-08-28 14:02:18 +00006607 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07006608 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006609 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00006610 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07006611 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006613 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006615 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616 /*
6617 * We need to order the read of hw_idx and the read of
6618 * the opaque cookie.
6619 */
6620 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621 work_mask = 0;
6622 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006623 std_prod_idx = tpr->rx_std_prod_idx;
6624 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00006626 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00006627 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 unsigned int len;
6629 struct sk_buff *skb;
6630 dma_addr_t dma_addr;
6631 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006632 u8 *data;
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006633 u64 tstamp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
6635 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
6636 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
6637 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006638 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006639 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006640 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006641 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07006642 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006644 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006645 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006646 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006647 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00006648 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650
6651 work_mask |= opaque_key;
6652
6653 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
6654 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
6655 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00006656 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 desc_idx, *post_ptr);
6658 drop_it_no_recycle:
6659 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00006660 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 goto next_pkt;
6662 }
6663
Eric Dumazet9205fd92011-11-18 06:47:01 +00006664 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08006665 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
6666 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006668 if ((desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6669 RXD_FLAG_PTPSTAT_PTPV1 ||
6670 (desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6671 RXD_FLAG_PTPSTAT_PTPV2) {
6672 tstamp = tr32(TG3_RX_TSTAMP_LSB);
6673 tstamp |= (u64)tr32(TG3_RX_TSTAMP_MSB) << 32;
6674 }
6675
Matt Carlsond2757fc2010-04-12 06:58:27 +00006676 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006678 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679
Eric Dumazet9205fd92011-11-18 06:47:01 +00006680 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006681 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682 if (skb_size < 0)
6683 goto drop_it;
6684
Matt Carlson287be122009-08-28 13:58:46 +00006685 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686 PCI_DMA_FROMDEVICE);
6687
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006688 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006689 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006690 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006691 goto drop_it_no_recycle;
6692 }
6693 skb_reserve(skb, TG3_RX_OFFSET(tp));
6694 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00006695 * after the usage of the old DMA mapping.
6696 */
6697 smp_wmb();
6698
Eric Dumazet9205fd92011-11-18 06:47:01 +00006699 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00006700
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00006702 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703 desc_idx, *post_ptr);
6704
Eric Dumazet9205fd92011-11-18 06:47:01 +00006705 skb = netdev_alloc_skb(tp->dev,
6706 len + TG3_RAW_IP_ALIGN);
6707 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708 goto drop_it_no_recycle;
6709
Eric Dumazet9205fd92011-11-18 06:47:01 +00006710 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006712 memcpy(skb->data,
6713 data + TG3_RX_OFFSET(tp),
6714 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716 }
6717
Eric Dumazet9205fd92011-11-18 06:47:01 +00006718 skb_put(skb, len);
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006719 if (tstamp)
6720 tg3_hwclock_to_timestamp(tp, tstamp,
6721 skb_hwtstamps(skb));
6722
Michał Mirosławdc668912011-04-07 03:35:07 +00006723 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6725 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6726 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6727 skb->ip_summed = CHECKSUM_UNNECESSARY;
6728 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006729 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730
6731 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006732
6733 if (len > (tp->dev->mtu + ETH_HLEN) &&
6734 skb->protocol != htons(ETH_P_8021Q)) {
6735 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006736 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006737 }
6738
Matt Carlson9dc7a112010-04-12 06:58:28 +00006739 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006740 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00006741 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
Matt Carlsonbf933c82011-01-25 15:58:49 +00006742 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006743
Matt Carlsonbf933c82011-01-25 15:58:49 +00006744 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746 received++;
6747 budget--;
6748
6749next_pkt:
6750 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006751
6752 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006753 tpr->rx_std_prod_idx = std_prod_idx &
6754 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006755 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6756 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006757 work_mask &= ~RXD_OPAQUE_RING_STD;
6758 rx_std_posted = 0;
6759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006761 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006762 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006763
6764 /* Refresh hw_idx to see if there is new work */
6765 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006766 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006767 rmb();
6768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 }
6770
6771 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006772 tnapi->rx_rcb_ptr = sw_idx;
6773 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
6775 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006776 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006777 /* Sync BD data before updating mailbox */
6778 wmb();
6779
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006780 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006781 tpr->rx_std_prod_idx = std_prod_idx &
6782 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006783 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6784 tpr->rx_std_prod_idx);
6785 }
6786 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006787 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6788 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006789 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6790 tpr->rx_jmb_prod_idx);
6791 }
6792 mmiowb();
6793 } else if (work_mask) {
6794 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6795 * updated before the producer indices can be updated.
6796 */
6797 smp_wmb();
6798
Matt Carlson2c49a442010-09-30 10:34:35 +00006799 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6800 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006801
Michael Chan7ae52892012-03-21 15:38:33 +00006802 if (tnapi != &tp->napi[1]) {
6803 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006804 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
6808 return received;
6809}
6810
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006811static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006812{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00006814 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006815 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
6816
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817 if (sblk->status & SD_STATUS_LINK_CHG) {
6818 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006819 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006820 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006821 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006822 tw32_f(MAC_STATUS,
6823 (MAC_STATUS_SYNC_CHANGED |
6824 MAC_STATUS_CFG_CHANGED |
6825 MAC_STATUS_MI_COMPLETION |
6826 MAC_STATUS_LNKSTATE_CHANGED));
6827 udelay(40);
6828 } else
Joe Perches953c96e2013-04-09 10:18:14 +00006829 tg3_setup_phy(tp, false);
David S. Millerf47c11e2005-06-24 20:18:35 -07006830 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831 }
6832 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006833}
6834
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006835static int tg3_rx_prodring_xfer(struct tg3 *tp,
6836 struct tg3_rx_prodring_set *dpr,
6837 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006838{
6839 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006840 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006841
6842 while (1) {
6843 src_prod_idx = spr->rx_std_prod_idx;
6844
6845 /* Make sure updates to the rx_std_buffers[] entries and the
6846 * standard producer index are seen in the correct order.
6847 */
6848 smp_rmb();
6849
6850 if (spr->rx_std_cons_idx == src_prod_idx)
6851 break;
6852
6853 if (spr->rx_std_cons_idx < src_prod_idx)
6854 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6855 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006856 cpycnt = tp->rx_std_ring_mask + 1 -
6857 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006858
Matt Carlson2c49a442010-09-30 10:34:35 +00006859 cpycnt = min(cpycnt,
6860 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006861
6862 si = spr->rx_std_cons_idx;
6863 di = dpr->rx_std_prod_idx;
6864
Matt Carlsone92967b2010-02-12 14:47:06 +00006865 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006866 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006867 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006868 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006869 break;
6870 }
6871 }
6872
6873 if (!cpycnt)
6874 break;
6875
6876 /* Ensure that updates to the rx_std_buffers ring and the
6877 * shadowed hardware producer ring from tg3_recycle_skb() are
6878 * ordered correctly WRT the skb check above.
6879 */
6880 smp_rmb();
6881
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006882 memcpy(&dpr->rx_std_buffers[di],
6883 &spr->rx_std_buffers[si],
6884 cpycnt * sizeof(struct ring_info));
6885
6886 for (i = 0; i < cpycnt; i++, di++, si++) {
6887 struct tg3_rx_buffer_desc *sbd, *dbd;
6888 sbd = &spr->rx_std[si];
6889 dbd = &dpr->rx_std[di];
6890 dbd->addr_hi = sbd->addr_hi;
6891 dbd->addr_lo = sbd->addr_lo;
6892 }
6893
Matt Carlson2c49a442010-09-30 10:34:35 +00006894 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6895 tp->rx_std_ring_mask;
6896 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6897 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006898 }
6899
6900 while (1) {
6901 src_prod_idx = spr->rx_jmb_prod_idx;
6902
6903 /* Make sure updates to the rx_jmb_buffers[] entries and
6904 * the jumbo producer index are seen in the correct order.
6905 */
6906 smp_rmb();
6907
6908 if (spr->rx_jmb_cons_idx == src_prod_idx)
6909 break;
6910
6911 if (spr->rx_jmb_cons_idx < src_prod_idx)
6912 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6913 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006914 cpycnt = tp->rx_jmb_ring_mask + 1 -
6915 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006916
6917 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006918 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006919
6920 si = spr->rx_jmb_cons_idx;
6921 di = dpr->rx_jmb_prod_idx;
6922
Matt Carlsone92967b2010-02-12 14:47:06 +00006923 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006924 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006925 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006926 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006927 break;
6928 }
6929 }
6930
6931 if (!cpycnt)
6932 break;
6933
6934 /* Ensure that updates to the rx_jmb_buffers ring and the
6935 * shadowed hardware producer ring from tg3_recycle_skb() are
6936 * ordered correctly WRT the skb check above.
6937 */
6938 smp_rmb();
6939
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006940 memcpy(&dpr->rx_jmb_buffers[di],
6941 &spr->rx_jmb_buffers[si],
6942 cpycnt * sizeof(struct ring_info));
6943
6944 for (i = 0; i < cpycnt; i++, di++, si++) {
6945 struct tg3_rx_buffer_desc *sbd, *dbd;
6946 sbd = &spr->rx_jmb[si].std;
6947 dbd = &dpr->rx_jmb[di].std;
6948 dbd->addr_hi = sbd->addr_hi;
6949 dbd->addr_lo = sbd->addr_lo;
6950 }
6951
Matt Carlson2c49a442010-09-30 10:34:35 +00006952 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6953 tp->rx_jmb_ring_mask;
6954 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6955 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006956 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006957
6958 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006959}
6960
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006961static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6962{
6963 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964
6965 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006966 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006967 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006968 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006969 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970 }
6971
Matt Carlsonf891ea12012-04-24 13:37:01 +00006972 if (!tnapi->rx_rcb_prod_idx)
6973 return work_done;
6974
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975 /* run RX thread, within the bounds set by NAPI.
6976 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006977 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006979 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006980 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981
Joe Perches63c3a662011-04-26 08:12:10 +00006982 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006983 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006984 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006985 u32 std_prod_idx = dpr->rx_std_prod_idx;
6986 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006987
Michael Chan7ae52892012-03-21 15:38:33 +00006988 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00006989 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006990 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006991 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006992
6993 wmb();
6994
Matt Carlsone4af1af2010-02-12 14:47:05 +00006995 if (std_prod_idx != dpr->rx_std_prod_idx)
6996 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6997 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006998
Matt Carlsone4af1af2010-02-12 14:47:05 +00006999 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
7000 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
7001 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007002
7003 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007004
7005 if (err)
7006 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007007 }
7008
David S. Miller6f535762007-10-11 18:08:29 -07007009 return work_done;
7010}
David S. Millerf7383c22005-05-18 22:50:53 -07007011
Matt Carlsondb219972011-11-04 09:15:03 +00007012static inline void tg3_reset_task_schedule(struct tg3 *tp)
7013{
7014 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
7015 schedule_work(&tp->reset_task);
7016}
7017
7018static inline void tg3_reset_task_cancel(struct tg3 *tp)
7019{
7020 cancel_work_sync(&tp->reset_task);
7021 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00007022 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00007023}
7024
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007025static int tg3_poll_msix(struct napi_struct *napi, int budget)
7026{
7027 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7028 struct tg3 *tp = tnapi->tp;
7029 int work_done = 0;
7030 struct tg3_hw_status *sblk = tnapi->hw_status;
7031
7032 while (1) {
7033 work_done = tg3_poll_work(tnapi, work_done, budget);
7034
Joe Perches63c3a662011-04-26 08:12:10 +00007035 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007036 goto tx_recovery;
7037
7038 if (unlikely(work_done >= budget))
7039 break;
7040
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007041 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007042 * to tell the hw how much work has been processed,
7043 * so we must read it before checking for more work.
7044 */
7045 tnapi->last_tag = sblk->status_tag;
7046 tnapi->last_irq_tag = tnapi->last_tag;
7047 rmb();
7048
7049 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00007050 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
7051 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00007052
7053 /* This test here is not race free, but will reduce
7054 * the number of interrupts by looping again.
7055 */
7056 if (tnapi == &tp->napi[1] && tp->rx_refill)
7057 continue;
7058
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007059 napi_complete(napi);
7060 /* Reenable interrupts. */
7061 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00007062
7063 /* This test here is synchronized by napi_schedule()
7064 * and napi_complete() to close the race condition.
7065 */
7066 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
7067 tw32(HOSTCC_MODE, tp->coalesce_mode |
7068 HOSTCC_MODE_ENABLE |
7069 tnapi->coal_now);
7070 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007071 mmiowb();
7072 break;
7073 }
7074 }
7075
7076 return work_done;
7077
7078tx_recovery:
7079 /* work_done is guaranteed to be less than budget. */
7080 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007081 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007082 return work_done;
7083}
7084
Matt Carlsone64de4e2011-04-13 11:05:05 +00007085static void tg3_process_error(struct tg3 *tp)
7086{
7087 u32 val;
7088 bool real_error = false;
7089
Joe Perches63c3a662011-04-26 08:12:10 +00007090 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00007091 return;
7092
7093 /* Check Flow Attention register */
7094 val = tr32(HOSTCC_FLOW_ATTN);
7095 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
7096 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
7097 real_error = true;
7098 }
7099
7100 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
7101 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
7102 real_error = true;
7103 }
7104
7105 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
7106 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
7107 real_error = true;
7108 }
7109
7110 if (!real_error)
7111 return;
7112
7113 tg3_dump_state(tp);
7114
Joe Perches63c3a662011-04-26 08:12:10 +00007115 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00007116 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00007117}
7118
David S. Miller6f535762007-10-11 18:08:29 -07007119static int tg3_poll(struct napi_struct *napi, int budget)
7120{
Matt Carlson8ef04422009-08-28 14:01:37 +00007121 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7122 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07007123 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00007124 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07007125
7126 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00007127 if (sblk->status & SD_STATUS_ERROR)
7128 tg3_process_error(tp);
7129
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007130 tg3_poll_link(tp);
7131
Matt Carlson17375d22009-08-28 14:02:18 +00007132 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07007133
Joe Perches63c3a662011-04-26 08:12:10 +00007134 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07007135 goto tx_recovery;
7136
7137 if (unlikely(work_done >= budget))
7138 break;
7139
Joe Perches63c3a662011-04-26 08:12:10 +00007140 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00007141 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07007142 * to tell the hw how much work has been processed,
7143 * so we must read it before checking for more work.
7144 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007145 tnapi->last_tag = sblk->status_tag;
7146 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07007147 rmb();
7148 } else
7149 sblk->status &= ~SD_STATUS_UPDATED;
7150
Matt Carlson17375d22009-08-28 14:02:18 +00007151 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007152 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00007153 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07007154 break;
7155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156 }
7157
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007158 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07007159
7160tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07007161 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08007162 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007163 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07007164 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165}
7166
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007167static void tg3_napi_disable(struct tg3 *tp)
7168{
7169 int i;
7170
7171 for (i = tp->irq_cnt - 1; i >= 0; i--)
7172 napi_disable(&tp->napi[i].napi);
7173}
7174
7175static void tg3_napi_enable(struct tg3 *tp)
7176{
7177 int i;
7178
7179 for (i = 0; i < tp->irq_cnt; i++)
7180 napi_enable(&tp->napi[i].napi);
7181}
7182
7183static void tg3_napi_init(struct tg3 *tp)
7184{
7185 int i;
7186
7187 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
7188 for (i = 1; i < tp->irq_cnt; i++)
7189 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
7190}
7191
7192static void tg3_napi_fini(struct tg3 *tp)
7193{
7194 int i;
7195
7196 for (i = 0; i < tp->irq_cnt; i++)
7197 netif_napi_del(&tp->napi[i].napi);
7198}
7199
7200static inline void tg3_netif_stop(struct tg3 *tp)
7201{
7202 tp->dev->trans_start = jiffies; /* prevent tx timeout */
7203 tg3_napi_disable(tp);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007204 netif_carrier_off(tp->dev);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007205 netif_tx_disable(tp->dev);
7206}
7207
Nithin Nayak Sujir35763062012-12-03 19:36:56 +00007208/* tp->lock must be held */
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007209static inline void tg3_netif_start(struct tg3 *tp)
7210{
Matt Carlsonbe947302012-12-03 19:36:57 +00007211 tg3_ptp_resume(tp);
7212
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007213 /* NOTE: unconditional netif_tx_wake_all_queues is only
7214 * appropriate so long as all callers are assured to
7215 * have free tx slots (such as after tg3_init_hw)
7216 */
7217 netif_tx_wake_all_queues(tp->dev);
7218
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007219 if (tp->link_up)
7220 netif_carrier_on(tp->dev);
7221
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007222 tg3_napi_enable(tp);
7223 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
7224 tg3_enable_ints(tp);
7225}
7226
David S. Millerf47c11e2005-06-24 20:18:35 -07007227static void tg3_irq_quiesce(struct tg3 *tp)
7228{
Matt Carlson4f125f42009-09-01 12:55:02 +00007229 int i;
7230
David S. Millerf47c11e2005-06-24 20:18:35 -07007231 BUG_ON(tp->irq_sync);
7232
7233 tp->irq_sync = 1;
7234 smp_mb();
7235
Matt Carlson4f125f42009-09-01 12:55:02 +00007236 for (i = 0; i < tp->irq_cnt; i++)
7237 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07007238}
7239
David S. Millerf47c11e2005-06-24 20:18:35 -07007240/* Fully shutdown all tg3 driver activity elsewhere in the system.
7241 * If irq_sync is non-zero, then the IRQ handler must be synchronized
7242 * with as well. Most of the time, this is not necessary except when
7243 * shutting down the device.
7244 */
7245static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
7246{
Michael Chan46966542007-07-11 19:47:19 -07007247 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07007248 if (irq_sync)
7249 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007250}
7251
7252static inline void tg3_full_unlock(struct tg3 *tp)
7253{
David S. Millerf47c11e2005-06-24 20:18:35 -07007254 spin_unlock_bh(&tp->lock);
7255}
7256
Michael Chanfcfa0a32006-03-20 22:28:41 -08007257/* One-shot MSI handler - Chip automatically disables interrupt
7258 * after sending MSI so driver doesn't have to do it.
7259 */
David Howells7d12e782006-10-05 14:55:46 +01007260static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007261{
Matt Carlson09943a12009-08-28 14:01:57 +00007262 struct tg3_napi *tnapi = dev_id;
7263 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007264
Matt Carlson898a56f2009-08-28 14:02:40 +00007265 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007266 if (tnapi->rx_rcb)
7267 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007268
7269 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007270 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007271
7272 return IRQ_HANDLED;
7273}
7274
Michael Chan88b06bc22005-04-21 17:13:25 -07007275/* MSI ISR - No need to check for interrupt sharing and no need to
7276 * flush status block and interrupt mailbox. PCI ordering rules
7277 * guarantee that MSI will arrive after the status block.
7278 */
David Howells7d12e782006-10-05 14:55:46 +01007279static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07007280{
Matt Carlson09943a12009-08-28 14:01:57 +00007281 struct tg3_napi *tnapi = dev_id;
7282 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07007283
Matt Carlson898a56f2009-08-28 14:02:40 +00007284 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007285 if (tnapi->rx_rcb)
7286 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07007287 /*
David S. Millerfac9b832005-05-18 22:46:34 -07007288 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07007289 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07007290 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07007291 * NIC to stop sending us irqs, engaging "in-intr-handler"
7292 * event coalescing.
7293 */
Matt Carlson5b39de92011-08-31 11:44:50 +00007294 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07007295 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007296 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07007297
Michael Chan88b06bc22005-04-21 17:13:25 -07007298 return IRQ_RETVAL(1);
7299}
7300
David Howells7d12e782006-10-05 14:55:46 +01007301static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302{
Matt Carlson09943a12009-08-28 14:01:57 +00007303 struct tg3_napi *tnapi = dev_id;
7304 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007305 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306 unsigned int handled = 1;
7307
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308 /* In INTx mode, it is possible for the interrupt to arrive at
7309 * the CPU before the status block posted prior to the interrupt.
7310 * Reading the PCI State register will confirm whether the
7311 * interrupt is ours and will flush the status block.
7312 */
Michael Chand18edcb2007-03-24 20:57:11 -07007313 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00007314 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007315 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7316 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007317 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07007318 }
Michael Chand18edcb2007-03-24 20:57:11 -07007319 }
7320
7321 /*
7322 * Writing any value to intr-mbox-0 clears PCI INTA# and
7323 * chip-internal interrupt pending events.
7324 * Writing non-zero to intr-mbox-0 additional tells the
7325 * NIC to stop sending us irqs, engaging "in-intr-handler"
7326 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007327 *
7328 * Flush the mailbox to de-assert the IRQ immediately to prevent
7329 * spurious interrupts. The flush impacts performance but
7330 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007331 */
Michael Chanc04cb342007-05-07 00:26:15 -07007332 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07007333 if (tg3_irq_sync(tp))
7334 goto out;
7335 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00007336 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00007337 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00007338 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07007339 } else {
7340 /* No work, shared interrupt perhaps? re-enable
7341 * interrupts, and flush that PCI write
7342 */
7343 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
7344 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07007345 }
David S. Millerf47c11e2005-06-24 20:18:35 -07007346out:
David S. Millerfac9b832005-05-18 22:46:34 -07007347 return IRQ_RETVAL(handled);
7348}
7349
David Howells7d12e782006-10-05 14:55:46 +01007350static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07007351{
Matt Carlson09943a12009-08-28 14:01:57 +00007352 struct tg3_napi *tnapi = dev_id;
7353 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007354 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07007355 unsigned int handled = 1;
7356
David S. Millerfac9b832005-05-18 22:46:34 -07007357 /* In INTx mode, it is possible for the interrupt to arrive at
7358 * the CPU before the status block posted prior to the interrupt.
7359 * Reading the PCI State register will confirm whether the
7360 * interrupt is ours and will flush the status block.
7361 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007362 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00007363 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007364 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7365 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367 }
Michael Chand18edcb2007-03-24 20:57:11 -07007368 }
7369
7370 /*
7371 * writing any value to intr-mbox-0 clears PCI INTA# and
7372 * chip-internal interrupt pending events.
7373 * writing non-zero to intr-mbox-0 additional tells the
7374 * NIC to stop sending us irqs, engaging "in-intr-handler"
7375 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007376 *
7377 * Flush the mailbox to de-assert the IRQ immediately to prevent
7378 * spurious interrupts. The flush impacts performance but
7379 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007380 */
Michael Chanc04cb342007-05-07 00:26:15 -07007381 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00007382
7383 /*
7384 * In a shared interrupt configuration, sometimes other devices'
7385 * interrupts will scream. We record the current status tag here
7386 * so that the above check can report that the screaming interrupts
7387 * are unhandled. Eventually they will be silenced.
7388 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007389 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00007390
Michael Chand18edcb2007-03-24 20:57:11 -07007391 if (tg3_irq_sync(tp))
7392 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00007393
Matt Carlson72334482009-08-28 14:03:01 +00007394 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00007395
Matt Carlson09943a12009-08-28 14:01:57 +00007396 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00007397
David S. Millerf47c11e2005-06-24 20:18:35 -07007398out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399 return IRQ_RETVAL(handled);
7400}
7401
Michael Chan79381092005-04-21 17:13:59 -07007402/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01007403static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07007404{
Matt Carlson09943a12009-08-28 14:01:57 +00007405 struct tg3_napi *tnapi = dev_id;
7406 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007407 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07007408
Michael Chanf9804dd2005-09-27 12:13:10 -07007409 if ((sblk->status & SD_STATUS_UPDATED) ||
7410 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07007411 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07007412 return IRQ_RETVAL(1);
7413 }
7414 return IRQ_RETVAL(0);
7415}
7416
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417#ifdef CONFIG_NET_POLL_CONTROLLER
7418static void tg3_poll_controller(struct net_device *dev)
7419{
Matt Carlson4f125f42009-09-01 12:55:02 +00007420 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07007421 struct tg3 *tp = netdev_priv(dev);
7422
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +00007423 if (tg3_irq_sync(tp))
7424 return;
7425
Matt Carlson4f125f42009-09-01 12:55:02 +00007426 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00007427 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428}
7429#endif
7430
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431static void tg3_tx_timeout(struct net_device *dev)
7432{
7433 struct tg3 *tp = netdev_priv(dev);
7434
Michael Chanb0408752007-02-13 12:18:30 -08007435 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007436 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00007437 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08007438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439
Matt Carlsondb219972011-11-04 09:15:03 +00007440 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441}
7442
Michael Chanc58ec932005-09-17 00:46:27 -07007443/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
7444static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
7445{
7446 u32 base = (u32) mapping & 0xffffffff;
7447
Eric Dumazet807540b2010-09-23 05:40:09 +00007448 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07007449}
7450
Michael Chan0f0d1512013-05-13 11:04:16 +00007451/* Test for TSO DMA buffers that cross into regions which are within MSS bytes
7452 * of any 4GB boundaries: 4G, 8G, etc
7453 */
7454static inline int tg3_4g_tso_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7455 u32 len, u32 mss)
7456{
7457 if (tg3_asic_rev(tp) == ASIC_REV_5762 && mss) {
7458 u32 base = (u32) mapping & 0xffffffff;
7459
7460 return ((base + len + (mss & 0x3fff)) < base);
7461 }
7462 return 0;
7463}
7464
Michael Chan72f2afb2006-03-06 19:28:35 -08007465/* Test for DMA addresses > 40-bit */
7466static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7467 int len)
7468{
7469#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00007470 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00007471 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08007472 return 0;
7473#else
7474 return 0;
7475#endif
7476}
7477
Matt Carlsond1a3b732011-07-27 14:20:51 +00007478static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007479 dma_addr_t mapping, u32 len, u32 flags,
7480 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00007481{
Matt Carlson92cd3a12011-07-27 14:20:47 +00007482 txbd->addr_hi = ((u64) mapping >> 32);
7483 txbd->addr_lo = ((u64) mapping & 0xffffffff);
7484 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
7485 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00007486}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487
Matt Carlson84b67b22011-07-27 14:20:52 +00007488static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007489 dma_addr_t map, u32 len, u32 flags,
7490 u32 mss, u32 vlan)
7491{
7492 struct tg3 *tp = tnapi->tp;
7493 bool hwbug = false;
7494
7495 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00007496 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007497
7498 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007499 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007500
Michael Chan0f0d1512013-05-13 11:04:16 +00007501 if (tg3_4g_tso_overflow_test(tp, map, len, mss))
7502 hwbug = true;
7503
Matt Carlsond1a3b732011-07-27 14:20:51 +00007504 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007505 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007506
Matt Carlsona4cb4282011-12-14 11:09:58 +00007507 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007508 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00007509 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00007510 while (len > tp->dma_limit && *budget) {
7511 u32 frag_len = tp->dma_limit;
7512 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00007513
Matt Carlsonb9e45482011-11-04 09:14:59 +00007514 /* Avoid the 8byte DMA problem */
7515 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00007516 len += tp->dma_limit / 2;
7517 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00007518 }
7519
Matt Carlsonb9e45482011-11-04 09:14:59 +00007520 tnapi->tx_buffers[*entry].fragmented = true;
7521
7522 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7523 frag_len, tmp_flag, mss, vlan);
7524 *budget -= 1;
7525 prvidx = *entry;
7526 *entry = NEXT_TX(*entry);
7527
Matt Carlsone31aa982011-07-27 14:20:53 +00007528 map += frag_len;
7529 }
7530
7531 if (len) {
7532 if (*budget) {
7533 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7534 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00007535 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00007536 *entry = NEXT_TX(*entry);
7537 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00007538 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007539 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00007540 }
7541 }
7542 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00007543 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7544 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00007545 *entry = NEXT_TX(*entry);
7546 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00007547
7548 return hwbug;
7549}
7550
Matt Carlson0d681b22011-07-27 14:20:49 +00007551static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00007552{
7553 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00007554 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00007555 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007556
Matt Carlson0d681b22011-07-27 14:20:49 +00007557 skb = txb->skb;
7558 txb->skb = NULL;
7559
Matt Carlson432aa7e2011-05-19 12:12:45 +00007560 pci_unmap_single(tnapi->tp->pdev,
7561 dma_unmap_addr(txb, mapping),
7562 skb_headlen(skb),
7563 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007564
7565 while (txb->fragmented) {
7566 txb->fragmented = false;
7567 entry = NEXT_TX(entry);
7568 txb = &tnapi->tx_buffers[entry];
7569 }
7570
Matt Carlsonba1142e2011-11-04 09:15:00 +00007571 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00007572 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007573
7574 entry = NEXT_TX(entry);
7575 txb = &tnapi->tx_buffers[entry];
7576
7577 pci_unmap_page(tnapi->tp->pdev,
7578 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00007579 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007580
7581 while (txb->fragmented) {
7582 txb->fragmented = false;
7583 entry = NEXT_TX(entry);
7584 txb = &tnapi->tx_buffers[entry];
7585 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00007586 }
7587}
7588
Michael Chan72f2afb2006-03-06 19:28:35 -08007589/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007590static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04007591 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00007592 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007593 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594{
Matt Carlson24f4efd2009-11-13 13:03:35 +00007595 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04007596 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07007597 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007598 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599
Joe Perches41535772013-02-16 11:20:04 +00007600 if (tg3_asic_rev(tp) != ASIC_REV_5701)
Matt Carlson41588ba2008-04-19 18:12:33 -07007601 new_skb = skb_copy(skb, GFP_ATOMIC);
7602 else {
7603 int more_headroom = 4 - ((unsigned long)skb->data & 3);
7604
7605 new_skb = skb_copy_expand(skb,
7606 skb_headroom(skb) + more_headroom,
7607 skb_tailroom(skb), GFP_ATOMIC);
7608 }
7609
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07007611 ret = -1;
7612 } else {
7613 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00007614 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
7615 PCI_DMA_TODEVICE);
7616 /* Make sure the mapping succeeded */
7617 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00007618 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07007619 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07007620 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007621 u32 save_entry = *entry;
7622
Matt Carlson92cd3a12011-07-27 14:20:47 +00007623 base_flags |= TXD_FLAG_END;
7624
Matt Carlson84b67b22011-07-27 14:20:52 +00007625 tnapi->tx_buffers[*entry].skb = new_skb;
7626 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00007627 mapping, new_addr);
7628
Matt Carlson84b67b22011-07-27 14:20:52 +00007629 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007630 new_skb->len, base_flags,
7631 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00007632 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00007633 dev_kfree_skb(new_skb);
7634 ret = -1;
7635 }
Michael Chanc58ec932005-09-17 00:46:27 -07007636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637 }
7638
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04007640 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07007641 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642}
7643
Matt Carlson2ffcc982011-05-19 12:12:44 +00007644static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07007645
7646/* Use GSO to workaround a rare TSO bug that may be triggered when the
7647 * TSO header is greater than 80 bytes.
7648 */
7649static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
7650{
7651 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007652 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07007653
7654 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007655 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07007656 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007657
7658 /* netif_tx_stop_queue() must be done before checking
7659 * checking tx index in tg3_tx_avail() below, because in
7660 * tg3_tx(), we update tx index before checking for
7661 * netif_tx_queue_stopped().
7662 */
7663 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007664 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08007665 return NETDEV_TX_BUSY;
7666
7667 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007668 }
7669
7670 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07007671 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07007672 goto tg3_tso_bug_end;
7673
7674 do {
7675 nskb = segs;
7676 segs = segs->next;
7677 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00007678 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007679 } while (segs);
7680
7681tg3_tso_bug_end:
7682 dev_kfree_skb(skb);
7683
7684 return NETDEV_TX_OK;
7685}
Michael Chan52c0fd82006-06-29 20:15:54 -07007686
Michael Chan5a6f3072006-03-20 22:28:05 -08007687/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00007688 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08007689 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00007690static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08007691{
7692 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00007693 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00007694 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007695 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07007696 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007697 struct tg3_napi *tnapi;
7698 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007699 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007700
Matt Carlson24f4efd2009-11-13 13:03:35 +00007701 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
7702 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00007703 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007704 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705
Matt Carlson84b67b22011-07-27 14:20:52 +00007706 budget = tg3_tx_avail(tnapi);
7707
Michael Chan00b70502006-06-17 21:58:45 -07007708 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007709 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07007710 * interrupt. Furthermore, IRQ processing runs lockless so we have
7711 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007713 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007714 if (!netif_tx_queue_stopped(txq)) {
7715 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007716
7717 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00007718 netdev_err(dev,
7719 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721 return NETDEV_TX_BUSY;
7722 }
7723
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007724 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07007726 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007728
Matt Carlsonbe98da62010-07-11 09:31:46 +00007729 mss = skb_shinfo(skb)->gso_size;
7730 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007731 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00007732 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733
7734 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00007735 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7736 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737
Matt Carlson34195c32010-07-11 09:31:42 +00007738 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07007739 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740
Eric Dumazeta5a11952012-01-23 01:22:09 +00007741 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00007742
Eric Dumazeta5a11952012-01-23 01:22:09 +00007743 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00007744 iph->check = 0;
7745 iph->tot_len = htons(mss + hdr_len);
7746 }
7747
Michael Chan52c0fd82006-06-29 20:15:54 -07007748 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007749 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00007750 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007751
Linus Torvalds1da177e2005-04-16 15:20:36 -07007752 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7753 TXD_FLAG_CPU_POST_DMA);
7754
Joe Perches63c3a662011-04-26 08:12:10 +00007755 if (tg3_flag(tp, HW_TSO_1) ||
7756 tg3_flag(tp, HW_TSO_2) ||
7757 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007758 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007760 } else
7761 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7762 iph->daddr, 0,
7763 IPPROTO_TCP,
7764 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765
Joe Perches63c3a662011-04-26 08:12:10 +00007766 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007767 mss |= (hdr_len & 0xc) << 12;
7768 if (hdr_len & 0x10)
7769 base_flags |= 0x00000010;
7770 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007771 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007772 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007773 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +00007774 tg3_asic_rev(tp) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007775 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776 int tsflags;
7777
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007778 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779 mss |= (tsflags << 11);
7780 }
7781 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007782 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783 int tsflags;
7784
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007785 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786 base_flags |= tsflags << 12;
7787 }
7788 }
7789 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00007790
Matt Carlson93a700a2011-08-31 11:44:54 +00007791 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
7792 !mss && skb->len > VLAN_ETH_FRAME_LEN)
7793 base_flags |= TXD_FLAG_JMB_PKT;
7794
Matt Carlson92cd3a12011-07-27 14:20:47 +00007795 if (vlan_tx_tag_present(skb)) {
7796 base_flags |= TXD_FLAG_VLAN;
7797 vlan = vlan_tx_tag_get(skb);
7798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007799
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00007800 if ((unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) &&
7801 tg3_flag(tp, TX_TSTAMP_EN)) {
7802 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7803 base_flags |= TXD_FLAG_HWTSTAMP;
7804 }
7805
Alexander Duyckf4188d82009-12-02 16:48:38 +00007806 len = skb_headlen(skb);
7807
7808 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00007809 if (pci_dma_mapping_error(tp->pdev, mapping))
7810 goto drop;
7811
David S. Miller90079ce2008-09-11 04:52:51 -07007812
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007813 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007814 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007815
7816 would_hit_hwbug = 0;
7817
Joe Perches63c3a662011-04-26 08:12:10 +00007818 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07007819 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820
Matt Carlson84b67b22011-07-27 14:20:52 +00007821 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00007822 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00007823 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00007824 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00007825 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00007826 u32 tmp_mss = mss;
7827
7828 if (!tg3_flag(tp, HW_TSO_1) &&
7829 !tg3_flag(tp, HW_TSO_2) &&
7830 !tg3_flag(tp, HW_TSO_3))
7831 tmp_mss = 0;
7832
Matt Carlsonc5665a52012-02-13 10:20:12 +00007833 /* Now loop through additional data
7834 * fragments, and queue them.
7835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007836 last = skb_shinfo(skb)->nr_frags - 1;
7837 for (i = 0; i <= last; i++) {
7838 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
7839
Eric Dumazet9e903e02011-10-18 21:00:24 +00007840 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00007841 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007842 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007844 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007845 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00007846 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007847 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00007848 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849
Matt Carlsonb9e45482011-11-04 09:14:59 +00007850 if (!budget ||
7851 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00007852 len, base_flags |
7853 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00007854 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007855 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007856 break;
7857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858 }
7859 }
7860
7861 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00007862 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863
7864 /* If the workaround fails due to memory/mapping
7865 * failure, silently drop this packet.
7866 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007867 entry = tnapi->tx_prod;
7868 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04007869 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00007870 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00007871 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872 }
7873
Richard Cochrand515b452011-06-19 03:31:41 +00007874 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007875 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007876
Michael Chan6541b802012-03-04 14:48:14 +00007877 /* Sync BD data before updating mailbox */
7878 wmb();
7879
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007881 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007883 tnapi->tx_prod = entry;
7884 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007885 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007886
7887 /* netif_tx_stop_queue() must be done before checking
7888 * checking tx index in tg3_tx_avail() below, because in
7889 * tg3_tx(), we update tx index before checking for
7890 * netif_tx_queue_stopped().
7891 */
7892 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007893 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007894 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007897 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007899
7900dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007901 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007902 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007903drop:
7904 dev_kfree_skb(skb);
7905drop_nofree:
7906 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007907 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908}
7909
Matt Carlson6e01b202011-08-19 13:58:20 +00007910static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7911{
7912 if (enable) {
7913 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7914 MAC_MODE_PORT_MODE_MASK);
7915
7916 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7917
7918 if (!tg3_flag(tp, 5705_PLUS))
7919 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7920
7921 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7922 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7923 else
7924 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7925 } else {
7926 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7927
7928 if (tg3_flag(tp, 5705_PLUS) ||
7929 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
Joe Perches41535772013-02-16 11:20:04 +00007930 tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlson6e01b202011-08-19 13:58:20 +00007931 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7932 }
7933
7934 tw32(MAC_MODE, tp->mac_mode);
7935 udelay(40);
7936}
7937
Matt Carlson941ec902011-08-19 13:58:23 +00007938static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007939{
Matt Carlson941ec902011-08-19 13:58:23 +00007940 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007941
7942 tg3_phy_toggle_apd(tp, false);
Joe Perches953c96e2013-04-09 10:18:14 +00007943 tg3_phy_toggle_automdix(tp, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007944
Matt Carlson941ec902011-08-19 13:58:23 +00007945 if (extlpbk && tg3_phy_set_extloopbk(tp))
7946 return -EIO;
7947
7948 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007949 switch (speed) {
7950 case SPEED_10:
7951 break;
7952 case SPEED_100:
7953 bmcr |= BMCR_SPEED100;
7954 break;
7955 case SPEED_1000:
7956 default:
7957 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7958 speed = SPEED_100;
7959 bmcr |= BMCR_SPEED100;
7960 } else {
7961 speed = SPEED_1000;
7962 bmcr |= BMCR_SPEED1000;
7963 }
7964 }
7965
Matt Carlson941ec902011-08-19 13:58:23 +00007966 if (extlpbk) {
7967 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7968 tg3_readphy(tp, MII_CTRL1000, &val);
7969 val |= CTL1000_AS_MASTER |
7970 CTL1000_ENABLE_MASTER;
7971 tg3_writephy(tp, MII_CTRL1000, val);
7972 } else {
7973 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7974 MII_TG3_FET_PTEST_TRIM_2;
7975 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7976 }
7977 } else
7978 bmcr |= BMCR_LOOPBACK;
7979
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007980 tg3_writephy(tp, MII_BMCR, bmcr);
7981
7982 /* The write needs to be flushed for the FETs */
7983 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7984 tg3_readphy(tp, MII_BMCR, &bmcr);
7985
7986 udelay(40);
7987
7988 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +00007989 tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007990 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007991 MII_TG3_FET_PTEST_FRC_TX_LINK |
7992 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7993
7994 /* The write needs to be flushed for the AC131 */
7995 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7996 }
7997
7998 /* Reset to prevent losing 1st rx packet intermittently */
7999 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
8000 tg3_flag(tp, 5780_CLASS)) {
8001 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8002 udelay(10);
8003 tw32_f(MAC_RX_MODE, tp->rx_mode);
8004 }
8005
8006 mac_mode = tp->mac_mode &
8007 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
8008 if (speed == SPEED_1000)
8009 mac_mode |= MAC_MODE_PORT_MODE_GMII;
8010 else
8011 mac_mode |= MAC_MODE_PORT_MODE_MII;
8012
Joe Perches41535772013-02-16 11:20:04 +00008013 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008014 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
8015
8016 if (masked_phy_id == TG3_PHY_ID_BCM5401)
8017 mac_mode &= ~MAC_MODE_LINK_POLARITY;
8018 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
8019 mac_mode |= MAC_MODE_LINK_POLARITY;
8020
8021 tg3_writephy(tp, MII_TG3_EXT_CTRL,
8022 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
8023 }
8024
8025 tw32(MAC_MODE, mac_mode);
8026 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00008027
8028 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008029}
8030
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008031static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008032{
8033 struct tg3 *tp = netdev_priv(dev);
8034
8035 if (features & NETIF_F_LOOPBACK) {
8036 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
8037 return;
8038
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008039 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008040 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008041 netif_carrier_on(tp->dev);
8042 spin_unlock_bh(&tp->lock);
8043 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
8044 } else {
8045 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
8046 return;
8047
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008048 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008049 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008050 /* Force link status check */
Joe Perches953c96e2013-04-09 10:18:14 +00008051 tg3_setup_phy(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008052 spin_unlock_bh(&tp->lock);
8053 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
8054 }
8055}
8056
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008057static netdev_features_t tg3_fix_features(struct net_device *dev,
8058 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00008059{
8060 struct tg3 *tp = netdev_priv(dev);
8061
Joe Perches63c3a662011-04-26 08:12:10 +00008062 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00008063 features &= ~NETIF_F_ALL_TSO;
8064
8065 return features;
8066}
8067
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008068static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008069{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008070 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008071
8072 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
8073 tg3_set_loopback(dev, features);
8074
8075 return 0;
8076}
8077
Matt Carlson21f581a2009-08-28 14:00:25 +00008078static void tg3_rx_prodring_free(struct tg3 *tp,
8079 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008080{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008081 int i;
8082
Matt Carlson8fea32b2010-09-15 08:59:58 +00008083 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008084 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008085 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008086 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008087 tp->rx_pkt_map_sz);
8088
Joe Perches63c3a662011-04-26 08:12:10 +00008089 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008090 for (i = tpr->rx_jmb_cons_idx;
8091 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008092 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00008093 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008094 TG3_RX_JMB_MAP_SZ);
8095 }
8096 }
8097
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008098 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100
Matt Carlson2c49a442010-09-30 10:34:35 +00008101 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008102 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008103 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104
Joe Perches63c3a662011-04-26 08:12:10 +00008105 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008106 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008107 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008108 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109 }
8110}
8111
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008112/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008113 *
8114 * The chip has been shut down and the driver detached from
8115 * the networking, so no interrupts or new tx packets will
8116 * end up in the driver. tp->{tx,}lock are held and thus
8117 * we may not sleep.
8118 */
Matt Carlson21f581a2009-08-28 14:00:25 +00008119static int tg3_rx_prodring_alloc(struct tg3 *tp,
8120 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121{
Matt Carlson287be122009-08-28 13:58:46 +00008122 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008124 tpr->rx_std_cons_idx = 0;
8125 tpr->rx_std_prod_idx = 0;
8126 tpr->rx_jmb_cons_idx = 0;
8127 tpr->rx_jmb_prod_idx = 0;
8128
Matt Carlson8fea32b2010-09-15 08:59:58 +00008129 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008130 memset(&tpr->rx_std_buffers[0], 0,
8131 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00008132 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008133 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00008134 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008135 goto done;
8136 }
8137
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00008139 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140
Matt Carlson287be122009-08-28 13:58:46 +00008141 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008142 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00008143 tp->dev->mtu > ETH_DATA_LEN)
8144 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
8145 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07008146
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147 /* Initialize invariants of the rings, we only set this
8148 * stuff once. This works because the card does not
8149 * write into the rx buffer posting rings.
8150 */
Matt Carlson2c49a442010-09-30 10:34:35 +00008151 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008152 struct tg3_rx_buffer_desc *rxd;
8153
Matt Carlson21f581a2009-08-28 14:00:25 +00008154 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00008155 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008156 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
8157 rxd->opaque = (RXD_OPAQUE_RING_STD |
8158 (i << RXD_OPAQUE_INDEX_SHIFT));
8159 }
8160
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008161 /* Now allocate fresh SKBs for each rx ring. */
8162 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008163 unsigned int frag_size;
8164
8165 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
8166 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008167 netdev_warn(tp->dev,
8168 "Using a smaller RX standard ring. Only "
8169 "%d out of %d buffers were allocated "
8170 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008171 if (i == 0)
8172 goto initfail;
8173 tp->rx_pending = i;
8174 break;
8175 }
8176 }
8177
Joe Perches63c3a662011-04-26 08:12:10 +00008178 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008179 goto done;
8180
Matt Carlson2c49a442010-09-30 10:34:35 +00008181 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008182
Joe Perches63c3a662011-04-26 08:12:10 +00008183 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00008184 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185
Matt Carlson2c49a442010-09-30 10:34:35 +00008186 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00008187 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008188
Matt Carlson0d86df82010-02-17 15:17:00 +00008189 rxd = &tpr->rx_jmb[i].std;
8190 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
8191 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
8192 RXD_FLAG_JUMBO;
8193 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
8194 (i << RXD_OPAQUE_INDEX_SHIFT));
8195 }
8196
8197 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008198 unsigned int frag_size;
8199
8200 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
8201 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008202 netdev_warn(tp->dev,
8203 "Using a smaller RX jumbo ring. Only %d "
8204 "out of %d buffers were allocated "
8205 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00008206 if (i == 0)
8207 goto initfail;
8208 tp->rx_jumbo_pending = i;
8209 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210 }
8211 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008212
8213done:
Michael Chan32d8c572006-07-25 16:38:29 -07008214 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008215
8216initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00008217 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008218 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219}
8220
Matt Carlson21f581a2009-08-28 14:00:25 +00008221static void tg3_rx_prodring_fini(struct tg3 *tp,
8222 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223{
Matt Carlson21f581a2009-08-28 14:00:25 +00008224 kfree(tpr->rx_std_buffers);
8225 tpr->rx_std_buffers = NULL;
8226 kfree(tpr->rx_jmb_buffers);
8227 tpr->rx_jmb_buffers = NULL;
8228 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008229 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
8230 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008231 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008232 }
Matt Carlson21f581a2009-08-28 14:00:25 +00008233 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008234 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
8235 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008236 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008237 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008238}
8239
Matt Carlson21f581a2009-08-28 14:00:25 +00008240static int tg3_rx_prodring_init(struct tg3 *tp,
8241 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008242{
Matt Carlson2c49a442010-09-30 10:34:35 +00008243 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
8244 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008245 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008246 return -ENOMEM;
8247
Matt Carlson4bae65c2010-11-24 08:31:52 +00008248 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
8249 TG3_RX_STD_RING_BYTES(tp),
8250 &tpr->rx_std_mapping,
8251 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008252 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008253 goto err_out;
8254
Joe Perches63c3a662011-04-26 08:12:10 +00008255 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008256 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00008257 GFP_KERNEL);
8258 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008259 goto err_out;
8260
Matt Carlson4bae65c2010-11-24 08:31:52 +00008261 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
8262 TG3_RX_JMB_RING_BYTES(tp),
8263 &tpr->rx_jmb_mapping,
8264 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008265 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008266 goto err_out;
8267 }
8268
8269 return 0;
8270
8271err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00008272 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008273 return -ENOMEM;
8274}
8275
8276/* Free up pending packets in all rx/tx rings.
8277 *
8278 * The chip has been shut down and the driver detached from
8279 * the networking, so no interrupts or new tx packets will
8280 * end up in the driver. tp->{tx,}lock is not held and we are not
8281 * in an interrupt context and thus may sleep.
8282 */
8283static void tg3_free_rings(struct tg3 *tp)
8284{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008285 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008286
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008287 for (j = 0; j < tp->irq_cnt; j++) {
8288 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008289
Matt Carlson8fea32b2010-09-15 08:59:58 +00008290 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00008291
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008292 if (!tnapi->tx_buffers)
8293 continue;
8294
Matt Carlson0d681b22011-07-27 14:20:49 +00008295 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
8296 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008297
Matt Carlson0d681b22011-07-27 14:20:49 +00008298 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008299 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008300
Matt Carlsonba1142e2011-11-04 09:15:00 +00008301 tg3_tx_skb_unmap(tnapi, i,
8302 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008303
8304 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008305 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00008306 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008307 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008308}
8309
8310/* Initialize tx/rx rings for packet processing.
8311 *
8312 * The chip has been shut down and the driver detached from
8313 * the networking, so no interrupts or new tx packets will
8314 * end up in the driver. tp->{tx,}lock are held and thus
8315 * we may not sleep.
8316 */
8317static int tg3_init_rings(struct tg3 *tp)
8318{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008319 int i;
Matt Carlson72334482009-08-28 14:03:01 +00008320
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008321 /* Free up all the SKBs. */
8322 tg3_free_rings(tp);
8323
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008324 for (i = 0; i < tp->irq_cnt; i++) {
8325 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008326
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008327 tnapi->last_tag = 0;
8328 tnapi->last_irq_tag = 0;
8329 tnapi->hw_status->status = 0;
8330 tnapi->hw_status->status_tag = 0;
8331 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8332
8333 tnapi->tx_prod = 0;
8334 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008335 if (tnapi->tx_ring)
8336 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008337
8338 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008339 if (tnapi->rx_rcb)
8340 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008341
Matt Carlson8fea32b2010-09-15 08:59:58 +00008342 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00008343 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008344 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00008345 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008346 }
Matt Carlson72334482009-08-28 14:03:01 +00008347
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008348 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008349}
8350
Michael Chan49a359e2012-09-28 07:12:37 +00008351static void tg3_mem_tx_release(struct tg3 *tp)
8352{
8353 int i;
8354
8355 for (i = 0; i < tp->irq_max; i++) {
8356 struct tg3_napi *tnapi = &tp->napi[i];
8357
8358 if (tnapi->tx_ring) {
8359 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
8360 tnapi->tx_ring, tnapi->tx_desc_mapping);
8361 tnapi->tx_ring = NULL;
8362 }
8363
8364 kfree(tnapi->tx_buffers);
8365 tnapi->tx_buffers = NULL;
8366 }
8367}
8368
8369static int tg3_mem_tx_acquire(struct tg3 *tp)
8370{
8371 int i;
8372 struct tg3_napi *tnapi = &tp->napi[0];
8373
8374 /* If multivector TSS is enabled, vector 0 does not handle
8375 * tx interrupts. Don't allocate any resources for it.
8376 */
8377 if (tg3_flag(tp, ENABLE_TSS))
8378 tnapi++;
8379
8380 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
8381 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
8382 TG3_TX_RING_SIZE, GFP_KERNEL);
8383 if (!tnapi->tx_buffers)
8384 goto err_out;
8385
8386 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
8387 TG3_TX_RING_BYTES,
8388 &tnapi->tx_desc_mapping,
8389 GFP_KERNEL);
8390 if (!tnapi->tx_ring)
8391 goto err_out;
8392 }
8393
8394 return 0;
8395
8396err_out:
8397 tg3_mem_tx_release(tp);
8398 return -ENOMEM;
8399}
8400
8401static void tg3_mem_rx_release(struct tg3 *tp)
8402{
8403 int i;
8404
8405 for (i = 0; i < tp->irq_max; i++) {
8406 struct tg3_napi *tnapi = &tp->napi[i];
8407
8408 tg3_rx_prodring_fini(tp, &tnapi->prodring);
8409
8410 if (!tnapi->rx_rcb)
8411 continue;
8412
8413 dma_free_coherent(&tp->pdev->dev,
8414 TG3_RX_RCB_RING_BYTES(tp),
8415 tnapi->rx_rcb,
8416 tnapi->rx_rcb_mapping);
8417 tnapi->rx_rcb = NULL;
8418 }
8419}
8420
8421static int tg3_mem_rx_acquire(struct tg3 *tp)
8422{
8423 unsigned int i, limit;
8424
8425 limit = tp->rxq_cnt;
8426
8427 /* If RSS is enabled, we need a (dummy) producer ring
8428 * set on vector zero. This is the true hw prodring.
8429 */
8430 if (tg3_flag(tp, ENABLE_RSS))
8431 limit++;
8432
8433 for (i = 0; i < limit; i++) {
8434 struct tg3_napi *tnapi = &tp->napi[i];
8435
8436 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
8437 goto err_out;
8438
8439 /* If multivector RSS is enabled, vector 0
8440 * does not handle rx or tx interrupts.
8441 * Don't allocate any resources for it.
8442 */
8443 if (!i && tg3_flag(tp, ENABLE_RSS))
8444 continue;
8445
8446 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
8447 TG3_RX_RCB_RING_BYTES(tp),
8448 &tnapi->rx_rcb_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008449 GFP_KERNEL | __GFP_ZERO);
Michael Chan49a359e2012-09-28 07:12:37 +00008450 if (!tnapi->rx_rcb)
8451 goto err_out;
Michael Chan49a359e2012-09-28 07:12:37 +00008452 }
8453
8454 return 0;
8455
8456err_out:
8457 tg3_mem_rx_release(tp);
8458 return -ENOMEM;
8459}
8460
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008461/*
8462 * Must not be invoked with interrupt sources disabled and
8463 * the hardware shutdown down.
8464 */
8465static void tg3_free_consistent(struct tg3 *tp)
8466{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008467 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008468
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008469 for (i = 0; i < tp->irq_cnt; i++) {
8470 struct tg3_napi *tnapi = &tp->napi[i];
8471
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008472 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008473 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
8474 tnapi->hw_status,
8475 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008476 tnapi->hw_status = NULL;
8477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008478 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008479
Michael Chan49a359e2012-09-28 07:12:37 +00008480 tg3_mem_rx_release(tp);
8481 tg3_mem_tx_release(tp);
8482
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008484 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
8485 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008486 tp->hw_stats = NULL;
8487 }
8488}
8489
8490/*
8491 * Must not be invoked with interrupt sources disabled and
8492 * the hardware shutdown down. Can sleep.
8493 */
8494static int tg3_alloc_consistent(struct tg3 *tp)
8495{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008496 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008497
Matt Carlson4bae65c2010-11-24 08:31:52 +00008498 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
8499 sizeof(struct tg3_hw_stats),
8500 &tp->stats_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008501 GFP_KERNEL | __GFP_ZERO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502 if (!tp->hw_stats)
8503 goto err_out;
8504
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008505 for (i = 0; i < tp->irq_cnt; i++) {
8506 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008507 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008508
Matt Carlson4bae65c2010-11-24 08:31:52 +00008509 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
8510 TG3_HW_STATUS_SIZE,
8511 &tnapi->status_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008512 GFP_KERNEL | __GFP_ZERO);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008513 if (!tnapi->hw_status)
8514 goto err_out;
8515
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008516 sblk = tnapi->hw_status;
8517
Michael Chan49a359e2012-09-28 07:12:37 +00008518 if (tg3_flag(tp, ENABLE_RSS)) {
Michael Chan86449942012-10-02 20:31:14 -07008519 u16 *prodptr = NULL;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008520
Michael Chan49a359e2012-09-28 07:12:37 +00008521 /*
8522 * When RSS is enabled, the status block format changes
8523 * slightly. The "rx_jumbo_consumer", "reserved",
8524 * and "rx_mini_consumer" members get mapped to the
8525 * other three rx return ring producer indexes.
8526 */
8527 switch (i) {
8528 case 1:
8529 prodptr = &sblk->idx[0].rx_producer;
8530 break;
8531 case 2:
8532 prodptr = &sblk->rx_jumbo_consumer;
8533 break;
8534 case 3:
8535 prodptr = &sblk->reserved;
8536 break;
8537 case 4:
8538 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00008539 break;
8540 }
Michael Chan49a359e2012-09-28 07:12:37 +00008541 tnapi->rx_rcb_prod_idx = prodptr;
8542 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008543 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008544 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008545 }
8546
Michael Chan49a359e2012-09-28 07:12:37 +00008547 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
8548 goto err_out;
8549
Linus Torvalds1da177e2005-04-16 15:20:36 -07008550 return 0;
8551
8552err_out:
8553 tg3_free_consistent(tp);
8554 return -ENOMEM;
8555}
8556
8557#define MAX_WAIT_CNT 1000
8558
8559/* To stop a block, clear the enable bit and poll till it
8560 * clears. tp->lock is held.
8561 */
Joe Perches953c96e2013-04-09 10:18:14 +00008562static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563{
8564 unsigned int i;
8565 u32 val;
8566
Joe Perches63c3a662011-04-26 08:12:10 +00008567 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568 switch (ofs) {
8569 case RCVLSC_MODE:
8570 case DMAC_MODE:
8571 case MBFREE_MODE:
8572 case BUFMGR_MODE:
8573 case MEMARB_MODE:
8574 /* We can't enable/disable these bits of the
8575 * 5705/5750, just say success.
8576 */
8577 return 0;
8578
8579 default:
8580 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582 }
8583
8584 val = tr32(ofs);
8585 val &= ~enable_bit;
8586 tw32_f(ofs, val);
8587
8588 for (i = 0; i < MAX_WAIT_CNT; i++) {
8589 udelay(100);
8590 val = tr32(ofs);
8591 if ((val & enable_bit) == 0)
8592 break;
8593 }
8594
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008595 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00008596 dev_err(&tp->pdev->dev,
8597 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
8598 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599 return -ENODEV;
8600 }
8601
8602 return 0;
8603}
8604
8605/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008606static int tg3_abort_hw(struct tg3 *tp, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607{
8608 int i, err;
8609
8610 tg3_disable_ints(tp);
8611
8612 tp->rx_mode &= ~RX_MODE_ENABLE;
8613 tw32_f(MAC_RX_MODE, tp->rx_mode);
8614 udelay(10);
8615
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008616 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
8617 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
8618 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
8619 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
8620 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
8621 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008623 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
8624 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
8625 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
8626 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
8627 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
8628 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
8629 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008630
8631 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8632 tw32_f(MAC_MODE, tp->mac_mode);
8633 udelay(40);
8634
8635 tp->tx_mode &= ~TX_MODE_ENABLE;
8636 tw32_f(MAC_TX_MODE, tp->tx_mode);
8637
8638 for (i = 0; i < MAX_WAIT_CNT; i++) {
8639 udelay(100);
8640 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
8641 break;
8642 }
8643 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00008644 dev_err(&tp->pdev->dev,
8645 "%s timed out, TX_MODE_ENABLE will not clear "
8646 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07008647 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648 }
8649
Michael Chane6de8ad2005-05-05 14:42:41 -07008650 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008651 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
8652 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653
8654 tw32(FTQ_RESET, 0xffffffff);
8655 tw32(FTQ_RESET, 0x00000000);
8656
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008657 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
8658 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008660 for (i = 0; i < tp->irq_cnt; i++) {
8661 struct tg3_napi *tnapi = &tp->napi[i];
8662 if (tnapi->hw_status)
8663 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008665
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666 return err;
8667}
8668
Michael Chanee6a99b2007-07-18 21:49:10 -07008669/* Save PCI command register before chip reset */
8670static void tg3_save_pci_state(struct tg3 *tp)
8671{
Matt Carlson8a6eac92007-10-21 16:17:55 -07008672 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008673}
8674
8675/* Restore PCI state after chip reset */
8676static void tg3_restore_pci_state(struct tg3 *tp)
8677{
8678 u32 val;
8679
8680 /* Re-enable indirect register accesses. */
8681 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8682 tp->misc_host_ctrl);
8683
8684 /* Set MAX PCI retry to zero. */
8685 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
Joe Perches41535772013-02-16 11:20:04 +00008686 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008687 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07008688 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008689 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00008690 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07008691 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008692 PCISTATE_ALLOW_APE_SHMEM_WR |
8693 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07008694 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
8695
Matt Carlson8a6eac92007-10-21 16:17:55 -07008696 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008697
Matt Carlson2c55a3d2011-11-28 09:41:04 +00008698 if (!tg3_flag(tp, PCI_EXPRESS)) {
8699 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
8700 tp->pci_cacheline_sz);
8701 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
8702 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07008703 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08008704
Michael Chanee6a99b2007-07-18 21:49:10 -07008705 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00008706 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008707 u16 pcix_cmd;
8708
8709 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8710 &pcix_cmd);
8711 pcix_cmd &= ~PCI_X_CMD_ERO;
8712 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8713 pcix_cmd);
8714 }
Michael Chanee6a99b2007-07-18 21:49:10 -07008715
Joe Perches63c3a662011-04-26 08:12:10 +00008716 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008717
8718 /* Chip reset on 5780 will reset MSI enable bit,
8719 * so need to restore it.
8720 */
Joe Perches63c3a662011-04-26 08:12:10 +00008721 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008722 u16 ctrl;
8723
8724 pci_read_config_word(tp->pdev,
8725 tp->msi_cap + PCI_MSI_FLAGS,
8726 &ctrl);
8727 pci_write_config_word(tp->pdev,
8728 tp->msi_cap + PCI_MSI_FLAGS,
8729 ctrl | PCI_MSI_FLAGS_ENABLE);
8730 val = tr32(MSGINT_MODE);
8731 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
8732 }
8733 }
8734}
8735
Linus Torvalds1da177e2005-04-16 15:20:36 -07008736/* tp->lock is held. */
8737static int tg3_chip_reset(struct tg3 *tp)
8738{
8739 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07008740 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00008741 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008742
David S. Millerf49639e2006-06-09 11:58:36 -07008743 tg3_nvram_lock(tp);
8744
Matt Carlson77b483f2008-08-15 14:07:24 -07008745 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
8746
David S. Millerf49639e2006-06-09 11:58:36 -07008747 /* No matching tg3_nvram_unlock() after this because
8748 * chip reset below will undo the nvram lock.
8749 */
8750 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751
Michael Chanee6a99b2007-07-18 21:49:10 -07008752 /* GRC_MISC_CFG core clock reset will clear the memory
8753 * enable bit in PCI register 4 and the MSI enable bit
8754 * on some chips, so we save relevant registers here.
8755 */
8756 tg3_save_pci_state(tp);
8757
Joe Perches41535772013-02-16 11:20:04 +00008758 if (tg3_asic_rev(tp) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008759 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08008760 tw32(GRC_FASTBOOT_PC, 0);
8761
Linus Torvalds1da177e2005-04-16 15:20:36 -07008762 /*
8763 * We must avoid the readl() that normally takes place.
8764 * It locks machines, causes machine checks, and other
8765 * fun things. So, temporarily disable the 5701
8766 * hardware workaround, while we do the reset.
8767 */
Michael Chan1ee582d2005-08-09 20:16:46 -07008768 write_op = tp->write32;
8769 if (write_op == tg3_write_flush_reg32)
8770 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008771
Michael Chand18edcb2007-03-24 20:57:11 -07008772 /* Prevent the irq handler from reading or writing PCI registers
8773 * during chip reset when the memory enable bit in the PCI command
8774 * register may be cleared. The chip does not generate interrupt
8775 * at this time, but the irq handler may still be called due to irq
8776 * sharing or irqpoll.
8777 */
Joe Perches63c3a662011-04-26 08:12:10 +00008778 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008779 for (i = 0; i < tp->irq_cnt; i++) {
8780 struct tg3_napi *tnapi = &tp->napi[i];
8781 if (tnapi->hw_status) {
8782 tnapi->hw_status->status = 0;
8783 tnapi->hw_status->status_tag = 0;
8784 }
8785 tnapi->last_tag = 0;
8786 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07008787 }
Michael Chand18edcb2007-03-24 20:57:11 -07008788 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00008789
8790 for (i = 0; i < tp->irq_cnt; i++)
8791 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07008792
Joe Perches41535772013-02-16 11:20:04 +00008793 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson255ca312009-08-25 10:07:27 +00008794 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8795 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
8796 }
8797
Linus Torvalds1da177e2005-04-16 15:20:36 -07008798 /* do the reset */
8799 val = GRC_MISC_CFG_CORECLK_RESET;
8800
Joe Perches63c3a662011-04-26 08:12:10 +00008801 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00008802 /* Force PCIe 1.0a mode */
Joe Perches41535772013-02-16 11:20:04 +00008803 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008804 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00008805 tr32(TG3_PCIE_PHY_TSTCTL) ==
8806 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
8807 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
8808
Joe Perches41535772013-02-16 11:20:04 +00008809 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810 tw32(GRC_MISC_CFG, (1 << 29));
8811 val |= (1 << 29);
8812 }
8813 }
8814
Joe Perches41535772013-02-16 11:20:04 +00008815 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07008816 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
8817 tw32(GRC_VCPU_EXT_CTRL,
8818 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
8819 }
8820
Matt Carlsonf37500d2010-08-02 11:25:59 +00008821 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00008822 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008823 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00008824
Linus Torvalds1da177e2005-04-16 15:20:36 -07008825 tw32(GRC_MISC_CFG, val);
8826
Michael Chan1ee582d2005-08-09 20:16:46 -07008827 /* restore 5701 hardware bug workaround write method */
8828 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008829
8830 /* Unfortunately, we have to delay before the PCI read back.
8831 * Some 575X chips even will not respond to a PCI cfg access
8832 * when the reset command is given to the chip.
8833 *
8834 * How do these hardware designers expect things to work
8835 * properly if the PCI write is posted for a long period
8836 * of time? It is always necessary to have some method by
8837 * which a register read back can occur to push the write
8838 * out which does the reset.
8839 *
8840 * For most tg3 variants the trick below was working.
8841 * Ho hum...
8842 */
8843 udelay(120);
8844
8845 /* Flush PCI posted writes. The normal MMIO registers
8846 * are inaccessible at this time so this is the only
8847 * way to make this reliably (actually, this is no longer
8848 * the case, see above). I tried to use indirect
8849 * register read/write but this upset some 5701 variants.
8850 */
8851 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
8852
8853 udelay(120);
8854
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008855 if (tg3_flag(tp, PCI_EXPRESS) && pci_is_pcie(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00008856 u16 val16;
8857
Joe Perches41535772013-02-16 11:20:04 +00008858 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0) {
Michael Chan86449942012-10-02 20:31:14 -07008859 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008860 u32 cfg_val;
8861
8862 /* Wait for link training to complete. */
Michael Chan86449942012-10-02 20:31:14 -07008863 for (j = 0; j < 5000; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864 udelay(100);
8865
8866 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
8867 pci_write_config_dword(tp->pdev, 0xc4,
8868 cfg_val | (1 << 15));
8869 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008870
Matt Carlsone7126992009-08-25 10:08:16 +00008871 /* Clear the "no snoop" and "relaxed ordering" bits. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008872 val16 = PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
Matt Carlsone7126992009-08-25 10:08:16 +00008873 /*
8874 * Older PCIe devices only support the 128 byte
8875 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008876 */
Joe Perches63c3a662011-04-26 08:12:10 +00008877 if (!tg3_flag(tp, CPMU_PRESENT))
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008878 val16 |= PCI_EXP_DEVCTL_PAYLOAD;
8879 pcie_capability_clear_word(tp->pdev, PCI_EXP_DEVCTL, val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008880
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008881 /* Clear error status */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008882 pcie_capability_write_word(tp->pdev, PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008883 PCI_EXP_DEVSTA_CED |
8884 PCI_EXP_DEVSTA_NFED |
8885 PCI_EXP_DEVSTA_FED |
8886 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008887 }
8888
Michael Chanee6a99b2007-07-18 21:49:10 -07008889 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890
Joe Perches63c3a662011-04-26 08:12:10 +00008891 tg3_flag_clear(tp, CHIP_RESETTING);
8892 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07008893
Michael Chanee6a99b2007-07-18 21:49:10 -07008894 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008895 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07008896 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07008897 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008898
Joe Perches41535772013-02-16 11:20:04 +00008899 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900 tg3_stop_fw(tp);
8901 tw32(0x5000, 0x400);
8902 }
8903
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00008904 if (tg3_flag(tp, IS_SSB_CORE)) {
8905 /*
8906 * BCM4785: In order to avoid repercussions from using
8907 * potentially defective internal ROM, stop the Rx RISC CPU,
8908 * which is not required.
8909 */
8910 tg3_stop_fw(tp);
8911 tg3_halt_cpu(tp, RX_CPU_BASE);
8912 }
8913
Nithin Sujirfb03a432013-05-21 12:57:32 +00008914 err = tg3_poll_fw(tp);
8915 if (err)
8916 return err;
8917
Linus Torvalds1da177e2005-04-16 15:20:36 -07008918 tw32(GRC_MODE, tp->grc_mode);
8919
Joe Perches41535772013-02-16 11:20:04 +00008920 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008921 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008922
8923 tw32(0xc4, val | (1 << 15));
8924 }
8925
8926 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
Joe Perches41535772013-02-16 11:20:04 +00008927 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008928 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
Joe Perches41535772013-02-16 11:20:04 +00008929 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008930 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
8931 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8932 }
8933
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008934 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008935 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008936 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008937 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008938 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008939 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008940 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008941 val = 0;
8942
8943 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008944 udelay(40);
8945
Matt Carlson77b483f2008-08-15 14:07:24 -07008946 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8947
Matt Carlson0a9140c2009-08-28 12:27:50 +00008948 tg3_mdio_start(tp);
8949
Joe Perches63c3a662011-04-26 08:12:10 +00008950 if (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +00008951 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
8952 tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008953 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008954 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955
8956 tw32(0x7c00, val | (1 << 25));
8957 }
8958
Joe Perches41535772013-02-16 11:20:04 +00008959 if (tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsond78b59f2011-04-05 14:22:46 +00008960 val = tr32(TG3_CPMU_CLCK_ORIDE);
8961 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8962 }
8963
Linus Torvalds1da177e2005-04-16 15:20:36 -07008964 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008965 tg3_flag_clear(tp, ENABLE_ASF);
Nithin Sujir942d1af2013-04-09 08:48:07 +00008966 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
8967 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
8968
Joe Perches63c3a662011-04-26 08:12:10 +00008969 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8971 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8972 u32 nic_cfg;
8973
8974 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8975 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008976 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008977 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008978 if (tg3_flag(tp, 5750_PLUS))
8979 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Nithin Sujir942d1af2013-04-09 08:48:07 +00008980
8981 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &nic_cfg);
8982 if (nic_cfg & NIC_SRAM_1G_ON_VAUX_OK)
8983 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
8984 if (nic_cfg & NIC_SRAM_LNK_FLAP_AVOID)
8985 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008986 }
8987 }
8988
8989 return 0;
8990}
8991
Matt Carlson65ec6982012-02-28 23:33:37 +00008992static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8993static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008994
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008996static int tg3_halt(struct tg3 *tp, int kind, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008997{
8998 int err;
8999
9000 tg3_stop_fw(tp);
9001
Michael Chan944d9802005-05-29 14:57:48 -07009002 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009003
David S. Millerb3b7d6b2005-05-05 14:40:20 -07009004 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009005 err = tg3_chip_reset(tp);
9006
Joe Perches953c96e2013-04-09 10:18:14 +00009007 __tg3_set_mac_addr(tp, false);
Matt Carlsondaba2a62009-04-20 06:58:52 +00009008
Michael Chan944d9802005-05-29 14:57:48 -07009009 tg3_write_sig_legacy(tp, kind);
9010 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009011
Matt Carlson92feeab2011-12-08 14:40:14 +00009012 if (tp->hw_stats) {
9013 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05009014 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00009015 tg3_get_estats(tp, &tp->estats_prev);
9016
9017 /* And make sure the next sample is new data */
9018 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
9019 }
9020
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021 if (err)
9022 return err;
9023
9024 return 0;
9025}
9026
Linus Torvalds1da177e2005-04-16 15:20:36 -07009027static int tg3_set_mac_addr(struct net_device *dev, void *p)
9028{
9029 struct tg3 *tp = netdev_priv(dev);
9030 struct sockaddr *addr = p;
Joe Perches953c96e2013-04-09 10:18:14 +00009031 int err = 0;
9032 bool skip_mac_1 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009033
Michael Chanf9804dd2005-09-27 12:13:10 -07009034 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00009035 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07009036
Linus Torvalds1da177e2005-04-16 15:20:36 -07009037 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
9038
Michael Chane75f7c92006-03-20 21:33:26 -08009039 if (!netif_running(dev))
9040 return 0;
9041
Joe Perches63c3a662011-04-26 08:12:10 +00009042 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07009043 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07009044
Michael Chan986e0ae2007-05-05 12:10:20 -07009045 addr0_high = tr32(MAC_ADDR_0_HIGH);
9046 addr0_low = tr32(MAC_ADDR_0_LOW);
9047 addr1_high = tr32(MAC_ADDR_1_HIGH);
9048 addr1_low = tr32(MAC_ADDR_1_LOW);
9049
9050 /* Skip MAC addr 1 if ASF is using it. */
9051 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
9052 !(addr1_high == 0 && addr1_low == 0))
Joe Perches953c96e2013-04-09 10:18:14 +00009053 skip_mac_1 = true;
Michael Chan58712ef2006-04-29 18:58:01 -07009054 }
Michael Chan986e0ae2007-05-05 12:10:20 -07009055 spin_lock_bh(&tp->lock);
9056 __tg3_set_mac_addr(tp, skip_mac_1);
9057 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009058
Michael Chanb9ec6c12006-07-25 16:37:27 -07009059 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009060}
9061
9062/* tp->lock is held. */
9063static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
9064 dma_addr_t mapping, u32 maxlen_flags,
9065 u32 nic_addr)
9066{
9067 tg3_write_mem(tp,
9068 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
9069 ((u64) mapping >> 32));
9070 tg3_write_mem(tp,
9071 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
9072 ((u64) mapping & 0xffffffff));
9073 tg3_write_mem(tp,
9074 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
9075 maxlen_flags);
9076
Joe Perches63c3a662011-04-26 08:12:10 +00009077 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009078 tg3_write_mem(tp,
9079 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
9080 nic_addr);
9081}
9082
Michael Chana489b6d2012-09-28 07:12:39 +00009083
9084static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07009085{
Michael Chana489b6d2012-09-28 07:12:39 +00009086 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00009087
Joe Perches63c3a662011-04-26 08:12:10 +00009088 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009089 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
9090 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
9091 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00009092 } else {
9093 tw32(HOSTCC_TXCOL_TICKS, 0);
9094 tw32(HOSTCC_TXMAX_FRAMES, 0);
9095 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00009096
9097 for (; i < tp->txq_cnt; i++) {
9098 u32 reg;
9099
9100 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
9101 tw32(reg, ec->tx_coalesce_usecs);
9102 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
9103 tw32(reg, ec->tx_max_coalesced_frames);
9104 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
9105 tw32(reg, ec->tx_max_coalesced_frames_irq);
9106 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00009107 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009108
Michael Chana489b6d2012-09-28 07:12:39 +00009109 for (; i < tp->irq_max - 1; i++) {
9110 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
9111 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
9112 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9113 }
9114}
9115
9116static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
9117{
9118 int i = 0;
9119 u32 limit = tp->rxq_cnt;
9120
Joe Perches63c3a662011-04-26 08:12:10 +00009121 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00009122 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
9123 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
9124 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00009125 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00009126 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009127 tw32(HOSTCC_RXCOL_TICKS, 0);
9128 tw32(HOSTCC_RXMAX_FRAMES, 0);
9129 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07009130 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009131
Michael Chana489b6d2012-09-28 07:12:39 +00009132 for (; i < limit; i++) {
9133 u32 reg;
9134
9135 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
9136 tw32(reg, ec->rx_coalesce_usecs);
9137 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
9138 tw32(reg, ec->rx_max_coalesced_frames);
9139 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
9140 tw32(reg, ec->rx_max_coalesced_frames_irq);
9141 }
9142
9143 for (; i < tp->irq_max - 1; i++) {
9144 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
9145 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
9146 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9147 }
9148}
9149
9150static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
9151{
9152 tg3_coal_tx_init(tp, ec);
9153 tg3_coal_rx_init(tp, ec);
9154
Joe Perches63c3a662011-04-26 08:12:10 +00009155 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07009156 u32 val = ec->stats_block_coalesce_usecs;
9157
Matt Carlsonb6080e12009-09-01 13:12:00 +00009158 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
9159 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
9160
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00009161 if (!tp->link_up)
David S. Miller15f98502005-05-18 22:49:26 -07009162 val = 0;
9163
9164 tw32(HOSTCC_STAT_COAL_TICKS, val);
9165 }
9166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009167
9168/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00009169static void tg3_rings_reset(struct tg3 *tp)
9170{
9171 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009172 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009173 struct tg3_napi *tnapi = &tp->napi[0];
9174
9175 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00009176 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009177 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009178 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00009179 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Michael Chanc65a17f2013-01-06 12:51:07 +00009180 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009181 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonb703df62009-12-03 08:36:21 +00009182 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009183 else
9184 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9185
9186 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9187 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
9188 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
9189 BDINFO_FLAGS_DISABLED);
9190
9191
9192 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00009193 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009194 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00009195 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009196 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches41535772013-02-16 11:20:04 +00009197 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9198 tg3_asic_rev(tp) == ASIC_REV_5762 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009199 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009200 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
9201 else
9202 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9203
9204 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9205 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
9206 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
9207 BDINFO_FLAGS_DISABLED);
9208
9209 /* Disable interrupts */
9210 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009211 tp->napi[0].chk_msi_cnt = 0;
9212 tp->napi[0].last_rx_cons = 0;
9213 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009214
9215 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00009216 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00009217 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009218 tp->napi[i].tx_prod = 0;
9219 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00009220 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009221 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009222 tw32_rx_mbox(tp->napi[i].consmbox, 0);
9223 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00009224 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009225 tp->napi[i].last_rx_cons = 0;
9226 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009227 }
Joe Perches63c3a662011-04-26 08:12:10 +00009228 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009229 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009230 } else {
9231 tp->napi[0].tx_prod = 0;
9232 tp->napi[0].tx_cons = 0;
9233 tw32_mailbox(tp->napi[0].prodmbox, 0);
9234 tw32_rx_mbox(tp->napi[0].consmbox, 0);
9235 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009236
9237 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00009238 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00009239 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
9240 for (i = 0; i < 16; i++)
9241 tw32_tx_mbox(mbox + i * 8, 0);
9242 }
9243
9244 txrcb = NIC_SRAM_SEND_RCB;
9245 rxrcb = NIC_SRAM_RCV_RET_RCB;
9246
9247 /* Clear status block in ram. */
9248 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9249
9250 /* Set status block DMA address */
9251 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9252 ((u64) tnapi->status_mapping >> 32));
9253 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9254 ((u64) tnapi->status_mapping & 0xffffffff));
9255
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009256 if (tnapi->tx_ring) {
9257 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9258 (TG3_TX_RING_SIZE <<
9259 BDINFO_FLAGS_MAXLEN_SHIFT),
9260 NIC_SRAM_TX_BUFFER_DESC);
9261 txrcb += TG3_BDINFO_SIZE;
9262 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009263
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009264 if (tnapi->rx_rcb) {
9265 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009266 (tp->rx_ret_ring_mask + 1) <<
9267 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009268 rxrcb += TG3_BDINFO_SIZE;
9269 }
9270
9271 stblk = HOSTCC_STATBLCK_RING1;
9272
9273 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
9274 u64 mapping = (u64)tnapi->status_mapping;
9275 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
9276 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
9277
9278 /* Clear status block in ram. */
9279 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9280
Matt Carlson19cfaec2009-12-03 08:36:20 +00009281 if (tnapi->tx_ring) {
9282 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9283 (TG3_TX_RING_SIZE <<
9284 BDINFO_FLAGS_MAXLEN_SHIFT),
9285 NIC_SRAM_TX_BUFFER_DESC);
9286 txrcb += TG3_BDINFO_SIZE;
9287 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009288
9289 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009290 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009291 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
9292
9293 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009294 rxrcb += TG3_BDINFO_SIZE;
9295 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009296}
9297
Matt Carlsoneb07a942011-04-20 07:57:36 +00009298static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
9299{
9300 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
9301
Joe Perches63c3a662011-04-26 08:12:10 +00009302 if (!tg3_flag(tp, 5750_PLUS) ||
9303 tg3_flag(tp, 5780_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009304 tg3_asic_rev(tp) == ASIC_REV_5750 ||
9305 tg3_asic_rev(tp) == ASIC_REV_5752 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00009306 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009307 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
Joe Perches41535772013-02-16 11:20:04 +00009308 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9309 tg3_asic_rev(tp) == ASIC_REV_5787)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009310 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
9311 else
9312 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
9313
9314 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
9315 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
9316
9317 val = min(nic_rep_thresh, host_rep_thresh);
9318 tw32(RCVBDI_STD_THRESH, val);
9319
Joe Perches63c3a662011-04-26 08:12:10 +00009320 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009321 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
9322
Joe Perches63c3a662011-04-26 08:12:10 +00009323 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009324 return;
9325
Matt Carlson513aa6e2011-11-21 15:01:18 +00009326 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00009327
9328 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
9329
9330 val = min(bdcache_maxcnt / 2, host_rep_thresh);
9331 tw32(RCVBDI_JUMBO_THRESH, val);
9332
Joe Perches63c3a662011-04-26 08:12:10 +00009333 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009334 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
9335}
9336
Matt Carlsonccd5ba92012-02-13 10:20:08 +00009337static inline u32 calc_crc(unsigned char *buf, int len)
9338{
9339 u32 reg;
9340 u32 tmp;
9341 int j, k;
9342
9343 reg = 0xffffffff;
9344
9345 for (j = 0; j < len; j++) {
9346 reg ^= buf[j];
9347
9348 for (k = 0; k < 8; k++) {
9349 tmp = reg & 0x01;
9350
9351 reg >>= 1;
9352
9353 if (tmp)
9354 reg ^= 0xedb88320;
9355 }
9356 }
9357
9358 return ~reg;
9359}
9360
9361static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9362{
9363 /* accept or reject all multicast frames */
9364 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9365 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9366 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9367 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9368}
9369
9370static void __tg3_set_rx_mode(struct net_device *dev)
9371{
9372 struct tg3 *tp = netdev_priv(dev);
9373 u32 rx_mode;
9374
9375 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9376 RX_MODE_KEEP_VLAN_TAG);
9377
9378#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
9379 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9380 * flag clear.
9381 */
9382 if (!tg3_flag(tp, ENABLE_ASF))
9383 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9384#endif
9385
9386 if (dev->flags & IFF_PROMISC) {
9387 /* Promiscuous mode. */
9388 rx_mode |= RX_MODE_PROMISC;
9389 } else if (dev->flags & IFF_ALLMULTI) {
9390 /* Accept all multicast. */
9391 tg3_set_multi(tp, 1);
9392 } else if (netdev_mc_empty(dev)) {
9393 /* Reject all multicast. */
9394 tg3_set_multi(tp, 0);
9395 } else {
9396 /* Accept one or more multicast(s). */
9397 struct netdev_hw_addr *ha;
9398 u32 mc_filter[4] = { 0, };
9399 u32 regidx;
9400 u32 bit;
9401 u32 crc;
9402
9403 netdev_for_each_mc_addr(ha, dev) {
9404 crc = calc_crc(ha->addr, ETH_ALEN);
9405 bit = ~crc & 0x7f;
9406 regidx = (bit & 0x60) >> 5;
9407 bit &= 0x1f;
9408 mc_filter[regidx] |= (1 << bit);
9409 }
9410
9411 tw32(MAC_HASH_REG_0, mc_filter[0]);
9412 tw32(MAC_HASH_REG_1, mc_filter[1]);
9413 tw32(MAC_HASH_REG_2, mc_filter[2]);
9414 tw32(MAC_HASH_REG_3, mc_filter[3]);
9415 }
9416
9417 if (rx_mode != tp->rx_mode) {
9418 tp->rx_mode = rx_mode;
9419 tw32_f(MAC_RX_MODE, rx_mode);
9420 udelay(10);
9421 }
9422}
9423
Michael Chan91024262012-09-28 07:12:38 +00009424static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00009425{
9426 int i;
9427
9428 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00009429 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00009430}
9431
9432static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009433{
9434 int i;
9435
9436 if (!tg3_flag(tp, SUPPORT_MSIX))
9437 return;
9438
Michael Chan0b3ba052012-11-14 14:44:29 +00009439 if (tp->rxq_cnt == 1) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009440 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00009441 return;
9442 }
9443
9444 /* Validate table against current IRQ count */
9445 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
Michael Chan0b3ba052012-11-14 14:44:29 +00009446 if (tp->rss_ind_tbl[i] >= tp->rxq_cnt)
Matt Carlson90415472011-12-16 13:33:23 +00009447 break;
9448 }
9449
9450 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00009451 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009452}
9453
Matt Carlson90415472011-12-16 13:33:23 +00009454static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009455{
9456 int i = 0;
9457 u32 reg = MAC_RSS_INDIR_TBL_0;
9458
9459 while (i < TG3_RSS_INDIR_TBL_SIZE) {
9460 u32 val = tp->rss_ind_tbl[i];
9461 i++;
9462 for (; i % 8; i++) {
9463 val <<= 4;
9464 val |= tp->rss_ind_tbl[i];
9465 }
9466 tw32(reg, val);
9467 reg += 4;
9468 }
9469}
9470
Matt Carlson2d31eca2009-09-01 12:53:31 +00009471/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00009472static int tg3_reset_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009473{
9474 u32 val, rdmac_mode;
9475 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00009476 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009477
9478 tg3_disable_ints(tp);
9479
9480 tg3_stop_fw(tp);
9481
9482 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
9483
Joe Perches63c3a662011-04-26 08:12:10 +00009484 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07009485 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009486
Matt Carlson699c0192010-12-06 08:28:51 +00009487 /* Enable MAC control of LPI */
9488 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009489 val = TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
9490 TG3_CPMU_EEE_LNKIDL_UART_IDL;
Joe Perches41535772013-02-16 11:20:04 +00009491 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00009492 val |= TG3_CPMU_EEE_LNKIDL_APE_TX_MT;
9493
9494 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL, val);
Matt Carlson699c0192010-12-06 08:28:51 +00009495
9496 tw32_f(TG3_CPMU_EEE_CTRL,
9497 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
9498
Matt Carlsona386b902010-12-06 08:28:53 +00009499 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
9500 TG3_CPMU_EEEMD_LPI_IN_TX |
9501 TG3_CPMU_EEEMD_LPI_IN_RX |
9502 TG3_CPMU_EEEMD_EEE_ENABLE;
9503
Joe Perches41535772013-02-16 11:20:04 +00009504 if (tg3_asic_rev(tp) != ASIC_REV_5717)
Matt Carlsona386b902010-12-06 08:28:53 +00009505 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
9506
Joe Perches63c3a662011-04-26 08:12:10 +00009507 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00009508 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
9509
9510 tw32_f(TG3_CPMU_EEE_MODE, val);
9511
9512 tw32_f(TG3_CPMU_EEE_DBTMR1,
9513 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
9514 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
9515
9516 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00009517 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00009518 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00009519 }
9520
Nithin Sujirfdad8de2013-04-09 08:48:08 +00009521 if ((tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
9522 !(tp->phy_flags & TG3_PHYFLG_USER_CONFIGURED)) {
9523 tg3_phy_pull_config(tp);
9524 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
9525 }
9526
Matt Carlson603f1172010-02-12 14:47:10 +00009527 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08009528 tg3_phy_reset(tp);
9529
Linus Torvalds1da177e2005-04-16 15:20:36 -07009530 err = tg3_chip_reset(tp);
9531 if (err)
9532 return err;
9533
9534 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
9535
Joe Perches41535772013-02-16 11:20:04 +00009536 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009537 val = tr32(TG3_CPMU_CTRL);
9538 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
9539 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08009540
9541 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9542 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9543 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9544 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
9545
9546 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
9547 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
9548 val |= CPMU_LNK_AWARE_MACCLK_6_25;
9549 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
9550
9551 val = tr32(TG3_CPMU_HST_ACC);
9552 val &= ~CPMU_HST_ACC_MACCLK_MASK;
9553 val |= CPMU_HST_ACC_MACCLK_6_25;
9554 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07009555 }
9556
Joe Perches41535772013-02-16 11:20:04 +00009557 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson33466d92009-04-20 06:57:41 +00009558 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
9559 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
9560 PCIE_PWR_MGMT_L1_THRESH_4MS;
9561 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00009562
9563 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
9564 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
9565
9566 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00009567
Matt Carlsonf40386c2009-11-02 14:24:02 +00009568 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
9569 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00009570 }
9571
Joe Perches63c3a662011-04-26 08:12:10 +00009572 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00009573 u32 grc_mode = tr32(GRC_MODE);
9574
9575 /* Access the lower 1K of PL PCIE block registers. */
9576 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9577 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
9578
9579 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
9580 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
9581 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
9582
9583 tw32(GRC_MODE, grc_mode);
9584 }
9585
Matt Carlson55086ad2011-12-14 11:09:59 +00009586 if (tg3_flag(tp, 57765_CLASS)) {
Joe Perches41535772013-02-16 11:20:04 +00009587 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlson5093eed2010-11-24 08:31:45 +00009588 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00009589
Matt Carlson5093eed2010-11-24 08:31:45 +00009590 /* Access the lower 1K of PL PCIE block registers. */
9591 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9592 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00009593
Matt Carlson5093eed2010-11-24 08:31:45 +00009594 val = tr32(TG3_PCIE_TLDLPL_PORT +
9595 TG3_PCIE_PL_LO_PHYCTL5);
9596 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
9597 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00009598
Matt Carlson5093eed2010-11-24 08:31:45 +00009599 tw32(GRC_MODE, grc_mode);
9600 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00009601
Joe Perches41535772013-02-16 11:20:04 +00009602 if (tg3_chip_rev(tp) != CHIPREV_57765_AX) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009603 u32 grc_mode;
9604
9605 /* Fix transmit hangs */
9606 val = tr32(TG3_CPMU_PADRNG_CTL);
9607 val |= TG3_CPMU_PADRNG_CTL_RDIV2;
9608 tw32(TG3_CPMU_PADRNG_CTL, val);
9609
9610 grc_mode = tr32(GRC_MODE);
Matt Carlson1ff30a52011-05-19 12:12:46 +00009611
9612 /* Access the lower 1K of DL PCIE block registers. */
9613 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9614 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
9615
9616 val = tr32(TG3_PCIE_TLDLPL_PORT +
9617 TG3_PCIE_DL_LO_FTSMAX);
9618 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
9619 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
9620 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
9621
9622 tw32(GRC_MODE, grc_mode);
9623 }
9624
Matt Carlsona977dbe2010-04-12 06:58:26 +00009625 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9626 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9627 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9628 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00009629 }
9630
Linus Torvalds1da177e2005-04-16 15:20:36 -07009631 /* This works around an issue with Athlon chipsets on
9632 * B3 tigon3 silicon. This bit has no effect on any
9633 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07009634 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009635 */
Joe Perches63c3a662011-04-26 08:12:10 +00009636 if (!tg3_flag(tp, CPMU_PRESENT)) {
9637 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07009638 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
9639 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009641
Joe Perches41535772013-02-16 11:20:04 +00009642 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009643 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644 val = tr32(TG3PCI_PCISTATE);
9645 val |= PCISTATE_RETRY_SAME_DMA;
9646 tw32(TG3PCI_PCISTATE, val);
9647 }
9648
Joe Perches63c3a662011-04-26 08:12:10 +00009649 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07009650 /* Allow reads and writes to the
9651 * APE register and memory space.
9652 */
9653 val = tr32(TG3PCI_PCISTATE);
9654 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00009655 PCISTATE_ALLOW_APE_SHMEM_WR |
9656 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07009657 tw32(TG3PCI_PCISTATE, val);
9658 }
9659
Joe Perches41535772013-02-16 11:20:04 +00009660 if (tg3_chip_rev(tp) == CHIPREV_5704_BX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009661 /* Enable some hw fixes. */
9662 val = tr32(TG3PCI_MSI_DATA);
9663 val |= (1 << 26) | (1 << 28) | (1 << 29);
9664 tw32(TG3PCI_MSI_DATA, val);
9665 }
9666
9667 /* Descriptor ring init may make accesses to the
9668 * NIC SRAM area to setup the TX descriptors, so we
9669 * can only do this after the hardware has been
9670 * successfully reset.
9671 */
Michael Chan32d8c572006-07-25 16:38:29 -07009672 err = tg3_init_rings(tp);
9673 if (err)
9674 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009675
Joe Perches63c3a662011-04-26 08:12:10 +00009676 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009677 val = tr32(TG3PCI_DMA_RW_CTRL) &
9678 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Joe Perches41535772013-02-16 11:20:04 +00009679 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Matt Carlson1a319022010-04-12 06:58:25 +00009680 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00009681 if (!tg3_flag(tp, 57765_CLASS) &&
Joe Perches41535772013-02-16 11:20:04 +00009682 tg3_asic_rev(tp) != ASIC_REV_5717 &&
9683 tg3_asic_rev(tp) != ASIC_REV_5762)
Matt Carlson0aebff42011-04-25 12:42:45 +00009684 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009685 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
Joe Perches41535772013-02-16 11:20:04 +00009686 } else if (tg3_asic_rev(tp) != ASIC_REV_5784 &&
9687 tg3_asic_rev(tp) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009688 /* This value is determined during the probe time DMA
9689 * engine test, tg3_test_dma.
9690 */
9691 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009693
9694 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
9695 GRC_MODE_4X_NIC_SEND_RINGS |
9696 GRC_MODE_NO_TX_PHDR_CSUM |
9697 GRC_MODE_NO_RX_PHDR_CSUM);
9698 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07009699
9700 /* Pseudo-header checksum is done by hardware logic and not
9701 * the offload processers, so make the chip do the pseudo-
9702 * header checksums on receive. For transmit it is more
9703 * convenient to do the pseudo-header checksum in software
9704 * as Linux does that on transmit for us in all cases.
9705 */
9706 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009707
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00009708 val = GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP;
9709 if (tp->rxptpctl)
9710 tw32(TG3_RX_PTP_CTL,
9711 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
9712
9713 if (tg3_flag(tp, PTP_CAPABLE))
9714 val |= GRC_MODE_TIME_SYNC_ENABLE;
9715
9716 tw32(GRC_MODE, tp->grc_mode | val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009717
9718 /* Setup the timer prescalar register. Clock is always 66Mhz. */
9719 val = tr32(GRC_MISC_CFG);
9720 val &= ~0xff;
9721 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
9722 tw32(GRC_MISC_CFG, val);
9723
9724 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00009725 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009726 /* Do nothing. */
Joe Perches41535772013-02-16 11:20:04 +00009727 } else if (tg3_asic_rev(tp) != ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009728 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
Joe Perches41535772013-02-16 11:20:04 +00009729 if (tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009730 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
9731 else
9732 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
9733 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
9734 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00009735 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009736 int fw_len;
9737
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08009738 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009739 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
9740 tw32(BUFMGR_MB_POOL_ADDR,
9741 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
9742 tw32(BUFMGR_MB_POOL_SIZE,
9743 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
9744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009745
Michael Chan0f893dc2005-07-25 12:30:38 -07009746 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009747 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9748 tp->bufmgr_config.mbuf_read_dma_low_water);
9749 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9750 tp->bufmgr_config.mbuf_mac_rx_low_water);
9751 tw32(BUFMGR_MB_HIGH_WATER,
9752 tp->bufmgr_config.mbuf_high_water);
9753 } else {
9754 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9755 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
9756 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9757 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
9758 tw32(BUFMGR_MB_HIGH_WATER,
9759 tp->bufmgr_config.mbuf_high_water_jumbo);
9760 }
9761 tw32(BUFMGR_DMA_LOW_WATER,
9762 tp->bufmgr_config.dma_low_water);
9763 tw32(BUFMGR_DMA_HIGH_WATER,
9764 tp->bufmgr_config.dma_high_water);
9765
Matt Carlsond309a462010-09-30 10:34:31 +00009766 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
Joe Perches41535772013-02-16 11:20:04 +00009767 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsond309a462010-09-30 10:34:31 +00009768 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Joe Perches41535772013-02-16 11:20:04 +00009769 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
9770 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9771 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0)
Matt Carlson4d958472011-04-20 07:57:35 +00009772 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00009773 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009774 for (i = 0; i < 2000; i++) {
9775 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
9776 break;
9777 udelay(10);
9778 }
9779 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00009780 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009781 return -ENODEV;
9782 }
9783
Joe Perches41535772013-02-16 11:20:04 +00009784 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5906_A1)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009785 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07009786
Matt Carlsoneb07a942011-04-20 07:57:36 +00009787 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009788
9789 /* Initialize TG3_BDINFO's at:
9790 * RCVDBDI_STD_BD: standard eth size rx ring
9791 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
9792 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
9793 *
9794 * like so:
9795 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
9796 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
9797 * ring attribute flags
9798 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
9799 *
9800 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
9801 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
9802 *
9803 * The size of each ring is fixed in the firmware, but the location is
9804 * configurable.
9805 */
9806 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009807 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009808 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009809 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00009810 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00009811 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
9812 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009813
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009814 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00009815 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009816 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
9817 BDINFO_FLAGS_DISABLED);
9818
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009819 /* Program the jumbo buffer descriptor ring control
9820 * blocks on those devices that have them.
9821 */
Joe Perches41535772013-02-16 11:20:04 +00009822 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009823 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009824
Joe Perches63c3a662011-04-26 08:12:10 +00009825 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009826 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009827 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009828 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009829 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00009830 val = TG3_RX_JMB_RING_SIZE(tp) <<
9831 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009832 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00009833 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00009834 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Michael Chanc65a17f2013-01-06 12:51:07 +00009835 tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009836 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson87668d32009-11-13 13:03:34 +00009837 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
9838 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009839 } else {
9840 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
9841 BDINFO_FLAGS_DISABLED);
9842 }
9843
Joe Perches63c3a662011-04-26 08:12:10 +00009844 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00009845 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009846 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
9847 val |= (TG3_RX_STD_DMA_SZ << 2);
9848 } else
Matt Carlson04380d42010-04-12 06:58:29 +00009849 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009850 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00009851 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009852
9853 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009854
Matt Carlson411da642009-11-13 13:03:46 +00009855 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00009856 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009857
Joe Perches63c3a662011-04-26 08:12:10 +00009858 tpr->rx_jmb_prod_idx =
9859 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00009860 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009861
Matt Carlson2d31eca2009-09-01 12:53:31 +00009862 tg3_rings_reset(tp);
9863
Linus Torvalds1da177e2005-04-16 15:20:36 -07009864 /* Initialize MAC address and backoff seed. */
Joe Perches953c96e2013-04-09 10:18:14 +00009865 __tg3_set_mac_addr(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009866
9867 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00009868 tw32(MAC_RX_MTU_SIZE,
9869 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009870
9871 /* The slot time is changed by tg3_setup_phy if we
9872 * run at gigabit with half duplex.
9873 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00009874 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
9875 (6 << TX_LENGTHS_IPG_SHIFT) |
9876 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
9877
Joe Perches41535772013-02-16 11:20:04 +00009878 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9879 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009880 val |= tr32(MAC_TX_LENGTHS) &
9881 (TX_LENGTHS_JMB_FRM_LEN_MSK |
9882 TX_LENGTHS_CNT_DWN_VAL_MSK);
9883
9884 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885
9886 /* Receive rules. */
9887 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
9888 tw32(RCVLPC_CONFIG, 0x0181);
9889
9890 /* Calculate RDMAC_MODE setting early, we need it to determine
9891 * the RCVLPC_STATE_ENABLE mask.
9892 */
9893 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
9894 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
9895 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
9896 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
9897 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07009898
Joe Perches41535772013-02-16 11:20:04 +00009899 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00009900 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
9901
Joe Perches41535772013-02-16 11:20:04 +00009902 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
9903 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9904 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07009905 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
9906 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
9907 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
9908
Joe Perches41535772013-02-16 11:20:04 +00009909 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
9910 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009911 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +00009912 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009913 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
9914 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009915 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009916 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9917 }
9918 }
9919
Joe Perches63c3a662011-04-26 08:12:10 +00009920 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07009921 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9922
Joe Perches41535772013-02-16 11:20:04 +00009923 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009924 tp->dma_limit = 0;
9925 if (tp->dev->mtu <= ETH_DATA_LEN) {
9926 rdmac_mode |= RDMAC_MODE_JMB_2K_MMRR;
9927 tp->dma_limit = TG3_TX_BD_DMA_MAX_2K;
9928 }
9929 }
9930
Joe Perches63c3a662011-04-26 08:12:10 +00009931 if (tg3_flag(tp, HW_TSO_1) ||
9932 tg3_flag(tp, HW_TSO_2) ||
9933 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08009934 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
9935
Matt Carlson108a6c12011-05-19 12:12:47 +00009936 if (tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +00009937 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9938 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson027455a2008-12-21 20:19:30 -08009939 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009940
Joe Perches41535772013-02-16 11:20:04 +00009941 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9942 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009943 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
9944
Joe Perches41535772013-02-16 11:20:04 +00009945 if (tg3_asic_rev(tp) == ASIC_REV_5761 ||
9946 tg3_asic_rev(tp) == ASIC_REV_5784 ||
9947 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9948 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009949 tg3_flag(tp, 57765_PLUS)) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009950 u32 tgtreg;
9951
Joe Perches41535772013-02-16 11:20:04 +00009952 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009953 tgtreg = TG3_RDMA_RSRVCTRL_REG2;
9954 else
9955 tgtreg = TG3_RDMA_RSRVCTRL_REG;
9956
9957 val = tr32(tgtreg);
Joe Perches41535772013-02-16 11:20:04 +00009958 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9959 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00009960 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
9961 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
9962 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
9963 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
9964 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
9965 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00009966 }
Michael Chanc65a17f2013-01-06 12:51:07 +00009967 tw32(tgtreg, val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009968 }
9969
Joe Perches41535772013-02-16 11:20:04 +00009970 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
9971 tg3_asic_rev(tp) == ASIC_REV_5720 ||
9972 tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009973 u32 tgtreg;
9974
Joe Perches41535772013-02-16 11:20:04 +00009975 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009976 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL2;
9977 else
9978 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL;
9979
9980 val = tr32(tgtreg);
9981 tw32(tgtreg, val |
Matt Carlsond309a462010-09-30 10:34:31 +00009982 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
9983 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
9984 }
9985
Linus Torvalds1da177e2005-04-16 15:20:36 -07009986 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00009987 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07009988 val = tr32(RCVLPC_STATS_ENABLE);
9989 val &= ~RCVLPC_STATSENAB_DACK_FIX;
9990 tw32(RCVLPC_STATS_ENABLE, val);
9991 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009992 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009993 val = tr32(RCVLPC_STATS_ENABLE);
9994 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
9995 tw32(RCVLPC_STATS_ENABLE, val);
9996 } else {
9997 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
9998 }
9999 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
10000 tw32(SNDDATAI_STATSENAB, 0xffffff);
10001 tw32(SNDDATAI_STATSCTRL,
10002 (SNDDATAI_SCTRL_ENABLE |
10003 SNDDATAI_SCTRL_FASTUPD));
10004
10005 /* Setup host coalescing engine. */
10006 tw32(HOSTCC_MODE, 0);
10007 for (i = 0; i < 2000; i++) {
10008 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
10009 break;
10010 udelay(10);
10011 }
10012
Michael Chand244c892005-07-05 14:42:33 -070010013 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010014
Joe Perches63c3a662011-04-26 08:12:10 +000010015 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010016 /* Status/statistics block address. See tg3_timer,
10017 * the tg3_periodic_fetch_stats call there, and
10018 * tg3_get_stats to see how this works for 5705/5750 chips.
10019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010020 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
10021 ((u64) tp->stats_mapping >> 32));
10022 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
10023 ((u64) tp->stats_mapping & 0xffffffff));
10024 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010025
Linus Torvalds1da177e2005-04-16 15:20:36 -070010026 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010027
10028 /* Clear statistics and status block memory areas */
10029 for (i = NIC_SRAM_STATS_BLK;
10030 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
10031 i += sizeof(u32)) {
10032 tg3_write_mem(tp, i, 0);
10033 udelay(40);
10034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010035 }
10036
10037 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
10038
10039 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
10040 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010041 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
10043
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010044 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
10045 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -070010046 /* reset to prevent losing 1st rx packet intermittently */
10047 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10048 udelay(10);
10049 }
10050
Matt Carlson3bda1252008-08-15 14:08:22 -070010051 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +000010052 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
10053 MAC_MODE_FHDE_ENABLE;
10054 if (tg3_flag(tp, ENABLE_APE))
10055 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +000010056 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010057 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010058 tg3_asic_rev(tp) != ASIC_REV_5700)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010059 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010060 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
10061 udelay(40);
10062
Michael Chan314fba32005-04-21 17:07:04 -070010063 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +000010064 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -070010065 * register to preserve the GPIO settings for LOMs. The GPIOs,
10066 * whether used as inputs or outputs, are set by boot code after
10067 * reset.
10068 */
Joe Perches63c3a662011-04-26 08:12:10 +000010069 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -070010070 u32 gpio_mask;
10071
Michael Chan9d26e212006-12-07 00:21:14 -080010072 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
10073 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
10074 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -070010075
Joe Perches41535772013-02-16 11:20:04 +000010076 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070010077 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
10078 GRC_LCLCTRL_GPIO_OUTPUT3;
10079
Joe Perches41535772013-02-16 11:20:04 +000010080 if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanaf36e6b2006-03-23 01:28:06 -080010081 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
10082
Gary Zambranoaaf84462007-05-05 11:51:45 -070010083 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -070010084 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
10085
10086 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +000010087 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -080010088 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
10089 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -070010090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010091 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10092 udelay(100);
10093
Matt Carlsonc3b50032012-01-17 15:27:23 +000010094 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010095 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010096 val |= MSGINT_MODE_ENABLE;
10097 if (tp->irq_cnt > 1)
10098 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010099 if (!tg3_flag(tp, 1SHOT_MSI))
10100 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010101 tw32(MSGINT_MODE, val);
10102 }
10103
Joe Perches63c3a662011-04-26 08:12:10 +000010104 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010105 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
10106 udelay(40);
10107 }
10108
10109 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
10110 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
10111 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
10112 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
10113 WDMAC_MODE_LNGREAD_ENAB);
10114
Joe Perches41535772013-02-16 11:20:04 +000010115 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
10116 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000010117 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +000010118 (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 ||
10119 tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010120 /* nothing */
10121 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010122 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010123 val |= WDMAC_MODE_RX_ACCEL;
10124 }
10125 }
10126
Michael Chand9ab5ad12006-03-20 22:27:35 -080010127 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +000010128 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -070010129 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -080010130
Joe Perches41535772013-02-16 11:20:04 +000010131 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson788a0352009-11-02 14:26:03 +000010132 val |= WDMAC_MODE_BURST_ALL_DATA;
10133
Linus Torvalds1da177e2005-04-16 15:20:36 -070010134 tw32_f(WDMAC_MODE, val);
10135 udelay(40);
10136
Joe Perches63c3a662011-04-26 08:12:10 +000010137 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -070010138 u16 pcix_cmd;
10139
10140 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10141 &pcix_cmd);
Joe Perches41535772013-02-16 11:20:04 +000010142 if (tg3_asic_rev(tp) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -070010143 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
10144 pcix_cmd |= PCI_X_CMD_READ_2K;
Joe Perches41535772013-02-16 11:20:04 +000010145 } else if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -070010146 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
10147 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010148 }
Matt Carlson9974a352007-10-07 23:27:28 -070010149 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10150 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010151 }
10152
10153 tw32_f(RDMAC_MODE, rdmac_mode);
10154 udelay(40);
10155
Joe Perches41535772013-02-16 11:20:04 +000010156 if (tg3_asic_rev(tp) == ASIC_REV_5719) {
Michael Chan091f0ea2012-07-29 19:15:43 +000010157 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
10158 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
10159 break;
10160 }
10161 if (i < TG3_NUM_RDMA_CHANNELS) {
10162 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
10163 val |= TG3_LSO_RD_DMA_TX_LENGTH_WA;
10164 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
10165 tg3_flag_set(tp, 5719_RDMA_BUG);
10166 }
10167 }
10168
Linus Torvalds1da177e2005-04-16 15:20:36 -070010169 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010170 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010171 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -070010172
Joe Perches41535772013-02-16 11:20:04 +000010173 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson9936bcf2007-10-10 18:03:07 -070010174 tw32(SNDDATAC_MODE,
10175 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
10176 else
10177 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
10178
Linus Torvalds1da177e2005-04-16 15:20:36 -070010179 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
10180 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010181 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +000010182 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010183 val |= RCVDBDI_MODE_LRG_RING_SZ;
10184 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010186 if (tg3_flag(tp, HW_TSO_1) ||
10187 tg3_flag(tp, HW_TSO_2) ||
10188 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010189 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010190 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010191 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010192 val |= SNDBDI_MODE_MULTI_TXQ_EN;
10193 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010194 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
10195
Joe Perches41535772013-02-16 11:20:04 +000010196 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010197 err = tg3_load_5701_a0_firmware_fix(tp);
10198 if (err)
10199 return err;
10200 }
10201
Nithin Sujirc4dab502013-03-06 17:02:34 +000010202 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
10203 /* Ignore any errors for the firmware download. If download
10204 * fails, the device will operate with EEE disabled
10205 */
10206 tg3_load_57766_firmware(tp);
10207 }
10208
Joe Perches63c3a662011-04-26 08:12:10 +000010209 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010210 err = tg3_load_tso_firmware(tp);
10211 if (err)
10212 return err;
10213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010214
10215 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010216
Joe Perches63c3a662011-04-26 08:12:10 +000010217 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000010218 tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonb1d05212010-06-05 17:24:31 +000010219 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010220
Joe Perches41535772013-02-16 11:20:04 +000010221 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10222 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonf2096f92011-04-05 14:22:48 +000010223 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
10224 tp->tx_mode &= ~val;
10225 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
10226 }
10227
Linus Torvalds1da177e2005-04-16 15:20:36 -070010228 tw32_f(MAC_TX_MODE, tp->tx_mode);
10229 udelay(100);
10230
Joe Perches63c3a662011-04-26 08:12:10 +000010231 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010232 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010233
10234 /* Setup the "secret" hash key. */
10235 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
10236 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
10237 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
10238 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
10239 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
10240 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
10241 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
10242 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
10243 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
10244 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
10245 }
10246
Linus Torvalds1da177e2005-04-16 15:20:36 -070010247 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010248 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080010249 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
10250
Joe Perches63c3a662011-04-26 08:12:10 +000010251 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010252 tp->rx_mode |= RX_MODE_RSS_ENABLE |
10253 RX_MODE_RSS_ITBL_HASH_BITS_7 |
10254 RX_MODE_RSS_IPV6_HASH_EN |
10255 RX_MODE_RSS_TCP_IPV6_HASH_EN |
10256 RX_MODE_RSS_IPV4_HASH_EN |
10257 RX_MODE_RSS_TCP_IPV4_HASH_EN;
10258
Linus Torvalds1da177e2005-04-16 15:20:36 -070010259 tw32_f(MAC_RX_MODE, tp->rx_mode);
10260 udelay(10);
10261
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262 tw32(MAC_LED_CTRL, tp->led_ctrl);
10263
10264 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010265 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010266 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10267 udelay(10);
10268 }
10269 tw32_f(MAC_RX_MODE, tp->rx_mode);
10270 udelay(10);
10271
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010272 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +000010273 if ((tg3_asic_rev(tp) == ASIC_REV_5704) &&
10274 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010275 /* Set drive transmission level to 1.2V */
10276 /* only if the signal pre-emphasis bit is not set */
10277 val = tr32(MAC_SERDES_CFG);
10278 val &= 0xfffff000;
10279 val |= 0x880;
10280 tw32(MAC_SERDES_CFG, val);
10281 }
Joe Perches41535772013-02-16 11:20:04 +000010282 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010283 tw32(MAC_SERDES_CFG, 0x616000);
10284 }
10285
10286 /* Prevent chip from dropping frames when flow control
10287 * is enabled.
10288 */
Matt Carlson55086ad2011-12-14 11:09:59 +000010289 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +000010290 val = 1;
10291 else
10292 val = 2;
10293 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010294
Joe Perches41535772013-02-16 11:20:04 +000010295 if (tg3_asic_rev(tp) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010296 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010297 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +000010298 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010299 }
10300
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010301 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010302 tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -080010303 u32 tmp;
10304
10305 tmp = tr32(SERDES_RX_CTRL);
10306 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
10307 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
10308 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
10309 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10310 }
10311
Joe Perches63c3a662011-04-26 08:12:10 +000010312 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010313 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +000010314 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010315
Joe Perches953c96e2013-04-09 10:18:14 +000010316 err = tg3_setup_phy(tp, false);
Matt Carlsondd477002008-05-25 23:45:58 -070010317 if (err)
10318 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010319
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010320 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
10321 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -070010322 u32 tmp;
10323
10324 /* Clear CRC stats. */
10325 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
10326 tg3_writephy(tp, MII_TG3_TEST1,
10327 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010328 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -070010329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010330 }
10331 }
10332
10333 __tg3_set_rx_mode(tp->dev);
10334
10335 /* Initialize receive rules. */
10336 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
10337 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
10338 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
10339 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
10340
Joe Perches63c3a662011-04-26 08:12:10 +000010341 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010342 limit = 8;
10343 else
10344 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +000010345 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010346 limit -= 4;
10347 switch (limit) {
10348 case 16:
10349 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
10350 case 15:
10351 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
10352 case 14:
10353 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
10354 case 13:
10355 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
10356 case 12:
10357 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
10358 case 11:
10359 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
10360 case 10:
10361 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
10362 case 9:
10363 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
10364 case 8:
10365 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
10366 case 7:
10367 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
10368 case 6:
10369 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
10370 case 5:
10371 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
10372 case 4:
10373 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
10374 case 3:
10375 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
10376 case 2:
10377 case 1:
10378
10379 default:
10380 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070010381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010382
Joe Perches63c3a662011-04-26 08:12:10 +000010383 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -070010384 /* Write our heartbeat update interval to APE. */
10385 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
10386 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -070010387
Linus Torvalds1da177e2005-04-16 15:20:36 -070010388 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
10389
Linus Torvalds1da177e2005-04-16 15:20:36 -070010390 return 0;
10391}
10392
10393/* Called at device open time to get the chip ready for
10394 * packet processing. Invoked with tp->lock held.
10395 */
Joe Perches953c96e2013-04-09 10:18:14 +000010396static int tg3_init_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010397{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010398 tg3_switch_clocks(tp);
10399
10400 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
10401
Matt Carlson2f751b62008-08-04 23:17:34 -070010402 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010403}
10404
Michael Chanaed93e02012-07-16 16:24:02 +000010405static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
10406{
10407 int i;
10408
10409 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
10410 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
10411
10412 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
10413 off += len;
10414
10415 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
10416 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
10417 memset(ocir, 0, TG3_OCIR_LEN);
10418 }
10419}
10420
10421/* sysfs attributes for hwmon */
10422static ssize_t tg3_show_temp(struct device *dev,
10423 struct device_attribute *devattr, char *buf)
10424{
10425 struct pci_dev *pdev = to_pci_dev(dev);
10426 struct net_device *netdev = pci_get_drvdata(pdev);
10427 struct tg3 *tp = netdev_priv(netdev);
10428 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
10429 u32 temperature;
10430
10431 spin_lock_bh(&tp->lock);
10432 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
10433 sizeof(temperature));
10434 spin_unlock_bh(&tp->lock);
10435 return sprintf(buf, "%u\n", temperature);
10436}
10437
10438
10439static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
10440 TG3_TEMP_SENSOR_OFFSET);
10441static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
10442 TG3_TEMP_CAUTION_OFFSET);
10443static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
10444 TG3_TEMP_MAX_OFFSET);
10445
10446static struct attribute *tg3_attributes[] = {
10447 &sensor_dev_attr_temp1_input.dev_attr.attr,
10448 &sensor_dev_attr_temp1_crit.dev_attr.attr,
10449 &sensor_dev_attr_temp1_max.dev_attr.attr,
10450 NULL
10451};
10452
10453static const struct attribute_group tg3_group = {
10454 .attrs = tg3_attributes,
10455};
10456
Michael Chanaed93e02012-07-16 16:24:02 +000010457static void tg3_hwmon_close(struct tg3 *tp)
10458{
Michael Chanaed93e02012-07-16 16:24:02 +000010459 if (tp->hwmon_dev) {
10460 hwmon_device_unregister(tp->hwmon_dev);
10461 tp->hwmon_dev = NULL;
10462 sysfs_remove_group(&tp->pdev->dev.kobj, &tg3_group);
10463 }
Michael Chanaed93e02012-07-16 16:24:02 +000010464}
10465
10466static void tg3_hwmon_open(struct tg3 *tp)
10467{
Michael Chanaed93e02012-07-16 16:24:02 +000010468 int i, err;
10469 u32 size = 0;
10470 struct pci_dev *pdev = tp->pdev;
10471 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
10472
10473 tg3_sd_scan_scratchpad(tp, ocirs);
10474
10475 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
10476 if (!ocirs[i].src_data_length)
10477 continue;
10478
10479 size += ocirs[i].src_hdr_length;
10480 size += ocirs[i].src_data_length;
10481 }
10482
10483 if (!size)
10484 return;
10485
10486 /* Register hwmon sysfs hooks */
10487 err = sysfs_create_group(&pdev->dev.kobj, &tg3_group);
10488 if (err) {
10489 dev_err(&pdev->dev, "Cannot create sysfs group, aborting\n");
10490 return;
10491 }
10492
10493 tp->hwmon_dev = hwmon_device_register(&pdev->dev);
10494 if (IS_ERR(tp->hwmon_dev)) {
10495 tp->hwmon_dev = NULL;
10496 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
10497 sysfs_remove_group(&pdev->dev.kobj, &tg3_group);
10498 }
Michael Chanaed93e02012-07-16 16:24:02 +000010499}
10500
10501
Linus Torvalds1da177e2005-04-16 15:20:36 -070010502#define TG3_STAT_ADD32(PSTAT, REG) \
10503do { u32 __val = tr32(REG); \
10504 (PSTAT)->low += __val; \
10505 if ((PSTAT)->low < __val) \
10506 (PSTAT)->high += 1; \
10507} while (0)
10508
10509static void tg3_periodic_fetch_stats(struct tg3 *tp)
10510{
10511 struct tg3_hw_stats *sp = tp->hw_stats;
10512
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010513 if (!tp->link_up)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010514 return;
10515
10516 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
10517 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
10518 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
10519 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
10520 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
10521 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
10522 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
10523 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
10524 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
10525 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
10526 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
10527 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
10528 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Michael Chan091f0ea2012-07-29 19:15:43 +000010529 if (unlikely(tg3_flag(tp, 5719_RDMA_BUG) &&
10530 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
10531 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
10532 u32 val;
10533
10534 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
10535 val &= ~TG3_LSO_RD_DMA_TX_LENGTH_WA;
10536 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
10537 tg3_flag_clear(tp, 5719_RDMA_BUG);
10538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010539
10540 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
10541 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
10542 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
10543 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
10544 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
10545 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
10546 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
10547 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
10548 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
10549 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
10550 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
10551 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
10552 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
10553 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -070010554
10555 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Joe Perches41535772013-02-16 11:20:04 +000010556 if (tg3_asic_rev(tp) != ASIC_REV_5717 &&
10557 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0 &&
10558 tg3_chip_rev_id(tp) != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000010559 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
10560 } else {
10561 u32 val = tr32(HOSTCC_FLOW_ATTN);
10562 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
10563 if (val) {
10564 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
10565 sp->rx_discards.low += val;
10566 if (sp->rx_discards.low < val)
10567 sp->rx_discards.high += 1;
10568 }
10569 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
10570 }
Michael Chan463d3052006-05-22 16:36:27 -070010571 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010572}
10573
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010574static void tg3_chk_missed_msi(struct tg3 *tp)
10575{
10576 u32 i;
10577
10578 for (i = 0; i < tp->irq_cnt; i++) {
10579 struct tg3_napi *tnapi = &tp->napi[i];
10580
10581 if (tg3_has_work(tnapi)) {
10582 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
10583 tnapi->last_tx_cons == tnapi->tx_cons) {
10584 if (tnapi->chk_msi_cnt < 1) {
10585 tnapi->chk_msi_cnt++;
10586 return;
10587 }
Matt Carlson7f230732011-08-31 11:44:48 +000010588 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010589 }
10590 }
10591 tnapi->chk_msi_cnt = 0;
10592 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
10593 tnapi->last_tx_cons = tnapi->tx_cons;
10594 }
10595}
10596
Linus Torvalds1da177e2005-04-16 15:20:36 -070010597static void tg3_timer(unsigned long __opaque)
10598{
10599 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010600
Matt Carlson5b190622011-11-04 09:15:04 +000010601 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -080010602 goto restart_timer;
10603
David S. Millerf47c11e2005-06-24 20:18:35 -070010604 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010605
Joe Perches41535772013-02-16 11:20:04 +000010606 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000010607 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010608 tg3_chk_missed_msi(tp);
10609
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000010610 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
10611 /* BCM4785: Flush posted writes from GbE to host memory. */
10612 tr32(HOSTCC_MODE);
10613 }
10614
Joe Perches63c3a662011-04-26 08:12:10 +000010615 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070010616 /* All of this garbage is because when using non-tagged
10617 * IRQ status the mailbox/status_block protocol the chip
10618 * uses with the cpu is race prone.
10619 */
Matt Carlson898a56f2009-08-28 14:02:40 +000010620 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -070010621 tw32(GRC_LOCAL_CTRL,
10622 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
10623 } else {
10624 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010625 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -070010626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010627
David S. Millerfac9b832005-05-18 22:46:34 -070010628 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010629 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +000010630 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +000010631 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -070010632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010633 }
10634
Linus Torvalds1da177e2005-04-16 15:20:36 -070010635 /* This part only runs once per second. */
10636 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010637 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -070010638 tg3_periodic_fetch_stats(tp);
10639
Matt Carlsonb0c59432011-05-19 12:12:48 +000010640 if (tp->setlpicnt && !--tp->setlpicnt)
10641 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +000010642
Joe Perches63c3a662011-04-26 08:12:10 +000010643 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010644 u32 mac_stat;
10645 int phy_event;
10646
10647 mac_stat = tr32(MAC_STATUS);
10648
10649 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010650 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010651 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
10652 phy_event = 1;
10653 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
10654 phy_event = 1;
10655
10656 if (phy_event)
Joe Perches953c96e2013-04-09 10:18:14 +000010657 tg3_setup_phy(tp, false);
Joe Perches63c3a662011-04-26 08:12:10 +000010658 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010659 u32 mac_stat = tr32(MAC_STATUS);
10660 int need_setup = 0;
10661
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010662 if (tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010663 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
10664 need_setup = 1;
10665 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010666 if (!tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010667 (mac_stat & (MAC_STATUS_PCS_SYNCED |
10668 MAC_STATUS_SIGNAL_DET))) {
10669 need_setup = 1;
10670 }
10671 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -070010672 if (!tp->serdes_counter) {
10673 tw32_f(MAC_MODE,
10674 (tp->mac_mode &
10675 ~MAC_MODE_PORT_MODE_MASK));
10676 udelay(40);
10677 tw32_f(MAC_MODE, tp->mac_mode);
10678 udelay(40);
10679 }
Joe Perches953c96e2013-04-09 10:18:14 +000010680 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010681 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010682 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010683 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -070010684 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +000010685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010686
10687 tp->timer_counter = tp->timer_multiplier;
10688 }
10689
Michael Chan130b8e42006-09-27 16:00:40 -070010690 /* Heartbeat is only sent once every 2 seconds.
10691 *
10692 * The heartbeat is to tell the ASF firmware that the host
10693 * driver is still alive. In the event that the OS crashes,
10694 * ASF needs to reset the hardware to free up the FIFO space
10695 * that may be filled with rx packets destined for the host.
10696 * If the FIFO is full, ASF will no longer function properly.
10697 *
10698 * Unintended resets have been reported on real time kernels
10699 * where the timer doesn't run on time. Netpoll will also have
10700 * same problem.
10701 *
10702 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
10703 * to check the ring condition when the heartbeat is expiring
10704 * before doing the reset. This will prevent most unintended
10705 * resets.
10706 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010707 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010708 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -070010709 tg3_wait_for_event_ack(tp);
10710
Michael Chanbbadf502006-04-06 21:46:34 -070010711 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -070010712 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -070010713 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010714 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
10715 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -070010716
10717 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010718 }
10719 tp->asf_counter = tp->asf_multiplier;
10720 }
10721
David S. Millerf47c11e2005-06-24 20:18:35 -070010722 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010723
Michael Chanf475f162006-03-27 23:20:14 -080010724restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -070010725 tp->timer.expires = jiffies + tp->timer_offset;
10726 add_timer(&tp->timer);
10727}
10728
Bill Pemberton229b1ad2012-12-03 09:22:59 -050010729static void tg3_timer_init(struct tg3 *tp)
Matt Carlson21f76382012-02-22 12:35:21 +000010730{
10731 if (tg3_flag(tp, TAGGED_STATUS) &&
Joe Perches41535772013-02-16 11:20:04 +000010732 tg3_asic_rev(tp) != ASIC_REV_5717 &&
Matt Carlson21f76382012-02-22 12:35:21 +000010733 !tg3_flag(tp, 57765_CLASS))
10734 tp->timer_offset = HZ;
10735 else
10736 tp->timer_offset = HZ / 10;
10737
10738 BUG_ON(tp->timer_offset > HZ);
10739
10740 tp->timer_multiplier = (HZ / tp->timer_offset);
10741 tp->asf_multiplier = (HZ / tp->timer_offset) *
10742 TG3_FW_UPDATE_FREQ_SEC;
10743
10744 init_timer(&tp->timer);
10745 tp->timer.data = (unsigned long) tp;
10746 tp->timer.function = tg3_timer;
10747}
10748
10749static void tg3_timer_start(struct tg3 *tp)
10750{
10751 tp->asf_counter = tp->asf_multiplier;
10752 tp->timer_counter = tp->timer_multiplier;
10753
10754 tp->timer.expires = jiffies + tp->timer_offset;
10755 add_timer(&tp->timer);
10756}
10757
10758static void tg3_timer_stop(struct tg3 *tp)
10759{
10760 del_timer_sync(&tp->timer);
10761}
10762
10763/* Restart hardware after configuration changes, self-test, etc.
10764 * Invoked with tp->lock held.
10765 */
Joe Perches953c96e2013-04-09 10:18:14 +000010766static int tg3_restart_hw(struct tg3 *tp, bool reset_phy)
Matt Carlson21f76382012-02-22 12:35:21 +000010767 __releases(tp->lock)
10768 __acquires(tp->lock)
10769{
10770 int err;
10771
10772 err = tg3_init_hw(tp, reset_phy);
10773 if (err) {
10774 netdev_err(tp->dev,
10775 "Failed to re-initialize device, aborting\n");
10776 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10777 tg3_full_unlock(tp);
10778 tg3_timer_stop(tp);
10779 tp->irq_sync = 0;
10780 tg3_napi_enable(tp);
10781 dev_close(tp->dev);
10782 tg3_full_lock(tp, 0);
10783 }
10784 return err;
10785}
10786
10787static void tg3_reset_task(struct work_struct *work)
10788{
10789 struct tg3 *tp = container_of(work, struct tg3, reset_task);
10790 int err;
10791
10792 tg3_full_lock(tp, 0);
10793
10794 if (!netif_running(tp->dev)) {
10795 tg3_flag_clear(tp, RESET_TASK_PENDING);
10796 tg3_full_unlock(tp);
10797 return;
10798 }
10799
10800 tg3_full_unlock(tp);
10801
10802 tg3_phy_stop(tp);
10803
10804 tg3_netif_stop(tp);
10805
10806 tg3_full_lock(tp, 1);
10807
10808 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
10809 tp->write32_tx_mbox = tg3_write32_tx_mbox;
10810 tp->write32_rx_mbox = tg3_write_flush_reg32;
10811 tg3_flag_set(tp, MBOX_WRITE_REORDER);
10812 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
10813 }
10814
10815 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Joe Perches953c96e2013-04-09 10:18:14 +000010816 err = tg3_init_hw(tp, true);
Matt Carlson21f76382012-02-22 12:35:21 +000010817 if (err)
10818 goto out;
10819
10820 tg3_netif_start(tp);
10821
10822out:
10823 tg3_full_unlock(tp);
10824
10825 if (!err)
10826 tg3_phy_start(tp);
10827
10828 tg3_flag_clear(tp, RESET_TASK_PENDING);
10829}
10830
Matt Carlson4f125f42009-09-01 12:55:02 +000010831static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -080010832{
David Howells7d12e782006-10-05 14:55:46 +010010833 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010834 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000010835 char *name;
10836 struct tg3_napi *tnapi = &tp->napi[irq_num];
10837
10838 if (tp->irq_cnt == 1)
10839 name = tp->dev->name;
10840 else {
10841 name = &tnapi->irq_lbl[0];
10842 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
10843 name[IFNAMSIZ-1] = 0;
10844 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010845
Joe Perches63c3a662011-04-26 08:12:10 +000010846 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080010847 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000010848 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010849 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010850 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010851 } else {
10852 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000010853 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010854 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010855 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010856 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010857
10858 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010859}
10860
Michael Chan79381092005-04-21 17:13:59 -070010861static int tg3_test_interrupt(struct tg3 *tp)
10862{
Matt Carlson09943a12009-08-28 14:01:57 +000010863 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070010864 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070010865 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010866 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070010867
Michael Chand4bc3922005-05-29 14:59:20 -070010868 if (!netif_running(dev))
10869 return -ENODEV;
10870
Michael Chan79381092005-04-21 17:13:59 -070010871 tg3_disable_ints(tp);
10872
Matt Carlson4f125f42009-09-01 12:55:02 +000010873 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010874
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010875 /*
10876 * Turn off MSI one shot mode. Otherwise this test has no
10877 * observable way to know whether the interrupt was delivered.
10878 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010879 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010880 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
10881 tw32(MSGINT_MODE, val);
10882 }
10883
Matt Carlson4f125f42009-09-01 12:55:02 +000010884 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000010885 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010886 if (err)
10887 return err;
10888
Matt Carlson898a56f2009-08-28 14:02:40 +000010889 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070010890 tg3_enable_ints(tp);
10891
10892 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010893 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070010894
10895 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070010896 u32 int_mbox, misc_host_ctrl;
10897
Matt Carlson898a56f2009-08-28 14:02:40 +000010898 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070010899 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
10900
10901 if ((int_mbox != 0) ||
10902 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
10903 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070010904 break;
Michael Chanb16250e2006-09-27 16:10:14 -070010905 }
10906
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010907 if (tg3_flag(tp, 57765_PLUS) &&
10908 tnapi->hw_status->status_tag != tnapi->last_tag)
10909 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
10910
Michael Chan79381092005-04-21 17:13:59 -070010911 msleep(10);
10912 }
10913
10914 tg3_disable_ints(tp);
10915
Matt Carlson4f125f42009-09-01 12:55:02 +000010916 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010917
Matt Carlson4f125f42009-09-01 12:55:02 +000010918 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010919
10920 if (err)
10921 return err;
10922
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010923 if (intr_ok) {
10924 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000010925 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010926 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
10927 tw32(MSGINT_MODE, val);
10928 }
Michael Chan79381092005-04-21 17:13:59 -070010929 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010930 }
Michael Chan79381092005-04-21 17:13:59 -070010931
10932 return -EIO;
10933}
10934
10935/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
10936 * successfully restored
10937 */
10938static int tg3_test_msi(struct tg3 *tp)
10939{
Michael Chan79381092005-04-21 17:13:59 -070010940 int err;
10941 u16 pci_cmd;
10942
Joe Perches63c3a662011-04-26 08:12:10 +000010943 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070010944 return 0;
10945
10946 /* Turn off SERR reporting in case MSI terminates with Master
10947 * Abort.
10948 */
10949 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
10950 pci_write_config_word(tp->pdev, PCI_COMMAND,
10951 pci_cmd & ~PCI_COMMAND_SERR);
10952
10953 err = tg3_test_interrupt(tp);
10954
10955 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
10956
10957 if (!err)
10958 return 0;
10959
10960 /* other failures */
10961 if (err != -EIO)
10962 return err;
10963
10964 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010965 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
10966 "to INTx mode. Please report this failure to the PCI "
10967 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070010968
Matt Carlson4f125f42009-09-01 12:55:02 +000010969 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000010970
Michael Chan79381092005-04-21 17:13:59 -070010971 pci_disable_msi(tp->pdev);
10972
Joe Perches63c3a662011-04-26 08:12:10 +000010973 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000010974 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070010975
Matt Carlson4f125f42009-09-01 12:55:02 +000010976 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010977 if (err)
10978 return err;
10979
10980 /* Need to reset the chip because the MSI cycle may have terminated
10981 * with Master Abort.
10982 */
David S. Millerf47c11e2005-06-24 20:18:35 -070010983 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010984
Michael Chan944d9802005-05-29 14:57:48 -070010985 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000010986 err = tg3_init_hw(tp, true);
Michael Chan79381092005-04-21 17:13:59 -070010987
David S. Millerf47c11e2005-06-24 20:18:35 -070010988 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010989
10990 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000010991 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070010992
10993 return err;
10994}
10995
Matt Carlson9e9fd122009-01-19 16:57:45 -080010996static int tg3_request_firmware(struct tg3 *tp)
10997{
Nithin Sujir77997ea2013-03-06 17:02:32 +000010998 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson9e9fd122009-01-19 16:57:45 -080010999
11000 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011001 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
11002 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080011003 return -ENOENT;
11004 }
11005
Nithin Sujir77997ea2013-03-06 17:02:32 +000011006 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson9e9fd122009-01-19 16:57:45 -080011007
11008 /* Firmware blob starts with version numbers, followed by
11009 * start address and _full_ length including BSS sections
11010 * (which must be longer than the actual data, of course
11011 */
11012
Nithin Sujir77997ea2013-03-06 17:02:32 +000011013 tp->fw_len = be32_to_cpu(fw_hdr->len); /* includes bss */
11014 if (tp->fw_len < (tp->fw->size - TG3_FW_HDR_LEN)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011015 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
11016 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080011017 release_firmware(tp->fw);
11018 tp->fw = NULL;
11019 return -EINVAL;
11020 }
11021
11022 /* We no longer need firmware; we have it. */
11023 tp->fw_needed = NULL;
11024 return 0;
11025}
11026
Michael Chan91024262012-09-28 07:12:38 +000011027static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000011028{
Michael Chan91024262012-09-28 07:12:38 +000011029 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000011030
Michael Chan91024262012-09-28 07:12:38 +000011031 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000011032 /* We want as many rx rings enabled as there are cpus.
11033 * In multiqueue MSI-X mode, the first MSI-X vector
11034 * only deals with link interrupts, etc, so we add
11035 * one to the number of vectors we are requesting.
11036 */
Michael Chan91024262012-09-28 07:12:38 +000011037 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000011038 }
Matt Carlson679563f2009-09-01 12:55:46 +000011039
Michael Chan91024262012-09-28 07:12:38 +000011040 return irq_cnt;
11041}
11042
11043static bool tg3_enable_msix(struct tg3 *tp)
11044{
11045 int i, rc;
Michael Chan86449942012-10-02 20:31:14 -070011046 struct msix_entry msix_ent[TG3_IRQ_MAX_VECS];
Michael Chan91024262012-09-28 07:12:38 +000011047
Michael Chan09681692012-09-28 07:12:42 +000011048 tp->txq_cnt = tp->txq_req;
11049 tp->rxq_cnt = tp->rxq_req;
11050 if (!tp->rxq_cnt)
11051 tp->rxq_cnt = netif_get_num_default_rss_queues();
Michael Chan91024262012-09-28 07:12:38 +000011052 if (tp->rxq_cnt > tp->rxq_max)
11053 tp->rxq_cnt = tp->rxq_max;
Michael Chancf6d6ea2012-09-28 07:12:43 +000011054
11055 /* Disable multiple TX rings by default. Simple round-robin hardware
11056 * scheduling of the TX rings can cause starvation of rings with
11057 * small packets when other rings have TSO or jumbo packets.
11058 */
11059 if (!tp->txq_req)
11060 tp->txq_cnt = 1;
Michael Chan91024262012-09-28 07:12:38 +000011061
11062 tp->irq_cnt = tg3_irq_count(tp);
11063
Matt Carlson679563f2009-09-01 12:55:46 +000011064 for (i = 0; i < tp->irq_max; i++) {
11065 msix_ent[i].entry = i;
11066 msix_ent[i].vector = 0;
11067 }
11068
11069 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011070 if (rc < 0) {
11071 return false;
11072 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +000011073 if (pci_enable_msix(tp->pdev, msix_ent, rc))
11074 return false;
Joe Perches05dbe002010-02-17 19:44:19 +000011075 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
11076 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000011077 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000011078 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000011079 if (tp->txq_cnt)
11080 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000011081 }
11082
11083 for (i = 0; i < tp->irq_max; i++)
11084 tp->napi[i].irq_vec = msix_ent[i].vector;
11085
Michael Chan49a359e2012-09-28 07:12:37 +000011086 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011087 pci_disable_msix(tp->pdev);
11088 return false;
11089 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000011090
Michael Chan91024262012-09-28 07:12:38 +000011091 if (tp->irq_cnt == 1)
11092 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000011093
Michael Chan91024262012-09-28 07:12:38 +000011094 tg3_flag_set(tp, ENABLE_RSS);
11095
11096 if (tp->txq_cnt > 1)
11097 tg3_flag_set(tp, ENABLE_TSS);
11098
11099 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011100
Matt Carlson679563f2009-09-01 12:55:46 +000011101 return true;
11102}
11103
Matt Carlson07b01732009-08-28 14:01:15 +000011104static void tg3_ints_init(struct tg3 *tp)
11105{
Joe Perches63c3a662011-04-26 08:12:10 +000011106 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
11107 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000011108 /* All MSI supporting chips should support tagged
11109 * status. Assert that this is the case.
11110 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000011111 netdev_warn(tp->dev,
11112 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000011113 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000011114 }
Matt Carlson4f125f42009-09-01 12:55:02 +000011115
Joe Perches63c3a662011-04-26 08:12:10 +000011116 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
11117 tg3_flag_set(tp, USING_MSIX);
11118 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
11119 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000011120
Joe Perches63c3a662011-04-26 08:12:10 +000011121 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011122 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000011123 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000011124 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000011125 if (!tg3_flag(tp, 1SHOT_MSI))
11126 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000011127 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
11128 }
11129defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000011130 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011131 tp->irq_cnt = 1;
11132 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000011133 }
11134
11135 if (tp->irq_cnt == 1) {
11136 tp->txq_cnt = 1;
11137 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011138 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070011139 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000011140 }
Matt Carlson07b01732009-08-28 14:01:15 +000011141}
11142
11143static void tg3_ints_fini(struct tg3 *tp)
11144{
Joe Perches63c3a662011-04-26 08:12:10 +000011145 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000011146 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011147 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000011148 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011149 tg3_flag_clear(tp, USING_MSI);
11150 tg3_flag_clear(tp, USING_MSIX);
11151 tg3_flag_clear(tp, ENABLE_RSS);
11152 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000011153}
11154
Matt Carlsonbe947302012-12-03 19:36:57 +000011155static int tg3_start(struct tg3 *tp, bool reset_phy, bool test_irq,
11156 bool init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011157{
Michael Chand8f4cd32012-09-28 07:12:40 +000011158 struct net_device *dev = tp->dev;
Matt Carlson4f125f42009-09-01 12:55:02 +000011159 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011160
Matt Carlson679563f2009-09-01 12:55:46 +000011161 /*
11162 * Setup interrupts first so we know how
11163 * many NAPI resources to allocate
11164 */
11165 tg3_ints_init(tp);
11166
Matt Carlson90415472011-12-16 13:33:23 +000011167 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000011168
Linus Torvalds1da177e2005-04-16 15:20:36 -070011169 /* The placement of this call is tied
11170 * to the setup and use of Host TX descriptors.
11171 */
11172 err = tg3_alloc_consistent(tp);
11173 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000011174 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011175
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011176 tg3_napi_init(tp);
11177
Matt Carlsonfed97812009-09-01 13:10:19 +000011178 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070011179
Matt Carlson4f125f42009-09-01 12:55:02 +000011180 for (i = 0; i < tp->irq_cnt; i++) {
11181 struct tg3_napi *tnapi = &tp->napi[i];
11182 err = tg3_request_irq(tp, i);
11183 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000011184 for (i--; i >= 0; i--) {
11185 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000011186 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000011187 }
11188 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000011189 }
11190 }
Matt Carlson07b01732009-08-28 14:01:15 +000011191
David S. Millerf47c11e2005-06-24 20:18:35 -070011192 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011193
Michael Chand8f4cd32012-09-28 07:12:40 +000011194 err = tg3_init_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011195 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070011196 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011197 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011198 }
11199
David S. Millerf47c11e2005-06-24 20:18:35 -070011200 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011201
Matt Carlson07b01732009-08-28 14:01:15 +000011202 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000011203 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011204
Michael Chand8f4cd32012-09-28 07:12:40 +000011205 if (test_irq && tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070011206 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070011207
Michael Chan79381092005-04-21 17:13:59 -070011208 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070011209 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070011210 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070011211 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070011212 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070011213
Matt Carlson679563f2009-09-01 12:55:46 +000011214 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070011215 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080011216
Joe Perches63c3a662011-04-26 08:12:10 +000011217 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011218 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011219
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011220 tw32(PCIE_TRANSACTION_CFG,
11221 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011222 }
Michael Chan79381092005-04-21 17:13:59 -070011223 }
11224
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011225 tg3_phy_start(tp);
11226
Michael Chanaed93e02012-07-16 16:24:02 +000011227 tg3_hwmon_open(tp);
11228
David S. Millerf47c11e2005-06-24 20:18:35 -070011229 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011230
Matt Carlson21f76382012-02-22 12:35:21 +000011231 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011232 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011233 tg3_enable_ints(tp);
11234
Matt Carlsonbe947302012-12-03 19:36:57 +000011235 if (init)
11236 tg3_ptp_init(tp);
11237 else
11238 tg3_ptp_resume(tp);
11239
11240
David S. Millerf47c11e2005-06-24 20:18:35 -070011241 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011242
Matt Carlsonfe5f5782009-09-01 13:09:39 +000011243 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011244
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000011245 /*
11246 * Reset loopback feature if it was turned on while the device was down
11247 * make sure that it's installed properly now.
11248 */
11249 if (dev->features & NETIF_F_LOOPBACK)
11250 tg3_set_loopback(dev, dev->features);
11251
Linus Torvalds1da177e2005-04-16 15:20:36 -070011252 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000011253
Matt Carlson679563f2009-09-01 12:55:46 +000011254err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000011255 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11256 struct tg3_napi *tnapi = &tp->napi[i];
11257 free_irq(tnapi->irq_vec, tnapi);
11258 }
Matt Carlson07b01732009-08-28 14:01:15 +000011259
Matt Carlson679563f2009-09-01 12:55:46 +000011260err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000011261 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011262 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000011263 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000011264
11265err_out1:
11266 tg3_ints_fini(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011267
Matt Carlson07b01732009-08-28 14:01:15 +000011268 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011269}
11270
Michael Chan65138592012-09-28 07:12:41 +000011271static void tg3_stop(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011272{
Matt Carlson4f125f42009-09-01 12:55:02 +000011273 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011274
Matt Carlsondb219972011-11-04 09:15:03 +000011275 tg3_reset_task_cancel(tp);
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000011276 tg3_netif_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011277
Matt Carlson21f76382012-02-22 12:35:21 +000011278 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011279
Michael Chanaed93e02012-07-16 16:24:02 +000011280 tg3_hwmon_close(tp);
11281
Matt Carlson24bb4fb2009-10-05 17:55:29 +000011282 tg3_phy_stop(tp);
11283
David S. Millerf47c11e2005-06-24 20:18:35 -070011284 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011285
11286 tg3_disable_ints(tp);
11287
Michael Chan944d9802005-05-29 14:57:48 -070011288 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011289 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011290 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011291
David S. Millerf47c11e2005-06-24 20:18:35 -070011292 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011293
Matt Carlson4f125f42009-09-01 12:55:02 +000011294 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11295 struct tg3_napi *tnapi = &tp->napi[i];
11296 free_irq(tnapi->irq_vec, tnapi);
11297 }
Matt Carlson07b01732009-08-28 14:01:15 +000011298
11299 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011300
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011301 tg3_napi_fini(tp);
11302
Linus Torvalds1da177e2005-04-16 15:20:36 -070011303 tg3_free_consistent(tp);
Michael Chan65138592012-09-28 07:12:41 +000011304}
11305
Michael Chand8f4cd32012-09-28 07:12:40 +000011306static int tg3_open(struct net_device *dev)
11307{
11308 struct tg3 *tp = netdev_priv(dev);
11309 int err;
11310
11311 if (tp->fw_needed) {
11312 err = tg3_request_firmware(tp);
Nithin Sujirc4dab502013-03-06 17:02:34 +000011313 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
11314 if (err) {
11315 netdev_warn(tp->dev, "EEE capability disabled\n");
11316 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11317 } else if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
11318 netdev_warn(tp->dev, "EEE capability restored\n");
11319 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
11320 }
11321 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Michael Chand8f4cd32012-09-28 07:12:40 +000011322 if (err)
11323 return err;
11324 } else if (err) {
11325 netdev_warn(tp->dev, "TSO capability disabled\n");
11326 tg3_flag_clear(tp, TSO_CAPABLE);
11327 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
11328 netdev_notice(tp->dev, "TSO capability restored\n");
11329 tg3_flag_set(tp, TSO_CAPABLE);
11330 }
11331 }
11332
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011333 tg3_carrier_off(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011334
11335 err = tg3_power_up(tp);
11336 if (err)
11337 return err;
11338
11339 tg3_full_lock(tp, 0);
11340
11341 tg3_disable_ints(tp);
11342 tg3_flag_clear(tp, INIT_COMPLETE);
11343
11344 tg3_full_unlock(tp);
11345
Nithin Sujir942d1af2013-04-09 08:48:07 +000011346 err = tg3_start(tp,
11347 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN),
11348 true, true);
Michael Chand8f4cd32012-09-28 07:12:40 +000011349 if (err) {
11350 tg3_frob_aux_power(tp, false);
11351 pci_set_power_state(tp->pdev, PCI_D3hot);
11352 }
Matt Carlsonbe947302012-12-03 19:36:57 +000011353
Matt Carlson7d41e492012-12-03 19:36:58 +000011354 if (tg3_flag(tp, PTP_CAPABLE)) {
11355 tp->ptp_clock = ptp_clock_register(&tp->ptp_info,
11356 &tp->pdev->dev);
11357 if (IS_ERR(tp->ptp_clock))
11358 tp->ptp_clock = NULL;
11359 }
11360
Linus Torvalds1da177e2005-04-16 15:20:36 -070011361 return err;
11362}
11363
11364static int tg3_close(struct net_device *dev)
11365{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011366 struct tg3 *tp = netdev_priv(dev);
11367
Matt Carlsonbe947302012-12-03 19:36:57 +000011368 tg3_ptp_fini(tp);
11369
Michael Chan65138592012-09-28 07:12:41 +000011370 tg3_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011371
11372 /* Clear stats across close / open calls */
11373 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
11374 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011375
11376 tg3_power_down(tp);
11377
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011378 tg3_carrier_off(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011379
11380 return 0;
11381}
11382
11383static inline u64 get_stat64(tg3_stat64_t *val)
11384{
11385 return ((u64)val->high << 32) | ((u64)val->low);
11386}
11387
11388static u64 tg3_calc_crc_errors(struct tg3 *tp)
11389{
11390 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11391
11392 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000011393 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
11394 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011395 u32 val;
11396
11397 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
11398 tg3_writephy(tp, MII_TG3_TEST1,
11399 val | MII_TG3_TEST1_CRC_EN);
11400 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
11401 } else
11402 val = 0;
11403
11404 tp->phy_crc_errors += val;
11405
11406 return tp->phy_crc_errors;
11407 }
11408
11409 return get_stat64(&hw_stats->rx_fcs_errors);
11410}
11411
11412#define ESTAT_ADD(member) \
11413 estats->member = old_estats->member + \
11414 get_stat64(&hw_stats->member)
11415
11416static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
11417{
11418 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
11419 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11420
11421 ESTAT_ADD(rx_octets);
11422 ESTAT_ADD(rx_fragments);
11423 ESTAT_ADD(rx_ucast_packets);
11424 ESTAT_ADD(rx_mcast_packets);
11425 ESTAT_ADD(rx_bcast_packets);
11426 ESTAT_ADD(rx_fcs_errors);
11427 ESTAT_ADD(rx_align_errors);
11428 ESTAT_ADD(rx_xon_pause_rcvd);
11429 ESTAT_ADD(rx_xoff_pause_rcvd);
11430 ESTAT_ADD(rx_mac_ctrl_rcvd);
11431 ESTAT_ADD(rx_xoff_entered);
11432 ESTAT_ADD(rx_frame_too_long_errors);
11433 ESTAT_ADD(rx_jabbers);
11434 ESTAT_ADD(rx_undersize_packets);
11435 ESTAT_ADD(rx_in_length_errors);
11436 ESTAT_ADD(rx_out_length_errors);
11437 ESTAT_ADD(rx_64_or_less_octet_packets);
11438 ESTAT_ADD(rx_65_to_127_octet_packets);
11439 ESTAT_ADD(rx_128_to_255_octet_packets);
11440 ESTAT_ADD(rx_256_to_511_octet_packets);
11441 ESTAT_ADD(rx_512_to_1023_octet_packets);
11442 ESTAT_ADD(rx_1024_to_1522_octet_packets);
11443 ESTAT_ADD(rx_1523_to_2047_octet_packets);
11444 ESTAT_ADD(rx_2048_to_4095_octet_packets);
11445 ESTAT_ADD(rx_4096_to_8191_octet_packets);
11446 ESTAT_ADD(rx_8192_to_9022_octet_packets);
11447
11448 ESTAT_ADD(tx_octets);
11449 ESTAT_ADD(tx_collisions);
11450 ESTAT_ADD(tx_xon_sent);
11451 ESTAT_ADD(tx_xoff_sent);
11452 ESTAT_ADD(tx_flow_control);
11453 ESTAT_ADD(tx_mac_errors);
11454 ESTAT_ADD(tx_single_collisions);
11455 ESTAT_ADD(tx_mult_collisions);
11456 ESTAT_ADD(tx_deferred);
11457 ESTAT_ADD(tx_excessive_collisions);
11458 ESTAT_ADD(tx_late_collisions);
11459 ESTAT_ADD(tx_collide_2times);
11460 ESTAT_ADD(tx_collide_3times);
11461 ESTAT_ADD(tx_collide_4times);
11462 ESTAT_ADD(tx_collide_5times);
11463 ESTAT_ADD(tx_collide_6times);
11464 ESTAT_ADD(tx_collide_7times);
11465 ESTAT_ADD(tx_collide_8times);
11466 ESTAT_ADD(tx_collide_9times);
11467 ESTAT_ADD(tx_collide_10times);
11468 ESTAT_ADD(tx_collide_11times);
11469 ESTAT_ADD(tx_collide_12times);
11470 ESTAT_ADD(tx_collide_13times);
11471 ESTAT_ADD(tx_collide_14times);
11472 ESTAT_ADD(tx_collide_15times);
11473 ESTAT_ADD(tx_ucast_packets);
11474 ESTAT_ADD(tx_mcast_packets);
11475 ESTAT_ADD(tx_bcast_packets);
11476 ESTAT_ADD(tx_carrier_sense_errors);
11477 ESTAT_ADD(tx_discards);
11478 ESTAT_ADD(tx_errors);
11479
11480 ESTAT_ADD(dma_writeq_full);
11481 ESTAT_ADD(dma_write_prioq_full);
11482 ESTAT_ADD(rxbds_empty);
11483 ESTAT_ADD(rx_discards);
11484 ESTAT_ADD(rx_errors);
11485 ESTAT_ADD(rx_threshold_hit);
11486
11487 ESTAT_ADD(dma_readq_full);
11488 ESTAT_ADD(dma_read_prioq_full);
11489 ESTAT_ADD(tx_comp_queue_full);
11490
11491 ESTAT_ADD(ring_set_send_prod_index);
11492 ESTAT_ADD(ring_status_update);
11493 ESTAT_ADD(nic_irqs);
11494 ESTAT_ADD(nic_avoided_irqs);
11495 ESTAT_ADD(nic_tx_threshold_hit);
11496
Matt Carlson4452d092011-05-19 12:12:51 +000011497 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011498}
11499
Matt Carlson65ec6982012-02-28 23:33:37 +000011500static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011501{
Eric Dumazet511d2222010-07-07 20:44:24 +000011502 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011503 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11504
Linus Torvalds1da177e2005-04-16 15:20:36 -070011505 stats->rx_packets = old_stats->rx_packets +
11506 get_stat64(&hw_stats->rx_ucast_packets) +
11507 get_stat64(&hw_stats->rx_mcast_packets) +
11508 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011509
Linus Torvalds1da177e2005-04-16 15:20:36 -070011510 stats->tx_packets = old_stats->tx_packets +
11511 get_stat64(&hw_stats->tx_ucast_packets) +
11512 get_stat64(&hw_stats->tx_mcast_packets) +
11513 get_stat64(&hw_stats->tx_bcast_packets);
11514
11515 stats->rx_bytes = old_stats->rx_bytes +
11516 get_stat64(&hw_stats->rx_octets);
11517 stats->tx_bytes = old_stats->tx_bytes +
11518 get_stat64(&hw_stats->tx_octets);
11519
11520 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070011521 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011522 stats->tx_errors = old_stats->tx_errors +
11523 get_stat64(&hw_stats->tx_errors) +
11524 get_stat64(&hw_stats->tx_mac_errors) +
11525 get_stat64(&hw_stats->tx_carrier_sense_errors) +
11526 get_stat64(&hw_stats->tx_discards);
11527
11528 stats->multicast = old_stats->multicast +
11529 get_stat64(&hw_stats->rx_mcast_packets);
11530 stats->collisions = old_stats->collisions +
11531 get_stat64(&hw_stats->tx_collisions);
11532
11533 stats->rx_length_errors = old_stats->rx_length_errors +
11534 get_stat64(&hw_stats->rx_frame_too_long_errors) +
11535 get_stat64(&hw_stats->rx_undersize_packets);
11536
11537 stats->rx_over_errors = old_stats->rx_over_errors +
11538 get_stat64(&hw_stats->rxbds_empty);
11539 stats->rx_frame_errors = old_stats->rx_frame_errors +
11540 get_stat64(&hw_stats->rx_align_errors);
11541 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11542 get_stat64(&hw_stats->tx_discards);
11543 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11544 get_stat64(&hw_stats->tx_carrier_sense_errors);
11545
11546 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000011547 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011548
John W. Linville4f63b872005-09-12 14:43:18 -070011549 stats->rx_missed_errors = old_stats->rx_missed_errors +
11550 get_stat64(&hw_stats->rx_discards);
11551
Eric Dumazetb0057c52010-10-10 19:55:52 +000011552 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000011553 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011554}
11555
Linus Torvalds1da177e2005-04-16 15:20:36 -070011556static int tg3_get_regs_len(struct net_device *dev)
11557{
Matt Carlson97bd8e42011-04-13 11:05:04 +000011558 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011559}
11560
11561static void tg3_get_regs(struct net_device *dev,
11562 struct ethtool_regs *regs, void *_p)
11563{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011564 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011565
11566 regs->version = 0;
11567
Matt Carlson97bd8e42011-04-13 11:05:04 +000011568 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011569
Matt Carlson80096062010-08-02 11:26:06 +000011570 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011571 return;
11572
David S. Millerf47c11e2005-06-24 20:18:35 -070011573 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011574
Matt Carlson97bd8e42011-04-13 11:05:04 +000011575 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011576
David S. Millerf47c11e2005-06-24 20:18:35 -070011577 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011578}
11579
11580static int tg3_get_eeprom_len(struct net_device *dev)
11581{
11582 struct tg3 *tp = netdev_priv(dev);
11583
11584 return tp->nvram_size;
11585}
11586
Linus Torvalds1da177e2005-04-16 15:20:36 -070011587static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11588{
11589 struct tg3 *tp = netdev_priv(dev);
11590 int ret;
11591 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080011592 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011593 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011594
Joe Perches63c3a662011-04-26 08:12:10 +000011595 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011596 return -EINVAL;
11597
Matt Carlson80096062010-08-02 11:26:06 +000011598 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011599 return -EAGAIN;
11600
Linus Torvalds1da177e2005-04-16 15:20:36 -070011601 offset = eeprom->offset;
11602 len = eeprom->len;
11603 eeprom->len = 0;
11604
11605 eeprom->magic = TG3_EEPROM_MAGIC;
11606
11607 if (offset & 3) {
11608 /* adjustments to start on required 4 byte boundary */
11609 b_offset = offset & 3;
11610 b_count = 4 - b_offset;
11611 if (b_count > len) {
11612 /* i.e. offset=1 len=2 */
11613 b_count = len;
11614 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000011615 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011616 if (ret)
11617 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000011618 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011619 len -= b_count;
11620 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011621 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011622 }
11623
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011624 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011625 pd = &data[eeprom->len];
11626 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011627 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011628 if (ret) {
11629 eeprom->len += i;
11630 return ret;
11631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011632 memcpy(pd + i, &val, 4);
11633 }
11634 eeprom->len += i;
11635
11636 if (len & 3) {
11637 /* read last bytes not ending on 4 byte boundary */
11638 pd = &data[eeprom->len];
11639 b_count = len & 3;
11640 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011641 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011642 if (ret)
11643 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011644 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011645 eeprom->len += b_count;
11646 }
11647 return 0;
11648}
11649
Linus Torvalds1da177e2005-04-16 15:20:36 -070011650static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11651{
11652 struct tg3 *tp = netdev_priv(dev);
11653 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011654 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011655 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011656 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011657
Matt Carlson80096062010-08-02 11:26:06 +000011658 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011659 return -EAGAIN;
11660
Joe Perches63c3a662011-04-26 08:12:10 +000011661 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000011662 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011663 return -EINVAL;
11664
11665 offset = eeprom->offset;
11666 len = eeprom->len;
11667
11668 if ((b_offset = (offset & 3))) {
11669 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011670 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011671 if (ret)
11672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011673 len += b_offset;
11674 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070011675 if (len < 4)
11676 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011677 }
11678
11679 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070011680 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011681 /* adjustments to end on required 4 byte boundary */
11682 odd_len = 1;
11683 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011684 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011685 if (ret)
11686 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011687 }
11688
11689 buf = data;
11690 if (b_offset || odd_len) {
11691 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011692 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011693 return -ENOMEM;
11694 if (b_offset)
11695 memcpy(buf, &start, 4);
11696 if (odd_len)
11697 memcpy(buf+len-4, &end, 4);
11698 memcpy(buf + b_offset, data, eeprom->len);
11699 }
11700
11701 ret = tg3_nvram_write_block(tp, offset, len, buf);
11702
11703 if (buf != data)
11704 kfree(buf);
11705
11706 return ret;
11707}
11708
11709static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11710{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011711 struct tg3 *tp = netdev_priv(dev);
11712
Joe Perches63c3a662011-04-26 08:12:10 +000011713 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011714 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011715 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011716 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011717 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11718 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011719 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011720
Linus Torvalds1da177e2005-04-16 15:20:36 -070011721 cmd->supported = (SUPPORTED_Autoneg);
11722
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011723 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011724 cmd->supported |= (SUPPORTED_1000baseT_Half |
11725 SUPPORTED_1000baseT_Full);
11726
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011727 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011728 cmd->supported |= (SUPPORTED_100baseT_Half |
11729 SUPPORTED_100baseT_Full |
11730 SUPPORTED_10baseT_Half |
11731 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080011732 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070011733 cmd->port = PORT_TP;
11734 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011735 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070011736 cmd->port = PORT_FIBRE;
11737 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011738
Linus Torvalds1da177e2005-04-16 15:20:36 -070011739 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000011740 if (tg3_flag(tp, PAUSE_AUTONEG)) {
11741 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
11742 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11743 cmd->advertising |= ADVERTISED_Pause;
11744 } else {
11745 cmd->advertising |= ADVERTISED_Pause |
11746 ADVERTISED_Asym_Pause;
11747 }
11748 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11749 cmd->advertising |= ADVERTISED_Asym_Pause;
11750 }
11751 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011752 if (netif_running(dev) && tp->link_up) {
David Decotigny70739492011-04-27 18:32:40 +000011753 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011754 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000011755 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011756 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
11757 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
11758 cmd->eth_tp_mdix = ETH_TP_MDI_X;
11759 else
11760 cmd->eth_tp_mdix = ETH_TP_MDI;
11761 }
Matt Carlson64c22182010-10-14 10:37:44 +000011762 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000011763 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
11764 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011765 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011766 }
Matt Carlson882e9792009-09-01 13:21:36 +000011767 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011768 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011769 cmd->autoneg = tp->link_config.autoneg;
11770 cmd->maxtxpkt = 0;
11771 cmd->maxrxpkt = 0;
11772 return 0;
11773}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011774
Linus Torvalds1da177e2005-04-16 15:20:36 -070011775static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11776{
11777 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000011778 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011779
Joe Perches63c3a662011-04-26 08:12:10 +000011780 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011781 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011782 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011783 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011784 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11785 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011786 }
11787
Matt Carlson7e5856b2009-02-25 14:23:01 +000011788 if (cmd->autoneg != AUTONEG_ENABLE &&
11789 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070011790 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011791
11792 if (cmd->autoneg == AUTONEG_DISABLE &&
11793 cmd->duplex != DUPLEX_FULL &&
11794 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070011795 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011796
Matt Carlson7e5856b2009-02-25 14:23:01 +000011797 if (cmd->autoneg == AUTONEG_ENABLE) {
11798 u32 mask = ADVERTISED_Autoneg |
11799 ADVERTISED_Pause |
11800 ADVERTISED_Asym_Pause;
11801
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011802 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011803 mask |= ADVERTISED_1000baseT_Half |
11804 ADVERTISED_1000baseT_Full;
11805
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011806 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011807 mask |= ADVERTISED_100baseT_Half |
11808 ADVERTISED_100baseT_Full |
11809 ADVERTISED_10baseT_Half |
11810 ADVERTISED_10baseT_Full |
11811 ADVERTISED_TP;
11812 else
11813 mask |= ADVERTISED_FIBRE;
11814
11815 if (cmd->advertising & ~mask)
11816 return -EINVAL;
11817
11818 mask &= (ADVERTISED_1000baseT_Half |
11819 ADVERTISED_1000baseT_Full |
11820 ADVERTISED_100baseT_Half |
11821 ADVERTISED_100baseT_Full |
11822 ADVERTISED_10baseT_Half |
11823 ADVERTISED_10baseT_Full);
11824
11825 cmd->advertising &= mask;
11826 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011827 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000011828 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011829 return -EINVAL;
11830
11831 if (cmd->duplex != DUPLEX_FULL)
11832 return -EINVAL;
11833 } else {
David Decotigny25db0332011-04-27 18:32:39 +000011834 if (speed != SPEED_100 &&
11835 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011836 return -EINVAL;
11837 }
11838 }
11839
David S. Millerf47c11e2005-06-24 20:18:35 -070011840 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011841
11842 tp->link_config.autoneg = cmd->autoneg;
11843 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070011844 tp->link_config.advertising = (cmd->advertising |
11845 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000011846 tp->link_config.speed = SPEED_UNKNOWN;
11847 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011848 } else {
11849 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000011850 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011851 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011852 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011853
Nithin Sujirfdad8de2013-04-09 08:48:08 +000011854 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
11855
Nithin Sujirce20f162013-04-09 08:48:04 +000011856 tg3_warn_mgmt_link_flap(tp);
11857
Linus Torvalds1da177e2005-04-16 15:20:36 -070011858 if (netif_running(dev))
Joe Perches953c96e2013-04-09 10:18:14 +000011859 tg3_setup_phy(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011860
David S. Millerf47c11e2005-06-24 20:18:35 -070011861 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011862
Linus Torvalds1da177e2005-04-16 15:20:36 -070011863 return 0;
11864}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011865
Linus Torvalds1da177e2005-04-16 15:20:36 -070011866static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
11867{
11868 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011869
Rick Jones68aad782011-11-07 13:29:27 +000011870 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
11871 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
11872 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
11873 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011874}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011875
Linus Torvalds1da177e2005-04-16 15:20:36 -070011876static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11877{
11878 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011879
Joe Perches63c3a662011-04-26 08:12:10 +000011880 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070011881 wol->supported = WAKE_MAGIC;
11882 else
11883 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011884 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011885 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011886 wol->wolopts = WAKE_MAGIC;
11887 memset(&wol->sopass, 0, sizeof(wol->sopass));
11888}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011889
Linus Torvalds1da177e2005-04-16 15:20:36 -070011890static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11891{
11892 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011893 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011894
Linus Torvalds1da177e2005-04-16 15:20:36 -070011895 if (wol->wolopts & ~WAKE_MAGIC)
11896 return -EINVAL;
11897 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011898 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011899 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011900
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011901 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
11902
David S. Millerf47c11e2005-06-24 20:18:35 -070011903 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011904 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000011905 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011906 else
Joe Perches63c3a662011-04-26 08:12:10 +000011907 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070011908 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011909
Linus Torvalds1da177e2005-04-16 15:20:36 -070011910 return 0;
11911}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011912
Linus Torvalds1da177e2005-04-16 15:20:36 -070011913static u32 tg3_get_msglevel(struct net_device *dev)
11914{
11915 struct tg3 *tp = netdev_priv(dev);
11916 return tp->msg_enable;
11917}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011918
Linus Torvalds1da177e2005-04-16 15:20:36 -070011919static void tg3_set_msglevel(struct net_device *dev, u32 value)
11920{
11921 struct tg3 *tp = netdev_priv(dev);
11922 tp->msg_enable = value;
11923}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011924
Linus Torvalds1da177e2005-04-16 15:20:36 -070011925static int tg3_nway_reset(struct net_device *dev)
11926{
11927 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011928 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011929
Linus Torvalds1da177e2005-04-16 15:20:36 -070011930 if (!netif_running(dev))
11931 return -EAGAIN;
11932
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011933 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070011934 return -EINVAL;
11935
Nithin Sujirce20f162013-04-09 08:48:04 +000011936 tg3_warn_mgmt_link_flap(tp);
11937
Joe Perches63c3a662011-04-26 08:12:10 +000011938 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011939 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011940 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011941 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011942 } else {
11943 u32 bmcr;
11944
11945 spin_lock_bh(&tp->lock);
11946 r = -EINVAL;
11947 tg3_readphy(tp, MII_BMCR, &bmcr);
11948 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
11949 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011950 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011951 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
11952 BMCR_ANENABLE);
11953 r = 0;
11954 }
11955 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011956 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011957
Linus Torvalds1da177e2005-04-16 15:20:36 -070011958 return r;
11959}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011960
Linus Torvalds1da177e2005-04-16 15:20:36 -070011961static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11962{
11963 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011964
Matt Carlson2c49a442010-09-30 10:34:35 +000011965 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000011966 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000011967 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080011968 else
11969 ering->rx_jumbo_max_pending = 0;
11970
11971 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011972
11973 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000011974 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080011975 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
11976 else
11977 ering->rx_jumbo_pending = 0;
11978
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011979 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011980}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011981
Linus Torvalds1da177e2005-04-16 15:20:36 -070011982static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11983{
11984 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000011985 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011986
Matt Carlson2c49a442010-09-30 10:34:35 +000011987 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
11988 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070011989 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
11990 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011991 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070011992 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011993 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011994
Michael Chanbbe832c2005-06-24 20:20:04 -070011995 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011996 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011997 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011998 irq_sync = 1;
11999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012000
Michael Chanbbe832c2005-06-24 20:20:04 -070012001 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012002
Linus Torvalds1da177e2005-04-16 15:20:36 -070012003 tp->rx_pending = ering->rx_pending;
12004
Joe Perches63c3a662011-04-26 08:12:10 +000012005 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012006 tp->rx_pending > 63)
12007 tp->rx_pending = 63;
12008 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000012009
Matt Carlson6fd45cb2010-09-15 08:59:57 +000012010 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000012011 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012012
12013 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070012014 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012015 err = tg3_restart_hw(tp, false);
Michael Chanb9ec6c12006-07-25 16:37:27 -070012016 if (!err)
12017 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012018 }
12019
David S. Millerf47c11e2005-06-24 20:18:35 -070012020 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012021
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012022 if (irq_sync && !err)
12023 tg3_phy_start(tp);
12024
Michael Chanb9ec6c12006-07-25 16:37:27 -070012025 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012026}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012027
Linus Torvalds1da177e2005-04-16 15:20:36 -070012028static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12029{
12030 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012031
Joe Perches63c3a662011-04-26 08:12:10 +000012032 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080012033
Matt Carlson4a2db502011-12-08 14:40:17 +000012034 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080012035 epause->rx_pause = 1;
12036 else
12037 epause->rx_pause = 0;
12038
Matt Carlson4a2db502011-12-08 14:40:17 +000012039 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080012040 epause->tx_pause = 1;
12041 else
12042 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012043}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012044
Linus Torvalds1da177e2005-04-16 15:20:36 -070012045static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12046{
12047 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012048 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012049
Nithin Sujirce20f162013-04-09 08:48:04 +000012050 if (tp->link_config.autoneg == AUTONEG_ENABLE)
12051 tg3_warn_mgmt_link_flap(tp);
12052
Joe Perches63c3a662011-04-26 08:12:10 +000012053 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000012054 u32 newadv;
12055 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012056
Matt Carlson27121682010-02-17 15:16:57 +000012057 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012058
Matt Carlson27121682010-02-17 15:16:57 +000012059 if (!(phydev->supported & SUPPORTED_Pause) ||
12060 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000012061 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000012062 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012063
Matt Carlson27121682010-02-17 15:16:57 +000012064 tp->link_config.flowctrl = 0;
12065 if (epause->rx_pause) {
12066 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012067
Matt Carlson27121682010-02-17 15:16:57 +000012068 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080012069 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000012070 newadv = ADVERTISED_Pause;
12071 } else
12072 newadv = ADVERTISED_Pause |
12073 ADVERTISED_Asym_Pause;
12074 } else if (epause->tx_pause) {
12075 tp->link_config.flowctrl |= FLOW_CTRL_TX;
12076 newadv = ADVERTISED_Asym_Pause;
12077 } else
12078 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012079
Matt Carlson27121682010-02-17 15:16:57 +000012080 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012081 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012082 else
Joe Perches63c3a662011-04-26 08:12:10 +000012083 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012084
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012085 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000012086 u32 oldadv = phydev->advertising &
12087 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
12088 if (oldadv != newadv) {
12089 phydev->advertising &=
12090 ~(ADVERTISED_Pause |
12091 ADVERTISED_Asym_Pause);
12092 phydev->advertising |= newadv;
12093 if (phydev->autoneg) {
12094 /*
12095 * Always renegotiate the link to
12096 * inform our link partner of our
12097 * flow control settings, even if the
12098 * flow control is forced. Let
12099 * tg3_adjust_link() do the final
12100 * flow control setup.
12101 */
12102 return phy_start_aneg(phydev);
12103 }
12104 }
12105
12106 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012107 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000012108 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012109 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000012110 ~(ADVERTISED_Pause |
12111 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012112 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012113 }
12114 } else {
12115 int irq_sync = 0;
12116
12117 if (netif_running(dev)) {
12118 tg3_netif_stop(tp);
12119 irq_sync = 1;
12120 }
12121
12122 tg3_full_lock(tp, irq_sync);
12123
12124 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012125 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012126 else
Joe Perches63c3a662011-04-26 08:12:10 +000012127 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012128 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012129 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012130 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012131 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012132 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012133 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012134 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012135 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012136
12137 if (netif_running(dev)) {
12138 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012139 err = tg3_restart_hw(tp, false);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012140 if (!err)
12141 tg3_netif_start(tp);
12142 }
12143
12144 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012146
Nithin Sujirfdad8de2013-04-09 08:48:08 +000012147 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
12148
Michael Chanb9ec6c12006-07-25 16:37:27 -070012149 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012150}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012151
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012152static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012153{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012154 switch (sset) {
12155 case ETH_SS_TEST:
12156 return TG3_NUM_TEST;
12157 case ETH_SS_STATS:
12158 return TG3_NUM_STATS;
12159 default:
12160 return -EOPNOTSUPP;
12161 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070012162}
12163
Matt Carlson90415472011-12-16 13:33:23 +000012164static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
12165 u32 *rules __always_unused)
12166{
12167 struct tg3 *tp = netdev_priv(dev);
12168
12169 if (!tg3_flag(tp, SUPPORT_MSIX))
12170 return -EOPNOTSUPP;
12171
12172 switch (info->cmd) {
12173 case ETHTOOL_GRXRINGS:
12174 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000012175 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000012176 else {
12177 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000012178 if (info->data > TG3_RSS_MAX_NUM_QS)
12179 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000012180 }
12181
12182 /* The first interrupt vector only
12183 * handles link interrupts.
12184 */
12185 info->data -= 1;
12186 return 0;
12187
12188 default:
12189 return -EOPNOTSUPP;
12190 }
12191}
12192
12193static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
12194{
12195 u32 size = 0;
12196 struct tg3 *tp = netdev_priv(dev);
12197
12198 if (tg3_flag(tp, SUPPORT_MSIX))
12199 size = TG3_RSS_INDIR_TBL_SIZE;
12200
12201 return size;
12202}
12203
12204static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
12205{
12206 struct tg3 *tp = netdev_priv(dev);
12207 int i;
12208
12209 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12210 indir[i] = tp->rss_ind_tbl[i];
12211
12212 return 0;
12213}
12214
12215static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
12216{
12217 struct tg3 *tp = netdev_priv(dev);
12218 size_t i;
12219
12220 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12221 tp->rss_ind_tbl[i] = indir[i];
12222
12223 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
12224 return 0;
12225
12226 /* It is legal to write the indirection
12227 * table while the device is running.
12228 */
12229 tg3_full_lock(tp, 0);
12230 tg3_rss_write_indir_tbl(tp);
12231 tg3_full_unlock(tp);
12232
12233 return 0;
12234}
12235
Michael Chan09681692012-09-28 07:12:42 +000012236static void tg3_get_channels(struct net_device *dev,
12237 struct ethtool_channels *channel)
12238{
12239 struct tg3 *tp = netdev_priv(dev);
12240 u32 deflt_qs = netif_get_num_default_rss_queues();
12241
12242 channel->max_rx = tp->rxq_max;
12243 channel->max_tx = tp->txq_max;
12244
12245 if (netif_running(dev)) {
12246 channel->rx_count = tp->rxq_cnt;
12247 channel->tx_count = tp->txq_cnt;
12248 } else {
12249 if (tp->rxq_req)
12250 channel->rx_count = tp->rxq_req;
12251 else
12252 channel->rx_count = min(deflt_qs, tp->rxq_max);
12253
12254 if (tp->txq_req)
12255 channel->tx_count = tp->txq_req;
12256 else
12257 channel->tx_count = min(deflt_qs, tp->txq_max);
12258 }
12259}
12260
12261static int tg3_set_channels(struct net_device *dev,
12262 struct ethtool_channels *channel)
12263{
12264 struct tg3 *tp = netdev_priv(dev);
12265
12266 if (!tg3_flag(tp, SUPPORT_MSIX))
12267 return -EOPNOTSUPP;
12268
12269 if (channel->rx_count > tp->rxq_max ||
12270 channel->tx_count > tp->txq_max)
12271 return -EINVAL;
12272
12273 tp->rxq_req = channel->rx_count;
12274 tp->txq_req = channel->tx_count;
12275
12276 if (!netif_running(dev))
12277 return 0;
12278
12279 tg3_stop(tp);
12280
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012281 tg3_carrier_off(tp);
Michael Chan09681692012-09-28 07:12:42 +000012282
Matt Carlsonbe947302012-12-03 19:36:57 +000012283 tg3_start(tp, true, false, false);
Michael Chan09681692012-09-28 07:12:42 +000012284
12285 return 0;
12286}
12287
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012288static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012289{
12290 switch (stringset) {
12291 case ETH_SS_STATS:
12292 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
12293 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070012294 case ETH_SS_TEST:
12295 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
12296 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012297 default:
12298 WARN_ON(1); /* we need a WARN() */
12299 break;
12300 }
12301}
12302
stephen hemminger81b87092011-04-04 08:43:50 +000012303static int tg3_set_phys_id(struct net_device *dev,
12304 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070012305{
12306 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070012307
12308 if (!netif_running(tp->dev))
12309 return -EAGAIN;
12310
stephen hemminger81b87092011-04-04 08:43:50 +000012311 switch (state) {
12312 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000012313 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070012314
stephen hemminger81b87092011-04-04 08:43:50 +000012315 case ETHTOOL_ID_ON:
12316 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12317 LED_CTRL_1000MBPS_ON |
12318 LED_CTRL_100MBPS_ON |
12319 LED_CTRL_10MBPS_ON |
12320 LED_CTRL_TRAFFIC_OVERRIDE |
12321 LED_CTRL_TRAFFIC_BLINK |
12322 LED_CTRL_TRAFFIC_LED);
12323 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012324
stephen hemminger81b87092011-04-04 08:43:50 +000012325 case ETHTOOL_ID_OFF:
12326 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12327 LED_CTRL_TRAFFIC_OVERRIDE);
12328 break;
Michael Chan4009a932005-09-05 17:52:54 -070012329
stephen hemminger81b87092011-04-04 08:43:50 +000012330 case ETHTOOL_ID_INACTIVE:
12331 tw32(MAC_LED_CTRL, tp->led_ctrl);
12332 break;
Michael Chan4009a932005-09-05 17:52:54 -070012333 }
stephen hemminger81b87092011-04-04 08:43:50 +000012334
Michael Chan4009a932005-09-05 17:52:54 -070012335 return 0;
12336}
12337
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012338static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012339 struct ethtool_stats *estats, u64 *tmp_stats)
12340{
12341 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000012342
Matt Carlsonb546e462012-02-13 15:20:09 +000012343 if (tp->hw_stats)
12344 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
12345 else
12346 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012347}
12348
Matt Carlson535a4902011-07-20 10:20:56 +000012349static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000012350{
12351 int i;
12352 __be32 *buf;
12353 u32 offset = 0, len = 0;
12354 u32 magic, val;
12355
Joe Perches63c3a662011-04-26 08:12:10 +000012356 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000012357 return NULL;
12358
12359 if (magic == TG3_EEPROM_MAGIC) {
12360 for (offset = TG3_NVM_DIR_START;
12361 offset < TG3_NVM_DIR_END;
12362 offset += TG3_NVM_DIRENT_SIZE) {
12363 if (tg3_nvram_read(tp, offset, &val))
12364 return NULL;
12365
12366 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
12367 TG3_NVM_DIRTYPE_EXTVPD)
12368 break;
12369 }
12370
12371 if (offset != TG3_NVM_DIR_END) {
12372 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
12373 if (tg3_nvram_read(tp, offset + 4, &offset))
12374 return NULL;
12375
12376 offset = tg3_nvram_logical_addr(tp, offset);
12377 }
12378 }
12379
12380 if (!offset || !len) {
12381 offset = TG3_NVM_VPD_OFF;
12382 len = TG3_NVM_VPD_LEN;
12383 }
12384
12385 buf = kmalloc(len, GFP_KERNEL);
12386 if (buf == NULL)
12387 return NULL;
12388
12389 if (magic == TG3_EEPROM_MAGIC) {
12390 for (i = 0; i < len; i += 4) {
12391 /* The data is in little-endian format in NVRAM.
12392 * Use the big-endian read routines to preserve
12393 * the byte order as it exists in NVRAM.
12394 */
12395 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
12396 goto error;
12397 }
12398 } else {
12399 u8 *ptr;
12400 ssize_t cnt;
12401 unsigned int pos = 0;
12402
12403 ptr = (u8 *)&buf[0];
12404 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
12405 cnt = pci_read_vpd(tp->pdev, pos,
12406 len - pos, ptr);
12407 if (cnt == -ETIMEDOUT || cnt == -EINTR)
12408 cnt = 0;
12409 else if (cnt < 0)
12410 goto error;
12411 }
12412 if (pos != len)
12413 goto error;
12414 }
12415
Matt Carlson535a4902011-07-20 10:20:56 +000012416 *vpdlen = len;
12417
Matt Carlsonc3e94502011-04-13 11:05:08 +000012418 return buf;
12419
12420error:
12421 kfree(buf);
12422 return NULL;
12423}
12424
Michael Chan566f86a2005-05-29 14:56:58 -070012425#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080012426#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
12427#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
12428#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000012429#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
12430#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000012431#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070012432#define NVRAM_SELFBOOT_HW_SIZE 0x20
12433#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070012434
12435static int tg3_test_nvram(struct tg3 *tp)
12436{
Matt Carlson535a4902011-07-20 10:20:56 +000012437 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012438 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012439 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070012440
Joe Perches63c3a662011-04-26 08:12:10 +000012441 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000012442 return 0;
12443
Matt Carlsone4f34112009-02-25 14:25:00 +000012444 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012445 return -EIO;
12446
Michael Chan1b277772006-03-20 22:27:48 -080012447 if (magic == TG3_EEPROM_MAGIC)
12448 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070012449 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080012450 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
12451 TG3_EEPROM_SB_FORMAT_1) {
12452 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
12453 case TG3_EEPROM_SB_REVISION_0:
12454 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
12455 break;
12456 case TG3_EEPROM_SB_REVISION_2:
12457 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
12458 break;
12459 case TG3_EEPROM_SB_REVISION_3:
12460 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
12461 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000012462 case TG3_EEPROM_SB_REVISION_4:
12463 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
12464 break;
12465 case TG3_EEPROM_SB_REVISION_5:
12466 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
12467 break;
12468 case TG3_EEPROM_SB_REVISION_6:
12469 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
12470 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080012471 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000012472 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080012473 }
12474 } else
Michael Chan1b277772006-03-20 22:27:48 -080012475 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070012476 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12477 size = NVRAM_SELFBOOT_HW_SIZE;
12478 else
Michael Chan1b277772006-03-20 22:27:48 -080012479 return -EIO;
12480
12481 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070012482 if (buf == NULL)
12483 return -ENOMEM;
12484
Michael Chan1b277772006-03-20 22:27:48 -080012485 err = -EIO;
12486 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012487 err = tg3_nvram_read_be32(tp, i, &buf[j]);
12488 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070012489 break;
Michael Chan566f86a2005-05-29 14:56:58 -070012490 }
Michael Chan1b277772006-03-20 22:27:48 -080012491 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070012492 goto out;
12493
Michael Chan1b277772006-03-20 22:27:48 -080012494 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000012495 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080012496 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012497 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080012498 u8 *buf8 = (u8 *) buf, csum8 = 0;
12499
Al Virob9fc7dc2007-12-17 22:59:57 -080012500 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080012501 TG3_EEPROM_SB_REVISION_2) {
12502 /* For rev 2, the csum doesn't include the MBA. */
12503 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
12504 csum8 += buf8[i];
12505 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
12506 csum8 += buf8[i];
12507 } else {
12508 for (i = 0; i < size; i++)
12509 csum8 += buf8[i];
12510 }
Michael Chan1b277772006-03-20 22:27:48 -080012511
Adrian Bunkad96b482006-04-05 22:21:04 -070012512 if (csum8 == 0) {
12513 err = 0;
12514 goto out;
12515 }
12516
12517 err = -EIO;
12518 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080012519 }
Michael Chan566f86a2005-05-29 14:56:58 -070012520
Al Virob9fc7dc2007-12-17 22:59:57 -080012521 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012522 TG3_EEPROM_MAGIC_HW) {
12523 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000012524 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070012525 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070012526
12527 /* Separate the parity bits and the data bytes. */
12528 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
12529 if ((i == 0) || (i == 8)) {
12530 int l;
12531 u8 msk;
12532
12533 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
12534 parity[k++] = buf8[i] & msk;
12535 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000012536 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070012537 int l;
12538 u8 msk;
12539
12540 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
12541 parity[k++] = buf8[i] & msk;
12542 i++;
12543
12544 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
12545 parity[k++] = buf8[i] & msk;
12546 i++;
12547 }
12548 data[j++] = buf8[i];
12549 }
12550
12551 err = -EIO;
12552 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
12553 u8 hw8 = hweight8(data[i]);
12554
12555 if ((hw8 & 0x1) && parity[i])
12556 goto out;
12557 else if (!(hw8 & 0x1) && !parity[i])
12558 goto out;
12559 }
12560 err = 0;
12561 goto out;
12562 }
12563
Matt Carlson01c3a392011-03-09 16:58:20 +000012564 err = -EIO;
12565
Michael Chan566f86a2005-05-29 14:56:58 -070012566 /* Bootstrap checksum at offset 0x10 */
12567 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000012568 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070012569 goto out;
12570
12571 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
12572 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000012573 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000012574 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070012575
Matt Carlsonc3e94502011-04-13 11:05:08 +000012576 kfree(buf);
12577
Matt Carlson535a4902011-07-20 10:20:56 +000012578 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000012579 if (!buf)
12580 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000012581
Matt Carlson535a4902011-07-20 10:20:56 +000012582 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000012583 if (i > 0) {
12584 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
12585 if (j < 0)
12586 goto out;
12587
Matt Carlson535a4902011-07-20 10:20:56 +000012588 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000012589 goto out;
12590
12591 i += PCI_VPD_LRDT_TAG_SIZE;
12592 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
12593 PCI_VPD_RO_KEYWORD_CHKSUM);
12594 if (j > 0) {
12595 u8 csum8 = 0;
12596
12597 j += PCI_VPD_INFO_FLD_HDR_SIZE;
12598
12599 for (i = 0; i <= j; i++)
12600 csum8 += ((u8 *)buf)[i];
12601
12602 if (csum8)
12603 goto out;
12604 }
12605 }
12606
Michael Chan566f86a2005-05-29 14:56:58 -070012607 err = 0;
12608
12609out:
12610 kfree(buf);
12611 return err;
12612}
12613
Michael Chanca430072005-05-29 14:57:23 -070012614#define TG3_SERDES_TIMEOUT_SEC 2
12615#define TG3_COPPER_TIMEOUT_SEC 6
12616
12617static int tg3_test_link(struct tg3 *tp)
12618{
12619 int i, max;
12620
12621 if (!netif_running(tp->dev))
12622 return -ENODEV;
12623
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012624 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070012625 max = TG3_SERDES_TIMEOUT_SEC;
12626 else
12627 max = TG3_COPPER_TIMEOUT_SEC;
12628
12629 for (i = 0; i < max; i++) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012630 if (tp->link_up)
Michael Chanca430072005-05-29 14:57:23 -070012631 return 0;
12632
12633 if (msleep_interruptible(1000))
12634 break;
12635 }
12636
12637 return -EIO;
12638}
12639
Michael Chana71116d2005-05-29 14:58:11 -070012640/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080012641static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070012642{
Michael Chanb16250e2006-09-27 16:10:14 -070012643 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070012644 u32 offset, read_mask, write_mask, val, save_val, read_val;
12645 static struct {
12646 u16 offset;
12647 u16 flags;
12648#define TG3_FL_5705 0x1
12649#define TG3_FL_NOT_5705 0x2
12650#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070012651#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070012652 u32 read_mask;
12653 u32 write_mask;
12654 } reg_tbl[] = {
12655 /* MAC Control Registers */
12656 { MAC_MODE, TG3_FL_NOT_5705,
12657 0x00000000, 0x00ef6f8c },
12658 { MAC_MODE, TG3_FL_5705,
12659 0x00000000, 0x01ef6b8c },
12660 { MAC_STATUS, TG3_FL_NOT_5705,
12661 0x03800107, 0x00000000 },
12662 { MAC_STATUS, TG3_FL_5705,
12663 0x03800100, 0x00000000 },
12664 { MAC_ADDR_0_HIGH, 0x0000,
12665 0x00000000, 0x0000ffff },
12666 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012667 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070012668 { MAC_RX_MTU_SIZE, 0x0000,
12669 0x00000000, 0x0000ffff },
12670 { MAC_TX_MODE, 0x0000,
12671 0x00000000, 0x00000070 },
12672 { MAC_TX_LENGTHS, 0x0000,
12673 0x00000000, 0x00003fff },
12674 { MAC_RX_MODE, TG3_FL_NOT_5705,
12675 0x00000000, 0x000007fc },
12676 { MAC_RX_MODE, TG3_FL_5705,
12677 0x00000000, 0x000007dc },
12678 { MAC_HASH_REG_0, 0x0000,
12679 0x00000000, 0xffffffff },
12680 { MAC_HASH_REG_1, 0x0000,
12681 0x00000000, 0xffffffff },
12682 { MAC_HASH_REG_2, 0x0000,
12683 0x00000000, 0xffffffff },
12684 { MAC_HASH_REG_3, 0x0000,
12685 0x00000000, 0xffffffff },
12686
12687 /* Receive Data and Receive BD Initiator Control Registers. */
12688 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
12689 0x00000000, 0xffffffff },
12690 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
12691 0x00000000, 0xffffffff },
12692 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
12693 0x00000000, 0x00000003 },
12694 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
12695 0x00000000, 0xffffffff },
12696 { RCVDBDI_STD_BD+0, 0x0000,
12697 0x00000000, 0xffffffff },
12698 { RCVDBDI_STD_BD+4, 0x0000,
12699 0x00000000, 0xffffffff },
12700 { RCVDBDI_STD_BD+8, 0x0000,
12701 0x00000000, 0xffff0002 },
12702 { RCVDBDI_STD_BD+0xc, 0x0000,
12703 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012704
Michael Chana71116d2005-05-29 14:58:11 -070012705 /* Receive BD Initiator Control Registers. */
12706 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
12707 0x00000000, 0xffffffff },
12708 { RCVBDI_STD_THRESH, TG3_FL_5705,
12709 0x00000000, 0x000003ff },
12710 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
12711 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012712
Michael Chana71116d2005-05-29 14:58:11 -070012713 /* Host Coalescing Control Registers. */
12714 { HOSTCC_MODE, TG3_FL_NOT_5705,
12715 0x00000000, 0x00000004 },
12716 { HOSTCC_MODE, TG3_FL_5705,
12717 0x00000000, 0x000000f6 },
12718 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
12719 0x00000000, 0xffffffff },
12720 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
12721 0x00000000, 0x000003ff },
12722 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
12723 0x00000000, 0xffffffff },
12724 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
12725 0x00000000, 0x000003ff },
12726 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
12727 0x00000000, 0xffffffff },
12728 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12729 0x00000000, 0x000000ff },
12730 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
12731 0x00000000, 0xffffffff },
12732 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12733 0x00000000, 0x000000ff },
12734 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
12735 0x00000000, 0xffffffff },
12736 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
12737 0x00000000, 0xffffffff },
12738 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12739 0x00000000, 0xffffffff },
12740 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12741 0x00000000, 0x000000ff },
12742 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12743 0x00000000, 0xffffffff },
12744 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12745 0x00000000, 0x000000ff },
12746 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
12747 0x00000000, 0xffffffff },
12748 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
12749 0x00000000, 0xffffffff },
12750 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
12751 0x00000000, 0xffffffff },
12752 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
12753 0x00000000, 0xffffffff },
12754 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
12755 0x00000000, 0xffffffff },
12756 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
12757 0xffffffff, 0x00000000 },
12758 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
12759 0xffffffff, 0x00000000 },
12760
12761 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070012762 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012763 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070012764 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012765 0x00000000, 0x007fffff },
12766 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
12767 0x00000000, 0x0000003f },
12768 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
12769 0x00000000, 0x000001ff },
12770 { BUFMGR_MB_HIGH_WATER, 0x0000,
12771 0x00000000, 0x000001ff },
12772 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
12773 0xffffffff, 0x00000000 },
12774 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
12775 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012776
Michael Chana71116d2005-05-29 14:58:11 -070012777 /* Mailbox Registers */
12778 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
12779 0x00000000, 0x000001ff },
12780 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
12781 0x00000000, 0x000001ff },
12782 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
12783 0x00000000, 0x000007ff },
12784 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
12785 0x00000000, 0x000001ff },
12786
12787 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
12788 };
12789
Michael Chanb16250e2006-09-27 16:10:14 -070012790 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012791 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070012792 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000012793 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070012794 is_5750 = 1;
12795 }
Michael Chana71116d2005-05-29 14:58:11 -070012796
12797 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
12798 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
12799 continue;
12800
12801 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
12802 continue;
12803
Joe Perches63c3a662011-04-26 08:12:10 +000012804 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070012805 (reg_tbl[i].flags & TG3_FL_NOT_5788))
12806 continue;
12807
Michael Chanb16250e2006-09-27 16:10:14 -070012808 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
12809 continue;
12810
Michael Chana71116d2005-05-29 14:58:11 -070012811 offset = (u32) reg_tbl[i].offset;
12812 read_mask = reg_tbl[i].read_mask;
12813 write_mask = reg_tbl[i].write_mask;
12814
12815 /* Save the original register content */
12816 save_val = tr32(offset);
12817
12818 /* Determine the read-only value. */
12819 read_val = save_val & read_mask;
12820
12821 /* Write zero to the register, then make sure the read-only bits
12822 * are not changed and the read/write bits are all zeros.
12823 */
12824 tw32(offset, 0);
12825
12826 val = tr32(offset);
12827
12828 /* Test the read-only and read/write bits. */
12829 if (((val & read_mask) != read_val) || (val & write_mask))
12830 goto out;
12831
12832 /* Write ones to all the bits defined by RdMask and WrMask, then
12833 * make sure the read-only bits are not changed and the
12834 * read/write bits are all ones.
12835 */
12836 tw32(offset, read_mask | write_mask);
12837
12838 val = tr32(offset);
12839
12840 /* Test the read-only bits. */
12841 if ((val & read_mask) != read_val)
12842 goto out;
12843
12844 /* Test the read/write bits. */
12845 if ((val & write_mask) != write_mask)
12846 goto out;
12847
12848 tw32(offset, save_val);
12849 }
12850
12851 return 0;
12852
12853out:
Michael Chan9f88f292006-12-07 00:22:54 -080012854 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000012855 netdev_err(tp->dev,
12856 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070012857 tw32(offset, save_val);
12858 return -EIO;
12859}
12860
Michael Chan7942e1d2005-05-29 14:58:36 -070012861static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
12862{
Arjan van de Venf71e1302006-03-03 21:33:57 -050012863 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070012864 int i;
12865 u32 j;
12866
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020012867 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070012868 for (j = 0; j < len; j += 4) {
12869 u32 val;
12870
12871 tg3_write_mem(tp, offset + j, test_pattern[i]);
12872 tg3_read_mem(tp, offset + j, &val);
12873 if (val != test_pattern[i])
12874 return -EIO;
12875 }
12876 }
12877 return 0;
12878}
12879
12880static int tg3_test_memory(struct tg3 *tp)
12881{
12882 static struct mem_entry {
12883 u32 offset;
12884 u32 len;
12885 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080012886 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070012887 { 0x00002000, 0x1c000},
12888 { 0xffffffff, 0x00000}
12889 }, mem_tbl_5705[] = {
12890 { 0x00000100, 0x0000c},
12891 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070012892 { 0x00004000, 0x00800},
12893 { 0x00006000, 0x01000},
12894 { 0x00008000, 0x02000},
12895 { 0x00010000, 0x0e000},
12896 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080012897 }, mem_tbl_5755[] = {
12898 { 0x00000200, 0x00008},
12899 { 0x00004000, 0x00800},
12900 { 0x00006000, 0x00800},
12901 { 0x00008000, 0x02000},
12902 { 0x00010000, 0x0c000},
12903 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070012904 }, mem_tbl_5906[] = {
12905 { 0x00000200, 0x00008},
12906 { 0x00004000, 0x00400},
12907 { 0x00006000, 0x00400},
12908 { 0x00008000, 0x01000},
12909 { 0x00010000, 0x01000},
12910 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012911 }, mem_tbl_5717[] = {
12912 { 0x00000200, 0x00008},
12913 { 0x00010000, 0x0a000},
12914 { 0x00020000, 0x13c00},
12915 { 0xffffffff, 0x00000}
12916 }, mem_tbl_57765[] = {
12917 { 0x00000200, 0x00008},
12918 { 0x00004000, 0x00800},
12919 { 0x00006000, 0x09800},
12920 { 0x00010000, 0x0a000},
12921 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070012922 };
12923 struct mem_entry *mem_tbl;
12924 int err = 0;
12925 int i;
12926
Joe Perches63c3a662011-04-26 08:12:10 +000012927 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012928 mem_tbl = mem_tbl_5717;
Michael Chanc65a17f2013-01-06 12:51:07 +000012929 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000012930 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012931 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000012932 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012933 mem_tbl = mem_tbl_5755;
Joe Perches41535772013-02-16 11:20:04 +000012934 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlson321d32a2008-11-21 17:22:19 -080012935 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000012936 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012937 mem_tbl = mem_tbl_5705;
12938 else
Michael Chan7942e1d2005-05-29 14:58:36 -070012939 mem_tbl = mem_tbl_570x;
12940
12941 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000012942 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
12943 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070012944 break;
12945 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012946
Michael Chan7942e1d2005-05-29 14:58:36 -070012947 return err;
12948}
12949
Matt Carlsonbb158d62011-04-25 12:42:47 +000012950#define TG3_TSO_MSS 500
12951
12952#define TG3_TSO_IP_HDR_LEN 20
12953#define TG3_TSO_TCP_HDR_LEN 20
12954#define TG3_TSO_TCP_OPT_LEN 12
12955
12956static const u8 tg3_tso_header[] = {
129570x08, 0x00,
129580x45, 0x00, 0x00, 0x00,
129590x00, 0x00, 0x40, 0x00,
129600x40, 0x06, 0x00, 0x00,
129610x0a, 0x00, 0x00, 0x01,
129620x0a, 0x00, 0x00, 0x02,
129630x0d, 0x00, 0xe0, 0x00,
129640x00, 0x00, 0x01, 0x00,
129650x00, 0x00, 0x02, 0x00,
129660x80, 0x10, 0x10, 0x00,
129670x14, 0x09, 0x00, 0x00,
129680x01, 0x01, 0x08, 0x0a,
129690x11, 0x11, 0x11, 0x11,
129700x11, 0x11, 0x11, 0x11,
12971};
Michael Chan9f40dea2005-09-05 17:53:06 -070012972
Matt Carlson28a45952011-08-19 13:58:22 +000012973static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070012974{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012975 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012976 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000012977 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000012978 struct sk_buff *skb;
12979 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070012980 dma_addr_t map;
12981 int num_pkts, tx_len, rx_len, i, err;
12982 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000012983 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000012984 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070012985
Matt Carlsonc8873402010-02-12 14:47:11 +000012986 tnapi = &tp->napi[0];
12987 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012988 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000012989 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000012990 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000012991 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000012992 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012993 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012994 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000012995
Michael Chanc76949a2005-05-29 14:58:59 -070012996 err = -EIO;
12997
Matt Carlson4852a862011-04-13 11:05:07 +000012998 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070012999 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070013000 if (!skb)
13001 return -ENOMEM;
13002
Michael Chanc76949a2005-05-29 14:58:59 -070013003 tx_data = skb_put(skb, tx_len);
13004 memcpy(tx_data, tp->dev->dev_addr, 6);
13005 memset(tx_data + 6, 0x0, 8);
13006
Matt Carlson4852a862011-04-13 11:05:07 +000013007 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070013008
Matt Carlson28a45952011-08-19 13:58:22 +000013009 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013010 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
13011
13012 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
13013 TG3_TSO_TCP_OPT_LEN;
13014
13015 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
13016 sizeof(tg3_tso_header));
13017 mss = TG3_TSO_MSS;
13018
13019 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
13020 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
13021
13022 /* Set the total length field in the IP header */
13023 iph->tot_len = htons((u16)(mss + hdr_len));
13024
13025 base_flags = (TXD_FLAG_CPU_PRE_DMA |
13026 TXD_FLAG_CPU_POST_DMA);
13027
Joe Perches63c3a662011-04-26 08:12:10 +000013028 if (tg3_flag(tp, HW_TSO_1) ||
13029 tg3_flag(tp, HW_TSO_2) ||
13030 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013031 struct tcphdr *th;
13032 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
13033 th = (struct tcphdr *)&tx_data[val];
13034 th->check = 0;
13035 } else
13036 base_flags |= TXD_FLAG_TCPUDP_CSUM;
13037
Joe Perches63c3a662011-04-26 08:12:10 +000013038 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013039 mss |= (hdr_len & 0xc) << 12;
13040 if (hdr_len & 0x10)
13041 base_flags |= 0x00000010;
13042 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000013043 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013044 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000013045 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +000013046 tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013047 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
13048 } else {
13049 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
13050 }
13051
13052 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
13053 } else {
13054 num_pkts = 1;
13055 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000013056
13057 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
13058 tx_len > VLAN_ETH_FRAME_LEN)
13059 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013060 }
13061
13062 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070013063 tx_data[i] = (u8) (i & 0xff);
13064
Alexander Duyckf4188d82009-12-02 16:48:38 +000013065 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
13066 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000013067 dev_kfree_skb(skb);
13068 return -EIO;
13069 }
Michael Chanc76949a2005-05-29 14:58:59 -070013070
Matt Carlson0d681b22011-07-27 14:20:49 +000013071 val = tnapi->tx_prod;
13072 tnapi->tx_buffers[val].skb = skb;
13073 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
13074
Michael Chanc76949a2005-05-29 14:58:59 -070013075 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013076 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013077
13078 udelay(10);
13079
Matt Carlson898a56f2009-08-28 14:02:40 +000013080 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070013081
Matt Carlson84b67b22011-07-27 14:20:52 +000013082 budget = tg3_tx_avail(tnapi);
13083 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000013084 base_flags | TXD_FLAG_END, mss, 0)) {
13085 tnapi->tx_buffers[val].skb = NULL;
13086 dev_kfree_skb(skb);
13087 return -EIO;
13088 }
Michael Chanc76949a2005-05-29 14:58:59 -070013089
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013090 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070013091
Michael Chan6541b802012-03-04 14:48:14 +000013092 /* Sync BD data before updating mailbox */
13093 wmb();
13094
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013095 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
13096 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070013097
13098 udelay(10);
13099
Matt Carlson303fc922009-11-02 14:27:34 +000013100 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
13101 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070013102 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013103 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013104
13105 udelay(10);
13106
Matt Carlson898a56f2009-08-28 14:02:40 +000013107 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
13108 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013109 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070013110 (rx_idx == (rx_start_idx + num_pkts)))
13111 break;
13112 }
13113
Matt Carlsonba1142e2011-11-04 09:15:00 +000013114 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070013115 dev_kfree_skb(skb);
13116
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013117 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070013118 goto out;
13119
13120 if (rx_idx != rx_start_idx + num_pkts)
13121 goto out;
13122
Matt Carlsonbb158d62011-04-25 12:42:47 +000013123 val = data_off;
13124 while (rx_idx != rx_start_idx) {
13125 desc = &rnapi->rx_rcb[rx_start_idx++];
13126 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
13127 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070013128
Matt Carlsonbb158d62011-04-25 12:42:47 +000013129 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
13130 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000013131 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070013132
Matt Carlsonbb158d62011-04-25 12:42:47 +000013133 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
13134 - ETH_FCS_LEN;
13135
Matt Carlson28a45952011-08-19 13:58:22 +000013136 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013137 if (rx_len != tx_len)
13138 goto out;
13139
13140 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
13141 if (opaque_key != RXD_OPAQUE_RING_STD)
13142 goto out;
13143 } else {
13144 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
13145 goto out;
13146 }
13147 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
13148 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000013149 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013150 goto out;
13151 }
13152
13153 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013154 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013155 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
13156 mapping);
13157 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013158 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013159 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
13160 mapping);
13161 } else
Matt Carlson4852a862011-04-13 11:05:07 +000013162 goto out;
13163
Matt Carlsonbb158d62011-04-25 12:42:47 +000013164 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
13165 PCI_DMA_FROMDEVICE);
13166
Eric Dumazet9205fd92011-11-18 06:47:01 +000013167 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000013168 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013169 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013170 goto out;
13171 }
Matt Carlson4852a862011-04-13 11:05:07 +000013172 }
13173
Michael Chanc76949a2005-05-29 14:58:59 -070013174 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013175
Eric Dumazet9205fd92011-11-18 06:47:01 +000013176 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070013177out:
13178 return err;
13179}
13180
Matt Carlson00c266b2011-04-25 12:42:46 +000013181#define TG3_STD_LOOPBACK_FAILED 1
13182#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000013183#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000013184#define TG3_LOOPBACK_FAILED \
13185 (TG3_STD_LOOPBACK_FAILED | \
13186 TG3_JMB_LOOPBACK_FAILED | \
13187 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000013188
Matt Carlson941ec902011-08-19 13:58:23 +000013189static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070013190{
Matt Carlson28a45952011-08-19 13:58:22 +000013191 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000013192 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000013193 u32 jmb_pkt_sz = 9000;
13194
13195 if (tp->dma_limit)
13196 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070013197
Matt Carlsonab789042011-01-25 15:58:54 +000013198 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
13199 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
13200
Matt Carlson28a45952011-08-19 13:58:22 +000013201 if (!netif_running(tp->dev)) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013202 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13203 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013204 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013205 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000013206 goto done;
13207 }
13208
Joe Perches953c96e2013-04-09 10:18:14 +000013209 err = tg3_reset_hw(tp, true);
Matt Carlsonab789042011-01-25 15:58:54 +000013210 if (err) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013211 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13212 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013213 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013214 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000013215 goto done;
13216 }
Michael Chan9f40dea2005-09-05 17:53:06 -070013217
Joe Perches63c3a662011-04-26 08:12:10 +000013218 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000013219 int i;
13220
13221 /* Reroute all rx packets to the 1st queue */
13222 for (i = MAC_RSS_INDIR_TBL_0;
13223 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
13224 tw32(i, 0x0);
13225 }
13226
Matt Carlson6e01b202011-08-19 13:58:20 +000013227 /* HW errata - mac loopback fails in some cases on 5780.
13228 * Normal traffic and PHY loopback are not affected by
13229 * errata. Also, the MAC loopback test is deprecated for
13230 * all newer ASIC revisions.
13231 */
Joe Perches41535772013-02-16 11:20:04 +000013232 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Matt Carlson6e01b202011-08-19 13:58:20 +000013233 !tg3_flag(tp, CPMU_PRESENT)) {
13234 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070013235
Matt Carlson28a45952011-08-19 13:58:22 +000013236 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013237 data[TG3_MAC_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013238
13239 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013240 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013241 data[TG3_MAC_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013242
13243 tg3_mac_loopback(tp, false);
13244 }
Matt Carlson4852a862011-04-13 11:05:07 +000013245
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013246 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013247 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013248 int i;
13249
Matt Carlson941ec902011-08-19 13:58:23 +000013250 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013251
13252 /* Wait for link */
13253 for (i = 0; i < 100; i++) {
13254 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
13255 break;
13256 mdelay(1);
13257 }
13258
Matt Carlson28a45952011-08-19 13:58:22 +000013259 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013260 data[TG3_PHY_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013261 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000013262 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013263 data[TG3_PHY_LOOPB_TEST] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013264 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013265 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013266 data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070013267
Matt Carlson941ec902011-08-19 13:58:23 +000013268 if (do_extlpbk) {
13269 tg3_phy_lpbk_set(tp, 0, true);
13270
13271 /* All link indications report up, but the hardware
13272 * isn't really ready for about 20 msec. Double it
13273 * to be sure.
13274 */
13275 mdelay(40);
13276
13277 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013278 data[TG3_EXT_LOOPB_TEST] |=
13279 TG3_STD_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013280 if (tg3_flag(tp, TSO_CAPABLE) &&
13281 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013282 data[TG3_EXT_LOOPB_TEST] |=
13283 TG3_TSO_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013284 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013285 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013286 data[TG3_EXT_LOOPB_TEST] |=
13287 TG3_JMB_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013288 }
13289
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013290 /* Re-enable gphy autopowerdown. */
13291 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
13292 tg3_phy_toggle_apd(tp, true);
13293 }
Matt Carlson6833c042008-11-21 17:18:59 -080013294
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013295 err = (data[TG3_MAC_LOOPB_TEST] | data[TG3_PHY_LOOPB_TEST] |
13296 data[TG3_EXT_LOOPB_TEST]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000013297
Matt Carlsonab789042011-01-25 15:58:54 +000013298done:
13299 tp->phy_flags |= eee_cap;
13300
Michael Chan9f40dea2005-09-05 17:53:06 -070013301 return err;
13302}
13303
Michael Chan4cafd3f2005-05-29 14:56:34 -070013304static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
13305 u64 *data)
13306{
Michael Chan566f86a2005-05-29 14:56:58 -070013307 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000013308 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070013309
Matt Carlsonbed98292011-07-13 09:27:29 +000013310 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
13311 tg3_power_up(tp)) {
13312 etest->flags |= ETH_TEST_FL_FAILED;
13313 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
13314 return;
13315 }
Michael Chanbc1c7562006-03-20 17:48:03 -080013316
Michael Chan566f86a2005-05-29 14:56:58 -070013317 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
13318
13319 if (tg3_test_nvram(tp) != 0) {
13320 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013321 data[TG3_NVRAM_TEST] = 1;
Michael Chan566f86a2005-05-29 14:56:58 -070013322 }
Matt Carlson941ec902011-08-19 13:58:23 +000013323 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070013324 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013325 data[TG3_LINK_TEST] = 1;
Michael Chanca430072005-05-29 14:57:23 -070013326 }
Michael Chana71116d2005-05-29 14:58:11 -070013327 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013328 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070013329
Michael Chanbbe832c2005-06-24 20:20:04 -070013330 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013331 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070013332 tg3_netif_stop(tp);
13333 irq_sync = 1;
13334 }
13335
13336 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070013337 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080013338 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013339 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000013340 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070013341 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080013342 if (!err)
13343 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013344
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013345 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080013346 tg3_phy_reset(tp);
13347
Michael Chana71116d2005-05-29 14:58:11 -070013348 if (tg3_test_registers(tp) != 0) {
13349 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013350 data[TG3_REGISTER_TEST] = 1;
Michael Chana71116d2005-05-29 14:58:11 -070013351 }
Matt Carlson28a45952011-08-19 13:58:22 +000013352
Michael Chan7942e1d2005-05-29 14:58:36 -070013353 if (tg3_test_memory(tp) != 0) {
13354 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013355 data[TG3_MEMORY_TEST] = 1;
Michael Chan7942e1d2005-05-29 14:58:36 -070013356 }
Matt Carlson28a45952011-08-19 13:58:22 +000013357
Matt Carlson941ec902011-08-19 13:58:23 +000013358 if (doextlpbk)
13359 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
13360
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013361 if (tg3_test_loopback(tp, data, doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070013362 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070013363
David S. Millerf47c11e2005-06-24 20:18:35 -070013364 tg3_full_unlock(tp);
13365
Michael Chand4bc3922005-05-29 14:59:20 -070013366 if (tg3_test_interrupt(tp) != 0) {
13367 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013368 data[TG3_INTERRUPT_TEST] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070013369 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013370
13371 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070013372
Michael Chana71116d2005-05-29 14:58:11 -070013373 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13374 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013375 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000013376 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013377 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070013378 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013379 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013380
13381 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013382
13383 if (irq_sync && !err2)
13384 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013385 }
Matt Carlson80096062010-08-02 11:26:06 +000013386 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000013387 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080013388
Michael Chan4cafd3f2005-05-29 14:56:34 -070013389}
13390
Matt Carlson0a633ac2012-12-03 19:36:59 +000013391static int tg3_hwtstamp_ioctl(struct net_device *dev,
13392 struct ifreq *ifr, int cmd)
13393{
13394 struct tg3 *tp = netdev_priv(dev);
13395 struct hwtstamp_config stmpconf;
13396
13397 if (!tg3_flag(tp, PTP_CAPABLE))
13398 return -EINVAL;
13399
13400 if (copy_from_user(&stmpconf, ifr->ifr_data, sizeof(stmpconf)))
13401 return -EFAULT;
13402
13403 if (stmpconf.flags)
13404 return -EINVAL;
13405
13406 switch (stmpconf.tx_type) {
13407 case HWTSTAMP_TX_ON:
13408 tg3_flag_set(tp, TX_TSTAMP_EN);
13409 break;
13410 case HWTSTAMP_TX_OFF:
13411 tg3_flag_clear(tp, TX_TSTAMP_EN);
13412 break;
13413 default:
13414 return -ERANGE;
13415 }
13416
13417 switch (stmpconf.rx_filter) {
13418 case HWTSTAMP_FILTER_NONE:
13419 tp->rxptpctl = 0;
13420 break;
13421 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
13422 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13423 TG3_RX_PTP_CTL_ALL_V1_EVENTS;
13424 break;
13425 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
13426 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13427 TG3_RX_PTP_CTL_SYNC_EVNT;
13428 break;
13429 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
13430 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13431 TG3_RX_PTP_CTL_DELAY_REQ;
13432 break;
13433 case HWTSTAMP_FILTER_PTP_V2_EVENT:
13434 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13435 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13436 break;
13437 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
13438 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13439 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13440 break;
13441 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
13442 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13443 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13444 break;
13445 case HWTSTAMP_FILTER_PTP_V2_SYNC:
13446 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13447 TG3_RX_PTP_CTL_SYNC_EVNT;
13448 break;
13449 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
13450 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13451 TG3_RX_PTP_CTL_SYNC_EVNT;
13452 break;
13453 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
13454 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13455 TG3_RX_PTP_CTL_SYNC_EVNT;
13456 break;
13457 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
13458 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13459 TG3_RX_PTP_CTL_DELAY_REQ;
13460 break;
13461 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
13462 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13463 TG3_RX_PTP_CTL_DELAY_REQ;
13464 break;
13465 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
13466 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13467 TG3_RX_PTP_CTL_DELAY_REQ;
13468 break;
13469 default:
13470 return -ERANGE;
13471 }
13472
13473 if (netif_running(dev) && tp->rxptpctl)
13474 tw32(TG3_RX_PTP_CTL,
13475 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
13476
13477 return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ?
13478 -EFAULT : 0;
13479}
13480
Linus Torvalds1da177e2005-04-16 15:20:36 -070013481static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
13482{
13483 struct mii_ioctl_data *data = if_mii(ifr);
13484 struct tg3 *tp = netdev_priv(dev);
13485 int err;
13486
Joe Perches63c3a662011-04-26 08:12:10 +000013487 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013488 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013489 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013490 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013491 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000013492 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013493 }
13494
Matt Carlson33f401a2010-04-05 10:19:27 +000013495 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013496 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000013497 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013498
13499 /* fallthru */
13500 case SIOCGMIIREG: {
13501 u32 mii_regval;
13502
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013503 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013504 break; /* We have no PHY */
13505
Matt Carlson34eea5a2011-04-20 07:57:38 +000013506 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013507 return -EAGAIN;
13508
David S. Millerf47c11e2005-06-24 20:18:35 -070013509 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013510 err = __tg3_readphy(tp, data->phy_id & 0x1f,
13511 data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070013512 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013513
13514 data->val_out = mii_regval;
13515
13516 return err;
13517 }
13518
13519 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013520 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013521 break; /* We have no PHY */
13522
Matt Carlson34eea5a2011-04-20 07:57:38 +000013523 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013524 return -EAGAIN;
13525
David S. Millerf47c11e2005-06-24 20:18:35 -070013526 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013527 err = __tg3_writephy(tp, data->phy_id & 0x1f,
13528 data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070013529 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013530
13531 return err;
13532
Matt Carlson0a633ac2012-12-03 19:36:59 +000013533 case SIOCSHWTSTAMP:
13534 return tg3_hwtstamp_ioctl(dev, ifr, cmd);
13535
Linus Torvalds1da177e2005-04-16 15:20:36 -070013536 default:
13537 /* do nothing */
13538 break;
13539 }
13540 return -EOPNOTSUPP;
13541}
13542
David S. Miller15f98502005-05-18 22:49:26 -070013543static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13544{
13545 struct tg3 *tp = netdev_priv(dev);
13546
13547 memcpy(ec, &tp->coal, sizeof(*ec));
13548 return 0;
13549}
13550
Michael Chand244c892005-07-05 14:42:33 -070013551static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13552{
13553 struct tg3 *tp = netdev_priv(dev);
13554 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
13555 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
13556
Joe Perches63c3a662011-04-26 08:12:10 +000013557 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070013558 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
13559 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
13560 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
13561 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
13562 }
13563
13564 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
13565 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
13566 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
13567 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
13568 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
13569 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
13570 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
13571 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
13572 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
13573 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
13574 return -EINVAL;
13575
13576 /* No rx interrupts will be generated if both are zero */
13577 if ((ec->rx_coalesce_usecs == 0) &&
13578 (ec->rx_max_coalesced_frames == 0))
13579 return -EINVAL;
13580
13581 /* No tx interrupts will be generated if both are zero */
13582 if ((ec->tx_coalesce_usecs == 0) &&
13583 (ec->tx_max_coalesced_frames == 0))
13584 return -EINVAL;
13585
13586 /* Only copy relevant parameters, ignore all others. */
13587 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
13588 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
13589 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
13590 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
13591 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
13592 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
13593 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
13594 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
13595 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
13596
13597 if (netif_running(dev)) {
13598 tg3_full_lock(tp, 0);
13599 __tg3_set_coalesce(tp, &tp->coal);
13600 tg3_full_unlock(tp);
13601 }
13602 return 0;
13603}
13604
Jeff Garzik7282d492006-09-13 14:30:00 -040013605static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013606 .get_settings = tg3_get_settings,
13607 .set_settings = tg3_set_settings,
13608 .get_drvinfo = tg3_get_drvinfo,
13609 .get_regs_len = tg3_get_regs_len,
13610 .get_regs = tg3_get_regs,
13611 .get_wol = tg3_get_wol,
13612 .set_wol = tg3_set_wol,
13613 .get_msglevel = tg3_get_msglevel,
13614 .set_msglevel = tg3_set_msglevel,
13615 .nway_reset = tg3_nway_reset,
13616 .get_link = ethtool_op_get_link,
13617 .get_eeprom_len = tg3_get_eeprom_len,
13618 .get_eeprom = tg3_get_eeprom,
13619 .set_eeprom = tg3_set_eeprom,
13620 .get_ringparam = tg3_get_ringparam,
13621 .set_ringparam = tg3_set_ringparam,
13622 .get_pauseparam = tg3_get_pauseparam,
13623 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070013624 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013625 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000013626 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013627 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070013628 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070013629 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070013630 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000013631 .get_rxnfc = tg3_get_rxnfc,
13632 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
13633 .get_rxfh_indir = tg3_get_rxfh_indir,
13634 .set_rxfh_indir = tg3_set_rxfh_indir,
Michael Chan09681692012-09-28 07:12:42 +000013635 .get_channels = tg3_get_channels,
13636 .set_channels = tg3_set_channels,
Matt Carlson7d41e492012-12-03 19:36:58 +000013637 .get_ts_info = tg3_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013638};
13639
David S. Millerb4017c52012-03-01 17:57:40 -050013640static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
13641 struct rtnl_link_stats64 *stats)
13642{
13643 struct tg3 *tp = netdev_priv(dev);
13644
David S. Millerb4017c52012-03-01 17:57:40 -050013645 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000013646 if (!tp->hw_stats) {
13647 spin_unlock_bh(&tp->lock);
13648 return &tp->net_stats_prev;
13649 }
13650
David S. Millerb4017c52012-03-01 17:57:40 -050013651 tg3_get_nstats(tp, stats);
13652 spin_unlock_bh(&tp->lock);
13653
13654 return stats;
13655}
13656
Matt Carlsonccd5ba92012-02-13 10:20:08 +000013657static void tg3_set_rx_mode(struct net_device *dev)
13658{
13659 struct tg3 *tp = netdev_priv(dev);
13660
13661 if (!netif_running(dev))
13662 return;
13663
13664 tg3_full_lock(tp, 0);
13665 __tg3_set_rx_mode(dev);
13666 tg3_full_unlock(tp);
13667}
13668
Matt Carlsonfaf16272012-02-13 10:20:07 +000013669static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
13670 int new_mtu)
13671{
13672 dev->mtu = new_mtu;
13673
13674 if (new_mtu > ETH_DATA_LEN) {
13675 if (tg3_flag(tp, 5780_CLASS)) {
13676 netdev_update_features(dev);
13677 tg3_flag_clear(tp, TSO_CAPABLE);
13678 } else {
13679 tg3_flag_set(tp, JUMBO_RING_ENABLE);
13680 }
13681 } else {
13682 if (tg3_flag(tp, 5780_CLASS)) {
13683 tg3_flag_set(tp, TSO_CAPABLE);
13684 netdev_update_features(dev);
13685 }
13686 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
13687 }
13688}
13689
13690static int tg3_change_mtu(struct net_device *dev, int new_mtu)
13691{
13692 struct tg3 *tp = netdev_priv(dev);
Joe Perches953c96e2013-04-09 10:18:14 +000013693 int err;
13694 bool reset_phy = false;
Matt Carlsonfaf16272012-02-13 10:20:07 +000013695
13696 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
13697 return -EINVAL;
13698
13699 if (!netif_running(dev)) {
13700 /* We'll just catch it later when the
13701 * device is up'd.
13702 */
13703 tg3_set_mtu(dev, tp, new_mtu);
13704 return 0;
13705 }
13706
13707 tg3_phy_stop(tp);
13708
13709 tg3_netif_stop(tp);
13710
13711 tg3_full_lock(tp, 1);
13712
13713 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13714
13715 tg3_set_mtu(dev, tp, new_mtu);
13716
Michael Chan2fae5e32012-03-04 14:48:15 +000013717 /* Reset PHY, otherwise the read DMA engine will be in a mode that
13718 * breaks all requests to 256 bytes.
13719 */
Joe Perches41535772013-02-16 11:20:04 +000013720 if (tg3_asic_rev(tp) == ASIC_REV_57766)
Joe Perches953c96e2013-04-09 10:18:14 +000013721 reset_phy = true;
Michael Chan2fae5e32012-03-04 14:48:15 +000013722
13723 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000013724
13725 if (!err)
13726 tg3_netif_start(tp);
13727
13728 tg3_full_unlock(tp);
13729
13730 if (!err)
13731 tg3_phy_start(tp);
13732
13733 return err;
13734}
13735
13736static const struct net_device_ops tg3_netdev_ops = {
13737 .ndo_open = tg3_open,
13738 .ndo_stop = tg3_close,
13739 .ndo_start_xmit = tg3_start_xmit,
13740 .ndo_get_stats64 = tg3_get_stats64,
13741 .ndo_validate_addr = eth_validate_addr,
13742 .ndo_set_rx_mode = tg3_set_rx_mode,
13743 .ndo_set_mac_address = tg3_set_mac_addr,
13744 .ndo_do_ioctl = tg3_ioctl,
13745 .ndo_tx_timeout = tg3_tx_timeout,
13746 .ndo_change_mtu = tg3_change_mtu,
13747 .ndo_fix_features = tg3_fix_features,
13748 .ndo_set_features = tg3_set_features,
13749#ifdef CONFIG_NET_POLL_CONTROLLER
13750 .ndo_poll_controller = tg3_poll_controller,
13751#endif
13752};
13753
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013754static void tg3_get_eeprom_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013755{
Michael Chan1b277772006-03-20 22:27:48 -080013756 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013757
13758 tp->nvram_size = EEPROM_CHIP_SIZE;
13759
Matt Carlsone4f34112009-02-25 14:25:00 +000013760 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013761 return;
13762
Michael Chanb16250e2006-09-27 16:10:14 -070013763 if ((magic != TG3_EEPROM_MAGIC) &&
13764 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
13765 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013766 return;
13767
13768 /*
13769 * Size the chip by reading offsets at increasing powers of two.
13770 * When we encounter our validation signature, we know the addressing
13771 * has wrapped around, and thus have our chip size.
13772 */
Michael Chan1b277772006-03-20 22:27:48 -080013773 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013774
13775 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013776 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013777 return;
13778
Michael Chan18201802006-03-20 22:29:15 -080013779 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013780 break;
13781
13782 cursize <<= 1;
13783 }
13784
13785 tp->nvram_size = cursize;
13786}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013787
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013788static void tg3_get_nvram_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013789{
13790 u32 val;
13791
Joe Perches63c3a662011-04-26 08:12:10 +000013792 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080013793 return;
13794
13795 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080013796 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080013797 tg3_get_eeprom_size(tp);
13798 return;
13799 }
13800
Matt Carlson6d348f22009-02-25 14:25:52 +000013801 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013802 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000013803 /* This is confusing. We want to operate on the
13804 * 16-bit value at offset 0xf2. The tg3_nvram_read()
13805 * call will read from NVRAM and byteswap the data
13806 * according to the byteswapping settings for all
13807 * other register accesses. This ensures the data we
13808 * want will always reside in the lower 16-bits.
13809 * However, the data in NVRAM is in LE format, which
13810 * means the data from the NVRAM read will always be
13811 * opposite the endianness of the CPU. The 16-bit
13812 * byteswap then brings the data to CPU endianness.
13813 */
13814 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013815 return;
13816 }
13817 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070013818 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013819}
13820
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013821static void tg3_get_nvram_info(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013822{
13823 u32 nvcfg1;
13824
13825 nvcfg1 = tr32(NVRAM_CFG1);
13826 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000013827 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013828 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013829 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13830 tw32(NVRAM_CFG1, nvcfg1);
13831 }
13832
Joe Perches41535772013-02-16 11:20:04 +000013833 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013834 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013835 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013836 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
13837 tp->nvram_jedecnum = JEDEC_ATMEL;
13838 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013839 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013840 break;
13841 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
13842 tp->nvram_jedecnum = JEDEC_ATMEL;
13843 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
13844 break;
13845 case FLASH_VENDOR_ATMEL_EEPROM:
13846 tp->nvram_jedecnum = JEDEC_ATMEL;
13847 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013848 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013849 break;
13850 case FLASH_VENDOR_ST:
13851 tp->nvram_jedecnum = JEDEC_ST;
13852 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013853 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013854 break;
13855 case FLASH_VENDOR_SAIFUN:
13856 tp->nvram_jedecnum = JEDEC_SAIFUN;
13857 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
13858 break;
13859 case FLASH_VENDOR_SST_SMALL:
13860 case FLASH_VENDOR_SST_LARGE:
13861 tp->nvram_jedecnum = JEDEC_SST;
13862 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
13863 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013864 }
Matt Carlson8590a602009-08-28 12:29:16 +000013865 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013866 tp->nvram_jedecnum = JEDEC_ATMEL;
13867 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013868 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013869 }
13870}
13871
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013872static void tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013873{
13874 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
13875 case FLASH_5752PAGE_SIZE_256:
13876 tp->nvram_pagesize = 256;
13877 break;
13878 case FLASH_5752PAGE_SIZE_512:
13879 tp->nvram_pagesize = 512;
13880 break;
13881 case FLASH_5752PAGE_SIZE_1K:
13882 tp->nvram_pagesize = 1024;
13883 break;
13884 case FLASH_5752PAGE_SIZE_2K:
13885 tp->nvram_pagesize = 2048;
13886 break;
13887 case FLASH_5752PAGE_SIZE_4K:
13888 tp->nvram_pagesize = 4096;
13889 break;
13890 case FLASH_5752PAGE_SIZE_264:
13891 tp->nvram_pagesize = 264;
13892 break;
13893 case FLASH_5752PAGE_SIZE_528:
13894 tp->nvram_pagesize = 528;
13895 break;
13896 }
13897}
13898
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013899static void tg3_get_5752_nvram_info(struct tg3 *tp)
Michael Chan361b4ac2005-04-21 17:11:21 -070013900{
13901 u32 nvcfg1;
13902
13903 nvcfg1 = tr32(NVRAM_CFG1);
13904
Michael Chane6af3012005-04-21 17:12:05 -070013905 /* NVRAM protection for TPM */
13906 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000013907 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070013908
Michael Chan361b4ac2005-04-21 17:11:21 -070013909 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013910 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
13911 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
13912 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013913 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013914 break;
13915 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13916 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013917 tg3_flag_set(tp, NVRAM_BUFFERED);
13918 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013919 break;
13920 case FLASH_5752VENDOR_ST_M45PE10:
13921 case FLASH_5752VENDOR_ST_M45PE20:
13922 case FLASH_5752VENDOR_ST_M45PE40:
13923 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013924 tg3_flag_set(tp, NVRAM_BUFFERED);
13925 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013926 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070013927 }
13928
Joe Perches63c3a662011-04-26 08:12:10 +000013929 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000013930 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000013931 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070013932 /* For eeprom, set pagesize to maximum eeprom size */
13933 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13934
13935 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13936 tw32(NVRAM_CFG1, nvcfg1);
13937 }
13938}
13939
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013940static void tg3_get_5755_nvram_info(struct tg3 *tp)
Michael Chand3c7b882006-03-23 01:28:25 -080013941{
Matt Carlson989a9d22007-05-05 11:51:05 -070013942 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080013943
13944 nvcfg1 = tr32(NVRAM_CFG1);
13945
13946 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070013947 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013948 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070013949 protect = 1;
13950 }
Michael Chand3c7b882006-03-23 01:28:25 -080013951
Matt Carlson989a9d22007-05-05 11:51:05 -070013952 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
13953 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013954 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13955 case FLASH_5755VENDOR_ATMEL_FLASH_2:
13956 case FLASH_5755VENDOR_ATMEL_FLASH_3:
13957 case FLASH_5755VENDOR_ATMEL_FLASH_5:
13958 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013959 tg3_flag_set(tp, NVRAM_BUFFERED);
13960 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013961 tp->nvram_pagesize = 264;
13962 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
13963 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
13964 tp->nvram_size = (protect ? 0x3e200 :
13965 TG3_NVRAM_SIZE_512KB);
13966 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
13967 tp->nvram_size = (protect ? 0x1f200 :
13968 TG3_NVRAM_SIZE_256KB);
13969 else
13970 tp->nvram_size = (protect ? 0x1f200 :
13971 TG3_NVRAM_SIZE_128KB);
13972 break;
13973 case FLASH_5752VENDOR_ST_M45PE10:
13974 case FLASH_5752VENDOR_ST_M45PE20:
13975 case FLASH_5752VENDOR_ST_M45PE40:
13976 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013977 tg3_flag_set(tp, NVRAM_BUFFERED);
13978 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013979 tp->nvram_pagesize = 256;
13980 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
13981 tp->nvram_size = (protect ?
13982 TG3_NVRAM_SIZE_64KB :
13983 TG3_NVRAM_SIZE_128KB);
13984 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
13985 tp->nvram_size = (protect ?
13986 TG3_NVRAM_SIZE_64KB :
13987 TG3_NVRAM_SIZE_256KB);
13988 else
13989 tp->nvram_size = (protect ?
13990 TG3_NVRAM_SIZE_128KB :
13991 TG3_NVRAM_SIZE_512KB);
13992 break;
Michael Chand3c7b882006-03-23 01:28:25 -080013993 }
13994}
13995
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013996static void tg3_get_5787_nvram_info(struct tg3 *tp)
Michael Chan1b277772006-03-20 22:27:48 -080013997{
13998 u32 nvcfg1;
13999
14000 nvcfg1 = tr32(NVRAM_CFG1);
14001
14002 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000014003 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
14004 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14005 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
14006 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14007 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014008 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014009 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080014010
Matt Carlson8590a602009-08-28 12:29:16 +000014011 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14012 tw32(NVRAM_CFG1, nvcfg1);
14013 break;
14014 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14015 case FLASH_5755VENDOR_ATMEL_FLASH_1:
14016 case FLASH_5755VENDOR_ATMEL_FLASH_2:
14017 case FLASH_5755VENDOR_ATMEL_FLASH_3:
14018 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014019 tg3_flag_set(tp, NVRAM_BUFFERED);
14020 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014021 tp->nvram_pagesize = 264;
14022 break;
14023 case FLASH_5752VENDOR_ST_M45PE10:
14024 case FLASH_5752VENDOR_ST_M45PE20:
14025 case FLASH_5752VENDOR_ST_M45PE40:
14026 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014027 tg3_flag_set(tp, NVRAM_BUFFERED);
14028 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014029 tp->nvram_pagesize = 256;
14030 break;
Michael Chan1b277772006-03-20 22:27:48 -080014031 }
14032}
14033
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014034static void tg3_get_5761_nvram_info(struct tg3 *tp)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014035{
14036 u32 nvcfg1, protect = 0;
14037
14038 nvcfg1 = tr32(NVRAM_CFG1);
14039
14040 /* NVRAM protection for TPM */
14041 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014042 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070014043 protect = 1;
14044 }
14045
14046 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
14047 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014048 case FLASH_5761VENDOR_ATMEL_ADB021D:
14049 case FLASH_5761VENDOR_ATMEL_ADB041D:
14050 case FLASH_5761VENDOR_ATMEL_ADB081D:
14051 case FLASH_5761VENDOR_ATMEL_ADB161D:
14052 case FLASH_5761VENDOR_ATMEL_MDB021D:
14053 case FLASH_5761VENDOR_ATMEL_MDB041D:
14054 case FLASH_5761VENDOR_ATMEL_MDB081D:
14055 case FLASH_5761VENDOR_ATMEL_MDB161D:
14056 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014057 tg3_flag_set(tp, NVRAM_BUFFERED);
14058 tg3_flag_set(tp, FLASH);
14059 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000014060 tp->nvram_pagesize = 256;
14061 break;
14062 case FLASH_5761VENDOR_ST_A_M45PE20:
14063 case FLASH_5761VENDOR_ST_A_M45PE40:
14064 case FLASH_5761VENDOR_ST_A_M45PE80:
14065 case FLASH_5761VENDOR_ST_A_M45PE16:
14066 case FLASH_5761VENDOR_ST_M_M45PE20:
14067 case FLASH_5761VENDOR_ST_M_M45PE40:
14068 case FLASH_5761VENDOR_ST_M_M45PE80:
14069 case FLASH_5761VENDOR_ST_M_M45PE16:
14070 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014071 tg3_flag_set(tp, NVRAM_BUFFERED);
14072 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014073 tp->nvram_pagesize = 256;
14074 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014075 }
14076
14077 if (protect) {
14078 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
14079 } else {
14080 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014081 case FLASH_5761VENDOR_ATMEL_ADB161D:
14082 case FLASH_5761VENDOR_ATMEL_MDB161D:
14083 case FLASH_5761VENDOR_ST_A_M45PE16:
14084 case FLASH_5761VENDOR_ST_M_M45PE16:
14085 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
14086 break;
14087 case FLASH_5761VENDOR_ATMEL_ADB081D:
14088 case FLASH_5761VENDOR_ATMEL_MDB081D:
14089 case FLASH_5761VENDOR_ST_A_M45PE80:
14090 case FLASH_5761VENDOR_ST_M_M45PE80:
14091 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14092 break;
14093 case FLASH_5761VENDOR_ATMEL_ADB041D:
14094 case FLASH_5761VENDOR_ATMEL_MDB041D:
14095 case FLASH_5761VENDOR_ST_A_M45PE40:
14096 case FLASH_5761VENDOR_ST_M_M45PE40:
14097 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14098 break;
14099 case FLASH_5761VENDOR_ATMEL_ADB021D:
14100 case FLASH_5761VENDOR_ATMEL_MDB021D:
14101 case FLASH_5761VENDOR_ST_A_M45PE20:
14102 case FLASH_5761VENDOR_ST_M_M45PE20:
14103 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14104 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014105 }
14106 }
14107}
14108
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014109static void tg3_get_5906_nvram_info(struct tg3 *tp)
Michael Chanb5d37722006-09-27 16:06:21 -070014110{
14111 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014112 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070014113 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14114}
14115
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014116static void tg3_get_57780_nvram_info(struct tg3 *tp)
Matt Carlson321d32a2008-11-21 17:22:19 -080014117{
14118 u32 nvcfg1;
14119
14120 nvcfg1 = tr32(NVRAM_CFG1);
14121
14122 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14123 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14124 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14125 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014126 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080014127 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14128
14129 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14130 tw32(NVRAM_CFG1, nvcfg1);
14131 return;
14132 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14133 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14134 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14135 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14136 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14137 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14138 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14139 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014140 tg3_flag_set(tp, NVRAM_BUFFERED);
14141 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014142
14143 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14144 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14145 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14146 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14147 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14148 break;
14149 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14150 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14151 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14152 break;
14153 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14154 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14155 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14156 break;
14157 }
14158 break;
14159 case FLASH_5752VENDOR_ST_M45PE10:
14160 case FLASH_5752VENDOR_ST_M45PE20:
14161 case FLASH_5752VENDOR_ST_M45PE40:
14162 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014163 tg3_flag_set(tp, NVRAM_BUFFERED);
14164 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014165
14166 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14167 case FLASH_5752VENDOR_ST_M45PE10:
14168 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14169 break;
14170 case FLASH_5752VENDOR_ST_M45PE20:
14171 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14172 break;
14173 case FLASH_5752VENDOR_ST_M45PE40:
14174 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14175 break;
14176 }
14177 break;
14178 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014179 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080014180 return;
14181 }
14182
Matt Carlsona1b950d2009-09-01 13:20:17 +000014183 tg3_nvram_get_pagesize(tp, nvcfg1);
14184 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014185 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014186}
14187
14188
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014189static void tg3_get_5717_nvram_info(struct tg3 *tp)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014190{
14191 u32 nvcfg1;
14192
14193 nvcfg1 = tr32(NVRAM_CFG1);
14194
14195 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14196 case FLASH_5717VENDOR_ATMEL_EEPROM:
14197 case FLASH_5717VENDOR_MICRO_EEPROM:
14198 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014199 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014200 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14201
14202 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14203 tw32(NVRAM_CFG1, nvcfg1);
14204 return;
14205 case FLASH_5717VENDOR_ATMEL_MDB011D:
14206 case FLASH_5717VENDOR_ATMEL_ADB011B:
14207 case FLASH_5717VENDOR_ATMEL_ADB011D:
14208 case FLASH_5717VENDOR_ATMEL_MDB021D:
14209 case FLASH_5717VENDOR_ATMEL_ADB021B:
14210 case FLASH_5717VENDOR_ATMEL_ADB021D:
14211 case FLASH_5717VENDOR_ATMEL_45USPT:
14212 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014213 tg3_flag_set(tp, NVRAM_BUFFERED);
14214 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014215
14216 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14217 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014218 /* Detect size with tg3_nvram_get_size() */
14219 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014220 case FLASH_5717VENDOR_ATMEL_ADB021B:
14221 case FLASH_5717VENDOR_ATMEL_ADB021D:
14222 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14223 break;
14224 default:
14225 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14226 break;
14227 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014228 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014229 case FLASH_5717VENDOR_ST_M_M25PE10:
14230 case FLASH_5717VENDOR_ST_A_M25PE10:
14231 case FLASH_5717VENDOR_ST_M_M45PE10:
14232 case FLASH_5717VENDOR_ST_A_M45PE10:
14233 case FLASH_5717VENDOR_ST_M_M25PE20:
14234 case FLASH_5717VENDOR_ST_A_M25PE20:
14235 case FLASH_5717VENDOR_ST_M_M45PE20:
14236 case FLASH_5717VENDOR_ST_A_M45PE20:
14237 case FLASH_5717VENDOR_ST_25USPT:
14238 case FLASH_5717VENDOR_ST_45USPT:
14239 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014240 tg3_flag_set(tp, NVRAM_BUFFERED);
14241 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014242
14243 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14244 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014245 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014246 /* Detect size with tg3_nvram_get_size() */
14247 break;
14248 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014249 case FLASH_5717VENDOR_ST_A_M45PE20:
14250 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14251 break;
14252 default:
14253 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14254 break;
14255 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014256 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014257 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014258 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014259 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080014260 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000014261
14262 tg3_nvram_get_pagesize(tp, nvcfg1);
14263 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014264 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080014265}
14266
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014267static void tg3_get_5720_nvram_info(struct tg3 *tp)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014268{
14269 u32 nvcfg1, nvmpinstrp;
14270
14271 nvcfg1 = tr32(NVRAM_CFG1);
14272 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
14273
Joe Perches41535772013-02-16 11:20:04 +000014274 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014275 if (!(nvcfg1 & NVRAM_CFG1_5762VENDOR_MASK)) {
14276 tg3_flag_set(tp, NO_NVRAM);
14277 return;
14278 }
14279
14280 switch (nvmpinstrp) {
14281 case FLASH_5762_EEPROM_HD:
14282 nvmpinstrp = FLASH_5720_EEPROM_HD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014283 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014284 case FLASH_5762_EEPROM_LD:
14285 nvmpinstrp = FLASH_5720_EEPROM_LD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014286 break;
Michael Chanf6334bb2013-04-09 08:48:02 +000014287 case FLASH_5720VENDOR_M_ST_M45PE20:
14288 /* This pinstrap supports multiple sizes, so force it
14289 * to read the actual size from location 0xf0.
14290 */
14291 nvmpinstrp = FLASH_5720VENDOR_ST_45USPT;
14292 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014293 }
14294 }
14295
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014296 switch (nvmpinstrp) {
14297 case FLASH_5720_EEPROM_HD:
14298 case FLASH_5720_EEPROM_LD:
14299 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014300 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014301
14302 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14303 tw32(NVRAM_CFG1, nvcfg1);
14304 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
14305 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14306 else
14307 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
14308 return;
14309 case FLASH_5720VENDOR_M_ATMEL_DB011D:
14310 case FLASH_5720VENDOR_A_ATMEL_DB011B:
14311 case FLASH_5720VENDOR_A_ATMEL_DB011D:
14312 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14313 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14314 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14315 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14316 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14317 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14318 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14319 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14320 case FLASH_5720VENDOR_ATMEL_45USPT:
14321 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014322 tg3_flag_set(tp, NVRAM_BUFFERED);
14323 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014324
14325 switch (nvmpinstrp) {
14326 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14327 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14328 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14329 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14330 break;
14331 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14332 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14333 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14334 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14335 break;
14336 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14337 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14338 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14339 break;
14340 default:
Joe Perches41535772013-02-16 11:20:04 +000014341 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014342 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014343 break;
14344 }
14345 break;
14346 case FLASH_5720VENDOR_M_ST_M25PE10:
14347 case FLASH_5720VENDOR_M_ST_M45PE10:
14348 case FLASH_5720VENDOR_A_ST_M25PE10:
14349 case FLASH_5720VENDOR_A_ST_M45PE10:
14350 case FLASH_5720VENDOR_M_ST_M25PE20:
14351 case FLASH_5720VENDOR_M_ST_M45PE20:
14352 case FLASH_5720VENDOR_A_ST_M25PE20:
14353 case FLASH_5720VENDOR_A_ST_M45PE20:
14354 case FLASH_5720VENDOR_M_ST_M25PE40:
14355 case FLASH_5720VENDOR_M_ST_M45PE40:
14356 case FLASH_5720VENDOR_A_ST_M25PE40:
14357 case FLASH_5720VENDOR_A_ST_M45PE40:
14358 case FLASH_5720VENDOR_M_ST_M25PE80:
14359 case FLASH_5720VENDOR_M_ST_M45PE80:
14360 case FLASH_5720VENDOR_A_ST_M25PE80:
14361 case FLASH_5720VENDOR_A_ST_M45PE80:
14362 case FLASH_5720VENDOR_ST_25USPT:
14363 case FLASH_5720VENDOR_ST_45USPT:
14364 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014365 tg3_flag_set(tp, NVRAM_BUFFERED);
14366 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014367
14368 switch (nvmpinstrp) {
14369 case FLASH_5720VENDOR_M_ST_M25PE20:
14370 case FLASH_5720VENDOR_M_ST_M45PE20:
14371 case FLASH_5720VENDOR_A_ST_M25PE20:
14372 case FLASH_5720VENDOR_A_ST_M45PE20:
14373 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14374 break;
14375 case FLASH_5720VENDOR_M_ST_M25PE40:
14376 case FLASH_5720VENDOR_M_ST_M45PE40:
14377 case FLASH_5720VENDOR_A_ST_M25PE40:
14378 case FLASH_5720VENDOR_A_ST_M45PE40:
14379 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14380 break;
14381 case FLASH_5720VENDOR_M_ST_M25PE80:
14382 case FLASH_5720VENDOR_M_ST_M45PE80:
14383 case FLASH_5720VENDOR_A_ST_M25PE80:
14384 case FLASH_5720VENDOR_A_ST_M45PE80:
14385 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14386 break;
14387 default:
Joe Perches41535772013-02-16 11:20:04 +000014388 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014389 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014390 break;
14391 }
14392 break;
14393 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014394 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014395 return;
14396 }
14397
14398 tg3_nvram_get_pagesize(tp, nvcfg1);
14399 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014400 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Michael Chanc86a8562013-01-06 12:51:08 +000014401
Joe Perches41535772013-02-16 11:20:04 +000014402 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014403 u32 val;
14404
14405 if (tg3_nvram_read(tp, 0, &val))
14406 return;
14407
14408 if (val != TG3_EEPROM_MAGIC &&
14409 (val & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW)
14410 tg3_flag_set(tp, NO_NVRAM);
14411 }
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014412}
14413
Linus Torvalds1da177e2005-04-16 15:20:36 -070014414/* Chips other than 5700/5701 use the NVRAM for fetching info. */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014415static void tg3_nvram_init(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014416{
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014417 if (tg3_flag(tp, IS_SSB_CORE)) {
14418 /* No NVRAM and EEPROM on the SSB Broadcom GigE core. */
14419 tg3_flag_clear(tp, NVRAM);
14420 tg3_flag_clear(tp, NVRAM_BUFFERED);
14421 tg3_flag_set(tp, NO_NVRAM);
14422 return;
14423 }
14424
Linus Torvalds1da177e2005-04-16 15:20:36 -070014425 tw32_f(GRC_EEPROM_ADDR,
14426 (EEPROM_ADDR_FSM_RESET |
14427 (EEPROM_DEFAULT_CLOCK_PERIOD <<
14428 EEPROM_ADDR_CLKPERD_SHIFT)));
14429
Michael Chan9d57f012006-12-07 00:23:25 -080014430 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014431
14432 /* Enable seeprom accesses. */
14433 tw32_f(GRC_LOCAL_CTRL,
14434 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
14435 udelay(100);
14436
Joe Perches41535772013-02-16 11:20:04 +000014437 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14438 tg3_asic_rev(tp) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000014439 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014440
Michael Chanec41c7d2006-01-17 02:40:55 -080014441 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014442 netdev_warn(tp->dev,
14443 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000014444 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080014445 return;
14446 }
Michael Chane6af3012005-04-21 17:12:05 -070014447 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014448
Matt Carlson989a9d22007-05-05 11:51:05 -070014449 tp->nvram_size = 0;
14450
Joe Perches41535772013-02-16 11:20:04 +000014451 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan361b4ac2005-04-21 17:11:21 -070014452 tg3_get_5752_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014453 else if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chand3c7b882006-03-23 01:28:25 -080014454 tg3_get_5755_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014455 else if (tg3_asic_rev(tp) == ASIC_REV_5787 ||
14456 tg3_asic_rev(tp) == ASIC_REV_5784 ||
14457 tg3_asic_rev(tp) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080014458 tg3_get_5787_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014459 else if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014460 tg3_get_5761_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014461 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014462 tg3_get_5906_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014463 else if (tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014464 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080014465 tg3_get_57780_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014466 else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
14467 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014468 tg3_get_5717_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014469 else if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
14470 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014471 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070014472 else
14473 tg3_get_nvram_info(tp);
14474
Matt Carlson989a9d22007-05-05 11:51:05 -070014475 if (tp->nvram_size == 0)
14476 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014477
Michael Chane6af3012005-04-21 17:12:05 -070014478 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080014479 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014480
14481 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014482 tg3_flag_clear(tp, NVRAM);
14483 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014484
14485 tg3_get_eeprom_size(tp);
14486 }
14487}
14488
Linus Torvalds1da177e2005-04-16 15:20:36 -070014489struct subsys_tbl_ent {
14490 u16 subsys_vendor, subsys_devid;
14491 u32 phy_id;
14492};
14493
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014494static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014495 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014496 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014497 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014498 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014499 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014500 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014501 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014502 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14503 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
14504 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014505 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014506 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014507 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014508 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14509 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
14510 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014511 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014512 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014513 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014514 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014515 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014516 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014517 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014518
14519 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014520 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014521 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014522 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014523 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014524 { TG3PCI_SUBVENDOR_ID_3COM,
14525 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
14526 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014527 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014528 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014529 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014530
14531 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014532 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014533 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014534 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014535 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014536 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014537 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014538 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014539 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014540
14541 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014542 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014543 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014544 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014545 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014546 { TG3PCI_SUBVENDOR_ID_COMPAQ,
14547 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
14548 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014549 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014550 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014551 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014552
14553 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014554 { TG3PCI_SUBVENDOR_ID_IBM,
14555 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014556};
14557
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014558static struct subsys_tbl_ent *tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014559{
14560 int i;
14561
14562 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
14563 if ((subsys_id_to_phy_id[i].subsys_vendor ==
14564 tp->pdev->subsystem_vendor) &&
14565 (subsys_id_to_phy_id[i].subsys_devid ==
14566 tp->pdev->subsystem_device))
14567 return &subsys_id_to_phy_id[i];
14568 }
14569 return NULL;
14570}
14571
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014572static void tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014573{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014574 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070014575
Matt Carlson79eb6902010-02-17 15:17:03 +000014576 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014577 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14578
Gary Zambranoa85feb82007-05-05 11:52:19 -070014579 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000014580 tg3_flag_set(tp, EEPROM_WRITE_PROT);
14581 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080014582
Joe Perches41535772013-02-16 11:20:04 +000014583 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080014584 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014585 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14586 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014587 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014588 val = tr32(VCPU_CFGSHDW);
14589 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000014590 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070014591 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014592 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014593 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014594 device_set_wakeup_enable(&tp->pdev->dev, true);
14595 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014596 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070014597 }
14598
Linus Torvalds1da177e2005-04-16 15:20:36 -070014599 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
14600 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
14601 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070014602 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014603 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014604
14605 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
14606 tp->nic_sram_data_cfg = nic_cfg;
14607
14608 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
14609 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000014610 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14611 tg3_asic_rev(tp) != ASIC_REV_5701 &&
14612 tg3_asic_rev(tp) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014613 (ver > 0) && (ver < 0x100))
14614 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
14615
Joe Perches41535772013-02-16 11:20:04 +000014616 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlsona9daf362008-05-25 23:49:44 -070014617 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
14618
Linus Torvalds1da177e2005-04-16 15:20:36 -070014619 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
14620 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
14621 eeprom_phy_serdes = 1;
14622
14623 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
14624 if (nic_phy_id != 0) {
14625 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
14626 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
14627
14628 eeprom_phy_id = (id1 >> 16) << 10;
14629 eeprom_phy_id |= (id2 & 0xfc00) << 16;
14630 eeprom_phy_id |= (id2 & 0x03ff) << 0;
14631 } else
14632 eeprom_phy_id = 0;
14633
Michael Chan7d0c41e2005-04-21 17:06:20 -070014634 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070014635 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000014636 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014637 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000014638 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014639 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070014640 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070014641
Joe Perches63c3a662011-04-26 08:12:10 +000014642 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014643 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
14644 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070014645 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014646 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
14647
14648 switch (led_cfg) {
14649 default:
14650 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
14651 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14652 break;
14653
14654 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
14655 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14656 break;
14657
14658 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
14659 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070014660
14661 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
14662 * read on some older 5700/5701 bootcode.
14663 */
Joe Perches41535772013-02-16 11:20:04 +000014664 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
14665 tg3_asic_rev(tp) == ASIC_REV_5701)
Michael Chan9ba27792005-06-06 15:16:20 -070014666 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14667
Linus Torvalds1da177e2005-04-16 15:20:36 -070014668 break;
14669
14670 case SHASTA_EXT_LED_SHARED:
14671 tp->led_ctrl = LED_CTRL_MODE_SHARED;
Joe Perches41535772013-02-16 11:20:04 +000014672 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
14673 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014674 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14675 LED_CTRL_MODE_PHY_2);
14676 break;
14677
14678 case SHASTA_EXT_LED_MAC:
14679 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
14680 break;
14681
14682 case SHASTA_EXT_LED_COMBO:
14683 tp->led_ctrl = LED_CTRL_MODE_COMBO;
Joe Perches41535772013-02-16 11:20:04 +000014684 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014685 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14686 LED_CTRL_MODE_PHY_2);
14687 break;
14688
Stephen Hemminger855e1112008-04-16 16:37:28 -070014689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014690
Joe Perches41535772013-02-16 11:20:04 +000014691 if ((tg3_asic_rev(tp) == ASIC_REV_5700 ||
14692 tg3_asic_rev(tp) == ASIC_REV_5701) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014693 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
14694 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14695
Joe Perches41535772013-02-16 11:20:04 +000014696 if (tg3_chip_rev(tp) == CHIPREV_5784_AX)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014697 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080014698
Michael Chan9d26e212006-12-07 00:21:14 -080014699 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000014700 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014701 if ((tp->pdev->subsystem_vendor ==
14702 PCI_VENDOR_ID_ARIMA) &&
14703 (tp->pdev->subsystem_device == 0x205a ||
14704 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000014705 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014706 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014707 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14708 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014710
14711 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000014712 tg3_flag_set(tp, ENABLE_ASF);
14713 if (tg3_flag(tp, 5750_PLUS))
14714 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014715 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014716
14717 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014718 tg3_flag(tp, 5750_PLUS))
14719 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014720
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014721 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070014722 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000014723 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014724
Joe Perches63c3a662011-04-26 08:12:10 +000014725 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014726 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014727 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014728 device_set_wakeup_enable(&tp->pdev->dev, true);
14729 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014730
Linus Torvalds1da177e2005-04-16 15:20:36 -070014731 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014732 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014733
14734 /* serdes signal pre-emphasis in register 0x590 set by */
14735 /* bootcode if bit 18 is set */
14736 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014737 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014738
Joe Perches63c3a662011-04-26 08:12:10 +000014739 if ((tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000014740 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
14741 tg3_chip_rev(tp) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080014742 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014743 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080014744
Nithin Sujir942d1af2013-04-09 08:48:07 +000014745 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070014746 u32 cfg3;
14747
14748 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014749 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
14750 !tg3_flag(tp, 57765_PLUS) &&
14751 (cfg3 & NIC_SRAM_ASPM_DEBOUNCE))
Joe Perches63c3a662011-04-26 08:12:10 +000014752 tg3_flag_set(tp, ASPM_WORKAROUND);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014753 if (cfg3 & NIC_SRAM_LNK_FLAP_AVOID)
14754 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
14755 if (cfg3 & NIC_SRAM_1G_ON_VAUX_OK)
14756 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014757 }
Matt Carlsona9daf362008-05-25 23:49:44 -070014758
Matt Carlson14417062010-02-17 15:16:59 +000014759 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000014760 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070014761 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014762 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070014763 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014764 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014765 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014766done:
Joe Perches63c3a662011-04-26 08:12:10 +000014767 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014768 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000014769 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014770 else
14771 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070014772}
14773
Michael Chanc86a8562013-01-06 12:51:08 +000014774static int tg3_ape_otp_read(struct tg3 *tp, u32 offset, u32 *val)
14775{
14776 int i, err;
14777 u32 val2, off = offset * 8;
14778
14779 err = tg3_nvram_lock(tp);
14780 if (err)
14781 return err;
14782
14783 tg3_ape_write32(tp, TG3_APE_OTP_ADDR, off | APE_OTP_ADDR_CPU_ENABLE);
14784 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, APE_OTP_CTRL_PROG_EN |
14785 APE_OTP_CTRL_CMD_RD | APE_OTP_CTRL_START);
14786 tg3_ape_read32(tp, TG3_APE_OTP_CTRL);
14787 udelay(10);
14788
14789 for (i = 0; i < 100; i++) {
14790 val2 = tg3_ape_read32(tp, TG3_APE_OTP_STATUS);
14791 if (val2 & APE_OTP_STATUS_CMD_DONE) {
14792 *val = tg3_ape_read32(tp, TG3_APE_OTP_RD_DATA);
14793 break;
14794 }
14795 udelay(10);
14796 }
14797
14798 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, 0);
14799
14800 tg3_nvram_unlock(tp);
14801 if (val2 & APE_OTP_STATUS_CMD_DONE)
14802 return 0;
14803
14804 return -EBUSY;
14805}
14806
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014807static int tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014808{
14809 int i;
14810 u32 val;
14811
14812 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
14813 tw32(OTP_CTRL, cmd);
14814
14815 /* Wait for up to 1 ms for command to execute. */
14816 for (i = 0; i < 100; i++) {
14817 val = tr32(OTP_STATUS);
14818 if (val & OTP_STATUS_CMD_DONE)
14819 break;
14820 udelay(10);
14821 }
14822
14823 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
14824}
14825
14826/* Read the gphy configuration from the OTP region of the chip. The gphy
14827 * configuration is a 32-bit value that straddles the alignment boundary.
14828 * We do two 32-bit reads and then shift and merge the results.
14829 */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014830static u32 tg3_read_otp_phycfg(struct tg3 *tp)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014831{
14832 u32 bhalf_otp, thalf_otp;
14833
14834 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
14835
14836 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
14837 return 0;
14838
14839 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
14840
14841 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14842 return 0;
14843
14844 thalf_otp = tr32(OTP_READ_DATA);
14845
14846 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
14847
14848 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14849 return 0;
14850
14851 bhalf_otp = tr32(OTP_READ_DATA);
14852
14853 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
14854}
14855
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014856static void tg3_phy_init_link_config(struct tg3 *tp)
Matt Carlsone256f8a2011-03-09 16:58:24 +000014857{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000014858 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014859
14860 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
14861 adv |= ADVERTISED_1000baseT_Half |
14862 ADVERTISED_1000baseT_Full;
14863
14864 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14865 adv |= ADVERTISED_100baseT_Half |
14866 ADVERTISED_100baseT_Full |
14867 ADVERTISED_10baseT_Half |
14868 ADVERTISED_10baseT_Full |
14869 ADVERTISED_TP;
14870 else
14871 adv |= ADVERTISED_FIBRE;
14872
14873 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000014874 tp->link_config.speed = SPEED_UNKNOWN;
14875 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014876 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000014877 tp->link_config.active_speed = SPEED_UNKNOWN;
14878 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000014879
14880 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014881}
14882
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014883static int tg3_phy_probe(struct tg3 *tp)
Michael Chan7d0c41e2005-04-21 17:06:20 -070014884{
14885 u32 hw_phy_id_1, hw_phy_id_2;
14886 u32 hw_phy_id, hw_phy_id_masked;
14887 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014888
Matt Carlsone256f8a2011-03-09 16:58:24 +000014889 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000014890 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000014891 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
14892
Michael Chan8151ad52012-07-29 19:15:41 +000014893 if (tg3_flag(tp, ENABLE_APE)) {
14894 switch (tp->pci_fn) {
14895 case 0:
14896 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
14897 break;
14898 case 1:
14899 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
14900 break;
14901 case 2:
14902 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
14903 break;
14904 case 3:
14905 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
14906 break;
14907 }
14908 }
14909
Nithin Sujir942d1af2013-04-09 08:48:07 +000014910 if (!tg3_flag(tp, ENABLE_ASF) &&
14911 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
14912 !(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
14913 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
14914 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
14915
Joe Perches63c3a662011-04-26 08:12:10 +000014916 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014917 return tg3_phy_init(tp);
14918
Linus Torvalds1da177e2005-04-16 15:20:36 -070014919 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010014920 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014921 */
14922 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000014923 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000014924 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014925 } else {
14926 /* Now read the physical PHY_ID from the chip and verify
14927 * that it is sane. If it doesn't look good, we fall back
14928 * to either the hard-coded table based PHY_ID and failing
14929 * that the value found in the eeprom area.
14930 */
14931 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
14932 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
14933
14934 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
14935 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
14936 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
14937
Matt Carlson79eb6902010-02-17 15:17:03 +000014938 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014939 }
14940
Matt Carlson79eb6902010-02-17 15:17:03 +000014941 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014942 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000014943 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014944 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070014945 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014946 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014947 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000014948 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070014949 /* Do nothing, phy ID already set up in
14950 * tg3_get_eeprom_hw_cfg().
14951 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014952 } else {
14953 struct subsys_tbl_ent *p;
14954
14955 /* No eeprom signature? Try the hardcoded
14956 * subsys device table.
14957 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014958 p = tg3_lookup_by_subsys(tp);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014959 if (p) {
14960 tp->phy_id = p->phy_id;
14961 } else if (!tg3_flag(tp, IS_SSB_CORE)) {
14962 /* For now we saw the IDs 0xbc050cd0,
14963 * 0xbc050f80 and 0xbc050c30 on devices
14964 * connected to an BCM4785 and there are
14965 * probably more. Just assume that the phy is
14966 * supported when it is connected to a SSB core
14967 * for now.
14968 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014969 return -ENODEV;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014971
Linus Torvalds1da177e2005-04-16 15:20:36 -070014972 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000014973 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014974 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014975 }
14976 }
14977
Matt Carlsona6b68da2010-12-06 08:28:52 +000014978 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000014979 (tg3_asic_rev(tp) == ASIC_REV_5719 ||
14980 tg3_asic_rev(tp) == ASIC_REV_5720 ||
Nithin Sujirc4dab502013-03-06 17:02:34 +000014981 tg3_asic_rev(tp) == ASIC_REV_57766 ||
Joe Perches41535772013-02-16 11:20:04 +000014982 tg3_asic_rev(tp) == ASIC_REV_5762 ||
14983 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
14984 tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0) ||
14985 (tg3_asic_rev(tp) == ASIC_REV_57765 &&
14986 tg3_chip_rev_id(tp) != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000014987 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
14988
Matt Carlsone256f8a2011-03-09 16:58:24 +000014989 tg3_phy_init_link_config(tp);
14990
Nithin Sujir942d1af2013-04-09 08:48:07 +000014991 if (!(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
14992 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014993 !tg3_flag(tp, ENABLE_APE) &&
14994 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000014995 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014996
14997 tg3_readphy(tp, MII_BMSR, &bmsr);
14998 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
14999 (bmsr & BMSR_LSTATUS))
15000 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040015001
Linus Torvalds1da177e2005-04-16 15:20:36 -070015002 err = tg3_phy_reset(tp);
15003 if (err)
15004 return err;
15005
Matt Carlson42b64a42011-05-19 12:12:49 +000015006 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015007
Matt Carlsone2bf73e2011-12-08 14:40:15 +000015008 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000015009 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
15010 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015011
15012 tg3_writephy(tp, MII_BMCR,
15013 BMCR_ANENABLE | BMCR_ANRESTART);
15014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015015 }
15016
15017skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000015018 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015019 err = tg3_init_5401phy_dsp(tp);
15020 if (err)
15021 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015022
Linus Torvalds1da177e2005-04-16 15:20:36 -070015023 err = tg3_init_5401phy_dsp(tp);
15024 }
15025
Linus Torvalds1da177e2005-04-16 15:20:36 -070015026 return err;
15027}
15028
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015029static void tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015030{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015031 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015032 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000015033 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000015034 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015035
Matt Carlson535a4902011-07-20 10:20:56 +000015036 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015037 if (!vpd_data)
15038 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015039
Matt Carlson535a4902011-07-20 10:20:56 +000015040 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000015041 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015042 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015043
15044 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
15045 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
15046 i += PCI_VPD_LRDT_TAG_SIZE;
15047
Matt Carlson535a4902011-07-20 10:20:56 +000015048 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015049 goto out_not_found;
15050
Matt Carlson184b8902010-04-05 10:19:25 +000015051 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15052 PCI_VPD_RO_KEYWORD_MFR_ID);
15053 if (j > 0) {
15054 len = pci_vpd_info_field_size(&vpd_data[j]);
15055
15056 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15057 if (j + len > block_end || len != 4 ||
15058 memcmp(&vpd_data[j], "1028", 4))
15059 goto partno;
15060
15061 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15062 PCI_VPD_RO_KEYWORD_VENDOR0);
15063 if (j < 0)
15064 goto partno;
15065
15066 len = pci_vpd_info_field_size(&vpd_data[j]);
15067
15068 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15069 if (j + len > block_end)
15070 goto partno;
15071
Kees Cook715230a2013-03-27 06:40:50 +000015072 if (len >= sizeof(tp->fw_ver))
15073 len = sizeof(tp->fw_ver) - 1;
15074 memset(tp->fw_ver, 0, sizeof(tp->fw_ver));
15075 snprintf(tp->fw_ver, sizeof(tp->fw_ver), "%.*s bc ", len,
15076 &vpd_data[j]);
Matt Carlson184b8902010-04-05 10:19:25 +000015077 }
15078
15079partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000015080 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15081 PCI_VPD_RO_KEYWORD_PARTNO);
15082 if (i < 0)
15083 goto out_not_found;
15084
15085 len = pci_vpd_info_field_size(&vpd_data[i]);
15086
15087 i += PCI_VPD_INFO_FLD_HDR_SIZE;
15088 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000015089 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015090 goto out_not_found;
15091
15092 memcpy(tp->board_part_number, &vpd_data[i], len);
15093
Linus Torvalds1da177e2005-04-16 15:20:36 -070015094out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015095 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000015096 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015097 return;
15098
15099out_no_vpd:
Joe Perches41535772013-02-16 11:20:04 +000015100 if (tg3_asic_rev(tp) == ASIC_REV_5717) {
Michael Chan79d49692012-11-05 14:26:29 +000015101 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15102 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C)
Matt Carlson37a949c2010-09-30 10:34:33 +000015103 strcpy(tp->board_part_number, "BCM5717");
15104 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
15105 strcpy(tp->board_part_number, "BCM5718");
15106 else
15107 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015108 } else if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015109 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
15110 strcpy(tp->board_part_number, "BCM57780");
15111 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
15112 strcpy(tp->board_part_number, "BCM57760");
15113 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
15114 strcpy(tp->board_part_number, "BCM57790");
15115 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
15116 strcpy(tp->board_part_number, "BCM57788");
15117 else
15118 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015119 } else if (tg3_asic_rev(tp) == ASIC_REV_57765) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015120 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
15121 strcpy(tp->board_part_number, "BCM57761");
15122 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
15123 strcpy(tp->board_part_number, "BCM57765");
15124 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
15125 strcpy(tp->board_part_number, "BCM57781");
15126 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
15127 strcpy(tp->board_part_number, "BCM57785");
15128 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
15129 strcpy(tp->board_part_number, "BCM57791");
15130 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
15131 strcpy(tp->board_part_number, "BCM57795");
15132 else
15133 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015134 } else if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlson55086ad2011-12-14 11:09:59 +000015135 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
15136 strcpy(tp->board_part_number, "BCM57762");
15137 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
15138 strcpy(tp->board_part_number, "BCM57766");
15139 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
15140 strcpy(tp->board_part_number, "BCM57782");
15141 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15142 strcpy(tp->board_part_number, "BCM57786");
15143 else
15144 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015145 } else if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015146 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000015147 } else {
15148nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070015149 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000015150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015151}
15152
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015153static int tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
Matt Carlson9c8a6202007-10-21 16:16:08 -070015154{
15155 u32 val;
15156
Matt Carlsone4f34112009-02-25 14:25:00 +000015157 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015158 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015159 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015160 val != 0)
15161 return 0;
15162
15163 return 1;
15164}
15165
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015166static void tg3_read_bc_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015167{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015168 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000015169 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015170 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015171
15172 if (tg3_nvram_read(tp, 0xc, &offset) ||
15173 tg3_nvram_read(tp, 0x4, &start))
15174 return;
15175
15176 offset = tg3_nvram_logical_addr(tp, offset);
15177
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015178 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015179 return;
15180
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015181 if ((val & 0xfc000000) == 0x0c000000) {
15182 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015183 return;
15184
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015185 if (val == 0)
15186 newver = true;
15187 }
15188
Matt Carlson75f99362010-04-05 10:19:24 +000015189 dst_off = strlen(tp->fw_ver);
15190
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015191 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000015192 if (TG3_VER_SIZE - dst_off < 16 ||
15193 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015194 return;
15195
15196 offset = offset + ver_offset - start;
15197 for (i = 0; i < 16; i += 4) {
15198 __be32 v;
15199 if (tg3_nvram_read_be32(tp, offset + i, &v))
15200 return;
15201
Matt Carlson75f99362010-04-05 10:19:24 +000015202 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015203 }
15204 } else {
15205 u32 major, minor;
15206
15207 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
15208 return;
15209
15210 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
15211 TG3_NVM_BCVER_MAJSFT;
15212 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000015213 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
15214 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015215 }
15216}
15217
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015218static void tg3_read_hwsb_ver(struct tg3 *tp)
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015219{
15220 u32 val, major, minor;
15221
15222 /* Use native endian representation */
15223 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
15224 return;
15225
15226 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
15227 TG3_NVM_HWSB_CFG1_MAJSFT;
15228 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
15229 TG3_NVM_HWSB_CFG1_MINSFT;
15230
15231 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
15232}
15233
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015234static void tg3_read_sb_ver(struct tg3 *tp, u32 val)
Matt Carlsondfe00d72008-11-21 17:19:41 -080015235{
15236 u32 offset, major, minor, build;
15237
Matt Carlson75f99362010-04-05 10:19:24 +000015238 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015239
15240 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
15241 return;
15242
15243 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
15244 case TG3_EEPROM_SB_REVISION_0:
15245 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
15246 break;
15247 case TG3_EEPROM_SB_REVISION_2:
15248 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
15249 break;
15250 case TG3_EEPROM_SB_REVISION_3:
15251 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
15252 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000015253 case TG3_EEPROM_SB_REVISION_4:
15254 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
15255 break;
15256 case TG3_EEPROM_SB_REVISION_5:
15257 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
15258 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000015259 case TG3_EEPROM_SB_REVISION_6:
15260 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
15261 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015262 default:
15263 return;
15264 }
15265
Matt Carlsone4f34112009-02-25 14:25:00 +000015266 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080015267 return;
15268
15269 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
15270 TG3_EEPROM_SB_EDH_BLD_SHFT;
15271 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
15272 TG3_EEPROM_SB_EDH_MAJ_SHFT;
15273 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
15274
15275 if (minor > 99 || build > 26)
15276 return;
15277
Matt Carlson75f99362010-04-05 10:19:24 +000015278 offset = strlen(tp->fw_ver);
15279 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
15280 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015281
15282 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000015283 offset = strlen(tp->fw_ver);
15284 if (offset < TG3_VER_SIZE - 1)
15285 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015286 }
15287}
15288
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015289static void tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080015290{
15291 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015292 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070015293
15294 for (offset = TG3_NVM_DIR_START;
15295 offset < TG3_NVM_DIR_END;
15296 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000015297 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015298 return;
15299
15300 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
15301 break;
15302 }
15303
15304 if (offset == TG3_NVM_DIR_END)
15305 return;
15306
Joe Perches63c3a662011-04-26 08:12:10 +000015307 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015308 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000015309 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015310 return;
15311
Matt Carlsone4f34112009-02-25 14:25:00 +000015312 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015313 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015314 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015315 return;
15316
15317 offset += val - start;
15318
Matt Carlsonacd9c112009-02-25 14:26:33 +000015319 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015320
Matt Carlsonacd9c112009-02-25 14:26:33 +000015321 tp->fw_ver[vlen++] = ',';
15322 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070015323
15324 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000015325 __be32 v;
15326 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015327 return;
15328
Al Virob9fc7dc2007-12-17 22:59:57 -080015329 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015330
Matt Carlsonacd9c112009-02-25 14:26:33 +000015331 if (vlen > TG3_VER_SIZE - sizeof(v)) {
15332 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015333 break;
15334 }
15335
Matt Carlsonacd9c112009-02-25 14:26:33 +000015336 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
15337 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015338 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000015339}
15340
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015341static void tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000015342{
Matt Carlson7fd76442009-02-25 14:27:20 +000015343 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000015344
15345 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
15346 if (apedata != APE_SEG_SIG_MAGIC)
15347 return;
15348
15349 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
15350 if (!(apedata & APE_FW_STATUS_READY))
15351 return;
15352
Michael Chan165f4d12012-07-16 16:23:59 +000015353 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
15354 tg3_flag_set(tp, APE_HAS_NCSI);
15355}
15356
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015357static void tg3_read_dash_ver(struct tg3 *tp)
Michael Chan165f4d12012-07-16 16:23:59 +000015358{
15359 int vlen;
15360 u32 apedata;
15361 char *fwtype;
15362
Matt Carlson7fd76442009-02-25 14:27:20 +000015363 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
15364
Michael Chan165f4d12012-07-16 16:23:59 +000015365 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000015366 fwtype = "NCSI";
Michael Chanc86a8562013-01-06 12:51:08 +000015367 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725)
15368 fwtype = "SMASH";
Michael Chan165f4d12012-07-16 16:23:59 +000015369 else
Matt Carlsonecc79642010-08-02 11:26:01 +000015370 fwtype = "DASH";
15371
Matt Carlson7fd76442009-02-25 14:27:20 +000015372 vlen = strlen(tp->fw_ver);
15373
Matt Carlsonecc79642010-08-02 11:26:01 +000015374 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
15375 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000015376 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
15377 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
15378 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
15379 (apedata & APE_FW_VERSION_BLDMSK));
15380}
15381
Michael Chanc86a8562013-01-06 12:51:08 +000015382static void tg3_read_otp_ver(struct tg3 *tp)
15383{
15384 u32 val, val2;
15385
Joe Perches41535772013-02-16 11:20:04 +000015386 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000015387 return;
15388
15389 if (!tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0, &val) &&
15390 !tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0 + 4, &val2) &&
15391 TG3_OTP_MAGIC0_VALID(val)) {
15392 u64 val64 = (u64) val << 32 | val2;
15393 u32 ver = 0;
15394 int i, vlen;
15395
15396 for (i = 0; i < 7; i++) {
15397 if ((val64 & 0xff) == 0)
15398 break;
15399 ver = val64 & 0xff;
15400 val64 >>= 8;
15401 }
15402 vlen = strlen(tp->fw_ver);
15403 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " .%02d", ver);
15404 }
15405}
15406
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015407static void tg3_read_fw_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015408{
15409 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000015410 bool vpd_vers = false;
15411
15412 if (tp->fw_ver[0] != 0)
15413 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015414
Joe Perches63c3a662011-04-26 08:12:10 +000015415 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000015416 strcat(tp->fw_ver, "sb");
Michael Chanc86a8562013-01-06 12:51:08 +000015417 tg3_read_otp_ver(tp);
Matt Carlsondf259d82009-04-20 06:57:14 +000015418 return;
15419 }
15420
Matt Carlsonacd9c112009-02-25 14:26:33 +000015421 if (tg3_nvram_read(tp, 0, &val))
15422 return;
15423
15424 if (val == TG3_EEPROM_MAGIC)
15425 tg3_read_bc_ver(tp);
15426 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
15427 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015428 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
15429 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015430
Michael Chan165f4d12012-07-16 16:23:59 +000015431 if (tg3_flag(tp, ENABLE_ASF)) {
15432 if (tg3_flag(tp, ENABLE_APE)) {
15433 tg3_probe_ncsi(tp);
15434 if (!vpd_vers)
15435 tg3_read_dash_ver(tp);
15436 } else if (!vpd_vers) {
15437 tg3_read_mgmtfw_ver(tp);
15438 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000015439 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070015440
15441 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080015442}
15443
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015444static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
15445{
Joe Perches63c3a662011-04-26 08:12:10 +000015446 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015447 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000015448 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015449 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015450 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000015451 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015452}
15453
Matt Carlson41434702011-03-09 16:58:22 +000015454static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015455 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
15456 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
15457 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
15458 { },
15459};
15460
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015461static struct pci_dev *tg3_find_peer(struct tg3 *tp)
Matt Carlson16c7fa72012-02-13 10:20:10 +000015462{
15463 struct pci_dev *peer;
15464 unsigned int func, devnr = tp->pdev->devfn & ~7;
15465
15466 for (func = 0; func < 8; func++) {
15467 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15468 if (peer && peer != tp->pdev)
15469 break;
15470 pci_dev_put(peer);
15471 }
15472 /* 5704 can be configured in single-port mode, set peer to
15473 * tp->pdev in that case.
15474 */
15475 if (!peer) {
15476 peer = tp->pdev;
15477 return peer;
15478 }
15479
15480 /*
15481 * We don't need to keep the refcount elevated; there's no way
15482 * to remove one half of this device without removing the other
15483 */
15484 pci_dev_put(peer);
15485
15486 return peer;
15487}
15488
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015489static void tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
Matt Carlson42b123b2012-02-13 15:20:13 +000015490{
15491 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000015492 if (tg3_asic_rev(tp) == ASIC_REV_USE_PROD_ID_REG) {
Matt Carlson42b123b2012-02-13 15:20:13 +000015493 u32 reg;
15494
15495 /* All devices that use the alternate
15496 * ASIC REV location have a CPMU.
15497 */
15498 tg3_flag_set(tp, CPMU_PRESENT);
15499
15500 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000015501 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015502 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15503 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000015504 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
15505 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
15506 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
15507 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727)
Matt Carlson42b123b2012-02-13 15:20:13 +000015508 reg = TG3PCI_GEN2_PRODID_ASICREV;
15509 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
15510 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
15511 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
15512 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
15513 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
15514 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
15515 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
15516 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
15517 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
15518 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15519 reg = TG3PCI_GEN15_PRODID_ASICREV;
15520 else
15521 reg = TG3PCI_PRODID_ASICREV;
15522
15523 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
15524 }
15525
15526 /* Wrong chip ID in 5752 A0. This code can be removed later
15527 * as A0 is not in production.
15528 */
Joe Perches41535772013-02-16 11:20:04 +000015529 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5752_A0_HW)
Matt Carlson42b123b2012-02-13 15:20:13 +000015530 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
15531
Joe Perches41535772013-02-16 11:20:04 +000015532 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_C0)
Michael Chan79d49692012-11-05 14:26:29 +000015533 tp->pci_chip_rev_id = CHIPREV_ID_5720_A0;
15534
Joe Perches41535772013-02-16 11:20:04 +000015535 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15536 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15537 tg3_asic_rev(tp) == ASIC_REV_5720)
Matt Carlson42b123b2012-02-13 15:20:13 +000015538 tg3_flag_set(tp, 5717_PLUS);
15539
Joe Perches41535772013-02-16 11:20:04 +000015540 if (tg3_asic_rev(tp) == ASIC_REV_57765 ||
15541 tg3_asic_rev(tp) == ASIC_REV_57766)
Matt Carlson42b123b2012-02-13 15:20:13 +000015542 tg3_flag_set(tp, 57765_CLASS);
15543
Michael Chanc65a17f2013-01-06 12:51:07 +000015544 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015545 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson42b123b2012-02-13 15:20:13 +000015546 tg3_flag_set(tp, 57765_PLUS);
15547
15548 /* Intentionally exclude ASIC_REV_5906 */
Joe Perches41535772013-02-16 11:20:04 +000015549 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
15550 tg3_asic_rev(tp) == ASIC_REV_5787 ||
15551 tg3_asic_rev(tp) == ASIC_REV_5784 ||
15552 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15553 tg3_asic_rev(tp) == ASIC_REV_5785 ||
15554 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015555 tg3_flag(tp, 57765_PLUS))
15556 tg3_flag_set(tp, 5755_PLUS);
15557
Joe Perches41535772013-02-16 11:20:04 +000015558 if (tg3_asic_rev(tp) == ASIC_REV_5780 ||
15559 tg3_asic_rev(tp) == ASIC_REV_5714)
Matt Carlson42b123b2012-02-13 15:20:13 +000015560 tg3_flag_set(tp, 5780_CLASS);
15561
Joe Perches41535772013-02-16 11:20:04 +000015562 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
15563 tg3_asic_rev(tp) == ASIC_REV_5752 ||
15564 tg3_asic_rev(tp) == ASIC_REV_5906 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015565 tg3_flag(tp, 5755_PLUS) ||
15566 tg3_flag(tp, 5780_CLASS))
15567 tg3_flag_set(tp, 5750_PLUS);
15568
Joe Perches41535772013-02-16 11:20:04 +000015569 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015570 tg3_flag(tp, 5750_PLUS))
15571 tg3_flag_set(tp, 5705_PLUS);
15572}
15573
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015574static bool tg3_10_100_only_device(struct tg3 *tp,
15575 const struct pci_device_id *ent)
15576{
15577 u32 grc_misc_cfg = tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK;
15578
Joe Perches41535772013-02-16 11:20:04 +000015579 if ((tg3_asic_rev(tp) == ASIC_REV_5703 &&
15580 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015581 (tp->phy_flags & TG3_PHYFLG_IS_FET))
15582 return true;
15583
15584 if (ent->driver_data & TG3_DRV_DATA_FLAG_10_100_ONLY) {
Joe Perches41535772013-02-16 11:20:04 +000015585 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015586 if (ent->driver_data & TG3_DRV_DATA_FLAG_5705_10_100)
15587 return true;
15588 } else {
15589 return true;
15590 }
15591 }
15592
15593 return false;
15594}
15595
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000015596static int tg3_get_invariants(struct tg3 *tp, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015597{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015598 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015599 u32 pci_state_reg, grc_misc_cfg;
15600 u32 val;
15601 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015602 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015603
Linus Torvalds1da177e2005-04-16 15:20:36 -070015604 /* Force memory write invalidate off. If we leave it on,
15605 * then on 5700_BX chips we have to enable a workaround.
15606 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
15607 * to match the cacheline size. The Broadcom driver have this
15608 * workaround but turns MWI off all the times so never uses
15609 * it. This seems to suggest that the workaround is insufficient.
15610 */
15611 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15612 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
15613 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15614
Matt Carlson16821282011-07-13 09:27:28 +000015615 /* Important! -- Make sure register accesses are byteswapped
15616 * correctly. Also, for those chips that require it, make
15617 * sure that indirect register accesses are enabled before
15618 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015619 */
15620 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15621 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000015622 tp->misc_host_ctrl |= (misc_ctrl_reg &
15623 MISC_HOST_CTRL_CHIPREV);
15624 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15625 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015626
Matt Carlson42b123b2012-02-13 15:20:13 +000015627 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070015628
Michael Chan68929142005-08-09 20:17:14 -070015629 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
15630 * we need to disable memory and use config. cycles
15631 * only to access all registers. The 5702/03 chips
15632 * can mistakenly decode the special cycles from the
15633 * ICH chipsets as memory write cycles, causing corruption
15634 * of register and memory space. Only certain ICH bridges
15635 * will drive special cycles with non-zero data during the
15636 * address phase which can fall within the 5703's address
15637 * range. This is not an ICH bug as the PCI spec allows
15638 * non-zero address during special cycles. However, only
15639 * these ICH bridges are known to drive non-zero addresses
15640 * during special cycles.
15641 *
15642 * Since special cycles do not cross PCI bridges, we only
15643 * enable this workaround if the 5703 is on the secondary
15644 * bus of these ICH bridges.
15645 */
Joe Perches41535772013-02-16 11:20:04 +000015646 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1) ||
15647 (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A2)) {
Michael Chan68929142005-08-09 20:17:14 -070015648 static struct tg3_dev_id {
15649 u32 vendor;
15650 u32 device;
15651 u32 rev;
15652 } ich_chipsets[] = {
15653 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
15654 PCI_ANY_ID },
15655 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
15656 PCI_ANY_ID },
15657 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
15658 0xa },
15659 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
15660 PCI_ANY_ID },
15661 { },
15662 };
15663 struct tg3_dev_id *pci_id = &ich_chipsets[0];
15664 struct pci_dev *bridge = NULL;
15665
15666 while (pci_id->vendor != 0) {
15667 bridge = pci_get_device(pci_id->vendor, pci_id->device,
15668 bridge);
15669 if (!bridge) {
15670 pci_id++;
15671 continue;
15672 }
15673 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070015674 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070015675 continue;
15676 }
15677 if (bridge->subordinate &&
15678 (bridge->subordinate->number ==
15679 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015680 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070015681 pci_dev_put(bridge);
15682 break;
15683 }
15684 }
15685 }
15686
Joe Perches41535772013-02-16 11:20:04 +000015687 if (tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070015688 static struct tg3_dev_id {
15689 u32 vendor;
15690 u32 device;
15691 } bridge_chipsets[] = {
15692 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
15693 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
15694 { },
15695 };
15696 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
15697 struct pci_dev *bridge = NULL;
15698
15699 while (pci_id->vendor != 0) {
15700 bridge = pci_get_device(pci_id->vendor,
15701 pci_id->device,
15702 bridge);
15703 if (!bridge) {
15704 pci_id++;
15705 continue;
15706 }
15707 if (bridge->subordinate &&
15708 (bridge->subordinate->number <=
15709 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015710 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba2008-04-19 18:12:33 -070015711 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015712 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070015713 pci_dev_put(bridge);
15714 break;
15715 }
15716 }
15717 }
15718
Michael Chan4a29cc22006-03-19 13:21:12 -080015719 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
15720 * DMA addresses > 40-bit. This bridge may have other additional
15721 * 57xx devices behind it in some 4-port NIC designs for example.
15722 * Any tg3 device found behind the bridge will also need the 40-bit
15723 * DMA workaround.
15724 */
Matt Carlson42b123b2012-02-13 15:20:13 +000015725 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015726 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070015727 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000015728 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080015729 struct pci_dev *bridge = NULL;
15730
15731 do {
15732 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
15733 PCI_DEVICE_ID_SERVERWORKS_EPB,
15734 bridge);
15735 if (bridge && bridge->subordinate &&
15736 (bridge->subordinate->number <=
15737 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015738 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080015739 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015740 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080015741 pci_dev_put(bridge);
15742 break;
15743 }
15744 } while (bridge);
15745 }
Michael Chan4cf78e42005-07-25 12:29:19 -070015746
Joe Perches41535772013-02-16 11:20:04 +000015747 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
15748 tg3_asic_rev(tp) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070015749 tp->pdev_peer = tg3_find_peer(tp);
15750
Matt Carlson507399f2009-11-13 13:03:37 +000015751 /* Determine TSO capabilities */
Joe Perches41535772013-02-16 11:20:04 +000015752 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000015753 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000015754 else if (tg3_flag(tp, 57765_PLUS))
15755 tg3_flag_set(tp, HW_TSO_3);
15756 else if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015757 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015758 tg3_flag_set(tp, HW_TSO_2);
15759 else if (tg3_flag(tp, 5750_PLUS)) {
15760 tg3_flag_set(tp, HW_TSO_1);
15761 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015762 if (tg3_asic_rev(tp) == ASIC_REV_5750 &&
15763 tg3_chip_rev_id(tp) >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000015764 tg3_flag_clear(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015765 } else if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
15766 tg3_asic_rev(tp) != ASIC_REV_5701 &&
15767 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Matt Carlson1caf13e2013-03-06 17:02:29 +000015768 tg3_flag_set(tp, FW_TSO);
15769 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015770 if (tg3_asic_rev(tp) == ASIC_REV_5705)
Matt Carlson507399f2009-11-13 13:03:37 +000015771 tp->fw_needed = FIRMWARE_TG3TSO5;
15772 else
15773 tp->fw_needed = FIRMWARE_TG3TSO;
15774 }
15775
Matt Carlsondabc5c62011-05-19 12:12:52 +000015776 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000015777 if (tg3_flag(tp, HW_TSO_1) ||
15778 tg3_flag(tp, HW_TSO_2) ||
15779 tg3_flag(tp, HW_TSO_3) ||
Matt Carlson1caf13e2013-03-06 17:02:29 +000015780 tg3_flag(tp, FW_TSO)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015781 /* For firmware TSO, assume ASF is disabled.
15782 * We'll disable TSO later if we discover ASF
15783 * is enabled in tg3_get_eeprom_hw_cfg().
15784 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000015785 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015786 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000015787 tg3_flag_clear(tp, TSO_CAPABLE);
15788 tg3_flag_clear(tp, TSO_BUG);
15789 tp->fw_needed = NULL;
15790 }
15791
Joe Perches41535772013-02-16 11:20:04 +000015792 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0)
Matt Carlsondabc5c62011-05-19 12:12:52 +000015793 tp->fw_needed = FIRMWARE_TG3;
15794
Nithin Sujirc4dab502013-03-06 17:02:34 +000015795 if (tg3_asic_rev(tp) == ASIC_REV_57766)
15796 tp->fw_needed = FIRMWARE_TG357766;
15797
Matt Carlson507399f2009-11-13 13:03:37 +000015798 tp->irq_max = 1;
15799
Joe Perches63c3a662011-04-26 08:12:10 +000015800 if (tg3_flag(tp, 5750_PLUS)) {
15801 tg3_flag_set(tp, SUPPORT_MSI);
Joe Perches41535772013-02-16 11:20:04 +000015802 if (tg3_chip_rev(tp) == CHIPREV_5750_AX ||
15803 tg3_chip_rev(tp) == CHIPREV_5750_BX ||
15804 (tg3_asic_rev(tp) == ASIC_REV_5714 &&
15805 tg3_chip_rev_id(tp) <= CHIPREV_ID_5714_A2 &&
Michael Chan7544b092007-05-05 13:08:32 -070015806 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000015807 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070015808
Joe Perches63c3a662011-04-26 08:12:10 +000015809 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015810 tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015811 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070015812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015813
Joe Perches63c3a662011-04-26 08:12:10 +000015814 if (tg3_flag(tp, 57765_PLUS)) {
15815 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000015816 tp->irq_max = TG3_IRQ_MAX_VECS;
15817 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015818 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000015819
Michael Chan91024262012-09-28 07:12:38 +000015820 tp->txq_max = 1;
15821 tp->rxq_max = 1;
15822 if (tp->irq_max > 1) {
15823 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
15824 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
15825
Joe Perches41535772013-02-16 11:20:04 +000015826 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
15827 tg3_asic_rev(tp) == ASIC_REV_5720)
Michael Chan91024262012-09-28 07:12:38 +000015828 tp->txq_max = tp->irq_max - 1;
15829 }
15830
Matt Carlsonb7abee62012-06-07 12:56:54 +000015831 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015832 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015833 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015834
Joe Perches41535772013-02-16 11:20:04 +000015835 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000015836 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000015837
Joe Perches41535772013-02-16 11:20:04 +000015838 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15839 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15840 tg3_asic_rev(tp) == ASIC_REV_5720 ||
15841 tg3_asic_rev(tp) == ASIC_REV_5762)
Joe Perches63c3a662011-04-26 08:12:10 +000015842 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000015843
Joe Perches63c3a662011-04-26 08:12:10 +000015844 if (tg3_flag(tp, 57765_PLUS) &&
Joe Perches41535772013-02-16 11:20:04 +000015845 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000015846 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000015847
Joe Perches63c3a662011-04-26 08:12:10 +000015848 if (!tg3_flag(tp, 5705_PLUS) ||
15849 tg3_flag(tp, 5780_CLASS) ||
15850 tg3_flag(tp, USE_JUMBO_BDFLAG))
15851 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070015852
Matt Carlson52f44902008-11-21 17:17:04 -080015853 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
15854 &pci_state_reg);
15855
Jon Mason708ebb3a2011-06-27 12:56:50 +000015856 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015857 u16 lnkctl;
15858
Joe Perches63c3a662011-04-26 08:12:10 +000015859 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080015860
Jiang Liu0f49bfb2012-08-20 13:28:20 -060015861 pcie_capability_read_word(tp->pdev, PCI_EXP_LNKCTL, &lnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015862 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Joe Perches41535772013-02-16 11:20:04 +000015863 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015864 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000015865 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000015866 }
Joe Perches41535772013-02-16 11:20:04 +000015867 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
15868 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15869 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A0 ||
15870 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000015871 tg3_flag_set(tp, CLKREQ_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015872 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000015873 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080015874 }
Joe Perches41535772013-02-16 11:20:04 +000015875 } else if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000015876 /* BCM5785 devices are effectively PCIe devices, and should
15877 * follow PCIe codepaths, but do not have a PCIe capabilities
15878 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000015879 */
Joe Perches63c3a662011-04-26 08:12:10 +000015880 tg3_flag_set(tp, PCI_EXPRESS);
15881 } else if (!tg3_flag(tp, 5705_PLUS) ||
15882 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080015883 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
15884 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000015885 dev_err(&tp->pdev->dev,
15886 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080015887 return -EIO;
15888 }
15889
15890 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000015891 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080015892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015893
Michael Chan399de502005-10-03 14:02:39 -070015894 /* If we have an AMD 762 or VIA K8T800 chipset, write
15895 * reordering to the mailbox registers done by the host
15896 * controller can cause major troubles. We read back from
15897 * every mailbox register write to force the writes to be
15898 * posted to the chip in order.
15899 */
Matt Carlson41434702011-03-09 16:58:22 +000015900 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000015901 !tg3_flag(tp, PCI_EXPRESS))
15902 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070015903
Matt Carlson69fc4052008-12-21 20:19:57 -080015904 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
15905 &tp->pci_cacheline_sz);
15906 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15907 &tp->pci_lat_timer);
Joe Perches41535772013-02-16 11:20:04 +000015908 if (tg3_asic_rev(tp) == ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015909 tp->pci_lat_timer < 64) {
15910 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080015911 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15912 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015913 }
15914
Matt Carlson16821282011-07-13 09:27:28 +000015915 /* Important! -- It is critical that the PCI-X hw workaround
15916 * situation is decided before the first MMIO register access.
15917 */
Joe Perches41535772013-02-16 11:20:04 +000015918 if (tg3_chip_rev(tp) == CHIPREV_5700_BX) {
Matt Carlson52f44902008-11-21 17:17:04 -080015919 /* 5700 BX chips need to have their TX producer index
15920 * mailboxes written twice to workaround a bug.
15921 */
Joe Perches63c3a662011-04-26 08:12:10 +000015922 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070015923
Matt Carlson52f44902008-11-21 17:17:04 -080015924 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015925 *
15926 * The workaround is to use indirect register accesses
15927 * for all chip writes not to mailbox registers.
15928 */
Joe Perches63c3a662011-04-26 08:12:10 +000015929 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015930 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015931
Joe Perches63c3a662011-04-26 08:12:10 +000015932 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015933
15934 /* The chip can have it's power management PCI config
15935 * space registers clobbered due to this bug.
15936 * So explicitly force the chip into D0 here.
15937 */
Matt Carlson9974a352007-10-07 23:27:28 -070015938 pci_read_config_dword(tp->pdev,
15939 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015940 &pm_reg);
15941 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
15942 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070015943 pci_write_config_dword(tp->pdev,
15944 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015945 pm_reg);
15946
15947 /* Also, force SERR#/PERR# in PCI command. */
15948 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15949 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
15950 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15951 }
15952 }
15953
Linus Torvalds1da177e2005-04-16 15:20:36 -070015954 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015955 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015956 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015957 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015958
15959 /* Chip-specific fixup from Broadcom driver */
Joe Perches41535772013-02-16 11:20:04 +000015960 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015961 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
15962 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
15963 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
15964 }
15965
Michael Chan1ee582d2005-08-09 20:16:46 -070015966 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070015967 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015968 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070015969 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070015970 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015971 tp->write32_tx_mbox = tg3_write32;
15972 tp->write32_rx_mbox = tg3_write32;
15973
15974 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000015975 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070015976 tp->write32 = tg3_write_indirect_reg32;
Joe Perches41535772013-02-16 11:20:04 +000015977 else if (tg3_asic_rev(tp) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015978 (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +000015979 tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0)) {
Matt Carlson98efd8a2007-05-05 12:47:25 -070015980 /*
15981 * Back to back register writes can cause problems on these
15982 * chips, the workaround is to read back all reg writes
15983 * except those to mailbox regs.
15984 *
15985 * See tg3_write_indirect_reg32().
15986 */
Michael Chan1ee582d2005-08-09 20:16:46 -070015987 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070015988 }
15989
Joe Perches63c3a662011-04-26 08:12:10 +000015990 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070015991 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000015992 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070015993 tp->write32_rx_mbox = tg3_write_flush_reg32;
15994 }
Michael Chan20094932005-08-09 20:16:32 -070015995
Joe Perches63c3a662011-04-26 08:12:10 +000015996 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070015997 tp->read32 = tg3_read_indirect_reg32;
15998 tp->write32 = tg3_write_indirect_reg32;
15999 tp->read32_mbox = tg3_read_indirect_mbox;
16000 tp->write32_mbox = tg3_write_indirect_mbox;
16001 tp->write32_tx_mbox = tg3_write_indirect_mbox;
16002 tp->write32_rx_mbox = tg3_write_indirect_mbox;
16003
16004 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070016005 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070016006
16007 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
16008 pci_cmd &= ~PCI_COMMAND_MEMORY;
16009 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
16010 }
Joe Perches41535772013-02-16 11:20:04 +000016011 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070016012 tp->read32_mbox = tg3_read32_mbox_5906;
16013 tp->write32_mbox = tg3_write32_mbox_5906;
16014 tp->write32_tx_mbox = tg3_write32_mbox_5906;
16015 tp->write32_rx_mbox = tg3_write32_mbox_5906;
16016 }
Michael Chan68929142005-08-09 20:17:14 -070016017
Michael Chanbbadf502006-04-06 21:46:34 -070016018 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016019 (tg3_flag(tp, PCIX_MODE) &&
Joe Perches41535772013-02-16 11:20:04 +000016020 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16021 tg3_asic_rev(tp) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000016022 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070016023
Matt Carlson16821282011-07-13 09:27:28 +000016024 /* The memory arbiter has to be enabled in order for SRAM accesses
16025 * to succeed. Normally on powerup the tg3 chip firmware will make
16026 * sure it is enabled, but other entities such as system netboot
16027 * code might disable it.
16028 */
16029 val = tr32(MEMARB_MODE);
16030 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
16031
Matt Carlson9dc5e342011-11-04 09:15:02 +000016032 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
Joe Perches41535772013-02-16 11:20:04 +000016033 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Matt Carlson9dc5e342011-11-04 09:15:02 +000016034 tg3_flag(tp, 5780_CLASS)) {
16035 if (tg3_flag(tp, PCIX_MODE)) {
16036 pci_read_config_dword(tp->pdev,
16037 tp->pcix_cap + PCI_X_STATUS,
16038 &val);
16039 tp->pci_fn = val & 0x7;
16040 }
Joe Perches41535772013-02-16 11:20:04 +000016041 } else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16042 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16043 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson9dc5e342011-11-04 09:15:02 +000016044 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
Michael Chan857001f2013-01-06 12:51:09 +000016045 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) != NIC_SRAM_CPMUSTAT_SIG)
16046 val = tr32(TG3_CPMU_STATUS);
16047
Joe Perches41535772013-02-16 11:20:04 +000016048 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Michael Chan857001f2013-01-06 12:51:09 +000016049 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5717) ? 1 : 0;
16050 else
Matt Carlson9dc5e342011-11-04 09:15:02 +000016051 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
16052 TG3_CPMU_STATUS_FSHFT_5719;
Matt Carlson69f11c92011-07-13 09:27:30 +000016053 }
16054
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016055 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
16056 tp->write32_tx_mbox = tg3_write_flush_reg32;
16057 tp->write32_rx_mbox = tg3_write_flush_reg32;
16058 }
16059
Michael Chan7d0c41e2005-04-21 17:06:20 -070016060 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000016061 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070016062 * determined before calling tg3_set_power_state() so that
16063 * we know whether or not to switch out of Vaux power.
16064 * When the flag is set, it means that GPIO1 is used for eeprom
16065 * write protect and also implies that it is a LOM where GPIOs
16066 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040016067 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070016068 tg3_get_eeprom_hw_cfg(tp);
16069
Matt Carlson1caf13e2013-03-06 17:02:29 +000016070 if (tg3_flag(tp, FW_TSO) && tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016071 tg3_flag_clear(tp, TSO_CAPABLE);
16072 tg3_flag_clear(tp, TSO_BUG);
16073 tp->fw_needed = NULL;
16074 }
16075
Joe Perches63c3a662011-04-26 08:12:10 +000016076 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070016077 /* Allow reads and writes to the
16078 * APE register and memory space.
16079 */
16080 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000016081 PCISTATE_ALLOW_APE_SHMEM_WR |
16082 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070016083 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
16084 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000016085
16086 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070016087 }
16088
Matt Carlson16821282011-07-13 09:27:28 +000016089 /* Set up tp->grc_local_ctrl before calling
16090 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
16091 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070016092 * It is also used as eeprom write protect on LOMs.
16093 */
16094 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Joe Perches41535772013-02-16 11:20:04 +000016095 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016096 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070016097 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
16098 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070016099 /* Unused GPIO3 must be driven as output on 5752 because there
16100 * are no pull-up resistors on unused GPIO pins.
16101 */
Joe Perches41535772013-02-16 11:20:04 +000016102 else if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070016103 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070016104
Joe Perches41535772013-02-16 11:20:04 +000016105 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16106 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000016107 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080016108 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
16109
Matt Carlson8d519ab2009-04-20 06:58:01 +000016110 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
16111 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016112 /* Turn off the debug UART. */
16113 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000016114 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016115 /* Keep VMain power. */
16116 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
16117 GRC_LCLCTRL_GPIO_OUTPUT0;
16118 }
16119
Joe Perches41535772013-02-16 11:20:04 +000016120 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000016121 tp->grc_local_ctrl |=
16122 tr32(GRC_LOCAL_CTRL) & GRC_LCLCTRL_GPIO_UART_SEL;
16123
Matt Carlson16821282011-07-13 09:27:28 +000016124 /* Switch out of Vaux if it is a NIC */
16125 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016126
Linus Torvalds1da177e2005-04-16 15:20:36 -070016127 /* Derive initial jumbo mode from MTU assigned in
16128 * ether_setup() via the alloc_etherdev() call
16129 */
Joe Perches63c3a662011-04-26 08:12:10 +000016130 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
16131 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016132
16133 /* Determine WakeOnLan speed to use. */
Joe Perches41535772013-02-16 11:20:04 +000016134 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16135 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16136 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16137 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000016138 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016139 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000016140 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016141 }
16142
Joe Perches41535772013-02-16 11:20:04 +000016143 if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016144 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000016145
Linus Torvalds1da177e2005-04-16 15:20:36 -070016146 /* A few boards don't want Ethernet@WireSpeed phy feature */
Joe Perches41535772013-02-16 11:20:04 +000016147 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16148 (tg3_asic_rev(tp) == ASIC_REV_5705 &&
16149 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) &&
16150 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016151 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
16152 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
16153 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016154
Joe Perches41535772013-02-16 11:20:04 +000016155 if (tg3_chip_rev(tp) == CHIPREV_5703_AX ||
16156 tg3_chip_rev(tp) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016157 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Joe Perches41535772013-02-16 11:20:04 +000016158 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016159 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016160
Joe Perches63c3a662011-04-26 08:12:10 +000016161 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016162 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +000016163 tg3_asic_rev(tp) != ASIC_REV_5785 &&
16164 tg3_asic_rev(tp) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016165 !tg3_flag(tp, 57765_PLUS)) {
Joe Perches41535772013-02-16 11:20:04 +000016166 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16167 tg3_asic_rev(tp) == ASIC_REV_5787 ||
16168 tg3_asic_rev(tp) == ASIC_REV_5784 ||
16169 tg3_asic_rev(tp) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080016170 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
16171 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016172 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080016173 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016174 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080016175 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016176 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070016177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016178
Joe Perches41535772013-02-16 11:20:04 +000016179 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
16180 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -070016181 tp->phy_otp = tg3_read_otp_phycfg(tp);
16182 if (tp->phy_otp == 0)
16183 tp->phy_otp = TG3_OTP_DEFAULT;
16184 }
16185
Joe Perches63c3a662011-04-26 08:12:10 +000016186 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070016187 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
16188 else
16189 tp->mi_mode = MAC_MI_MODE_BASE;
16190
Linus Torvalds1da177e2005-04-16 15:20:36 -070016191 tp->coalesce_mode = 0;
Joe Perches41535772013-02-16 11:20:04 +000016192 if (tg3_chip_rev(tp) != CHIPREV_5700_AX &&
16193 tg3_chip_rev(tp) != CHIPREV_5700_BX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016194 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
16195
Matt Carlson4d958472011-04-20 07:57:35 +000016196 /* Set these bits to enable statistics workaround. */
Joe Perches41535772013-02-16 11:20:04 +000016197 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16198 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
16199 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000016200 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
16201 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
16202 }
16203
Joe Perches41535772013-02-16 11:20:04 +000016204 if (tg3_asic_rev(tp) == ASIC_REV_5785 ||
16205 tg3_asic_rev(tp) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000016206 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070016207
Matt Carlson158d7ab2008-05-29 01:37:54 -070016208 err = tg3_mdio_init(tp);
16209 if (err)
16210 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016211
16212 /* Initialize data/descriptor byte/word swapping. */
16213 val = tr32(GRC_MODE);
Joe Perches41535772013-02-16 11:20:04 +000016214 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
16215 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000016216 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
16217 GRC_MODE_WORD_SWAP_B2HRX_DATA |
16218 GRC_MODE_B2HRX_ENABLE |
16219 GRC_MODE_HTX2B_ENABLE |
16220 GRC_MODE_HOST_STACKUP);
16221 else
16222 val &= GRC_MODE_HOST_STACKUP;
16223
Linus Torvalds1da177e2005-04-16 15:20:36 -070016224 tw32(GRC_MODE, val | tp->grc_mode);
16225
16226 tg3_switch_clocks(tp);
16227
16228 /* Clear this out for sanity. */
16229 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
16230
16231 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
16232 &pci_state_reg);
16233 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016234 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Joe Perches41535772013-02-16 11:20:04 +000016235 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16236 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16237 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2 ||
16238 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016239 void __iomem *sram_base;
16240
16241 /* Write some dummy words into the SRAM status block
16242 * area, see if it reads back correctly. If the return
16243 * value is bad, force enable the PCIX workaround.
16244 */
16245 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
16246
16247 writel(0x00000000, sram_base);
16248 writel(0x00000000, sram_base + 4);
16249 writel(0xffffffff, sram_base + 4);
16250 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000016251 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016252 }
16253 }
16254
16255 udelay(50);
16256 tg3_nvram_init(tp);
16257
Nithin Sujirc4dab502013-03-06 17:02:34 +000016258 /* If the device has an NVRAM, no need to load patch firmware */
16259 if (tg3_asic_rev(tp) == ASIC_REV_57766 &&
16260 !tg3_flag(tp, NO_NVRAM))
16261 tp->fw_needed = NULL;
16262
Linus Torvalds1da177e2005-04-16 15:20:36 -070016263 grc_misc_cfg = tr32(GRC_MISC_CFG);
16264 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
16265
Joe Perches41535772013-02-16 11:20:04 +000016266 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016267 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
16268 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000016269 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016270
Joe Perches63c3a662011-04-26 08:12:10 +000016271 if (!tg3_flag(tp, IS_5788) &&
Joe Perches41535772013-02-16 11:20:04 +000016272 tg3_asic_rev(tp) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016273 tg3_flag_set(tp, TAGGED_STATUS);
16274 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070016275 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
16276 HOSTCC_MODE_CLRTICK_TXBD);
16277
16278 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
16279 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
16280 tp->misc_host_ctrl);
16281 }
16282
Matt Carlson3bda1252008-08-15 14:08:22 -070016283 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000016284 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000016285 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070016286 else
Matt Carlson6e01b202011-08-19 13:58:20 +000016287 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070016288
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016289 if (tg3_10_100_only_device(tp, ent))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016290 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016291
16292 err = tg3_phy_probe(tp);
16293 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000016294 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016295 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016296 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016297 }
16298
Matt Carlson184b8902010-04-05 10:19:25 +000016299 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080016300 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016301
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016302 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
16303 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016304 } else {
Joe Perches41535772013-02-16 11:20:04 +000016305 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016306 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016307 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016308 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016309 }
16310
16311 /* 5700 {AX,BX} chips have a broken status block link
16312 * change bit implementation, so we must use the
16313 * status register in those cases.
16314 */
Joe Perches41535772013-02-16 11:20:04 +000016315 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016316 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016317 else
Joe Perches63c3a662011-04-26 08:12:10 +000016318 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016319
16320 /* The led_ctrl is set during tg3_phy_probe, here we might
16321 * have to force the link status polling mechanism based
16322 * upon subsystem IDs.
16323 */
16324 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Joe Perches41535772013-02-16 11:20:04 +000016325 tg3_asic_rev(tp) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016326 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
16327 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000016328 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016329 }
16330
16331 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016332 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000016333 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016334 else
Joe Perches63c3a662011-04-26 08:12:10 +000016335 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016336
Eric Dumazet9205fd92011-11-18 06:47:01 +000016337 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016338 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Joe Perches41535772013-02-16 11:20:04 +000016339 if (tg3_asic_rev(tp) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016340 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000016341 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016342#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000016343 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016344#endif
16345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016346
Matt Carlson2c49a442010-09-30 10:34:35 +000016347 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
16348 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000016349 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
16350
Matt Carlson2c49a442010-09-30 10:34:35 +000016351 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070016352
16353 /* Increment the rx prod index on the rx std ring by at most
16354 * 8 for these chips to workaround hw errata.
16355 */
Joe Perches41535772013-02-16 11:20:04 +000016356 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
16357 tg3_asic_rev(tp) == ASIC_REV_5752 ||
16358 tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanf92905d2006-06-29 20:14:29 -070016359 tp->rx_std_max_post = 8;
16360
Joe Perches63c3a662011-04-26 08:12:10 +000016361 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070016362 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
16363 PCIE_PWR_MGMT_L1_THRESH_MSK;
16364
Linus Torvalds1da177e2005-04-16 15:20:36 -070016365 return err;
16366}
16367
David S. Miller49b6e95f2007-03-29 01:38:42 -070016368#ifdef CONFIG_SPARC
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016369static int tg3_get_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016370{
16371 struct net_device *dev = tp->dev;
16372 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016373 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070016374 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016375 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016376
David S. Miller49b6e95f2007-03-29 01:38:42 -070016377 addr = of_get_property(dp, "local-mac-address", &len);
16378 if (addr && len == 6) {
16379 memcpy(dev->dev_addr, addr, 6);
David S. Miller49b6e95f2007-03-29 01:38:42 -070016380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016381 }
16382 return -ENODEV;
16383}
16384
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016385static int tg3_get_default_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016386{
16387 struct net_device *dev = tp->dev;
16388
16389 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
16390 return 0;
16391}
16392#endif
16393
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016394static int tg3_get_device_address(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016395{
16396 struct net_device *dev = tp->dev;
16397 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080016398 int addr_ok = 0;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016399 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016400
David S. Miller49b6e95f2007-03-29 01:38:42 -070016401#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016402 if (!tg3_get_macaddr_sparc(tp))
16403 return 0;
16404#endif
16405
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016406 if (tg3_flag(tp, IS_SSB_CORE)) {
16407 err = ssb_gige_get_macaddr(tp->pdev, &dev->dev_addr[0]);
16408 if (!err && is_valid_ether_addr(&dev->dev_addr[0]))
16409 return 0;
16410 }
16411
Linus Torvalds1da177e2005-04-16 15:20:36 -070016412 mac_offset = 0x7c;
Joe Perches41535772013-02-16 11:20:04 +000016413 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016414 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016415 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
16416 mac_offset = 0xcc;
16417 if (tg3_nvram_lock(tp))
16418 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
16419 else
16420 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000016421 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000016422 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000016423 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000016424 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000016425 mac_offset += 0x18c;
Joe Perches41535772013-02-16 11:20:04 +000016426 } else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070016427 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016428
16429 /* First try to get it from MAC address mailbox. */
16430 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
16431 if ((hi >> 16) == 0x484b) {
16432 dev->dev_addr[0] = (hi >> 8) & 0xff;
16433 dev->dev_addr[1] = (hi >> 0) & 0xff;
16434
16435 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
16436 dev->dev_addr[2] = (lo >> 24) & 0xff;
16437 dev->dev_addr[3] = (lo >> 16) & 0xff;
16438 dev->dev_addr[4] = (lo >> 8) & 0xff;
16439 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016440
Michael Chan008652b2006-03-27 23:14:53 -080016441 /* Some old bootcode may report a 0 MAC address in SRAM */
16442 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
16443 }
16444 if (!addr_ok) {
16445 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000016446 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000016447 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000016448 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070016449 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
16450 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080016451 }
16452 /* Finally just fetch it out of the MAC control regs. */
16453 else {
16454 hi = tr32(MAC_ADDR_0_HIGH);
16455 lo = tr32(MAC_ADDR_0_LOW);
16456
16457 dev->dev_addr[5] = lo & 0xff;
16458 dev->dev_addr[4] = (lo >> 8) & 0xff;
16459 dev->dev_addr[3] = (lo >> 16) & 0xff;
16460 dev->dev_addr[2] = (lo >> 24) & 0xff;
16461 dev->dev_addr[1] = hi & 0xff;
16462 dev->dev_addr[0] = (hi >> 8) & 0xff;
16463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016464 }
16465
16466 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070016467#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016468 if (!tg3_get_default_macaddr_sparc(tp))
16469 return 0;
16470#endif
16471 return -EINVAL;
16472 }
16473 return 0;
16474}
16475
David S. Miller59e6b432005-05-18 22:50:10 -070016476#define BOUNDARY_SINGLE_CACHELINE 1
16477#define BOUNDARY_MULTI_CACHELINE 2
16478
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016479static u32 tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
David S. Miller59e6b432005-05-18 22:50:10 -070016480{
16481 int cacheline_size;
16482 u8 byte;
16483 int goal;
16484
16485 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
16486 if (byte == 0)
16487 cacheline_size = 1024;
16488 else
16489 cacheline_size = (int) byte * 4;
16490
16491 /* On 5703 and later chips, the boundary bits have no
16492 * effect.
16493 */
Joe Perches41535772013-02-16 11:20:04 +000016494 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16495 tg3_asic_rev(tp) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016496 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070016497 goto out;
16498
16499#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
16500 goal = BOUNDARY_MULTI_CACHELINE;
16501#else
16502#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
16503 goal = BOUNDARY_SINGLE_CACHELINE;
16504#else
16505 goal = 0;
16506#endif
16507#endif
16508
Joe Perches63c3a662011-04-26 08:12:10 +000016509 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016510 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
16511 goto out;
16512 }
16513
David S. Miller59e6b432005-05-18 22:50:10 -070016514 if (!goal)
16515 goto out;
16516
16517 /* PCI controllers on most RISC systems tend to disconnect
16518 * when a device tries to burst across a cache-line boundary.
16519 * Therefore, letting tg3 do so just wastes PCI bandwidth.
16520 *
16521 * Unfortunately, for PCI-E there are only limited
16522 * write-side controls for this, and thus for reads
16523 * we will still get the disconnects. We'll also waste
16524 * these PCI cycles for both read and write for chips
16525 * other than 5700 and 5701 which do not implement the
16526 * boundary bits.
16527 */
Joe Perches63c3a662011-04-26 08:12:10 +000016528 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016529 switch (cacheline_size) {
16530 case 16:
16531 case 32:
16532 case 64:
16533 case 128:
16534 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16535 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
16536 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
16537 } else {
16538 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16539 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16540 }
16541 break;
16542
16543 case 256:
16544 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
16545 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
16546 break;
16547
16548 default:
16549 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16550 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16551 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016552 }
Joe Perches63c3a662011-04-26 08:12:10 +000016553 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016554 switch (cacheline_size) {
16555 case 16:
16556 case 32:
16557 case 64:
16558 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16559 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16560 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
16561 break;
16562 }
16563 /* fallthrough */
16564 case 128:
16565 default:
16566 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16567 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
16568 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016569 }
David S. Miller59e6b432005-05-18 22:50:10 -070016570 } else {
16571 switch (cacheline_size) {
16572 case 16:
16573 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16574 val |= (DMA_RWCTRL_READ_BNDRY_16 |
16575 DMA_RWCTRL_WRITE_BNDRY_16);
16576 break;
16577 }
16578 /* fallthrough */
16579 case 32:
16580 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16581 val |= (DMA_RWCTRL_READ_BNDRY_32 |
16582 DMA_RWCTRL_WRITE_BNDRY_32);
16583 break;
16584 }
16585 /* fallthrough */
16586 case 64:
16587 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16588 val |= (DMA_RWCTRL_READ_BNDRY_64 |
16589 DMA_RWCTRL_WRITE_BNDRY_64);
16590 break;
16591 }
16592 /* fallthrough */
16593 case 128:
16594 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16595 val |= (DMA_RWCTRL_READ_BNDRY_128 |
16596 DMA_RWCTRL_WRITE_BNDRY_128);
16597 break;
16598 }
16599 /* fallthrough */
16600 case 256:
16601 val |= (DMA_RWCTRL_READ_BNDRY_256 |
16602 DMA_RWCTRL_WRITE_BNDRY_256);
16603 break;
16604 case 512:
16605 val |= (DMA_RWCTRL_READ_BNDRY_512 |
16606 DMA_RWCTRL_WRITE_BNDRY_512);
16607 break;
16608 case 1024:
16609 default:
16610 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
16611 DMA_RWCTRL_WRITE_BNDRY_1024);
16612 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016613 }
David S. Miller59e6b432005-05-18 22:50:10 -070016614 }
16615
16616out:
16617 return val;
16618}
16619
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016620static int tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma,
Joe Perches953c96e2013-04-09 10:18:14 +000016621 int size, bool to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016622{
16623 struct tg3_internal_buffer_desc test_desc;
16624 u32 sram_dma_descs;
16625 int i, ret;
16626
16627 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
16628
16629 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
16630 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
16631 tw32(RDMAC_STATUS, 0);
16632 tw32(WDMAC_STATUS, 0);
16633
16634 tw32(BUFMGR_MODE, 0);
16635 tw32(FTQ_RESET, 0);
16636
16637 test_desc.addr_hi = ((u64) buf_dma) >> 32;
16638 test_desc.addr_lo = buf_dma & 0xffffffff;
16639 test_desc.nic_mbuf = 0x00002100;
16640 test_desc.len = size;
16641
16642 /*
16643 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
16644 * the *second* time the tg3 driver was getting loaded after an
16645 * initial scan.
16646 *
16647 * Broadcom tells me:
16648 * ...the DMA engine is connected to the GRC block and a DMA
16649 * reset may affect the GRC block in some unpredictable way...
16650 * The behavior of resets to individual blocks has not been tested.
16651 *
16652 * Broadcom noted the GRC reset will also reset all sub-components.
16653 */
16654 if (to_device) {
16655 test_desc.cqid_sqid = (13 << 8) | 2;
16656
16657 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
16658 udelay(40);
16659 } else {
16660 test_desc.cqid_sqid = (16 << 8) | 7;
16661
16662 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
16663 udelay(40);
16664 }
16665 test_desc.flags = 0x00000005;
16666
16667 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
16668 u32 val;
16669
16670 val = *(((u32 *)&test_desc) + i);
16671 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
16672 sram_dma_descs + (i * sizeof(u32)));
16673 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
16674 }
16675 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
16676
Matt Carlson859a588792010-04-05 10:19:28 +000016677 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016678 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000016679 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070016680 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016681
16682 ret = -ENODEV;
16683 for (i = 0; i < 40; i++) {
16684 u32 val;
16685
16686 if (to_device)
16687 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
16688 else
16689 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
16690 if ((val & 0xffff) == sram_dma_descs) {
16691 ret = 0;
16692 break;
16693 }
16694
16695 udelay(100);
16696 }
16697
16698 return ret;
16699}
16700
David S. Millerded73402005-05-23 13:59:47 -070016701#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070016702
Matt Carlson41434702011-03-09 16:58:22 +000016703static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080016704 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
16705 { },
16706};
16707
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016708static int tg3_test_dma(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016709{
16710 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070016711 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016712 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016713
Matt Carlson4bae65c2010-11-24 08:31:52 +000016714 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
16715 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016716 if (!buf) {
16717 ret = -ENOMEM;
16718 goto out_nofree;
16719 }
16720
16721 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
16722 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
16723
David S. Miller59e6b432005-05-18 22:50:10 -070016724 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016725
Joe Perches63c3a662011-04-26 08:12:10 +000016726 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016727 goto out;
16728
Joe Perches63c3a662011-04-26 08:12:10 +000016729 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016730 /* DMA read watermark not used on PCIE */
16731 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000016732 } else if (!tg3_flag(tp, PCIX_MODE)) {
Joe Perches41535772013-02-16 11:20:04 +000016733 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
16734 tg3_asic_rev(tp) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016735 tp->dma_rwctrl |= 0x003f0000;
16736 else
16737 tp->dma_rwctrl |= 0x003f000f;
16738 } else {
Joe Perches41535772013-02-16 11:20:04 +000016739 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16740 tg3_asic_rev(tp) == ASIC_REV_5704) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016741 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080016742 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016743
Michael Chan4a29cc22006-03-19 13:21:12 -080016744 /* If the 5704 is behind the EPB bridge, we can
16745 * do the less restrictive ONE_DMA workaround for
16746 * better performance.
16747 */
Joe Perches63c3a662011-04-26 08:12:10 +000016748 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Joe Perches41535772013-02-16 11:20:04 +000016749 tg3_asic_rev(tp) == ASIC_REV_5704)
Michael Chan4a29cc22006-03-19 13:21:12 -080016750 tp->dma_rwctrl |= 0x8000;
16751 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016752 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
16753
Joe Perches41535772013-02-16 11:20:04 +000016754 if (tg3_asic_rev(tp) == ASIC_REV_5703)
Michael Chan49afdeb2007-02-13 12:17:03 -080016755 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070016756 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080016757 tp->dma_rwctrl |=
16758 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
16759 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
16760 (1 << 23);
Joe Perches41535772013-02-16 11:20:04 +000016761 } else if (tg3_asic_rev(tp) == ASIC_REV_5780) {
Michael Chan4cf78e42005-07-25 12:29:19 -070016762 /* 5780 always in PCIX mode */
16763 tp->dma_rwctrl |= 0x00144000;
Joe Perches41535772013-02-16 11:20:04 +000016764 } else if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chana4e2b342005-10-26 15:46:52 -070016765 /* 5714 always in PCIX mode */
16766 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016767 } else {
16768 tp->dma_rwctrl |= 0x001b000f;
16769 }
16770 }
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016771 if (tg3_flag(tp, ONE_DMA_AT_ONCE))
16772 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016773
Joe Perches41535772013-02-16 11:20:04 +000016774 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16775 tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016776 tp->dma_rwctrl &= 0xfffffff0;
16777
Joe Perches41535772013-02-16 11:20:04 +000016778 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16779 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016780 /* Remove this if it causes problems for some boards. */
16781 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
16782
16783 /* On 5700/5701 chips, we need to set this bit.
16784 * Otherwise the chip will issue cacheline transactions
16785 * to streamable DMA memory with not all the byte
16786 * enables turned on. This is an error on several
16787 * RISC PCI controllers, in particular sparc64.
16788 *
16789 * On 5703/5704 chips, this bit has been reassigned
16790 * a different meaning. In particular, it is used
16791 * on those chips to enable a PCI-X workaround.
16792 */
16793 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
16794 }
16795
16796 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16797
16798#if 0
16799 /* Unneeded, already done by tg3_get_invariants. */
16800 tg3_switch_clocks(tp);
16801#endif
16802
Joe Perches41535772013-02-16 11:20:04 +000016803 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16804 tg3_asic_rev(tp) != ASIC_REV_5701)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016805 goto out;
16806
David S. Miller59e6b432005-05-18 22:50:10 -070016807 /* It is best to perform DMA test with maximum write burst size
16808 * to expose the 5700/5701 write DMA bug.
16809 */
16810 saved_dma_rwctrl = tp->dma_rwctrl;
16811 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16812 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16813
Linus Torvalds1da177e2005-04-16 15:20:36 -070016814 while (1) {
16815 u32 *p = buf, i;
16816
16817 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
16818 p[i] = i;
16819
16820 /* Send the buffer to the chip. */
Joe Perches953c96e2013-04-09 10:18:14 +000016821 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016822 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000016823 dev_err(&tp->pdev->dev,
16824 "%s: Buffer write failed. err = %d\n",
16825 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016826 break;
16827 }
16828
16829#if 0
16830 /* validate data reached card RAM correctly. */
16831 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16832 u32 val;
16833 tg3_read_mem(tp, 0x2100 + (i*4), &val);
16834 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000016835 dev_err(&tp->pdev->dev,
16836 "%s: Buffer corrupted on device! "
16837 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016838 /* ret = -ENODEV here? */
16839 }
16840 p[i] = 0;
16841 }
16842#endif
16843 /* Now read it back. */
Joe Perches953c96e2013-04-09 10:18:14 +000016844 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016845 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000016846 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
16847 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016848 break;
16849 }
16850
16851 /* Verify it. */
16852 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16853 if (p[i] == i)
16854 continue;
16855
David S. Miller59e6b432005-05-18 22:50:10 -070016856 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16857 DMA_RWCTRL_WRITE_BNDRY_16) {
16858 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016859 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
16860 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16861 break;
16862 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000016863 dev_err(&tp->pdev->dev,
16864 "%s: Buffer corrupted on read back! "
16865 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016866 ret = -ENODEV;
16867 goto out;
16868 }
16869 }
16870
16871 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
16872 /* Success. */
16873 ret = 0;
16874 break;
16875 }
16876 }
David S. Miller59e6b432005-05-18 22:50:10 -070016877 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16878 DMA_RWCTRL_WRITE_BNDRY_16) {
16879 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070016880 * now look for chipsets that are known to expose the
16881 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070016882 */
Matt Carlson41434702011-03-09 16:58:22 +000016883 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016884 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16885 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000016886 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016887 /* Safe to use the calculated DMA boundary. */
16888 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000016889 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070016890
David S. Miller59e6b432005-05-18 22:50:10 -070016891 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016893
16894out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000016895 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016896out_nofree:
16897 return ret;
16898}
16899
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016900static void tg3_init_bufmgr_config(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016901{
Joe Perches63c3a662011-04-26 08:12:10 +000016902 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000016903 tp->bufmgr_config.mbuf_read_dma_low_water =
16904 DEFAULT_MB_RDMA_LOW_WATER_5705;
16905 tp->bufmgr_config.mbuf_mac_rx_low_water =
16906 DEFAULT_MB_MACRX_LOW_WATER_57765;
16907 tp->bufmgr_config.mbuf_high_water =
16908 DEFAULT_MB_HIGH_WATER_57765;
16909
16910 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16911 DEFAULT_MB_RDMA_LOW_WATER_5705;
16912 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16913 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
16914 tp->bufmgr_config.mbuf_high_water_jumbo =
16915 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000016916 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070016917 tp->bufmgr_config.mbuf_read_dma_low_water =
16918 DEFAULT_MB_RDMA_LOW_WATER_5705;
16919 tp->bufmgr_config.mbuf_mac_rx_low_water =
16920 DEFAULT_MB_MACRX_LOW_WATER_5705;
16921 tp->bufmgr_config.mbuf_high_water =
16922 DEFAULT_MB_HIGH_WATER_5705;
Joe Perches41535772013-02-16 11:20:04 +000016923 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070016924 tp->bufmgr_config.mbuf_mac_rx_low_water =
16925 DEFAULT_MB_MACRX_LOW_WATER_5906;
16926 tp->bufmgr_config.mbuf_high_water =
16927 DEFAULT_MB_HIGH_WATER_5906;
16928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016929
Michael Chanfdfec1722005-07-25 12:31:48 -070016930 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16931 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
16932 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16933 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
16934 tp->bufmgr_config.mbuf_high_water_jumbo =
16935 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
16936 } else {
16937 tp->bufmgr_config.mbuf_read_dma_low_water =
16938 DEFAULT_MB_RDMA_LOW_WATER;
16939 tp->bufmgr_config.mbuf_mac_rx_low_water =
16940 DEFAULT_MB_MACRX_LOW_WATER;
16941 tp->bufmgr_config.mbuf_high_water =
16942 DEFAULT_MB_HIGH_WATER;
16943
16944 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16945 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
16946 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16947 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
16948 tp->bufmgr_config.mbuf_high_water_jumbo =
16949 DEFAULT_MB_HIGH_WATER_JUMBO;
16950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016951
16952 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
16953 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
16954}
16955
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016956static char *tg3_phy_string(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016957{
Matt Carlson79eb6902010-02-17 15:17:03 +000016958 switch (tp->phy_id & TG3_PHY_ID_MASK) {
16959 case TG3_PHY_ID_BCM5400: return "5400";
16960 case TG3_PHY_ID_BCM5401: return "5401";
16961 case TG3_PHY_ID_BCM5411: return "5411";
16962 case TG3_PHY_ID_BCM5701: return "5701";
16963 case TG3_PHY_ID_BCM5703: return "5703";
16964 case TG3_PHY_ID_BCM5704: return "5704";
16965 case TG3_PHY_ID_BCM5705: return "5705";
16966 case TG3_PHY_ID_BCM5750: return "5750";
16967 case TG3_PHY_ID_BCM5752: return "5752";
16968 case TG3_PHY_ID_BCM5714: return "5714";
16969 case TG3_PHY_ID_BCM5780: return "5780";
16970 case TG3_PHY_ID_BCM5755: return "5755";
16971 case TG3_PHY_ID_BCM5787: return "5787";
16972 case TG3_PHY_ID_BCM5784: return "5784";
16973 case TG3_PHY_ID_BCM5756: return "5722/5756";
16974 case TG3_PHY_ID_BCM5906: return "5906";
16975 case TG3_PHY_ID_BCM5761: return "5761";
16976 case TG3_PHY_ID_BCM5718C: return "5718C";
16977 case TG3_PHY_ID_BCM5718S: return "5718S";
16978 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000016979 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000016980 case TG3_PHY_ID_BCM5720C: return "5720C";
Michael Chanc65a17f2013-01-06 12:51:07 +000016981 case TG3_PHY_ID_BCM5762: return "5762C";
Matt Carlson79eb6902010-02-17 15:17:03 +000016982 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070016983 case 0: return "serdes";
16984 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070016985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016986}
16987
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016988static char *tg3_bus_string(struct tg3 *tp, char *str)
Michael Chanf9804dd2005-09-27 12:13:10 -070016989{
Joe Perches63c3a662011-04-26 08:12:10 +000016990 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016991 strcpy(str, "PCI Express");
16992 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000016993 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016994 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
16995
16996 strcpy(str, "PCIX:");
16997
16998 if ((clock_ctrl == 7) ||
16999 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
17000 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
17001 strcat(str, "133MHz");
17002 else if (clock_ctrl == 0)
17003 strcat(str, "33MHz");
17004 else if (clock_ctrl == 2)
17005 strcat(str, "50MHz");
17006 else if (clock_ctrl == 4)
17007 strcat(str, "66MHz");
17008 else if (clock_ctrl == 6)
17009 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070017010 } else {
17011 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000017012 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070017013 strcat(str, "66MHz");
17014 else
17015 strcat(str, "33MHz");
17016 }
Joe Perches63c3a662011-04-26 08:12:10 +000017017 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070017018 strcat(str, ":32-bit");
17019 else
17020 strcat(str, ":64-bit");
17021 return str;
17022}
17023
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017024static void tg3_init_coal(struct tg3 *tp)
David S. Miller15f98502005-05-18 22:49:26 -070017025{
17026 struct ethtool_coalesce *ec = &tp->coal;
17027
17028 memset(ec, 0, sizeof(*ec));
17029 ec->cmd = ETHTOOL_GCOALESCE;
17030 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
17031 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
17032 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
17033 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
17034 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
17035 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
17036 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
17037 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
17038 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
17039
17040 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
17041 HOSTCC_MODE_CLRTICK_TXBD)) {
17042 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
17043 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
17044 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
17045 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
17046 }
Michael Chand244c892005-07-05 14:42:33 -070017047
Joe Perches63c3a662011-04-26 08:12:10 +000017048 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070017049 ec->rx_coalesce_usecs_irq = 0;
17050 ec->tx_coalesce_usecs_irq = 0;
17051 ec->stats_block_coalesce_usecs = 0;
17052 }
David S. Miller15f98502005-05-18 22:49:26 -070017053}
17054
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017055static int tg3_init_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017056 const struct pci_device_id *ent)
17057{
Linus Torvalds1da177e2005-04-16 15:20:36 -070017058 struct net_device *dev;
17059 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000017060 int i, err, pm_cap;
17061 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070017062 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080017063 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000017064 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017065
Joe Perches05dbe002010-02-17 19:44:19 +000017066 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017067
17068 err = pci_enable_device(pdev);
17069 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017070 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017071 return err;
17072 }
17073
Linus Torvalds1da177e2005-04-16 15:20:36 -070017074 err = pci_request_regions(pdev, DRV_MODULE_NAME);
17075 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017076 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017077 goto err_out_disable_pdev;
17078 }
17079
17080 pci_set_master(pdev);
17081
17082 /* Find power-management capability. */
17083 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
17084 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000017085 dev_err(&pdev->dev,
17086 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017087 err = -EIO;
17088 goto err_out_free_res;
17089 }
17090
Matt Carlson16821282011-07-13 09:27:28 +000017091 err = pci_set_power_state(pdev, PCI_D0);
17092 if (err) {
17093 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
17094 goto err_out_free_res;
17095 }
17096
Matt Carlsonfe5f5782009-09-01 13:09:39 +000017097 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017098 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017099 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000017100 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017101 }
17102
Linus Torvalds1da177e2005-04-16 15:20:36 -070017103 SET_NETDEV_DEV(dev, &pdev->dev);
17104
Linus Torvalds1da177e2005-04-16 15:20:36 -070017105 tp = netdev_priv(dev);
17106 tp->pdev = pdev;
17107 tp->dev = dev;
17108 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017109 tp->rx_mode = TG3_DEF_RX_MODE;
17110 tp->tx_mode = TG3_DEF_TX_MODE;
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +000017111 tp->irq_sync = 1;
Matt Carlson8ef21422008-05-02 16:47:53 -070017112
Linus Torvalds1da177e2005-04-16 15:20:36 -070017113 if (tg3_debug > 0)
17114 tp->msg_enable = tg3_debug;
17115 else
17116 tp->msg_enable = TG3_DEF_MSG_ENABLE;
17117
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017118 if (pdev_is_ssb_gige_core(pdev)) {
17119 tg3_flag_set(tp, IS_SSB_CORE);
17120 if (ssb_gige_must_flush_posted_writes(pdev))
17121 tg3_flag_set(tp, FLUSH_POSTED_WRITES);
17122 if (ssb_gige_one_dma_at_once(pdev))
17123 tg3_flag_set(tp, ONE_DMA_AT_ONCE);
17124 if (ssb_gige_have_roboswitch(pdev))
17125 tg3_flag_set(tp, ROBOSWITCH);
17126 if (ssb_gige_is_rgmii(pdev))
17127 tg3_flag_set(tp, RGMII_MODE);
17128 }
17129
Linus Torvalds1da177e2005-04-16 15:20:36 -070017130 /* The word/byte swap controls here control register access byte
17131 * swapping. DMA data byte swapping is controlled in the GRC_MODE
17132 * setting below.
17133 */
17134 tp->misc_host_ctrl =
17135 MISC_HOST_CTRL_MASK_PCI_INT |
17136 MISC_HOST_CTRL_WORD_SWAP |
17137 MISC_HOST_CTRL_INDIR_ACCESS |
17138 MISC_HOST_CTRL_PCISTATE_RW;
17139
17140 /* The NONFRM (non-frame) byte/word swap controls take effect
17141 * on descriptor entries, anything which isn't packet data.
17142 *
17143 * The StrongARM chips on the board (one for tx, one for rx)
17144 * are running in big-endian mode.
17145 */
17146 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
17147 GRC_MODE_WSWAP_NONFRM_DATA);
17148#ifdef __BIG_ENDIAN
17149 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
17150#endif
17151 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017152 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000017153 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017154
Matt Carlsond5fe4882008-11-21 17:20:32 -080017155 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010017156 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017157 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017158 err = -ENOMEM;
17159 goto err_out_free_dev;
17160 }
17161
Matt Carlsonc9cab242011-07-13 09:27:27 +000017162 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
17163 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
17164 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
17165 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
17166 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000017167 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlsonc9cab242011-07-13 09:27:27 +000017168 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
17169 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000017170 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
17171 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
17172 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
17173 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727) {
Matt Carlsonc9cab242011-07-13 09:27:27 +000017174 tg3_flag_set(tp, ENABLE_APE);
17175 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
17176 if (!tp->aperegs) {
17177 dev_err(&pdev->dev,
17178 "Cannot map APE registers, aborting\n");
17179 err = -ENOMEM;
17180 goto err_out_iounmap;
17181 }
17182 }
17183
Linus Torvalds1da177e2005-04-16 15:20:36 -070017184 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
17185 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017186
Linus Torvalds1da177e2005-04-16 15:20:36 -070017187 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017188 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000017189 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017190 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017191
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000017192 err = tg3_get_invariants(tp, ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017193 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017194 dev_err(&pdev->dev,
17195 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017196 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017197 }
17198
Michael Chan4a29cc22006-03-19 13:21:12 -080017199 /* The EPB bridge inside 5714, 5715, and 5780 and any
17200 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080017201 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
17202 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
17203 * do DMA address check in tg3_start_xmit().
17204 */
Joe Perches63c3a662011-04-26 08:12:10 +000017205 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070017206 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000017207 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070017208 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080017209#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070017210 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017211#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080017212 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070017213 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017214
17215 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070017216 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080017217 err = pci_set_dma_mask(pdev, dma_mask);
17218 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000017219 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080017220 err = pci_set_consistent_dma_mask(pdev,
17221 persist_dma_mask);
17222 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017223 dev_err(&pdev->dev, "Unable to obtain 64 bit "
17224 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017225 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017226 }
17227 }
17228 }
Yang Hongyang284901a2009-04-06 19:01:15 -070017229 if (err || dma_mask == DMA_BIT_MASK(32)) {
17230 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080017231 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017232 dev_err(&pdev->dev,
17233 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017234 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017235 }
17236 }
17237
Michael Chanfdfec1722005-07-25 12:31:48 -070017238 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017239
Patrick McHardyf6469682013-04-19 02:04:27 +000017240 features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Matt Carlson0da06062011-05-19 12:12:53 +000017241
17242 /* 5700 B0 chips do not support checksumming correctly due
17243 * to hardware bugs.
17244 */
Joe Perches41535772013-02-16 11:20:04 +000017245 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5700_B0) {
Matt Carlson0da06062011-05-19 12:12:53 +000017246 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
17247
17248 if (tg3_flag(tp, 5755_PLUS))
17249 features |= NETIF_F_IPV6_CSUM;
17250 }
17251
Michael Chan4e3a7aa2006-03-20 17:47:44 -080017252 /* TSO is on by default on chips that support hardware TSO.
17253 * Firmware TSO on older chips gives lower performance, so it
17254 * is off by default, but can be enabled using ethtool.
17255 */
Joe Perches63c3a662011-04-26 08:12:10 +000017256 if ((tg3_flag(tp, HW_TSO_1) ||
17257 tg3_flag(tp, HW_TSO_2) ||
17258 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000017259 (features & NETIF_F_IP_CSUM))
17260 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000017261 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000017262 if (features & NETIF_F_IPV6_CSUM)
17263 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000017264 if (tg3_flag(tp, HW_TSO_3) ||
Joe Perches41535772013-02-16 11:20:04 +000017265 tg3_asic_rev(tp) == ASIC_REV_5761 ||
17266 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
17267 tg3_chip_rev(tp) != CHIPREV_5784_AX) ||
17268 tg3_asic_rev(tp) == ASIC_REV_5785 ||
17269 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000017270 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070017271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017272
Matt Carlsond542fe22011-05-19 16:02:43 +000017273 dev->features |= features;
17274 dev->vlan_features |= features;
17275
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017276 /*
17277 * Add loopback capability only for a subset of devices that support
17278 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
17279 * loopback for the remaining devices.
17280 */
Joe Perches41535772013-02-16 11:20:04 +000017281 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017282 !tg3_flag(tp, CPMU_PRESENT))
17283 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000017284 features |= NETIF_F_LOOPBACK;
17285
Matt Carlson0da06062011-05-19 12:12:53 +000017286 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017287
Joe Perches41535772013-02-16 11:20:04 +000017288 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000017289 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070017290 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000017291 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017292 tp->rx_pending = 63;
17293 }
17294
Linus Torvalds1da177e2005-04-16 15:20:36 -070017295 err = tg3_get_device_address(tp);
17296 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017297 dev_err(&pdev->dev,
17298 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017299 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070017300 }
17301
Matt Carlsonc88864d2007-11-12 21:07:01 -080017302 /*
17303 * Reset chip in case UNDI or EFI driver did not shutdown
17304 * DMA self test will enable WDMAC and we'll see (spurious)
17305 * pending DMA on the PCI bus at that point.
17306 */
17307 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
17308 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
17309 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
17310 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
17311 }
17312
17313 err = tg3_test_dma(tp);
17314 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017315 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080017316 goto err_out_apeunmap;
17317 }
17318
Matt Carlson78f90dc2009-11-13 13:03:42 +000017319 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
17320 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
17321 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000017322 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000017323 struct tg3_napi *tnapi = &tp->napi[i];
17324
17325 tnapi->tp = tp;
17326 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
17327
17328 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000017329 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017330 intmbx += 0x8;
17331 else
17332 intmbx += 0x4;
17333
17334 tnapi->consmbox = rcvmbx;
17335 tnapi->prodmbox = sndmbx;
17336
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017337 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017338 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017339 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000017340 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000017341
Joe Perches63c3a662011-04-26 08:12:10 +000017342 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000017343 break;
17344
17345 /*
17346 * If we support MSIX, we'll be using RSS. If we're using
17347 * RSS, the first vector only handles link interrupts and the
17348 * remaining vectors handle rx and tx interrupts. Reuse the
17349 * mailbox values for the next iteration. The values we setup
17350 * above are still useful for the single vectored mode.
17351 */
17352 if (!i)
17353 continue;
17354
17355 rcvmbx += 0x8;
17356
17357 if (sndmbx & 0x4)
17358 sndmbx -= 0x4;
17359 else
17360 sndmbx += 0xc;
17361 }
17362
Matt Carlsonc88864d2007-11-12 21:07:01 -080017363 tg3_init_coal(tp);
17364
Michael Chanc49a1562006-12-17 17:07:29 -080017365 pci_set_drvdata(pdev, dev);
17366
Joe Perches41535772013-02-16 11:20:04 +000017367 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
17368 tg3_asic_rev(tp) == ASIC_REV_5720 ||
17369 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +000017370 tg3_flag_set(tp, PTP_CAPABLE);
17371
Matt Carlsoncd0d7222011-07-13 09:27:33 +000017372 if (tg3_flag(tp, 5717_PLUS)) {
17373 /* Resume a low-power mode */
17374 tg3_frob_aux_power(tp, false);
17375 }
17376
Matt Carlson21f76382012-02-22 12:35:21 +000017377 tg3_timer_init(tp);
17378
Michael Chan402e1392013-02-14 12:13:41 +000017379 tg3_carrier_off(tp);
17380
Linus Torvalds1da177e2005-04-16 15:20:36 -070017381 err = register_netdev(dev);
17382 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017383 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070017384 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017385 }
17386
Joe Perches05dbe002010-02-17 19:44:19 +000017387 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
17388 tp->board_part_number,
Joe Perches41535772013-02-16 11:20:04 +000017389 tg3_chip_rev_id(tp),
Joe Perches05dbe002010-02-17 19:44:19 +000017390 tg3_bus_string(tp, str),
17391 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017392
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017393 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000017394 struct phy_device *phydev;
17395 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000017396 netdev_info(dev,
17397 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000017398 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017399 } else {
17400 char *ethtype;
17401
17402 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
17403 ethtype = "10/100Base-TX";
17404 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
17405 ethtype = "1000Base-SX";
17406 else
17407 ethtype = "10/100/1000Base-T";
17408
Matt Carlson5129c3a2010-04-05 10:19:23 +000017409 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000017410 "(WireSpeed[%d], EEE[%d])\n",
17411 tg3_phy_string(tp), ethtype,
17412 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
17413 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017414 }
Matt Carlsondf59c942008-11-03 16:52:56 -080017415
Joe Perches05dbe002010-02-17 19:44:19 +000017416 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000017417 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017418 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017419 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017420 tg3_flag(tp, ENABLE_ASF) != 0,
17421 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000017422 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
17423 tp->dma_rwctrl,
17424 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
17425 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017426
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017427 pci_save_state(pdev);
17428
Linus Torvalds1da177e2005-04-16 15:20:36 -070017429 return 0;
17430
Matt Carlson0d3031d2007-10-10 18:02:43 -070017431err_out_apeunmap:
17432 if (tp->aperegs) {
17433 iounmap(tp->aperegs);
17434 tp->aperegs = NULL;
17435 }
17436
Linus Torvalds1da177e2005-04-16 15:20:36 -070017437err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070017438 if (tp->regs) {
17439 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017440 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017442
17443err_out_free_dev:
17444 free_netdev(dev);
17445
Matt Carlson16821282011-07-13 09:27:28 +000017446err_out_power_down:
17447 pci_set_power_state(pdev, PCI_D3hot);
17448
Linus Torvalds1da177e2005-04-16 15:20:36 -070017449err_out_free_res:
17450 pci_release_regions(pdev);
17451
17452err_out_disable_pdev:
17453 pci_disable_device(pdev);
17454 pci_set_drvdata(pdev, NULL);
17455 return err;
17456}
17457
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017458static void tg3_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017459{
17460 struct net_device *dev = pci_get_drvdata(pdev);
17461
17462 if (dev) {
17463 struct tg3 *tp = netdev_priv(dev);
17464
Jesper Juhle3c55302012-04-09 22:50:15 +020017465 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080017466
Matt Carlsondb219972011-11-04 09:15:03 +000017467 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017468
David S. Miller1805b2f2011-10-24 18:18:09 -040017469 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017470 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017471 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017472 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070017473
Linus Torvalds1da177e2005-04-16 15:20:36 -070017474 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070017475 if (tp->aperegs) {
17476 iounmap(tp->aperegs);
17477 tp->aperegs = NULL;
17478 }
Michael Chan68929142005-08-09 20:17:14 -070017479 if (tp->regs) {
17480 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017481 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017483 free_netdev(dev);
17484 pci_release_regions(pdev);
17485 pci_disable_device(pdev);
17486 pci_set_drvdata(pdev, NULL);
17487 }
17488}
17489
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017490#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017491static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017492{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017493 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017494 struct net_device *dev = pci_get_drvdata(pdev);
17495 struct tg3 *tp = netdev_priv(dev);
17496 int err;
17497
17498 if (!netif_running(dev))
17499 return 0;
17500
Matt Carlsondb219972011-11-04 09:15:03 +000017501 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017502 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017503 tg3_netif_stop(tp);
17504
Matt Carlson21f76382012-02-22 12:35:21 +000017505 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017506
David S. Millerf47c11e2005-06-24 20:18:35 -070017507 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017508 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070017509 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017510
17511 netif_device_detach(dev);
17512
David S. Millerf47c11e2005-06-24 20:18:35 -070017513 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070017514 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000017515 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070017516 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017517
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017518 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017519 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017520 int err2;
17521
David S. Millerf47c11e2005-06-24 20:18:35 -070017522 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017523
Joe Perches63c3a662011-04-26 08:12:10 +000017524 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017525 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017526 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070017527 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017528
Matt Carlson21f76382012-02-22 12:35:21 +000017529 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017530
17531 netif_device_attach(dev);
17532 tg3_netif_start(tp);
17533
Michael Chanb9ec6c12006-07-25 16:37:27 -070017534out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017535 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017536
17537 if (!err2)
17538 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017539 }
17540
17541 return err;
17542}
17543
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017544static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017545{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017546 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017547 struct net_device *dev = pci_get_drvdata(pdev);
17548 struct tg3 *tp = netdev_priv(dev);
17549 int err;
17550
17551 if (!netif_running(dev))
17552 return 0;
17553
Linus Torvalds1da177e2005-04-16 15:20:36 -070017554 netif_device_attach(dev);
17555
David S. Millerf47c11e2005-06-24 20:18:35 -070017556 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017557
Joe Perches63c3a662011-04-26 08:12:10 +000017558 tg3_flag_set(tp, INIT_COMPLETE);
Nithin Sujir942d1af2013-04-09 08:48:07 +000017559 err = tg3_restart_hw(tp,
17560 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN));
Michael Chanb9ec6c12006-07-25 16:37:27 -070017561 if (err)
17562 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017563
Matt Carlson21f76382012-02-22 12:35:21 +000017564 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017565
Linus Torvalds1da177e2005-04-16 15:20:36 -070017566 tg3_netif_start(tp);
17567
Michael Chanb9ec6c12006-07-25 16:37:27 -070017568out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017569 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017570
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017571 if (!err)
17572 tg3_phy_start(tp);
17573
Michael Chanb9ec6c12006-07-25 16:37:27 -070017574 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017575}
Fabio Estevam42df36a2013-04-16 09:28:29 +000017576#endif /* CONFIG_PM_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017577
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017578static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
17579
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017580/**
17581 * tg3_io_error_detected - called when PCI error is detected
17582 * @pdev: Pointer to PCI device
17583 * @state: The current pci connection state
17584 *
17585 * This function is called after a PCI bus error affecting
17586 * this device has been detected.
17587 */
17588static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
17589 pci_channel_state_t state)
17590{
17591 struct net_device *netdev = pci_get_drvdata(pdev);
17592 struct tg3 *tp = netdev_priv(netdev);
17593 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
17594
17595 netdev_info(netdev, "PCI I/O error detected\n");
17596
17597 rtnl_lock();
17598
17599 if (!netif_running(netdev))
17600 goto done;
17601
17602 tg3_phy_stop(tp);
17603
17604 tg3_netif_stop(tp);
17605
Matt Carlson21f76382012-02-22 12:35:21 +000017606 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017607
17608 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000017609 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017610
17611 netif_device_detach(netdev);
17612
17613 /* Clean up software state, even if MMIO is blocked */
17614 tg3_full_lock(tp, 0);
17615 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
17616 tg3_full_unlock(tp);
17617
17618done:
17619 if (state == pci_channel_io_perm_failure)
17620 err = PCI_ERS_RESULT_DISCONNECT;
17621 else
17622 pci_disable_device(pdev);
17623
17624 rtnl_unlock();
17625
17626 return err;
17627}
17628
17629/**
17630 * tg3_io_slot_reset - called after the pci bus has been reset.
17631 * @pdev: Pointer to PCI device
17632 *
17633 * Restart the card from scratch, as if from a cold-boot.
17634 * At this point, the card has exprienced a hard reset,
17635 * followed by fixups by BIOS, and has its config space
17636 * set up identically to what it was at cold boot.
17637 */
17638static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
17639{
17640 struct net_device *netdev = pci_get_drvdata(pdev);
17641 struct tg3 *tp = netdev_priv(netdev);
17642 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
17643 int err;
17644
17645 rtnl_lock();
17646
17647 if (pci_enable_device(pdev)) {
17648 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
17649 goto done;
17650 }
17651
17652 pci_set_master(pdev);
17653 pci_restore_state(pdev);
17654 pci_save_state(pdev);
17655
17656 if (!netif_running(netdev)) {
17657 rc = PCI_ERS_RESULT_RECOVERED;
17658 goto done;
17659 }
17660
17661 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000017662 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017663 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017664
17665 rc = PCI_ERS_RESULT_RECOVERED;
17666
17667done:
17668 rtnl_unlock();
17669
17670 return rc;
17671}
17672
17673/**
17674 * tg3_io_resume - called when traffic can start flowing again.
17675 * @pdev: Pointer to PCI device
17676 *
17677 * This callback is called when the error recovery driver tells
17678 * us that its OK to resume normal operation.
17679 */
17680static void tg3_io_resume(struct pci_dev *pdev)
17681{
17682 struct net_device *netdev = pci_get_drvdata(pdev);
17683 struct tg3 *tp = netdev_priv(netdev);
17684 int err;
17685
17686 rtnl_lock();
17687
17688 if (!netif_running(netdev))
17689 goto done;
17690
17691 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000017692 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017693 err = tg3_restart_hw(tp, true);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017694 if (err) {
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017695 tg3_full_unlock(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017696 netdev_err(netdev, "Cannot restart hardware after reset.\n");
17697 goto done;
17698 }
17699
17700 netif_device_attach(netdev);
17701
Matt Carlson21f76382012-02-22 12:35:21 +000017702 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017703
17704 tg3_netif_start(tp);
17705
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017706 tg3_full_unlock(tp);
17707
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017708 tg3_phy_start(tp);
17709
17710done:
17711 rtnl_unlock();
17712}
17713
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070017714static const struct pci_error_handlers tg3_err_handler = {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017715 .error_detected = tg3_io_error_detected,
17716 .slot_reset = tg3_io_slot_reset,
17717 .resume = tg3_io_resume
17718};
17719
Linus Torvalds1da177e2005-04-16 15:20:36 -070017720static struct pci_driver tg3_driver = {
17721 .name = DRV_MODULE_NAME,
17722 .id_table = tg3_pci_tbl,
17723 .probe = tg3_init_one,
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017724 .remove = tg3_remove_one,
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017725 .err_handler = &tg3_err_handler,
Fabio Estevam42df36a2013-04-16 09:28:29 +000017726 .driver.pm = &tg3_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017727};
17728
17729static int __init tg3_init(void)
17730{
Jeff Garzik29917622006-08-19 17:48:59 -040017731 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017732}
17733
17734static void __exit tg3_cleanup(void)
17735{
17736 pci_unregister_driver(&tg3_driver);
17737}
17738
17739module_init(tg3_init);
17740module_exit(tg3_cleanup);