blob: 728d42ab2a7636e4656a28174ac2b8c9159c60f0 [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
Matt Carlson0a459aa2008-11-03 16:54:15 -08002960static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002961{
Matt Carlsonce057f02007-11-12 21:08:03 -08002962 u32 val;
2963
Nithin Sujir942d1af2013-04-09 08:48:07 +00002964 if (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)
2965 return;
2966
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002967 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +00002968 if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Michael Chan51297242007-02-13 12:17:57 -08002969 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2970 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2971
2972 sg_dig_ctrl |=
2973 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2974 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2975 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2976 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002977 return;
Michael Chan51297242007-02-13 12:17:57 -08002978 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002979
Joe Perches41535772013-02-16 11:20:04 +00002980 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002981 tg3_bmcr_reset(tp);
2982 val = tr32(GRC_MISC_CFG);
2983 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2984 udelay(40);
2985 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002986 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002987 u32 phytest;
2988 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2989 u32 phy;
2990
2991 tg3_writephy(tp, MII_ADVERTISE, 0);
2992 tg3_writephy(tp, MII_BMCR,
2993 BMCR_ANENABLE | BMCR_ANRESTART);
2994
2995 tg3_writephy(tp, MII_TG3_FET_TEST,
2996 phytest | MII_TG3_FET_SHADOW_EN);
2997 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2998 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2999 tg3_writephy(tp,
3000 MII_TG3_FET_SHDW_AUXMODE4,
3001 phy);
3002 }
3003 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
3004 }
3005 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003006 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07003007 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3008 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003009
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003010 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3011 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
3012 MII_TG3_AUXCTL_PCTL_VREG_11V;
3013 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07003014 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003015
Michael Chan15c3b692006-03-22 01:06:52 -08003016 /* The PHY should not be powered down on some chips because
3017 * of bugs.
3018 */
Joe Perches41535772013-02-16 11:20:04 +00003019 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
3020 tg3_asic_rev(tp) == ASIC_REV_5704 ||
3021 (tg3_asic_rev(tp) == ASIC_REV_5780 &&
Matt Carlson085f1af2012-04-02 09:01:40 +00003022 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)) ||
Joe Perches41535772013-02-16 11:20:04 +00003023 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
Matt Carlson085f1af2012-04-02 09:01:40 +00003024 !tp->pci_fn))
Michael Chan15c3b692006-03-22 01:06:52 -08003025 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08003026
Joe Perches41535772013-02-16 11:20:04 +00003027 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
3028 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08003029 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
3030 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
3031 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
3032 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
3033 }
3034
Michael Chan15c3b692006-03-22 01:06:52 -08003035 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
3036}
3037
Matt Carlson3f007892008-11-03 16:51:36 -08003038/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003039static int tg3_nvram_lock(struct tg3 *tp)
3040{
Joe Perches63c3a662011-04-26 08:12:10 +00003041 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003042 int i;
3043
3044 if (tp->nvram_lock_cnt == 0) {
3045 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
3046 for (i = 0; i < 8000; i++) {
3047 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
3048 break;
3049 udelay(20);
3050 }
3051 if (i == 8000) {
3052 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
3053 return -ENODEV;
3054 }
3055 }
3056 tp->nvram_lock_cnt++;
3057 }
3058 return 0;
3059}
3060
3061/* tp->lock is held. */
3062static void tg3_nvram_unlock(struct tg3 *tp)
3063{
Joe Perches63c3a662011-04-26 08:12:10 +00003064 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003065 if (tp->nvram_lock_cnt > 0)
3066 tp->nvram_lock_cnt--;
3067 if (tp->nvram_lock_cnt == 0)
3068 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
3069 }
3070}
3071
3072/* tp->lock is held. */
3073static void tg3_enable_nvram_access(struct tg3 *tp)
3074{
Joe Perches63c3a662011-04-26 08:12:10 +00003075 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003076 u32 nvaccess = tr32(NVRAM_ACCESS);
3077
3078 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
3079 }
3080}
3081
3082/* tp->lock is held. */
3083static void tg3_disable_nvram_access(struct tg3 *tp)
3084{
Joe Perches63c3a662011-04-26 08:12:10 +00003085 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003086 u32 nvaccess = tr32(NVRAM_ACCESS);
3087
3088 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
3089 }
3090}
3091
3092static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
3093 u32 offset, u32 *val)
3094{
3095 u32 tmp;
3096 int i;
3097
3098 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
3099 return -EINVAL;
3100
3101 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
3102 EEPROM_ADDR_DEVID_MASK |
3103 EEPROM_ADDR_READ);
3104 tw32(GRC_EEPROM_ADDR,
3105 tmp |
3106 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3107 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
3108 EEPROM_ADDR_ADDR_MASK) |
3109 EEPROM_ADDR_READ | EEPROM_ADDR_START);
3110
3111 for (i = 0; i < 1000; i++) {
3112 tmp = tr32(GRC_EEPROM_ADDR);
3113
3114 if (tmp & EEPROM_ADDR_COMPLETE)
3115 break;
3116 msleep(1);
3117 }
3118 if (!(tmp & EEPROM_ADDR_COMPLETE))
3119 return -EBUSY;
3120
Matt Carlson62cedd12009-04-20 14:52:29 -07003121 tmp = tr32(GRC_EEPROM_DATA);
3122
3123 /*
3124 * The data will always be opposite the native endian
3125 * format. Perform a blind byteswap to compensate.
3126 */
3127 *val = swab32(tmp);
3128
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003129 return 0;
3130}
3131
3132#define NVRAM_CMD_TIMEOUT 10000
3133
3134static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
3135{
3136 int i;
3137
3138 tw32(NVRAM_CMD, nvram_cmd);
3139 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
3140 udelay(10);
3141 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
3142 udelay(10);
3143 break;
3144 }
3145 }
3146
3147 if (i == NVRAM_CMD_TIMEOUT)
3148 return -EBUSY;
3149
3150 return 0;
3151}
3152
3153static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
3154{
Joe Perches63c3a662011-04-26 08:12:10 +00003155 if (tg3_flag(tp, NVRAM) &&
3156 tg3_flag(tp, NVRAM_BUFFERED) &&
3157 tg3_flag(tp, FLASH) &&
3158 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003159 (tp->nvram_jedecnum == JEDEC_ATMEL))
3160
3161 addr = ((addr / tp->nvram_pagesize) <<
3162 ATMEL_AT45DB0X1B_PAGE_POS) +
3163 (addr % tp->nvram_pagesize);
3164
3165 return addr;
3166}
3167
3168static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
3169{
Joe Perches63c3a662011-04-26 08:12:10 +00003170 if (tg3_flag(tp, NVRAM) &&
3171 tg3_flag(tp, NVRAM_BUFFERED) &&
3172 tg3_flag(tp, FLASH) &&
3173 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003174 (tp->nvram_jedecnum == JEDEC_ATMEL))
3175
3176 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
3177 tp->nvram_pagesize) +
3178 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
3179
3180 return addr;
3181}
3182
Matt Carlsone4f34112009-02-25 14:25:00 +00003183/* NOTE: Data read in from NVRAM is byteswapped according to
3184 * the byteswapping settings for all other register accesses.
3185 * tg3 devices are BE devices, so on a BE machine, the data
3186 * returned will be exactly as it is seen in NVRAM. On a LE
3187 * machine, the 32-bit value will be byteswapped.
3188 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003189static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
3190{
3191 int ret;
3192
Joe Perches63c3a662011-04-26 08:12:10 +00003193 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003194 return tg3_nvram_read_using_eeprom(tp, offset, val);
3195
3196 offset = tg3_nvram_phys_addr(tp, offset);
3197
3198 if (offset > NVRAM_ADDR_MSK)
3199 return -EINVAL;
3200
3201 ret = tg3_nvram_lock(tp);
3202 if (ret)
3203 return ret;
3204
3205 tg3_enable_nvram_access(tp);
3206
3207 tw32(NVRAM_ADDR, offset);
3208 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
3209 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
3210
3211 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00003212 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003213
3214 tg3_disable_nvram_access(tp);
3215
3216 tg3_nvram_unlock(tp);
3217
3218 return ret;
3219}
3220
Matt Carlsona9dc5292009-02-25 14:25:30 +00003221/* Ensures NVRAM data is in bytestream format. */
3222static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003223{
3224 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00003225 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003226 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003227 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003228 return res;
3229}
3230
Matt Carlsondbe9b922012-02-13 10:20:09 +00003231static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
3232 u32 offset, u32 len, u8 *buf)
3233{
3234 int i, j, rc = 0;
3235 u32 val;
3236
3237 for (i = 0; i < len; i += 4) {
3238 u32 addr;
3239 __be32 data;
3240
3241 addr = offset + i;
3242
3243 memcpy(&data, buf + i, 4);
3244
3245 /*
3246 * The SEEPROM interface expects the data to always be opposite
3247 * the native endian format. We accomplish this by reversing
3248 * all the operations that would have been performed on the
3249 * data from a call to tg3_nvram_read_be32().
3250 */
3251 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3252
3253 val = tr32(GRC_EEPROM_ADDR);
3254 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3255
3256 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3257 EEPROM_ADDR_READ);
3258 tw32(GRC_EEPROM_ADDR, val |
3259 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3260 (addr & EEPROM_ADDR_ADDR_MASK) |
3261 EEPROM_ADDR_START |
3262 EEPROM_ADDR_WRITE);
3263
3264 for (j = 0; j < 1000; j++) {
3265 val = tr32(GRC_EEPROM_ADDR);
3266
3267 if (val & EEPROM_ADDR_COMPLETE)
3268 break;
3269 msleep(1);
3270 }
3271 if (!(val & EEPROM_ADDR_COMPLETE)) {
3272 rc = -EBUSY;
3273 break;
3274 }
3275 }
3276
3277 return rc;
3278}
3279
3280/* offset and length are dword aligned */
3281static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3282 u8 *buf)
3283{
3284 int ret = 0;
3285 u32 pagesize = tp->nvram_pagesize;
3286 u32 pagemask = pagesize - 1;
3287 u32 nvram_cmd;
3288 u8 *tmp;
3289
3290 tmp = kmalloc(pagesize, GFP_KERNEL);
3291 if (tmp == NULL)
3292 return -ENOMEM;
3293
3294 while (len) {
3295 int j;
3296 u32 phy_addr, page_off, size;
3297
3298 phy_addr = offset & ~pagemask;
3299
3300 for (j = 0; j < pagesize; j += 4) {
3301 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3302 (__be32 *) (tmp + j));
3303 if (ret)
3304 break;
3305 }
3306 if (ret)
3307 break;
3308
3309 page_off = offset & pagemask;
3310 size = pagesize;
3311 if (len < size)
3312 size = len;
3313
3314 len -= size;
3315
3316 memcpy(tmp + page_off, buf, size);
3317
3318 offset = offset + (pagesize - page_off);
3319
3320 tg3_enable_nvram_access(tp);
3321
3322 /*
3323 * Before we can erase the flash page, we need
3324 * to issue a special "write enable" command.
3325 */
3326 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3327
3328 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3329 break;
3330
3331 /* Erase the target page */
3332 tw32(NVRAM_ADDR, phy_addr);
3333
3334 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3335 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3336
3337 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3338 break;
3339
3340 /* Issue another write enable to start the write. */
3341 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3342
3343 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3344 break;
3345
3346 for (j = 0; j < pagesize; j += 4) {
3347 __be32 data;
3348
3349 data = *((__be32 *) (tmp + j));
3350
3351 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3352
3353 tw32(NVRAM_ADDR, phy_addr + j);
3354
3355 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3356 NVRAM_CMD_WR;
3357
3358 if (j == 0)
3359 nvram_cmd |= NVRAM_CMD_FIRST;
3360 else if (j == (pagesize - 4))
3361 nvram_cmd |= NVRAM_CMD_LAST;
3362
3363 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3364 if (ret)
3365 break;
3366 }
3367 if (ret)
3368 break;
3369 }
3370
3371 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3372 tg3_nvram_exec_cmd(tp, nvram_cmd);
3373
3374 kfree(tmp);
3375
3376 return ret;
3377}
3378
3379/* offset and length are dword aligned */
3380static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3381 u8 *buf)
3382{
3383 int i, ret = 0;
3384
3385 for (i = 0; i < len; i += 4, offset += 4) {
3386 u32 page_off, phy_addr, nvram_cmd;
3387 __be32 data;
3388
3389 memcpy(&data, buf + i, 4);
3390 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3391
3392 page_off = offset % tp->nvram_pagesize;
3393
3394 phy_addr = tg3_nvram_phys_addr(tp, offset);
3395
Matt Carlsondbe9b922012-02-13 10:20:09 +00003396 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3397
3398 if (page_off == 0 || i == 0)
3399 nvram_cmd |= NVRAM_CMD_FIRST;
3400 if (page_off == (tp->nvram_pagesize - 4))
3401 nvram_cmd |= NVRAM_CMD_LAST;
3402
3403 if (i == (len - 4))
3404 nvram_cmd |= NVRAM_CMD_LAST;
3405
Matt Carlson42278222012-02-13 15:20:11 +00003406 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3407 !tg3_flag(tp, FLASH) ||
3408 !tg3_flag(tp, 57765_PLUS))
3409 tw32(NVRAM_ADDR, phy_addr);
3410
Joe Perches41535772013-02-16 11:20:04 +00003411 if (tg3_asic_rev(tp) != ASIC_REV_5752 &&
Matt Carlsondbe9b922012-02-13 10:20:09 +00003412 !tg3_flag(tp, 5755_PLUS) &&
3413 (tp->nvram_jedecnum == JEDEC_ST) &&
3414 (nvram_cmd & NVRAM_CMD_FIRST)) {
3415 u32 cmd;
3416
3417 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3418 ret = tg3_nvram_exec_cmd(tp, cmd);
3419 if (ret)
3420 break;
3421 }
3422 if (!tg3_flag(tp, FLASH)) {
3423 /* We always do complete word writes to eeprom. */
3424 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3425 }
3426
3427 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3428 if (ret)
3429 break;
3430 }
3431 return ret;
3432}
3433
3434/* offset and length are dword aligned */
3435static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3436{
3437 int ret;
3438
3439 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3440 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3441 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3442 udelay(40);
3443 }
3444
3445 if (!tg3_flag(tp, NVRAM)) {
3446 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3447 } else {
3448 u32 grc_mode;
3449
3450 ret = tg3_nvram_lock(tp);
3451 if (ret)
3452 return ret;
3453
3454 tg3_enable_nvram_access(tp);
3455 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3456 tw32(NVRAM_WRITE1, 0x406);
3457
3458 grc_mode = tr32(GRC_MODE);
3459 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3460
3461 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3462 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3463 buf);
3464 } else {
3465 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3466 buf);
3467 }
3468
3469 grc_mode = tr32(GRC_MODE);
3470 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3471
3472 tg3_disable_nvram_access(tp);
3473 tg3_nvram_unlock(tp);
3474 }
3475
3476 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3477 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3478 udelay(40);
3479 }
3480
3481 return ret;
3482}
3483
Matt Carlson997b4f12011-08-31 11:44:53 +00003484#define RX_CPU_SCRATCH_BASE 0x30000
3485#define RX_CPU_SCRATCH_SIZE 0x04000
3486#define TX_CPU_SCRATCH_BASE 0x34000
3487#define TX_CPU_SCRATCH_SIZE 0x04000
3488
3489/* tp->lock is held. */
Nithin Sujir837c45b2013-03-06 17:02:30 +00003490static int tg3_pause_cpu(struct tg3 *tp, u32 cpu_base)
Matt Carlson997b4f12011-08-31 11:44:53 +00003491{
3492 int i;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003493 const int iters = 10000;
Matt Carlson997b4f12011-08-31 11:44:53 +00003494
Nithin Sujir837c45b2013-03-06 17:02:30 +00003495 for (i = 0; i < iters; i++) {
3496 tw32(cpu_base + CPU_STATE, 0xffffffff);
3497 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3498 if (tr32(cpu_base + CPU_MODE) & CPU_MODE_HALT)
3499 break;
3500 }
3501
3502 return (i == iters) ? -EBUSY : 0;
3503}
3504
3505/* tp->lock is held. */
3506static int tg3_rxcpu_pause(struct tg3 *tp)
3507{
3508 int rc = tg3_pause_cpu(tp, RX_CPU_BASE);
3509
3510 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3511 tw32_f(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3512 udelay(10);
3513
3514 return rc;
3515}
3516
3517/* tp->lock is held. */
3518static int tg3_txcpu_pause(struct tg3 *tp)
3519{
3520 return tg3_pause_cpu(tp, TX_CPU_BASE);
3521}
3522
3523/* tp->lock is held. */
3524static void tg3_resume_cpu(struct tg3 *tp, u32 cpu_base)
3525{
3526 tw32(cpu_base + CPU_STATE, 0xffffffff);
3527 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3528}
3529
3530/* tp->lock is held. */
3531static void tg3_rxcpu_resume(struct tg3 *tp)
3532{
3533 tg3_resume_cpu(tp, RX_CPU_BASE);
3534}
3535
3536/* tp->lock is held. */
3537static int tg3_halt_cpu(struct tg3 *tp, u32 cpu_base)
3538{
3539 int rc;
3540
3541 BUG_ON(cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Matt Carlson997b4f12011-08-31 11:44:53 +00003542
Joe Perches41535772013-02-16 11:20:04 +00003543 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003544 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3545
3546 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3547 return 0;
3548 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003549 if (cpu_base == RX_CPU_BASE) {
3550 rc = tg3_rxcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003551 } else {
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00003552 /*
3553 * There is only an Rx CPU for the 5750 derivative in the
3554 * BCM4785.
3555 */
3556 if (tg3_flag(tp, IS_SSB_CORE))
3557 return 0;
3558
Nithin Sujir837c45b2013-03-06 17:02:30 +00003559 rc = tg3_txcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003560 }
3561
Nithin Sujir837c45b2013-03-06 17:02:30 +00003562 if (rc) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003563 netdev_err(tp->dev, "%s timed out, %s CPU\n",
Nithin Sujir837c45b2013-03-06 17:02:30 +00003564 __func__, cpu_base == RX_CPU_BASE ? "RX" : "TX");
Matt Carlson997b4f12011-08-31 11:44:53 +00003565 return -ENODEV;
3566 }
3567
3568 /* Clear firmware's nvram arbitration. */
3569 if (tg3_flag(tp, NVRAM))
3570 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3571 return 0;
3572}
3573
Nithin Sujir31f11a92013-03-06 17:02:33 +00003574static int tg3_fw_data_len(struct tg3 *tp,
3575 const struct tg3_firmware_hdr *fw_hdr)
3576{
3577 int fw_len;
3578
3579 /* Non fragmented firmware have one firmware header followed by a
3580 * contiguous chunk of data to be written. The length field in that
3581 * header is not the length of data to be written but the complete
3582 * length of the bss. The data length is determined based on
3583 * tp->fw->size minus headers.
3584 *
3585 * Fragmented firmware have a main header followed by multiple
3586 * fragments. Each fragment is identical to non fragmented firmware
3587 * with a firmware header followed by a contiguous chunk of data. In
3588 * the main header, the length field is unused and set to 0xffffffff.
3589 * In each fragment header the length is the entire size of that
3590 * fragment i.e. fragment data + header length. Data length is
3591 * therefore length field in the header minus TG3_FW_HDR_LEN.
3592 */
3593 if (tp->fw_len == 0xffffffff)
3594 fw_len = be32_to_cpu(fw_hdr->len);
3595 else
3596 fw_len = tp->fw->size;
3597
3598 return (fw_len - TG3_FW_HDR_LEN) / sizeof(u32);
3599}
3600
Matt Carlson997b4f12011-08-31 11:44:53 +00003601/* tp->lock is held. */
3602static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3603 u32 cpu_scratch_base, int cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003604 const struct tg3_firmware_hdr *fw_hdr)
Matt Carlson997b4f12011-08-31 11:44:53 +00003605{
Nithin Sujirc4dab502013-03-06 17:02:34 +00003606 int err, i;
Matt Carlson997b4f12011-08-31 11:44:53 +00003607 void (*write_op)(struct tg3 *, u32, u32);
Nithin Sujir31f11a92013-03-06 17:02:33 +00003608 int total_len = tp->fw->size;
Matt Carlson997b4f12011-08-31 11:44:53 +00003609
3610 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3611 netdev_err(tp->dev,
3612 "%s: Trying to load TX cpu firmware which is 5705\n",
3613 __func__);
3614 return -EINVAL;
3615 }
3616
Nithin Sujirc4dab502013-03-06 17:02:34 +00003617 if (tg3_flag(tp, 5705_PLUS) && tg3_asic_rev(tp) != ASIC_REV_57766)
Matt Carlson997b4f12011-08-31 11:44:53 +00003618 write_op = tg3_write_mem;
3619 else
3620 write_op = tg3_write_indirect_reg32;
3621
Nithin Sujirc4dab502013-03-06 17:02:34 +00003622 if (tg3_asic_rev(tp) != ASIC_REV_57766) {
3623 /* It is possible that bootcode is still loading at this point.
3624 * Get the nvram lock first before halting the cpu.
3625 */
3626 int lock_err = tg3_nvram_lock(tp);
3627 err = tg3_halt_cpu(tp, cpu_base);
3628 if (!lock_err)
3629 tg3_nvram_unlock(tp);
3630 if (err)
3631 goto out;
Matt Carlson997b4f12011-08-31 11:44:53 +00003632
Nithin Sujirc4dab502013-03-06 17:02:34 +00003633 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3634 write_op(tp, cpu_scratch_base + i, 0);
3635 tw32(cpu_base + CPU_STATE, 0xffffffff);
3636 tw32(cpu_base + CPU_MODE,
3637 tr32(cpu_base + CPU_MODE) | CPU_MODE_HALT);
3638 } else {
3639 /* Subtract additional main header for fragmented firmware and
3640 * advance to the first fragment
3641 */
3642 total_len -= TG3_FW_HDR_LEN;
3643 fw_hdr++;
3644 }
Nithin Sujir77997ea2013-03-06 17:02:32 +00003645
Nithin Sujir31f11a92013-03-06 17:02:33 +00003646 do {
3647 u32 *fw_data = (u32 *)(fw_hdr + 1);
3648 for (i = 0; i < tg3_fw_data_len(tp, fw_hdr); i++)
3649 write_op(tp, cpu_scratch_base +
3650 (be32_to_cpu(fw_hdr->base_addr) & 0xffff) +
3651 (i * sizeof(u32)),
3652 be32_to_cpu(fw_data[i]));
3653
3654 total_len -= be32_to_cpu(fw_hdr->len);
3655
3656 /* Advance to next fragment */
3657 fw_hdr = (struct tg3_firmware_hdr *)
3658 ((void *)fw_hdr + be32_to_cpu(fw_hdr->len));
3659 } while (total_len > 0);
Matt Carlson997b4f12011-08-31 11:44:53 +00003660
3661 err = 0;
3662
3663out:
3664 return err;
3665}
3666
3667/* tp->lock is held. */
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003668static int tg3_pause_cpu_and_set_pc(struct tg3 *tp, u32 cpu_base, u32 pc)
3669{
3670 int i;
3671 const int iters = 5;
3672
3673 tw32(cpu_base + CPU_STATE, 0xffffffff);
3674 tw32_f(cpu_base + CPU_PC, pc);
3675
3676 for (i = 0; i < iters; i++) {
3677 if (tr32(cpu_base + CPU_PC) == pc)
3678 break;
3679 tw32(cpu_base + CPU_STATE, 0xffffffff);
3680 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3681 tw32_f(cpu_base + CPU_PC, pc);
3682 udelay(1000);
3683 }
3684
3685 return (i == iters) ? -EBUSY : 0;
3686}
3687
3688/* tp->lock is held. */
Matt Carlson997b4f12011-08-31 11:44:53 +00003689static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3690{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003691 const struct tg3_firmware_hdr *fw_hdr;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003692 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003693
Nithin Sujir77997ea2013-03-06 17:02:32 +00003694 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003695
3696 /* Firmware blob starts with version numbers, followed by
3697 start address and length. We are setting complete length.
3698 length = end_address_of_bss - start_address_of_text.
3699 Remainder is the blob to be loaded contiguously
3700 from start address. */
3701
Matt Carlson997b4f12011-08-31 11:44:53 +00003702 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3703 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003704 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003705 if (err)
3706 return err;
3707
3708 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3709 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003710 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003711 if (err)
3712 return err;
3713
3714 /* Now startup only the RX cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003715 err = tg3_pause_cpu_and_set_pc(tp, RX_CPU_BASE,
3716 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003717 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003718 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3719 "should be %08x\n", __func__,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003720 tr32(RX_CPU_BASE + CPU_PC),
3721 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003722 return -ENODEV;
3723 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003724
3725 tg3_rxcpu_resume(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003726
3727 return 0;
3728}
3729
Nithin Sujirc4dab502013-03-06 17:02:34 +00003730static int tg3_validate_rxcpu_state(struct tg3 *tp)
3731{
3732 const int iters = 1000;
3733 int i;
3734 u32 val;
3735
3736 /* Wait for boot code to complete initialization and enter service
3737 * loop. It is then safe to download service patches
3738 */
3739 for (i = 0; i < iters; i++) {
3740 if (tr32(RX_CPU_HWBKPT) == TG3_SBROM_IN_SERVICE_LOOP)
3741 break;
3742
3743 udelay(10);
3744 }
3745
3746 if (i == iters) {
3747 netdev_err(tp->dev, "Boot code not ready for service patches\n");
3748 return -EBUSY;
3749 }
3750
3751 val = tg3_read_indirect_reg32(tp, TG3_57766_FW_HANDSHAKE);
3752 if (val & 0xff) {
3753 netdev_warn(tp->dev,
3754 "Other patches exist. Not downloading EEE patch\n");
3755 return -EEXIST;
3756 }
3757
3758 return 0;
3759}
3760
3761/* tp->lock is held. */
3762static void tg3_load_57766_firmware(struct tg3 *tp)
3763{
3764 struct tg3_firmware_hdr *fw_hdr;
3765
3766 if (!tg3_flag(tp, NO_NVRAM))
3767 return;
3768
3769 if (tg3_validate_rxcpu_state(tp))
3770 return;
3771
3772 if (!tp->fw)
3773 return;
3774
3775 /* This firmware blob has a different format than older firmware
3776 * releases as given below. The main difference is we have fragmented
3777 * data to be written to non-contiguous locations.
3778 *
3779 * In the beginning we have a firmware header identical to other
3780 * firmware which consists of version, base addr and length. The length
3781 * here is unused and set to 0xffffffff.
3782 *
3783 * This is followed by a series of firmware fragments which are
3784 * individually identical to previous firmware. i.e. they have the
3785 * firmware header and followed by data for that fragment. The version
3786 * field of the individual fragment header is unused.
3787 */
3788
3789 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
3790 if (be32_to_cpu(fw_hdr->base_addr) != TG3_57766_FW_BASE_ADDR)
3791 return;
3792
3793 if (tg3_rxcpu_pause(tp))
3794 return;
3795
3796 /* tg3_load_firmware_cpu() will always succeed for the 57766 */
3797 tg3_load_firmware_cpu(tp, 0, TG3_57766_FW_BASE_ADDR, 0, fw_hdr);
3798
3799 tg3_rxcpu_resume(tp);
3800}
3801
Matt Carlson997b4f12011-08-31 11:44:53 +00003802/* tp->lock is held. */
3803static int tg3_load_tso_firmware(struct tg3 *tp)
3804{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003805 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson997b4f12011-08-31 11:44:53 +00003806 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003807 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003808
Matt Carlson1caf13e2013-03-06 17:02:29 +00003809 if (!tg3_flag(tp, FW_TSO))
Matt Carlson997b4f12011-08-31 11:44:53 +00003810 return 0;
3811
Nithin Sujir77997ea2013-03-06 17:02:32 +00003812 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003813
3814 /* Firmware blob starts with version numbers, followed by
3815 start address and length. We are setting complete length.
3816 length = end_address_of_bss - start_address_of_text.
3817 Remainder is the blob to be loaded contiguously
3818 from start address. */
3819
Matt Carlson997b4f12011-08-31 11:44:53 +00003820 cpu_scratch_size = tp->fw_len;
Matt Carlson997b4f12011-08-31 11:44:53 +00003821
Joe Perches41535772013-02-16 11:20:04 +00003822 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003823 cpu_base = RX_CPU_BASE;
3824 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3825 } else {
3826 cpu_base = TX_CPU_BASE;
3827 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3828 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3829 }
3830
3831 err = tg3_load_firmware_cpu(tp, cpu_base,
3832 cpu_scratch_base, cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003833 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003834 if (err)
3835 return err;
3836
3837 /* Now startup the cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003838 err = tg3_pause_cpu_and_set_pc(tp, cpu_base,
3839 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003840 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003841 netdev_err(tp->dev,
3842 "%s fails to set CPU PC, is %08x should be %08x\n",
Nithin Sujir77997ea2013-03-06 17:02:32 +00003843 __func__, tr32(cpu_base + CPU_PC),
3844 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003845 return -ENODEV;
3846 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003847
3848 tg3_resume_cpu(tp, cpu_base);
Matt Carlson997b4f12011-08-31 11:44:53 +00003849 return 0;
3850}
3851
3852
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003853/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00003854static void __tg3_set_mac_addr(struct tg3 *tp, bool skip_mac_1)
Matt Carlson3f007892008-11-03 16:51:36 -08003855{
3856 u32 addr_high, addr_low;
3857 int i;
3858
3859 addr_high = ((tp->dev->dev_addr[0] << 8) |
3860 tp->dev->dev_addr[1]);
3861 addr_low = ((tp->dev->dev_addr[2] << 24) |
3862 (tp->dev->dev_addr[3] << 16) |
3863 (tp->dev->dev_addr[4] << 8) |
3864 (tp->dev->dev_addr[5] << 0));
3865 for (i = 0; i < 4; i++) {
3866 if (i == 1 && skip_mac_1)
3867 continue;
3868 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3869 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3870 }
3871
Joe Perches41535772013-02-16 11:20:04 +00003872 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
3873 tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson3f007892008-11-03 16:51:36 -08003874 for (i = 0; i < 12; i++) {
3875 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3876 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3877 }
3878 }
3879
3880 addr_high = (tp->dev->dev_addr[0] +
3881 tp->dev->dev_addr[1] +
3882 tp->dev->dev_addr[2] +
3883 tp->dev->dev_addr[3] +
3884 tp->dev->dev_addr[4] +
3885 tp->dev->dev_addr[5]) &
3886 TX_BACKOFF_SEED_MASK;
3887 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3888}
3889
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003890static void tg3_enable_register_access(struct tg3 *tp)
3891{
3892 /*
3893 * Make sure register accesses (indirect or otherwise) will function
3894 * correctly.
3895 */
3896 pci_write_config_dword(tp->pdev,
3897 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3898}
3899
3900static int tg3_power_up(struct tg3 *tp)
3901{
Matt Carlsonbed98292011-07-13 09:27:29 +00003902 int err;
3903
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003904 tg3_enable_register_access(tp);
3905
Matt Carlsonbed98292011-07-13 09:27:29 +00003906 err = pci_set_power_state(tp->pdev, PCI_D0);
3907 if (!err) {
3908 /* Switch out of Vaux if it is a NIC */
3909 tg3_pwrsrc_switch_to_vmain(tp);
3910 } else {
3911 netdev_err(tp->dev, "Transition to D0 failed\n");
3912 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003913
Matt Carlsonbed98292011-07-13 09:27:29 +00003914 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003915}
3916
Joe Perches953c96e2013-04-09 10:18:14 +00003917static int tg3_setup_phy(struct tg3 *, bool);
Matt Carlson4b409522012-02-13 10:20:11 +00003918
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003919static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920{
3921 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003922 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003924 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003925
3926 /* Restore the CLKREQ setting. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06003927 if (tg3_flag(tp, CLKREQ_BUG))
3928 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
3929 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3932 tw32(TG3PCI_MISC_HOST_CTRL,
3933 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3934
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003935 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003936 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003937
Joe Perches63c3a662011-04-26 08:12:10 +00003938 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003939 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003940 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003941 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003942 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003943 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003944
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003945 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003946
Matt Carlson80096062010-08-02 11:26:06 +00003947 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003948
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003949 tp->link_config.speed = phydev->speed;
3950 tp->link_config.duplex = phydev->duplex;
3951 tp->link_config.autoneg = phydev->autoneg;
3952 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003953
3954 advertising = ADVERTISED_TP |
3955 ADVERTISED_Pause |
3956 ADVERTISED_Autoneg |
3957 ADVERTISED_10baseT_Half;
3958
Joe Perches63c3a662011-04-26 08:12:10 +00003959 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3960 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003961 advertising |=
3962 ADVERTISED_100baseT_Half |
3963 ADVERTISED_100baseT_Full |
3964 ADVERTISED_10baseT_Full;
3965 else
3966 advertising |= ADVERTISED_10baseT_Full;
3967 }
3968
3969 phydev->advertising = advertising;
3970
3971 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003972
3973 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003974 if (phyid != PHY_ID_BCMAC131) {
3975 phyid &= PHY_BCM_OUI_MASK;
3976 if (phyid == PHY_BCM_OUI_1 ||
3977 phyid == PHY_BCM_OUI_2 ||
3978 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003979 do_low_power = true;
3980 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003981 }
Matt Carlsondd477002008-05-25 23:45:58 -07003982 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003983 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003984
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003985 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00003986 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987
Matt Carlson2855b9f2012-02-13 15:20:14 +00003988 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Joe Perches953c96e2013-04-09 10:18:14 +00003989 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 }
3991
Joe Perches41535772013-02-16 11:20:04 +00003992 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07003993 u32 val;
3994
3995 val = tr32(GRC_VCPU_EXT_CTRL);
3996 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003997 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003998 int i;
3999 u32 val;
4000
4001 for (i = 0; i < 200; i++) {
4002 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
4003 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
4004 break;
4005 msleep(1);
4006 }
4007 }
Joe Perches63c3a662011-04-26 08:12:10 +00004008 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07004009 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
4010 WOL_DRV_STATE_SHUTDOWN |
4011 WOL_DRV_WOL |
4012 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08004013
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004014 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 u32 mac_mode;
4016
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004017 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004018 if (do_low_power &&
4019 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
4020 tg3_phy_auxctl_write(tp,
4021 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
4022 MII_TG3_AUXCTL_PCTL_WOL_EN |
4023 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
4024 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07004025 udelay(40);
4026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004028 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07004029 mac_mode = MAC_MODE_PORT_MODE_GMII;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004030 else if (tp->phy_flags &
4031 TG3_PHYFLG_KEEP_LINK_ON_PWRDN) {
4032 if (tp->link_config.active_speed == SPEED_1000)
4033 mac_mode = MAC_MODE_PORT_MODE_GMII;
4034 else
4035 mac_mode = MAC_MODE_PORT_MODE_MII;
4036 } else
Michael Chan3f7045c2006-09-27 16:02:29 -07004037 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004039 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
Joe Perches41535772013-02-16 11:20:04 +00004040 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00004041 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004042 SPEED_100 : SPEED_10;
4043 if (tg3_5700_link_polarity(tp, speed))
4044 mac_mode |= MAC_MODE_LINK_POLARITY;
4045 else
4046 mac_mode &= ~MAC_MODE_LINK_POLARITY;
4047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 } else {
4049 mac_mode = MAC_MODE_PORT_MODE_TBI;
4050 }
4051
Joe Perches63c3a662011-04-26 08:12:10 +00004052 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 tw32(MAC_LED_CTRL, tp->led_ctrl);
4054
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004055 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00004056 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
4057 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004058 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Joe Perches63c3a662011-04-26 08:12:10 +00004060 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00004061 mac_mode |= MAC_MODE_APE_TX_EN |
4062 MAC_MODE_APE_RX_EN |
4063 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07004064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 tw32_f(MAC_MODE, mac_mode);
4066 udelay(100);
4067
4068 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
4069 udelay(10);
4070 }
4071
Joe Perches63c3a662011-04-26 08:12:10 +00004072 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Joe Perches41535772013-02-16 11:20:04 +00004073 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4074 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 u32 base_val;
4076
4077 base_val = tp->pci_clock_ctrl;
4078 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
4079 CLOCK_CTRL_TXCLK_DISABLE);
4080
Michael Chanb401e9e2005-12-19 16:27:04 -08004081 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
4082 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00004083 } else if (tg3_flag(tp, 5780_CLASS) ||
4084 tg3_flag(tp, CPMU_PRESENT) ||
Joe Perches41535772013-02-16 11:20:04 +00004085 tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07004086 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00004087 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 u32 newbits1, newbits2;
4089
Joe Perches41535772013-02-16 11:20:04 +00004090 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4091 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
4093 CLOCK_CTRL_TXCLK_DISABLE |
4094 CLOCK_CTRL_ALTCLK);
4095 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00004096 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 newbits1 = CLOCK_CTRL_625_CORE;
4098 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
4099 } else {
4100 newbits1 = CLOCK_CTRL_ALTCLK;
4101 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
4102 }
4103
Michael Chanb401e9e2005-12-19 16:27:04 -08004104 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
4105 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Michael Chanb401e9e2005-12-19 16:27:04 -08004107 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
4108 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
Joe Perches63c3a662011-04-26 08:12:10 +00004110 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 u32 newbits3;
4112
Joe Perches41535772013-02-16 11:20:04 +00004113 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4114 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
4116 CLOCK_CTRL_TXCLK_DISABLE |
4117 CLOCK_CTRL_44MHZ_CORE);
4118 } else {
4119 newbits3 = CLOCK_CTRL_44MHZ_CORE;
4120 }
4121
Michael Chanb401e9e2005-12-19 16:27:04 -08004122 tw32_wait_f(TG3PCI_CLOCK_CTRL,
4123 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 }
4125 }
4126
Joe Perches63c3a662011-04-26 08:12:10 +00004127 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08004128 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08004129
Matt Carlsoncd0d7222011-07-13 09:27:33 +00004130 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
4132 /* Workaround for unstable PLL clock */
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004133 if ((!tg3_flag(tp, IS_SSB_CORE)) &&
Joe Perches41535772013-02-16 11:20:04 +00004134 ((tg3_chip_rev(tp) == CHIPREV_5750_AX) ||
4135 (tg3_chip_rev(tp) == CHIPREV_5750_BX))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 u32 val = tr32(0x7d00);
4137
4138 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
4139 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00004140 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08004141 int err;
4142
4143 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08004145 if (!err)
4146 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08004147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 }
4149
Michael Chanbbadf502006-04-06 21:46:34 -07004150 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
4151
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 return 0;
4153}
4154
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004155static void tg3_power_down(struct tg3 *tp)
4156{
4157 tg3_power_down_prepare(tp);
4158
Joe Perches63c3a662011-04-26 08:12:10 +00004159 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004160 pci_set_power_state(tp->pdev, PCI_D3hot);
4161}
4162
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
4164{
4165 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
4166 case MII_TG3_AUX_STAT_10HALF:
4167 *speed = SPEED_10;
4168 *duplex = DUPLEX_HALF;
4169 break;
4170
4171 case MII_TG3_AUX_STAT_10FULL:
4172 *speed = SPEED_10;
4173 *duplex = DUPLEX_FULL;
4174 break;
4175
4176 case MII_TG3_AUX_STAT_100HALF:
4177 *speed = SPEED_100;
4178 *duplex = DUPLEX_HALF;
4179 break;
4180
4181 case MII_TG3_AUX_STAT_100FULL:
4182 *speed = SPEED_100;
4183 *duplex = DUPLEX_FULL;
4184 break;
4185
4186 case MII_TG3_AUX_STAT_1000HALF:
4187 *speed = SPEED_1000;
4188 *duplex = DUPLEX_HALF;
4189 break;
4190
4191 case MII_TG3_AUX_STAT_1000FULL:
4192 *speed = SPEED_1000;
4193 *duplex = DUPLEX_FULL;
4194 break;
4195
4196 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004197 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07004198 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
4199 SPEED_10;
4200 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
4201 DUPLEX_HALF;
4202 break;
4203 }
Matt Carlsone7405222012-02-13 15:20:16 +00004204 *speed = SPEED_UNKNOWN;
4205 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208}
4209
Matt Carlson42b64a42011-05-19 12:12:49 +00004210static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211{
Matt Carlson42b64a42011-05-19 12:12:49 +00004212 int err = 0;
4213 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Matt Carlson42b64a42011-05-19 12:12:49 +00004215 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00004216 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00004217 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
Matt Carlson42b64a42011-05-19 12:12:49 +00004219 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
4220 if (err)
4221 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Matt Carlson4f272092011-12-14 11:09:57 +00004223 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4224 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004225
Joe Perches41535772013-02-16 11:20:04 +00004226 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4227 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)
Matt Carlson4f272092011-12-14 11:09:57 +00004228 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004229
Matt Carlson4f272092011-12-14 11:09:57 +00004230 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
4231 if (err)
4232 goto done;
4233 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004234
Matt Carlson42b64a42011-05-19 12:12:49 +00004235 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4236 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
Matt Carlson42b64a42011-05-19 12:12:49 +00004238 tw32(TG3_CPMU_EEE_MODE,
4239 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004240
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004241 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson42b64a42011-05-19 12:12:49 +00004242 if (!err) {
4243 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00004244
Matt Carlsona6b68da2010-12-06 08:28:52 +00004245 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00004246 /* Advertise 100-BaseTX EEE ability */
4247 if (advertise & ADVERTISED_100baseT_Full)
4248 val |= MDIO_AN_EEE_ADV_100TX;
4249 /* Advertise 1000-BaseT EEE ability */
4250 if (advertise & ADVERTISED_1000baseT_Full)
4251 val |= MDIO_AN_EEE_ADV_1000T;
4252 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00004253 if (err)
4254 val = 0;
4255
Joe Perches41535772013-02-16 11:20:04 +00004256 switch (tg3_asic_rev(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00004257 case ASIC_REV_5717:
4258 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00004259 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004260 case ASIC_REV_5719:
4261 /* If we advertised any eee advertisements above... */
4262 if (val)
4263 val = MII_TG3_DSP_TAP26_ALNOKO |
4264 MII_TG3_DSP_TAP26_RMRXSTO |
4265 MII_TG3_DSP_TAP26_OPCSINPT;
4266 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
4267 /* Fall through */
4268 case ASIC_REV_5720:
Michael Chanc65a17f2013-01-06 12:51:07 +00004269 case ASIC_REV_5762:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004270 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
4271 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
4272 MII_TG3_DSP_CH34TP2_HIBW01);
4273 }
Matt Carlson52b02d02010-10-14 10:37:41 +00004274
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004275 err2 = tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson42b64a42011-05-19 12:12:49 +00004276 if (!err)
4277 err = err2;
4278 }
4279
4280done:
4281 return err;
4282}
4283
4284static void tg3_phy_copper_begin(struct tg3 *tp)
4285{
Matt Carlsond13ba512012-02-22 12:35:19 +00004286 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4287 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4288 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004289
Nithin Sujir942d1af2013-04-09 08:48:07 +00004290 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4291 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
Matt Carlsond13ba512012-02-22 12:35:19 +00004292 adv = ADVERTISED_10baseT_Half |
4293 ADVERTISED_10baseT_Full;
4294 if (tg3_flag(tp, WOL_SPEED_100MB))
4295 adv |= ADVERTISED_100baseT_Half |
4296 ADVERTISED_100baseT_Full;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004297 if (tp->phy_flags & TG3_PHYFLG_1G_ON_VAUX_OK)
4298 adv |= ADVERTISED_1000baseT_Half |
4299 ADVERTISED_1000baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00004300
Matt Carlsond13ba512012-02-22 12:35:19 +00004301 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004302 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004303 adv = tp->link_config.advertising;
4304 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4305 adv &= ~(ADVERTISED_1000baseT_Half |
4306 ADVERTISED_1000baseT_Full);
4307
4308 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004309 }
4310
Matt Carlsond13ba512012-02-22 12:35:19 +00004311 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004312
Nithin Sujir942d1af2013-04-09 08:48:07 +00004313 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4314 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
4315 /* Normally during power down we want to autonegotiate
4316 * the lowest possible speed for WOL. However, to avoid
4317 * link flap, we leave it untouched.
4318 */
4319 return;
4320 }
4321
Matt Carlsond13ba512012-02-22 12:35:19 +00004322 tg3_writephy(tp, MII_BMCR,
4323 BMCR_ANENABLE | BMCR_ANRESTART);
4324 } else {
4325 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 u32 bmcr, orig_bmcr;
4327
4328 tp->link_config.active_speed = tp->link_config.speed;
4329 tp->link_config.active_duplex = tp->link_config.duplex;
4330
Nithin Sujir7c6cdea2013-03-12 15:32:48 +00004331 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
4332 /* With autoneg disabled, 5715 only links up when the
4333 * advertisement register has the configured speed
4334 * enabled.
4335 */
4336 tg3_writephy(tp, MII_ADVERTISE, ADVERTISE_ALL);
4337 }
4338
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 bmcr = 0;
4340 switch (tp->link_config.speed) {
4341 default:
4342 case SPEED_10:
4343 break;
4344
4345 case SPEED_100:
4346 bmcr |= BMCR_SPEED100;
4347 break;
4348
4349 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004350 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
4354 if (tp->link_config.duplex == DUPLEX_FULL)
4355 bmcr |= BMCR_FULLDPLX;
4356
4357 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4358 (bmcr != orig_bmcr)) {
4359 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4360 for (i = 0; i < 1500; i++) {
4361 u32 tmp;
4362
4363 udelay(10);
4364 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4365 tg3_readphy(tp, MII_BMSR, &tmp))
4366 continue;
4367 if (!(tmp & BMSR_LSTATUS)) {
4368 udelay(40);
4369 break;
4370 }
4371 }
4372 tg3_writephy(tp, MII_BMCR, bmcr);
4373 udelay(40);
4374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 }
4376}
4377
Nithin Sujirfdad8de2013-04-09 08:48:08 +00004378static int tg3_phy_pull_config(struct tg3 *tp)
4379{
4380 int err;
4381 u32 val;
4382
4383 err = tg3_readphy(tp, MII_BMCR, &val);
4384 if (err)
4385 goto done;
4386
4387 if (!(val & BMCR_ANENABLE)) {
4388 tp->link_config.autoneg = AUTONEG_DISABLE;
4389 tp->link_config.advertising = 0;
4390 tg3_flag_clear(tp, PAUSE_AUTONEG);
4391
4392 err = -EIO;
4393
4394 switch (val & (BMCR_SPEED1000 | BMCR_SPEED100)) {
4395 case 0:
4396 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4397 goto done;
4398
4399 tp->link_config.speed = SPEED_10;
4400 break;
4401 case BMCR_SPEED100:
4402 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4403 goto done;
4404
4405 tp->link_config.speed = SPEED_100;
4406 break;
4407 case BMCR_SPEED1000:
4408 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4409 tp->link_config.speed = SPEED_1000;
4410 break;
4411 }
4412 /* Fall through */
4413 default:
4414 goto done;
4415 }
4416
4417 if (val & BMCR_FULLDPLX)
4418 tp->link_config.duplex = DUPLEX_FULL;
4419 else
4420 tp->link_config.duplex = DUPLEX_HALF;
4421
4422 tp->link_config.flowctrl = FLOW_CTRL_RX | FLOW_CTRL_TX;
4423
4424 err = 0;
4425 goto done;
4426 }
4427
4428 tp->link_config.autoneg = AUTONEG_ENABLE;
4429 tp->link_config.advertising = ADVERTISED_Autoneg;
4430 tg3_flag_set(tp, PAUSE_AUTONEG);
4431
4432 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4433 u32 adv;
4434
4435 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4436 if (err)
4437 goto done;
4438
4439 adv = mii_adv_to_ethtool_adv_t(val & ADVERTISE_ALL);
4440 tp->link_config.advertising |= adv | ADVERTISED_TP;
4441
4442 tp->link_config.flowctrl = tg3_decode_flowctrl_1000T(val);
4443 } else {
4444 tp->link_config.advertising |= ADVERTISED_FIBRE;
4445 }
4446
4447 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4448 u32 adv;
4449
4450 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4451 err = tg3_readphy(tp, MII_CTRL1000, &val);
4452 if (err)
4453 goto done;
4454
4455 adv = mii_ctrl1000_to_ethtool_adv_t(val);
4456 } else {
4457 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4458 if (err)
4459 goto done;
4460
4461 adv = tg3_decode_flowctrl_1000X(val);
4462 tp->link_config.flowctrl = adv;
4463
4464 val &= (ADVERTISE_1000XHALF | ADVERTISE_1000XFULL);
4465 adv = mii_adv_to_ethtool_adv_x(val);
4466 }
4467
4468 tp->link_config.advertising |= adv;
4469 }
4470
4471done:
4472 return err;
4473}
4474
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475static int tg3_init_5401phy_dsp(struct tg3 *tp)
4476{
4477 int err;
4478
4479 /* Turn off tap power management. */
4480 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004481 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004483 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4484 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4485 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4486 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4487 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
4489 udelay(40);
4490
4491 return err;
4492}
4493
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004494static bool tg3_phy_eee_config_ok(struct tg3 *tp)
4495{
4496 u32 val;
4497 u32 tgtadv = 0;
4498 u32 advertising = tp->link_config.advertising;
4499
4500 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4501 return true;
4502
4503 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, &val))
4504 return false;
4505
4506 val &= (MDIO_AN_EEE_ADV_100TX | MDIO_AN_EEE_ADV_1000T);
4507
4508
4509 if (advertising & ADVERTISED_100baseT_Full)
4510 tgtadv |= MDIO_AN_EEE_ADV_100TX;
4511 if (advertising & ADVERTISED_1000baseT_Full)
4512 tgtadv |= MDIO_AN_EEE_ADV_1000T;
4513
4514 if (val != tgtadv)
4515 return false;
4516
4517 return true;
4518}
4519
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004520static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004522 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004523
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004524 advertising = tp->link_config.advertising;
4525 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004527 advmsk = ADVERTISE_ALL;
4528 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004529 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004530 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004533 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4534 return false;
4535
4536 if ((*lcladv & advmsk) != tgtadv)
4537 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004538
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004539 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 u32 tg3_ctrl;
4541
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004542 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004543
Matt Carlson221c5632011-06-13 13:39:01 +00004544 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004545 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Matt Carlson3198e072012-02-13 15:20:10 +00004547 if (tgtadv &&
Joe Perches41535772013-02-16 11:20:04 +00004548 (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4549 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)) {
Matt Carlson3198e072012-02-13 15:20:10 +00004550 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4551 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4552 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4553 } else {
4554 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4555 }
4556
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004557 if (tg3_ctrl != tgtadv)
4558 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004560
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004561 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004562}
4563
Matt Carlson859edb22011-12-08 14:40:16 +00004564static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4565{
4566 u32 lpeth = 0;
4567
4568 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4569 u32 val;
4570
4571 if (tg3_readphy(tp, MII_STAT1000, &val))
4572 return false;
4573
4574 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4575 }
4576
4577 if (tg3_readphy(tp, MII_LPA, rmtadv))
4578 return false;
4579
4580 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4581 tp->link_config.rmt_adv = lpeth;
4582
4583 return true;
4584}
4585
Joe Perches953c96e2013-04-09 10:18:14 +00004586static bool tg3_test_and_report_link_chg(struct tg3 *tp, bool curr_link_up)
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004587{
4588 if (curr_link_up != tp->link_up) {
4589 if (curr_link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00004590 netif_carrier_on(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004591 } else {
Nithin Sujir84421b92013-03-08 08:01:24 +00004592 netif_carrier_off(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004593 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
4594 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
4595 }
4596
4597 tg3_link_report(tp);
4598 return true;
4599 }
4600
4601 return false;
4602}
4603
Michael Chan3310e242013-04-09 08:48:05 +00004604static void tg3_clear_mac_status(struct tg3 *tp)
4605{
4606 tw32(MAC_EVENT, 0);
4607
4608 tw32_f(MAC_STATUS,
4609 MAC_STATUS_SYNC_CHANGED |
4610 MAC_STATUS_CFG_CHANGED |
4611 MAC_STATUS_MI_COMPLETION |
4612 MAC_STATUS_LNKSTATE_CHANGED);
4613 udelay(40);
4614}
4615
Joe Perches953c96e2013-04-09 10:18:14 +00004616static int tg3_setup_copper_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617{
Joe Perches953c96e2013-04-09 10:18:14 +00004618 bool current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004619 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004620 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 u16 current_speed;
4622 u8 current_duplex;
4623 int i, err;
4624
Michael Chan3310e242013-04-09 08:48:05 +00004625 tg3_clear_mac_status(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Matt Carlson8ef21422008-05-02 16:47:53 -07004627 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4628 tw32_f(MAC_MI_MODE,
4629 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4630 udelay(80);
4631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004633 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
4635 /* Some third-party PHYs need to be reset on link going
4636 * down.
4637 */
Joe Perches41535772013-02-16 11:20:04 +00004638 if ((tg3_asic_rev(tp) == ASIC_REV_5703 ||
4639 tg3_asic_rev(tp) == ASIC_REV_5704 ||
4640 tg3_asic_rev(tp) == ASIC_REV_5705) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004641 tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 tg3_readphy(tp, MII_BMSR, &bmsr);
4643 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4644 !(bmsr & BMSR_LSTATUS))
Joe Perches953c96e2013-04-09 10:18:14 +00004645 force_reset = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 }
4647 if (force_reset)
4648 tg3_phy_reset(tp);
4649
Matt Carlson79eb6902010-02-17 15:17:03 +00004650 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 tg3_readphy(tp, MII_BMSR, &bmsr);
4652 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004653 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 bmsr = 0;
4655
4656 if (!(bmsr & BMSR_LSTATUS)) {
4657 err = tg3_init_5401phy_dsp(tp);
4658 if (err)
4659 return err;
4660
4661 tg3_readphy(tp, MII_BMSR, &bmsr);
4662 for (i = 0; i < 1000; i++) {
4663 udelay(10);
4664 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4665 (bmsr & BMSR_LSTATUS)) {
4666 udelay(40);
4667 break;
4668 }
4669 }
4670
Matt Carlson79eb6902010-02-17 15:17:03 +00004671 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4672 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 !(bmsr & BMSR_LSTATUS) &&
4674 tp->link_config.active_speed == SPEED_1000) {
4675 err = tg3_phy_reset(tp);
4676 if (!err)
4677 err = tg3_init_5401phy_dsp(tp);
4678 if (err)
4679 return err;
4680 }
4681 }
Joe Perches41535772013-02-16 11:20:04 +00004682 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4683 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 /* 5701 {A0,B0} CRC bug workaround */
4685 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004686 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4687 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4688 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 }
4690
4691 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004692 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4693 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004695 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004697 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4699
Joe Perches41535772013-02-16 11:20:04 +00004700 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4701 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4703 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4704 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4705 else
4706 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4707 }
4708
Joe Perches953c96e2013-04-09 10:18:14 +00004709 current_link_up = false;
Matt Carlsone7405222012-02-13 15:20:16 +00004710 current_speed = SPEED_UNKNOWN;
4711 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004712 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004713 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004715 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004716 err = tg3_phy_auxctl_read(tp,
4717 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4718 &val);
4719 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004720 tg3_phy_auxctl_write(tp,
4721 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4722 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 goto relink;
4724 }
4725 }
4726
4727 bmsr = 0;
4728 for (i = 0; i < 100; i++) {
4729 tg3_readphy(tp, MII_BMSR, &bmsr);
4730 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4731 (bmsr & BMSR_LSTATUS))
4732 break;
4733 udelay(40);
4734 }
4735
4736 if (bmsr & BMSR_LSTATUS) {
4737 u32 aux_stat, bmcr;
4738
4739 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4740 for (i = 0; i < 2000; i++) {
4741 udelay(10);
4742 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4743 aux_stat)
4744 break;
4745 }
4746
4747 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4748 &current_speed,
4749 &current_duplex);
4750
4751 bmcr = 0;
4752 for (i = 0; i < 200; i++) {
4753 tg3_readphy(tp, MII_BMCR, &bmcr);
4754 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4755 continue;
4756 if (bmcr && bmcr != 0x7fff)
4757 break;
4758 udelay(10);
4759 }
4760
Matt Carlsonef167e22007-12-20 20:10:01 -08004761 lcl_adv = 0;
4762 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763
Matt Carlsonef167e22007-12-20 20:10:01 -08004764 tp->link_config.active_speed = current_speed;
4765 tp->link_config.active_duplex = current_duplex;
4766
4767 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004768 bool eee_config_ok = tg3_phy_eee_config_ok(tp);
4769
Matt Carlsonef167e22007-12-20 20:10:01 -08004770 if ((bmcr & BMCR_ANENABLE) &&
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004771 eee_config_ok &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004772 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004773 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Joe Perches953c96e2013-04-09 10:18:14 +00004774 current_link_up = true;
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004775
4776 /* EEE settings changes take effect only after a phy
4777 * reset. If we have skipped a reset due to Link Flap
4778 * Avoidance being enabled, do it now.
4779 */
4780 if (!eee_config_ok &&
4781 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
4782 !force_reset)
4783 tg3_phy_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 } else {
4785 if (!(bmcr & BMCR_ANENABLE) &&
4786 tp->link_config.speed == current_speed &&
Nithin Sujirf0fcd7a2013-04-09 08:48:01 +00004787 tp->link_config.duplex == current_duplex) {
Joe Perches953c96e2013-04-09 10:18:14 +00004788 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 }
4790 }
4791
Joe Perches953c96e2013-04-09 10:18:14 +00004792 if (current_link_up &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004793 tp->link_config.active_duplex == DUPLEX_FULL) {
4794 u32 reg, bit;
4795
4796 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4797 reg = MII_TG3_FET_GEN_STAT;
4798 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4799 } else {
4800 reg = MII_TG3_EXT_STAT;
4801 bit = MII_TG3_EXT_STAT_MDIX;
4802 }
4803
4804 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4805 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4806
Matt Carlsonef167e22007-12-20 20:10:01 -08004807 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 }
4810
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811relink:
Joe Perches953c96e2013-04-09 10:18:14 +00004812 if (!current_link_up || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 tg3_phy_copper_begin(tp);
4814
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004815 if (tg3_flag(tp, ROBOSWITCH)) {
Joe Perches953c96e2013-04-09 10:18:14 +00004816 current_link_up = true;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004817 /* FIXME: when BCM5325 switch is used use 100 MBit/s */
4818 current_speed = SPEED_1000;
4819 current_duplex = DUPLEX_FULL;
4820 tp->link_config.active_speed = current_speed;
4821 tp->link_config.active_duplex = current_duplex;
4822 }
4823
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004824 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004825 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4826 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Joe Perches953c96e2013-04-09 10:18:14 +00004827 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 }
4829
4830 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
Joe Perches953c96e2013-04-09 10:18:14 +00004831 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 if (tp->link_config.active_speed == SPEED_100 ||
4833 tp->link_config.active_speed == SPEED_10)
4834 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4835 else
4836 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004837 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004838 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4839 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4841
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004842 /* In order for the 5750 core in BCM4785 chip to work properly
4843 * in RGMII mode, the Led Control Register must be set up.
4844 */
4845 if (tg3_flag(tp, RGMII_MODE)) {
4846 u32 led_ctrl = tr32(MAC_LED_CTRL);
4847 led_ctrl &= ~(LED_CTRL_1000MBPS_ON | LED_CTRL_100MBPS_ON);
4848
4849 if (tp->link_config.active_speed == SPEED_10)
4850 led_ctrl |= LED_CTRL_LNKLED_OVERRIDE;
4851 else if (tp->link_config.active_speed == SPEED_100)
4852 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4853 LED_CTRL_100MBPS_ON);
4854 else if (tp->link_config.active_speed == SPEED_1000)
4855 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4856 LED_CTRL_1000MBPS_ON);
4857
4858 tw32(MAC_LED_CTRL, led_ctrl);
4859 udelay(40);
4860 }
4861
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4863 if (tp->link_config.active_duplex == DUPLEX_HALF)
4864 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4865
Joe Perches41535772013-02-16 11:20:04 +00004866 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches953c96e2013-04-09 10:18:14 +00004867 if (current_link_up &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004868 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004870 else
4871 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 }
4873
4874 /* ??? Without this setting Netgear GA302T PHY does not
4875 * ??? send/receive packets...
4876 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004877 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Joe Perches41535772013-02-16 11:20:04 +00004878 tg3_chip_rev_id(tp) == CHIPREV_ID_5700_ALTIMA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4880 tw32_f(MAC_MI_MODE, tp->mi_mode);
4881 udelay(80);
4882 }
4883
4884 tw32_f(MAC_MODE, tp->mac_mode);
4885 udelay(40);
4886
Matt Carlson52b02d02010-10-14 10:37:41 +00004887 tg3_phy_eee_adjust(tp, current_link_up);
4888
Joe Perches63c3a662011-04-26 08:12:10 +00004889 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 /* Polled via timer. */
4891 tw32_f(MAC_EVENT, 0);
4892 } else {
4893 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4894 }
4895 udelay(40);
4896
Joe Perches41535772013-02-16 11:20:04 +00004897 if (tg3_asic_rev(tp) == ASIC_REV_5700 &&
Joe Perches953c96e2013-04-09 10:18:14 +00004898 current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004900 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 udelay(120);
4902 tw32_f(MAC_STATUS,
4903 (MAC_STATUS_SYNC_CHANGED |
4904 MAC_STATUS_CFG_CHANGED));
4905 udelay(40);
4906 tg3_write_mem(tp,
4907 NIC_SRAM_FIRMWARE_MBOX,
4908 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4909 }
4910
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004911 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004912 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004913 if (tp->link_config.active_speed == SPEED_100 ||
4914 tp->link_config.active_speed == SPEED_10)
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004915 pcie_capability_clear_word(tp->pdev, PCI_EXP_LNKCTL,
4916 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004917 else
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004918 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
4919 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004920 }
4921
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004922 tg3_test_and_report_link_chg(tp, current_link_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923
4924 return 0;
4925}
4926
4927struct tg3_fiber_aneginfo {
4928 int state;
4929#define ANEG_STATE_UNKNOWN 0
4930#define ANEG_STATE_AN_ENABLE 1
4931#define ANEG_STATE_RESTART_INIT 2
4932#define ANEG_STATE_RESTART 3
4933#define ANEG_STATE_DISABLE_LINK_OK 4
4934#define ANEG_STATE_ABILITY_DETECT_INIT 5
4935#define ANEG_STATE_ABILITY_DETECT 6
4936#define ANEG_STATE_ACK_DETECT_INIT 7
4937#define ANEG_STATE_ACK_DETECT 8
4938#define ANEG_STATE_COMPLETE_ACK_INIT 9
4939#define ANEG_STATE_COMPLETE_ACK 10
4940#define ANEG_STATE_IDLE_DETECT_INIT 11
4941#define ANEG_STATE_IDLE_DETECT 12
4942#define ANEG_STATE_LINK_OK 13
4943#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4944#define ANEG_STATE_NEXT_PAGE_WAIT 15
4945
4946 u32 flags;
4947#define MR_AN_ENABLE 0x00000001
4948#define MR_RESTART_AN 0x00000002
4949#define MR_AN_COMPLETE 0x00000004
4950#define MR_PAGE_RX 0x00000008
4951#define MR_NP_LOADED 0x00000010
4952#define MR_TOGGLE_TX 0x00000020
4953#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4954#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4955#define MR_LP_ADV_SYM_PAUSE 0x00000100
4956#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4957#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4958#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4959#define MR_LP_ADV_NEXT_PAGE 0x00001000
4960#define MR_TOGGLE_RX 0x00002000
4961#define MR_NP_RX 0x00004000
4962
4963#define MR_LINK_OK 0x80000000
4964
4965 unsigned long link_time, cur_time;
4966
4967 u32 ability_match_cfg;
4968 int ability_match_count;
4969
4970 char ability_match, idle_match, ack_match;
4971
4972 u32 txconfig, rxconfig;
4973#define ANEG_CFG_NP 0x00000080
4974#define ANEG_CFG_ACK 0x00000040
4975#define ANEG_CFG_RF2 0x00000020
4976#define ANEG_CFG_RF1 0x00000010
4977#define ANEG_CFG_PS2 0x00000001
4978#define ANEG_CFG_PS1 0x00008000
4979#define ANEG_CFG_HD 0x00004000
4980#define ANEG_CFG_FD 0x00002000
4981#define ANEG_CFG_INVAL 0x00001f06
4982
4983};
4984#define ANEG_OK 0
4985#define ANEG_DONE 1
4986#define ANEG_TIMER_ENAB 2
4987#define ANEG_FAILED -1
4988
4989#define ANEG_STATE_SETTLE_TIME 10000
4990
4991static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4992 struct tg3_fiber_aneginfo *ap)
4993{
Matt Carlson5be73b42007-12-20 20:09:29 -08004994 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 unsigned long delta;
4996 u32 rx_cfg_reg;
4997 int ret;
4998
4999 if (ap->state == ANEG_STATE_UNKNOWN) {
5000 ap->rxconfig = 0;
5001 ap->link_time = 0;
5002 ap->cur_time = 0;
5003 ap->ability_match_cfg = 0;
5004 ap->ability_match_count = 0;
5005 ap->ability_match = 0;
5006 ap->idle_match = 0;
5007 ap->ack_match = 0;
5008 }
5009 ap->cur_time++;
5010
5011 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
5012 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
5013
5014 if (rx_cfg_reg != ap->ability_match_cfg) {
5015 ap->ability_match_cfg = rx_cfg_reg;
5016 ap->ability_match = 0;
5017 ap->ability_match_count = 0;
5018 } else {
5019 if (++ap->ability_match_count > 1) {
5020 ap->ability_match = 1;
5021 ap->ability_match_cfg = rx_cfg_reg;
5022 }
5023 }
5024 if (rx_cfg_reg & ANEG_CFG_ACK)
5025 ap->ack_match = 1;
5026 else
5027 ap->ack_match = 0;
5028
5029 ap->idle_match = 0;
5030 } else {
5031 ap->idle_match = 1;
5032 ap->ability_match_cfg = 0;
5033 ap->ability_match_count = 0;
5034 ap->ability_match = 0;
5035 ap->ack_match = 0;
5036
5037 rx_cfg_reg = 0;
5038 }
5039
5040 ap->rxconfig = rx_cfg_reg;
5041 ret = ANEG_OK;
5042
Matt Carlson33f401a2010-04-05 10:19:27 +00005043 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 case ANEG_STATE_UNKNOWN:
5045 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
5046 ap->state = ANEG_STATE_AN_ENABLE;
5047
5048 /* fallthru */
5049 case ANEG_STATE_AN_ENABLE:
5050 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
5051 if (ap->flags & MR_AN_ENABLE) {
5052 ap->link_time = 0;
5053 ap->cur_time = 0;
5054 ap->ability_match_cfg = 0;
5055 ap->ability_match_count = 0;
5056 ap->ability_match = 0;
5057 ap->idle_match = 0;
5058 ap->ack_match = 0;
5059
5060 ap->state = ANEG_STATE_RESTART_INIT;
5061 } else {
5062 ap->state = ANEG_STATE_DISABLE_LINK_OK;
5063 }
5064 break;
5065
5066 case ANEG_STATE_RESTART_INIT:
5067 ap->link_time = ap->cur_time;
5068 ap->flags &= ~(MR_NP_LOADED);
5069 ap->txconfig = 0;
5070 tw32(MAC_TX_AUTO_NEG, 0);
5071 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5072 tw32_f(MAC_MODE, tp->mac_mode);
5073 udelay(40);
5074
5075 ret = ANEG_TIMER_ENAB;
5076 ap->state = ANEG_STATE_RESTART;
5077
5078 /* fallthru */
5079 case ANEG_STATE_RESTART:
5080 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00005081 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00005083 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 break;
5086
5087 case ANEG_STATE_DISABLE_LINK_OK:
5088 ret = ANEG_DONE;
5089 break;
5090
5091 case ANEG_STATE_ABILITY_DETECT_INIT:
5092 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08005093 ap->txconfig = ANEG_CFG_FD;
5094 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5095 if (flowctrl & ADVERTISE_1000XPAUSE)
5096 ap->txconfig |= ANEG_CFG_PS1;
5097 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5098 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5100 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5101 tw32_f(MAC_MODE, tp->mac_mode);
5102 udelay(40);
5103
5104 ap->state = ANEG_STATE_ABILITY_DETECT;
5105 break;
5106
5107 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00005108 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 break;
5111
5112 case ANEG_STATE_ACK_DETECT_INIT:
5113 ap->txconfig |= ANEG_CFG_ACK;
5114 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5115 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5116 tw32_f(MAC_MODE, tp->mac_mode);
5117 udelay(40);
5118
5119 ap->state = ANEG_STATE_ACK_DETECT;
5120
5121 /* fallthru */
5122 case ANEG_STATE_ACK_DETECT:
5123 if (ap->ack_match != 0) {
5124 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
5125 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
5126 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
5127 } else {
5128 ap->state = ANEG_STATE_AN_ENABLE;
5129 }
5130 } else if (ap->ability_match != 0 &&
5131 ap->rxconfig == 0) {
5132 ap->state = ANEG_STATE_AN_ENABLE;
5133 }
5134 break;
5135
5136 case ANEG_STATE_COMPLETE_ACK_INIT:
5137 if (ap->rxconfig & ANEG_CFG_INVAL) {
5138 ret = ANEG_FAILED;
5139 break;
5140 }
5141 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
5142 MR_LP_ADV_HALF_DUPLEX |
5143 MR_LP_ADV_SYM_PAUSE |
5144 MR_LP_ADV_ASYM_PAUSE |
5145 MR_LP_ADV_REMOTE_FAULT1 |
5146 MR_LP_ADV_REMOTE_FAULT2 |
5147 MR_LP_ADV_NEXT_PAGE |
5148 MR_TOGGLE_RX |
5149 MR_NP_RX);
5150 if (ap->rxconfig & ANEG_CFG_FD)
5151 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
5152 if (ap->rxconfig & ANEG_CFG_HD)
5153 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
5154 if (ap->rxconfig & ANEG_CFG_PS1)
5155 ap->flags |= MR_LP_ADV_SYM_PAUSE;
5156 if (ap->rxconfig & ANEG_CFG_PS2)
5157 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
5158 if (ap->rxconfig & ANEG_CFG_RF1)
5159 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
5160 if (ap->rxconfig & ANEG_CFG_RF2)
5161 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
5162 if (ap->rxconfig & ANEG_CFG_NP)
5163 ap->flags |= MR_LP_ADV_NEXT_PAGE;
5164
5165 ap->link_time = ap->cur_time;
5166
5167 ap->flags ^= (MR_TOGGLE_TX);
5168 if (ap->rxconfig & 0x0008)
5169 ap->flags |= MR_TOGGLE_RX;
5170 if (ap->rxconfig & ANEG_CFG_NP)
5171 ap->flags |= MR_NP_RX;
5172 ap->flags |= MR_PAGE_RX;
5173
5174 ap->state = ANEG_STATE_COMPLETE_ACK;
5175 ret = ANEG_TIMER_ENAB;
5176 break;
5177
5178 case ANEG_STATE_COMPLETE_ACK:
5179 if (ap->ability_match != 0 &&
5180 ap->rxconfig == 0) {
5181 ap->state = ANEG_STATE_AN_ENABLE;
5182 break;
5183 }
5184 delta = ap->cur_time - ap->link_time;
5185 if (delta > ANEG_STATE_SETTLE_TIME) {
5186 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
5187 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5188 } else {
5189 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
5190 !(ap->flags & MR_NP_RX)) {
5191 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5192 } else {
5193 ret = ANEG_FAILED;
5194 }
5195 }
5196 }
5197 break;
5198
5199 case ANEG_STATE_IDLE_DETECT_INIT:
5200 ap->link_time = ap->cur_time;
5201 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5202 tw32_f(MAC_MODE, tp->mac_mode);
5203 udelay(40);
5204
5205 ap->state = ANEG_STATE_IDLE_DETECT;
5206 ret = ANEG_TIMER_ENAB;
5207 break;
5208
5209 case ANEG_STATE_IDLE_DETECT:
5210 if (ap->ability_match != 0 &&
5211 ap->rxconfig == 0) {
5212 ap->state = ANEG_STATE_AN_ENABLE;
5213 break;
5214 }
5215 delta = ap->cur_time - ap->link_time;
5216 if (delta > ANEG_STATE_SETTLE_TIME) {
5217 /* XXX another gem from the Broadcom driver :( */
5218 ap->state = ANEG_STATE_LINK_OK;
5219 }
5220 break;
5221
5222 case ANEG_STATE_LINK_OK:
5223 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
5224 ret = ANEG_DONE;
5225 break;
5226
5227 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
5228 /* ??? unimplemented */
5229 break;
5230
5231 case ANEG_STATE_NEXT_PAGE_WAIT:
5232 /* ??? unimplemented */
5233 break;
5234
5235 default:
5236 ret = ANEG_FAILED;
5237 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239
5240 return ret;
5241}
5242
Matt Carlson5be73b42007-12-20 20:09:29 -08005243static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244{
5245 int res = 0;
5246 struct tg3_fiber_aneginfo aninfo;
5247 int status = ANEG_FAILED;
5248 unsigned int tick;
5249 u32 tmp;
5250
5251 tw32_f(MAC_TX_AUTO_NEG, 0);
5252
5253 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
5254 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
5255 udelay(40);
5256
5257 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
5258 udelay(40);
5259
5260 memset(&aninfo, 0, sizeof(aninfo));
5261 aninfo.flags |= MR_AN_ENABLE;
5262 aninfo.state = ANEG_STATE_UNKNOWN;
5263 aninfo.cur_time = 0;
5264 tick = 0;
5265 while (++tick < 195000) {
5266 status = tg3_fiber_aneg_smachine(tp, &aninfo);
5267 if (status == ANEG_DONE || status == ANEG_FAILED)
5268 break;
5269
5270 udelay(1);
5271 }
5272
5273 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5274 tw32_f(MAC_MODE, tp->mac_mode);
5275 udelay(40);
5276
Matt Carlson5be73b42007-12-20 20:09:29 -08005277 *txflags = aninfo.txconfig;
5278 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279
5280 if (status == ANEG_DONE &&
5281 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
5282 MR_LP_ADV_FULL_DUPLEX)))
5283 res = 1;
5284
5285 return res;
5286}
5287
5288static void tg3_init_bcm8002(struct tg3 *tp)
5289{
5290 u32 mac_status = tr32(MAC_STATUS);
5291 int i;
5292
5293 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00005294 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 !(mac_status & MAC_STATUS_PCS_SYNCED))
5296 return;
5297
5298 /* Set PLL lock range. */
5299 tg3_writephy(tp, 0x16, 0x8007);
5300
5301 /* SW reset */
5302 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
5303
5304 /* Wait for reset to complete. */
5305 /* XXX schedule_timeout() ... */
5306 for (i = 0; i < 500; i++)
5307 udelay(10);
5308
5309 /* Config mode; select PMA/Ch 1 regs. */
5310 tg3_writephy(tp, 0x10, 0x8411);
5311
5312 /* Enable auto-lock and comdet, select txclk for tx. */
5313 tg3_writephy(tp, 0x11, 0x0a10);
5314
5315 tg3_writephy(tp, 0x18, 0x00a0);
5316 tg3_writephy(tp, 0x16, 0x41ff);
5317
5318 /* Assert and deassert POR. */
5319 tg3_writephy(tp, 0x13, 0x0400);
5320 udelay(40);
5321 tg3_writephy(tp, 0x13, 0x0000);
5322
5323 tg3_writephy(tp, 0x11, 0x0a50);
5324 udelay(40);
5325 tg3_writephy(tp, 0x11, 0x0a10);
5326
5327 /* Wait for signal to stabilize */
5328 /* XXX schedule_timeout() ... */
5329 for (i = 0; i < 15000; i++)
5330 udelay(10);
5331
5332 /* Deselect the channel register so we can read the PHYID
5333 * later.
5334 */
5335 tg3_writephy(tp, 0x10, 0x8011);
5336}
5337
Joe Perches953c96e2013-04-09 10:18:14 +00005338static bool tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339{
Matt Carlson82cd3d12007-12-20 20:09:00 -08005340 u16 flowctrl;
Joe Perches953c96e2013-04-09 10:18:14 +00005341 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 u32 sg_dig_ctrl, sg_dig_status;
5343 u32 serdes_cfg, expected_sg_dig_ctrl;
5344 int workaround, port_a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345
5346 serdes_cfg = 0;
5347 expected_sg_dig_ctrl = 0;
5348 workaround = 0;
5349 port_a = 1;
Joe Perches953c96e2013-04-09 10:18:14 +00005350 current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
Joe Perches41535772013-02-16 11:20:04 +00005352 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A0 &&
5353 tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 workaround = 1;
5355 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
5356 port_a = 0;
5357
5358 /* preserve bits 0-11,13,14 for signal pre-emphasis */
5359 /* preserve bits 20-23 for voltage regulator */
5360 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
5361 }
5362
5363 sg_dig_ctrl = tr32(SG_DIG_CTRL);
5364
5365 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005366 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 if (workaround) {
5368 u32 val = serdes_cfg;
5369
5370 if (port_a)
5371 val |= 0xc010000;
5372 else
5373 val |= 0x4010000;
5374 tw32_f(MAC_SERDES_CFG, val);
5375 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005376
5377 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378 }
5379 if (mac_status & MAC_STATUS_PCS_SYNCED) {
5380 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005381 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 }
5383 goto out;
5384 }
5385
5386 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005387 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
Matt Carlson82cd3d12007-12-20 20:09:00 -08005389 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5390 if (flowctrl & ADVERTISE_1000XPAUSE)
5391 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
5392 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5393 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
5395 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005396 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07005397 tp->serdes_counter &&
5398 ((mac_status & (MAC_STATUS_PCS_SYNCED |
5399 MAC_STATUS_RCVD_CFG)) ==
5400 MAC_STATUS_PCS_SYNCED)) {
5401 tp->serdes_counter--;
Joe Perches953c96e2013-04-09 10:18:14 +00005402 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005403 goto out;
5404 }
5405restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 if (workaround)
5407 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005408 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 udelay(5);
5410 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
5411
Michael Chan3d3ebe72006-09-27 15:59:15 -07005412 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005413 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
5415 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005416 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 mac_status = tr32(MAC_STATUS);
5418
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005419 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08005421 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Matt Carlson82cd3d12007-12-20 20:09:00 -08005423 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
5424 local_adv |= ADVERTISE_1000XPAUSE;
5425 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
5426 local_adv |= ADVERTISE_1000XPSE_ASYM;
5427
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005428 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005429 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005430 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005431 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Matt Carlson859edb22011-12-08 14:40:16 +00005433 tp->link_config.rmt_adv =
5434 mii_adv_to_ethtool_adv_x(remote_adv);
5435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 tg3_setup_flow_control(tp, local_adv, remote_adv);
Joe Perches953c96e2013-04-09 10:18:14 +00005437 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005438 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005439 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005440 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005441 if (tp->serdes_counter)
5442 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443 else {
5444 if (workaround) {
5445 u32 val = serdes_cfg;
5446
5447 if (port_a)
5448 val |= 0xc010000;
5449 else
5450 val |= 0x4010000;
5451
5452 tw32_f(MAC_SERDES_CFG, val);
5453 }
5454
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005455 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 udelay(40);
5457
5458 /* Link parallel detection - link is up */
5459 /* only if we have PCS_SYNC and not */
5460 /* receiving config code words */
5461 mac_status = tr32(MAC_STATUS);
5462 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
5463 !(mac_status & MAC_STATUS_RCVD_CFG)) {
5464 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005465 current_link_up = true;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005466 tp->phy_flags |=
5467 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005468 tp->serdes_counter =
5469 SERDES_PARALLEL_DET_TIMEOUT;
5470 } else
5471 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 }
5473 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07005474 } else {
5475 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005476 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477 }
5478
5479out:
5480 return current_link_up;
5481}
5482
Joe Perches953c96e2013-04-09 10:18:14 +00005483static bool tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484{
Joe Perches953c96e2013-04-09 10:18:14 +00005485 bool current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005487 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489
5490 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005491 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005493
Matt Carlson5be73b42007-12-20 20:09:29 -08005494 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5495 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
Matt Carlson5be73b42007-12-20 20:09:29 -08005497 if (txflags & ANEG_CFG_PS1)
5498 local_adv |= ADVERTISE_1000XPAUSE;
5499 if (txflags & ANEG_CFG_PS2)
5500 local_adv |= ADVERTISE_1000XPSE_ASYM;
5501
5502 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5503 remote_adv |= LPA_1000XPAUSE;
5504 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5505 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
Matt Carlson859edb22011-12-08 14:40:16 +00005507 tp->link_config.rmt_adv =
5508 mii_adv_to_ethtool_adv_x(remote_adv);
5509
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 tg3_setup_flow_control(tp, local_adv, remote_adv);
5511
Joe Perches953c96e2013-04-09 10:18:14 +00005512 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 }
5514 for (i = 0; i < 30; i++) {
5515 udelay(20);
5516 tw32_f(MAC_STATUS,
5517 (MAC_STATUS_SYNC_CHANGED |
5518 MAC_STATUS_CFG_CHANGED));
5519 udelay(40);
5520 if ((tr32(MAC_STATUS) &
5521 (MAC_STATUS_SYNC_CHANGED |
5522 MAC_STATUS_CFG_CHANGED)) == 0)
5523 break;
5524 }
5525
5526 mac_status = tr32(MAC_STATUS);
Joe Perches953c96e2013-04-09 10:18:14 +00005527 if (!current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5529 !(mac_status & MAC_STATUS_RCVD_CFG))
Joe Perches953c96e2013-04-09 10:18:14 +00005530 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005532 tg3_setup_flow_control(tp, 0, 0);
5533
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534 /* Forcing 1000FD link up. */
Joe Perches953c96e2013-04-09 10:18:14 +00005535 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536
5537 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5538 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005539
5540 tw32_f(MAC_MODE, tp->mac_mode);
5541 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542 }
5543
5544out:
5545 return current_link_up;
5546}
5547
Joe Perches953c96e2013-04-09 10:18:14 +00005548static int tg3_setup_fiber_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549{
5550 u32 orig_pause_cfg;
5551 u16 orig_active_speed;
5552 u8 orig_active_duplex;
5553 u32 mac_status;
Joe Perches953c96e2013-04-09 10:18:14 +00005554 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555 int i;
5556
Matt Carlson8d018622007-12-20 20:05:44 -08005557 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558 orig_active_speed = tp->link_config.active_speed;
5559 orig_active_duplex = tp->link_config.active_duplex;
5560
Joe Perches63c3a662011-04-26 08:12:10 +00005561 if (!tg3_flag(tp, HW_AUTONEG) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005562 tp->link_up &&
Joe Perches63c3a662011-04-26 08:12:10 +00005563 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564 mac_status = tr32(MAC_STATUS);
5565 mac_status &= (MAC_STATUS_PCS_SYNCED |
5566 MAC_STATUS_SIGNAL_DET |
5567 MAC_STATUS_CFG_CHANGED |
5568 MAC_STATUS_RCVD_CFG);
5569 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5570 MAC_STATUS_SIGNAL_DET)) {
5571 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5572 MAC_STATUS_CFG_CHANGED));
5573 return 0;
5574 }
5575 }
5576
5577 tw32_f(MAC_TX_AUTO_NEG, 0);
5578
5579 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5580 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5581 tw32_f(MAC_MODE, tp->mac_mode);
5582 udelay(40);
5583
Matt Carlson79eb6902010-02-17 15:17:03 +00005584 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585 tg3_init_bcm8002(tp);
5586
5587 /* Enable link change event even when serdes polling. */
5588 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5589 udelay(40);
5590
Joe Perches953c96e2013-04-09 10:18:14 +00005591 current_link_up = false;
Matt Carlson859edb22011-12-08 14:40:16 +00005592 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 mac_status = tr32(MAC_STATUS);
5594
Joe Perches63c3a662011-04-26 08:12:10 +00005595 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5597 else
5598 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5599
Matt Carlson898a56f2009-08-28 14:02:40 +00005600 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005602 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
5604 for (i = 0; i < 100; i++) {
5605 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5606 MAC_STATUS_CFG_CHANGED));
5607 udelay(5);
5608 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005609 MAC_STATUS_CFG_CHANGED |
5610 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 break;
5612 }
5613
5614 mac_status = tr32(MAC_STATUS);
5615 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
Joe Perches953c96e2013-04-09 10:18:14 +00005616 current_link_up = false;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005617 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5618 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619 tw32_f(MAC_MODE, (tp->mac_mode |
5620 MAC_MODE_SEND_CONFIGS));
5621 udelay(1);
5622 tw32_f(MAC_MODE, tp->mac_mode);
5623 }
5624 }
5625
Joe Perches953c96e2013-04-09 10:18:14 +00005626 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 tp->link_config.active_speed = SPEED_1000;
5628 tp->link_config.active_duplex = DUPLEX_FULL;
5629 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5630 LED_CTRL_LNKLED_OVERRIDE |
5631 LED_CTRL_1000MBPS_ON));
5632 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005633 tp->link_config.active_speed = SPEED_UNKNOWN;
5634 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5636 LED_CTRL_LNKLED_OVERRIDE |
5637 LED_CTRL_TRAFFIC_OVERRIDE));
5638 }
5639
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005640 if (!tg3_test_and_report_link_chg(tp, current_link_up)) {
Matt Carlson8d018622007-12-20 20:05:44 -08005641 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 if (orig_pause_cfg != now_pause_cfg ||
5643 orig_active_speed != tp->link_config.active_speed ||
5644 orig_active_duplex != tp->link_config.active_duplex)
5645 tg3_link_report(tp);
5646 }
5647
5648 return 0;
5649}
5650
Joe Perches953c96e2013-04-09 10:18:14 +00005651static int tg3_setup_fiber_mii_phy(struct tg3 *tp, bool force_reset)
Michael Chan747e8f82005-07-25 12:33:22 -07005652{
Joe Perches953c96e2013-04-09 10:18:14 +00005653 int err = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005654 u32 bmsr, bmcr;
Michael Chan85730a62013-04-09 08:48:06 +00005655 u16 current_speed = SPEED_UNKNOWN;
5656 u8 current_duplex = DUPLEX_UNKNOWN;
Joe Perches953c96e2013-04-09 10:18:14 +00005657 bool current_link_up = false;
Michael Chan85730a62013-04-09 08:48:06 +00005658 u32 local_adv, remote_adv, sgsr;
5659
5660 if ((tg3_asic_rev(tp) == ASIC_REV_5719 ||
5661 tg3_asic_rev(tp) == ASIC_REV_5720) &&
5662 !tg3_readphy(tp, SERDES_TG3_1000X_STATUS, &sgsr) &&
5663 (sgsr & SERDES_TG3_SGMII_MODE)) {
5664
5665 if (force_reset)
5666 tg3_phy_reset(tp);
5667
5668 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
5669
5670 if (!(sgsr & SERDES_TG3_LINK_UP)) {
5671 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5672 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005673 current_link_up = true;
Michael Chan85730a62013-04-09 08:48:06 +00005674 if (sgsr & SERDES_TG3_SPEED_1000) {
5675 current_speed = SPEED_1000;
5676 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5677 } else if (sgsr & SERDES_TG3_SPEED_100) {
5678 current_speed = SPEED_100;
5679 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5680 } else {
5681 current_speed = SPEED_10;
5682 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5683 }
5684
5685 if (sgsr & SERDES_TG3_FULL_DUPLEX)
5686 current_duplex = DUPLEX_FULL;
5687 else
5688 current_duplex = DUPLEX_HALF;
5689 }
5690
5691 tw32_f(MAC_MODE, tp->mac_mode);
5692 udelay(40);
5693
5694 tg3_clear_mac_status(tp);
5695
5696 goto fiber_setup_done;
5697 }
Michael Chan747e8f82005-07-25 12:33:22 -07005698
5699 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5700 tw32_f(MAC_MODE, tp->mac_mode);
5701 udelay(40);
5702
Michael Chan3310e242013-04-09 08:48:05 +00005703 tg3_clear_mac_status(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005704
5705 if (force_reset)
5706 tg3_phy_reset(tp);
5707
Matt Carlson859edb22011-12-08 14:40:16 +00005708 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005709
5710 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5711 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005712 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005713 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5714 bmsr |= BMSR_LSTATUS;
5715 else
5716 bmsr &= ~BMSR_LSTATUS;
5717 }
Michael Chan747e8f82005-07-25 12:33:22 -07005718
5719 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5720
5721 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005722 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005723 /* do nothing, just check for link up at the end */
5724 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005725 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005726
5727 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005728 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5729 ADVERTISE_1000XPAUSE |
5730 ADVERTISE_1000XPSE_ASYM |
5731 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005732
Matt Carlson28011cf2011-11-16 18:36:59 -05005733 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005734 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005735
Matt Carlson28011cf2011-11-16 18:36:59 -05005736 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5737 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005738 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5739 tg3_writephy(tp, MII_BMCR, bmcr);
5740
5741 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005742 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005743 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005744
5745 return err;
5746 }
5747 } else {
5748 u32 new_bmcr;
5749
5750 bmcr &= ~BMCR_SPEED1000;
5751 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5752
5753 if (tp->link_config.duplex == DUPLEX_FULL)
5754 new_bmcr |= BMCR_FULLDPLX;
5755
5756 if (new_bmcr != bmcr) {
5757 /* BMCR_SPEED1000 is a reserved bit that needs
5758 * to be set on write.
5759 */
5760 new_bmcr |= BMCR_SPEED1000;
5761
5762 /* Force a linkdown */
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005763 if (tp->link_up) {
Michael Chan747e8f82005-07-25 12:33:22 -07005764 u32 adv;
5765
5766 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5767 adv &= ~(ADVERTISE_1000XFULL |
5768 ADVERTISE_1000XHALF |
5769 ADVERTISE_SLCT);
5770 tg3_writephy(tp, MII_ADVERTISE, adv);
5771 tg3_writephy(tp, MII_BMCR, bmcr |
5772 BMCR_ANRESTART |
5773 BMCR_ANENABLE);
5774 udelay(10);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005775 tg3_carrier_off(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005776 }
5777 tg3_writephy(tp, MII_BMCR, new_bmcr);
5778 bmcr = new_bmcr;
5779 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5780 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005781 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005782 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5783 bmsr |= BMSR_LSTATUS;
5784 else
5785 bmsr &= ~BMSR_LSTATUS;
5786 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005787 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005788 }
5789 }
5790
5791 if (bmsr & BMSR_LSTATUS) {
5792 current_speed = SPEED_1000;
Joe Perches953c96e2013-04-09 10:18:14 +00005793 current_link_up = true;
Michael Chan747e8f82005-07-25 12:33:22 -07005794 if (bmcr & BMCR_FULLDPLX)
5795 current_duplex = DUPLEX_FULL;
5796 else
5797 current_duplex = DUPLEX_HALF;
5798
Matt Carlsonef167e22007-12-20 20:10:01 -08005799 local_adv = 0;
5800 remote_adv = 0;
5801
Michael Chan747e8f82005-07-25 12:33:22 -07005802 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005803 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005804
5805 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5806 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5807 common = local_adv & remote_adv;
5808 if (common & (ADVERTISE_1000XHALF |
5809 ADVERTISE_1000XFULL)) {
5810 if (common & ADVERTISE_1000XFULL)
5811 current_duplex = DUPLEX_FULL;
5812 else
5813 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005814
5815 tp->link_config.rmt_adv =
5816 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005817 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005818 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005819 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005820 current_link_up = false;
Matt Carlson859a588792010-04-05 10:19:28 +00005821 }
Michael Chan747e8f82005-07-25 12:33:22 -07005822 }
5823 }
5824
Michael Chan85730a62013-04-09 08:48:06 +00005825fiber_setup_done:
Joe Perches953c96e2013-04-09 10:18:14 +00005826 if (current_link_up && current_duplex == DUPLEX_FULL)
Matt Carlsonef167e22007-12-20 20:10:01 -08005827 tg3_setup_flow_control(tp, local_adv, remote_adv);
5828
Michael Chan747e8f82005-07-25 12:33:22 -07005829 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5830 if (tp->link_config.active_duplex == DUPLEX_HALF)
5831 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5832
5833 tw32_f(MAC_MODE, tp->mac_mode);
5834 udelay(40);
5835
5836 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5837
5838 tp->link_config.active_speed = current_speed;
5839 tp->link_config.active_duplex = current_duplex;
5840
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005841 tg3_test_and_report_link_chg(tp, current_link_up);
Michael Chan747e8f82005-07-25 12:33:22 -07005842 return err;
5843}
5844
5845static void tg3_serdes_parallel_detect(struct tg3 *tp)
5846{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005847 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005848 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005849 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005850 return;
5851 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005852
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005853 if (!tp->link_up &&
Michael Chan747e8f82005-07-25 12:33:22 -07005854 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5855 u32 bmcr;
5856
5857 tg3_readphy(tp, MII_BMCR, &bmcr);
5858 if (bmcr & BMCR_ANENABLE) {
5859 u32 phy1, phy2;
5860
5861 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005862 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5863 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005864
5865 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005866 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5867 MII_TG3_DSP_EXP1_INT_STAT);
5868 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5869 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005870
5871 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5872 /* We have signal detect and not receiving
5873 * config code words, link is up by parallel
5874 * detection.
5875 */
5876
5877 bmcr &= ~BMCR_ANENABLE;
5878 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5879 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005880 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005881 }
5882 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005883 } else if (tp->link_up &&
Matt Carlson859a588792010-04-05 10:19:28 +00005884 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005885 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005886 u32 phy2;
5887
5888 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005889 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5890 MII_TG3_DSP_EXP1_INT_STAT);
5891 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005892 if (phy2 & 0x20) {
5893 u32 bmcr;
5894
5895 /* Config code words received, turn on autoneg. */
5896 tg3_readphy(tp, MII_BMCR, &bmcr);
5897 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5898
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005899 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005900
5901 }
5902 }
5903}
5904
Joe Perches953c96e2013-04-09 10:18:14 +00005905static int tg3_setup_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005907 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908 int err;
5909
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005910 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005912 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005913 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005914 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916
Joe Perches41535772013-02-16 11:20:04 +00005917 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005918 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005919
5920 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5921 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5922 scale = 65;
5923 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5924 scale = 6;
5925 else
5926 scale = 12;
5927
5928 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5929 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5930 tw32(GRC_MISC_CFG, val);
5931 }
5932
Matt Carlsonf2096f92011-04-05 14:22:48 +00005933 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5934 (6 << TX_LENGTHS_IPG_SHIFT);
Joe Perches41535772013-02-16 11:20:04 +00005935 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
5936 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005937 val |= tr32(MAC_TX_LENGTHS) &
5938 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5939 TX_LENGTHS_CNT_DWN_VAL_MSK);
5940
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941 if (tp->link_config.active_speed == SPEED_1000 &&
5942 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005943 tw32(MAC_TX_LENGTHS, val |
5944 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005946 tw32(MAC_TX_LENGTHS, val |
5947 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948
Joe Perches63c3a662011-04-26 08:12:10 +00005949 if (!tg3_flag(tp, 5705_PLUS)) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005950 if (tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005952 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 } else {
5954 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5955 }
5956 }
5957
Joe Perches63c3a662011-04-26 08:12:10 +00005958 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005959 val = tr32(PCIE_PWR_MGMT_THRESH);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005960 if (!tp->link_up)
Matt Carlson8ed5d972007-05-07 00:25:49 -07005961 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5962 tp->pwrmgmt_thresh;
5963 else
5964 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5965 tw32(PCIE_PWR_MGMT_THRESH, val);
5966 }
5967
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 return err;
5969}
5970
Matt Carlsonbe947302012-12-03 19:36:57 +00005971/* tp->lock must be held */
Matt Carlson7d41e492012-12-03 19:36:58 +00005972static u64 tg3_refclk_read(struct tg3 *tp)
5973{
5974 u64 stamp = tr32(TG3_EAV_REF_CLCK_LSB);
5975 return stamp | (u64)tr32(TG3_EAV_REF_CLCK_MSB) << 32;
5976}
5977
5978/* tp->lock must be held */
Matt Carlsonbe947302012-12-03 19:36:57 +00005979static void tg3_refclk_write(struct tg3 *tp, u64 newval)
5980{
5981 tw32(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_STOP);
5982 tw32(TG3_EAV_REF_CLCK_LSB, newval & 0xffffffff);
5983 tw32(TG3_EAV_REF_CLCK_MSB, newval >> 32);
5984 tw32_f(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_RESUME);
5985}
5986
Matt Carlson7d41e492012-12-03 19:36:58 +00005987static inline void tg3_full_lock(struct tg3 *tp, int irq_sync);
5988static inline void tg3_full_unlock(struct tg3 *tp);
5989static int tg3_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
5990{
5991 struct tg3 *tp = netdev_priv(dev);
5992
5993 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
5994 SOF_TIMESTAMPING_RX_SOFTWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00005995 SOF_TIMESTAMPING_SOFTWARE;
5996
5997 if (tg3_flag(tp, PTP_CAPABLE)) {
Flavio Leitner32e19272013-04-30 07:20:34 +00005998 info->so_timestamping |= SOF_TIMESTAMPING_TX_HARDWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00005999 SOF_TIMESTAMPING_RX_HARDWARE |
6000 SOF_TIMESTAMPING_RAW_HARDWARE;
6001 }
Matt Carlson7d41e492012-12-03 19:36:58 +00006002
6003 if (tp->ptp_clock)
6004 info->phc_index = ptp_clock_index(tp->ptp_clock);
6005 else
6006 info->phc_index = -1;
6007
6008 info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
6009
6010 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
6011 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
6012 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
6013 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
6014 return 0;
6015}
6016
6017static int tg3_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
6018{
6019 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6020 bool neg_adj = false;
6021 u32 correction = 0;
6022
6023 if (ppb < 0) {
6024 neg_adj = true;
6025 ppb = -ppb;
6026 }
6027
6028 /* Frequency adjustment is performed using hardware with a 24 bit
6029 * accumulator and a programmable correction value. On each clk, the
6030 * correction value gets added to the accumulator and when it
6031 * overflows, the time counter is incremented/decremented.
6032 *
6033 * So conversion from ppb to correction value is
6034 * ppb * (1 << 24) / 1000000000
6035 */
6036 correction = div_u64((u64)ppb * (1 << 24), 1000000000ULL) &
6037 TG3_EAV_REF_CLK_CORRECT_MASK;
6038
6039 tg3_full_lock(tp, 0);
6040
6041 if (correction)
6042 tw32(TG3_EAV_REF_CLK_CORRECT_CTL,
6043 TG3_EAV_REF_CLK_CORRECT_EN |
6044 (neg_adj ? TG3_EAV_REF_CLK_CORRECT_NEG : 0) | correction);
6045 else
6046 tw32(TG3_EAV_REF_CLK_CORRECT_CTL, 0);
6047
6048 tg3_full_unlock(tp);
6049
6050 return 0;
6051}
6052
6053static int tg3_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
6054{
6055 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6056
6057 tg3_full_lock(tp, 0);
6058 tp->ptp_adjust += delta;
6059 tg3_full_unlock(tp);
6060
6061 return 0;
6062}
6063
6064static int tg3_ptp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
6065{
6066 u64 ns;
6067 u32 remainder;
6068 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6069
6070 tg3_full_lock(tp, 0);
6071 ns = tg3_refclk_read(tp);
6072 ns += tp->ptp_adjust;
6073 tg3_full_unlock(tp);
6074
6075 ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder);
6076 ts->tv_nsec = remainder;
6077
6078 return 0;
6079}
6080
6081static int tg3_ptp_settime(struct ptp_clock_info *ptp,
6082 const struct timespec *ts)
6083{
6084 u64 ns;
6085 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6086
6087 ns = timespec_to_ns(ts);
6088
6089 tg3_full_lock(tp, 0);
6090 tg3_refclk_write(tp, ns);
6091 tp->ptp_adjust = 0;
6092 tg3_full_unlock(tp);
6093
6094 return 0;
6095}
6096
6097static int tg3_ptp_enable(struct ptp_clock_info *ptp,
6098 struct ptp_clock_request *rq, int on)
6099{
6100 return -EOPNOTSUPP;
6101}
6102
6103static const struct ptp_clock_info tg3_ptp_caps = {
6104 .owner = THIS_MODULE,
6105 .name = "tg3 clock",
6106 .max_adj = 250000000,
6107 .n_alarm = 0,
6108 .n_ext_ts = 0,
6109 .n_per_out = 0,
6110 .pps = 0,
6111 .adjfreq = tg3_ptp_adjfreq,
6112 .adjtime = tg3_ptp_adjtime,
6113 .gettime = tg3_ptp_gettime,
6114 .settime = tg3_ptp_settime,
6115 .enable = tg3_ptp_enable,
6116};
6117
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006118static void tg3_hwclock_to_timestamp(struct tg3 *tp, u64 hwclock,
6119 struct skb_shared_hwtstamps *timestamp)
6120{
6121 memset(timestamp, 0, sizeof(struct skb_shared_hwtstamps));
6122 timestamp->hwtstamp = ns_to_ktime((hwclock & TG3_TSTAMP_MASK) +
6123 tp->ptp_adjust);
6124}
6125
Matt Carlsonbe947302012-12-03 19:36:57 +00006126/* tp->lock must be held */
6127static void tg3_ptp_init(struct tg3 *tp)
6128{
6129 if (!tg3_flag(tp, PTP_CAPABLE))
6130 return;
6131
6132 /* Initialize the hardware clock to the system time. */
6133 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()));
6134 tp->ptp_adjust = 0;
Matt Carlson7d41e492012-12-03 19:36:58 +00006135 tp->ptp_info = tg3_ptp_caps;
Matt Carlsonbe947302012-12-03 19:36:57 +00006136}
6137
6138/* tp->lock must be held */
6139static void tg3_ptp_resume(struct tg3 *tp)
6140{
6141 if (!tg3_flag(tp, PTP_CAPABLE))
6142 return;
6143
6144 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()) + tp->ptp_adjust);
6145 tp->ptp_adjust = 0;
6146}
6147
6148static void tg3_ptp_fini(struct tg3 *tp)
6149{
6150 if (!tg3_flag(tp, PTP_CAPABLE) || !tp->ptp_clock)
6151 return;
6152
Matt Carlson7d41e492012-12-03 19:36:58 +00006153 ptp_clock_unregister(tp->ptp_clock);
Matt Carlsonbe947302012-12-03 19:36:57 +00006154 tp->ptp_clock = NULL;
6155 tp->ptp_adjust = 0;
6156}
6157
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006158static inline int tg3_irq_sync(struct tg3 *tp)
6159{
6160 return tp->irq_sync;
6161}
6162
Matt Carlson97bd8e42011-04-13 11:05:04 +00006163static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
6164{
6165 int i;
6166
6167 dst = (u32 *)((u8 *)dst + off);
6168 for (i = 0; i < len; i += sizeof(u32))
6169 *dst++ = tr32(off + i);
6170}
6171
6172static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
6173{
6174 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
6175 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
6176 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
6177 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
6178 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
6179 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
6180 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
6181 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
6182 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
6183 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
6184 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
6185 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
6186 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
6187 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
6188 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
6189 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
6190 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
6191 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
6192 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
6193
Joe Perches63c3a662011-04-26 08:12:10 +00006194 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006195 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
6196
6197 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
6198 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
6199 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
6200 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
6201 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
6202 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
6203 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
6204 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
6205
Joe Perches63c3a662011-04-26 08:12:10 +00006206 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006207 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
6208 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
6209 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
6210 }
6211
6212 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
6213 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
6214 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
6215 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
6216 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
6217
Joe Perches63c3a662011-04-26 08:12:10 +00006218 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006219 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
6220}
6221
6222static void tg3_dump_state(struct tg3 *tp)
6223{
6224 int i;
6225 u32 *regs;
6226
6227 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
Joe Perchesb2adaca2013-02-03 17:43:58 +00006228 if (!regs)
Matt Carlson97bd8e42011-04-13 11:05:04 +00006229 return;
Matt Carlson97bd8e42011-04-13 11:05:04 +00006230
Joe Perches63c3a662011-04-26 08:12:10 +00006231 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006232 /* Read up to but not including private PCI registers */
6233 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
6234 regs[i / sizeof(u32)] = tr32(i);
6235 } else
6236 tg3_dump_legacy_regs(tp, regs);
6237
6238 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
6239 if (!regs[i + 0] && !regs[i + 1] &&
6240 !regs[i + 2] && !regs[i + 3])
6241 continue;
6242
6243 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
6244 i * 4,
6245 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
6246 }
6247
6248 kfree(regs);
6249
6250 for (i = 0; i < tp->irq_cnt; i++) {
6251 struct tg3_napi *tnapi = &tp->napi[i];
6252
6253 /* SW status block */
6254 netdev_err(tp->dev,
6255 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
6256 i,
6257 tnapi->hw_status->status,
6258 tnapi->hw_status->status_tag,
6259 tnapi->hw_status->rx_jumbo_consumer,
6260 tnapi->hw_status->rx_consumer,
6261 tnapi->hw_status->rx_mini_consumer,
6262 tnapi->hw_status->idx[0].rx_producer,
6263 tnapi->hw_status->idx[0].tx_consumer);
6264
6265 netdev_err(tp->dev,
6266 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
6267 i,
6268 tnapi->last_tag, tnapi->last_irq_tag,
6269 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
6270 tnapi->rx_rcb_ptr,
6271 tnapi->prodring.rx_std_prod_idx,
6272 tnapi->prodring.rx_std_cons_idx,
6273 tnapi->prodring.rx_jmb_prod_idx,
6274 tnapi->prodring.rx_jmb_cons_idx);
6275 }
6276}
6277
Michael Chandf3e6542006-05-26 17:48:07 -07006278/* This is called whenever we suspect that the system chipset is re-
6279 * ordering the sequence of MMIO to the tx send mailbox. The symptom
6280 * is bogus tx completions. We try to recover by setting the
6281 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
6282 * in the workqueue.
6283 */
6284static void tg3_tx_recover(struct tg3 *tp)
6285{
Joe Perches63c3a662011-04-26 08:12:10 +00006286 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07006287 tp->write32_tx_mbox == tg3_write_indirect_mbox);
6288
Matt Carlson5129c3a2010-04-05 10:19:23 +00006289 netdev_warn(tp->dev,
6290 "The system may be re-ordering memory-mapped I/O "
6291 "cycles to the network device, attempting to recover. "
6292 "Please report the problem to the driver maintainer "
6293 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07006294
6295 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006296 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006297 spin_unlock(&tp->lock);
6298}
6299
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006300static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07006301{
Matt Carlsonf65aac12010-08-02 11:26:03 +00006302 /* Tell compiler to fetch tx indices from memory. */
6303 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006304 return tnapi->tx_pending -
6305 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07006306}
6307
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308/* Tigon3 never reports partial packet sends. So we do not
6309 * need special logic to handle SKBs that have not had all
6310 * of their frags sent yet, like SunGEM does.
6311 */
Matt Carlson17375d22009-08-28 14:02:18 +00006312static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313{
Matt Carlson17375d22009-08-28 14:02:18 +00006314 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006315 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006316 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006317 struct netdev_queue *txq;
6318 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00006319 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006320
Joe Perches63c3a662011-04-26 08:12:10 +00006321 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006322 index--;
6323
6324 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325
6326 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00006327 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07006329 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330
Michael Chandf3e6542006-05-26 17:48:07 -07006331 if (unlikely(skb == NULL)) {
6332 tg3_tx_recover(tp);
6333 return;
6334 }
6335
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006336 if (tnapi->tx_ring[sw_idx].len_flags & TXD_FLAG_HWTSTAMP) {
6337 struct skb_shared_hwtstamps timestamp;
6338 u64 hwclock = tr32(TG3_TX_TSTAMP_LSB);
6339 hwclock |= (u64)tr32(TG3_TX_TSTAMP_MSB) << 32;
6340
6341 tg3_hwclock_to_timestamp(tp, hwclock, &timestamp);
6342
6343 skb_tstamp_tx(skb, &timestamp);
6344 }
6345
Alexander Duyckf4188d82009-12-02 16:48:38 +00006346 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006347 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006348 skb_headlen(skb),
6349 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
6351 ri->skb = NULL;
6352
Matt Carlsone01ee142011-07-27 14:20:50 +00006353 while (ri->fragmented) {
6354 ri->fragmented = false;
6355 sw_idx = NEXT_TX(sw_idx);
6356 ri = &tnapi->tx_buffers[sw_idx];
6357 }
6358
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359 sw_idx = NEXT_TX(sw_idx);
6360
6361 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006362 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07006363 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
6364 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006365
6366 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006367 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006368 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006369 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006370
6371 while (ri->fragmented) {
6372 ri->fragmented = false;
6373 sw_idx = NEXT_TX(sw_idx);
6374 ri = &tnapi->tx_buffers[sw_idx];
6375 }
6376
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377 sw_idx = NEXT_TX(sw_idx);
6378 }
6379
Tom Herbert298376d2011-11-28 16:33:30 +00006380 pkts_compl++;
6381 bytes_compl += skb->len;
6382
David S. Millerf47c11e2005-06-24 20:18:35 -07006383 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07006384
6385 if (unlikely(tx_bug)) {
6386 tg3_tx_recover(tp);
6387 return;
6388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389 }
6390
Tom Herbert5cb917b2012-03-05 19:53:50 +00006391 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00006392
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006393 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394
Michael Chan1b2a7202006-08-07 21:46:02 -07006395 /* Need to make the tx_cons update visible to tg3_start_xmit()
6396 * before checking for netif_queue_stopped(). Without the
6397 * memory barrier, there is a small possibility that tg3_start_xmit()
6398 * will miss it and cause the queue to be stopped forever.
6399 */
6400 smp_mb();
6401
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006402 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006403 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006404 __netif_tx_lock(txq, smp_processor_id());
6405 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006406 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006407 netif_tx_wake_queue(txq);
6408 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410}
6411
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006412static void tg3_frag_free(bool is_frag, void *data)
6413{
6414 if (is_frag)
6415 put_page(virt_to_head_page(data));
6416 else
6417 kfree(data);
6418}
6419
Eric Dumazet9205fd92011-11-18 06:47:01 +00006420static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006421{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006422 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
6423 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
6424
Eric Dumazet9205fd92011-11-18 06:47:01 +00006425 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006426 return;
6427
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006428 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006429 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006430 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006431 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006432}
6433
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006434
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435/* Returns size of skb allocated or < 0 on error.
6436 *
6437 * We only need to fill in the address because the other members
6438 * of the RX descriptor are invariant, see tg3_init_rings.
6439 *
6440 * Note the purposeful assymetry of cpu vs. chip accesses. For
6441 * posting buffers we only dirty the first cache line of the RX
6442 * descriptor (containing the address). Whereas for the RX status
6443 * buffers the cpu only reads the last cacheline of the RX descriptor
6444 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
6445 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006446static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006447 u32 opaque_key, u32 dest_idx_unmasked,
6448 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449{
6450 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00006451 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006452 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006454 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 switch (opaque_key) {
6457 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006458 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00006459 desc = &tpr->rx_std[dest_idx];
6460 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006461 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462 break;
6463
6464 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006465 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00006466 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00006467 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006468 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 break;
6470
6471 default:
6472 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474
6475 /* Do not overwrite any of the map or rp information
6476 * until we are sure we can commit to a new buffer.
6477 *
6478 * Callers depend upon this behavior and assume that
6479 * we leave everything unchanged if we fail.
6480 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006481 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
6482 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006483 if (skb_size <= PAGE_SIZE) {
6484 data = netdev_alloc_frag(skb_size);
6485 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006486 } else {
6487 data = kmalloc(skb_size, GFP_ATOMIC);
6488 *frag_size = 0;
6489 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00006490 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491 return -ENOMEM;
6492
Eric Dumazet9205fd92011-11-18 06:47:01 +00006493 mapping = pci_map_single(tp->pdev,
6494 data + TG3_RX_OFFSET(tp),
6495 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006497 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006498 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00006499 return -EIO;
6500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501
Eric Dumazet9205fd92011-11-18 06:47:01 +00006502 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006503 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505 desc->addr_hi = ((u64)mapping >> 32);
6506 desc->addr_lo = ((u64)mapping & 0xffffffff);
6507
Eric Dumazet9205fd92011-11-18 06:47:01 +00006508 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509}
6510
6511/* We only need to move over in the address because the other
6512 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00006513 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514 */
Matt Carlsona3896162009-11-13 13:03:44 +00006515static void tg3_recycle_rx(struct tg3_napi *tnapi,
6516 struct tg3_rx_prodring_set *dpr,
6517 u32 opaque_key, int src_idx,
6518 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519{
Matt Carlson17375d22009-08-28 14:02:18 +00006520 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
6522 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006523 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006524 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525
6526 switch (opaque_key) {
6527 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006528 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006529 dest_desc = &dpr->rx_std[dest_idx];
6530 dest_map = &dpr->rx_std_buffers[dest_idx];
6531 src_desc = &spr->rx_std[src_idx];
6532 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533 break;
6534
6535 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006536 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006537 dest_desc = &dpr->rx_jmb[dest_idx].std;
6538 dest_map = &dpr->rx_jmb_buffers[dest_idx];
6539 src_desc = &spr->rx_jmb[src_idx].std;
6540 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 break;
6542
6543 default:
6544 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546
Eric Dumazet9205fd92011-11-18 06:47:01 +00006547 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006548 dma_unmap_addr_set(dest_map, mapping,
6549 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550 dest_desc->addr_hi = src_desc->addr_hi;
6551 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00006552
6553 /* Ensure that the update to the skb happens after the physical
6554 * addresses have been transferred to the new BD location.
6555 */
6556 smp_wmb();
6557
Eric Dumazet9205fd92011-11-18 06:47:01 +00006558 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559}
6560
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561/* The RX ring scheme is composed of multiple rings which post fresh
6562 * buffers to the chip, and one special ring the chip uses to report
6563 * status back to the host.
6564 *
6565 * The special ring reports the status of received packets to the
6566 * host. The chip does not write into the original descriptor the
6567 * RX buffer was obtained from. The chip simply takes the original
6568 * descriptor as provided by the host, updates the status and length
6569 * field, then writes this into the next status ring entry.
6570 *
6571 * Each ring the host uses to post buffers to the chip is described
6572 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
6573 * it is first placed into the on-chip ram. When the packet's length
6574 * is known, it walks down the TG3_BDINFO entries to select the ring.
6575 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
6576 * which is within the range of the new packet's length is chosen.
6577 *
6578 * The "separate ring for rx status" scheme may sound queer, but it makes
6579 * sense from a cache coherency perspective. If only the host writes
6580 * to the buffer post rings, and only the chip writes to the rx status
6581 * rings, then cache lines never move beyond shared-modified state.
6582 * If both the host and chip were to write into the same ring, cache line
6583 * eviction could occur since both entities want it in an exclusive state.
6584 */
Matt Carlson17375d22009-08-28 14:02:18 +00006585static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586{
Matt Carlson17375d22009-08-28 14:02:18 +00006587 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07006588 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006589 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00006590 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07006591 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006593 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006595 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596 /*
6597 * We need to order the read of hw_idx and the read of
6598 * the opaque cookie.
6599 */
6600 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601 work_mask = 0;
6602 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006603 std_prod_idx = tpr->rx_std_prod_idx;
6604 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00006606 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00006607 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608 unsigned int len;
6609 struct sk_buff *skb;
6610 dma_addr_t dma_addr;
6611 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006612 u8 *data;
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006613 u64 tstamp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614
6615 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
6616 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
6617 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006618 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006619 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006620 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006621 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07006622 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006624 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006625 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006626 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006627 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00006628 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630
6631 work_mask |= opaque_key;
6632
6633 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
6634 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
6635 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00006636 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637 desc_idx, *post_ptr);
6638 drop_it_no_recycle:
6639 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00006640 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641 goto next_pkt;
6642 }
6643
Eric Dumazet9205fd92011-11-18 06:47:01 +00006644 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08006645 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
6646 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006648 if ((desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6649 RXD_FLAG_PTPSTAT_PTPV1 ||
6650 (desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6651 RXD_FLAG_PTPSTAT_PTPV2) {
6652 tstamp = tr32(TG3_RX_TSTAMP_LSB);
6653 tstamp |= (u64)tr32(TG3_RX_TSTAMP_MSB) << 32;
6654 }
6655
Matt Carlsond2757fc2010-04-12 06:58:27 +00006656 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006658 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659
Eric Dumazet9205fd92011-11-18 06:47:01 +00006660 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006661 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 if (skb_size < 0)
6663 goto drop_it;
6664
Matt Carlson287be122009-08-28 13:58:46 +00006665 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666 PCI_DMA_FROMDEVICE);
6667
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006668 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006669 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006670 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006671 goto drop_it_no_recycle;
6672 }
6673 skb_reserve(skb, TG3_RX_OFFSET(tp));
6674 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00006675 * after the usage of the old DMA mapping.
6676 */
6677 smp_wmb();
6678
Eric Dumazet9205fd92011-11-18 06:47:01 +00006679 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00006680
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00006682 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683 desc_idx, *post_ptr);
6684
Eric Dumazet9205fd92011-11-18 06:47:01 +00006685 skb = netdev_alloc_skb(tp->dev,
6686 len + TG3_RAW_IP_ALIGN);
6687 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688 goto drop_it_no_recycle;
6689
Eric Dumazet9205fd92011-11-18 06:47:01 +00006690 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006692 memcpy(skb->data,
6693 data + TG3_RX_OFFSET(tp),
6694 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696 }
6697
Eric Dumazet9205fd92011-11-18 06:47:01 +00006698 skb_put(skb, len);
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006699 if (tstamp)
6700 tg3_hwclock_to_timestamp(tp, tstamp,
6701 skb_hwtstamps(skb));
6702
Michał Mirosławdc668912011-04-07 03:35:07 +00006703 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6705 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6706 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6707 skb->ip_summed = CHECKSUM_UNNECESSARY;
6708 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006709 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710
6711 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006712
6713 if (len > (tp->dev->mtu + ETH_HLEN) &&
6714 skb->protocol != htons(ETH_P_8021Q)) {
6715 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006716 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006717 }
6718
Matt Carlson9dc7a112010-04-12 06:58:28 +00006719 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006720 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00006721 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
Matt Carlsonbf933c82011-01-25 15:58:49 +00006722 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006723
Matt Carlsonbf933c82011-01-25 15:58:49 +00006724 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726 received++;
6727 budget--;
6728
6729next_pkt:
6730 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006731
6732 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006733 tpr->rx_std_prod_idx = std_prod_idx &
6734 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006735 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6736 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006737 work_mask &= ~RXD_OPAQUE_RING_STD;
6738 rx_std_posted = 0;
6739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006741 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006742 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006743
6744 /* Refresh hw_idx to see if there is new work */
6745 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006746 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006747 rmb();
6748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749 }
6750
6751 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006752 tnapi->rx_rcb_ptr = sw_idx;
6753 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754
6755 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006756 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006757 /* Sync BD data before updating mailbox */
6758 wmb();
6759
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006760 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006761 tpr->rx_std_prod_idx = std_prod_idx &
6762 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006763 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6764 tpr->rx_std_prod_idx);
6765 }
6766 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006767 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6768 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006769 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6770 tpr->rx_jmb_prod_idx);
6771 }
6772 mmiowb();
6773 } else if (work_mask) {
6774 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6775 * updated before the producer indices can be updated.
6776 */
6777 smp_wmb();
6778
Matt Carlson2c49a442010-09-30 10:34:35 +00006779 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6780 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006781
Michael Chan7ae52892012-03-21 15:38:33 +00006782 if (tnapi != &tp->napi[1]) {
6783 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006784 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787
6788 return received;
6789}
6790
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006791static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00006794 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006795 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
6796
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797 if (sblk->status & SD_STATUS_LINK_CHG) {
6798 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006799 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006800 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006801 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006802 tw32_f(MAC_STATUS,
6803 (MAC_STATUS_SYNC_CHANGED |
6804 MAC_STATUS_CFG_CHANGED |
6805 MAC_STATUS_MI_COMPLETION |
6806 MAC_STATUS_LNKSTATE_CHANGED));
6807 udelay(40);
6808 } else
Joe Perches953c96e2013-04-09 10:18:14 +00006809 tg3_setup_phy(tp, false);
David S. Millerf47c11e2005-06-24 20:18:35 -07006810 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811 }
6812 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006813}
6814
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006815static int tg3_rx_prodring_xfer(struct tg3 *tp,
6816 struct tg3_rx_prodring_set *dpr,
6817 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006818{
6819 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006820 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006821
6822 while (1) {
6823 src_prod_idx = spr->rx_std_prod_idx;
6824
6825 /* Make sure updates to the rx_std_buffers[] entries and the
6826 * standard producer index are seen in the correct order.
6827 */
6828 smp_rmb();
6829
6830 if (spr->rx_std_cons_idx == src_prod_idx)
6831 break;
6832
6833 if (spr->rx_std_cons_idx < src_prod_idx)
6834 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6835 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006836 cpycnt = tp->rx_std_ring_mask + 1 -
6837 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006838
Matt Carlson2c49a442010-09-30 10:34:35 +00006839 cpycnt = min(cpycnt,
6840 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006841
6842 si = spr->rx_std_cons_idx;
6843 di = dpr->rx_std_prod_idx;
6844
Matt Carlsone92967b2010-02-12 14:47:06 +00006845 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006846 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006847 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006848 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006849 break;
6850 }
6851 }
6852
6853 if (!cpycnt)
6854 break;
6855
6856 /* Ensure that updates to the rx_std_buffers ring and the
6857 * shadowed hardware producer ring from tg3_recycle_skb() are
6858 * ordered correctly WRT the skb check above.
6859 */
6860 smp_rmb();
6861
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006862 memcpy(&dpr->rx_std_buffers[di],
6863 &spr->rx_std_buffers[si],
6864 cpycnt * sizeof(struct ring_info));
6865
6866 for (i = 0; i < cpycnt; i++, di++, si++) {
6867 struct tg3_rx_buffer_desc *sbd, *dbd;
6868 sbd = &spr->rx_std[si];
6869 dbd = &dpr->rx_std[di];
6870 dbd->addr_hi = sbd->addr_hi;
6871 dbd->addr_lo = sbd->addr_lo;
6872 }
6873
Matt Carlson2c49a442010-09-30 10:34:35 +00006874 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6875 tp->rx_std_ring_mask;
6876 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6877 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006878 }
6879
6880 while (1) {
6881 src_prod_idx = spr->rx_jmb_prod_idx;
6882
6883 /* Make sure updates to the rx_jmb_buffers[] entries and
6884 * the jumbo producer index are seen in the correct order.
6885 */
6886 smp_rmb();
6887
6888 if (spr->rx_jmb_cons_idx == src_prod_idx)
6889 break;
6890
6891 if (spr->rx_jmb_cons_idx < src_prod_idx)
6892 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6893 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006894 cpycnt = tp->rx_jmb_ring_mask + 1 -
6895 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006896
6897 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006898 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006899
6900 si = spr->rx_jmb_cons_idx;
6901 di = dpr->rx_jmb_prod_idx;
6902
Matt Carlsone92967b2010-02-12 14:47:06 +00006903 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006904 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006905 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006906 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006907 break;
6908 }
6909 }
6910
6911 if (!cpycnt)
6912 break;
6913
6914 /* Ensure that updates to the rx_jmb_buffers ring and the
6915 * shadowed hardware producer ring from tg3_recycle_skb() are
6916 * ordered correctly WRT the skb check above.
6917 */
6918 smp_rmb();
6919
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006920 memcpy(&dpr->rx_jmb_buffers[di],
6921 &spr->rx_jmb_buffers[si],
6922 cpycnt * sizeof(struct ring_info));
6923
6924 for (i = 0; i < cpycnt; i++, di++, si++) {
6925 struct tg3_rx_buffer_desc *sbd, *dbd;
6926 sbd = &spr->rx_jmb[si].std;
6927 dbd = &dpr->rx_jmb[di].std;
6928 dbd->addr_hi = sbd->addr_hi;
6929 dbd->addr_lo = sbd->addr_lo;
6930 }
6931
Matt Carlson2c49a442010-09-30 10:34:35 +00006932 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6933 tp->rx_jmb_ring_mask;
6934 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6935 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006936 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006937
6938 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006939}
6940
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006941static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6942{
6943 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944
6945 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006946 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006947 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006948 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006949 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950 }
6951
Matt Carlsonf891ea12012-04-24 13:37:01 +00006952 if (!tnapi->rx_rcb_prod_idx)
6953 return work_done;
6954
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955 /* run RX thread, within the bounds set by NAPI.
6956 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006957 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006959 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006960 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961
Joe Perches63c3a662011-04-26 08:12:10 +00006962 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006963 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006964 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006965 u32 std_prod_idx = dpr->rx_std_prod_idx;
6966 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006967
Michael Chan7ae52892012-03-21 15:38:33 +00006968 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00006969 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006970 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006971 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006972
6973 wmb();
6974
Matt Carlsone4af1af2010-02-12 14:47:05 +00006975 if (std_prod_idx != dpr->rx_std_prod_idx)
6976 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6977 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006978
Matt Carlsone4af1af2010-02-12 14:47:05 +00006979 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
6980 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6981 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006982
6983 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006984
6985 if (err)
6986 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006987 }
6988
David S. Miller6f535762007-10-11 18:08:29 -07006989 return work_done;
6990}
David S. Millerf7383c22005-05-18 22:50:53 -07006991
Matt Carlsondb219972011-11-04 09:15:03 +00006992static inline void tg3_reset_task_schedule(struct tg3 *tp)
6993{
6994 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
6995 schedule_work(&tp->reset_task);
6996}
6997
6998static inline void tg3_reset_task_cancel(struct tg3 *tp)
6999{
7000 cancel_work_sync(&tp->reset_task);
7001 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00007002 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00007003}
7004
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007005static int tg3_poll_msix(struct napi_struct *napi, int budget)
7006{
7007 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7008 struct tg3 *tp = tnapi->tp;
7009 int work_done = 0;
7010 struct tg3_hw_status *sblk = tnapi->hw_status;
7011
7012 while (1) {
7013 work_done = tg3_poll_work(tnapi, work_done, budget);
7014
Joe Perches63c3a662011-04-26 08:12:10 +00007015 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007016 goto tx_recovery;
7017
7018 if (unlikely(work_done >= budget))
7019 break;
7020
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007021 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007022 * to tell the hw how much work has been processed,
7023 * so we must read it before checking for more work.
7024 */
7025 tnapi->last_tag = sblk->status_tag;
7026 tnapi->last_irq_tag = tnapi->last_tag;
7027 rmb();
7028
7029 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00007030 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
7031 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00007032
7033 /* This test here is not race free, but will reduce
7034 * the number of interrupts by looping again.
7035 */
7036 if (tnapi == &tp->napi[1] && tp->rx_refill)
7037 continue;
7038
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007039 napi_complete(napi);
7040 /* Reenable interrupts. */
7041 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00007042
7043 /* This test here is synchronized by napi_schedule()
7044 * and napi_complete() to close the race condition.
7045 */
7046 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
7047 tw32(HOSTCC_MODE, tp->coalesce_mode |
7048 HOSTCC_MODE_ENABLE |
7049 tnapi->coal_now);
7050 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007051 mmiowb();
7052 break;
7053 }
7054 }
7055
7056 return work_done;
7057
7058tx_recovery:
7059 /* work_done is guaranteed to be less than budget. */
7060 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007061 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007062 return work_done;
7063}
7064
Matt Carlsone64de4e2011-04-13 11:05:05 +00007065static void tg3_process_error(struct tg3 *tp)
7066{
7067 u32 val;
7068 bool real_error = false;
7069
Joe Perches63c3a662011-04-26 08:12:10 +00007070 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00007071 return;
7072
7073 /* Check Flow Attention register */
7074 val = tr32(HOSTCC_FLOW_ATTN);
7075 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
7076 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
7077 real_error = true;
7078 }
7079
7080 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
7081 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
7082 real_error = true;
7083 }
7084
7085 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
7086 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
7087 real_error = true;
7088 }
7089
7090 if (!real_error)
7091 return;
7092
7093 tg3_dump_state(tp);
7094
Joe Perches63c3a662011-04-26 08:12:10 +00007095 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00007096 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00007097}
7098
David S. Miller6f535762007-10-11 18:08:29 -07007099static int tg3_poll(struct napi_struct *napi, int budget)
7100{
Matt Carlson8ef04422009-08-28 14:01:37 +00007101 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7102 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07007103 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00007104 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07007105
7106 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00007107 if (sblk->status & SD_STATUS_ERROR)
7108 tg3_process_error(tp);
7109
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007110 tg3_poll_link(tp);
7111
Matt Carlson17375d22009-08-28 14:02:18 +00007112 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07007113
Joe Perches63c3a662011-04-26 08:12:10 +00007114 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07007115 goto tx_recovery;
7116
7117 if (unlikely(work_done >= budget))
7118 break;
7119
Joe Perches63c3a662011-04-26 08:12:10 +00007120 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00007121 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07007122 * to tell the hw how much work has been processed,
7123 * so we must read it before checking for more work.
7124 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007125 tnapi->last_tag = sblk->status_tag;
7126 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07007127 rmb();
7128 } else
7129 sblk->status &= ~SD_STATUS_UPDATED;
7130
Matt Carlson17375d22009-08-28 14:02:18 +00007131 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007132 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00007133 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07007134 break;
7135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136 }
7137
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007138 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07007139
7140tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07007141 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08007142 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007143 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07007144 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145}
7146
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007147static void tg3_napi_disable(struct tg3 *tp)
7148{
7149 int i;
7150
7151 for (i = tp->irq_cnt - 1; i >= 0; i--)
7152 napi_disable(&tp->napi[i].napi);
7153}
7154
7155static void tg3_napi_enable(struct tg3 *tp)
7156{
7157 int i;
7158
7159 for (i = 0; i < tp->irq_cnt; i++)
7160 napi_enable(&tp->napi[i].napi);
7161}
7162
7163static void tg3_napi_init(struct tg3 *tp)
7164{
7165 int i;
7166
7167 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
7168 for (i = 1; i < tp->irq_cnt; i++)
7169 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
7170}
7171
7172static void tg3_napi_fini(struct tg3 *tp)
7173{
7174 int i;
7175
7176 for (i = 0; i < tp->irq_cnt; i++)
7177 netif_napi_del(&tp->napi[i].napi);
7178}
7179
7180static inline void tg3_netif_stop(struct tg3 *tp)
7181{
7182 tp->dev->trans_start = jiffies; /* prevent tx timeout */
7183 tg3_napi_disable(tp);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007184 netif_carrier_off(tp->dev);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007185 netif_tx_disable(tp->dev);
7186}
7187
Nithin Nayak Sujir35763062012-12-03 19:36:56 +00007188/* tp->lock must be held */
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007189static inline void tg3_netif_start(struct tg3 *tp)
7190{
Matt Carlsonbe947302012-12-03 19:36:57 +00007191 tg3_ptp_resume(tp);
7192
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007193 /* NOTE: unconditional netif_tx_wake_all_queues is only
7194 * appropriate so long as all callers are assured to
7195 * have free tx slots (such as after tg3_init_hw)
7196 */
7197 netif_tx_wake_all_queues(tp->dev);
7198
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007199 if (tp->link_up)
7200 netif_carrier_on(tp->dev);
7201
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007202 tg3_napi_enable(tp);
7203 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
7204 tg3_enable_ints(tp);
7205}
7206
David S. Millerf47c11e2005-06-24 20:18:35 -07007207static void tg3_irq_quiesce(struct tg3 *tp)
7208{
Matt Carlson4f125f42009-09-01 12:55:02 +00007209 int i;
7210
David S. Millerf47c11e2005-06-24 20:18:35 -07007211 BUG_ON(tp->irq_sync);
7212
7213 tp->irq_sync = 1;
7214 smp_mb();
7215
Matt Carlson4f125f42009-09-01 12:55:02 +00007216 for (i = 0; i < tp->irq_cnt; i++)
7217 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07007218}
7219
David S. Millerf47c11e2005-06-24 20:18:35 -07007220/* Fully shutdown all tg3 driver activity elsewhere in the system.
7221 * If irq_sync is non-zero, then the IRQ handler must be synchronized
7222 * with as well. Most of the time, this is not necessary except when
7223 * shutting down the device.
7224 */
7225static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
7226{
Michael Chan46966542007-07-11 19:47:19 -07007227 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07007228 if (irq_sync)
7229 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007230}
7231
7232static inline void tg3_full_unlock(struct tg3 *tp)
7233{
David S. Millerf47c11e2005-06-24 20:18:35 -07007234 spin_unlock_bh(&tp->lock);
7235}
7236
Michael Chanfcfa0a32006-03-20 22:28:41 -08007237/* One-shot MSI handler - Chip automatically disables interrupt
7238 * after sending MSI so driver doesn't have to do it.
7239 */
David Howells7d12e782006-10-05 14:55:46 +01007240static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007241{
Matt Carlson09943a12009-08-28 14:01:57 +00007242 struct tg3_napi *tnapi = dev_id;
7243 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007244
Matt Carlson898a56f2009-08-28 14:02:40 +00007245 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007246 if (tnapi->rx_rcb)
7247 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007248
7249 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007250 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007251
7252 return IRQ_HANDLED;
7253}
7254
Michael Chan88b06bc22005-04-21 17:13:25 -07007255/* MSI ISR - No need to check for interrupt sharing and no need to
7256 * flush status block and interrupt mailbox. PCI ordering rules
7257 * guarantee that MSI will arrive after the status block.
7258 */
David Howells7d12e782006-10-05 14:55:46 +01007259static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07007260{
Matt Carlson09943a12009-08-28 14:01:57 +00007261 struct tg3_napi *tnapi = dev_id;
7262 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07007263
Matt Carlson898a56f2009-08-28 14:02:40 +00007264 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007265 if (tnapi->rx_rcb)
7266 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07007267 /*
David S. Millerfac9b832005-05-18 22:46:34 -07007268 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07007269 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07007270 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07007271 * NIC to stop sending us irqs, engaging "in-intr-handler"
7272 * event coalescing.
7273 */
Matt Carlson5b39de92011-08-31 11:44:50 +00007274 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07007275 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007276 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07007277
Michael Chan88b06bc22005-04-21 17:13:25 -07007278 return IRQ_RETVAL(1);
7279}
7280
David Howells7d12e782006-10-05 14:55:46 +01007281static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282{
Matt Carlson09943a12009-08-28 14:01:57 +00007283 struct tg3_napi *tnapi = dev_id;
7284 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007285 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007286 unsigned int handled = 1;
7287
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288 /* In INTx mode, it is possible for the interrupt to arrive at
7289 * the CPU before the status block posted prior to the interrupt.
7290 * Reading the PCI State register will confirm whether the
7291 * interrupt is ours and will flush the status block.
7292 */
Michael Chand18edcb2007-03-24 20:57:11 -07007293 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00007294 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007295 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7296 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007297 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07007298 }
Michael Chand18edcb2007-03-24 20:57:11 -07007299 }
7300
7301 /*
7302 * Writing any value to intr-mbox-0 clears PCI INTA# and
7303 * chip-internal interrupt pending events.
7304 * Writing non-zero to intr-mbox-0 additional tells the
7305 * NIC to stop sending us irqs, engaging "in-intr-handler"
7306 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007307 *
7308 * Flush the mailbox to de-assert the IRQ immediately to prevent
7309 * spurious interrupts. The flush impacts performance but
7310 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007311 */
Michael Chanc04cb342007-05-07 00:26:15 -07007312 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07007313 if (tg3_irq_sync(tp))
7314 goto out;
7315 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00007316 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00007317 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00007318 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07007319 } else {
7320 /* No work, shared interrupt perhaps? re-enable
7321 * interrupts, and flush that PCI write
7322 */
7323 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
7324 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07007325 }
David S. Millerf47c11e2005-06-24 20:18:35 -07007326out:
David S. Millerfac9b832005-05-18 22:46:34 -07007327 return IRQ_RETVAL(handled);
7328}
7329
David Howells7d12e782006-10-05 14:55:46 +01007330static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07007331{
Matt Carlson09943a12009-08-28 14:01:57 +00007332 struct tg3_napi *tnapi = dev_id;
7333 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007334 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07007335 unsigned int handled = 1;
7336
David S. Millerfac9b832005-05-18 22:46:34 -07007337 /* In INTx mode, it is possible for the interrupt to arrive at
7338 * the CPU before the status block posted prior to the interrupt.
7339 * Reading the PCI State register will confirm whether the
7340 * interrupt is ours and will flush the status block.
7341 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007342 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00007343 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007344 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7345 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007346 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347 }
Michael Chand18edcb2007-03-24 20:57:11 -07007348 }
7349
7350 /*
7351 * writing any value to intr-mbox-0 clears PCI INTA# and
7352 * chip-internal interrupt pending events.
7353 * writing non-zero to intr-mbox-0 additional tells the
7354 * NIC to stop sending us irqs, engaging "in-intr-handler"
7355 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007356 *
7357 * Flush the mailbox to de-assert the IRQ immediately to prevent
7358 * spurious interrupts. The flush impacts performance but
7359 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007360 */
Michael Chanc04cb342007-05-07 00:26:15 -07007361 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00007362
7363 /*
7364 * In a shared interrupt configuration, sometimes other devices'
7365 * interrupts will scream. We record the current status tag here
7366 * so that the above check can report that the screaming interrupts
7367 * are unhandled. Eventually they will be silenced.
7368 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007369 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00007370
Michael Chand18edcb2007-03-24 20:57:11 -07007371 if (tg3_irq_sync(tp))
7372 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00007373
Matt Carlson72334482009-08-28 14:03:01 +00007374 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00007375
Matt Carlson09943a12009-08-28 14:01:57 +00007376 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00007377
David S. Millerf47c11e2005-06-24 20:18:35 -07007378out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 return IRQ_RETVAL(handled);
7380}
7381
Michael Chan79381092005-04-21 17:13:59 -07007382/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01007383static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07007384{
Matt Carlson09943a12009-08-28 14:01:57 +00007385 struct tg3_napi *tnapi = dev_id;
7386 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007387 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07007388
Michael Chanf9804dd2005-09-27 12:13:10 -07007389 if ((sblk->status & SD_STATUS_UPDATED) ||
7390 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07007391 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07007392 return IRQ_RETVAL(1);
7393 }
7394 return IRQ_RETVAL(0);
7395}
7396
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397#ifdef CONFIG_NET_POLL_CONTROLLER
7398static void tg3_poll_controller(struct net_device *dev)
7399{
Matt Carlson4f125f42009-09-01 12:55:02 +00007400 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07007401 struct tg3 *tp = netdev_priv(dev);
7402
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +00007403 if (tg3_irq_sync(tp))
7404 return;
7405
Matt Carlson4f125f42009-09-01 12:55:02 +00007406 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00007407 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408}
7409#endif
7410
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411static void tg3_tx_timeout(struct net_device *dev)
7412{
7413 struct tg3 *tp = netdev_priv(dev);
7414
Michael Chanb0408752007-02-13 12:18:30 -08007415 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007416 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00007417 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08007418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419
Matt Carlsondb219972011-11-04 09:15:03 +00007420 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421}
7422
Michael Chanc58ec932005-09-17 00:46:27 -07007423/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
7424static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
7425{
7426 u32 base = (u32) mapping & 0xffffffff;
7427
Eric Dumazet807540b2010-09-23 05:40:09 +00007428 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07007429}
7430
Michael Chan72f2afb2006-03-06 19:28:35 -08007431/* Test for DMA addresses > 40-bit */
7432static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7433 int len)
7434{
7435#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00007436 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00007437 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08007438 return 0;
7439#else
7440 return 0;
7441#endif
7442}
7443
Matt Carlsond1a3b732011-07-27 14:20:51 +00007444static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007445 dma_addr_t mapping, u32 len, u32 flags,
7446 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00007447{
Matt Carlson92cd3a12011-07-27 14:20:47 +00007448 txbd->addr_hi = ((u64) mapping >> 32);
7449 txbd->addr_lo = ((u64) mapping & 0xffffffff);
7450 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
7451 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00007452}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453
Matt Carlson84b67b22011-07-27 14:20:52 +00007454static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007455 dma_addr_t map, u32 len, u32 flags,
7456 u32 mss, u32 vlan)
7457{
7458 struct tg3 *tp = tnapi->tp;
7459 bool hwbug = false;
7460
7461 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00007462 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007463
7464 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007465 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007466
7467 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007468 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007469
Matt Carlsona4cb4282011-12-14 11:09:58 +00007470 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007471 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00007472 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00007473 while (len > tp->dma_limit && *budget) {
7474 u32 frag_len = tp->dma_limit;
7475 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00007476
Matt Carlsonb9e45482011-11-04 09:14:59 +00007477 /* Avoid the 8byte DMA problem */
7478 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00007479 len += tp->dma_limit / 2;
7480 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00007481 }
7482
Matt Carlsonb9e45482011-11-04 09:14:59 +00007483 tnapi->tx_buffers[*entry].fragmented = true;
7484
7485 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7486 frag_len, tmp_flag, mss, vlan);
7487 *budget -= 1;
7488 prvidx = *entry;
7489 *entry = NEXT_TX(*entry);
7490
Matt Carlsone31aa982011-07-27 14:20:53 +00007491 map += frag_len;
7492 }
7493
7494 if (len) {
7495 if (*budget) {
7496 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7497 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00007498 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00007499 *entry = NEXT_TX(*entry);
7500 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00007501 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007502 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00007503 }
7504 }
7505 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00007506 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7507 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00007508 *entry = NEXT_TX(*entry);
7509 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00007510
7511 return hwbug;
7512}
7513
Matt Carlson0d681b22011-07-27 14:20:49 +00007514static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00007515{
7516 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00007517 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00007518 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007519
Matt Carlson0d681b22011-07-27 14:20:49 +00007520 skb = txb->skb;
7521 txb->skb = NULL;
7522
Matt Carlson432aa7e2011-05-19 12:12:45 +00007523 pci_unmap_single(tnapi->tp->pdev,
7524 dma_unmap_addr(txb, mapping),
7525 skb_headlen(skb),
7526 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007527
7528 while (txb->fragmented) {
7529 txb->fragmented = false;
7530 entry = NEXT_TX(entry);
7531 txb = &tnapi->tx_buffers[entry];
7532 }
7533
Matt Carlsonba1142e2011-11-04 09:15:00 +00007534 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00007535 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007536
7537 entry = NEXT_TX(entry);
7538 txb = &tnapi->tx_buffers[entry];
7539
7540 pci_unmap_page(tnapi->tp->pdev,
7541 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00007542 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007543
7544 while (txb->fragmented) {
7545 txb->fragmented = false;
7546 entry = NEXT_TX(entry);
7547 txb = &tnapi->tx_buffers[entry];
7548 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00007549 }
7550}
7551
Michael Chan72f2afb2006-03-06 19:28:35 -08007552/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007553static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04007554 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00007555 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007556 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557{
Matt Carlson24f4efd2009-11-13 13:03:35 +00007558 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04007559 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07007560 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007561 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562
Joe Perches41535772013-02-16 11:20:04 +00007563 if (tg3_asic_rev(tp) != ASIC_REV_5701)
Matt Carlson41588ba2008-04-19 18:12:33 -07007564 new_skb = skb_copy(skb, GFP_ATOMIC);
7565 else {
7566 int more_headroom = 4 - ((unsigned long)skb->data & 3);
7567
7568 new_skb = skb_copy_expand(skb,
7569 skb_headroom(skb) + more_headroom,
7570 skb_tailroom(skb), GFP_ATOMIC);
7571 }
7572
Linus Torvalds1da177e2005-04-16 15:20:36 -07007573 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07007574 ret = -1;
7575 } else {
7576 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00007577 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
7578 PCI_DMA_TODEVICE);
7579 /* Make sure the mapping succeeded */
7580 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00007581 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07007582 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07007583 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007584 u32 save_entry = *entry;
7585
Matt Carlson92cd3a12011-07-27 14:20:47 +00007586 base_flags |= TXD_FLAG_END;
7587
Matt Carlson84b67b22011-07-27 14:20:52 +00007588 tnapi->tx_buffers[*entry].skb = new_skb;
7589 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00007590 mapping, new_addr);
7591
Matt Carlson84b67b22011-07-27 14:20:52 +00007592 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007593 new_skb->len, base_flags,
7594 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00007595 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00007596 dev_kfree_skb(new_skb);
7597 ret = -1;
7598 }
Michael Chanc58ec932005-09-17 00:46:27 -07007599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600 }
7601
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04007603 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07007604 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605}
7606
Matt Carlson2ffcc982011-05-19 12:12:44 +00007607static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07007608
7609/* Use GSO to workaround a rare TSO bug that may be triggered when the
7610 * TSO header is greater than 80 bytes.
7611 */
7612static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
7613{
7614 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007615 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07007616
7617 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007618 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07007619 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007620
7621 /* netif_tx_stop_queue() must be done before checking
7622 * checking tx index in tg3_tx_avail() below, because in
7623 * tg3_tx(), we update tx index before checking for
7624 * netif_tx_queue_stopped().
7625 */
7626 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007627 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08007628 return NETDEV_TX_BUSY;
7629
7630 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007631 }
7632
7633 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07007634 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07007635 goto tg3_tso_bug_end;
7636
7637 do {
7638 nskb = segs;
7639 segs = segs->next;
7640 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00007641 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007642 } while (segs);
7643
7644tg3_tso_bug_end:
7645 dev_kfree_skb(skb);
7646
7647 return NETDEV_TX_OK;
7648}
Michael Chan52c0fd82006-06-29 20:15:54 -07007649
Michael Chan5a6f3072006-03-20 22:28:05 -08007650/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00007651 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08007652 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00007653static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08007654{
7655 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00007656 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00007657 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007658 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07007659 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007660 struct tg3_napi *tnapi;
7661 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007662 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007663
Matt Carlson24f4efd2009-11-13 13:03:35 +00007664 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
7665 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00007666 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007667 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668
Matt Carlson84b67b22011-07-27 14:20:52 +00007669 budget = tg3_tx_avail(tnapi);
7670
Michael Chan00b70502006-06-17 21:58:45 -07007671 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007672 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07007673 * interrupt. Furthermore, IRQ processing runs lockless so we have
7674 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007676 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007677 if (!netif_tx_queue_stopped(txq)) {
7678 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007679
7680 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00007681 netdev_err(dev,
7682 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684 return NETDEV_TX_BUSY;
7685 }
7686
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007687 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07007689 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007691
Matt Carlsonbe98da62010-07-11 09:31:46 +00007692 mss = skb_shinfo(skb)->gso_size;
7693 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007694 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00007695 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696
7697 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00007698 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7699 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007700
Matt Carlson34195c32010-07-11 09:31:42 +00007701 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07007702 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703
Eric Dumazeta5a11952012-01-23 01:22:09 +00007704 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00007705
Eric Dumazeta5a11952012-01-23 01:22:09 +00007706 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00007707 iph->check = 0;
7708 iph->tot_len = htons(mss + hdr_len);
7709 }
7710
Michael Chan52c0fd82006-06-29 20:15:54 -07007711 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007712 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00007713 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007714
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7716 TXD_FLAG_CPU_POST_DMA);
7717
Joe Perches63c3a662011-04-26 08:12:10 +00007718 if (tg3_flag(tp, HW_TSO_1) ||
7719 tg3_flag(tp, HW_TSO_2) ||
7720 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007721 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007723 } else
7724 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7725 iph->daddr, 0,
7726 IPPROTO_TCP,
7727 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728
Joe Perches63c3a662011-04-26 08:12:10 +00007729 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007730 mss |= (hdr_len & 0xc) << 12;
7731 if (hdr_len & 0x10)
7732 base_flags |= 0x00000010;
7733 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007734 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007735 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007736 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +00007737 tg3_asic_rev(tp) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007738 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739 int tsflags;
7740
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007741 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742 mss |= (tsflags << 11);
7743 }
7744 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007745 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746 int tsflags;
7747
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007748 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749 base_flags |= tsflags << 12;
7750 }
7751 }
7752 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00007753
Matt Carlson93a700a2011-08-31 11:44:54 +00007754 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
7755 !mss && skb->len > VLAN_ETH_FRAME_LEN)
7756 base_flags |= TXD_FLAG_JMB_PKT;
7757
Matt Carlson92cd3a12011-07-27 14:20:47 +00007758 if (vlan_tx_tag_present(skb)) {
7759 base_flags |= TXD_FLAG_VLAN;
7760 vlan = vlan_tx_tag_get(skb);
7761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007762
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00007763 if ((unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) &&
7764 tg3_flag(tp, TX_TSTAMP_EN)) {
7765 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7766 base_flags |= TXD_FLAG_HWTSTAMP;
7767 }
7768
Alexander Duyckf4188d82009-12-02 16:48:38 +00007769 len = skb_headlen(skb);
7770
7771 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00007772 if (pci_dma_mapping_error(tp->pdev, mapping))
7773 goto drop;
7774
David S. Miller90079ce2008-09-11 04:52:51 -07007775
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007776 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007777 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778
7779 would_hit_hwbug = 0;
7780
Joe Perches63c3a662011-04-26 08:12:10 +00007781 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07007782 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783
Matt Carlson84b67b22011-07-27 14:20:52 +00007784 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00007785 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00007786 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00007787 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00007788 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00007789 u32 tmp_mss = mss;
7790
7791 if (!tg3_flag(tp, HW_TSO_1) &&
7792 !tg3_flag(tp, HW_TSO_2) &&
7793 !tg3_flag(tp, HW_TSO_3))
7794 tmp_mss = 0;
7795
Matt Carlsonc5665a52012-02-13 10:20:12 +00007796 /* Now loop through additional data
7797 * fragments, and queue them.
7798 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007799 last = skb_shinfo(skb)->nr_frags - 1;
7800 for (i = 0; i <= last; i++) {
7801 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
7802
Eric Dumazet9e903e02011-10-18 21:00:24 +00007803 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00007804 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007805 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007807 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007808 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00007809 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007810 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00007811 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812
Matt Carlsonb9e45482011-11-04 09:14:59 +00007813 if (!budget ||
7814 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00007815 len, base_flags |
7816 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00007817 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007818 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007819 break;
7820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821 }
7822 }
7823
7824 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00007825 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826
7827 /* If the workaround fails due to memory/mapping
7828 * failure, silently drop this packet.
7829 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007830 entry = tnapi->tx_prod;
7831 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04007832 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00007833 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00007834 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835 }
7836
Richard Cochrand515b452011-06-19 03:31:41 +00007837 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007838 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007839
Michael Chan6541b802012-03-04 14:48:14 +00007840 /* Sync BD data before updating mailbox */
7841 wmb();
7842
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007844 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007845
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007846 tnapi->tx_prod = entry;
7847 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007848 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007849
7850 /* netif_tx_stop_queue() must be done before checking
7851 * checking tx index in tg3_tx_avail() below, because in
7852 * tg3_tx(), we update tx index before checking for
7853 * netif_tx_queue_stopped().
7854 */
7855 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007856 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007857 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007860 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007862
7863dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007864 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007865 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007866drop:
7867 dev_kfree_skb(skb);
7868drop_nofree:
7869 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007870 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871}
7872
Matt Carlson6e01b202011-08-19 13:58:20 +00007873static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7874{
7875 if (enable) {
7876 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7877 MAC_MODE_PORT_MODE_MASK);
7878
7879 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7880
7881 if (!tg3_flag(tp, 5705_PLUS))
7882 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7883
7884 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7885 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7886 else
7887 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7888 } else {
7889 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7890
7891 if (tg3_flag(tp, 5705_PLUS) ||
7892 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
Joe Perches41535772013-02-16 11:20:04 +00007893 tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlson6e01b202011-08-19 13:58:20 +00007894 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7895 }
7896
7897 tw32(MAC_MODE, tp->mac_mode);
7898 udelay(40);
7899}
7900
Matt Carlson941ec902011-08-19 13:58:23 +00007901static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007902{
Matt Carlson941ec902011-08-19 13:58:23 +00007903 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007904
7905 tg3_phy_toggle_apd(tp, false);
Joe Perches953c96e2013-04-09 10:18:14 +00007906 tg3_phy_toggle_automdix(tp, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007907
Matt Carlson941ec902011-08-19 13:58:23 +00007908 if (extlpbk && tg3_phy_set_extloopbk(tp))
7909 return -EIO;
7910
7911 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007912 switch (speed) {
7913 case SPEED_10:
7914 break;
7915 case SPEED_100:
7916 bmcr |= BMCR_SPEED100;
7917 break;
7918 case SPEED_1000:
7919 default:
7920 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7921 speed = SPEED_100;
7922 bmcr |= BMCR_SPEED100;
7923 } else {
7924 speed = SPEED_1000;
7925 bmcr |= BMCR_SPEED1000;
7926 }
7927 }
7928
Matt Carlson941ec902011-08-19 13:58:23 +00007929 if (extlpbk) {
7930 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7931 tg3_readphy(tp, MII_CTRL1000, &val);
7932 val |= CTL1000_AS_MASTER |
7933 CTL1000_ENABLE_MASTER;
7934 tg3_writephy(tp, MII_CTRL1000, val);
7935 } else {
7936 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7937 MII_TG3_FET_PTEST_TRIM_2;
7938 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7939 }
7940 } else
7941 bmcr |= BMCR_LOOPBACK;
7942
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007943 tg3_writephy(tp, MII_BMCR, bmcr);
7944
7945 /* The write needs to be flushed for the FETs */
7946 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7947 tg3_readphy(tp, MII_BMCR, &bmcr);
7948
7949 udelay(40);
7950
7951 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +00007952 tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007953 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007954 MII_TG3_FET_PTEST_FRC_TX_LINK |
7955 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7956
7957 /* The write needs to be flushed for the AC131 */
7958 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7959 }
7960
7961 /* Reset to prevent losing 1st rx packet intermittently */
7962 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
7963 tg3_flag(tp, 5780_CLASS)) {
7964 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7965 udelay(10);
7966 tw32_f(MAC_RX_MODE, tp->rx_mode);
7967 }
7968
7969 mac_mode = tp->mac_mode &
7970 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
7971 if (speed == SPEED_1000)
7972 mac_mode |= MAC_MODE_PORT_MODE_GMII;
7973 else
7974 mac_mode |= MAC_MODE_PORT_MODE_MII;
7975
Joe Perches41535772013-02-16 11:20:04 +00007976 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007977 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
7978
7979 if (masked_phy_id == TG3_PHY_ID_BCM5401)
7980 mac_mode &= ~MAC_MODE_LINK_POLARITY;
7981 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
7982 mac_mode |= MAC_MODE_LINK_POLARITY;
7983
7984 tg3_writephy(tp, MII_TG3_EXT_CTRL,
7985 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
7986 }
7987
7988 tw32(MAC_MODE, mac_mode);
7989 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00007990
7991 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007992}
7993
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007994static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007995{
7996 struct tg3 *tp = netdev_priv(dev);
7997
7998 if (features & NETIF_F_LOOPBACK) {
7999 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
8000 return;
8001
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008002 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008003 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008004 netif_carrier_on(tp->dev);
8005 spin_unlock_bh(&tp->lock);
8006 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
8007 } else {
8008 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
8009 return;
8010
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008011 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008012 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008013 /* Force link status check */
Joe Perches953c96e2013-04-09 10:18:14 +00008014 tg3_setup_phy(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008015 spin_unlock_bh(&tp->lock);
8016 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
8017 }
8018}
8019
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008020static netdev_features_t tg3_fix_features(struct net_device *dev,
8021 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00008022{
8023 struct tg3 *tp = netdev_priv(dev);
8024
Joe Perches63c3a662011-04-26 08:12:10 +00008025 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00008026 features &= ~NETIF_F_ALL_TSO;
8027
8028 return features;
8029}
8030
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008031static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008032{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008033 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008034
8035 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
8036 tg3_set_loopback(dev, features);
8037
8038 return 0;
8039}
8040
Matt Carlson21f581a2009-08-28 14:00:25 +00008041static void tg3_rx_prodring_free(struct tg3 *tp,
8042 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008044 int i;
8045
Matt Carlson8fea32b2010-09-15 08:59:58 +00008046 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008047 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008048 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008049 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008050 tp->rx_pkt_map_sz);
8051
Joe Perches63c3a662011-04-26 08:12:10 +00008052 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008053 for (i = tpr->rx_jmb_cons_idx;
8054 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008055 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00008056 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008057 TG3_RX_JMB_MAP_SZ);
8058 }
8059 }
8060
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008061 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063
Matt Carlson2c49a442010-09-30 10:34:35 +00008064 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008065 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008066 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067
Joe Perches63c3a662011-04-26 08:12:10 +00008068 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008069 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008070 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008071 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072 }
8073}
8074
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008075/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008076 *
8077 * The chip has been shut down and the driver detached from
8078 * the networking, so no interrupts or new tx packets will
8079 * end up in the driver. tp->{tx,}lock are held and thus
8080 * we may not sleep.
8081 */
Matt Carlson21f581a2009-08-28 14:00:25 +00008082static int tg3_rx_prodring_alloc(struct tg3 *tp,
8083 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084{
Matt Carlson287be122009-08-28 13:58:46 +00008085 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008087 tpr->rx_std_cons_idx = 0;
8088 tpr->rx_std_prod_idx = 0;
8089 tpr->rx_jmb_cons_idx = 0;
8090 tpr->rx_jmb_prod_idx = 0;
8091
Matt Carlson8fea32b2010-09-15 08:59:58 +00008092 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008093 memset(&tpr->rx_std_buffers[0], 0,
8094 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00008095 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008096 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00008097 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008098 goto done;
8099 }
8100
Linus Torvalds1da177e2005-04-16 15:20:36 -07008101 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00008102 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103
Matt Carlson287be122009-08-28 13:58:46 +00008104 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008105 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00008106 tp->dev->mtu > ETH_DATA_LEN)
8107 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
8108 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07008109
Linus Torvalds1da177e2005-04-16 15:20:36 -07008110 /* Initialize invariants of the rings, we only set this
8111 * stuff once. This works because the card does not
8112 * write into the rx buffer posting rings.
8113 */
Matt Carlson2c49a442010-09-30 10:34:35 +00008114 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008115 struct tg3_rx_buffer_desc *rxd;
8116
Matt Carlson21f581a2009-08-28 14:00:25 +00008117 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00008118 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
8120 rxd->opaque = (RXD_OPAQUE_RING_STD |
8121 (i << RXD_OPAQUE_INDEX_SHIFT));
8122 }
8123
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008124 /* Now allocate fresh SKBs for each rx ring. */
8125 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008126 unsigned int frag_size;
8127
8128 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
8129 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008130 netdev_warn(tp->dev,
8131 "Using a smaller RX standard ring. Only "
8132 "%d out of %d buffers were allocated "
8133 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008134 if (i == 0)
8135 goto initfail;
8136 tp->rx_pending = i;
8137 break;
8138 }
8139 }
8140
Joe Perches63c3a662011-04-26 08:12:10 +00008141 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008142 goto done;
8143
Matt Carlson2c49a442010-09-30 10:34:35 +00008144 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008145
Joe Perches63c3a662011-04-26 08:12:10 +00008146 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00008147 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008148
Matt Carlson2c49a442010-09-30 10:34:35 +00008149 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00008150 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008151
Matt Carlson0d86df82010-02-17 15:17:00 +00008152 rxd = &tpr->rx_jmb[i].std;
8153 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
8154 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
8155 RXD_FLAG_JUMBO;
8156 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
8157 (i << RXD_OPAQUE_INDEX_SHIFT));
8158 }
8159
8160 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008161 unsigned int frag_size;
8162
8163 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
8164 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008165 netdev_warn(tp->dev,
8166 "Using a smaller RX jumbo ring. Only %d "
8167 "out of %d buffers were allocated "
8168 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00008169 if (i == 0)
8170 goto initfail;
8171 tp->rx_jumbo_pending = i;
8172 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008173 }
8174 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008175
8176done:
Michael Chan32d8c572006-07-25 16:38:29 -07008177 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008178
8179initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00008180 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008181 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182}
8183
Matt Carlson21f581a2009-08-28 14:00:25 +00008184static void tg3_rx_prodring_fini(struct tg3 *tp,
8185 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186{
Matt Carlson21f581a2009-08-28 14:00:25 +00008187 kfree(tpr->rx_std_buffers);
8188 tpr->rx_std_buffers = NULL;
8189 kfree(tpr->rx_jmb_buffers);
8190 tpr->rx_jmb_buffers = NULL;
8191 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008192 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
8193 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008194 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195 }
Matt Carlson21f581a2009-08-28 14:00:25 +00008196 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008197 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
8198 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008199 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008200 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008201}
8202
Matt Carlson21f581a2009-08-28 14:00:25 +00008203static int tg3_rx_prodring_init(struct tg3 *tp,
8204 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008205{
Matt Carlson2c49a442010-09-30 10:34:35 +00008206 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
8207 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008208 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008209 return -ENOMEM;
8210
Matt Carlson4bae65c2010-11-24 08:31:52 +00008211 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
8212 TG3_RX_STD_RING_BYTES(tp),
8213 &tpr->rx_std_mapping,
8214 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008215 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008216 goto err_out;
8217
Joe Perches63c3a662011-04-26 08:12:10 +00008218 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008219 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00008220 GFP_KERNEL);
8221 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008222 goto err_out;
8223
Matt Carlson4bae65c2010-11-24 08:31:52 +00008224 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
8225 TG3_RX_JMB_RING_BYTES(tp),
8226 &tpr->rx_jmb_mapping,
8227 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008228 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008229 goto err_out;
8230 }
8231
8232 return 0;
8233
8234err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00008235 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008236 return -ENOMEM;
8237}
8238
8239/* Free up pending packets in all rx/tx rings.
8240 *
8241 * The chip has been shut down and the driver detached from
8242 * the networking, so no interrupts or new tx packets will
8243 * end up in the driver. tp->{tx,}lock is not held and we are not
8244 * in an interrupt context and thus may sleep.
8245 */
8246static void tg3_free_rings(struct tg3 *tp)
8247{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008248 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008249
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008250 for (j = 0; j < tp->irq_cnt; j++) {
8251 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008252
Matt Carlson8fea32b2010-09-15 08:59:58 +00008253 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00008254
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008255 if (!tnapi->tx_buffers)
8256 continue;
8257
Matt Carlson0d681b22011-07-27 14:20:49 +00008258 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
8259 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008260
Matt Carlson0d681b22011-07-27 14:20:49 +00008261 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008262 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008263
Matt Carlsonba1142e2011-11-04 09:15:00 +00008264 tg3_tx_skb_unmap(tnapi, i,
8265 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008266
8267 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008268 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00008269 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008270 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008271}
8272
8273/* Initialize tx/rx rings for packet processing.
8274 *
8275 * The chip has been shut down and the driver detached from
8276 * the networking, so no interrupts or new tx packets will
8277 * end up in the driver. tp->{tx,}lock are held and thus
8278 * we may not sleep.
8279 */
8280static int tg3_init_rings(struct tg3 *tp)
8281{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008282 int i;
Matt Carlson72334482009-08-28 14:03:01 +00008283
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008284 /* Free up all the SKBs. */
8285 tg3_free_rings(tp);
8286
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008287 for (i = 0; i < tp->irq_cnt; i++) {
8288 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008289
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008290 tnapi->last_tag = 0;
8291 tnapi->last_irq_tag = 0;
8292 tnapi->hw_status->status = 0;
8293 tnapi->hw_status->status_tag = 0;
8294 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8295
8296 tnapi->tx_prod = 0;
8297 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008298 if (tnapi->tx_ring)
8299 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008300
8301 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008302 if (tnapi->rx_rcb)
8303 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008304
Matt Carlson8fea32b2010-09-15 08:59:58 +00008305 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00008306 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008307 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00008308 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008309 }
Matt Carlson72334482009-08-28 14:03:01 +00008310
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008311 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008312}
8313
Michael Chan49a359e2012-09-28 07:12:37 +00008314static void tg3_mem_tx_release(struct tg3 *tp)
8315{
8316 int i;
8317
8318 for (i = 0; i < tp->irq_max; i++) {
8319 struct tg3_napi *tnapi = &tp->napi[i];
8320
8321 if (tnapi->tx_ring) {
8322 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
8323 tnapi->tx_ring, tnapi->tx_desc_mapping);
8324 tnapi->tx_ring = NULL;
8325 }
8326
8327 kfree(tnapi->tx_buffers);
8328 tnapi->tx_buffers = NULL;
8329 }
8330}
8331
8332static int tg3_mem_tx_acquire(struct tg3 *tp)
8333{
8334 int i;
8335 struct tg3_napi *tnapi = &tp->napi[0];
8336
8337 /* If multivector TSS is enabled, vector 0 does not handle
8338 * tx interrupts. Don't allocate any resources for it.
8339 */
8340 if (tg3_flag(tp, ENABLE_TSS))
8341 tnapi++;
8342
8343 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
8344 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
8345 TG3_TX_RING_SIZE, GFP_KERNEL);
8346 if (!tnapi->tx_buffers)
8347 goto err_out;
8348
8349 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
8350 TG3_TX_RING_BYTES,
8351 &tnapi->tx_desc_mapping,
8352 GFP_KERNEL);
8353 if (!tnapi->tx_ring)
8354 goto err_out;
8355 }
8356
8357 return 0;
8358
8359err_out:
8360 tg3_mem_tx_release(tp);
8361 return -ENOMEM;
8362}
8363
8364static void tg3_mem_rx_release(struct tg3 *tp)
8365{
8366 int i;
8367
8368 for (i = 0; i < tp->irq_max; i++) {
8369 struct tg3_napi *tnapi = &tp->napi[i];
8370
8371 tg3_rx_prodring_fini(tp, &tnapi->prodring);
8372
8373 if (!tnapi->rx_rcb)
8374 continue;
8375
8376 dma_free_coherent(&tp->pdev->dev,
8377 TG3_RX_RCB_RING_BYTES(tp),
8378 tnapi->rx_rcb,
8379 tnapi->rx_rcb_mapping);
8380 tnapi->rx_rcb = NULL;
8381 }
8382}
8383
8384static int tg3_mem_rx_acquire(struct tg3 *tp)
8385{
8386 unsigned int i, limit;
8387
8388 limit = tp->rxq_cnt;
8389
8390 /* If RSS is enabled, we need a (dummy) producer ring
8391 * set on vector zero. This is the true hw prodring.
8392 */
8393 if (tg3_flag(tp, ENABLE_RSS))
8394 limit++;
8395
8396 for (i = 0; i < limit; i++) {
8397 struct tg3_napi *tnapi = &tp->napi[i];
8398
8399 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
8400 goto err_out;
8401
8402 /* If multivector RSS is enabled, vector 0
8403 * does not handle rx or tx interrupts.
8404 * Don't allocate any resources for it.
8405 */
8406 if (!i && tg3_flag(tp, ENABLE_RSS))
8407 continue;
8408
8409 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
8410 TG3_RX_RCB_RING_BYTES(tp),
8411 &tnapi->rx_rcb_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008412 GFP_KERNEL | __GFP_ZERO);
Michael Chan49a359e2012-09-28 07:12:37 +00008413 if (!tnapi->rx_rcb)
8414 goto err_out;
Michael Chan49a359e2012-09-28 07:12:37 +00008415 }
8416
8417 return 0;
8418
8419err_out:
8420 tg3_mem_rx_release(tp);
8421 return -ENOMEM;
8422}
8423
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008424/*
8425 * Must not be invoked with interrupt sources disabled and
8426 * the hardware shutdown down.
8427 */
8428static void tg3_free_consistent(struct tg3 *tp)
8429{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008430 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008431
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008432 for (i = 0; i < tp->irq_cnt; i++) {
8433 struct tg3_napi *tnapi = &tp->napi[i];
8434
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008435 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008436 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
8437 tnapi->hw_status,
8438 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008439 tnapi->hw_status = NULL;
8440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008442
Michael Chan49a359e2012-09-28 07:12:37 +00008443 tg3_mem_rx_release(tp);
8444 tg3_mem_tx_release(tp);
8445
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008447 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
8448 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449 tp->hw_stats = NULL;
8450 }
8451}
8452
8453/*
8454 * Must not be invoked with interrupt sources disabled and
8455 * the hardware shutdown down. Can sleep.
8456 */
8457static int tg3_alloc_consistent(struct tg3 *tp)
8458{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008459 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008460
Matt Carlson4bae65c2010-11-24 08:31:52 +00008461 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
8462 sizeof(struct tg3_hw_stats),
8463 &tp->stats_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008464 GFP_KERNEL | __GFP_ZERO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008465 if (!tp->hw_stats)
8466 goto err_out;
8467
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008468 for (i = 0; i < tp->irq_cnt; i++) {
8469 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008470 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008471
Matt Carlson4bae65c2010-11-24 08:31:52 +00008472 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
8473 TG3_HW_STATUS_SIZE,
8474 &tnapi->status_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008475 GFP_KERNEL | __GFP_ZERO);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008476 if (!tnapi->hw_status)
8477 goto err_out;
8478
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008479 sblk = tnapi->hw_status;
8480
Michael Chan49a359e2012-09-28 07:12:37 +00008481 if (tg3_flag(tp, ENABLE_RSS)) {
Michael Chan86449942012-10-02 20:31:14 -07008482 u16 *prodptr = NULL;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008483
Michael Chan49a359e2012-09-28 07:12:37 +00008484 /*
8485 * When RSS is enabled, the status block format changes
8486 * slightly. The "rx_jumbo_consumer", "reserved",
8487 * and "rx_mini_consumer" members get mapped to the
8488 * other three rx return ring producer indexes.
8489 */
8490 switch (i) {
8491 case 1:
8492 prodptr = &sblk->idx[0].rx_producer;
8493 break;
8494 case 2:
8495 prodptr = &sblk->rx_jumbo_consumer;
8496 break;
8497 case 3:
8498 prodptr = &sblk->reserved;
8499 break;
8500 case 4:
8501 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00008502 break;
8503 }
Michael Chan49a359e2012-09-28 07:12:37 +00008504 tnapi->rx_rcb_prod_idx = prodptr;
8505 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008506 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008507 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008508 }
8509
Michael Chan49a359e2012-09-28 07:12:37 +00008510 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
8511 goto err_out;
8512
Linus Torvalds1da177e2005-04-16 15:20:36 -07008513 return 0;
8514
8515err_out:
8516 tg3_free_consistent(tp);
8517 return -ENOMEM;
8518}
8519
8520#define MAX_WAIT_CNT 1000
8521
8522/* To stop a block, clear the enable bit and poll till it
8523 * clears. tp->lock is held.
8524 */
Joe Perches953c96e2013-04-09 10:18:14 +00008525static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008526{
8527 unsigned int i;
8528 u32 val;
8529
Joe Perches63c3a662011-04-26 08:12:10 +00008530 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008531 switch (ofs) {
8532 case RCVLSC_MODE:
8533 case DMAC_MODE:
8534 case MBFREE_MODE:
8535 case BUFMGR_MODE:
8536 case MEMARB_MODE:
8537 /* We can't enable/disable these bits of the
8538 * 5705/5750, just say success.
8539 */
8540 return 0;
8541
8542 default:
8543 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545 }
8546
8547 val = tr32(ofs);
8548 val &= ~enable_bit;
8549 tw32_f(ofs, val);
8550
8551 for (i = 0; i < MAX_WAIT_CNT; i++) {
8552 udelay(100);
8553 val = tr32(ofs);
8554 if ((val & enable_bit) == 0)
8555 break;
8556 }
8557
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008558 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00008559 dev_err(&tp->pdev->dev,
8560 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
8561 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562 return -ENODEV;
8563 }
8564
8565 return 0;
8566}
8567
8568/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008569static int tg3_abort_hw(struct tg3 *tp, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570{
8571 int i, err;
8572
8573 tg3_disable_ints(tp);
8574
8575 tp->rx_mode &= ~RX_MODE_ENABLE;
8576 tw32_f(MAC_RX_MODE, tp->rx_mode);
8577 udelay(10);
8578
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008579 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
8580 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
8581 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
8582 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
8583 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
8584 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008585
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008586 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
8587 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
8588 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
8589 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
8590 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
8591 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
8592 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593
8594 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8595 tw32_f(MAC_MODE, tp->mac_mode);
8596 udelay(40);
8597
8598 tp->tx_mode &= ~TX_MODE_ENABLE;
8599 tw32_f(MAC_TX_MODE, tp->tx_mode);
8600
8601 for (i = 0; i < MAX_WAIT_CNT; i++) {
8602 udelay(100);
8603 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
8604 break;
8605 }
8606 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00008607 dev_err(&tp->pdev->dev,
8608 "%s timed out, TX_MODE_ENABLE will not clear "
8609 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07008610 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008611 }
8612
Michael Chane6de8ad2005-05-05 14:42:41 -07008613 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008614 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
8615 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008616
8617 tw32(FTQ_RESET, 0xffffffff);
8618 tw32(FTQ_RESET, 0x00000000);
8619
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008620 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
8621 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008623 for (i = 0; i < tp->irq_cnt; i++) {
8624 struct tg3_napi *tnapi = &tp->napi[i];
8625 if (tnapi->hw_status)
8626 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629 return err;
8630}
8631
Michael Chanee6a99b2007-07-18 21:49:10 -07008632/* Save PCI command register before chip reset */
8633static void tg3_save_pci_state(struct tg3 *tp)
8634{
Matt Carlson8a6eac92007-10-21 16:17:55 -07008635 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008636}
8637
8638/* Restore PCI state after chip reset */
8639static void tg3_restore_pci_state(struct tg3 *tp)
8640{
8641 u32 val;
8642
8643 /* Re-enable indirect register accesses. */
8644 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8645 tp->misc_host_ctrl);
8646
8647 /* Set MAX PCI retry to zero. */
8648 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
Joe Perches41535772013-02-16 11:20:04 +00008649 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008650 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07008651 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008652 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00008653 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07008654 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008655 PCISTATE_ALLOW_APE_SHMEM_WR |
8656 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07008657 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
8658
Matt Carlson8a6eac92007-10-21 16:17:55 -07008659 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008660
Matt Carlson2c55a3d2011-11-28 09:41:04 +00008661 if (!tg3_flag(tp, PCI_EXPRESS)) {
8662 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
8663 tp->pci_cacheline_sz);
8664 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
8665 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07008666 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08008667
Michael Chanee6a99b2007-07-18 21:49:10 -07008668 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00008669 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008670 u16 pcix_cmd;
8671
8672 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8673 &pcix_cmd);
8674 pcix_cmd &= ~PCI_X_CMD_ERO;
8675 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8676 pcix_cmd);
8677 }
Michael Chanee6a99b2007-07-18 21:49:10 -07008678
Joe Perches63c3a662011-04-26 08:12:10 +00008679 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008680
8681 /* Chip reset on 5780 will reset MSI enable bit,
8682 * so need to restore it.
8683 */
Joe Perches63c3a662011-04-26 08:12:10 +00008684 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008685 u16 ctrl;
8686
8687 pci_read_config_word(tp->pdev,
8688 tp->msi_cap + PCI_MSI_FLAGS,
8689 &ctrl);
8690 pci_write_config_word(tp->pdev,
8691 tp->msi_cap + PCI_MSI_FLAGS,
8692 ctrl | PCI_MSI_FLAGS_ENABLE);
8693 val = tr32(MSGINT_MODE);
8694 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
8695 }
8696 }
8697}
8698
Linus Torvalds1da177e2005-04-16 15:20:36 -07008699/* tp->lock is held. */
8700static int tg3_chip_reset(struct tg3 *tp)
8701{
8702 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07008703 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00008704 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008705
David S. Millerf49639e2006-06-09 11:58:36 -07008706 tg3_nvram_lock(tp);
8707
Matt Carlson77b483f2008-08-15 14:07:24 -07008708 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
8709
David S. Millerf49639e2006-06-09 11:58:36 -07008710 /* No matching tg3_nvram_unlock() after this because
8711 * chip reset below will undo the nvram lock.
8712 */
8713 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008714
Michael Chanee6a99b2007-07-18 21:49:10 -07008715 /* GRC_MISC_CFG core clock reset will clear the memory
8716 * enable bit in PCI register 4 and the MSI enable bit
8717 * on some chips, so we save relevant registers here.
8718 */
8719 tg3_save_pci_state(tp);
8720
Joe Perches41535772013-02-16 11:20:04 +00008721 if (tg3_asic_rev(tp) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008722 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08008723 tw32(GRC_FASTBOOT_PC, 0);
8724
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725 /*
8726 * We must avoid the readl() that normally takes place.
8727 * It locks machines, causes machine checks, and other
8728 * fun things. So, temporarily disable the 5701
8729 * hardware workaround, while we do the reset.
8730 */
Michael Chan1ee582d2005-08-09 20:16:46 -07008731 write_op = tp->write32;
8732 if (write_op == tg3_write_flush_reg32)
8733 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734
Michael Chand18edcb2007-03-24 20:57:11 -07008735 /* Prevent the irq handler from reading or writing PCI registers
8736 * during chip reset when the memory enable bit in the PCI command
8737 * register may be cleared. The chip does not generate interrupt
8738 * at this time, but the irq handler may still be called due to irq
8739 * sharing or irqpoll.
8740 */
Joe Perches63c3a662011-04-26 08:12:10 +00008741 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008742 for (i = 0; i < tp->irq_cnt; i++) {
8743 struct tg3_napi *tnapi = &tp->napi[i];
8744 if (tnapi->hw_status) {
8745 tnapi->hw_status->status = 0;
8746 tnapi->hw_status->status_tag = 0;
8747 }
8748 tnapi->last_tag = 0;
8749 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07008750 }
Michael Chand18edcb2007-03-24 20:57:11 -07008751 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00008752
8753 for (i = 0; i < tp->irq_cnt; i++)
8754 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07008755
Joe Perches41535772013-02-16 11:20:04 +00008756 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson255ca312009-08-25 10:07:27 +00008757 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8758 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
8759 }
8760
Linus Torvalds1da177e2005-04-16 15:20:36 -07008761 /* do the reset */
8762 val = GRC_MISC_CFG_CORECLK_RESET;
8763
Joe Perches63c3a662011-04-26 08:12:10 +00008764 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00008765 /* Force PCIe 1.0a mode */
Joe Perches41535772013-02-16 11:20:04 +00008766 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008767 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00008768 tr32(TG3_PCIE_PHY_TSTCTL) ==
8769 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
8770 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
8771
Joe Perches41535772013-02-16 11:20:04 +00008772 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008773 tw32(GRC_MISC_CFG, (1 << 29));
8774 val |= (1 << 29);
8775 }
8776 }
8777
Joe Perches41535772013-02-16 11:20:04 +00008778 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07008779 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
8780 tw32(GRC_VCPU_EXT_CTRL,
8781 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
8782 }
8783
Matt Carlsonf37500d2010-08-02 11:25:59 +00008784 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00008785 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008786 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00008787
Linus Torvalds1da177e2005-04-16 15:20:36 -07008788 tw32(GRC_MISC_CFG, val);
8789
Michael Chan1ee582d2005-08-09 20:16:46 -07008790 /* restore 5701 hardware bug workaround write method */
8791 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008792
8793 /* Unfortunately, we have to delay before the PCI read back.
8794 * Some 575X chips even will not respond to a PCI cfg access
8795 * when the reset command is given to the chip.
8796 *
8797 * How do these hardware designers expect things to work
8798 * properly if the PCI write is posted for a long period
8799 * of time? It is always necessary to have some method by
8800 * which a register read back can occur to push the write
8801 * out which does the reset.
8802 *
8803 * For most tg3 variants the trick below was working.
8804 * Ho hum...
8805 */
8806 udelay(120);
8807
8808 /* Flush PCI posted writes. The normal MMIO registers
8809 * are inaccessible at this time so this is the only
8810 * way to make this reliably (actually, this is no longer
8811 * the case, see above). I tried to use indirect
8812 * register read/write but this upset some 5701 variants.
8813 */
8814 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
8815
8816 udelay(120);
8817
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008818 if (tg3_flag(tp, PCI_EXPRESS) && pci_is_pcie(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00008819 u16 val16;
8820
Joe Perches41535772013-02-16 11:20:04 +00008821 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0) {
Michael Chan86449942012-10-02 20:31:14 -07008822 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008823 u32 cfg_val;
8824
8825 /* Wait for link training to complete. */
Michael Chan86449942012-10-02 20:31:14 -07008826 for (j = 0; j < 5000; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827 udelay(100);
8828
8829 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
8830 pci_write_config_dword(tp->pdev, 0xc4,
8831 cfg_val | (1 << 15));
8832 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008833
Matt Carlsone7126992009-08-25 10:08:16 +00008834 /* Clear the "no snoop" and "relaxed ordering" bits. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008835 val16 = PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
Matt Carlsone7126992009-08-25 10:08:16 +00008836 /*
8837 * Older PCIe devices only support the 128 byte
8838 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008839 */
Joe Perches63c3a662011-04-26 08:12:10 +00008840 if (!tg3_flag(tp, CPMU_PRESENT))
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008841 val16 |= PCI_EXP_DEVCTL_PAYLOAD;
8842 pcie_capability_clear_word(tp->pdev, PCI_EXP_DEVCTL, val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008843
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008844 /* Clear error status */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008845 pcie_capability_write_word(tp->pdev, PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008846 PCI_EXP_DEVSTA_CED |
8847 PCI_EXP_DEVSTA_NFED |
8848 PCI_EXP_DEVSTA_FED |
8849 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008850 }
8851
Michael Chanee6a99b2007-07-18 21:49:10 -07008852 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853
Joe Perches63c3a662011-04-26 08:12:10 +00008854 tg3_flag_clear(tp, CHIP_RESETTING);
8855 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07008856
Michael Chanee6a99b2007-07-18 21:49:10 -07008857 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008858 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07008859 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07008860 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008861
Joe Perches41535772013-02-16 11:20:04 +00008862 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008863 tg3_stop_fw(tp);
8864 tw32(0x5000, 0x400);
8865 }
8866
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00008867 if (tg3_flag(tp, IS_SSB_CORE)) {
8868 /*
8869 * BCM4785: In order to avoid repercussions from using
8870 * potentially defective internal ROM, stop the Rx RISC CPU,
8871 * which is not required.
8872 */
8873 tg3_stop_fw(tp);
8874 tg3_halt_cpu(tp, RX_CPU_BASE);
8875 }
8876
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877 tw32(GRC_MODE, tp->grc_mode);
8878
Joe Perches41535772013-02-16 11:20:04 +00008879 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008880 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881
8882 tw32(0xc4, val | (1 << 15));
8883 }
8884
8885 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
Joe Perches41535772013-02-16 11:20:04 +00008886 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008887 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
Joe Perches41535772013-02-16 11:20:04 +00008888 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008889 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
8890 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8891 }
8892
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008893 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008894 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008895 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008896 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008897 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008898 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008899 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008900 val = 0;
8901
8902 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008903 udelay(40);
8904
Matt Carlson77b483f2008-08-15 14:07:24 -07008905 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8906
Michael Chan7a6f4362006-09-27 16:03:31 -07008907 err = tg3_poll_fw(tp);
8908 if (err)
8909 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008910
Matt Carlson0a9140c2009-08-28 12:27:50 +00008911 tg3_mdio_start(tp);
8912
Joe Perches63c3a662011-04-26 08:12:10 +00008913 if (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +00008914 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
8915 tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008916 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008917 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008918
8919 tw32(0x7c00, val | (1 << 25));
8920 }
8921
Joe Perches41535772013-02-16 11:20:04 +00008922 if (tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsond78b59f2011-04-05 14:22:46 +00008923 val = tr32(TG3_CPMU_CLCK_ORIDE);
8924 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8925 }
8926
Linus Torvalds1da177e2005-04-16 15:20:36 -07008927 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008928 tg3_flag_clear(tp, ENABLE_ASF);
Nithin Sujir942d1af2013-04-09 08:48:07 +00008929 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
8930 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
8931
Joe Perches63c3a662011-04-26 08:12:10 +00008932 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008933 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8934 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8935 u32 nic_cfg;
8936
8937 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8938 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008939 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008940 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008941 if (tg3_flag(tp, 5750_PLUS))
8942 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Nithin Sujir942d1af2013-04-09 08:48:07 +00008943
8944 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &nic_cfg);
8945 if (nic_cfg & NIC_SRAM_1G_ON_VAUX_OK)
8946 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
8947 if (nic_cfg & NIC_SRAM_LNK_FLAP_AVOID)
8948 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008949 }
8950 }
8951
8952 return 0;
8953}
8954
Matt Carlson65ec6982012-02-28 23:33:37 +00008955static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8956static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008957
Linus Torvalds1da177e2005-04-16 15:20:36 -07008958/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008959static int tg3_halt(struct tg3 *tp, int kind, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960{
8961 int err;
8962
8963 tg3_stop_fw(tp);
8964
Michael Chan944d9802005-05-29 14:57:48 -07008965 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008966
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008967 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008968 err = tg3_chip_reset(tp);
8969
Joe Perches953c96e2013-04-09 10:18:14 +00008970 __tg3_set_mac_addr(tp, false);
Matt Carlsondaba2a62009-04-20 06:58:52 +00008971
Michael Chan944d9802005-05-29 14:57:48 -07008972 tg3_write_sig_legacy(tp, kind);
8973 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008974
Matt Carlson92feeab2011-12-08 14:40:14 +00008975 if (tp->hw_stats) {
8976 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05008977 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00008978 tg3_get_estats(tp, &tp->estats_prev);
8979
8980 /* And make sure the next sample is new data */
8981 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
8982 }
8983
Linus Torvalds1da177e2005-04-16 15:20:36 -07008984 if (err)
8985 return err;
8986
8987 return 0;
8988}
8989
Linus Torvalds1da177e2005-04-16 15:20:36 -07008990static int tg3_set_mac_addr(struct net_device *dev, void *p)
8991{
8992 struct tg3 *tp = netdev_priv(dev);
8993 struct sockaddr *addr = p;
Joe Perches953c96e2013-04-09 10:18:14 +00008994 int err = 0;
8995 bool skip_mac_1 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996
Michael Chanf9804dd2005-09-27 12:13:10 -07008997 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00008998 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07008999
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
9001
Michael Chane75f7c92006-03-20 21:33:26 -08009002 if (!netif_running(dev))
9003 return 0;
9004
Joe Perches63c3a662011-04-26 08:12:10 +00009005 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07009006 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07009007
Michael Chan986e0ae2007-05-05 12:10:20 -07009008 addr0_high = tr32(MAC_ADDR_0_HIGH);
9009 addr0_low = tr32(MAC_ADDR_0_LOW);
9010 addr1_high = tr32(MAC_ADDR_1_HIGH);
9011 addr1_low = tr32(MAC_ADDR_1_LOW);
9012
9013 /* Skip MAC addr 1 if ASF is using it. */
9014 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
9015 !(addr1_high == 0 && addr1_low == 0))
Joe Perches953c96e2013-04-09 10:18:14 +00009016 skip_mac_1 = true;
Michael Chan58712ef2006-04-29 18:58:01 -07009017 }
Michael Chan986e0ae2007-05-05 12:10:20 -07009018 spin_lock_bh(&tp->lock);
9019 __tg3_set_mac_addr(tp, skip_mac_1);
9020 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021
Michael Chanb9ec6c12006-07-25 16:37:27 -07009022 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009023}
9024
9025/* tp->lock is held. */
9026static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
9027 dma_addr_t mapping, u32 maxlen_flags,
9028 u32 nic_addr)
9029{
9030 tg3_write_mem(tp,
9031 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
9032 ((u64) mapping >> 32));
9033 tg3_write_mem(tp,
9034 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
9035 ((u64) mapping & 0xffffffff));
9036 tg3_write_mem(tp,
9037 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
9038 maxlen_flags);
9039
Joe Perches63c3a662011-04-26 08:12:10 +00009040 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009041 tg3_write_mem(tp,
9042 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
9043 nic_addr);
9044}
9045
Michael Chana489b6d2012-09-28 07:12:39 +00009046
9047static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07009048{
Michael Chana489b6d2012-09-28 07:12:39 +00009049 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00009050
Joe Perches63c3a662011-04-26 08:12:10 +00009051 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009052 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
9053 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
9054 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00009055 } else {
9056 tw32(HOSTCC_TXCOL_TICKS, 0);
9057 tw32(HOSTCC_TXMAX_FRAMES, 0);
9058 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00009059
9060 for (; i < tp->txq_cnt; i++) {
9061 u32 reg;
9062
9063 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
9064 tw32(reg, ec->tx_coalesce_usecs);
9065 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
9066 tw32(reg, ec->tx_max_coalesced_frames);
9067 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
9068 tw32(reg, ec->tx_max_coalesced_frames_irq);
9069 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00009070 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009071
Michael Chana489b6d2012-09-28 07:12:39 +00009072 for (; i < tp->irq_max - 1; i++) {
9073 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
9074 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
9075 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9076 }
9077}
9078
9079static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
9080{
9081 int i = 0;
9082 u32 limit = tp->rxq_cnt;
9083
Joe Perches63c3a662011-04-26 08:12:10 +00009084 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00009085 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
9086 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
9087 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00009088 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00009089 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009090 tw32(HOSTCC_RXCOL_TICKS, 0);
9091 tw32(HOSTCC_RXMAX_FRAMES, 0);
9092 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07009093 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009094
Michael Chana489b6d2012-09-28 07:12:39 +00009095 for (; i < limit; i++) {
9096 u32 reg;
9097
9098 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
9099 tw32(reg, ec->rx_coalesce_usecs);
9100 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
9101 tw32(reg, ec->rx_max_coalesced_frames);
9102 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
9103 tw32(reg, ec->rx_max_coalesced_frames_irq);
9104 }
9105
9106 for (; i < tp->irq_max - 1; i++) {
9107 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
9108 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
9109 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9110 }
9111}
9112
9113static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
9114{
9115 tg3_coal_tx_init(tp, ec);
9116 tg3_coal_rx_init(tp, ec);
9117
Joe Perches63c3a662011-04-26 08:12:10 +00009118 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07009119 u32 val = ec->stats_block_coalesce_usecs;
9120
Matt Carlsonb6080e12009-09-01 13:12:00 +00009121 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
9122 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
9123
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00009124 if (!tp->link_up)
David S. Miller15f98502005-05-18 22:49:26 -07009125 val = 0;
9126
9127 tw32(HOSTCC_STAT_COAL_TICKS, val);
9128 }
9129}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009130
9131/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00009132static void tg3_rings_reset(struct tg3 *tp)
9133{
9134 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009135 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009136 struct tg3_napi *tnapi = &tp->napi[0];
9137
9138 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00009139 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009140 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009141 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00009142 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Michael Chanc65a17f2013-01-06 12:51:07 +00009143 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009144 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonb703df62009-12-03 08:36:21 +00009145 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009146 else
9147 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9148
9149 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9150 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
9151 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
9152 BDINFO_FLAGS_DISABLED);
9153
9154
9155 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00009156 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009157 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00009158 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009159 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches41535772013-02-16 11:20:04 +00009160 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9161 tg3_asic_rev(tp) == ASIC_REV_5762 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009162 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009163 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
9164 else
9165 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9166
9167 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9168 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
9169 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
9170 BDINFO_FLAGS_DISABLED);
9171
9172 /* Disable interrupts */
9173 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009174 tp->napi[0].chk_msi_cnt = 0;
9175 tp->napi[0].last_rx_cons = 0;
9176 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009177
9178 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00009179 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00009180 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009181 tp->napi[i].tx_prod = 0;
9182 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00009183 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009184 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009185 tw32_rx_mbox(tp->napi[i].consmbox, 0);
9186 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00009187 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009188 tp->napi[i].last_rx_cons = 0;
9189 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009190 }
Joe Perches63c3a662011-04-26 08:12:10 +00009191 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009192 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009193 } else {
9194 tp->napi[0].tx_prod = 0;
9195 tp->napi[0].tx_cons = 0;
9196 tw32_mailbox(tp->napi[0].prodmbox, 0);
9197 tw32_rx_mbox(tp->napi[0].consmbox, 0);
9198 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009199
9200 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00009201 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00009202 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
9203 for (i = 0; i < 16; i++)
9204 tw32_tx_mbox(mbox + i * 8, 0);
9205 }
9206
9207 txrcb = NIC_SRAM_SEND_RCB;
9208 rxrcb = NIC_SRAM_RCV_RET_RCB;
9209
9210 /* Clear status block in ram. */
9211 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9212
9213 /* Set status block DMA address */
9214 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9215 ((u64) tnapi->status_mapping >> 32));
9216 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9217 ((u64) tnapi->status_mapping & 0xffffffff));
9218
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009219 if (tnapi->tx_ring) {
9220 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9221 (TG3_TX_RING_SIZE <<
9222 BDINFO_FLAGS_MAXLEN_SHIFT),
9223 NIC_SRAM_TX_BUFFER_DESC);
9224 txrcb += TG3_BDINFO_SIZE;
9225 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009226
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009227 if (tnapi->rx_rcb) {
9228 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009229 (tp->rx_ret_ring_mask + 1) <<
9230 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009231 rxrcb += TG3_BDINFO_SIZE;
9232 }
9233
9234 stblk = HOSTCC_STATBLCK_RING1;
9235
9236 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
9237 u64 mapping = (u64)tnapi->status_mapping;
9238 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
9239 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
9240
9241 /* Clear status block in ram. */
9242 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9243
Matt Carlson19cfaec2009-12-03 08:36:20 +00009244 if (tnapi->tx_ring) {
9245 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9246 (TG3_TX_RING_SIZE <<
9247 BDINFO_FLAGS_MAXLEN_SHIFT),
9248 NIC_SRAM_TX_BUFFER_DESC);
9249 txrcb += TG3_BDINFO_SIZE;
9250 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009251
9252 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009253 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009254 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
9255
9256 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009257 rxrcb += TG3_BDINFO_SIZE;
9258 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009259}
9260
Matt Carlsoneb07a942011-04-20 07:57:36 +00009261static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
9262{
9263 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
9264
Joe Perches63c3a662011-04-26 08:12:10 +00009265 if (!tg3_flag(tp, 5750_PLUS) ||
9266 tg3_flag(tp, 5780_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009267 tg3_asic_rev(tp) == ASIC_REV_5750 ||
9268 tg3_asic_rev(tp) == ASIC_REV_5752 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00009269 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009270 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
Joe Perches41535772013-02-16 11:20:04 +00009271 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9272 tg3_asic_rev(tp) == ASIC_REV_5787)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009273 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
9274 else
9275 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
9276
9277 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
9278 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
9279
9280 val = min(nic_rep_thresh, host_rep_thresh);
9281 tw32(RCVBDI_STD_THRESH, val);
9282
Joe Perches63c3a662011-04-26 08:12:10 +00009283 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009284 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
9285
Joe Perches63c3a662011-04-26 08:12:10 +00009286 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009287 return;
9288
Matt Carlson513aa6e2011-11-21 15:01:18 +00009289 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00009290
9291 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
9292
9293 val = min(bdcache_maxcnt / 2, host_rep_thresh);
9294 tw32(RCVBDI_JUMBO_THRESH, val);
9295
Joe Perches63c3a662011-04-26 08:12:10 +00009296 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009297 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
9298}
9299
Matt Carlsonccd5ba92012-02-13 10:20:08 +00009300static inline u32 calc_crc(unsigned char *buf, int len)
9301{
9302 u32 reg;
9303 u32 tmp;
9304 int j, k;
9305
9306 reg = 0xffffffff;
9307
9308 for (j = 0; j < len; j++) {
9309 reg ^= buf[j];
9310
9311 for (k = 0; k < 8; k++) {
9312 tmp = reg & 0x01;
9313
9314 reg >>= 1;
9315
9316 if (tmp)
9317 reg ^= 0xedb88320;
9318 }
9319 }
9320
9321 return ~reg;
9322}
9323
9324static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9325{
9326 /* accept or reject all multicast frames */
9327 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9328 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9329 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9330 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9331}
9332
9333static void __tg3_set_rx_mode(struct net_device *dev)
9334{
9335 struct tg3 *tp = netdev_priv(dev);
9336 u32 rx_mode;
9337
9338 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9339 RX_MODE_KEEP_VLAN_TAG);
9340
9341#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
9342 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9343 * flag clear.
9344 */
9345 if (!tg3_flag(tp, ENABLE_ASF))
9346 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9347#endif
9348
9349 if (dev->flags & IFF_PROMISC) {
9350 /* Promiscuous mode. */
9351 rx_mode |= RX_MODE_PROMISC;
9352 } else if (dev->flags & IFF_ALLMULTI) {
9353 /* Accept all multicast. */
9354 tg3_set_multi(tp, 1);
9355 } else if (netdev_mc_empty(dev)) {
9356 /* Reject all multicast. */
9357 tg3_set_multi(tp, 0);
9358 } else {
9359 /* Accept one or more multicast(s). */
9360 struct netdev_hw_addr *ha;
9361 u32 mc_filter[4] = { 0, };
9362 u32 regidx;
9363 u32 bit;
9364 u32 crc;
9365
9366 netdev_for_each_mc_addr(ha, dev) {
9367 crc = calc_crc(ha->addr, ETH_ALEN);
9368 bit = ~crc & 0x7f;
9369 regidx = (bit & 0x60) >> 5;
9370 bit &= 0x1f;
9371 mc_filter[regidx] |= (1 << bit);
9372 }
9373
9374 tw32(MAC_HASH_REG_0, mc_filter[0]);
9375 tw32(MAC_HASH_REG_1, mc_filter[1]);
9376 tw32(MAC_HASH_REG_2, mc_filter[2]);
9377 tw32(MAC_HASH_REG_3, mc_filter[3]);
9378 }
9379
9380 if (rx_mode != tp->rx_mode) {
9381 tp->rx_mode = rx_mode;
9382 tw32_f(MAC_RX_MODE, rx_mode);
9383 udelay(10);
9384 }
9385}
9386
Michael Chan91024262012-09-28 07:12:38 +00009387static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00009388{
9389 int i;
9390
9391 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00009392 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00009393}
9394
9395static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009396{
9397 int i;
9398
9399 if (!tg3_flag(tp, SUPPORT_MSIX))
9400 return;
9401
Michael Chan0b3ba052012-11-14 14:44:29 +00009402 if (tp->rxq_cnt == 1) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009403 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00009404 return;
9405 }
9406
9407 /* Validate table against current IRQ count */
9408 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
Michael Chan0b3ba052012-11-14 14:44:29 +00009409 if (tp->rss_ind_tbl[i] >= tp->rxq_cnt)
Matt Carlson90415472011-12-16 13:33:23 +00009410 break;
9411 }
9412
9413 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00009414 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009415}
9416
Matt Carlson90415472011-12-16 13:33:23 +00009417static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009418{
9419 int i = 0;
9420 u32 reg = MAC_RSS_INDIR_TBL_0;
9421
9422 while (i < TG3_RSS_INDIR_TBL_SIZE) {
9423 u32 val = tp->rss_ind_tbl[i];
9424 i++;
9425 for (; i % 8; i++) {
9426 val <<= 4;
9427 val |= tp->rss_ind_tbl[i];
9428 }
9429 tw32(reg, val);
9430 reg += 4;
9431 }
9432}
9433
Matt Carlson2d31eca2009-09-01 12:53:31 +00009434/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00009435static int tg3_reset_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009436{
9437 u32 val, rdmac_mode;
9438 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00009439 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009440
9441 tg3_disable_ints(tp);
9442
9443 tg3_stop_fw(tp);
9444
9445 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
9446
Joe Perches63c3a662011-04-26 08:12:10 +00009447 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07009448 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009449
Matt Carlson699c0192010-12-06 08:28:51 +00009450 /* Enable MAC control of LPI */
9451 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009452 val = TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
9453 TG3_CPMU_EEE_LNKIDL_UART_IDL;
Joe Perches41535772013-02-16 11:20:04 +00009454 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00009455 val |= TG3_CPMU_EEE_LNKIDL_APE_TX_MT;
9456
9457 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL, val);
Matt Carlson699c0192010-12-06 08:28:51 +00009458
9459 tw32_f(TG3_CPMU_EEE_CTRL,
9460 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
9461
Matt Carlsona386b902010-12-06 08:28:53 +00009462 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
9463 TG3_CPMU_EEEMD_LPI_IN_TX |
9464 TG3_CPMU_EEEMD_LPI_IN_RX |
9465 TG3_CPMU_EEEMD_EEE_ENABLE;
9466
Joe Perches41535772013-02-16 11:20:04 +00009467 if (tg3_asic_rev(tp) != ASIC_REV_5717)
Matt Carlsona386b902010-12-06 08:28:53 +00009468 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
9469
Joe Perches63c3a662011-04-26 08:12:10 +00009470 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00009471 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
9472
9473 tw32_f(TG3_CPMU_EEE_MODE, val);
9474
9475 tw32_f(TG3_CPMU_EEE_DBTMR1,
9476 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
9477 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
9478
9479 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00009480 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00009481 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00009482 }
9483
Nithin Sujirfdad8de2013-04-09 08:48:08 +00009484 if ((tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
9485 !(tp->phy_flags & TG3_PHYFLG_USER_CONFIGURED)) {
9486 tg3_phy_pull_config(tp);
9487 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
9488 }
9489
Matt Carlson603f1172010-02-12 14:47:10 +00009490 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08009491 tg3_phy_reset(tp);
9492
Linus Torvalds1da177e2005-04-16 15:20:36 -07009493 err = tg3_chip_reset(tp);
9494 if (err)
9495 return err;
9496
9497 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
9498
Joe Perches41535772013-02-16 11:20:04 +00009499 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009500 val = tr32(TG3_CPMU_CTRL);
9501 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
9502 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08009503
9504 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9505 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9506 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9507 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
9508
9509 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
9510 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
9511 val |= CPMU_LNK_AWARE_MACCLK_6_25;
9512 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
9513
9514 val = tr32(TG3_CPMU_HST_ACC);
9515 val &= ~CPMU_HST_ACC_MACCLK_MASK;
9516 val |= CPMU_HST_ACC_MACCLK_6_25;
9517 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07009518 }
9519
Joe Perches41535772013-02-16 11:20:04 +00009520 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson33466d92009-04-20 06:57:41 +00009521 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
9522 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
9523 PCIE_PWR_MGMT_L1_THRESH_4MS;
9524 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00009525
9526 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
9527 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
9528
9529 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00009530
Matt Carlsonf40386c2009-11-02 14:24:02 +00009531 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
9532 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00009533 }
9534
Joe Perches63c3a662011-04-26 08:12:10 +00009535 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00009536 u32 grc_mode = tr32(GRC_MODE);
9537
9538 /* Access the lower 1K of PL PCIE block registers. */
9539 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9540 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
9541
9542 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
9543 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
9544 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
9545
9546 tw32(GRC_MODE, grc_mode);
9547 }
9548
Matt Carlson55086ad2011-12-14 11:09:59 +00009549 if (tg3_flag(tp, 57765_CLASS)) {
Joe Perches41535772013-02-16 11:20:04 +00009550 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlson5093eed2010-11-24 08:31:45 +00009551 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00009552
Matt Carlson5093eed2010-11-24 08:31:45 +00009553 /* Access the lower 1K of PL PCIE block registers. */
9554 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9555 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00009556
Matt Carlson5093eed2010-11-24 08:31:45 +00009557 val = tr32(TG3_PCIE_TLDLPL_PORT +
9558 TG3_PCIE_PL_LO_PHYCTL5);
9559 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
9560 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00009561
Matt Carlson5093eed2010-11-24 08:31:45 +00009562 tw32(GRC_MODE, grc_mode);
9563 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00009564
Joe Perches41535772013-02-16 11:20:04 +00009565 if (tg3_chip_rev(tp) != CHIPREV_57765_AX) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009566 u32 grc_mode;
9567
9568 /* Fix transmit hangs */
9569 val = tr32(TG3_CPMU_PADRNG_CTL);
9570 val |= TG3_CPMU_PADRNG_CTL_RDIV2;
9571 tw32(TG3_CPMU_PADRNG_CTL, val);
9572
9573 grc_mode = tr32(GRC_MODE);
Matt Carlson1ff30a52011-05-19 12:12:46 +00009574
9575 /* Access the lower 1K of DL PCIE block registers. */
9576 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9577 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
9578
9579 val = tr32(TG3_PCIE_TLDLPL_PORT +
9580 TG3_PCIE_DL_LO_FTSMAX);
9581 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
9582 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
9583 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
9584
9585 tw32(GRC_MODE, grc_mode);
9586 }
9587
Matt Carlsona977dbe2010-04-12 06:58:26 +00009588 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9589 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9590 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9591 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00009592 }
9593
Linus Torvalds1da177e2005-04-16 15:20:36 -07009594 /* This works around an issue with Athlon chipsets on
9595 * B3 tigon3 silicon. This bit has no effect on any
9596 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07009597 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009598 */
Joe Perches63c3a662011-04-26 08:12:10 +00009599 if (!tg3_flag(tp, CPMU_PRESENT)) {
9600 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07009601 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
9602 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009604
Joe Perches41535772013-02-16 11:20:04 +00009605 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009606 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009607 val = tr32(TG3PCI_PCISTATE);
9608 val |= PCISTATE_RETRY_SAME_DMA;
9609 tw32(TG3PCI_PCISTATE, val);
9610 }
9611
Joe Perches63c3a662011-04-26 08:12:10 +00009612 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07009613 /* Allow reads and writes to the
9614 * APE register and memory space.
9615 */
9616 val = tr32(TG3PCI_PCISTATE);
9617 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00009618 PCISTATE_ALLOW_APE_SHMEM_WR |
9619 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07009620 tw32(TG3PCI_PCISTATE, val);
9621 }
9622
Joe Perches41535772013-02-16 11:20:04 +00009623 if (tg3_chip_rev(tp) == CHIPREV_5704_BX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009624 /* Enable some hw fixes. */
9625 val = tr32(TG3PCI_MSI_DATA);
9626 val |= (1 << 26) | (1 << 28) | (1 << 29);
9627 tw32(TG3PCI_MSI_DATA, val);
9628 }
9629
9630 /* Descriptor ring init may make accesses to the
9631 * NIC SRAM area to setup the TX descriptors, so we
9632 * can only do this after the hardware has been
9633 * successfully reset.
9634 */
Michael Chan32d8c572006-07-25 16:38:29 -07009635 err = tg3_init_rings(tp);
9636 if (err)
9637 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009638
Joe Perches63c3a662011-04-26 08:12:10 +00009639 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009640 val = tr32(TG3PCI_DMA_RW_CTRL) &
9641 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Joe Perches41535772013-02-16 11:20:04 +00009642 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Matt Carlson1a319022010-04-12 06:58:25 +00009643 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00009644 if (!tg3_flag(tp, 57765_CLASS) &&
Joe Perches41535772013-02-16 11:20:04 +00009645 tg3_asic_rev(tp) != ASIC_REV_5717 &&
9646 tg3_asic_rev(tp) != ASIC_REV_5762)
Matt Carlson0aebff42011-04-25 12:42:45 +00009647 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009648 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
Joe Perches41535772013-02-16 11:20:04 +00009649 } else if (tg3_asic_rev(tp) != ASIC_REV_5784 &&
9650 tg3_asic_rev(tp) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009651 /* This value is determined during the probe time DMA
9652 * engine test, tg3_test_dma.
9653 */
9654 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009656
9657 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
9658 GRC_MODE_4X_NIC_SEND_RINGS |
9659 GRC_MODE_NO_TX_PHDR_CSUM |
9660 GRC_MODE_NO_RX_PHDR_CSUM);
9661 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07009662
9663 /* Pseudo-header checksum is done by hardware logic and not
9664 * the offload processers, so make the chip do the pseudo-
9665 * header checksums on receive. For transmit it is more
9666 * convenient to do the pseudo-header checksum in software
9667 * as Linux does that on transmit for us in all cases.
9668 */
9669 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009670
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00009671 val = GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP;
9672 if (tp->rxptpctl)
9673 tw32(TG3_RX_PTP_CTL,
9674 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
9675
9676 if (tg3_flag(tp, PTP_CAPABLE))
9677 val |= GRC_MODE_TIME_SYNC_ENABLE;
9678
9679 tw32(GRC_MODE, tp->grc_mode | val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009680
9681 /* Setup the timer prescalar register. Clock is always 66Mhz. */
9682 val = tr32(GRC_MISC_CFG);
9683 val &= ~0xff;
9684 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
9685 tw32(GRC_MISC_CFG, val);
9686
9687 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00009688 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009689 /* Do nothing. */
Joe Perches41535772013-02-16 11:20:04 +00009690 } else if (tg3_asic_rev(tp) != ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009691 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
Joe Perches41535772013-02-16 11:20:04 +00009692 if (tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009693 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
9694 else
9695 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
9696 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
9697 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00009698 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009699 int fw_len;
9700
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08009701 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009702 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
9703 tw32(BUFMGR_MB_POOL_ADDR,
9704 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
9705 tw32(BUFMGR_MB_POOL_SIZE,
9706 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
9707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009708
Michael Chan0f893dc2005-07-25 12:30:38 -07009709 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009710 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9711 tp->bufmgr_config.mbuf_read_dma_low_water);
9712 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9713 tp->bufmgr_config.mbuf_mac_rx_low_water);
9714 tw32(BUFMGR_MB_HIGH_WATER,
9715 tp->bufmgr_config.mbuf_high_water);
9716 } else {
9717 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9718 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
9719 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9720 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
9721 tw32(BUFMGR_MB_HIGH_WATER,
9722 tp->bufmgr_config.mbuf_high_water_jumbo);
9723 }
9724 tw32(BUFMGR_DMA_LOW_WATER,
9725 tp->bufmgr_config.dma_low_water);
9726 tw32(BUFMGR_DMA_HIGH_WATER,
9727 tp->bufmgr_config.dma_high_water);
9728
Matt Carlsond309a462010-09-30 10:34:31 +00009729 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
Joe Perches41535772013-02-16 11:20:04 +00009730 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsond309a462010-09-30 10:34:31 +00009731 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Joe Perches41535772013-02-16 11:20:04 +00009732 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
9733 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9734 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0)
Matt Carlson4d958472011-04-20 07:57:35 +00009735 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00009736 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009737 for (i = 0; i < 2000; i++) {
9738 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
9739 break;
9740 udelay(10);
9741 }
9742 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00009743 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009744 return -ENODEV;
9745 }
9746
Joe Perches41535772013-02-16 11:20:04 +00009747 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5906_A1)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009748 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07009749
Matt Carlsoneb07a942011-04-20 07:57:36 +00009750 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009751
9752 /* Initialize TG3_BDINFO's at:
9753 * RCVDBDI_STD_BD: standard eth size rx ring
9754 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
9755 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
9756 *
9757 * like so:
9758 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
9759 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
9760 * ring attribute flags
9761 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
9762 *
9763 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
9764 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
9765 *
9766 * The size of each ring is fixed in the firmware, but the location is
9767 * configurable.
9768 */
9769 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009770 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009771 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009772 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00009773 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00009774 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
9775 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009776
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009777 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00009778 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009779 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
9780 BDINFO_FLAGS_DISABLED);
9781
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009782 /* Program the jumbo buffer descriptor ring control
9783 * blocks on those devices that have them.
9784 */
Joe Perches41535772013-02-16 11:20:04 +00009785 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009786 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009787
Joe Perches63c3a662011-04-26 08:12:10 +00009788 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009789 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009790 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009791 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009792 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00009793 val = TG3_RX_JMB_RING_SIZE(tp) <<
9794 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009795 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00009796 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00009797 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Michael Chanc65a17f2013-01-06 12:51:07 +00009798 tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009799 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson87668d32009-11-13 13:03:34 +00009800 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
9801 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009802 } else {
9803 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
9804 BDINFO_FLAGS_DISABLED);
9805 }
9806
Joe Perches63c3a662011-04-26 08:12:10 +00009807 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00009808 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009809 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
9810 val |= (TG3_RX_STD_DMA_SZ << 2);
9811 } else
Matt Carlson04380d42010-04-12 06:58:29 +00009812 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009813 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00009814 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009815
9816 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009817
Matt Carlson411da642009-11-13 13:03:46 +00009818 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00009819 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009820
Joe Perches63c3a662011-04-26 08:12:10 +00009821 tpr->rx_jmb_prod_idx =
9822 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00009823 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009824
Matt Carlson2d31eca2009-09-01 12:53:31 +00009825 tg3_rings_reset(tp);
9826
Linus Torvalds1da177e2005-04-16 15:20:36 -07009827 /* Initialize MAC address and backoff seed. */
Joe Perches953c96e2013-04-09 10:18:14 +00009828 __tg3_set_mac_addr(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009829
9830 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00009831 tw32(MAC_RX_MTU_SIZE,
9832 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009833
9834 /* The slot time is changed by tg3_setup_phy if we
9835 * run at gigabit with half duplex.
9836 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00009837 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
9838 (6 << TX_LENGTHS_IPG_SHIFT) |
9839 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
9840
Joe Perches41535772013-02-16 11:20:04 +00009841 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9842 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009843 val |= tr32(MAC_TX_LENGTHS) &
9844 (TX_LENGTHS_JMB_FRM_LEN_MSK |
9845 TX_LENGTHS_CNT_DWN_VAL_MSK);
9846
9847 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009848
9849 /* Receive rules. */
9850 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
9851 tw32(RCVLPC_CONFIG, 0x0181);
9852
9853 /* Calculate RDMAC_MODE setting early, we need it to determine
9854 * the RCVLPC_STATE_ENABLE mask.
9855 */
9856 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
9857 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
9858 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
9859 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
9860 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07009861
Joe Perches41535772013-02-16 11:20:04 +00009862 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00009863 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
9864
Joe Perches41535772013-02-16 11:20:04 +00009865 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
9866 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9867 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07009868 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
9869 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
9870 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
9871
Joe Perches41535772013-02-16 11:20:04 +00009872 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
9873 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009874 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +00009875 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009876 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
9877 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009878 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009879 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9880 }
9881 }
9882
Joe Perches63c3a662011-04-26 08:12:10 +00009883 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07009884 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9885
Joe Perches41535772013-02-16 11:20:04 +00009886 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009887 tp->dma_limit = 0;
9888 if (tp->dev->mtu <= ETH_DATA_LEN) {
9889 rdmac_mode |= RDMAC_MODE_JMB_2K_MMRR;
9890 tp->dma_limit = TG3_TX_BD_DMA_MAX_2K;
9891 }
9892 }
9893
Joe Perches63c3a662011-04-26 08:12:10 +00009894 if (tg3_flag(tp, HW_TSO_1) ||
9895 tg3_flag(tp, HW_TSO_2) ||
9896 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08009897 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
9898
Matt Carlson108a6c12011-05-19 12:12:47 +00009899 if (tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +00009900 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9901 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson027455a2008-12-21 20:19:30 -08009902 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009903
Joe Perches41535772013-02-16 11:20:04 +00009904 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9905 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009906 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
9907
Joe Perches41535772013-02-16 11:20:04 +00009908 if (tg3_asic_rev(tp) == ASIC_REV_5761 ||
9909 tg3_asic_rev(tp) == ASIC_REV_5784 ||
9910 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9911 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009912 tg3_flag(tp, 57765_PLUS)) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009913 u32 tgtreg;
9914
Joe Perches41535772013-02-16 11:20:04 +00009915 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009916 tgtreg = TG3_RDMA_RSRVCTRL_REG2;
9917 else
9918 tgtreg = TG3_RDMA_RSRVCTRL_REG;
9919
9920 val = tr32(tgtreg);
Joe Perches41535772013-02-16 11:20:04 +00009921 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9922 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00009923 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
9924 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
9925 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
9926 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
9927 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
9928 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00009929 }
Michael Chanc65a17f2013-01-06 12:51:07 +00009930 tw32(tgtreg, val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009931 }
9932
Joe Perches41535772013-02-16 11:20:04 +00009933 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
9934 tg3_asic_rev(tp) == ASIC_REV_5720 ||
9935 tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009936 u32 tgtreg;
9937
Joe Perches41535772013-02-16 11:20:04 +00009938 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009939 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL2;
9940 else
9941 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL;
9942
9943 val = tr32(tgtreg);
9944 tw32(tgtreg, val |
Matt Carlsond309a462010-09-30 10:34:31 +00009945 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
9946 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
9947 }
9948
Linus Torvalds1da177e2005-04-16 15:20:36 -07009949 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00009950 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07009951 val = tr32(RCVLPC_STATS_ENABLE);
9952 val &= ~RCVLPC_STATSENAB_DACK_FIX;
9953 tw32(RCVLPC_STATS_ENABLE, val);
9954 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009955 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009956 val = tr32(RCVLPC_STATS_ENABLE);
9957 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
9958 tw32(RCVLPC_STATS_ENABLE, val);
9959 } else {
9960 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
9961 }
9962 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
9963 tw32(SNDDATAI_STATSENAB, 0xffffff);
9964 tw32(SNDDATAI_STATSCTRL,
9965 (SNDDATAI_SCTRL_ENABLE |
9966 SNDDATAI_SCTRL_FASTUPD));
9967
9968 /* Setup host coalescing engine. */
9969 tw32(HOSTCC_MODE, 0);
9970 for (i = 0; i < 2000; i++) {
9971 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
9972 break;
9973 udelay(10);
9974 }
9975
Michael Chand244c892005-07-05 14:42:33 -07009976 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009977
Joe Perches63c3a662011-04-26 08:12:10 +00009978 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009979 /* Status/statistics block address. See tg3_timer,
9980 * the tg3_periodic_fetch_stats call there, and
9981 * tg3_get_stats to see how this works for 5705/5750 chips.
9982 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009983 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9984 ((u64) tp->stats_mapping >> 32));
9985 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9986 ((u64) tp->stats_mapping & 0xffffffff));
9987 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009988
Linus Torvalds1da177e2005-04-16 15:20:36 -07009989 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009990
9991 /* Clear statistics and status block memory areas */
9992 for (i = NIC_SRAM_STATS_BLK;
9993 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
9994 i += sizeof(u32)) {
9995 tg3_write_mem(tp, i, 0);
9996 udelay(40);
9997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009998 }
9999
10000 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
10001
10002 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
10003 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010004 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010005 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
10006
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010007 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
10008 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -070010009 /* reset to prevent losing 1st rx packet intermittently */
10010 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10011 udelay(10);
10012 }
10013
Matt Carlson3bda1252008-08-15 14:08:22 -070010014 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +000010015 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
10016 MAC_MODE_FHDE_ENABLE;
10017 if (tg3_flag(tp, ENABLE_APE))
10018 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +000010019 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010020 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010021 tg3_asic_rev(tp) != ASIC_REV_5700)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010022 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010023 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
10024 udelay(40);
10025
Michael Chan314fba32005-04-21 17:07:04 -070010026 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +000010027 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -070010028 * register to preserve the GPIO settings for LOMs. The GPIOs,
10029 * whether used as inputs or outputs, are set by boot code after
10030 * reset.
10031 */
Joe Perches63c3a662011-04-26 08:12:10 +000010032 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -070010033 u32 gpio_mask;
10034
Michael Chan9d26e212006-12-07 00:21:14 -080010035 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
10036 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
10037 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -070010038
Joe Perches41535772013-02-16 11:20:04 +000010039 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070010040 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
10041 GRC_LCLCTRL_GPIO_OUTPUT3;
10042
Joe Perches41535772013-02-16 11:20:04 +000010043 if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanaf36e6b2006-03-23 01:28:06 -080010044 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
10045
Gary Zambranoaaf84462007-05-05 11:51:45 -070010046 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -070010047 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
10048
10049 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +000010050 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -080010051 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
10052 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -070010053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010054 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10055 udelay(100);
10056
Matt Carlsonc3b50032012-01-17 15:27:23 +000010057 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010058 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010059 val |= MSGINT_MODE_ENABLE;
10060 if (tp->irq_cnt > 1)
10061 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010062 if (!tg3_flag(tp, 1SHOT_MSI))
10063 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010064 tw32(MSGINT_MODE, val);
10065 }
10066
Joe Perches63c3a662011-04-26 08:12:10 +000010067 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010068 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
10069 udelay(40);
10070 }
10071
10072 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
10073 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
10074 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
10075 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
10076 WDMAC_MODE_LNGREAD_ENAB);
10077
Joe Perches41535772013-02-16 11:20:04 +000010078 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
10079 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000010080 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +000010081 (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 ||
10082 tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010083 /* nothing */
10084 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010085 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010086 val |= WDMAC_MODE_RX_ACCEL;
10087 }
10088 }
10089
Michael Chand9ab5ad12006-03-20 22:27:35 -080010090 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +000010091 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -070010092 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -080010093
Joe Perches41535772013-02-16 11:20:04 +000010094 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson788a0352009-11-02 14:26:03 +000010095 val |= WDMAC_MODE_BURST_ALL_DATA;
10096
Linus Torvalds1da177e2005-04-16 15:20:36 -070010097 tw32_f(WDMAC_MODE, val);
10098 udelay(40);
10099
Joe Perches63c3a662011-04-26 08:12:10 +000010100 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -070010101 u16 pcix_cmd;
10102
10103 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10104 &pcix_cmd);
Joe Perches41535772013-02-16 11:20:04 +000010105 if (tg3_asic_rev(tp) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -070010106 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
10107 pcix_cmd |= PCI_X_CMD_READ_2K;
Joe Perches41535772013-02-16 11:20:04 +000010108 } else if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -070010109 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
10110 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010111 }
Matt Carlson9974a352007-10-07 23:27:28 -070010112 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10113 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010114 }
10115
10116 tw32_f(RDMAC_MODE, rdmac_mode);
10117 udelay(40);
10118
Joe Perches41535772013-02-16 11:20:04 +000010119 if (tg3_asic_rev(tp) == ASIC_REV_5719) {
Michael Chan091f0ea2012-07-29 19:15:43 +000010120 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
10121 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
10122 break;
10123 }
10124 if (i < TG3_NUM_RDMA_CHANNELS) {
10125 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
10126 val |= TG3_LSO_RD_DMA_TX_LENGTH_WA;
10127 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
10128 tg3_flag_set(tp, 5719_RDMA_BUG);
10129 }
10130 }
10131
Linus Torvalds1da177e2005-04-16 15:20:36 -070010132 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010133 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010134 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -070010135
Joe Perches41535772013-02-16 11:20:04 +000010136 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson9936bcf2007-10-10 18:03:07 -070010137 tw32(SNDDATAC_MODE,
10138 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
10139 else
10140 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
10141
Linus Torvalds1da177e2005-04-16 15:20:36 -070010142 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
10143 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010144 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +000010145 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010146 val |= RCVDBDI_MODE_LRG_RING_SZ;
10147 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010148 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010149 if (tg3_flag(tp, HW_TSO_1) ||
10150 tg3_flag(tp, HW_TSO_2) ||
10151 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010152 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010153 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010154 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010155 val |= SNDBDI_MODE_MULTI_TXQ_EN;
10156 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010157 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
10158
Joe Perches41535772013-02-16 11:20:04 +000010159 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010160 err = tg3_load_5701_a0_firmware_fix(tp);
10161 if (err)
10162 return err;
10163 }
10164
Nithin Sujirc4dab502013-03-06 17:02:34 +000010165 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
10166 /* Ignore any errors for the firmware download. If download
10167 * fails, the device will operate with EEE disabled
10168 */
10169 tg3_load_57766_firmware(tp);
10170 }
10171
Joe Perches63c3a662011-04-26 08:12:10 +000010172 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173 err = tg3_load_tso_firmware(tp);
10174 if (err)
10175 return err;
10176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010177
10178 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010179
Joe Perches63c3a662011-04-26 08:12:10 +000010180 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000010181 tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonb1d05212010-06-05 17:24:31 +000010182 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010183
Joe Perches41535772013-02-16 11:20:04 +000010184 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10185 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonf2096f92011-04-05 14:22:48 +000010186 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
10187 tp->tx_mode &= ~val;
10188 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
10189 }
10190
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191 tw32_f(MAC_TX_MODE, tp->tx_mode);
10192 udelay(100);
10193
Joe Perches63c3a662011-04-26 08:12:10 +000010194 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010195 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010196
10197 /* Setup the "secret" hash key. */
10198 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
10199 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
10200 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
10201 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
10202 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
10203 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
10204 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
10205 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
10206 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
10207 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
10208 }
10209
Linus Torvalds1da177e2005-04-16 15:20:36 -070010210 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010211 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080010212 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
10213
Joe Perches63c3a662011-04-26 08:12:10 +000010214 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010215 tp->rx_mode |= RX_MODE_RSS_ENABLE |
10216 RX_MODE_RSS_ITBL_HASH_BITS_7 |
10217 RX_MODE_RSS_IPV6_HASH_EN |
10218 RX_MODE_RSS_TCP_IPV6_HASH_EN |
10219 RX_MODE_RSS_IPV4_HASH_EN |
10220 RX_MODE_RSS_TCP_IPV4_HASH_EN;
10221
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222 tw32_f(MAC_RX_MODE, tp->rx_mode);
10223 udelay(10);
10224
Linus Torvalds1da177e2005-04-16 15:20:36 -070010225 tw32(MAC_LED_CTRL, tp->led_ctrl);
10226
10227 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010228 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010229 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10230 udelay(10);
10231 }
10232 tw32_f(MAC_RX_MODE, tp->rx_mode);
10233 udelay(10);
10234
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010235 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +000010236 if ((tg3_asic_rev(tp) == ASIC_REV_5704) &&
10237 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010238 /* Set drive transmission level to 1.2V */
10239 /* only if the signal pre-emphasis bit is not set */
10240 val = tr32(MAC_SERDES_CFG);
10241 val &= 0xfffff000;
10242 val |= 0x880;
10243 tw32(MAC_SERDES_CFG, val);
10244 }
Joe Perches41535772013-02-16 11:20:04 +000010245 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010246 tw32(MAC_SERDES_CFG, 0x616000);
10247 }
10248
10249 /* Prevent chip from dropping frames when flow control
10250 * is enabled.
10251 */
Matt Carlson55086ad2011-12-14 11:09:59 +000010252 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +000010253 val = 1;
10254 else
10255 val = 2;
10256 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010257
Joe Perches41535772013-02-16 11:20:04 +000010258 if (tg3_asic_rev(tp) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010259 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010260 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +000010261 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262 }
10263
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010264 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010265 tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -080010266 u32 tmp;
10267
10268 tmp = tr32(SERDES_RX_CTRL);
10269 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
10270 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
10271 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
10272 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10273 }
10274
Joe Perches63c3a662011-04-26 08:12:10 +000010275 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010276 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +000010277 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010278
Joe Perches953c96e2013-04-09 10:18:14 +000010279 err = tg3_setup_phy(tp, false);
Matt Carlsondd477002008-05-25 23:45:58 -070010280 if (err)
10281 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010282
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010283 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
10284 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -070010285 u32 tmp;
10286
10287 /* Clear CRC stats. */
10288 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
10289 tg3_writephy(tp, MII_TG3_TEST1,
10290 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010291 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -070010292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010293 }
10294 }
10295
10296 __tg3_set_rx_mode(tp->dev);
10297
10298 /* Initialize receive rules. */
10299 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
10300 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
10301 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
10302 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
10303
Joe Perches63c3a662011-04-26 08:12:10 +000010304 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010305 limit = 8;
10306 else
10307 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +000010308 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010309 limit -= 4;
10310 switch (limit) {
10311 case 16:
10312 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
10313 case 15:
10314 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
10315 case 14:
10316 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
10317 case 13:
10318 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
10319 case 12:
10320 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
10321 case 11:
10322 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
10323 case 10:
10324 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
10325 case 9:
10326 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
10327 case 8:
10328 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
10329 case 7:
10330 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
10331 case 6:
10332 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
10333 case 5:
10334 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
10335 case 4:
10336 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
10337 case 3:
10338 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
10339 case 2:
10340 case 1:
10341
10342 default:
10343 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070010344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010345
Joe Perches63c3a662011-04-26 08:12:10 +000010346 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -070010347 /* Write our heartbeat update interval to APE. */
10348 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
10349 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -070010350
Linus Torvalds1da177e2005-04-16 15:20:36 -070010351 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
10352
Linus Torvalds1da177e2005-04-16 15:20:36 -070010353 return 0;
10354}
10355
10356/* Called at device open time to get the chip ready for
10357 * packet processing. Invoked with tp->lock held.
10358 */
Joe Perches953c96e2013-04-09 10:18:14 +000010359static int tg3_init_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010360{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010361 tg3_switch_clocks(tp);
10362
10363 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
10364
Matt Carlson2f751b62008-08-04 23:17:34 -070010365 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010366}
10367
Michael Chanaed93e02012-07-16 16:24:02 +000010368static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
10369{
10370 int i;
10371
10372 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
10373 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
10374
10375 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
10376 off += len;
10377
10378 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
10379 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
10380 memset(ocir, 0, TG3_OCIR_LEN);
10381 }
10382}
10383
10384/* sysfs attributes for hwmon */
10385static ssize_t tg3_show_temp(struct device *dev,
10386 struct device_attribute *devattr, char *buf)
10387{
10388 struct pci_dev *pdev = to_pci_dev(dev);
10389 struct net_device *netdev = pci_get_drvdata(pdev);
10390 struct tg3 *tp = netdev_priv(netdev);
10391 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
10392 u32 temperature;
10393
10394 spin_lock_bh(&tp->lock);
10395 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
10396 sizeof(temperature));
10397 spin_unlock_bh(&tp->lock);
10398 return sprintf(buf, "%u\n", temperature);
10399}
10400
10401
10402static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
10403 TG3_TEMP_SENSOR_OFFSET);
10404static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
10405 TG3_TEMP_CAUTION_OFFSET);
10406static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
10407 TG3_TEMP_MAX_OFFSET);
10408
10409static struct attribute *tg3_attributes[] = {
10410 &sensor_dev_attr_temp1_input.dev_attr.attr,
10411 &sensor_dev_attr_temp1_crit.dev_attr.attr,
10412 &sensor_dev_attr_temp1_max.dev_attr.attr,
10413 NULL
10414};
10415
10416static const struct attribute_group tg3_group = {
10417 .attrs = tg3_attributes,
10418};
10419
Michael Chanaed93e02012-07-16 16:24:02 +000010420static void tg3_hwmon_close(struct tg3 *tp)
10421{
Michael Chanaed93e02012-07-16 16:24:02 +000010422 if (tp->hwmon_dev) {
10423 hwmon_device_unregister(tp->hwmon_dev);
10424 tp->hwmon_dev = NULL;
10425 sysfs_remove_group(&tp->pdev->dev.kobj, &tg3_group);
10426 }
Michael Chanaed93e02012-07-16 16:24:02 +000010427}
10428
10429static void tg3_hwmon_open(struct tg3 *tp)
10430{
Michael Chanaed93e02012-07-16 16:24:02 +000010431 int i, err;
10432 u32 size = 0;
10433 struct pci_dev *pdev = tp->pdev;
10434 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
10435
10436 tg3_sd_scan_scratchpad(tp, ocirs);
10437
10438 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
10439 if (!ocirs[i].src_data_length)
10440 continue;
10441
10442 size += ocirs[i].src_hdr_length;
10443 size += ocirs[i].src_data_length;
10444 }
10445
10446 if (!size)
10447 return;
10448
10449 /* Register hwmon sysfs hooks */
10450 err = sysfs_create_group(&pdev->dev.kobj, &tg3_group);
10451 if (err) {
10452 dev_err(&pdev->dev, "Cannot create sysfs group, aborting\n");
10453 return;
10454 }
10455
10456 tp->hwmon_dev = hwmon_device_register(&pdev->dev);
10457 if (IS_ERR(tp->hwmon_dev)) {
10458 tp->hwmon_dev = NULL;
10459 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
10460 sysfs_remove_group(&pdev->dev.kobj, &tg3_group);
10461 }
Michael Chanaed93e02012-07-16 16:24:02 +000010462}
10463
10464
Linus Torvalds1da177e2005-04-16 15:20:36 -070010465#define TG3_STAT_ADD32(PSTAT, REG) \
10466do { u32 __val = tr32(REG); \
10467 (PSTAT)->low += __val; \
10468 if ((PSTAT)->low < __val) \
10469 (PSTAT)->high += 1; \
10470} while (0)
10471
10472static void tg3_periodic_fetch_stats(struct tg3 *tp)
10473{
10474 struct tg3_hw_stats *sp = tp->hw_stats;
10475
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010476 if (!tp->link_up)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010477 return;
10478
10479 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
10480 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
10481 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
10482 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
10483 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
10484 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
10485 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
10486 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
10487 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
10488 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
10489 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
10490 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
10491 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Michael Chan091f0ea2012-07-29 19:15:43 +000010492 if (unlikely(tg3_flag(tp, 5719_RDMA_BUG) &&
10493 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
10494 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
10495 u32 val;
10496
10497 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
10498 val &= ~TG3_LSO_RD_DMA_TX_LENGTH_WA;
10499 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
10500 tg3_flag_clear(tp, 5719_RDMA_BUG);
10501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010502
10503 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
10504 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
10505 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
10506 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
10507 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
10508 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
10509 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
10510 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
10511 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
10512 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
10513 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
10514 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
10515 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
10516 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -070010517
10518 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Joe Perches41535772013-02-16 11:20:04 +000010519 if (tg3_asic_rev(tp) != ASIC_REV_5717 &&
10520 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0 &&
10521 tg3_chip_rev_id(tp) != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000010522 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
10523 } else {
10524 u32 val = tr32(HOSTCC_FLOW_ATTN);
10525 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
10526 if (val) {
10527 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
10528 sp->rx_discards.low += val;
10529 if (sp->rx_discards.low < val)
10530 sp->rx_discards.high += 1;
10531 }
10532 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
10533 }
Michael Chan463d3052006-05-22 16:36:27 -070010534 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010535}
10536
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010537static void tg3_chk_missed_msi(struct tg3 *tp)
10538{
10539 u32 i;
10540
10541 for (i = 0; i < tp->irq_cnt; i++) {
10542 struct tg3_napi *tnapi = &tp->napi[i];
10543
10544 if (tg3_has_work(tnapi)) {
10545 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
10546 tnapi->last_tx_cons == tnapi->tx_cons) {
10547 if (tnapi->chk_msi_cnt < 1) {
10548 tnapi->chk_msi_cnt++;
10549 return;
10550 }
Matt Carlson7f230732011-08-31 11:44:48 +000010551 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010552 }
10553 }
10554 tnapi->chk_msi_cnt = 0;
10555 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
10556 tnapi->last_tx_cons = tnapi->tx_cons;
10557 }
10558}
10559
Linus Torvalds1da177e2005-04-16 15:20:36 -070010560static void tg3_timer(unsigned long __opaque)
10561{
10562 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010563
Matt Carlson5b190622011-11-04 09:15:04 +000010564 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -080010565 goto restart_timer;
10566
David S. Millerf47c11e2005-06-24 20:18:35 -070010567 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010568
Joe Perches41535772013-02-16 11:20:04 +000010569 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000010570 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010571 tg3_chk_missed_msi(tp);
10572
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000010573 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
10574 /* BCM4785: Flush posted writes from GbE to host memory. */
10575 tr32(HOSTCC_MODE);
10576 }
10577
Joe Perches63c3a662011-04-26 08:12:10 +000010578 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070010579 /* All of this garbage is because when using non-tagged
10580 * IRQ status the mailbox/status_block protocol the chip
10581 * uses with the cpu is race prone.
10582 */
Matt Carlson898a56f2009-08-28 14:02:40 +000010583 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -070010584 tw32(GRC_LOCAL_CTRL,
10585 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
10586 } else {
10587 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010588 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -070010589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010590
David S. Millerfac9b832005-05-18 22:46:34 -070010591 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010592 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +000010593 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +000010594 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -070010595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010596 }
10597
Linus Torvalds1da177e2005-04-16 15:20:36 -070010598 /* This part only runs once per second. */
10599 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010600 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -070010601 tg3_periodic_fetch_stats(tp);
10602
Matt Carlsonb0c59432011-05-19 12:12:48 +000010603 if (tp->setlpicnt && !--tp->setlpicnt)
10604 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +000010605
Joe Perches63c3a662011-04-26 08:12:10 +000010606 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010607 u32 mac_stat;
10608 int phy_event;
10609
10610 mac_stat = tr32(MAC_STATUS);
10611
10612 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010613 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010614 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
10615 phy_event = 1;
10616 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
10617 phy_event = 1;
10618
10619 if (phy_event)
Joe Perches953c96e2013-04-09 10:18:14 +000010620 tg3_setup_phy(tp, false);
Joe Perches63c3a662011-04-26 08:12:10 +000010621 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010622 u32 mac_stat = tr32(MAC_STATUS);
10623 int need_setup = 0;
10624
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010625 if (tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010626 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
10627 need_setup = 1;
10628 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010629 if (!tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010630 (mac_stat & (MAC_STATUS_PCS_SYNCED |
10631 MAC_STATUS_SIGNAL_DET))) {
10632 need_setup = 1;
10633 }
10634 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -070010635 if (!tp->serdes_counter) {
10636 tw32_f(MAC_MODE,
10637 (tp->mac_mode &
10638 ~MAC_MODE_PORT_MODE_MASK));
10639 udelay(40);
10640 tw32_f(MAC_MODE, tp->mac_mode);
10641 udelay(40);
10642 }
Joe Perches953c96e2013-04-09 10:18:14 +000010643 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010644 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010645 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010646 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -070010647 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +000010648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010649
10650 tp->timer_counter = tp->timer_multiplier;
10651 }
10652
Michael Chan130b8e42006-09-27 16:00:40 -070010653 /* Heartbeat is only sent once every 2 seconds.
10654 *
10655 * The heartbeat is to tell the ASF firmware that the host
10656 * driver is still alive. In the event that the OS crashes,
10657 * ASF needs to reset the hardware to free up the FIFO space
10658 * that may be filled with rx packets destined for the host.
10659 * If the FIFO is full, ASF will no longer function properly.
10660 *
10661 * Unintended resets have been reported on real time kernels
10662 * where the timer doesn't run on time. Netpoll will also have
10663 * same problem.
10664 *
10665 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
10666 * to check the ring condition when the heartbeat is expiring
10667 * before doing the reset. This will prevent most unintended
10668 * resets.
10669 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010670 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010671 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -070010672 tg3_wait_for_event_ack(tp);
10673
Michael Chanbbadf502006-04-06 21:46:34 -070010674 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -070010675 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -070010676 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010677 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
10678 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -070010679
10680 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010681 }
10682 tp->asf_counter = tp->asf_multiplier;
10683 }
10684
David S. Millerf47c11e2005-06-24 20:18:35 -070010685 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010686
Michael Chanf475f162006-03-27 23:20:14 -080010687restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -070010688 tp->timer.expires = jiffies + tp->timer_offset;
10689 add_timer(&tp->timer);
10690}
10691
Bill Pemberton229b1ad2012-12-03 09:22:59 -050010692static void tg3_timer_init(struct tg3 *tp)
Matt Carlson21f76382012-02-22 12:35:21 +000010693{
10694 if (tg3_flag(tp, TAGGED_STATUS) &&
Joe Perches41535772013-02-16 11:20:04 +000010695 tg3_asic_rev(tp) != ASIC_REV_5717 &&
Matt Carlson21f76382012-02-22 12:35:21 +000010696 !tg3_flag(tp, 57765_CLASS))
10697 tp->timer_offset = HZ;
10698 else
10699 tp->timer_offset = HZ / 10;
10700
10701 BUG_ON(tp->timer_offset > HZ);
10702
10703 tp->timer_multiplier = (HZ / tp->timer_offset);
10704 tp->asf_multiplier = (HZ / tp->timer_offset) *
10705 TG3_FW_UPDATE_FREQ_SEC;
10706
10707 init_timer(&tp->timer);
10708 tp->timer.data = (unsigned long) tp;
10709 tp->timer.function = tg3_timer;
10710}
10711
10712static void tg3_timer_start(struct tg3 *tp)
10713{
10714 tp->asf_counter = tp->asf_multiplier;
10715 tp->timer_counter = tp->timer_multiplier;
10716
10717 tp->timer.expires = jiffies + tp->timer_offset;
10718 add_timer(&tp->timer);
10719}
10720
10721static void tg3_timer_stop(struct tg3 *tp)
10722{
10723 del_timer_sync(&tp->timer);
10724}
10725
10726/* Restart hardware after configuration changes, self-test, etc.
10727 * Invoked with tp->lock held.
10728 */
Joe Perches953c96e2013-04-09 10:18:14 +000010729static int tg3_restart_hw(struct tg3 *tp, bool reset_phy)
Matt Carlson21f76382012-02-22 12:35:21 +000010730 __releases(tp->lock)
10731 __acquires(tp->lock)
10732{
10733 int err;
10734
10735 err = tg3_init_hw(tp, reset_phy);
10736 if (err) {
10737 netdev_err(tp->dev,
10738 "Failed to re-initialize device, aborting\n");
10739 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10740 tg3_full_unlock(tp);
10741 tg3_timer_stop(tp);
10742 tp->irq_sync = 0;
10743 tg3_napi_enable(tp);
10744 dev_close(tp->dev);
10745 tg3_full_lock(tp, 0);
10746 }
10747 return err;
10748}
10749
10750static void tg3_reset_task(struct work_struct *work)
10751{
10752 struct tg3 *tp = container_of(work, struct tg3, reset_task);
10753 int err;
10754
10755 tg3_full_lock(tp, 0);
10756
10757 if (!netif_running(tp->dev)) {
10758 tg3_flag_clear(tp, RESET_TASK_PENDING);
10759 tg3_full_unlock(tp);
10760 return;
10761 }
10762
10763 tg3_full_unlock(tp);
10764
10765 tg3_phy_stop(tp);
10766
10767 tg3_netif_stop(tp);
10768
10769 tg3_full_lock(tp, 1);
10770
10771 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
10772 tp->write32_tx_mbox = tg3_write32_tx_mbox;
10773 tp->write32_rx_mbox = tg3_write_flush_reg32;
10774 tg3_flag_set(tp, MBOX_WRITE_REORDER);
10775 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
10776 }
10777
10778 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Joe Perches953c96e2013-04-09 10:18:14 +000010779 err = tg3_init_hw(tp, true);
Matt Carlson21f76382012-02-22 12:35:21 +000010780 if (err)
10781 goto out;
10782
10783 tg3_netif_start(tp);
10784
10785out:
10786 tg3_full_unlock(tp);
10787
10788 if (!err)
10789 tg3_phy_start(tp);
10790
10791 tg3_flag_clear(tp, RESET_TASK_PENDING);
10792}
10793
Matt Carlson4f125f42009-09-01 12:55:02 +000010794static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -080010795{
David Howells7d12e782006-10-05 14:55:46 +010010796 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010797 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000010798 char *name;
10799 struct tg3_napi *tnapi = &tp->napi[irq_num];
10800
10801 if (tp->irq_cnt == 1)
10802 name = tp->dev->name;
10803 else {
10804 name = &tnapi->irq_lbl[0];
10805 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
10806 name[IFNAMSIZ-1] = 0;
10807 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010808
Joe Perches63c3a662011-04-26 08:12:10 +000010809 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080010810 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000010811 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010812 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010813 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010814 } else {
10815 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000010816 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010817 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010818 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010819 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010820
10821 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010822}
10823
Michael Chan79381092005-04-21 17:13:59 -070010824static int tg3_test_interrupt(struct tg3 *tp)
10825{
Matt Carlson09943a12009-08-28 14:01:57 +000010826 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070010827 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070010828 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010829 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070010830
Michael Chand4bc3922005-05-29 14:59:20 -070010831 if (!netif_running(dev))
10832 return -ENODEV;
10833
Michael Chan79381092005-04-21 17:13:59 -070010834 tg3_disable_ints(tp);
10835
Matt Carlson4f125f42009-09-01 12:55:02 +000010836 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010837
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010838 /*
10839 * Turn off MSI one shot mode. Otherwise this test has no
10840 * observable way to know whether the interrupt was delivered.
10841 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010842 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010843 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
10844 tw32(MSGINT_MODE, val);
10845 }
10846
Matt Carlson4f125f42009-09-01 12:55:02 +000010847 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000010848 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010849 if (err)
10850 return err;
10851
Matt Carlson898a56f2009-08-28 14:02:40 +000010852 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070010853 tg3_enable_ints(tp);
10854
10855 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010856 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070010857
10858 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070010859 u32 int_mbox, misc_host_ctrl;
10860
Matt Carlson898a56f2009-08-28 14:02:40 +000010861 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070010862 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
10863
10864 if ((int_mbox != 0) ||
10865 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
10866 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070010867 break;
Michael Chanb16250e2006-09-27 16:10:14 -070010868 }
10869
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010870 if (tg3_flag(tp, 57765_PLUS) &&
10871 tnapi->hw_status->status_tag != tnapi->last_tag)
10872 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
10873
Michael Chan79381092005-04-21 17:13:59 -070010874 msleep(10);
10875 }
10876
10877 tg3_disable_ints(tp);
10878
Matt Carlson4f125f42009-09-01 12:55:02 +000010879 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010880
Matt Carlson4f125f42009-09-01 12:55:02 +000010881 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010882
10883 if (err)
10884 return err;
10885
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010886 if (intr_ok) {
10887 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000010888 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010889 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
10890 tw32(MSGINT_MODE, val);
10891 }
Michael Chan79381092005-04-21 17:13:59 -070010892 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010893 }
Michael Chan79381092005-04-21 17:13:59 -070010894
10895 return -EIO;
10896}
10897
10898/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
10899 * successfully restored
10900 */
10901static int tg3_test_msi(struct tg3 *tp)
10902{
Michael Chan79381092005-04-21 17:13:59 -070010903 int err;
10904 u16 pci_cmd;
10905
Joe Perches63c3a662011-04-26 08:12:10 +000010906 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070010907 return 0;
10908
10909 /* Turn off SERR reporting in case MSI terminates with Master
10910 * Abort.
10911 */
10912 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
10913 pci_write_config_word(tp->pdev, PCI_COMMAND,
10914 pci_cmd & ~PCI_COMMAND_SERR);
10915
10916 err = tg3_test_interrupt(tp);
10917
10918 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
10919
10920 if (!err)
10921 return 0;
10922
10923 /* other failures */
10924 if (err != -EIO)
10925 return err;
10926
10927 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010928 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
10929 "to INTx mode. Please report this failure to the PCI "
10930 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070010931
Matt Carlson4f125f42009-09-01 12:55:02 +000010932 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000010933
Michael Chan79381092005-04-21 17:13:59 -070010934 pci_disable_msi(tp->pdev);
10935
Joe Perches63c3a662011-04-26 08:12:10 +000010936 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000010937 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070010938
Matt Carlson4f125f42009-09-01 12:55:02 +000010939 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010940 if (err)
10941 return err;
10942
10943 /* Need to reset the chip because the MSI cycle may have terminated
10944 * with Master Abort.
10945 */
David S. Millerf47c11e2005-06-24 20:18:35 -070010946 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010947
Michael Chan944d9802005-05-29 14:57:48 -070010948 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000010949 err = tg3_init_hw(tp, true);
Michael Chan79381092005-04-21 17:13:59 -070010950
David S. Millerf47c11e2005-06-24 20:18:35 -070010951 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010952
10953 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000010954 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070010955
10956 return err;
10957}
10958
Matt Carlson9e9fd122009-01-19 16:57:45 -080010959static int tg3_request_firmware(struct tg3 *tp)
10960{
Nithin Sujir77997ea2013-03-06 17:02:32 +000010961 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson9e9fd122009-01-19 16:57:45 -080010962
10963 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010964 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
10965 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010966 return -ENOENT;
10967 }
10968
Nithin Sujir77997ea2013-03-06 17:02:32 +000010969 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson9e9fd122009-01-19 16:57:45 -080010970
10971 /* Firmware blob starts with version numbers, followed by
10972 * start address and _full_ length including BSS sections
10973 * (which must be longer than the actual data, of course
10974 */
10975
Nithin Sujir77997ea2013-03-06 17:02:32 +000010976 tp->fw_len = be32_to_cpu(fw_hdr->len); /* includes bss */
10977 if (tp->fw_len < (tp->fw->size - TG3_FW_HDR_LEN)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010978 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
10979 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010980 release_firmware(tp->fw);
10981 tp->fw = NULL;
10982 return -EINVAL;
10983 }
10984
10985 /* We no longer need firmware; we have it. */
10986 tp->fw_needed = NULL;
10987 return 0;
10988}
10989
Michael Chan91024262012-09-28 07:12:38 +000010990static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000010991{
Michael Chan91024262012-09-28 07:12:38 +000010992 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000010993
Michael Chan91024262012-09-28 07:12:38 +000010994 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000010995 /* We want as many rx rings enabled as there are cpus.
10996 * In multiqueue MSI-X mode, the first MSI-X vector
10997 * only deals with link interrupts, etc, so we add
10998 * one to the number of vectors we are requesting.
10999 */
Michael Chan91024262012-09-28 07:12:38 +000011000 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000011001 }
Matt Carlson679563f2009-09-01 12:55:46 +000011002
Michael Chan91024262012-09-28 07:12:38 +000011003 return irq_cnt;
11004}
11005
11006static bool tg3_enable_msix(struct tg3 *tp)
11007{
11008 int i, rc;
Michael Chan86449942012-10-02 20:31:14 -070011009 struct msix_entry msix_ent[TG3_IRQ_MAX_VECS];
Michael Chan91024262012-09-28 07:12:38 +000011010
Michael Chan09681692012-09-28 07:12:42 +000011011 tp->txq_cnt = tp->txq_req;
11012 tp->rxq_cnt = tp->rxq_req;
11013 if (!tp->rxq_cnt)
11014 tp->rxq_cnt = netif_get_num_default_rss_queues();
Michael Chan91024262012-09-28 07:12:38 +000011015 if (tp->rxq_cnt > tp->rxq_max)
11016 tp->rxq_cnt = tp->rxq_max;
Michael Chancf6d6ea2012-09-28 07:12:43 +000011017
11018 /* Disable multiple TX rings by default. Simple round-robin hardware
11019 * scheduling of the TX rings can cause starvation of rings with
11020 * small packets when other rings have TSO or jumbo packets.
11021 */
11022 if (!tp->txq_req)
11023 tp->txq_cnt = 1;
Michael Chan91024262012-09-28 07:12:38 +000011024
11025 tp->irq_cnt = tg3_irq_count(tp);
11026
Matt Carlson679563f2009-09-01 12:55:46 +000011027 for (i = 0; i < tp->irq_max; i++) {
11028 msix_ent[i].entry = i;
11029 msix_ent[i].vector = 0;
11030 }
11031
11032 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011033 if (rc < 0) {
11034 return false;
11035 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +000011036 if (pci_enable_msix(tp->pdev, msix_ent, rc))
11037 return false;
Joe Perches05dbe002010-02-17 19:44:19 +000011038 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
11039 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000011040 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000011041 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000011042 if (tp->txq_cnt)
11043 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000011044 }
11045
11046 for (i = 0; i < tp->irq_max; i++)
11047 tp->napi[i].irq_vec = msix_ent[i].vector;
11048
Michael Chan49a359e2012-09-28 07:12:37 +000011049 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011050 pci_disable_msix(tp->pdev);
11051 return false;
11052 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000011053
Michael Chan91024262012-09-28 07:12:38 +000011054 if (tp->irq_cnt == 1)
11055 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000011056
Michael Chan91024262012-09-28 07:12:38 +000011057 tg3_flag_set(tp, ENABLE_RSS);
11058
11059 if (tp->txq_cnt > 1)
11060 tg3_flag_set(tp, ENABLE_TSS);
11061
11062 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011063
Matt Carlson679563f2009-09-01 12:55:46 +000011064 return true;
11065}
11066
Matt Carlson07b01732009-08-28 14:01:15 +000011067static void tg3_ints_init(struct tg3 *tp)
11068{
Joe Perches63c3a662011-04-26 08:12:10 +000011069 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
11070 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000011071 /* All MSI supporting chips should support tagged
11072 * status. Assert that this is the case.
11073 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000011074 netdev_warn(tp->dev,
11075 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000011076 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000011077 }
Matt Carlson4f125f42009-09-01 12:55:02 +000011078
Joe Perches63c3a662011-04-26 08:12:10 +000011079 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
11080 tg3_flag_set(tp, USING_MSIX);
11081 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
11082 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000011083
Joe Perches63c3a662011-04-26 08:12:10 +000011084 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011085 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000011086 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000011087 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000011088 if (!tg3_flag(tp, 1SHOT_MSI))
11089 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000011090 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
11091 }
11092defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000011093 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011094 tp->irq_cnt = 1;
11095 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000011096 }
11097
11098 if (tp->irq_cnt == 1) {
11099 tp->txq_cnt = 1;
11100 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011101 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070011102 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000011103 }
Matt Carlson07b01732009-08-28 14:01:15 +000011104}
11105
11106static void tg3_ints_fini(struct tg3 *tp)
11107{
Joe Perches63c3a662011-04-26 08:12:10 +000011108 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000011109 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011110 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000011111 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011112 tg3_flag_clear(tp, USING_MSI);
11113 tg3_flag_clear(tp, USING_MSIX);
11114 tg3_flag_clear(tp, ENABLE_RSS);
11115 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000011116}
11117
Matt Carlsonbe947302012-12-03 19:36:57 +000011118static int tg3_start(struct tg3 *tp, bool reset_phy, bool test_irq,
11119 bool init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011120{
Michael Chand8f4cd32012-09-28 07:12:40 +000011121 struct net_device *dev = tp->dev;
Matt Carlson4f125f42009-09-01 12:55:02 +000011122 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011123
Matt Carlson679563f2009-09-01 12:55:46 +000011124 /*
11125 * Setup interrupts first so we know how
11126 * many NAPI resources to allocate
11127 */
11128 tg3_ints_init(tp);
11129
Matt Carlson90415472011-12-16 13:33:23 +000011130 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000011131
Linus Torvalds1da177e2005-04-16 15:20:36 -070011132 /* The placement of this call is tied
11133 * to the setup and use of Host TX descriptors.
11134 */
11135 err = tg3_alloc_consistent(tp);
11136 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000011137 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011138
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011139 tg3_napi_init(tp);
11140
Matt Carlsonfed97812009-09-01 13:10:19 +000011141 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070011142
Matt Carlson4f125f42009-09-01 12:55:02 +000011143 for (i = 0; i < tp->irq_cnt; i++) {
11144 struct tg3_napi *tnapi = &tp->napi[i];
11145 err = tg3_request_irq(tp, i);
11146 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000011147 for (i--; i >= 0; i--) {
11148 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000011149 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000011150 }
11151 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000011152 }
11153 }
Matt Carlson07b01732009-08-28 14:01:15 +000011154
David S. Millerf47c11e2005-06-24 20:18:35 -070011155 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011156
Michael Chand8f4cd32012-09-28 07:12:40 +000011157 err = tg3_init_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011158 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070011159 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011160 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011161 }
11162
David S. Millerf47c11e2005-06-24 20:18:35 -070011163 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011164
Matt Carlson07b01732009-08-28 14:01:15 +000011165 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000011166 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011167
Michael Chand8f4cd32012-09-28 07:12:40 +000011168 if (test_irq && tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070011169 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070011170
Michael Chan79381092005-04-21 17:13:59 -070011171 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070011172 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070011173 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070011174 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070011175 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070011176
Matt Carlson679563f2009-09-01 12:55:46 +000011177 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070011178 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080011179
Joe Perches63c3a662011-04-26 08:12:10 +000011180 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011181 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011182
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011183 tw32(PCIE_TRANSACTION_CFG,
11184 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011185 }
Michael Chan79381092005-04-21 17:13:59 -070011186 }
11187
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011188 tg3_phy_start(tp);
11189
Michael Chanaed93e02012-07-16 16:24:02 +000011190 tg3_hwmon_open(tp);
11191
David S. Millerf47c11e2005-06-24 20:18:35 -070011192 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011193
Matt Carlson21f76382012-02-22 12:35:21 +000011194 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011195 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011196 tg3_enable_ints(tp);
11197
Matt Carlsonbe947302012-12-03 19:36:57 +000011198 if (init)
11199 tg3_ptp_init(tp);
11200 else
11201 tg3_ptp_resume(tp);
11202
11203
David S. Millerf47c11e2005-06-24 20:18:35 -070011204 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011205
Matt Carlsonfe5f5782009-09-01 13:09:39 +000011206 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011207
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000011208 /*
11209 * Reset loopback feature if it was turned on while the device was down
11210 * make sure that it's installed properly now.
11211 */
11212 if (dev->features & NETIF_F_LOOPBACK)
11213 tg3_set_loopback(dev, dev->features);
11214
Linus Torvalds1da177e2005-04-16 15:20:36 -070011215 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000011216
Matt Carlson679563f2009-09-01 12:55:46 +000011217err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000011218 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11219 struct tg3_napi *tnapi = &tp->napi[i];
11220 free_irq(tnapi->irq_vec, tnapi);
11221 }
Matt Carlson07b01732009-08-28 14:01:15 +000011222
Matt Carlson679563f2009-09-01 12:55:46 +000011223err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000011224 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011225 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000011226 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000011227
11228err_out1:
11229 tg3_ints_fini(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011230
Matt Carlson07b01732009-08-28 14:01:15 +000011231 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011232}
11233
Michael Chan65138592012-09-28 07:12:41 +000011234static void tg3_stop(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011235{
Matt Carlson4f125f42009-09-01 12:55:02 +000011236 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011237
Matt Carlsondb219972011-11-04 09:15:03 +000011238 tg3_reset_task_cancel(tp);
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000011239 tg3_netif_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011240
Matt Carlson21f76382012-02-22 12:35:21 +000011241 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011242
Michael Chanaed93e02012-07-16 16:24:02 +000011243 tg3_hwmon_close(tp);
11244
Matt Carlson24bb4fb2009-10-05 17:55:29 +000011245 tg3_phy_stop(tp);
11246
David S. Millerf47c11e2005-06-24 20:18:35 -070011247 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011248
11249 tg3_disable_ints(tp);
11250
Michael Chan944d9802005-05-29 14:57:48 -070011251 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011252 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011253 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011254
David S. Millerf47c11e2005-06-24 20:18:35 -070011255 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011256
Matt Carlson4f125f42009-09-01 12:55:02 +000011257 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11258 struct tg3_napi *tnapi = &tp->napi[i];
11259 free_irq(tnapi->irq_vec, tnapi);
11260 }
Matt Carlson07b01732009-08-28 14:01:15 +000011261
11262 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011263
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011264 tg3_napi_fini(tp);
11265
Linus Torvalds1da177e2005-04-16 15:20:36 -070011266 tg3_free_consistent(tp);
Michael Chan65138592012-09-28 07:12:41 +000011267}
11268
Michael Chand8f4cd32012-09-28 07:12:40 +000011269static int tg3_open(struct net_device *dev)
11270{
11271 struct tg3 *tp = netdev_priv(dev);
11272 int err;
11273
11274 if (tp->fw_needed) {
11275 err = tg3_request_firmware(tp);
Nithin Sujirc4dab502013-03-06 17:02:34 +000011276 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
11277 if (err) {
11278 netdev_warn(tp->dev, "EEE capability disabled\n");
11279 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11280 } else if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
11281 netdev_warn(tp->dev, "EEE capability restored\n");
11282 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
11283 }
11284 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Michael Chand8f4cd32012-09-28 07:12:40 +000011285 if (err)
11286 return err;
11287 } else if (err) {
11288 netdev_warn(tp->dev, "TSO capability disabled\n");
11289 tg3_flag_clear(tp, TSO_CAPABLE);
11290 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
11291 netdev_notice(tp->dev, "TSO capability restored\n");
11292 tg3_flag_set(tp, TSO_CAPABLE);
11293 }
11294 }
11295
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011296 tg3_carrier_off(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011297
11298 err = tg3_power_up(tp);
11299 if (err)
11300 return err;
11301
11302 tg3_full_lock(tp, 0);
11303
11304 tg3_disable_ints(tp);
11305 tg3_flag_clear(tp, INIT_COMPLETE);
11306
11307 tg3_full_unlock(tp);
11308
Nithin Sujir942d1af2013-04-09 08:48:07 +000011309 err = tg3_start(tp,
11310 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN),
11311 true, true);
Michael Chand8f4cd32012-09-28 07:12:40 +000011312 if (err) {
11313 tg3_frob_aux_power(tp, false);
11314 pci_set_power_state(tp->pdev, PCI_D3hot);
11315 }
Matt Carlsonbe947302012-12-03 19:36:57 +000011316
Matt Carlson7d41e492012-12-03 19:36:58 +000011317 if (tg3_flag(tp, PTP_CAPABLE)) {
11318 tp->ptp_clock = ptp_clock_register(&tp->ptp_info,
11319 &tp->pdev->dev);
11320 if (IS_ERR(tp->ptp_clock))
11321 tp->ptp_clock = NULL;
11322 }
11323
Linus Torvalds1da177e2005-04-16 15:20:36 -070011324 return err;
11325}
11326
11327static int tg3_close(struct net_device *dev)
11328{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011329 struct tg3 *tp = netdev_priv(dev);
11330
Matt Carlsonbe947302012-12-03 19:36:57 +000011331 tg3_ptp_fini(tp);
11332
Michael Chan65138592012-09-28 07:12:41 +000011333 tg3_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011334
11335 /* Clear stats across close / open calls */
11336 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
11337 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011338
11339 tg3_power_down(tp);
11340
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011341 tg3_carrier_off(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011342
11343 return 0;
11344}
11345
11346static inline u64 get_stat64(tg3_stat64_t *val)
11347{
11348 return ((u64)val->high << 32) | ((u64)val->low);
11349}
11350
11351static u64 tg3_calc_crc_errors(struct tg3 *tp)
11352{
11353 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11354
11355 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000011356 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
11357 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011358 u32 val;
11359
11360 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
11361 tg3_writephy(tp, MII_TG3_TEST1,
11362 val | MII_TG3_TEST1_CRC_EN);
11363 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
11364 } else
11365 val = 0;
11366
11367 tp->phy_crc_errors += val;
11368
11369 return tp->phy_crc_errors;
11370 }
11371
11372 return get_stat64(&hw_stats->rx_fcs_errors);
11373}
11374
11375#define ESTAT_ADD(member) \
11376 estats->member = old_estats->member + \
11377 get_stat64(&hw_stats->member)
11378
11379static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
11380{
11381 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
11382 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11383
11384 ESTAT_ADD(rx_octets);
11385 ESTAT_ADD(rx_fragments);
11386 ESTAT_ADD(rx_ucast_packets);
11387 ESTAT_ADD(rx_mcast_packets);
11388 ESTAT_ADD(rx_bcast_packets);
11389 ESTAT_ADD(rx_fcs_errors);
11390 ESTAT_ADD(rx_align_errors);
11391 ESTAT_ADD(rx_xon_pause_rcvd);
11392 ESTAT_ADD(rx_xoff_pause_rcvd);
11393 ESTAT_ADD(rx_mac_ctrl_rcvd);
11394 ESTAT_ADD(rx_xoff_entered);
11395 ESTAT_ADD(rx_frame_too_long_errors);
11396 ESTAT_ADD(rx_jabbers);
11397 ESTAT_ADD(rx_undersize_packets);
11398 ESTAT_ADD(rx_in_length_errors);
11399 ESTAT_ADD(rx_out_length_errors);
11400 ESTAT_ADD(rx_64_or_less_octet_packets);
11401 ESTAT_ADD(rx_65_to_127_octet_packets);
11402 ESTAT_ADD(rx_128_to_255_octet_packets);
11403 ESTAT_ADD(rx_256_to_511_octet_packets);
11404 ESTAT_ADD(rx_512_to_1023_octet_packets);
11405 ESTAT_ADD(rx_1024_to_1522_octet_packets);
11406 ESTAT_ADD(rx_1523_to_2047_octet_packets);
11407 ESTAT_ADD(rx_2048_to_4095_octet_packets);
11408 ESTAT_ADD(rx_4096_to_8191_octet_packets);
11409 ESTAT_ADD(rx_8192_to_9022_octet_packets);
11410
11411 ESTAT_ADD(tx_octets);
11412 ESTAT_ADD(tx_collisions);
11413 ESTAT_ADD(tx_xon_sent);
11414 ESTAT_ADD(tx_xoff_sent);
11415 ESTAT_ADD(tx_flow_control);
11416 ESTAT_ADD(tx_mac_errors);
11417 ESTAT_ADD(tx_single_collisions);
11418 ESTAT_ADD(tx_mult_collisions);
11419 ESTAT_ADD(tx_deferred);
11420 ESTAT_ADD(tx_excessive_collisions);
11421 ESTAT_ADD(tx_late_collisions);
11422 ESTAT_ADD(tx_collide_2times);
11423 ESTAT_ADD(tx_collide_3times);
11424 ESTAT_ADD(tx_collide_4times);
11425 ESTAT_ADD(tx_collide_5times);
11426 ESTAT_ADD(tx_collide_6times);
11427 ESTAT_ADD(tx_collide_7times);
11428 ESTAT_ADD(tx_collide_8times);
11429 ESTAT_ADD(tx_collide_9times);
11430 ESTAT_ADD(tx_collide_10times);
11431 ESTAT_ADD(tx_collide_11times);
11432 ESTAT_ADD(tx_collide_12times);
11433 ESTAT_ADD(tx_collide_13times);
11434 ESTAT_ADD(tx_collide_14times);
11435 ESTAT_ADD(tx_collide_15times);
11436 ESTAT_ADD(tx_ucast_packets);
11437 ESTAT_ADD(tx_mcast_packets);
11438 ESTAT_ADD(tx_bcast_packets);
11439 ESTAT_ADD(tx_carrier_sense_errors);
11440 ESTAT_ADD(tx_discards);
11441 ESTAT_ADD(tx_errors);
11442
11443 ESTAT_ADD(dma_writeq_full);
11444 ESTAT_ADD(dma_write_prioq_full);
11445 ESTAT_ADD(rxbds_empty);
11446 ESTAT_ADD(rx_discards);
11447 ESTAT_ADD(rx_errors);
11448 ESTAT_ADD(rx_threshold_hit);
11449
11450 ESTAT_ADD(dma_readq_full);
11451 ESTAT_ADD(dma_read_prioq_full);
11452 ESTAT_ADD(tx_comp_queue_full);
11453
11454 ESTAT_ADD(ring_set_send_prod_index);
11455 ESTAT_ADD(ring_status_update);
11456 ESTAT_ADD(nic_irqs);
11457 ESTAT_ADD(nic_avoided_irqs);
11458 ESTAT_ADD(nic_tx_threshold_hit);
11459
Matt Carlson4452d092011-05-19 12:12:51 +000011460 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011461}
11462
Matt Carlson65ec6982012-02-28 23:33:37 +000011463static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011464{
Eric Dumazet511d2222010-07-07 20:44:24 +000011465 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011466 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11467
Linus Torvalds1da177e2005-04-16 15:20:36 -070011468 stats->rx_packets = old_stats->rx_packets +
11469 get_stat64(&hw_stats->rx_ucast_packets) +
11470 get_stat64(&hw_stats->rx_mcast_packets) +
11471 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011472
Linus Torvalds1da177e2005-04-16 15:20:36 -070011473 stats->tx_packets = old_stats->tx_packets +
11474 get_stat64(&hw_stats->tx_ucast_packets) +
11475 get_stat64(&hw_stats->tx_mcast_packets) +
11476 get_stat64(&hw_stats->tx_bcast_packets);
11477
11478 stats->rx_bytes = old_stats->rx_bytes +
11479 get_stat64(&hw_stats->rx_octets);
11480 stats->tx_bytes = old_stats->tx_bytes +
11481 get_stat64(&hw_stats->tx_octets);
11482
11483 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070011484 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011485 stats->tx_errors = old_stats->tx_errors +
11486 get_stat64(&hw_stats->tx_errors) +
11487 get_stat64(&hw_stats->tx_mac_errors) +
11488 get_stat64(&hw_stats->tx_carrier_sense_errors) +
11489 get_stat64(&hw_stats->tx_discards);
11490
11491 stats->multicast = old_stats->multicast +
11492 get_stat64(&hw_stats->rx_mcast_packets);
11493 stats->collisions = old_stats->collisions +
11494 get_stat64(&hw_stats->tx_collisions);
11495
11496 stats->rx_length_errors = old_stats->rx_length_errors +
11497 get_stat64(&hw_stats->rx_frame_too_long_errors) +
11498 get_stat64(&hw_stats->rx_undersize_packets);
11499
11500 stats->rx_over_errors = old_stats->rx_over_errors +
11501 get_stat64(&hw_stats->rxbds_empty);
11502 stats->rx_frame_errors = old_stats->rx_frame_errors +
11503 get_stat64(&hw_stats->rx_align_errors);
11504 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11505 get_stat64(&hw_stats->tx_discards);
11506 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11507 get_stat64(&hw_stats->tx_carrier_sense_errors);
11508
11509 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000011510 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011511
John W. Linville4f63b872005-09-12 14:43:18 -070011512 stats->rx_missed_errors = old_stats->rx_missed_errors +
11513 get_stat64(&hw_stats->rx_discards);
11514
Eric Dumazetb0057c52010-10-10 19:55:52 +000011515 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000011516 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011517}
11518
Linus Torvalds1da177e2005-04-16 15:20:36 -070011519static int tg3_get_regs_len(struct net_device *dev)
11520{
Matt Carlson97bd8e42011-04-13 11:05:04 +000011521 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011522}
11523
11524static void tg3_get_regs(struct net_device *dev,
11525 struct ethtool_regs *regs, void *_p)
11526{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011527 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011528
11529 regs->version = 0;
11530
Matt Carlson97bd8e42011-04-13 11:05:04 +000011531 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011532
Matt Carlson80096062010-08-02 11:26:06 +000011533 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011534 return;
11535
David S. Millerf47c11e2005-06-24 20:18:35 -070011536 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011537
Matt Carlson97bd8e42011-04-13 11:05:04 +000011538 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011539
David S. Millerf47c11e2005-06-24 20:18:35 -070011540 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011541}
11542
11543static int tg3_get_eeprom_len(struct net_device *dev)
11544{
11545 struct tg3 *tp = netdev_priv(dev);
11546
11547 return tp->nvram_size;
11548}
11549
Linus Torvalds1da177e2005-04-16 15:20:36 -070011550static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11551{
11552 struct tg3 *tp = netdev_priv(dev);
11553 int ret;
11554 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080011555 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011556 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011557
Joe Perches63c3a662011-04-26 08:12:10 +000011558 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011559 return -EINVAL;
11560
Matt Carlson80096062010-08-02 11:26:06 +000011561 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011562 return -EAGAIN;
11563
Linus Torvalds1da177e2005-04-16 15:20:36 -070011564 offset = eeprom->offset;
11565 len = eeprom->len;
11566 eeprom->len = 0;
11567
11568 eeprom->magic = TG3_EEPROM_MAGIC;
11569
11570 if (offset & 3) {
11571 /* adjustments to start on required 4 byte boundary */
11572 b_offset = offset & 3;
11573 b_count = 4 - b_offset;
11574 if (b_count > len) {
11575 /* i.e. offset=1 len=2 */
11576 b_count = len;
11577 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000011578 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011579 if (ret)
11580 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000011581 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011582 len -= b_count;
11583 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011584 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011585 }
11586
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011587 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011588 pd = &data[eeprom->len];
11589 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011590 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011591 if (ret) {
11592 eeprom->len += i;
11593 return ret;
11594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011595 memcpy(pd + i, &val, 4);
11596 }
11597 eeprom->len += i;
11598
11599 if (len & 3) {
11600 /* read last bytes not ending on 4 byte boundary */
11601 pd = &data[eeprom->len];
11602 b_count = len & 3;
11603 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011604 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011605 if (ret)
11606 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011607 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011608 eeprom->len += b_count;
11609 }
11610 return 0;
11611}
11612
Linus Torvalds1da177e2005-04-16 15:20:36 -070011613static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11614{
11615 struct tg3 *tp = netdev_priv(dev);
11616 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011617 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011618 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011619 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011620
Matt Carlson80096062010-08-02 11:26:06 +000011621 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011622 return -EAGAIN;
11623
Joe Perches63c3a662011-04-26 08:12:10 +000011624 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000011625 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011626 return -EINVAL;
11627
11628 offset = eeprom->offset;
11629 len = eeprom->len;
11630
11631 if ((b_offset = (offset & 3))) {
11632 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011633 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011634 if (ret)
11635 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011636 len += b_offset;
11637 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070011638 if (len < 4)
11639 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011640 }
11641
11642 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070011643 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011644 /* adjustments to end on required 4 byte boundary */
11645 odd_len = 1;
11646 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011647 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011648 if (ret)
11649 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011650 }
11651
11652 buf = data;
11653 if (b_offset || odd_len) {
11654 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011655 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011656 return -ENOMEM;
11657 if (b_offset)
11658 memcpy(buf, &start, 4);
11659 if (odd_len)
11660 memcpy(buf+len-4, &end, 4);
11661 memcpy(buf + b_offset, data, eeprom->len);
11662 }
11663
11664 ret = tg3_nvram_write_block(tp, offset, len, buf);
11665
11666 if (buf != data)
11667 kfree(buf);
11668
11669 return ret;
11670}
11671
11672static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11673{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011674 struct tg3 *tp = netdev_priv(dev);
11675
Joe Perches63c3a662011-04-26 08:12:10 +000011676 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011677 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011678 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011679 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011680 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11681 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011682 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011683
Linus Torvalds1da177e2005-04-16 15:20:36 -070011684 cmd->supported = (SUPPORTED_Autoneg);
11685
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011686 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011687 cmd->supported |= (SUPPORTED_1000baseT_Half |
11688 SUPPORTED_1000baseT_Full);
11689
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011690 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011691 cmd->supported |= (SUPPORTED_100baseT_Half |
11692 SUPPORTED_100baseT_Full |
11693 SUPPORTED_10baseT_Half |
11694 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080011695 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070011696 cmd->port = PORT_TP;
11697 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011698 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070011699 cmd->port = PORT_FIBRE;
11700 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011701
Linus Torvalds1da177e2005-04-16 15:20:36 -070011702 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000011703 if (tg3_flag(tp, PAUSE_AUTONEG)) {
11704 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
11705 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11706 cmd->advertising |= ADVERTISED_Pause;
11707 } else {
11708 cmd->advertising |= ADVERTISED_Pause |
11709 ADVERTISED_Asym_Pause;
11710 }
11711 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11712 cmd->advertising |= ADVERTISED_Asym_Pause;
11713 }
11714 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011715 if (netif_running(dev) && tp->link_up) {
David Decotigny70739492011-04-27 18:32:40 +000011716 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011717 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000011718 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011719 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
11720 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
11721 cmd->eth_tp_mdix = ETH_TP_MDI_X;
11722 else
11723 cmd->eth_tp_mdix = ETH_TP_MDI;
11724 }
Matt Carlson64c22182010-10-14 10:37:44 +000011725 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000011726 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
11727 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011728 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011729 }
Matt Carlson882e9792009-09-01 13:21:36 +000011730 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011731 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011732 cmd->autoneg = tp->link_config.autoneg;
11733 cmd->maxtxpkt = 0;
11734 cmd->maxrxpkt = 0;
11735 return 0;
11736}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011737
Linus Torvalds1da177e2005-04-16 15:20:36 -070011738static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11739{
11740 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000011741 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011742
Joe Perches63c3a662011-04-26 08:12:10 +000011743 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011744 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011745 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011746 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011747 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11748 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011749 }
11750
Matt Carlson7e5856b2009-02-25 14:23:01 +000011751 if (cmd->autoneg != AUTONEG_ENABLE &&
11752 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070011753 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011754
11755 if (cmd->autoneg == AUTONEG_DISABLE &&
11756 cmd->duplex != DUPLEX_FULL &&
11757 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070011758 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011759
Matt Carlson7e5856b2009-02-25 14:23:01 +000011760 if (cmd->autoneg == AUTONEG_ENABLE) {
11761 u32 mask = ADVERTISED_Autoneg |
11762 ADVERTISED_Pause |
11763 ADVERTISED_Asym_Pause;
11764
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011765 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011766 mask |= ADVERTISED_1000baseT_Half |
11767 ADVERTISED_1000baseT_Full;
11768
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011769 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011770 mask |= ADVERTISED_100baseT_Half |
11771 ADVERTISED_100baseT_Full |
11772 ADVERTISED_10baseT_Half |
11773 ADVERTISED_10baseT_Full |
11774 ADVERTISED_TP;
11775 else
11776 mask |= ADVERTISED_FIBRE;
11777
11778 if (cmd->advertising & ~mask)
11779 return -EINVAL;
11780
11781 mask &= (ADVERTISED_1000baseT_Half |
11782 ADVERTISED_1000baseT_Full |
11783 ADVERTISED_100baseT_Half |
11784 ADVERTISED_100baseT_Full |
11785 ADVERTISED_10baseT_Half |
11786 ADVERTISED_10baseT_Full);
11787
11788 cmd->advertising &= mask;
11789 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011790 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000011791 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011792 return -EINVAL;
11793
11794 if (cmd->duplex != DUPLEX_FULL)
11795 return -EINVAL;
11796 } else {
David Decotigny25db0332011-04-27 18:32:39 +000011797 if (speed != SPEED_100 &&
11798 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011799 return -EINVAL;
11800 }
11801 }
11802
David S. Millerf47c11e2005-06-24 20:18:35 -070011803 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011804
11805 tp->link_config.autoneg = cmd->autoneg;
11806 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070011807 tp->link_config.advertising = (cmd->advertising |
11808 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000011809 tp->link_config.speed = SPEED_UNKNOWN;
11810 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011811 } else {
11812 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000011813 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011814 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011815 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011816
Nithin Sujirfdad8de2013-04-09 08:48:08 +000011817 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
11818
Nithin Sujirce20f162013-04-09 08:48:04 +000011819 tg3_warn_mgmt_link_flap(tp);
11820
Linus Torvalds1da177e2005-04-16 15:20:36 -070011821 if (netif_running(dev))
Joe Perches953c96e2013-04-09 10:18:14 +000011822 tg3_setup_phy(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011823
David S. Millerf47c11e2005-06-24 20:18:35 -070011824 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011825
Linus Torvalds1da177e2005-04-16 15:20:36 -070011826 return 0;
11827}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011828
Linus Torvalds1da177e2005-04-16 15:20:36 -070011829static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
11830{
11831 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011832
Rick Jones68aad782011-11-07 13:29:27 +000011833 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
11834 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
11835 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
11836 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011837}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011838
Linus Torvalds1da177e2005-04-16 15:20:36 -070011839static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11840{
11841 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011842
Joe Perches63c3a662011-04-26 08:12:10 +000011843 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070011844 wol->supported = WAKE_MAGIC;
11845 else
11846 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011847 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011848 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011849 wol->wolopts = WAKE_MAGIC;
11850 memset(&wol->sopass, 0, sizeof(wol->sopass));
11851}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011852
Linus Torvalds1da177e2005-04-16 15:20:36 -070011853static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11854{
11855 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011856 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011857
Linus Torvalds1da177e2005-04-16 15:20:36 -070011858 if (wol->wolopts & ~WAKE_MAGIC)
11859 return -EINVAL;
11860 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011861 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011862 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011863
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011864 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
11865
David S. Millerf47c11e2005-06-24 20:18:35 -070011866 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011867 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000011868 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011869 else
Joe Perches63c3a662011-04-26 08:12:10 +000011870 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070011871 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011872
Linus Torvalds1da177e2005-04-16 15:20:36 -070011873 return 0;
11874}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011875
Linus Torvalds1da177e2005-04-16 15:20:36 -070011876static u32 tg3_get_msglevel(struct net_device *dev)
11877{
11878 struct tg3 *tp = netdev_priv(dev);
11879 return tp->msg_enable;
11880}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011881
Linus Torvalds1da177e2005-04-16 15:20:36 -070011882static void tg3_set_msglevel(struct net_device *dev, u32 value)
11883{
11884 struct tg3 *tp = netdev_priv(dev);
11885 tp->msg_enable = value;
11886}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011887
Linus Torvalds1da177e2005-04-16 15:20:36 -070011888static int tg3_nway_reset(struct net_device *dev)
11889{
11890 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011891 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011892
Linus Torvalds1da177e2005-04-16 15:20:36 -070011893 if (!netif_running(dev))
11894 return -EAGAIN;
11895
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011896 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070011897 return -EINVAL;
11898
Nithin Sujirce20f162013-04-09 08:48:04 +000011899 tg3_warn_mgmt_link_flap(tp);
11900
Joe Perches63c3a662011-04-26 08:12:10 +000011901 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011902 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011903 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011904 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011905 } else {
11906 u32 bmcr;
11907
11908 spin_lock_bh(&tp->lock);
11909 r = -EINVAL;
11910 tg3_readphy(tp, MII_BMCR, &bmcr);
11911 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
11912 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011913 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011914 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
11915 BMCR_ANENABLE);
11916 r = 0;
11917 }
11918 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011919 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011920
Linus Torvalds1da177e2005-04-16 15:20:36 -070011921 return r;
11922}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011923
Linus Torvalds1da177e2005-04-16 15:20:36 -070011924static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11925{
11926 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011927
Matt Carlson2c49a442010-09-30 10:34:35 +000011928 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000011929 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000011930 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080011931 else
11932 ering->rx_jumbo_max_pending = 0;
11933
11934 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011935
11936 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000011937 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080011938 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
11939 else
11940 ering->rx_jumbo_pending = 0;
11941
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011942 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011943}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011944
Linus Torvalds1da177e2005-04-16 15:20:36 -070011945static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11946{
11947 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000011948 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011949
Matt Carlson2c49a442010-09-30 10:34:35 +000011950 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
11951 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070011952 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
11953 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011954 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070011955 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011956 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011957
Michael Chanbbe832c2005-06-24 20:20:04 -070011958 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011959 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011960 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011961 irq_sync = 1;
11962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011963
Michael Chanbbe832c2005-06-24 20:20:04 -070011964 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011965
Linus Torvalds1da177e2005-04-16 15:20:36 -070011966 tp->rx_pending = ering->rx_pending;
11967
Joe Perches63c3a662011-04-26 08:12:10 +000011968 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070011969 tp->rx_pending > 63)
11970 tp->rx_pending = 63;
11971 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000011972
Matt Carlson6fd45cb2010-09-15 08:59:57 +000011973 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000011974 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011975
11976 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070011977 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000011978 err = tg3_restart_hw(tp, false);
Michael Chanb9ec6c12006-07-25 16:37:27 -070011979 if (!err)
11980 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011981 }
11982
David S. Millerf47c11e2005-06-24 20:18:35 -070011983 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011984
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011985 if (irq_sync && !err)
11986 tg3_phy_start(tp);
11987
Michael Chanb9ec6c12006-07-25 16:37:27 -070011988 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011989}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011990
Linus Torvalds1da177e2005-04-16 15:20:36 -070011991static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
11992{
11993 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011994
Joe Perches63c3a662011-04-26 08:12:10 +000011995 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080011996
Matt Carlson4a2db502011-12-08 14:40:17 +000011997 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080011998 epause->rx_pause = 1;
11999 else
12000 epause->rx_pause = 0;
12001
Matt Carlson4a2db502011-12-08 14:40:17 +000012002 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080012003 epause->tx_pause = 1;
12004 else
12005 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012006}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012007
Linus Torvalds1da177e2005-04-16 15:20:36 -070012008static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12009{
12010 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012011 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012012
Nithin Sujirce20f162013-04-09 08:48:04 +000012013 if (tp->link_config.autoneg == AUTONEG_ENABLE)
12014 tg3_warn_mgmt_link_flap(tp);
12015
Joe Perches63c3a662011-04-26 08:12:10 +000012016 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000012017 u32 newadv;
12018 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012019
Matt Carlson27121682010-02-17 15:16:57 +000012020 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012021
Matt Carlson27121682010-02-17 15:16:57 +000012022 if (!(phydev->supported & SUPPORTED_Pause) ||
12023 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000012024 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000012025 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012026
Matt Carlson27121682010-02-17 15:16:57 +000012027 tp->link_config.flowctrl = 0;
12028 if (epause->rx_pause) {
12029 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012030
Matt Carlson27121682010-02-17 15:16:57 +000012031 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080012032 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000012033 newadv = ADVERTISED_Pause;
12034 } else
12035 newadv = ADVERTISED_Pause |
12036 ADVERTISED_Asym_Pause;
12037 } else if (epause->tx_pause) {
12038 tp->link_config.flowctrl |= FLOW_CTRL_TX;
12039 newadv = ADVERTISED_Asym_Pause;
12040 } else
12041 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012042
Matt Carlson27121682010-02-17 15:16:57 +000012043 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012044 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012045 else
Joe Perches63c3a662011-04-26 08:12:10 +000012046 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012047
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012048 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000012049 u32 oldadv = phydev->advertising &
12050 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
12051 if (oldadv != newadv) {
12052 phydev->advertising &=
12053 ~(ADVERTISED_Pause |
12054 ADVERTISED_Asym_Pause);
12055 phydev->advertising |= newadv;
12056 if (phydev->autoneg) {
12057 /*
12058 * Always renegotiate the link to
12059 * inform our link partner of our
12060 * flow control settings, even if the
12061 * flow control is forced. Let
12062 * tg3_adjust_link() do the final
12063 * flow control setup.
12064 */
12065 return phy_start_aneg(phydev);
12066 }
12067 }
12068
12069 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012070 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000012071 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012072 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000012073 ~(ADVERTISED_Pause |
12074 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012075 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012076 }
12077 } else {
12078 int irq_sync = 0;
12079
12080 if (netif_running(dev)) {
12081 tg3_netif_stop(tp);
12082 irq_sync = 1;
12083 }
12084
12085 tg3_full_lock(tp, irq_sync);
12086
12087 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012088 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012089 else
Joe Perches63c3a662011-04-26 08:12:10 +000012090 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012091 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012092 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012093 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012094 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012095 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012096 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012097 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012098 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012099
12100 if (netif_running(dev)) {
12101 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012102 err = tg3_restart_hw(tp, false);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012103 if (!err)
12104 tg3_netif_start(tp);
12105 }
12106
12107 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012109
Nithin Sujirfdad8de2013-04-09 08:48:08 +000012110 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
12111
Michael Chanb9ec6c12006-07-25 16:37:27 -070012112 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012113}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012114
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012115static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012116{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012117 switch (sset) {
12118 case ETH_SS_TEST:
12119 return TG3_NUM_TEST;
12120 case ETH_SS_STATS:
12121 return TG3_NUM_STATS;
12122 default:
12123 return -EOPNOTSUPP;
12124 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070012125}
12126
Matt Carlson90415472011-12-16 13:33:23 +000012127static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
12128 u32 *rules __always_unused)
12129{
12130 struct tg3 *tp = netdev_priv(dev);
12131
12132 if (!tg3_flag(tp, SUPPORT_MSIX))
12133 return -EOPNOTSUPP;
12134
12135 switch (info->cmd) {
12136 case ETHTOOL_GRXRINGS:
12137 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000012138 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000012139 else {
12140 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000012141 if (info->data > TG3_RSS_MAX_NUM_QS)
12142 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000012143 }
12144
12145 /* The first interrupt vector only
12146 * handles link interrupts.
12147 */
12148 info->data -= 1;
12149 return 0;
12150
12151 default:
12152 return -EOPNOTSUPP;
12153 }
12154}
12155
12156static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
12157{
12158 u32 size = 0;
12159 struct tg3 *tp = netdev_priv(dev);
12160
12161 if (tg3_flag(tp, SUPPORT_MSIX))
12162 size = TG3_RSS_INDIR_TBL_SIZE;
12163
12164 return size;
12165}
12166
12167static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
12168{
12169 struct tg3 *tp = netdev_priv(dev);
12170 int i;
12171
12172 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12173 indir[i] = tp->rss_ind_tbl[i];
12174
12175 return 0;
12176}
12177
12178static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
12179{
12180 struct tg3 *tp = netdev_priv(dev);
12181 size_t i;
12182
12183 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12184 tp->rss_ind_tbl[i] = indir[i];
12185
12186 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
12187 return 0;
12188
12189 /* It is legal to write the indirection
12190 * table while the device is running.
12191 */
12192 tg3_full_lock(tp, 0);
12193 tg3_rss_write_indir_tbl(tp);
12194 tg3_full_unlock(tp);
12195
12196 return 0;
12197}
12198
Michael Chan09681692012-09-28 07:12:42 +000012199static void tg3_get_channels(struct net_device *dev,
12200 struct ethtool_channels *channel)
12201{
12202 struct tg3 *tp = netdev_priv(dev);
12203 u32 deflt_qs = netif_get_num_default_rss_queues();
12204
12205 channel->max_rx = tp->rxq_max;
12206 channel->max_tx = tp->txq_max;
12207
12208 if (netif_running(dev)) {
12209 channel->rx_count = tp->rxq_cnt;
12210 channel->tx_count = tp->txq_cnt;
12211 } else {
12212 if (tp->rxq_req)
12213 channel->rx_count = tp->rxq_req;
12214 else
12215 channel->rx_count = min(deflt_qs, tp->rxq_max);
12216
12217 if (tp->txq_req)
12218 channel->tx_count = tp->txq_req;
12219 else
12220 channel->tx_count = min(deflt_qs, tp->txq_max);
12221 }
12222}
12223
12224static int tg3_set_channels(struct net_device *dev,
12225 struct ethtool_channels *channel)
12226{
12227 struct tg3 *tp = netdev_priv(dev);
12228
12229 if (!tg3_flag(tp, SUPPORT_MSIX))
12230 return -EOPNOTSUPP;
12231
12232 if (channel->rx_count > tp->rxq_max ||
12233 channel->tx_count > tp->txq_max)
12234 return -EINVAL;
12235
12236 tp->rxq_req = channel->rx_count;
12237 tp->txq_req = channel->tx_count;
12238
12239 if (!netif_running(dev))
12240 return 0;
12241
12242 tg3_stop(tp);
12243
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012244 tg3_carrier_off(tp);
Michael Chan09681692012-09-28 07:12:42 +000012245
Matt Carlsonbe947302012-12-03 19:36:57 +000012246 tg3_start(tp, true, false, false);
Michael Chan09681692012-09-28 07:12:42 +000012247
12248 return 0;
12249}
12250
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012251static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012252{
12253 switch (stringset) {
12254 case ETH_SS_STATS:
12255 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
12256 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070012257 case ETH_SS_TEST:
12258 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
12259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012260 default:
12261 WARN_ON(1); /* we need a WARN() */
12262 break;
12263 }
12264}
12265
stephen hemminger81b87092011-04-04 08:43:50 +000012266static int tg3_set_phys_id(struct net_device *dev,
12267 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070012268{
12269 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070012270
12271 if (!netif_running(tp->dev))
12272 return -EAGAIN;
12273
stephen hemminger81b87092011-04-04 08:43:50 +000012274 switch (state) {
12275 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000012276 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070012277
stephen hemminger81b87092011-04-04 08:43:50 +000012278 case ETHTOOL_ID_ON:
12279 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12280 LED_CTRL_1000MBPS_ON |
12281 LED_CTRL_100MBPS_ON |
12282 LED_CTRL_10MBPS_ON |
12283 LED_CTRL_TRAFFIC_OVERRIDE |
12284 LED_CTRL_TRAFFIC_BLINK |
12285 LED_CTRL_TRAFFIC_LED);
12286 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012287
stephen hemminger81b87092011-04-04 08:43:50 +000012288 case ETHTOOL_ID_OFF:
12289 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12290 LED_CTRL_TRAFFIC_OVERRIDE);
12291 break;
Michael Chan4009a932005-09-05 17:52:54 -070012292
stephen hemminger81b87092011-04-04 08:43:50 +000012293 case ETHTOOL_ID_INACTIVE:
12294 tw32(MAC_LED_CTRL, tp->led_ctrl);
12295 break;
Michael Chan4009a932005-09-05 17:52:54 -070012296 }
stephen hemminger81b87092011-04-04 08:43:50 +000012297
Michael Chan4009a932005-09-05 17:52:54 -070012298 return 0;
12299}
12300
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012301static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012302 struct ethtool_stats *estats, u64 *tmp_stats)
12303{
12304 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000012305
Matt Carlsonb546e462012-02-13 15:20:09 +000012306 if (tp->hw_stats)
12307 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
12308 else
12309 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012310}
12311
Matt Carlson535a4902011-07-20 10:20:56 +000012312static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000012313{
12314 int i;
12315 __be32 *buf;
12316 u32 offset = 0, len = 0;
12317 u32 magic, val;
12318
Joe Perches63c3a662011-04-26 08:12:10 +000012319 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000012320 return NULL;
12321
12322 if (magic == TG3_EEPROM_MAGIC) {
12323 for (offset = TG3_NVM_DIR_START;
12324 offset < TG3_NVM_DIR_END;
12325 offset += TG3_NVM_DIRENT_SIZE) {
12326 if (tg3_nvram_read(tp, offset, &val))
12327 return NULL;
12328
12329 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
12330 TG3_NVM_DIRTYPE_EXTVPD)
12331 break;
12332 }
12333
12334 if (offset != TG3_NVM_DIR_END) {
12335 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
12336 if (tg3_nvram_read(tp, offset + 4, &offset))
12337 return NULL;
12338
12339 offset = tg3_nvram_logical_addr(tp, offset);
12340 }
12341 }
12342
12343 if (!offset || !len) {
12344 offset = TG3_NVM_VPD_OFF;
12345 len = TG3_NVM_VPD_LEN;
12346 }
12347
12348 buf = kmalloc(len, GFP_KERNEL);
12349 if (buf == NULL)
12350 return NULL;
12351
12352 if (magic == TG3_EEPROM_MAGIC) {
12353 for (i = 0; i < len; i += 4) {
12354 /* The data is in little-endian format in NVRAM.
12355 * Use the big-endian read routines to preserve
12356 * the byte order as it exists in NVRAM.
12357 */
12358 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
12359 goto error;
12360 }
12361 } else {
12362 u8 *ptr;
12363 ssize_t cnt;
12364 unsigned int pos = 0;
12365
12366 ptr = (u8 *)&buf[0];
12367 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
12368 cnt = pci_read_vpd(tp->pdev, pos,
12369 len - pos, ptr);
12370 if (cnt == -ETIMEDOUT || cnt == -EINTR)
12371 cnt = 0;
12372 else if (cnt < 0)
12373 goto error;
12374 }
12375 if (pos != len)
12376 goto error;
12377 }
12378
Matt Carlson535a4902011-07-20 10:20:56 +000012379 *vpdlen = len;
12380
Matt Carlsonc3e94502011-04-13 11:05:08 +000012381 return buf;
12382
12383error:
12384 kfree(buf);
12385 return NULL;
12386}
12387
Michael Chan566f86a2005-05-29 14:56:58 -070012388#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080012389#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
12390#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
12391#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000012392#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
12393#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000012394#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070012395#define NVRAM_SELFBOOT_HW_SIZE 0x20
12396#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070012397
12398static int tg3_test_nvram(struct tg3 *tp)
12399{
Matt Carlson535a4902011-07-20 10:20:56 +000012400 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012401 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012402 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070012403
Joe Perches63c3a662011-04-26 08:12:10 +000012404 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000012405 return 0;
12406
Matt Carlsone4f34112009-02-25 14:25:00 +000012407 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012408 return -EIO;
12409
Michael Chan1b277772006-03-20 22:27:48 -080012410 if (magic == TG3_EEPROM_MAGIC)
12411 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070012412 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080012413 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
12414 TG3_EEPROM_SB_FORMAT_1) {
12415 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
12416 case TG3_EEPROM_SB_REVISION_0:
12417 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
12418 break;
12419 case TG3_EEPROM_SB_REVISION_2:
12420 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
12421 break;
12422 case TG3_EEPROM_SB_REVISION_3:
12423 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
12424 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000012425 case TG3_EEPROM_SB_REVISION_4:
12426 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
12427 break;
12428 case TG3_EEPROM_SB_REVISION_5:
12429 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
12430 break;
12431 case TG3_EEPROM_SB_REVISION_6:
12432 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
12433 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080012434 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000012435 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080012436 }
12437 } else
Michael Chan1b277772006-03-20 22:27:48 -080012438 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070012439 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12440 size = NVRAM_SELFBOOT_HW_SIZE;
12441 else
Michael Chan1b277772006-03-20 22:27:48 -080012442 return -EIO;
12443
12444 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070012445 if (buf == NULL)
12446 return -ENOMEM;
12447
Michael Chan1b277772006-03-20 22:27:48 -080012448 err = -EIO;
12449 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012450 err = tg3_nvram_read_be32(tp, i, &buf[j]);
12451 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070012452 break;
Michael Chan566f86a2005-05-29 14:56:58 -070012453 }
Michael Chan1b277772006-03-20 22:27:48 -080012454 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070012455 goto out;
12456
Michael Chan1b277772006-03-20 22:27:48 -080012457 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000012458 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080012459 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012460 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080012461 u8 *buf8 = (u8 *) buf, csum8 = 0;
12462
Al Virob9fc7dc2007-12-17 22:59:57 -080012463 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080012464 TG3_EEPROM_SB_REVISION_2) {
12465 /* For rev 2, the csum doesn't include the MBA. */
12466 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
12467 csum8 += buf8[i];
12468 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
12469 csum8 += buf8[i];
12470 } else {
12471 for (i = 0; i < size; i++)
12472 csum8 += buf8[i];
12473 }
Michael Chan1b277772006-03-20 22:27:48 -080012474
Adrian Bunkad96b482006-04-05 22:21:04 -070012475 if (csum8 == 0) {
12476 err = 0;
12477 goto out;
12478 }
12479
12480 err = -EIO;
12481 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080012482 }
Michael Chan566f86a2005-05-29 14:56:58 -070012483
Al Virob9fc7dc2007-12-17 22:59:57 -080012484 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012485 TG3_EEPROM_MAGIC_HW) {
12486 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000012487 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070012488 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070012489
12490 /* Separate the parity bits and the data bytes. */
12491 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
12492 if ((i == 0) || (i == 8)) {
12493 int l;
12494 u8 msk;
12495
12496 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
12497 parity[k++] = buf8[i] & msk;
12498 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000012499 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070012500 int l;
12501 u8 msk;
12502
12503 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
12504 parity[k++] = buf8[i] & msk;
12505 i++;
12506
12507 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
12508 parity[k++] = buf8[i] & msk;
12509 i++;
12510 }
12511 data[j++] = buf8[i];
12512 }
12513
12514 err = -EIO;
12515 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
12516 u8 hw8 = hweight8(data[i]);
12517
12518 if ((hw8 & 0x1) && parity[i])
12519 goto out;
12520 else if (!(hw8 & 0x1) && !parity[i])
12521 goto out;
12522 }
12523 err = 0;
12524 goto out;
12525 }
12526
Matt Carlson01c3a392011-03-09 16:58:20 +000012527 err = -EIO;
12528
Michael Chan566f86a2005-05-29 14:56:58 -070012529 /* Bootstrap checksum at offset 0x10 */
12530 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000012531 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070012532 goto out;
12533
12534 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
12535 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000012536 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000012537 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070012538
Matt Carlsonc3e94502011-04-13 11:05:08 +000012539 kfree(buf);
12540
Matt Carlson535a4902011-07-20 10:20:56 +000012541 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000012542 if (!buf)
12543 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000012544
Matt Carlson535a4902011-07-20 10:20:56 +000012545 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000012546 if (i > 0) {
12547 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
12548 if (j < 0)
12549 goto out;
12550
Matt Carlson535a4902011-07-20 10:20:56 +000012551 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000012552 goto out;
12553
12554 i += PCI_VPD_LRDT_TAG_SIZE;
12555 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
12556 PCI_VPD_RO_KEYWORD_CHKSUM);
12557 if (j > 0) {
12558 u8 csum8 = 0;
12559
12560 j += PCI_VPD_INFO_FLD_HDR_SIZE;
12561
12562 for (i = 0; i <= j; i++)
12563 csum8 += ((u8 *)buf)[i];
12564
12565 if (csum8)
12566 goto out;
12567 }
12568 }
12569
Michael Chan566f86a2005-05-29 14:56:58 -070012570 err = 0;
12571
12572out:
12573 kfree(buf);
12574 return err;
12575}
12576
Michael Chanca430072005-05-29 14:57:23 -070012577#define TG3_SERDES_TIMEOUT_SEC 2
12578#define TG3_COPPER_TIMEOUT_SEC 6
12579
12580static int tg3_test_link(struct tg3 *tp)
12581{
12582 int i, max;
12583
12584 if (!netif_running(tp->dev))
12585 return -ENODEV;
12586
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012587 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070012588 max = TG3_SERDES_TIMEOUT_SEC;
12589 else
12590 max = TG3_COPPER_TIMEOUT_SEC;
12591
12592 for (i = 0; i < max; i++) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012593 if (tp->link_up)
Michael Chanca430072005-05-29 14:57:23 -070012594 return 0;
12595
12596 if (msleep_interruptible(1000))
12597 break;
12598 }
12599
12600 return -EIO;
12601}
12602
Michael Chana71116d2005-05-29 14:58:11 -070012603/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080012604static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070012605{
Michael Chanb16250e2006-09-27 16:10:14 -070012606 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070012607 u32 offset, read_mask, write_mask, val, save_val, read_val;
12608 static struct {
12609 u16 offset;
12610 u16 flags;
12611#define TG3_FL_5705 0x1
12612#define TG3_FL_NOT_5705 0x2
12613#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070012614#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070012615 u32 read_mask;
12616 u32 write_mask;
12617 } reg_tbl[] = {
12618 /* MAC Control Registers */
12619 { MAC_MODE, TG3_FL_NOT_5705,
12620 0x00000000, 0x00ef6f8c },
12621 { MAC_MODE, TG3_FL_5705,
12622 0x00000000, 0x01ef6b8c },
12623 { MAC_STATUS, TG3_FL_NOT_5705,
12624 0x03800107, 0x00000000 },
12625 { MAC_STATUS, TG3_FL_5705,
12626 0x03800100, 0x00000000 },
12627 { MAC_ADDR_0_HIGH, 0x0000,
12628 0x00000000, 0x0000ffff },
12629 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012630 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070012631 { MAC_RX_MTU_SIZE, 0x0000,
12632 0x00000000, 0x0000ffff },
12633 { MAC_TX_MODE, 0x0000,
12634 0x00000000, 0x00000070 },
12635 { MAC_TX_LENGTHS, 0x0000,
12636 0x00000000, 0x00003fff },
12637 { MAC_RX_MODE, TG3_FL_NOT_5705,
12638 0x00000000, 0x000007fc },
12639 { MAC_RX_MODE, TG3_FL_5705,
12640 0x00000000, 0x000007dc },
12641 { MAC_HASH_REG_0, 0x0000,
12642 0x00000000, 0xffffffff },
12643 { MAC_HASH_REG_1, 0x0000,
12644 0x00000000, 0xffffffff },
12645 { MAC_HASH_REG_2, 0x0000,
12646 0x00000000, 0xffffffff },
12647 { MAC_HASH_REG_3, 0x0000,
12648 0x00000000, 0xffffffff },
12649
12650 /* Receive Data and Receive BD Initiator Control Registers. */
12651 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
12652 0x00000000, 0xffffffff },
12653 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
12654 0x00000000, 0xffffffff },
12655 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
12656 0x00000000, 0x00000003 },
12657 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
12658 0x00000000, 0xffffffff },
12659 { RCVDBDI_STD_BD+0, 0x0000,
12660 0x00000000, 0xffffffff },
12661 { RCVDBDI_STD_BD+4, 0x0000,
12662 0x00000000, 0xffffffff },
12663 { RCVDBDI_STD_BD+8, 0x0000,
12664 0x00000000, 0xffff0002 },
12665 { RCVDBDI_STD_BD+0xc, 0x0000,
12666 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012667
Michael Chana71116d2005-05-29 14:58:11 -070012668 /* Receive BD Initiator Control Registers. */
12669 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
12670 0x00000000, 0xffffffff },
12671 { RCVBDI_STD_THRESH, TG3_FL_5705,
12672 0x00000000, 0x000003ff },
12673 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
12674 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012675
Michael Chana71116d2005-05-29 14:58:11 -070012676 /* Host Coalescing Control Registers. */
12677 { HOSTCC_MODE, TG3_FL_NOT_5705,
12678 0x00000000, 0x00000004 },
12679 { HOSTCC_MODE, TG3_FL_5705,
12680 0x00000000, 0x000000f6 },
12681 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
12682 0x00000000, 0xffffffff },
12683 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
12684 0x00000000, 0x000003ff },
12685 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
12686 0x00000000, 0xffffffff },
12687 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
12688 0x00000000, 0x000003ff },
12689 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
12690 0x00000000, 0xffffffff },
12691 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12692 0x00000000, 0x000000ff },
12693 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
12694 0x00000000, 0xffffffff },
12695 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12696 0x00000000, 0x000000ff },
12697 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
12698 0x00000000, 0xffffffff },
12699 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
12700 0x00000000, 0xffffffff },
12701 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12702 0x00000000, 0xffffffff },
12703 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12704 0x00000000, 0x000000ff },
12705 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12706 0x00000000, 0xffffffff },
12707 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12708 0x00000000, 0x000000ff },
12709 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
12710 0x00000000, 0xffffffff },
12711 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
12712 0x00000000, 0xffffffff },
12713 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
12714 0x00000000, 0xffffffff },
12715 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
12716 0x00000000, 0xffffffff },
12717 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
12718 0x00000000, 0xffffffff },
12719 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
12720 0xffffffff, 0x00000000 },
12721 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
12722 0xffffffff, 0x00000000 },
12723
12724 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070012725 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012726 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070012727 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012728 0x00000000, 0x007fffff },
12729 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
12730 0x00000000, 0x0000003f },
12731 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
12732 0x00000000, 0x000001ff },
12733 { BUFMGR_MB_HIGH_WATER, 0x0000,
12734 0x00000000, 0x000001ff },
12735 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
12736 0xffffffff, 0x00000000 },
12737 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
12738 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012739
Michael Chana71116d2005-05-29 14:58:11 -070012740 /* Mailbox Registers */
12741 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
12742 0x00000000, 0x000001ff },
12743 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
12744 0x00000000, 0x000001ff },
12745 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
12746 0x00000000, 0x000007ff },
12747 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
12748 0x00000000, 0x000001ff },
12749
12750 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
12751 };
12752
Michael Chanb16250e2006-09-27 16:10:14 -070012753 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012754 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070012755 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000012756 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070012757 is_5750 = 1;
12758 }
Michael Chana71116d2005-05-29 14:58:11 -070012759
12760 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
12761 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
12762 continue;
12763
12764 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
12765 continue;
12766
Joe Perches63c3a662011-04-26 08:12:10 +000012767 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070012768 (reg_tbl[i].flags & TG3_FL_NOT_5788))
12769 continue;
12770
Michael Chanb16250e2006-09-27 16:10:14 -070012771 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
12772 continue;
12773
Michael Chana71116d2005-05-29 14:58:11 -070012774 offset = (u32) reg_tbl[i].offset;
12775 read_mask = reg_tbl[i].read_mask;
12776 write_mask = reg_tbl[i].write_mask;
12777
12778 /* Save the original register content */
12779 save_val = tr32(offset);
12780
12781 /* Determine the read-only value. */
12782 read_val = save_val & read_mask;
12783
12784 /* Write zero to the register, then make sure the read-only bits
12785 * are not changed and the read/write bits are all zeros.
12786 */
12787 tw32(offset, 0);
12788
12789 val = tr32(offset);
12790
12791 /* Test the read-only and read/write bits. */
12792 if (((val & read_mask) != read_val) || (val & write_mask))
12793 goto out;
12794
12795 /* Write ones to all the bits defined by RdMask and WrMask, then
12796 * make sure the read-only bits are not changed and the
12797 * read/write bits are all ones.
12798 */
12799 tw32(offset, read_mask | write_mask);
12800
12801 val = tr32(offset);
12802
12803 /* Test the read-only bits. */
12804 if ((val & read_mask) != read_val)
12805 goto out;
12806
12807 /* Test the read/write bits. */
12808 if ((val & write_mask) != write_mask)
12809 goto out;
12810
12811 tw32(offset, save_val);
12812 }
12813
12814 return 0;
12815
12816out:
Michael Chan9f88f292006-12-07 00:22:54 -080012817 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000012818 netdev_err(tp->dev,
12819 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070012820 tw32(offset, save_val);
12821 return -EIO;
12822}
12823
Michael Chan7942e1d2005-05-29 14:58:36 -070012824static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
12825{
Arjan van de Venf71e1302006-03-03 21:33:57 -050012826 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070012827 int i;
12828 u32 j;
12829
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020012830 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070012831 for (j = 0; j < len; j += 4) {
12832 u32 val;
12833
12834 tg3_write_mem(tp, offset + j, test_pattern[i]);
12835 tg3_read_mem(tp, offset + j, &val);
12836 if (val != test_pattern[i])
12837 return -EIO;
12838 }
12839 }
12840 return 0;
12841}
12842
12843static int tg3_test_memory(struct tg3 *tp)
12844{
12845 static struct mem_entry {
12846 u32 offset;
12847 u32 len;
12848 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080012849 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070012850 { 0x00002000, 0x1c000},
12851 { 0xffffffff, 0x00000}
12852 }, mem_tbl_5705[] = {
12853 { 0x00000100, 0x0000c},
12854 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070012855 { 0x00004000, 0x00800},
12856 { 0x00006000, 0x01000},
12857 { 0x00008000, 0x02000},
12858 { 0x00010000, 0x0e000},
12859 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080012860 }, mem_tbl_5755[] = {
12861 { 0x00000200, 0x00008},
12862 { 0x00004000, 0x00800},
12863 { 0x00006000, 0x00800},
12864 { 0x00008000, 0x02000},
12865 { 0x00010000, 0x0c000},
12866 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070012867 }, mem_tbl_5906[] = {
12868 { 0x00000200, 0x00008},
12869 { 0x00004000, 0x00400},
12870 { 0x00006000, 0x00400},
12871 { 0x00008000, 0x01000},
12872 { 0x00010000, 0x01000},
12873 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012874 }, mem_tbl_5717[] = {
12875 { 0x00000200, 0x00008},
12876 { 0x00010000, 0x0a000},
12877 { 0x00020000, 0x13c00},
12878 { 0xffffffff, 0x00000}
12879 }, mem_tbl_57765[] = {
12880 { 0x00000200, 0x00008},
12881 { 0x00004000, 0x00800},
12882 { 0x00006000, 0x09800},
12883 { 0x00010000, 0x0a000},
12884 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070012885 };
12886 struct mem_entry *mem_tbl;
12887 int err = 0;
12888 int i;
12889
Joe Perches63c3a662011-04-26 08:12:10 +000012890 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012891 mem_tbl = mem_tbl_5717;
Michael Chanc65a17f2013-01-06 12:51:07 +000012892 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000012893 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012894 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000012895 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012896 mem_tbl = mem_tbl_5755;
Joe Perches41535772013-02-16 11:20:04 +000012897 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlson321d32a2008-11-21 17:22:19 -080012898 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000012899 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012900 mem_tbl = mem_tbl_5705;
12901 else
Michael Chan7942e1d2005-05-29 14:58:36 -070012902 mem_tbl = mem_tbl_570x;
12903
12904 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000012905 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
12906 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070012907 break;
12908 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012909
Michael Chan7942e1d2005-05-29 14:58:36 -070012910 return err;
12911}
12912
Matt Carlsonbb158d62011-04-25 12:42:47 +000012913#define TG3_TSO_MSS 500
12914
12915#define TG3_TSO_IP_HDR_LEN 20
12916#define TG3_TSO_TCP_HDR_LEN 20
12917#define TG3_TSO_TCP_OPT_LEN 12
12918
12919static const u8 tg3_tso_header[] = {
129200x08, 0x00,
129210x45, 0x00, 0x00, 0x00,
129220x00, 0x00, 0x40, 0x00,
129230x40, 0x06, 0x00, 0x00,
129240x0a, 0x00, 0x00, 0x01,
129250x0a, 0x00, 0x00, 0x02,
129260x0d, 0x00, 0xe0, 0x00,
129270x00, 0x00, 0x01, 0x00,
129280x00, 0x00, 0x02, 0x00,
129290x80, 0x10, 0x10, 0x00,
129300x14, 0x09, 0x00, 0x00,
129310x01, 0x01, 0x08, 0x0a,
129320x11, 0x11, 0x11, 0x11,
129330x11, 0x11, 0x11, 0x11,
12934};
Michael Chan9f40dea2005-09-05 17:53:06 -070012935
Matt Carlson28a45952011-08-19 13:58:22 +000012936static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070012937{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012938 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012939 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000012940 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000012941 struct sk_buff *skb;
12942 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070012943 dma_addr_t map;
12944 int num_pkts, tx_len, rx_len, i, err;
12945 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000012946 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000012947 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070012948
Matt Carlsonc8873402010-02-12 14:47:11 +000012949 tnapi = &tp->napi[0];
12950 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012951 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000012952 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000012953 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000012954 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000012955 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012956 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012957 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000012958
Michael Chanc76949a2005-05-29 14:58:59 -070012959 err = -EIO;
12960
Matt Carlson4852a862011-04-13 11:05:07 +000012961 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070012962 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070012963 if (!skb)
12964 return -ENOMEM;
12965
Michael Chanc76949a2005-05-29 14:58:59 -070012966 tx_data = skb_put(skb, tx_len);
12967 memcpy(tx_data, tp->dev->dev_addr, 6);
12968 memset(tx_data + 6, 0x0, 8);
12969
Matt Carlson4852a862011-04-13 11:05:07 +000012970 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070012971
Matt Carlson28a45952011-08-19 13:58:22 +000012972 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012973 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
12974
12975 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
12976 TG3_TSO_TCP_OPT_LEN;
12977
12978 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
12979 sizeof(tg3_tso_header));
12980 mss = TG3_TSO_MSS;
12981
12982 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
12983 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
12984
12985 /* Set the total length field in the IP header */
12986 iph->tot_len = htons((u16)(mss + hdr_len));
12987
12988 base_flags = (TXD_FLAG_CPU_PRE_DMA |
12989 TXD_FLAG_CPU_POST_DMA);
12990
Joe Perches63c3a662011-04-26 08:12:10 +000012991 if (tg3_flag(tp, HW_TSO_1) ||
12992 tg3_flag(tp, HW_TSO_2) ||
12993 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012994 struct tcphdr *th;
12995 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
12996 th = (struct tcphdr *)&tx_data[val];
12997 th->check = 0;
12998 } else
12999 base_flags |= TXD_FLAG_TCPUDP_CSUM;
13000
Joe Perches63c3a662011-04-26 08:12:10 +000013001 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013002 mss |= (hdr_len & 0xc) << 12;
13003 if (hdr_len & 0x10)
13004 base_flags |= 0x00000010;
13005 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000013006 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013007 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000013008 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +000013009 tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013010 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
13011 } else {
13012 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
13013 }
13014
13015 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
13016 } else {
13017 num_pkts = 1;
13018 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000013019
13020 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
13021 tx_len > VLAN_ETH_FRAME_LEN)
13022 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013023 }
13024
13025 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070013026 tx_data[i] = (u8) (i & 0xff);
13027
Alexander Duyckf4188d82009-12-02 16:48:38 +000013028 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
13029 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000013030 dev_kfree_skb(skb);
13031 return -EIO;
13032 }
Michael Chanc76949a2005-05-29 14:58:59 -070013033
Matt Carlson0d681b22011-07-27 14:20:49 +000013034 val = tnapi->tx_prod;
13035 tnapi->tx_buffers[val].skb = skb;
13036 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
13037
Michael Chanc76949a2005-05-29 14:58:59 -070013038 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013039 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013040
13041 udelay(10);
13042
Matt Carlson898a56f2009-08-28 14:02:40 +000013043 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070013044
Matt Carlson84b67b22011-07-27 14:20:52 +000013045 budget = tg3_tx_avail(tnapi);
13046 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000013047 base_flags | TXD_FLAG_END, mss, 0)) {
13048 tnapi->tx_buffers[val].skb = NULL;
13049 dev_kfree_skb(skb);
13050 return -EIO;
13051 }
Michael Chanc76949a2005-05-29 14:58:59 -070013052
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013053 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070013054
Michael Chan6541b802012-03-04 14:48:14 +000013055 /* Sync BD data before updating mailbox */
13056 wmb();
13057
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013058 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
13059 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070013060
13061 udelay(10);
13062
Matt Carlson303fc922009-11-02 14:27:34 +000013063 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
13064 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070013065 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013066 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013067
13068 udelay(10);
13069
Matt Carlson898a56f2009-08-28 14:02:40 +000013070 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
13071 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013072 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070013073 (rx_idx == (rx_start_idx + num_pkts)))
13074 break;
13075 }
13076
Matt Carlsonba1142e2011-11-04 09:15:00 +000013077 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070013078 dev_kfree_skb(skb);
13079
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013080 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070013081 goto out;
13082
13083 if (rx_idx != rx_start_idx + num_pkts)
13084 goto out;
13085
Matt Carlsonbb158d62011-04-25 12:42:47 +000013086 val = data_off;
13087 while (rx_idx != rx_start_idx) {
13088 desc = &rnapi->rx_rcb[rx_start_idx++];
13089 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
13090 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070013091
Matt Carlsonbb158d62011-04-25 12:42:47 +000013092 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
13093 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000013094 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070013095
Matt Carlsonbb158d62011-04-25 12:42:47 +000013096 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
13097 - ETH_FCS_LEN;
13098
Matt Carlson28a45952011-08-19 13:58:22 +000013099 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013100 if (rx_len != tx_len)
13101 goto out;
13102
13103 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
13104 if (opaque_key != RXD_OPAQUE_RING_STD)
13105 goto out;
13106 } else {
13107 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
13108 goto out;
13109 }
13110 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
13111 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000013112 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013113 goto out;
13114 }
13115
13116 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013117 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013118 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
13119 mapping);
13120 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013121 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013122 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
13123 mapping);
13124 } else
Matt Carlson4852a862011-04-13 11:05:07 +000013125 goto out;
13126
Matt Carlsonbb158d62011-04-25 12:42:47 +000013127 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
13128 PCI_DMA_FROMDEVICE);
13129
Eric Dumazet9205fd92011-11-18 06:47:01 +000013130 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000013131 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013132 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013133 goto out;
13134 }
Matt Carlson4852a862011-04-13 11:05:07 +000013135 }
13136
Michael Chanc76949a2005-05-29 14:58:59 -070013137 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013138
Eric Dumazet9205fd92011-11-18 06:47:01 +000013139 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070013140out:
13141 return err;
13142}
13143
Matt Carlson00c266b2011-04-25 12:42:46 +000013144#define TG3_STD_LOOPBACK_FAILED 1
13145#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000013146#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000013147#define TG3_LOOPBACK_FAILED \
13148 (TG3_STD_LOOPBACK_FAILED | \
13149 TG3_JMB_LOOPBACK_FAILED | \
13150 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000013151
Matt Carlson941ec902011-08-19 13:58:23 +000013152static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070013153{
Matt Carlson28a45952011-08-19 13:58:22 +000013154 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000013155 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000013156 u32 jmb_pkt_sz = 9000;
13157
13158 if (tp->dma_limit)
13159 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070013160
Matt Carlsonab789042011-01-25 15:58:54 +000013161 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
13162 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
13163
Matt Carlson28a45952011-08-19 13:58:22 +000013164 if (!netif_running(tp->dev)) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013165 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13166 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013167 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013168 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000013169 goto done;
13170 }
13171
Joe Perches953c96e2013-04-09 10:18:14 +000013172 err = tg3_reset_hw(tp, true);
Matt Carlsonab789042011-01-25 15:58:54 +000013173 if (err) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013174 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13175 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013176 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013177 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000013178 goto done;
13179 }
Michael Chan9f40dea2005-09-05 17:53:06 -070013180
Joe Perches63c3a662011-04-26 08:12:10 +000013181 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000013182 int i;
13183
13184 /* Reroute all rx packets to the 1st queue */
13185 for (i = MAC_RSS_INDIR_TBL_0;
13186 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
13187 tw32(i, 0x0);
13188 }
13189
Matt Carlson6e01b202011-08-19 13:58:20 +000013190 /* HW errata - mac loopback fails in some cases on 5780.
13191 * Normal traffic and PHY loopback are not affected by
13192 * errata. Also, the MAC loopback test is deprecated for
13193 * all newer ASIC revisions.
13194 */
Joe Perches41535772013-02-16 11:20:04 +000013195 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Matt Carlson6e01b202011-08-19 13:58:20 +000013196 !tg3_flag(tp, CPMU_PRESENT)) {
13197 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070013198
Matt Carlson28a45952011-08-19 13:58:22 +000013199 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013200 data[TG3_MAC_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013201
13202 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013203 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013204 data[TG3_MAC_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013205
13206 tg3_mac_loopback(tp, false);
13207 }
Matt Carlson4852a862011-04-13 11:05:07 +000013208
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013209 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013210 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013211 int i;
13212
Matt Carlson941ec902011-08-19 13:58:23 +000013213 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013214
13215 /* Wait for link */
13216 for (i = 0; i < 100; i++) {
13217 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
13218 break;
13219 mdelay(1);
13220 }
13221
Matt Carlson28a45952011-08-19 13:58:22 +000013222 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013223 data[TG3_PHY_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013224 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000013225 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013226 data[TG3_PHY_LOOPB_TEST] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013227 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013228 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013229 data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070013230
Matt Carlson941ec902011-08-19 13:58:23 +000013231 if (do_extlpbk) {
13232 tg3_phy_lpbk_set(tp, 0, true);
13233
13234 /* All link indications report up, but the hardware
13235 * isn't really ready for about 20 msec. Double it
13236 * to be sure.
13237 */
13238 mdelay(40);
13239
13240 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013241 data[TG3_EXT_LOOPB_TEST] |=
13242 TG3_STD_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013243 if (tg3_flag(tp, TSO_CAPABLE) &&
13244 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013245 data[TG3_EXT_LOOPB_TEST] |=
13246 TG3_TSO_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013247 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013248 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013249 data[TG3_EXT_LOOPB_TEST] |=
13250 TG3_JMB_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013251 }
13252
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013253 /* Re-enable gphy autopowerdown. */
13254 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
13255 tg3_phy_toggle_apd(tp, true);
13256 }
Matt Carlson6833c042008-11-21 17:18:59 -080013257
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013258 err = (data[TG3_MAC_LOOPB_TEST] | data[TG3_PHY_LOOPB_TEST] |
13259 data[TG3_EXT_LOOPB_TEST]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000013260
Matt Carlsonab789042011-01-25 15:58:54 +000013261done:
13262 tp->phy_flags |= eee_cap;
13263
Michael Chan9f40dea2005-09-05 17:53:06 -070013264 return err;
13265}
13266
Michael Chan4cafd3f2005-05-29 14:56:34 -070013267static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
13268 u64 *data)
13269{
Michael Chan566f86a2005-05-29 14:56:58 -070013270 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000013271 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070013272
Matt Carlsonbed98292011-07-13 09:27:29 +000013273 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
13274 tg3_power_up(tp)) {
13275 etest->flags |= ETH_TEST_FL_FAILED;
13276 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
13277 return;
13278 }
Michael Chanbc1c7562006-03-20 17:48:03 -080013279
Michael Chan566f86a2005-05-29 14:56:58 -070013280 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
13281
13282 if (tg3_test_nvram(tp) != 0) {
13283 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013284 data[TG3_NVRAM_TEST] = 1;
Michael Chan566f86a2005-05-29 14:56:58 -070013285 }
Matt Carlson941ec902011-08-19 13:58:23 +000013286 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070013287 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013288 data[TG3_LINK_TEST] = 1;
Michael Chanca430072005-05-29 14:57:23 -070013289 }
Michael Chana71116d2005-05-29 14:58:11 -070013290 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013291 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070013292
Michael Chanbbe832c2005-06-24 20:20:04 -070013293 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013294 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070013295 tg3_netif_stop(tp);
13296 irq_sync = 1;
13297 }
13298
13299 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070013300 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080013301 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013302 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000013303 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070013304 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080013305 if (!err)
13306 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013307
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013308 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080013309 tg3_phy_reset(tp);
13310
Michael Chana71116d2005-05-29 14:58:11 -070013311 if (tg3_test_registers(tp) != 0) {
13312 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013313 data[TG3_REGISTER_TEST] = 1;
Michael Chana71116d2005-05-29 14:58:11 -070013314 }
Matt Carlson28a45952011-08-19 13:58:22 +000013315
Michael Chan7942e1d2005-05-29 14:58:36 -070013316 if (tg3_test_memory(tp) != 0) {
13317 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013318 data[TG3_MEMORY_TEST] = 1;
Michael Chan7942e1d2005-05-29 14:58:36 -070013319 }
Matt Carlson28a45952011-08-19 13:58:22 +000013320
Matt Carlson941ec902011-08-19 13:58:23 +000013321 if (doextlpbk)
13322 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
13323
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013324 if (tg3_test_loopback(tp, data, doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070013325 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070013326
David S. Millerf47c11e2005-06-24 20:18:35 -070013327 tg3_full_unlock(tp);
13328
Michael Chand4bc3922005-05-29 14:59:20 -070013329 if (tg3_test_interrupt(tp) != 0) {
13330 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013331 data[TG3_INTERRUPT_TEST] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070013332 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013333
13334 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070013335
Michael Chana71116d2005-05-29 14:58:11 -070013336 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13337 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013338 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000013339 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013340 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070013341 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013342 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013343
13344 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013345
13346 if (irq_sync && !err2)
13347 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013348 }
Matt Carlson80096062010-08-02 11:26:06 +000013349 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000013350 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080013351
Michael Chan4cafd3f2005-05-29 14:56:34 -070013352}
13353
Matt Carlson0a633ac2012-12-03 19:36:59 +000013354static int tg3_hwtstamp_ioctl(struct net_device *dev,
13355 struct ifreq *ifr, int cmd)
13356{
13357 struct tg3 *tp = netdev_priv(dev);
13358 struct hwtstamp_config stmpconf;
13359
13360 if (!tg3_flag(tp, PTP_CAPABLE))
13361 return -EINVAL;
13362
13363 if (copy_from_user(&stmpconf, ifr->ifr_data, sizeof(stmpconf)))
13364 return -EFAULT;
13365
13366 if (stmpconf.flags)
13367 return -EINVAL;
13368
13369 switch (stmpconf.tx_type) {
13370 case HWTSTAMP_TX_ON:
13371 tg3_flag_set(tp, TX_TSTAMP_EN);
13372 break;
13373 case HWTSTAMP_TX_OFF:
13374 tg3_flag_clear(tp, TX_TSTAMP_EN);
13375 break;
13376 default:
13377 return -ERANGE;
13378 }
13379
13380 switch (stmpconf.rx_filter) {
13381 case HWTSTAMP_FILTER_NONE:
13382 tp->rxptpctl = 0;
13383 break;
13384 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
13385 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13386 TG3_RX_PTP_CTL_ALL_V1_EVENTS;
13387 break;
13388 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
13389 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13390 TG3_RX_PTP_CTL_SYNC_EVNT;
13391 break;
13392 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
13393 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13394 TG3_RX_PTP_CTL_DELAY_REQ;
13395 break;
13396 case HWTSTAMP_FILTER_PTP_V2_EVENT:
13397 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13398 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13399 break;
13400 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
13401 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13402 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13403 break;
13404 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
13405 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13406 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13407 break;
13408 case HWTSTAMP_FILTER_PTP_V2_SYNC:
13409 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13410 TG3_RX_PTP_CTL_SYNC_EVNT;
13411 break;
13412 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
13413 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13414 TG3_RX_PTP_CTL_SYNC_EVNT;
13415 break;
13416 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
13417 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13418 TG3_RX_PTP_CTL_SYNC_EVNT;
13419 break;
13420 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
13421 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13422 TG3_RX_PTP_CTL_DELAY_REQ;
13423 break;
13424 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
13425 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13426 TG3_RX_PTP_CTL_DELAY_REQ;
13427 break;
13428 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
13429 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13430 TG3_RX_PTP_CTL_DELAY_REQ;
13431 break;
13432 default:
13433 return -ERANGE;
13434 }
13435
13436 if (netif_running(dev) && tp->rxptpctl)
13437 tw32(TG3_RX_PTP_CTL,
13438 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
13439
13440 return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ?
13441 -EFAULT : 0;
13442}
13443
Linus Torvalds1da177e2005-04-16 15:20:36 -070013444static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
13445{
13446 struct mii_ioctl_data *data = if_mii(ifr);
13447 struct tg3 *tp = netdev_priv(dev);
13448 int err;
13449
Joe Perches63c3a662011-04-26 08:12:10 +000013450 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013451 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013452 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013453 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013454 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000013455 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013456 }
13457
Matt Carlson33f401a2010-04-05 10:19:27 +000013458 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013459 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000013460 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013461
13462 /* fallthru */
13463 case SIOCGMIIREG: {
13464 u32 mii_regval;
13465
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013466 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013467 break; /* We have no PHY */
13468
Matt Carlson34eea5a2011-04-20 07:57:38 +000013469 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013470 return -EAGAIN;
13471
David S. Millerf47c11e2005-06-24 20:18:35 -070013472 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013473 err = __tg3_readphy(tp, data->phy_id & 0x1f,
13474 data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070013475 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013476
13477 data->val_out = mii_regval;
13478
13479 return err;
13480 }
13481
13482 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013483 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013484 break; /* We have no PHY */
13485
Matt Carlson34eea5a2011-04-20 07:57:38 +000013486 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013487 return -EAGAIN;
13488
David S. Millerf47c11e2005-06-24 20:18:35 -070013489 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013490 err = __tg3_writephy(tp, data->phy_id & 0x1f,
13491 data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070013492 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013493
13494 return err;
13495
Matt Carlson0a633ac2012-12-03 19:36:59 +000013496 case SIOCSHWTSTAMP:
13497 return tg3_hwtstamp_ioctl(dev, ifr, cmd);
13498
Linus Torvalds1da177e2005-04-16 15:20:36 -070013499 default:
13500 /* do nothing */
13501 break;
13502 }
13503 return -EOPNOTSUPP;
13504}
13505
David S. Miller15f98502005-05-18 22:49:26 -070013506static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13507{
13508 struct tg3 *tp = netdev_priv(dev);
13509
13510 memcpy(ec, &tp->coal, sizeof(*ec));
13511 return 0;
13512}
13513
Michael Chand244c892005-07-05 14:42:33 -070013514static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13515{
13516 struct tg3 *tp = netdev_priv(dev);
13517 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
13518 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
13519
Joe Perches63c3a662011-04-26 08:12:10 +000013520 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070013521 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
13522 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
13523 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
13524 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
13525 }
13526
13527 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
13528 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
13529 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
13530 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
13531 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
13532 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
13533 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
13534 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
13535 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
13536 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
13537 return -EINVAL;
13538
13539 /* No rx interrupts will be generated if both are zero */
13540 if ((ec->rx_coalesce_usecs == 0) &&
13541 (ec->rx_max_coalesced_frames == 0))
13542 return -EINVAL;
13543
13544 /* No tx interrupts will be generated if both are zero */
13545 if ((ec->tx_coalesce_usecs == 0) &&
13546 (ec->tx_max_coalesced_frames == 0))
13547 return -EINVAL;
13548
13549 /* Only copy relevant parameters, ignore all others. */
13550 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
13551 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
13552 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
13553 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
13554 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
13555 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
13556 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
13557 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
13558 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
13559
13560 if (netif_running(dev)) {
13561 tg3_full_lock(tp, 0);
13562 __tg3_set_coalesce(tp, &tp->coal);
13563 tg3_full_unlock(tp);
13564 }
13565 return 0;
13566}
13567
Jeff Garzik7282d492006-09-13 14:30:00 -040013568static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013569 .get_settings = tg3_get_settings,
13570 .set_settings = tg3_set_settings,
13571 .get_drvinfo = tg3_get_drvinfo,
13572 .get_regs_len = tg3_get_regs_len,
13573 .get_regs = tg3_get_regs,
13574 .get_wol = tg3_get_wol,
13575 .set_wol = tg3_set_wol,
13576 .get_msglevel = tg3_get_msglevel,
13577 .set_msglevel = tg3_set_msglevel,
13578 .nway_reset = tg3_nway_reset,
13579 .get_link = ethtool_op_get_link,
13580 .get_eeprom_len = tg3_get_eeprom_len,
13581 .get_eeprom = tg3_get_eeprom,
13582 .set_eeprom = tg3_set_eeprom,
13583 .get_ringparam = tg3_get_ringparam,
13584 .set_ringparam = tg3_set_ringparam,
13585 .get_pauseparam = tg3_get_pauseparam,
13586 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070013587 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013588 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000013589 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013590 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070013591 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070013592 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070013593 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000013594 .get_rxnfc = tg3_get_rxnfc,
13595 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
13596 .get_rxfh_indir = tg3_get_rxfh_indir,
13597 .set_rxfh_indir = tg3_set_rxfh_indir,
Michael Chan09681692012-09-28 07:12:42 +000013598 .get_channels = tg3_get_channels,
13599 .set_channels = tg3_set_channels,
Matt Carlson7d41e492012-12-03 19:36:58 +000013600 .get_ts_info = tg3_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013601};
13602
David S. Millerb4017c52012-03-01 17:57:40 -050013603static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
13604 struct rtnl_link_stats64 *stats)
13605{
13606 struct tg3 *tp = netdev_priv(dev);
13607
David S. Millerb4017c52012-03-01 17:57:40 -050013608 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000013609 if (!tp->hw_stats) {
13610 spin_unlock_bh(&tp->lock);
13611 return &tp->net_stats_prev;
13612 }
13613
David S. Millerb4017c52012-03-01 17:57:40 -050013614 tg3_get_nstats(tp, stats);
13615 spin_unlock_bh(&tp->lock);
13616
13617 return stats;
13618}
13619
Matt Carlsonccd5ba92012-02-13 10:20:08 +000013620static void tg3_set_rx_mode(struct net_device *dev)
13621{
13622 struct tg3 *tp = netdev_priv(dev);
13623
13624 if (!netif_running(dev))
13625 return;
13626
13627 tg3_full_lock(tp, 0);
13628 __tg3_set_rx_mode(dev);
13629 tg3_full_unlock(tp);
13630}
13631
Matt Carlsonfaf16272012-02-13 10:20:07 +000013632static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
13633 int new_mtu)
13634{
13635 dev->mtu = new_mtu;
13636
13637 if (new_mtu > ETH_DATA_LEN) {
13638 if (tg3_flag(tp, 5780_CLASS)) {
13639 netdev_update_features(dev);
13640 tg3_flag_clear(tp, TSO_CAPABLE);
13641 } else {
13642 tg3_flag_set(tp, JUMBO_RING_ENABLE);
13643 }
13644 } else {
13645 if (tg3_flag(tp, 5780_CLASS)) {
13646 tg3_flag_set(tp, TSO_CAPABLE);
13647 netdev_update_features(dev);
13648 }
13649 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
13650 }
13651}
13652
13653static int tg3_change_mtu(struct net_device *dev, int new_mtu)
13654{
13655 struct tg3 *tp = netdev_priv(dev);
Joe Perches953c96e2013-04-09 10:18:14 +000013656 int err;
13657 bool reset_phy = false;
Matt Carlsonfaf16272012-02-13 10:20:07 +000013658
13659 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
13660 return -EINVAL;
13661
13662 if (!netif_running(dev)) {
13663 /* We'll just catch it later when the
13664 * device is up'd.
13665 */
13666 tg3_set_mtu(dev, tp, new_mtu);
13667 return 0;
13668 }
13669
13670 tg3_phy_stop(tp);
13671
13672 tg3_netif_stop(tp);
13673
13674 tg3_full_lock(tp, 1);
13675
13676 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13677
13678 tg3_set_mtu(dev, tp, new_mtu);
13679
Michael Chan2fae5e32012-03-04 14:48:15 +000013680 /* Reset PHY, otherwise the read DMA engine will be in a mode that
13681 * breaks all requests to 256 bytes.
13682 */
Joe Perches41535772013-02-16 11:20:04 +000013683 if (tg3_asic_rev(tp) == ASIC_REV_57766)
Joe Perches953c96e2013-04-09 10:18:14 +000013684 reset_phy = true;
Michael Chan2fae5e32012-03-04 14:48:15 +000013685
13686 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000013687
13688 if (!err)
13689 tg3_netif_start(tp);
13690
13691 tg3_full_unlock(tp);
13692
13693 if (!err)
13694 tg3_phy_start(tp);
13695
13696 return err;
13697}
13698
13699static const struct net_device_ops tg3_netdev_ops = {
13700 .ndo_open = tg3_open,
13701 .ndo_stop = tg3_close,
13702 .ndo_start_xmit = tg3_start_xmit,
13703 .ndo_get_stats64 = tg3_get_stats64,
13704 .ndo_validate_addr = eth_validate_addr,
13705 .ndo_set_rx_mode = tg3_set_rx_mode,
13706 .ndo_set_mac_address = tg3_set_mac_addr,
13707 .ndo_do_ioctl = tg3_ioctl,
13708 .ndo_tx_timeout = tg3_tx_timeout,
13709 .ndo_change_mtu = tg3_change_mtu,
13710 .ndo_fix_features = tg3_fix_features,
13711 .ndo_set_features = tg3_set_features,
13712#ifdef CONFIG_NET_POLL_CONTROLLER
13713 .ndo_poll_controller = tg3_poll_controller,
13714#endif
13715};
13716
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013717static void tg3_get_eeprom_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013718{
Michael Chan1b277772006-03-20 22:27:48 -080013719 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013720
13721 tp->nvram_size = EEPROM_CHIP_SIZE;
13722
Matt Carlsone4f34112009-02-25 14:25:00 +000013723 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013724 return;
13725
Michael Chanb16250e2006-09-27 16:10:14 -070013726 if ((magic != TG3_EEPROM_MAGIC) &&
13727 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
13728 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013729 return;
13730
13731 /*
13732 * Size the chip by reading offsets at increasing powers of two.
13733 * When we encounter our validation signature, we know the addressing
13734 * has wrapped around, and thus have our chip size.
13735 */
Michael Chan1b277772006-03-20 22:27:48 -080013736 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013737
13738 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013739 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013740 return;
13741
Michael Chan18201802006-03-20 22:29:15 -080013742 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013743 break;
13744
13745 cursize <<= 1;
13746 }
13747
13748 tp->nvram_size = cursize;
13749}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013750
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013751static void tg3_get_nvram_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013752{
13753 u32 val;
13754
Joe Perches63c3a662011-04-26 08:12:10 +000013755 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080013756 return;
13757
13758 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080013759 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080013760 tg3_get_eeprom_size(tp);
13761 return;
13762 }
13763
Matt Carlson6d348f22009-02-25 14:25:52 +000013764 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013765 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000013766 /* This is confusing. We want to operate on the
13767 * 16-bit value at offset 0xf2. The tg3_nvram_read()
13768 * call will read from NVRAM and byteswap the data
13769 * according to the byteswapping settings for all
13770 * other register accesses. This ensures the data we
13771 * want will always reside in the lower 16-bits.
13772 * However, the data in NVRAM is in LE format, which
13773 * means the data from the NVRAM read will always be
13774 * opposite the endianness of the CPU. The 16-bit
13775 * byteswap then brings the data to CPU endianness.
13776 */
13777 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013778 return;
13779 }
13780 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070013781 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013782}
13783
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013784static void tg3_get_nvram_info(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013785{
13786 u32 nvcfg1;
13787
13788 nvcfg1 = tr32(NVRAM_CFG1);
13789 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000013790 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013791 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013792 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13793 tw32(NVRAM_CFG1, nvcfg1);
13794 }
13795
Joe Perches41535772013-02-16 11:20:04 +000013796 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013797 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013798 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013799 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
13800 tp->nvram_jedecnum = JEDEC_ATMEL;
13801 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013802 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013803 break;
13804 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
13805 tp->nvram_jedecnum = JEDEC_ATMEL;
13806 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
13807 break;
13808 case FLASH_VENDOR_ATMEL_EEPROM:
13809 tp->nvram_jedecnum = JEDEC_ATMEL;
13810 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013811 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013812 break;
13813 case FLASH_VENDOR_ST:
13814 tp->nvram_jedecnum = JEDEC_ST;
13815 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013816 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013817 break;
13818 case FLASH_VENDOR_SAIFUN:
13819 tp->nvram_jedecnum = JEDEC_SAIFUN;
13820 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
13821 break;
13822 case FLASH_VENDOR_SST_SMALL:
13823 case FLASH_VENDOR_SST_LARGE:
13824 tp->nvram_jedecnum = JEDEC_SST;
13825 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
13826 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013827 }
Matt Carlson8590a602009-08-28 12:29:16 +000013828 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013829 tp->nvram_jedecnum = JEDEC_ATMEL;
13830 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013831 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013832 }
13833}
13834
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013835static void tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013836{
13837 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
13838 case FLASH_5752PAGE_SIZE_256:
13839 tp->nvram_pagesize = 256;
13840 break;
13841 case FLASH_5752PAGE_SIZE_512:
13842 tp->nvram_pagesize = 512;
13843 break;
13844 case FLASH_5752PAGE_SIZE_1K:
13845 tp->nvram_pagesize = 1024;
13846 break;
13847 case FLASH_5752PAGE_SIZE_2K:
13848 tp->nvram_pagesize = 2048;
13849 break;
13850 case FLASH_5752PAGE_SIZE_4K:
13851 tp->nvram_pagesize = 4096;
13852 break;
13853 case FLASH_5752PAGE_SIZE_264:
13854 tp->nvram_pagesize = 264;
13855 break;
13856 case FLASH_5752PAGE_SIZE_528:
13857 tp->nvram_pagesize = 528;
13858 break;
13859 }
13860}
13861
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013862static void tg3_get_5752_nvram_info(struct tg3 *tp)
Michael Chan361b4ac2005-04-21 17:11:21 -070013863{
13864 u32 nvcfg1;
13865
13866 nvcfg1 = tr32(NVRAM_CFG1);
13867
Michael Chane6af3012005-04-21 17:12:05 -070013868 /* NVRAM protection for TPM */
13869 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000013870 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070013871
Michael Chan361b4ac2005-04-21 17:11:21 -070013872 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013873 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
13874 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
13875 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013876 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013877 break;
13878 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13879 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013880 tg3_flag_set(tp, NVRAM_BUFFERED);
13881 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013882 break;
13883 case FLASH_5752VENDOR_ST_M45PE10:
13884 case FLASH_5752VENDOR_ST_M45PE20:
13885 case FLASH_5752VENDOR_ST_M45PE40:
13886 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013887 tg3_flag_set(tp, NVRAM_BUFFERED);
13888 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013889 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070013890 }
13891
Joe Perches63c3a662011-04-26 08:12:10 +000013892 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000013893 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000013894 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070013895 /* For eeprom, set pagesize to maximum eeprom size */
13896 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13897
13898 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13899 tw32(NVRAM_CFG1, nvcfg1);
13900 }
13901}
13902
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013903static void tg3_get_5755_nvram_info(struct tg3 *tp)
Michael Chand3c7b882006-03-23 01:28:25 -080013904{
Matt Carlson989a9d22007-05-05 11:51:05 -070013905 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080013906
13907 nvcfg1 = tr32(NVRAM_CFG1);
13908
13909 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070013910 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013911 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070013912 protect = 1;
13913 }
Michael Chand3c7b882006-03-23 01:28:25 -080013914
Matt Carlson989a9d22007-05-05 11:51:05 -070013915 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
13916 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013917 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13918 case FLASH_5755VENDOR_ATMEL_FLASH_2:
13919 case FLASH_5755VENDOR_ATMEL_FLASH_3:
13920 case FLASH_5755VENDOR_ATMEL_FLASH_5:
13921 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013922 tg3_flag_set(tp, NVRAM_BUFFERED);
13923 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013924 tp->nvram_pagesize = 264;
13925 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
13926 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
13927 tp->nvram_size = (protect ? 0x3e200 :
13928 TG3_NVRAM_SIZE_512KB);
13929 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
13930 tp->nvram_size = (protect ? 0x1f200 :
13931 TG3_NVRAM_SIZE_256KB);
13932 else
13933 tp->nvram_size = (protect ? 0x1f200 :
13934 TG3_NVRAM_SIZE_128KB);
13935 break;
13936 case FLASH_5752VENDOR_ST_M45PE10:
13937 case FLASH_5752VENDOR_ST_M45PE20:
13938 case FLASH_5752VENDOR_ST_M45PE40:
13939 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013940 tg3_flag_set(tp, NVRAM_BUFFERED);
13941 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013942 tp->nvram_pagesize = 256;
13943 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
13944 tp->nvram_size = (protect ?
13945 TG3_NVRAM_SIZE_64KB :
13946 TG3_NVRAM_SIZE_128KB);
13947 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
13948 tp->nvram_size = (protect ?
13949 TG3_NVRAM_SIZE_64KB :
13950 TG3_NVRAM_SIZE_256KB);
13951 else
13952 tp->nvram_size = (protect ?
13953 TG3_NVRAM_SIZE_128KB :
13954 TG3_NVRAM_SIZE_512KB);
13955 break;
Michael Chand3c7b882006-03-23 01:28:25 -080013956 }
13957}
13958
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013959static void tg3_get_5787_nvram_info(struct tg3 *tp)
Michael Chan1b277772006-03-20 22:27:48 -080013960{
13961 u32 nvcfg1;
13962
13963 nvcfg1 = tr32(NVRAM_CFG1);
13964
13965 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013966 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
13967 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
13968 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
13969 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
13970 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013971 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013972 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080013973
Matt Carlson8590a602009-08-28 12:29:16 +000013974 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13975 tw32(NVRAM_CFG1, nvcfg1);
13976 break;
13977 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13978 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13979 case FLASH_5755VENDOR_ATMEL_FLASH_2:
13980 case FLASH_5755VENDOR_ATMEL_FLASH_3:
13981 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013982 tg3_flag_set(tp, NVRAM_BUFFERED);
13983 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013984 tp->nvram_pagesize = 264;
13985 break;
13986 case FLASH_5752VENDOR_ST_M45PE10:
13987 case FLASH_5752VENDOR_ST_M45PE20:
13988 case FLASH_5752VENDOR_ST_M45PE40:
13989 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013990 tg3_flag_set(tp, NVRAM_BUFFERED);
13991 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013992 tp->nvram_pagesize = 256;
13993 break;
Michael Chan1b277772006-03-20 22:27:48 -080013994 }
13995}
13996
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013997static void tg3_get_5761_nvram_info(struct tg3 *tp)
Matt Carlson6b91fa02007-10-10 18:01:09 -070013998{
13999 u32 nvcfg1, protect = 0;
14000
14001 nvcfg1 = tr32(NVRAM_CFG1);
14002
14003 /* NVRAM protection for TPM */
14004 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014005 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070014006 protect = 1;
14007 }
14008
14009 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
14010 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014011 case FLASH_5761VENDOR_ATMEL_ADB021D:
14012 case FLASH_5761VENDOR_ATMEL_ADB041D:
14013 case FLASH_5761VENDOR_ATMEL_ADB081D:
14014 case FLASH_5761VENDOR_ATMEL_ADB161D:
14015 case FLASH_5761VENDOR_ATMEL_MDB021D:
14016 case FLASH_5761VENDOR_ATMEL_MDB041D:
14017 case FLASH_5761VENDOR_ATMEL_MDB081D:
14018 case FLASH_5761VENDOR_ATMEL_MDB161D:
14019 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014020 tg3_flag_set(tp, NVRAM_BUFFERED);
14021 tg3_flag_set(tp, FLASH);
14022 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000014023 tp->nvram_pagesize = 256;
14024 break;
14025 case FLASH_5761VENDOR_ST_A_M45PE20:
14026 case FLASH_5761VENDOR_ST_A_M45PE40:
14027 case FLASH_5761VENDOR_ST_A_M45PE80:
14028 case FLASH_5761VENDOR_ST_A_M45PE16:
14029 case FLASH_5761VENDOR_ST_M_M45PE20:
14030 case FLASH_5761VENDOR_ST_M_M45PE40:
14031 case FLASH_5761VENDOR_ST_M_M45PE80:
14032 case FLASH_5761VENDOR_ST_M_M45PE16:
14033 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014034 tg3_flag_set(tp, NVRAM_BUFFERED);
14035 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014036 tp->nvram_pagesize = 256;
14037 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014038 }
14039
14040 if (protect) {
14041 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
14042 } else {
14043 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014044 case FLASH_5761VENDOR_ATMEL_ADB161D:
14045 case FLASH_5761VENDOR_ATMEL_MDB161D:
14046 case FLASH_5761VENDOR_ST_A_M45PE16:
14047 case FLASH_5761VENDOR_ST_M_M45PE16:
14048 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
14049 break;
14050 case FLASH_5761VENDOR_ATMEL_ADB081D:
14051 case FLASH_5761VENDOR_ATMEL_MDB081D:
14052 case FLASH_5761VENDOR_ST_A_M45PE80:
14053 case FLASH_5761VENDOR_ST_M_M45PE80:
14054 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14055 break;
14056 case FLASH_5761VENDOR_ATMEL_ADB041D:
14057 case FLASH_5761VENDOR_ATMEL_MDB041D:
14058 case FLASH_5761VENDOR_ST_A_M45PE40:
14059 case FLASH_5761VENDOR_ST_M_M45PE40:
14060 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14061 break;
14062 case FLASH_5761VENDOR_ATMEL_ADB021D:
14063 case FLASH_5761VENDOR_ATMEL_MDB021D:
14064 case FLASH_5761VENDOR_ST_A_M45PE20:
14065 case FLASH_5761VENDOR_ST_M_M45PE20:
14066 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14067 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014068 }
14069 }
14070}
14071
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014072static void tg3_get_5906_nvram_info(struct tg3 *tp)
Michael Chanb5d37722006-09-27 16:06:21 -070014073{
14074 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014075 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070014076 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14077}
14078
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014079static void tg3_get_57780_nvram_info(struct tg3 *tp)
Matt Carlson321d32a2008-11-21 17:22:19 -080014080{
14081 u32 nvcfg1;
14082
14083 nvcfg1 = tr32(NVRAM_CFG1);
14084
14085 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14086 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14087 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14088 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014089 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080014090 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14091
14092 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14093 tw32(NVRAM_CFG1, nvcfg1);
14094 return;
14095 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14096 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14097 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14098 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14099 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14100 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14101 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14102 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014103 tg3_flag_set(tp, NVRAM_BUFFERED);
14104 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014105
14106 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14107 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14108 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14109 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14110 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14111 break;
14112 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14113 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14114 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14115 break;
14116 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14117 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14118 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14119 break;
14120 }
14121 break;
14122 case FLASH_5752VENDOR_ST_M45PE10:
14123 case FLASH_5752VENDOR_ST_M45PE20:
14124 case FLASH_5752VENDOR_ST_M45PE40:
14125 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014126 tg3_flag_set(tp, NVRAM_BUFFERED);
14127 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014128
14129 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14130 case FLASH_5752VENDOR_ST_M45PE10:
14131 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14132 break;
14133 case FLASH_5752VENDOR_ST_M45PE20:
14134 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14135 break;
14136 case FLASH_5752VENDOR_ST_M45PE40:
14137 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14138 break;
14139 }
14140 break;
14141 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014142 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080014143 return;
14144 }
14145
Matt Carlsona1b950d2009-09-01 13:20:17 +000014146 tg3_nvram_get_pagesize(tp, nvcfg1);
14147 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014148 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014149}
14150
14151
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014152static void tg3_get_5717_nvram_info(struct tg3 *tp)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014153{
14154 u32 nvcfg1;
14155
14156 nvcfg1 = tr32(NVRAM_CFG1);
14157
14158 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14159 case FLASH_5717VENDOR_ATMEL_EEPROM:
14160 case FLASH_5717VENDOR_MICRO_EEPROM:
14161 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014162 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014163 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14164
14165 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14166 tw32(NVRAM_CFG1, nvcfg1);
14167 return;
14168 case FLASH_5717VENDOR_ATMEL_MDB011D:
14169 case FLASH_5717VENDOR_ATMEL_ADB011B:
14170 case FLASH_5717VENDOR_ATMEL_ADB011D:
14171 case FLASH_5717VENDOR_ATMEL_MDB021D:
14172 case FLASH_5717VENDOR_ATMEL_ADB021B:
14173 case FLASH_5717VENDOR_ATMEL_ADB021D:
14174 case FLASH_5717VENDOR_ATMEL_45USPT:
14175 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014176 tg3_flag_set(tp, NVRAM_BUFFERED);
14177 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014178
14179 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14180 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014181 /* Detect size with tg3_nvram_get_size() */
14182 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014183 case FLASH_5717VENDOR_ATMEL_ADB021B:
14184 case FLASH_5717VENDOR_ATMEL_ADB021D:
14185 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14186 break;
14187 default:
14188 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14189 break;
14190 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014191 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014192 case FLASH_5717VENDOR_ST_M_M25PE10:
14193 case FLASH_5717VENDOR_ST_A_M25PE10:
14194 case FLASH_5717VENDOR_ST_M_M45PE10:
14195 case FLASH_5717VENDOR_ST_A_M45PE10:
14196 case FLASH_5717VENDOR_ST_M_M25PE20:
14197 case FLASH_5717VENDOR_ST_A_M25PE20:
14198 case FLASH_5717VENDOR_ST_M_M45PE20:
14199 case FLASH_5717VENDOR_ST_A_M45PE20:
14200 case FLASH_5717VENDOR_ST_25USPT:
14201 case FLASH_5717VENDOR_ST_45USPT:
14202 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014203 tg3_flag_set(tp, NVRAM_BUFFERED);
14204 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014205
14206 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14207 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014208 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014209 /* Detect size with tg3_nvram_get_size() */
14210 break;
14211 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014212 case FLASH_5717VENDOR_ST_A_M45PE20:
14213 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14214 break;
14215 default:
14216 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14217 break;
14218 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014219 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014220 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014221 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014222 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080014223 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000014224
14225 tg3_nvram_get_pagesize(tp, nvcfg1);
14226 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014227 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080014228}
14229
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014230static void tg3_get_5720_nvram_info(struct tg3 *tp)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014231{
14232 u32 nvcfg1, nvmpinstrp;
14233
14234 nvcfg1 = tr32(NVRAM_CFG1);
14235 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
14236
Joe Perches41535772013-02-16 11:20:04 +000014237 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014238 if (!(nvcfg1 & NVRAM_CFG1_5762VENDOR_MASK)) {
14239 tg3_flag_set(tp, NO_NVRAM);
14240 return;
14241 }
14242
14243 switch (nvmpinstrp) {
14244 case FLASH_5762_EEPROM_HD:
14245 nvmpinstrp = FLASH_5720_EEPROM_HD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014246 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014247 case FLASH_5762_EEPROM_LD:
14248 nvmpinstrp = FLASH_5720_EEPROM_LD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014249 break;
Michael Chanf6334bb2013-04-09 08:48:02 +000014250 case FLASH_5720VENDOR_M_ST_M45PE20:
14251 /* This pinstrap supports multiple sizes, so force it
14252 * to read the actual size from location 0xf0.
14253 */
14254 nvmpinstrp = FLASH_5720VENDOR_ST_45USPT;
14255 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014256 }
14257 }
14258
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014259 switch (nvmpinstrp) {
14260 case FLASH_5720_EEPROM_HD:
14261 case FLASH_5720_EEPROM_LD:
14262 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014263 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014264
14265 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14266 tw32(NVRAM_CFG1, nvcfg1);
14267 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
14268 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14269 else
14270 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
14271 return;
14272 case FLASH_5720VENDOR_M_ATMEL_DB011D:
14273 case FLASH_5720VENDOR_A_ATMEL_DB011B:
14274 case FLASH_5720VENDOR_A_ATMEL_DB011D:
14275 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14276 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14277 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14278 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14279 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14280 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14281 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14282 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14283 case FLASH_5720VENDOR_ATMEL_45USPT:
14284 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014285 tg3_flag_set(tp, NVRAM_BUFFERED);
14286 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014287
14288 switch (nvmpinstrp) {
14289 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14290 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14291 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14292 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14293 break;
14294 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14295 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14296 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14297 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14298 break;
14299 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14300 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14301 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14302 break;
14303 default:
Joe Perches41535772013-02-16 11:20:04 +000014304 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014305 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014306 break;
14307 }
14308 break;
14309 case FLASH_5720VENDOR_M_ST_M25PE10:
14310 case FLASH_5720VENDOR_M_ST_M45PE10:
14311 case FLASH_5720VENDOR_A_ST_M25PE10:
14312 case FLASH_5720VENDOR_A_ST_M45PE10:
14313 case FLASH_5720VENDOR_M_ST_M25PE20:
14314 case FLASH_5720VENDOR_M_ST_M45PE20:
14315 case FLASH_5720VENDOR_A_ST_M25PE20:
14316 case FLASH_5720VENDOR_A_ST_M45PE20:
14317 case FLASH_5720VENDOR_M_ST_M25PE40:
14318 case FLASH_5720VENDOR_M_ST_M45PE40:
14319 case FLASH_5720VENDOR_A_ST_M25PE40:
14320 case FLASH_5720VENDOR_A_ST_M45PE40:
14321 case FLASH_5720VENDOR_M_ST_M25PE80:
14322 case FLASH_5720VENDOR_M_ST_M45PE80:
14323 case FLASH_5720VENDOR_A_ST_M25PE80:
14324 case FLASH_5720VENDOR_A_ST_M45PE80:
14325 case FLASH_5720VENDOR_ST_25USPT:
14326 case FLASH_5720VENDOR_ST_45USPT:
14327 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014328 tg3_flag_set(tp, NVRAM_BUFFERED);
14329 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014330
14331 switch (nvmpinstrp) {
14332 case FLASH_5720VENDOR_M_ST_M25PE20:
14333 case FLASH_5720VENDOR_M_ST_M45PE20:
14334 case FLASH_5720VENDOR_A_ST_M25PE20:
14335 case FLASH_5720VENDOR_A_ST_M45PE20:
14336 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14337 break;
14338 case FLASH_5720VENDOR_M_ST_M25PE40:
14339 case FLASH_5720VENDOR_M_ST_M45PE40:
14340 case FLASH_5720VENDOR_A_ST_M25PE40:
14341 case FLASH_5720VENDOR_A_ST_M45PE40:
14342 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14343 break;
14344 case FLASH_5720VENDOR_M_ST_M25PE80:
14345 case FLASH_5720VENDOR_M_ST_M45PE80:
14346 case FLASH_5720VENDOR_A_ST_M25PE80:
14347 case FLASH_5720VENDOR_A_ST_M45PE80:
14348 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14349 break;
14350 default:
Joe Perches41535772013-02-16 11:20:04 +000014351 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014352 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014353 break;
14354 }
14355 break;
14356 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014357 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014358 return;
14359 }
14360
14361 tg3_nvram_get_pagesize(tp, nvcfg1);
14362 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014363 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Michael Chanc86a8562013-01-06 12:51:08 +000014364
Joe Perches41535772013-02-16 11:20:04 +000014365 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014366 u32 val;
14367
14368 if (tg3_nvram_read(tp, 0, &val))
14369 return;
14370
14371 if (val != TG3_EEPROM_MAGIC &&
14372 (val & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW)
14373 tg3_flag_set(tp, NO_NVRAM);
14374 }
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014375}
14376
Linus Torvalds1da177e2005-04-16 15:20:36 -070014377/* Chips other than 5700/5701 use the NVRAM for fetching info. */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014378static void tg3_nvram_init(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014379{
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014380 if (tg3_flag(tp, IS_SSB_CORE)) {
14381 /* No NVRAM and EEPROM on the SSB Broadcom GigE core. */
14382 tg3_flag_clear(tp, NVRAM);
14383 tg3_flag_clear(tp, NVRAM_BUFFERED);
14384 tg3_flag_set(tp, NO_NVRAM);
14385 return;
14386 }
14387
Linus Torvalds1da177e2005-04-16 15:20:36 -070014388 tw32_f(GRC_EEPROM_ADDR,
14389 (EEPROM_ADDR_FSM_RESET |
14390 (EEPROM_DEFAULT_CLOCK_PERIOD <<
14391 EEPROM_ADDR_CLKPERD_SHIFT)));
14392
Michael Chan9d57f012006-12-07 00:23:25 -080014393 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014394
14395 /* Enable seeprom accesses. */
14396 tw32_f(GRC_LOCAL_CTRL,
14397 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
14398 udelay(100);
14399
Joe Perches41535772013-02-16 11:20:04 +000014400 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14401 tg3_asic_rev(tp) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000014402 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014403
Michael Chanec41c7d2006-01-17 02:40:55 -080014404 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014405 netdev_warn(tp->dev,
14406 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000014407 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080014408 return;
14409 }
Michael Chane6af3012005-04-21 17:12:05 -070014410 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014411
Matt Carlson989a9d22007-05-05 11:51:05 -070014412 tp->nvram_size = 0;
14413
Joe Perches41535772013-02-16 11:20:04 +000014414 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan361b4ac2005-04-21 17:11:21 -070014415 tg3_get_5752_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014416 else if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chand3c7b882006-03-23 01:28:25 -080014417 tg3_get_5755_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014418 else if (tg3_asic_rev(tp) == ASIC_REV_5787 ||
14419 tg3_asic_rev(tp) == ASIC_REV_5784 ||
14420 tg3_asic_rev(tp) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080014421 tg3_get_5787_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014422 else if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014423 tg3_get_5761_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014424 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014425 tg3_get_5906_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014426 else if (tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014427 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080014428 tg3_get_57780_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014429 else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
14430 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014431 tg3_get_5717_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014432 else if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
14433 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014434 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070014435 else
14436 tg3_get_nvram_info(tp);
14437
Matt Carlson989a9d22007-05-05 11:51:05 -070014438 if (tp->nvram_size == 0)
14439 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014440
Michael Chane6af3012005-04-21 17:12:05 -070014441 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080014442 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014443
14444 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014445 tg3_flag_clear(tp, NVRAM);
14446 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014447
14448 tg3_get_eeprom_size(tp);
14449 }
14450}
14451
Linus Torvalds1da177e2005-04-16 15:20:36 -070014452struct subsys_tbl_ent {
14453 u16 subsys_vendor, subsys_devid;
14454 u32 phy_id;
14455};
14456
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014457static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014458 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014459 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014460 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014461 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014462 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014463 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014464 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014465 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14466 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
14467 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014468 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014469 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014470 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014471 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14472 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
14473 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014474 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014475 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014476 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014477 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014478 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014479 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014480 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014481
14482 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014483 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014484 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014485 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014486 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014487 { TG3PCI_SUBVENDOR_ID_3COM,
14488 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
14489 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014490 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014491 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014492 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014493
14494 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014495 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014496 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014497 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014498 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014499 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014500 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014501 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014502 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014503
14504 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014505 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014506 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014507 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014508 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014509 { TG3PCI_SUBVENDOR_ID_COMPAQ,
14510 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
14511 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014512 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014513 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014514 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014515
14516 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014517 { TG3PCI_SUBVENDOR_ID_IBM,
14518 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014519};
14520
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014521static struct subsys_tbl_ent *tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014522{
14523 int i;
14524
14525 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
14526 if ((subsys_id_to_phy_id[i].subsys_vendor ==
14527 tp->pdev->subsystem_vendor) &&
14528 (subsys_id_to_phy_id[i].subsys_devid ==
14529 tp->pdev->subsystem_device))
14530 return &subsys_id_to_phy_id[i];
14531 }
14532 return NULL;
14533}
14534
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014535static void tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014536{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014537 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070014538
Matt Carlson79eb6902010-02-17 15:17:03 +000014539 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014540 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14541
Gary Zambranoa85feb82007-05-05 11:52:19 -070014542 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000014543 tg3_flag_set(tp, EEPROM_WRITE_PROT);
14544 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080014545
Joe Perches41535772013-02-16 11:20:04 +000014546 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080014547 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014548 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14549 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014550 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014551 val = tr32(VCPU_CFGSHDW);
14552 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000014553 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070014554 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014555 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014556 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014557 device_set_wakeup_enable(&tp->pdev->dev, true);
14558 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014559 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070014560 }
14561
Linus Torvalds1da177e2005-04-16 15:20:36 -070014562 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
14563 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
14564 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070014565 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014566 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014567
14568 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
14569 tp->nic_sram_data_cfg = nic_cfg;
14570
14571 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
14572 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000014573 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14574 tg3_asic_rev(tp) != ASIC_REV_5701 &&
14575 tg3_asic_rev(tp) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014576 (ver > 0) && (ver < 0x100))
14577 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
14578
Joe Perches41535772013-02-16 11:20:04 +000014579 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlsona9daf362008-05-25 23:49:44 -070014580 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
14581
Linus Torvalds1da177e2005-04-16 15:20:36 -070014582 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
14583 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
14584 eeprom_phy_serdes = 1;
14585
14586 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
14587 if (nic_phy_id != 0) {
14588 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
14589 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
14590
14591 eeprom_phy_id = (id1 >> 16) << 10;
14592 eeprom_phy_id |= (id2 & 0xfc00) << 16;
14593 eeprom_phy_id |= (id2 & 0x03ff) << 0;
14594 } else
14595 eeprom_phy_id = 0;
14596
Michael Chan7d0c41e2005-04-21 17:06:20 -070014597 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070014598 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000014599 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014600 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000014601 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014602 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070014603 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070014604
Joe Perches63c3a662011-04-26 08:12:10 +000014605 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014606 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
14607 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070014608 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014609 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
14610
14611 switch (led_cfg) {
14612 default:
14613 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
14614 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14615 break;
14616
14617 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
14618 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14619 break;
14620
14621 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
14622 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070014623
14624 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
14625 * read on some older 5700/5701 bootcode.
14626 */
Joe Perches41535772013-02-16 11:20:04 +000014627 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
14628 tg3_asic_rev(tp) == ASIC_REV_5701)
Michael Chan9ba27792005-06-06 15:16:20 -070014629 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14630
Linus Torvalds1da177e2005-04-16 15:20:36 -070014631 break;
14632
14633 case SHASTA_EXT_LED_SHARED:
14634 tp->led_ctrl = LED_CTRL_MODE_SHARED;
Joe Perches41535772013-02-16 11:20:04 +000014635 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
14636 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014637 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14638 LED_CTRL_MODE_PHY_2);
14639 break;
14640
14641 case SHASTA_EXT_LED_MAC:
14642 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
14643 break;
14644
14645 case SHASTA_EXT_LED_COMBO:
14646 tp->led_ctrl = LED_CTRL_MODE_COMBO;
Joe Perches41535772013-02-16 11:20:04 +000014647 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014648 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14649 LED_CTRL_MODE_PHY_2);
14650 break;
14651
Stephen Hemminger855e1112008-04-16 16:37:28 -070014652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014653
Joe Perches41535772013-02-16 11:20:04 +000014654 if ((tg3_asic_rev(tp) == ASIC_REV_5700 ||
14655 tg3_asic_rev(tp) == ASIC_REV_5701) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014656 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
14657 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14658
Joe Perches41535772013-02-16 11:20:04 +000014659 if (tg3_chip_rev(tp) == CHIPREV_5784_AX)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014660 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080014661
Michael Chan9d26e212006-12-07 00:21:14 -080014662 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000014663 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014664 if ((tp->pdev->subsystem_vendor ==
14665 PCI_VENDOR_ID_ARIMA) &&
14666 (tp->pdev->subsystem_device == 0x205a ||
14667 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000014668 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014669 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014670 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14671 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014673
14674 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000014675 tg3_flag_set(tp, ENABLE_ASF);
14676 if (tg3_flag(tp, 5750_PLUS))
14677 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014678 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014679
14680 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014681 tg3_flag(tp, 5750_PLUS))
14682 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014683
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014684 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070014685 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000014686 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014687
Joe Perches63c3a662011-04-26 08:12:10 +000014688 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014689 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014690 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014691 device_set_wakeup_enable(&tp->pdev->dev, true);
14692 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014693
Linus Torvalds1da177e2005-04-16 15:20:36 -070014694 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014695 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014696
14697 /* serdes signal pre-emphasis in register 0x590 set by */
14698 /* bootcode if bit 18 is set */
14699 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014700 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014701
Joe Perches63c3a662011-04-26 08:12:10 +000014702 if ((tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000014703 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
14704 tg3_chip_rev(tp) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080014705 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014706 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080014707
Nithin Sujir942d1af2013-04-09 08:48:07 +000014708 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070014709 u32 cfg3;
14710
14711 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014712 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
14713 !tg3_flag(tp, 57765_PLUS) &&
14714 (cfg3 & NIC_SRAM_ASPM_DEBOUNCE))
Joe Perches63c3a662011-04-26 08:12:10 +000014715 tg3_flag_set(tp, ASPM_WORKAROUND);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014716 if (cfg3 & NIC_SRAM_LNK_FLAP_AVOID)
14717 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
14718 if (cfg3 & NIC_SRAM_1G_ON_VAUX_OK)
14719 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014720 }
Matt Carlsona9daf362008-05-25 23:49:44 -070014721
Matt Carlson14417062010-02-17 15:16:59 +000014722 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000014723 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070014724 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014725 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070014726 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014727 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014728 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014729done:
Joe Perches63c3a662011-04-26 08:12:10 +000014730 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014731 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000014732 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014733 else
14734 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070014735}
14736
Michael Chanc86a8562013-01-06 12:51:08 +000014737static int tg3_ape_otp_read(struct tg3 *tp, u32 offset, u32 *val)
14738{
14739 int i, err;
14740 u32 val2, off = offset * 8;
14741
14742 err = tg3_nvram_lock(tp);
14743 if (err)
14744 return err;
14745
14746 tg3_ape_write32(tp, TG3_APE_OTP_ADDR, off | APE_OTP_ADDR_CPU_ENABLE);
14747 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, APE_OTP_CTRL_PROG_EN |
14748 APE_OTP_CTRL_CMD_RD | APE_OTP_CTRL_START);
14749 tg3_ape_read32(tp, TG3_APE_OTP_CTRL);
14750 udelay(10);
14751
14752 for (i = 0; i < 100; i++) {
14753 val2 = tg3_ape_read32(tp, TG3_APE_OTP_STATUS);
14754 if (val2 & APE_OTP_STATUS_CMD_DONE) {
14755 *val = tg3_ape_read32(tp, TG3_APE_OTP_RD_DATA);
14756 break;
14757 }
14758 udelay(10);
14759 }
14760
14761 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, 0);
14762
14763 tg3_nvram_unlock(tp);
14764 if (val2 & APE_OTP_STATUS_CMD_DONE)
14765 return 0;
14766
14767 return -EBUSY;
14768}
14769
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014770static int tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014771{
14772 int i;
14773 u32 val;
14774
14775 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
14776 tw32(OTP_CTRL, cmd);
14777
14778 /* Wait for up to 1 ms for command to execute. */
14779 for (i = 0; i < 100; i++) {
14780 val = tr32(OTP_STATUS);
14781 if (val & OTP_STATUS_CMD_DONE)
14782 break;
14783 udelay(10);
14784 }
14785
14786 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
14787}
14788
14789/* Read the gphy configuration from the OTP region of the chip. The gphy
14790 * configuration is a 32-bit value that straddles the alignment boundary.
14791 * We do two 32-bit reads and then shift and merge the results.
14792 */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014793static u32 tg3_read_otp_phycfg(struct tg3 *tp)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014794{
14795 u32 bhalf_otp, thalf_otp;
14796
14797 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
14798
14799 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
14800 return 0;
14801
14802 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
14803
14804 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14805 return 0;
14806
14807 thalf_otp = tr32(OTP_READ_DATA);
14808
14809 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
14810
14811 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14812 return 0;
14813
14814 bhalf_otp = tr32(OTP_READ_DATA);
14815
14816 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
14817}
14818
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014819static void tg3_phy_init_link_config(struct tg3 *tp)
Matt Carlsone256f8a2011-03-09 16:58:24 +000014820{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000014821 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014822
14823 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
14824 adv |= ADVERTISED_1000baseT_Half |
14825 ADVERTISED_1000baseT_Full;
14826
14827 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14828 adv |= ADVERTISED_100baseT_Half |
14829 ADVERTISED_100baseT_Full |
14830 ADVERTISED_10baseT_Half |
14831 ADVERTISED_10baseT_Full |
14832 ADVERTISED_TP;
14833 else
14834 adv |= ADVERTISED_FIBRE;
14835
14836 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000014837 tp->link_config.speed = SPEED_UNKNOWN;
14838 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014839 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000014840 tp->link_config.active_speed = SPEED_UNKNOWN;
14841 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000014842
14843 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014844}
14845
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014846static int tg3_phy_probe(struct tg3 *tp)
Michael Chan7d0c41e2005-04-21 17:06:20 -070014847{
14848 u32 hw_phy_id_1, hw_phy_id_2;
14849 u32 hw_phy_id, hw_phy_id_masked;
14850 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014851
Matt Carlsone256f8a2011-03-09 16:58:24 +000014852 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000014853 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000014854 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
14855
Michael Chan8151ad52012-07-29 19:15:41 +000014856 if (tg3_flag(tp, ENABLE_APE)) {
14857 switch (tp->pci_fn) {
14858 case 0:
14859 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
14860 break;
14861 case 1:
14862 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
14863 break;
14864 case 2:
14865 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
14866 break;
14867 case 3:
14868 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
14869 break;
14870 }
14871 }
14872
Nithin Sujir942d1af2013-04-09 08:48:07 +000014873 if (!tg3_flag(tp, ENABLE_ASF) &&
14874 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
14875 !(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
14876 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
14877 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
14878
Joe Perches63c3a662011-04-26 08:12:10 +000014879 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014880 return tg3_phy_init(tp);
14881
Linus Torvalds1da177e2005-04-16 15:20:36 -070014882 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010014883 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014884 */
14885 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000014886 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000014887 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014888 } else {
14889 /* Now read the physical PHY_ID from the chip and verify
14890 * that it is sane. If it doesn't look good, we fall back
14891 * to either the hard-coded table based PHY_ID and failing
14892 * that the value found in the eeprom area.
14893 */
14894 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
14895 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
14896
14897 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
14898 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
14899 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
14900
Matt Carlson79eb6902010-02-17 15:17:03 +000014901 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014902 }
14903
Matt Carlson79eb6902010-02-17 15:17:03 +000014904 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014905 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000014906 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014907 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070014908 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014909 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014910 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000014911 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070014912 /* Do nothing, phy ID already set up in
14913 * tg3_get_eeprom_hw_cfg().
14914 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014915 } else {
14916 struct subsys_tbl_ent *p;
14917
14918 /* No eeprom signature? Try the hardcoded
14919 * subsys device table.
14920 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014921 p = tg3_lookup_by_subsys(tp);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014922 if (p) {
14923 tp->phy_id = p->phy_id;
14924 } else if (!tg3_flag(tp, IS_SSB_CORE)) {
14925 /* For now we saw the IDs 0xbc050cd0,
14926 * 0xbc050f80 and 0xbc050c30 on devices
14927 * connected to an BCM4785 and there are
14928 * probably more. Just assume that the phy is
14929 * supported when it is connected to a SSB core
14930 * for now.
14931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014932 return -ENODEV;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014934
Linus Torvalds1da177e2005-04-16 15:20:36 -070014935 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000014936 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014937 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014938 }
14939 }
14940
Matt Carlsona6b68da2010-12-06 08:28:52 +000014941 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000014942 (tg3_asic_rev(tp) == ASIC_REV_5719 ||
14943 tg3_asic_rev(tp) == ASIC_REV_5720 ||
Nithin Sujirc4dab502013-03-06 17:02:34 +000014944 tg3_asic_rev(tp) == ASIC_REV_57766 ||
Joe Perches41535772013-02-16 11:20:04 +000014945 tg3_asic_rev(tp) == ASIC_REV_5762 ||
14946 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
14947 tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0) ||
14948 (tg3_asic_rev(tp) == ASIC_REV_57765 &&
14949 tg3_chip_rev_id(tp) != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000014950 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
14951
Matt Carlsone256f8a2011-03-09 16:58:24 +000014952 tg3_phy_init_link_config(tp);
14953
Nithin Sujir942d1af2013-04-09 08:48:07 +000014954 if (!(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
14955 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014956 !tg3_flag(tp, ENABLE_APE) &&
14957 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000014958 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014959
14960 tg3_readphy(tp, MII_BMSR, &bmsr);
14961 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
14962 (bmsr & BMSR_LSTATUS))
14963 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014964
Linus Torvalds1da177e2005-04-16 15:20:36 -070014965 err = tg3_phy_reset(tp);
14966 if (err)
14967 return err;
14968
Matt Carlson42b64a42011-05-19 12:12:49 +000014969 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014970
Matt Carlsone2bf73e2011-12-08 14:40:15 +000014971 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000014972 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
14973 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014974
14975 tg3_writephy(tp, MII_BMCR,
14976 BMCR_ANENABLE | BMCR_ANRESTART);
14977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014978 }
14979
14980skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000014981 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014982 err = tg3_init_5401phy_dsp(tp);
14983 if (err)
14984 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014985
Linus Torvalds1da177e2005-04-16 15:20:36 -070014986 err = tg3_init_5401phy_dsp(tp);
14987 }
14988
Linus Torvalds1da177e2005-04-16 15:20:36 -070014989 return err;
14990}
14991
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014992static void tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014993{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000014994 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000014995 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000014996 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000014997 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014998
Matt Carlson535a4902011-07-20 10:20:56 +000014999 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015000 if (!vpd_data)
15001 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015002
Matt Carlson535a4902011-07-20 10:20:56 +000015003 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000015004 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015005 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015006
15007 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
15008 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
15009 i += PCI_VPD_LRDT_TAG_SIZE;
15010
Matt Carlson535a4902011-07-20 10:20:56 +000015011 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015012 goto out_not_found;
15013
Matt Carlson184b8902010-04-05 10:19:25 +000015014 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15015 PCI_VPD_RO_KEYWORD_MFR_ID);
15016 if (j > 0) {
15017 len = pci_vpd_info_field_size(&vpd_data[j]);
15018
15019 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15020 if (j + len > block_end || len != 4 ||
15021 memcmp(&vpd_data[j], "1028", 4))
15022 goto partno;
15023
15024 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15025 PCI_VPD_RO_KEYWORD_VENDOR0);
15026 if (j < 0)
15027 goto partno;
15028
15029 len = pci_vpd_info_field_size(&vpd_data[j]);
15030
15031 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15032 if (j + len > block_end)
15033 goto partno;
15034
Kees Cook715230a2013-03-27 06:40:50 +000015035 if (len >= sizeof(tp->fw_ver))
15036 len = sizeof(tp->fw_ver) - 1;
15037 memset(tp->fw_ver, 0, sizeof(tp->fw_ver));
15038 snprintf(tp->fw_ver, sizeof(tp->fw_ver), "%.*s bc ", len,
15039 &vpd_data[j]);
Matt Carlson184b8902010-04-05 10:19:25 +000015040 }
15041
15042partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000015043 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15044 PCI_VPD_RO_KEYWORD_PARTNO);
15045 if (i < 0)
15046 goto out_not_found;
15047
15048 len = pci_vpd_info_field_size(&vpd_data[i]);
15049
15050 i += PCI_VPD_INFO_FLD_HDR_SIZE;
15051 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000015052 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015053 goto out_not_found;
15054
15055 memcpy(tp->board_part_number, &vpd_data[i], len);
15056
Linus Torvalds1da177e2005-04-16 15:20:36 -070015057out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015058 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000015059 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015060 return;
15061
15062out_no_vpd:
Joe Perches41535772013-02-16 11:20:04 +000015063 if (tg3_asic_rev(tp) == ASIC_REV_5717) {
Michael Chan79d49692012-11-05 14:26:29 +000015064 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15065 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C)
Matt Carlson37a949c2010-09-30 10:34:33 +000015066 strcpy(tp->board_part_number, "BCM5717");
15067 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
15068 strcpy(tp->board_part_number, "BCM5718");
15069 else
15070 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015071 } else if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015072 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
15073 strcpy(tp->board_part_number, "BCM57780");
15074 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
15075 strcpy(tp->board_part_number, "BCM57760");
15076 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
15077 strcpy(tp->board_part_number, "BCM57790");
15078 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
15079 strcpy(tp->board_part_number, "BCM57788");
15080 else
15081 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015082 } else if (tg3_asic_rev(tp) == ASIC_REV_57765) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015083 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
15084 strcpy(tp->board_part_number, "BCM57761");
15085 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
15086 strcpy(tp->board_part_number, "BCM57765");
15087 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
15088 strcpy(tp->board_part_number, "BCM57781");
15089 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
15090 strcpy(tp->board_part_number, "BCM57785");
15091 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
15092 strcpy(tp->board_part_number, "BCM57791");
15093 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
15094 strcpy(tp->board_part_number, "BCM57795");
15095 else
15096 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015097 } else if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlson55086ad2011-12-14 11:09:59 +000015098 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
15099 strcpy(tp->board_part_number, "BCM57762");
15100 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
15101 strcpy(tp->board_part_number, "BCM57766");
15102 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
15103 strcpy(tp->board_part_number, "BCM57782");
15104 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15105 strcpy(tp->board_part_number, "BCM57786");
15106 else
15107 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015108 } else if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015109 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000015110 } else {
15111nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070015112 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000015113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015114}
15115
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015116static int tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
Matt Carlson9c8a6202007-10-21 16:16:08 -070015117{
15118 u32 val;
15119
Matt Carlsone4f34112009-02-25 14:25:00 +000015120 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015121 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015122 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015123 val != 0)
15124 return 0;
15125
15126 return 1;
15127}
15128
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015129static void tg3_read_bc_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015130{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015131 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000015132 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015133 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015134
15135 if (tg3_nvram_read(tp, 0xc, &offset) ||
15136 tg3_nvram_read(tp, 0x4, &start))
15137 return;
15138
15139 offset = tg3_nvram_logical_addr(tp, offset);
15140
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015141 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015142 return;
15143
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015144 if ((val & 0xfc000000) == 0x0c000000) {
15145 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015146 return;
15147
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015148 if (val == 0)
15149 newver = true;
15150 }
15151
Matt Carlson75f99362010-04-05 10:19:24 +000015152 dst_off = strlen(tp->fw_ver);
15153
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015154 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000015155 if (TG3_VER_SIZE - dst_off < 16 ||
15156 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015157 return;
15158
15159 offset = offset + ver_offset - start;
15160 for (i = 0; i < 16; i += 4) {
15161 __be32 v;
15162 if (tg3_nvram_read_be32(tp, offset + i, &v))
15163 return;
15164
Matt Carlson75f99362010-04-05 10:19:24 +000015165 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015166 }
15167 } else {
15168 u32 major, minor;
15169
15170 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
15171 return;
15172
15173 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
15174 TG3_NVM_BCVER_MAJSFT;
15175 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000015176 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
15177 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015178 }
15179}
15180
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015181static void tg3_read_hwsb_ver(struct tg3 *tp)
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015182{
15183 u32 val, major, minor;
15184
15185 /* Use native endian representation */
15186 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
15187 return;
15188
15189 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
15190 TG3_NVM_HWSB_CFG1_MAJSFT;
15191 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
15192 TG3_NVM_HWSB_CFG1_MINSFT;
15193
15194 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
15195}
15196
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015197static void tg3_read_sb_ver(struct tg3 *tp, u32 val)
Matt Carlsondfe00d72008-11-21 17:19:41 -080015198{
15199 u32 offset, major, minor, build;
15200
Matt Carlson75f99362010-04-05 10:19:24 +000015201 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015202
15203 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
15204 return;
15205
15206 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
15207 case TG3_EEPROM_SB_REVISION_0:
15208 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
15209 break;
15210 case TG3_EEPROM_SB_REVISION_2:
15211 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
15212 break;
15213 case TG3_EEPROM_SB_REVISION_3:
15214 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
15215 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000015216 case TG3_EEPROM_SB_REVISION_4:
15217 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
15218 break;
15219 case TG3_EEPROM_SB_REVISION_5:
15220 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
15221 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000015222 case TG3_EEPROM_SB_REVISION_6:
15223 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
15224 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015225 default:
15226 return;
15227 }
15228
Matt Carlsone4f34112009-02-25 14:25:00 +000015229 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080015230 return;
15231
15232 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
15233 TG3_EEPROM_SB_EDH_BLD_SHFT;
15234 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
15235 TG3_EEPROM_SB_EDH_MAJ_SHFT;
15236 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
15237
15238 if (minor > 99 || build > 26)
15239 return;
15240
Matt Carlson75f99362010-04-05 10:19:24 +000015241 offset = strlen(tp->fw_ver);
15242 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
15243 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015244
15245 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000015246 offset = strlen(tp->fw_ver);
15247 if (offset < TG3_VER_SIZE - 1)
15248 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015249 }
15250}
15251
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015252static void tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080015253{
15254 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015255 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070015256
15257 for (offset = TG3_NVM_DIR_START;
15258 offset < TG3_NVM_DIR_END;
15259 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000015260 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015261 return;
15262
15263 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
15264 break;
15265 }
15266
15267 if (offset == TG3_NVM_DIR_END)
15268 return;
15269
Joe Perches63c3a662011-04-26 08:12:10 +000015270 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015271 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000015272 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015273 return;
15274
Matt Carlsone4f34112009-02-25 14:25:00 +000015275 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015276 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015277 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015278 return;
15279
15280 offset += val - start;
15281
Matt Carlsonacd9c112009-02-25 14:26:33 +000015282 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015283
Matt Carlsonacd9c112009-02-25 14:26:33 +000015284 tp->fw_ver[vlen++] = ',';
15285 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070015286
15287 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000015288 __be32 v;
15289 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015290 return;
15291
Al Virob9fc7dc2007-12-17 22:59:57 -080015292 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015293
Matt Carlsonacd9c112009-02-25 14:26:33 +000015294 if (vlen > TG3_VER_SIZE - sizeof(v)) {
15295 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015296 break;
15297 }
15298
Matt Carlsonacd9c112009-02-25 14:26:33 +000015299 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
15300 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015301 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000015302}
15303
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015304static void tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000015305{
Matt Carlson7fd76442009-02-25 14:27:20 +000015306 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000015307
15308 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
15309 if (apedata != APE_SEG_SIG_MAGIC)
15310 return;
15311
15312 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
15313 if (!(apedata & APE_FW_STATUS_READY))
15314 return;
15315
Michael Chan165f4d12012-07-16 16:23:59 +000015316 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
15317 tg3_flag_set(tp, APE_HAS_NCSI);
15318}
15319
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015320static void tg3_read_dash_ver(struct tg3 *tp)
Michael Chan165f4d12012-07-16 16:23:59 +000015321{
15322 int vlen;
15323 u32 apedata;
15324 char *fwtype;
15325
Matt Carlson7fd76442009-02-25 14:27:20 +000015326 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
15327
Michael Chan165f4d12012-07-16 16:23:59 +000015328 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000015329 fwtype = "NCSI";
Michael Chanc86a8562013-01-06 12:51:08 +000015330 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725)
15331 fwtype = "SMASH";
Michael Chan165f4d12012-07-16 16:23:59 +000015332 else
Matt Carlsonecc79642010-08-02 11:26:01 +000015333 fwtype = "DASH";
15334
Matt Carlson7fd76442009-02-25 14:27:20 +000015335 vlen = strlen(tp->fw_ver);
15336
Matt Carlsonecc79642010-08-02 11:26:01 +000015337 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
15338 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000015339 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
15340 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
15341 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
15342 (apedata & APE_FW_VERSION_BLDMSK));
15343}
15344
Michael Chanc86a8562013-01-06 12:51:08 +000015345static void tg3_read_otp_ver(struct tg3 *tp)
15346{
15347 u32 val, val2;
15348
Joe Perches41535772013-02-16 11:20:04 +000015349 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000015350 return;
15351
15352 if (!tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0, &val) &&
15353 !tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0 + 4, &val2) &&
15354 TG3_OTP_MAGIC0_VALID(val)) {
15355 u64 val64 = (u64) val << 32 | val2;
15356 u32 ver = 0;
15357 int i, vlen;
15358
15359 for (i = 0; i < 7; i++) {
15360 if ((val64 & 0xff) == 0)
15361 break;
15362 ver = val64 & 0xff;
15363 val64 >>= 8;
15364 }
15365 vlen = strlen(tp->fw_ver);
15366 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " .%02d", ver);
15367 }
15368}
15369
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015370static void tg3_read_fw_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015371{
15372 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000015373 bool vpd_vers = false;
15374
15375 if (tp->fw_ver[0] != 0)
15376 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015377
Joe Perches63c3a662011-04-26 08:12:10 +000015378 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000015379 strcat(tp->fw_ver, "sb");
Michael Chanc86a8562013-01-06 12:51:08 +000015380 tg3_read_otp_ver(tp);
Matt Carlsondf259d82009-04-20 06:57:14 +000015381 return;
15382 }
15383
Matt Carlsonacd9c112009-02-25 14:26:33 +000015384 if (tg3_nvram_read(tp, 0, &val))
15385 return;
15386
15387 if (val == TG3_EEPROM_MAGIC)
15388 tg3_read_bc_ver(tp);
15389 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
15390 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015391 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
15392 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015393
Michael Chan165f4d12012-07-16 16:23:59 +000015394 if (tg3_flag(tp, ENABLE_ASF)) {
15395 if (tg3_flag(tp, ENABLE_APE)) {
15396 tg3_probe_ncsi(tp);
15397 if (!vpd_vers)
15398 tg3_read_dash_ver(tp);
15399 } else if (!vpd_vers) {
15400 tg3_read_mgmtfw_ver(tp);
15401 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000015402 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070015403
15404 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080015405}
15406
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015407static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
15408{
Joe Perches63c3a662011-04-26 08:12:10 +000015409 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015410 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000015411 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015412 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015413 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000015414 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015415}
15416
Matt Carlson41434702011-03-09 16:58:22 +000015417static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015418 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
15419 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
15420 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
15421 { },
15422};
15423
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015424static struct pci_dev *tg3_find_peer(struct tg3 *tp)
Matt Carlson16c7fa72012-02-13 10:20:10 +000015425{
15426 struct pci_dev *peer;
15427 unsigned int func, devnr = tp->pdev->devfn & ~7;
15428
15429 for (func = 0; func < 8; func++) {
15430 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15431 if (peer && peer != tp->pdev)
15432 break;
15433 pci_dev_put(peer);
15434 }
15435 /* 5704 can be configured in single-port mode, set peer to
15436 * tp->pdev in that case.
15437 */
15438 if (!peer) {
15439 peer = tp->pdev;
15440 return peer;
15441 }
15442
15443 /*
15444 * We don't need to keep the refcount elevated; there's no way
15445 * to remove one half of this device without removing the other
15446 */
15447 pci_dev_put(peer);
15448
15449 return peer;
15450}
15451
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015452static void tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
Matt Carlson42b123b2012-02-13 15:20:13 +000015453{
15454 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000015455 if (tg3_asic_rev(tp) == ASIC_REV_USE_PROD_ID_REG) {
Matt Carlson42b123b2012-02-13 15:20:13 +000015456 u32 reg;
15457
15458 /* All devices that use the alternate
15459 * ASIC REV location have a CPMU.
15460 */
15461 tg3_flag_set(tp, CPMU_PRESENT);
15462
15463 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000015464 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015465 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15466 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000015467 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
15468 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
15469 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
15470 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727)
Matt Carlson42b123b2012-02-13 15:20:13 +000015471 reg = TG3PCI_GEN2_PRODID_ASICREV;
15472 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
15473 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
15474 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
15475 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
15476 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
15477 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
15478 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
15479 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
15480 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
15481 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15482 reg = TG3PCI_GEN15_PRODID_ASICREV;
15483 else
15484 reg = TG3PCI_PRODID_ASICREV;
15485
15486 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
15487 }
15488
15489 /* Wrong chip ID in 5752 A0. This code can be removed later
15490 * as A0 is not in production.
15491 */
Joe Perches41535772013-02-16 11:20:04 +000015492 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5752_A0_HW)
Matt Carlson42b123b2012-02-13 15:20:13 +000015493 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
15494
Joe Perches41535772013-02-16 11:20:04 +000015495 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_C0)
Michael Chan79d49692012-11-05 14:26:29 +000015496 tp->pci_chip_rev_id = CHIPREV_ID_5720_A0;
15497
Joe Perches41535772013-02-16 11:20:04 +000015498 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15499 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15500 tg3_asic_rev(tp) == ASIC_REV_5720)
Matt Carlson42b123b2012-02-13 15:20:13 +000015501 tg3_flag_set(tp, 5717_PLUS);
15502
Joe Perches41535772013-02-16 11:20:04 +000015503 if (tg3_asic_rev(tp) == ASIC_REV_57765 ||
15504 tg3_asic_rev(tp) == ASIC_REV_57766)
Matt Carlson42b123b2012-02-13 15:20:13 +000015505 tg3_flag_set(tp, 57765_CLASS);
15506
Michael Chanc65a17f2013-01-06 12:51:07 +000015507 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015508 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson42b123b2012-02-13 15:20:13 +000015509 tg3_flag_set(tp, 57765_PLUS);
15510
15511 /* Intentionally exclude ASIC_REV_5906 */
Joe Perches41535772013-02-16 11:20:04 +000015512 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
15513 tg3_asic_rev(tp) == ASIC_REV_5787 ||
15514 tg3_asic_rev(tp) == ASIC_REV_5784 ||
15515 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15516 tg3_asic_rev(tp) == ASIC_REV_5785 ||
15517 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015518 tg3_flag(tp, 57765_PLUS))
15519 tg3_flag_set(tp, 5755_PLUS);
15520
Joe Perches41535772013-02-16 11:20:04 +000015521 if (tg3_asic_rev(tp) == ASIC_REV_5780 ||
15522 tg3_asic_rev(tp) == ASIC_REV_5714)
Matt Carlson42b123b2012-02-13 15:20:13 +000015523 tg3_flag_set(tp, 5780_CLASS);
15524
Joe Perches41535772013-02-16 11:20:04 +000015525 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
15526 tg3_asic_rev(tp) == ASIC_REV_5752 ||
15527 tg3_asic_rev(tp) == ASIC_REV_5906 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015528 tg3_flag(tp, 5755_PLUS) ||
15529 tg3_flag(tp, 5780_CLASS))
15530 tg3_flag_set(tp, 5750_PLUS);
15531
Joe Perches41535772013-02-16 11:20:04 +000015532 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015533 tg3_flag(tp, 5750_PLUS))
15534 tg3_flag_set(tp, 5705_PLUS);
15535}
15536
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015537static bool tg3_10_100_only_device(struct tg3 *tp,
15538 const struct pci_device_id *ent)
15539{
15540 u32 grc_misc_cfg = tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK;
15541
Joe Perches41535772013-02-16 11:20:04 +000015542 if ((tg3_asic_rev(tp) == ASIC_REV_5703 &&
15543 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015544 (tp->phy_flags & TG3_PHYFLG_IS_FET))
15545 return true;
15546
15547 if (ent->driver_data & TG3_DRV_DATA_FLAG_10_100_ONLY) {
Joe Perches41535772013-02-16 11:20:04 +000015548 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015549 if (ent->driver_data & TG3_DRV_DATA_FLAG_5705_10_100)
15550 return true;
15551 } else {
15552 return true;
15553 }
15554 }
15555
15556 return false;
15557}
15558
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000015559static int tg3_get_invariants(struct tg3 *tp, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015560{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015561 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015562 u32 pci_state_reg, grc_misc_cfg;
15563 u32 val;
15564 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015565 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015566
Linus Torvalds1da177e2005-04-16 15:20:36 -070015567 /* Force memory write invalidate off. If we leave it on,
15568 * then on 5700_BX chips we have to enable a workaround.
15569 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
15570 * to match the cacheline size. The Broadcom driver have this
15571 * workaround but turns MWI off all the times so never uses
15572 * it. This seems to suggest that the workaround is insufficient.
15573 */
15574 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15575 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
15576 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15577
Matt Carlson16821282011-07-13 09:27:28 +000015578 /* Important! -- Make sure register accesses are byteswapped
15579 * correctly. Also, for those chips that require it, make
15580 * sure that indirect register accesses are enabled before
15581 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015582 */
15583 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15584 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000015585 tp->misc_host_ctrl |= (misc_ctrl_reg &
15586 MISC_HOST_CTRL_CHIPREV);
15587 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15588 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015589
Matt Carlson42b123b2012-02-13 15:20:13 +000015590 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070015591
Michael Chan68929142005-08-09 20:17:14 -070015592 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
15593 * we need to disable memory and use config. cycles
15594 * only to access all registers. The 5702/03 chips
15595 * can mistakenly decode the special cycles from the
15596 * ICH chipsets as memory write cycles, causing corruption
15597 * of register and memory space. Only certain ICH bridges
15598 * will drive special cycles with non-zero data during the
15599 * address phase which can fall within the 5703's address
15600 * range. This is not an ICH bug as the PCI spec allows
15601 * non-zero address during special cycles. However, only
15602 * these ICH bridges are known to drive non-zero addresses
15603 * during special cycles.
15604 *
15605 * Since special cycles do not cross PCI bridges, we only
15606 * enable this workaround if the 5703 is on the secondary
15607 * bus of these ICH bridges.
15608 */
Joe Perches41535772013-02-16 11:20:04 +000015609 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1) ||
15610 (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A2)) {
Michael Chan68929142005-08-09 20:17:14 -070015611 static struct tg3_dev_id {
15612 u32 vendor;
15613 u32 device;
15614 u32 rev;
15615 } ich_chipsets[] = {
15616 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
15617 PCI_ANY_ID },
15618 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
15619 PCI_ANY_ID },
15620 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
15621 0xa },
15622 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
15623 PCI_ANY_ID },
15624 { },
15625 };
15626 struct tg3_dev_id *pci_id = &ich_chipsets[0];
15627 struct pci_dev *bridge = NULL;
15628
15629 while (pci_id->vendor != 0) {
15630 bridge = pci_get_device(pci_id->vendor, pci_id->device,
15631 bridge);
15632 if (!bridge) {
15633 pci_id++;
15634 continue;
15635 }
15636 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070015637 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070015638 continue;
15639 }
15640 if (bridge->subordinate &&
15641 (bridge->subordinate->number ==
15642 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015643 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070015644 pci_dev_put(bridge);
15645 break;
15646 }
15647 }
15648 }
15649
Joe Perches41535772013-02-16 11:20:04 +000015650 if (tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070015651 static struct tg3_dev_id {
15652 u32 vendor;
15653 u32 device;
15654 } bridge_chipsets[] = {
15655 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
15656 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
15657 { },
15658 };
15659 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
15660 struct pci_dev *bridge = NULL;
15661
15662 while (pci_id->vendor != 0) {
15663 bridge = pci_get_device(pci_id->vendor,
15664 pci_id->device,
15665 bridge);
15666 if (!bridge) {
15667 pci_id++;
15668 continue;
15669 }
15670 if (bridge->subordinate &&
15671 (bridge->subordinate->number <=
15672 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015673 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba2008-04-19 18:12:33 -070015674 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015675 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070015676 pci_dev_put(bridge);
15677 break;
15678 }
15679 }
15680 }
15681
Michael Chan4a29cc22006-03-19 13:21:12 -080015682 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
15683 * DMA addresses > 40-bit. This bridge may have other additional
15684 * 57xx devices behind it in some 4-port NIC designs for example.
15685 * Any tg3 device found behind the bridge will also need the 40-bit
15686 * DMA workaround.
15687 */
Matt Carlson42b123b2012-02-13 15:20:13 +000015688 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015689 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070015690 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000015691 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080015692 struct pci_dev *bridge = NULL;
15693
15694 do {
15695 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
15696 PCI_DEVICE_ID_SERVERWORKS_EPB,
15697 bridge);
15698 if (bridge && bridge->subordinate &&
15699 (bridge->subordinate->number <=
15700 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015701 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080015702 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015703 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080015704 pci_dev_put(bridge);
15705 break;
15706 }
15707 } while (bridge);
15708 }
Michael Chan4cf78e42005-07-25 12:29:19 -070015709
Joe Perches41535772013-02-16 11:20:04 +000015710 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
15711 tg3_asic_rev(tp) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070015712 tp->pdev_peer = tg3_find_peer(tp);
15713
Matt Carlson507399f2009-11-13 13:03:37 +000015714 /* Determine TSO capabilities */
Joe Perches41535772013-02-16 11:20:04 +000015715 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000015716 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000015717 else if (tg3_flag(tp, 57765_PLUS))
15718 tg3_flag_set(tp, HW_TSO_3);
15719 else if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015720 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015721 tg3_flag_set(tp, HW_TSO_2);
15722 else if (tg3_flag(tp, 5750_PLUS)) {
15723 tg3_flag_set(tp, HW_TSO_1);
15724 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015725 if (tg3_asic_rev(tp) == ASIC_REV_5750 &&
15726 tg3_chip_rev_id(tp) >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000015727 tg3_flag_clear(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015728 } else if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
15729 tg3_asic_rev(tp) != ASIC_REV_5701 &&
15730 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Matt Carlson1caf13e2013-03-06 17:02:29 +000015731 tg3_flag_set(tp, FW_TSO);
15732 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015733 if (tg3_asic_rev(tp) == ASIC_REV_5705)
Matt Carlson507399f2009-11-13 13:03:37 +000015734 tp->fw_needed = FIRMWARE_TG3TSO5;
15735 else
15736 tp->fw_needed = FIRMWARE_TG3TSO;
15737 }
15738
Matt Carlsondabc5c62011-05-19 12:12:52 +000015739 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000015740 if (tg3_flag(tp, HW_TSO_1) ||
15741 tg3_flag(tp, HW_TSO_2) ||
15742 tg3_flag(tp, HW_TSO_3) ||
Matt Carlson1caf13e2013-03-06 17:02:29 +000015743 tg3_flag(tp, FW_TSO)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015744 /* For firmware TSO, assume ASF is disabled.
15745 * We'll disable TSO later if we discover ASF
15746 * is enabled in tg3_get_eeprom_hw_cfg().
15747 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000015748 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015749 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000015750 tg3_flag_clear(tp, TSO_CAPABLE);
15751 tg3_flag_clear(tp, TSO_BUG);
15752 tp->fw_needed = NULL;
15753 }
15754
Joe Perches41535772013-02-16 11:20:04 +000015755 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0)
Matt Carlsondabc5c62011-05-19 12:12:52 +000015756 tp->fw_needed = FIRMWARE_TG3;
15757
Nithin Sujirc4dab502013-03-06 17:02:34 +000015758 if (tg3_asic_rev(tp) == ASIC_REV_57766)
15759 tp->fw_needed = FIRMWARE_TG357766;
15760
Matt Carlson507399f2009-11-13 13:03:37 +000015761 tp->irq_max = 1;
15762
Joe Perches63c3a662011-04-26 08:12:10 +000015763 if (tg3_flag(tp, 5750_PLUS)) {
15764 tg3_flag_set(tp, SUPPORT_MSI);
Joe Perches41535772013-02-16 11:20:04 +000015765 if (tg3_chip_rev(tp) == CHIPREV_5750_AX ||
15766 tg3_chip_rev(tp) == CHIPREV_5750_BX ||
15767 (tg3_asic_rev(tp) == ASIC_REV_5714 &&
15768 tg3_chip_rev_id(tp) <= CHIPREV_ID_5714_A2 &&
Michael Chan7544b092007-05-05 13:08:32 -070015769 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000015770 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070015771
Joe Perches63c3a662011-04-26 08:12:10 +000015772 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015773 tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015774 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070015775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015776
Joe Perches63c3a662011-04-26 08:12:10 +000015777 if (tg3_flag(tp, 57765_PLUS)) {
15778 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000015779 tp->irq_max = TG3_IRQ_MAX_VECS;
15780 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015781 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000015782
Michael Chan91024262012-09-28 07:12:38 +000015783 tp->txq_max = 1;
15784 tp->rxq_max = 1;
15785 if (tp->irq_max > 1) {
15786 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
15787 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
15788
Joe Perches41535772013-02-16 11:20:04 +000015789 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
15790 tg3_asic_rev(tp) == ASIC_REV_5720)
Michael Chan91024262012-09-28 07:12:38 +000015791 tp->txq_max = tp->irq_max - 1;
15792 }
15793
Matt Carlsonb7abee62012-06-07 12:56:54 +000015794 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015795 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015796 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015797
Joe Perches41535772013-02-16 11:20:04 +000015798 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000015799 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000015800
Joe Perches41535772013-02-16 11:20:04 +000015801 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15802 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15803 tg3_asic_rev(tp) == ASIC_REV_5720 ||
15804 tg3_asic_rev(tp) == ASIC_REV_5762)
Joe Perches63c3a662011-04-26 08:12:10 +000015805 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000015806
Joe Perches63c3a662011-04-26 08:12:10 +000015807 if (tg3_flag(tp, 57765_PLUS) &&
Joe Perches41535772013-02-16 11:20:04 +000015808 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000015809 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000015810
Joe Perches63c3a662011-04-26 08:12:10 +000015811 if (!tg3_flag(tp, 5705_PLUS) ||
15812 tg3_flag(tp, 5780_CLASS) ||
15813 tg3_flag(tp, USE_JUMBO_BDFLAG))
15814 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070015815
Matt Carlson52f44902008-11-21 17:17:04 -080015816 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
15817 &pci_state_reg);
15818
Jon Mason708ebb3a2011-06-27 12:56:50 +000015819 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015820 u16 lnkctl;
15821
Joe Perches63c3a662011-04-26 08:12:10 +000015822 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080015823
Jiang Liu0f49bfb2012-08-20 13:28:20 -060015824 pcie_capability_read_word(tp->pdev, PCI_EXP_LNKCTL, &lnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015825 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Joe Perches41535772013-02-16 11:20:04 +000015826 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015827 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000015828 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000015829 }
Joe Perches41535772013-02-16 11:20:04 +000015830 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
15831 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15832 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A0 ||
15833 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000015834 tg3_flag_set(tp, CLKREQ_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015835 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000015836 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080015837 }
Joe Perches41535772013-02-16 11:20:04 +000015838 } else if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000015839 /* BCM5785 devices are effectively PCIe devices, and should
15840 * follow PCIe codepaths, but do not have a PCIe capabilities
15841 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000015842 */
Joe Perches63c3a662011-04-26 08:12:10 +000015843 tg3_flag_set(tp, PCI_EXPRESS);
15844 } else if (!tg3_flag(tp, 5705_PLUS) ||
15845 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080015846 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
15847 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000015848 dev_err(&tp->pdev->dev,
15849 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080015850 return -EIO;
15851 }
15852
15853 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000015854 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080015855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015856
Michael Chan399de502005-10-03 14:02:39 -070015857 /* If we have an AMD 762 or VIA K8T800 chipset, write
15858 * reordering to the mailbox registers done by the host
15859 * controller can cause major troubles. We read back from
15860 * every mailbox register write to force the writes to be
15861 * posted to the chip in order.
15862 */
Matt Carlson41434702011-03-09 16:58:22 +000015863 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000015864 !tg3_flag(tp, PCI_EXPRESS))
15865 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070015866
Matt Carlson69fc4052008-12-21 20:19:57 -080015867 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
15868 &tp->pci_cacheline_sz);
15869 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15870 &tp->pci_lat_timer);
Joe Perches41535772013-02-16 11:20:04 +000015871 if (tg3_asic_rev(tp) == ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015872 tp->pci_lat_timer < 64) {
15873 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080015874 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15875 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015876 }
15877
Matt Carlson16821282011-07-13 09:27:28 +000015878 /* Important! -- It is critical that the PCI-X hw workaround
15879 * situation is decided before the first MMIO register access.
15880 */
Joe Perches41535772013-02-16 11:20:04 +000015881 if (tg3_chip_rev(tp) == CHIPREV_5700_BX) {
Matt Carlson52f44902008-11-21 17:17:04 -080015882 /* 5700 BX chips need to have their TX producer index
15883 * mailboxes written twice to workaround a bug.
15884 */
Joe Perches63c3a662011-04-26 08:12:10 +000015885 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070015886
Matt Carlson52f44902008-11-21 17:17:04 -080015887 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015888 *
15889 * The workaround is to use indirect register accesses
15890 * for all chip writes not to mailbox registers.
15891 */
Joe Perches63c3a662011-04-26 08:12:10 +000015892 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015893 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015894
Joe Perches63c3a662011-04-26 08:12:10 +000015895 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015896
15897 /* The chip can have it's power management PCI config
15898 * space registers clobbered due to this bug.
15899 * So explicitly force the chip into D0 here.
15900 */
Matt Carlson9974a352007-10-07 23:27:28 -070015901 pci_read_config_dword(tp->pdev,
15902 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015903 &pm_reg);
15904 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
15905 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070015906 pci_write_config_dword(tp->pdev,
15907 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015908 pm_reg);
15909
15910 /* Also, force SERR#/PERR# in PCI command. */
15911 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15912 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
15913 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15914 }
15915 }
15916
Linus Torvalds1da177e2005-04-16 15:20:36 -070015917 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015918 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015919 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015920 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015921
15922 /* Chip-specific fixup from Broadcom driver */
Joe Perches41535772013-02-16 11:20:04 +000015923 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015924 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
15925 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
15926 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
15927 }
15928
Michael Chan1ee582d2005-08-09 20:16:46 -070015929 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070015930 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015931 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070015932 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070015933 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015934 tp->write32_tx_mbox = tg3_write32;
15935 tp->write32_rx_mbox = tg3_write32;
15936
15937 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000015938 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070015939 tp->write32 = tg3_write_indirect_reg32;
Joe Perches41535772013-02-16 11:20:04 +000015940 else if (tg3_asic_rev(tp) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015941 (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +000015942 tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0)) {
Matt Carlson98efd8a2007-05-05 12:47:25 -070015943 /*
15944 * Back to back register writes can cause problems on these
15945 * chips, the workaround is to read back all reg writes
15946 * except those to mailbox regs.
15947 *
15948 * See tg3_write_indirect_reg32().
15949 */
Michael Chan1ee582d2005-08-09 20:16:46 -070015950 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070015951 }
15952
Joe Perches63c3a662011-04-26 08:12:10 +000015953 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070015954 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000015955 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070015956 tp->write32_rx_mbox = tg3_write_flush_reg32;
15957 }
Michael Chan20094932005-08-09 20:16:32 -070015958
Joe Perches63c3a662011-04-26 08:12:10 +000015959 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070015960 tp->read32 = tg3_read_indirect_reg32;
15961 tp->write32 = tg3_write_indirect_reg32;
15962 tp->read32_mbox = tg3_read_indirect_mbox;
15963 tp->write32_mbox = tg3_write_indirect_mbox;
15964 tp->write32_tx_mbox = tg3_write_indirect_mbox;
15965 tp->write32_rx_mbox = tg3_write_indirect_mbox;
15966
15967 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015968 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015969
15970 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15971 pci_cmd &= ~PCI_COMMAND_MEMORY;
15972 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15973 }
Joe Perches41535772013-02-16 11:20:04 +000015974 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015975 tp->read32_mbox = tg3_read32_mbox_5906;
15976 tp->write32_mbox = tg3_write32_mbox_5906;
15977 tp->write32_tx_mbox = tg3_write32_mbox_5906;
15978 tp->write32_rx_mbox = tg3_write32_mbox_5906;
15979 }
Michael Chan68929142005-08-09 20:17:14 -070015980
Michael Chanbbadf502006-04-06 21:46:34 -070015981 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015982 (tg3_flag(tp, PCIX_MODE) &&
Joe Perches41535772013-02-16 11:20:04 +000015983 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
15984 tg3_asic_rev(tp) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000015985 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070015986
Matt Carlson16821282011-07-13 09:27:28 +000015987 /* The memory arbiter has to be enabled in order for SRAM accesses
15988 * to succeed. Normally on powerup the tg3 chip firmware will make
15989 * sure it is enabled, but other entities such as system netboot
15990 * code might disable it.
15991 */
15992 val = tr32(MEMARB_MODE);
15993 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
15994
Matt Carlson9dc5e342011-11-04 09:15:02 +000015995 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
Joe Perches41535772013-02-16 11:20:04 +000015996 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Matt Carlson9dc5e342011-11-04 09:15:02 +000015997 tg3_flag(tp, 5780_CLASS)) {
15998 if (tg3_flag(tp, PCIX_MODE)) {
15999 pci_read_config_dword(tp->pdev,
16000 tp->pcix_cap + PCI_X_STATUS,
16001 &val);
16002 tp->pci_fn = val & 0x7;
16003 }
Joe Perches41535772013-02-16 11:20:04 +000016004 } else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16005 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16006 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson9dc5e342011-11-04 09:15:02 +000016007 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
Michael Chan857001f2013-01-06 12:51:09 +000016008 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) != NIC_SRAM_CPMUSTAT_SIG)
16009 val = tr32(TG3_CPMU_STATUS);
16010
Joe Perches41535772013-02-16 11:20:04 +000016011 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Michael Chan857001f2013-01-06 12:51:09 +000016012 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5717) ? 1 : 0;
16013 else
Matt Carlson9dc5e342011-11-04 09:15:02 +000016014 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
16015 TG3_CPMU_STATUS_FSHFT_5719;
Matt Carlson69f11c92011-07-13 09:27:30 +000016016 }
16017
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016018 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
16019 tp->write32_tx_mbox = tg3_write_flush_reg32;
16020 tp->write32_rx_mbox = tg3_write_flush_reg32;
16021 }
16022
Michael Chan7d0c41e2005-04-21 17:06:20 -070016023 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000016024 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070016025 * determined before calling tg3_set_power_state() so that
16026 * we know whether or not to switch out of Vaux power.
16027 * When the flag is set, it means that GPIO1 is used for eeprom
16028 * write protect and also implies that it is a LOM where GPIOs
16029 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040016030 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070016031 tg3_get_eeprom_hw_cfg(tp);
16032
Matt Carlson1caf13e2013-03-06 17:02:29 +000016033 if (tg3_flag(tp, FW_TSO) && tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016034 tg3_flag_clear(tp, TSO_CAPABLE);
16035 tg3_flag_clear(tp, TSO_BUG);
16036 tp->fw_needed = NULL;
16037 }
16038
Joe Perches63c3a662011-04-26 08:12:10 +000016039 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070016040 /* Allow reads and writes to the
16041 * APE register and memory space.
16042 */
16043 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000016044 PCISTATE_ALLOW_APE_SHMEM_WR |
16045 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070016046 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
16047 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000016048
16049 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070016050 }
16051
Matt Carlson16821282011-07-13 09:27:28 +000016052 /* Set up tp->grc_local_ctrl before calling
16053 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
16054 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070016055 * It is also used as eeprom write protect on LOMs.
16056 */
16057 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Joe Perches41535772013-02-16 11:20:04 +000016058 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016059 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070016060 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
16061 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070016062 /* Unused GPIO3 must be driven as output on 5752 because there
16063 * are no pull-up resistors on unused GPIO pins.
16064 */
Joe Perches41535772013-02-16 11:20:04 +000016065 else if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070016066 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070016067
Joe Perches41535772013-02-16 11:20:04 +000016068 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16069 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000016070 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080016071 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
16072
Matt Carlson8d519ab2009-04-20 06:58:01 +000016073 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
16074 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016075 /* Turn off the debug UART. */
16076 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000016077 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016078 /* Keep VMain power. */
16079 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
16080 GRC_LCLCTRL_GPIO_OUTPUT0;
16081 }
16082
Joe Perches41535772013-02-16 11:20:04 +000016083 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000016084 tp->grc_local_ctrl |=
16085 tr32(GRC_LOCAL_CTRL) & GRC_LCLCTRL_GPIO_UART_SEL;
16086
Matt Carlson16821282011-07-13 09:27:28 +000016087 /* Switch out of Vaux if it is a NIC */
16088 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016089
Linus Torvalds1da177e2005-04-16 15:20:36 -070016090 /* Derive initial jumbo mode from MTU assigned in
16091 * ether_setup() via the alloc_etherdev() call
16092 */
Joe Perches63c3a662011-04-26 08:12:10 +000016093 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
16094 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016095
16096 /* Determine WakeOnLan speed to use. */
Joe Perches41535772013-02-16 11:20:04 +000016097 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16098 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16099 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16100 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000016101 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016102 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000016103 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016104 }
16105
Joe Perches41535772013-02-16 11:20:04 +000016106 if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016107 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000016108
Linus Torvalds1da177e2005-04-16 15:20:36 -070016109 /* A few boards don't want Ethernet@WireSpeed phy feature */
Joe Perches41535772013-02-16 11:20:04 +000016110 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16111 (tg3_asic_rev(tp) == ASIC_REV_5705 &&
16112 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) &&
16113 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016114 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
16115 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
16116 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016117
Joe Perches41535772013-02-16 11:20:04 +000016118 if (tg3_chip_rev(tp) == CHIPREV_5703_AX ||
16119 tg3_chip_rev(tp) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016120 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Joe Perches41535772013-02-16 11:20:04 +000016121 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016122 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016123
Joe Perches63c3a662011-04-26 08:12:10 +000016124 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016125 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +000016126 tg3_asic_rev(tp) != ASIC_REV_5785 &&
16127 tg3_asic_rev(tp) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016128 !tg3_flag(tp, 57765_PLUS)) {
Joe Perches41535772013-02-16 11:20:04 +000016129 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16130 tg3_asic_rev(tp) == ASIC_REV_5787 ||
16131 tg3_asic_rev(tp) == ASIC_REV_5784 ||
16132 tg3_asic_rev(tp) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080016133 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
16134 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016135 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080016136 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016137 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080016138 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016139 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070016140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016141
Joe Perches41535772013-02-16 11:20:04 +000016142 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
16143 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -070016144 tp->phy_otp = tg3_read_otp_phycfg(tp);
16145 if (tp->phy_otp == 0)
16146 tp->phy_otp = TG3_OTP_DEFAULT;
16147 }
16148
Joe Perches63c3a662011-04-26 08:12:10 +000016149 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070016150 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
16151 else
16152 tp->mi_mode = MAC_MI_MODE_BASE;
16153
Linus Torvalds1da177e2005-04-16 15:20:36 -070016154 tp->coalesce_mode = 0;
Joe Perches41535772013-02-16 11:20:04 +000016155 if (tg3_chip_rev(tp) != CHIPREV_5700_AX &&
16156 tg3_chip_rev(tp) != CHIPREV_5700_BX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016157 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
16158
Matt Carlson4d958472011-04-20 07:57:35 +000016159 /* Set these bits to enable statistics workaround. */
Joe Perches41535772013-02-16 11:20:04 +000016160 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16161 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
16162 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000016163 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
16164 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
16165 }
16166
Joe Perches41535772013-02-16 11:20:04 +000016167 if (tg3_asic_rev(tp) == ASIC_REV_5785 ||
16168 tg3_asic_rev(tp) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000016169 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070016170
Matt Carlson158d7ab2008-05-29 01:37:54 -070016171 err = tg3_mdio_init(tp);
16172 if (err)
16173 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016174
16175 /* Initialize data/descriptor byte/word swapping. */
16176 val = tr32(GRC_MODE);
Joe Perches41535772013-02-16 11:20:04 +000016177 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
16178 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000016179 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
16180 GRC_MODE_WORD_SWAP_B2HRX_DATA |
16181 GRC_MODE_B2HRX_ENABLE |
16182 GRC_MODE_HTX2B_ENABLE |
16183 GRC_MODE_HOST_STACKUP);
16184 else
16185 val &= GRC_MODE_HOST_STACKUP;
16186
Linus Torvalds1da177e2005-04-16 15:20:36 -070016187 tw32(GRC_MODE, val | tp->grc_mode);
16188
16189 tg3_switch_clocks(tp);
16190
16191 /* Clear this out for sanity. */
16192 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
16193
16194 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
16195 &pci_state_reg);
16196 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016197 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Joe Perches41535772013-02-16 11:20:04 +000016198 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16199 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16200 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2 ||
16201 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016202 void __iomem *sram_base;
16203
16204 /* Write some dummy words into the SRAM status block
16205 * area, see if it reads back correctly. If the return
16206 * value is bad, force enable the PCIX workaround.
16207 */
16208 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
16209
16210 writel(0x00000000, sram_base);
16211 writel(0x00000000, sram_base + 4);
16212 writel(0xffffffff, sram_base + 4);
16213 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000016214 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016215 }
16216 }
16217
16218 udelay(50);
16219 tg3_nvram_init(tp);
16220
Nithin Sujirc4dab502013-03-06 17:02:34 +000016221 /* If the device has an NVRAM, no need to load patch firmware */
16222 if (tg3_asic_rev(tp) == ASIC_REV_57766 &&
16223 !tg3_flag(tp, NO_NVRAM))
16224 tp->fw_needed = NULL;
16225
Linus Torvalds1da177e2005-04-16 15:20:36 -070016226 grc_misc_cfg = tr32(GRC_MISC_CFG);
16227 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
16228
Joe Perches41535772013-02-16 11:20:04 +000016229 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016230 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
16231 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000016232 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016233
Joe Perches63c3a662011-04-26 08:12:10 +000016234 if (!tg3_flag(tp, IS_5788) &&
Joe Perches41535772013-02-16 11:20:04 +000016235 tg3_asic_rev(tp) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016236 tg3_flag_set(tp, TAGGED_STATUS);
16237 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070016238 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
16239 HOSTCC_MODE_CLRTICK_TXBD);
16240
16241 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
16242 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
16243 tp->misc_host_ctrl);
16244 }
16245
Matt Carlson3bda1252008-08-15 14:08:22 -070016246 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000016247 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000016248 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070016249 else
Matt Carlson6e01b202011-08-19 13:58:20 +000016250 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070016251
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016252 if (tg3_10_100_only_device(tp, ent))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016253 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016254
16255 err = tg3_phy_probe(tp);
16256 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000016257 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016258 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016259 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016260 }
16261
Matt Carlson184b8902010-04-05 10:19:25 +000016262 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080016263 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016264
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016265 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
16266 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016267 } else {
Joe Perches41535772013-02-16 11:20:04 +000016268 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016269 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016270 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016271 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016272 }
16273
16274 /* 5700 {AX,BX} chips have a broken status block link
16275 * change bit implementation, so we must use the
16276 * status register in those cases.
16277 */
Joe Perches41535772013-02-16 11:20:04 +000016278 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016279 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016280 else
Joe Perches63c3a662011-04-26 08:12:10 +000016281 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016282
16283 /* The led_ctrl is set during tg3_phy_probe, here we might
16284 * have to force the link status polling mechanism based
16285 * upon subsystem IDs.
16286 */
16287 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Joe Perches41535772013-02-16 11:20:04 +000016288 tg3_asic_rev(tp) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016289 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
16290 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000016291 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016292 }
16293
16294 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016295 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000016296 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016297 else
Joe Perches63c3a662011-04-26 08:12:10 +000016298 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016299
Eric Dumazet9205fd92011-11-18 06:47:01 +000016300 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016301 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Joe Perches41535772013-02-16 11:20:04 +000016302 if (tg3_asic_rev(tp) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016303 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000016304 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016305#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000016306 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016307#endif
16308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016309
Matt Carlson2c49a442010-09-30 10:34:35 +000016310 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
16311 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000016312 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
16313
Matt Carlson2c49a442010-09-30 10:34:35 +000016314 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070016315
16316 /* Increment the rx prod index on the rx std ring by at most
16317 * 8 for these chips to workaround hw errata.
16318 */
Joe Perches41535772013-02-16 11:20:04 +000016319 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
16320 tg3_asic_rev(tp) == ASIC_REV_5752 ||
16321 tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanf92905d2006-06-29 20:14:29 -070016322 tp->rx_std_max_post = 8;
16323
Joe Perches63c3a662011-04-26 08:12:10 +000016324 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070016325 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
16326 PCIE_PWR_MGMT_L1_THRESH_MSK;
16327
Linus Torvalds1da177e2005-04-16 15:20:36 -070016328 return err;
16329}
16330
David S. Miller49b6e95f2007-03-29 01:38:42 -070016331#ifdef CONFIG_SPARC
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016332static int tg3_get_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016333{
16334 struct net_device *dev = tp->dev;
16335 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016336 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070016337 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016338 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016339
David S. Miller49b6e95f2007-03-29 01:38:42 -070016340 addr = of_get_property(dp, "local-mac-address", &len);
16341 if (addr && len == 6) {
16342 memcpy(dev->dev_addr, addr, 6);
David S. Miller49b6e95f2007-03-29 01:38:42 -070016343 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016344 }
16345 return -ENODEV;
16346}
16347
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016348static int tg3_get_default_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016349{
16350 struct net_device *dev = tp->dev;
16351
16352 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
16353 return 0;
16354}
16355#endif
16356
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016357static int tg3_get_device_address(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016358{
16359 struct net_device *dev = tp->dev;
16360 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080016361 int addr_ok = 0;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016362 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016363
David S. Miller49b6e95f2007-03-29 01:38:42 -070016364#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016365 if (!tg3_get_macaddr_sparc(tp))
16366 return 0;
16367#endif
16368
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016369 if (tg3_flag(tp, IS_SSB_CORE)) {
16370 err = ssb_gige_get_macaddr(tp->pdev, &dev->dev_addr[0]);
16371 if (!err && is_valid_ether_addr(&dev->dev_addr[0]))
16372 return 0;
16373 }
16374
Linus Torvalds1da177e2005-04-16 15:20:36 -070016375 mac_offset = 0x7c;
Joe Perches41535772013-02-16 11:20:04 +000016376 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016377 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016378 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
16379 mac_offset = 0xcc;
16380 if (tg3_nvram_lock(tp))
16381 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
16382 else
16383 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000016384 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000016385 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000016386 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000016387 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000016388 mac_offset += 0x18c;
Joe Perches41535772013-02-16 11:20:04 +000016389 } else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070016390 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016391
16392 /* First try to get it from MAC address mailbox. */
16393 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
16394 if ((hi >> 16) == 0x484b) {
16395 dev->dev_addr[0] = (hi >> 8) & 0xff;
16396 dev->dev_addr[1] = (hi >> 0) & 0xff;
16397
16398 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
16399 dev->dev_addr[2] = (lo >> 24) & 0xff;
16400 dev->dev_addr[3] = (lo >> 16) & 0xff;
16401 dev->dev_addr[4] = (lo >> 8) & 0xff;
16402 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016403
Michael Chan008652b2006-03-27 23:14:53 -080016404 /* Some old bootcode may report a 0 MAC address in SRAM */
16405 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
16406 }
16407 if (!addr_ok) {
16408 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000016409 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000016410 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000016411 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070016412 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
16413 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080016414 }
16415 /* Finally just fetch it out of the MAC control regs. */
16416 else {
16417 hi = tr32(MAC_ADDR_0_HIGH);
16418 lo = tr32(MAC_ADDR_0_LOW);
16419
16420 dev->dev_addr[5] = lo & 0xff;
16421 dev->dev_addr[4] = (lo >> 8) & 0xff;
16422 dev->dev_addr[3] = (lo >> 16) & 0xff;
16423 dev->dev_addr[2] = (lo >> 24) & 0xff;
16424 dev->dev_addr[1] = hi & 0xff;
16425 dev->dev_addr[0] = (hi >> 8) & 0xff;
16426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016427 }
16428
16429 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070016430#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016431 if (!tg3_get_default_macaddr_sparc(tp))
16432 return 0;
16433#endif
16434 return -EINVAL;
16435 }
16436 return 0;
16437}
16438
David S. Miller59e6b432005-05-18 22:50:10 -070016439#define BOUNDARY_SINGLE_CACHELINE 1
16440#define BOUNDARY_MULTI_CACHELINE 2
16441
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016442static u32 tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
David S. Miller59e6b432005-05-18 22:50:10 -070016443{
16444 int cacheline_size;
16445 u8 byte;
16446 int goal;
16447
16448 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
16449 if (byte == 0)
16450 cacheline_size = 1024;
16451 else
16452 cacheline_size = (int) byte * 4;
16453
16454 /* On 5703 and later chips, the boundary bits have no
16455 * effect.
16456 */
Joe Perches41535772013-02-16 11:20:04 +000016457 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16458 tg3_asic_rev(tp) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016459 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070016460 goto out;
16461
16462#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
16463 goal = BOUNDARY_MULTI_CACHELINE;
16464#else
16465#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
16466 goal = BOUNDARY_SINGLE_CACHELINE;
16467#else
16468 goal = 0;
16469#endif
16470#endif
16471
Joe Perches63c3a662011-04-26 08:12:10 +000016472 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016473 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
16474 goto out;
16475 }
16476
David S. Miller59e6b432005-05-18 22:50:10 -070016477 if (!goal)
16478 goto out;
16479
16480 /* PCI controllers on most RISC systems tend to disconnect
16481 * when a device tries to burst across a cache-line boundary.
16482 * Therefore, letting tg3 do so just wastes PCI bandwidth.
16483 *
16484 * Unfortunately, for PCI-E there are only limited
16485 * write-side controls for this, and thus for reads
16486 * we will still get the disconnects. We'll also waste
16487 * these PCI cycles for both read and write for chips
16488 * other than 5700 and 5701 which do not implement the
16489 * boundary bits.
16490 */
Joe Perches63c3a662011-04-26 08:12:10 +000016491 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016492 switch (cacheline_size) {
16493 case 16:
16494 case 32:
16495 case 64:
16496 case 128:
16497 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16498 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
16499 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
16500 } else {
16501 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16502 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16503 }
16504 break;
16505
16506 case 256:
16507 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
16508 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
16509 break;
16510
16511 default:
16512 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16513 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16514 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016515 }
Joe Perches63c3a662011-04-26 08:12:10 +000016516 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016517 switch (cacheline_size) {
16518 case 16:
16519 case 32:
16520 case 64:
16521 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16522 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16523 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
16524 break;
16525 }
16526 /* fallthrough */
16527 case 128:
16528 default:
16529 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16530 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
16531 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016532 }
David S. Miller59e6b432005-05-18 22:50:10 -070016533 } else {
16534 switch (cacheline_size) {
16535 case 16:
16536 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16537 val |= (DMA_RWCTRL_READ_BNDRY_16 |
16538 DMA_RWCTRL_WRITE_BNDRY_16);
16539 break;
16540 }
16541 /* fallthrough */
16542 case 32:
16543 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16544 val |= (DMA_RWCTRL_READ_BNDRY_32 |
16545 DMA_RWCTRL_WRITE_BNDRY_32);
16546 break;
16547 }
16548 /* fallthrough */
16549 case 64:
16550 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16551 val |= (DMA_RWCTRL_READ_BNDRY_64 |
16552 DMA_RWCTRL_WRITE_BNDRY_64);
16553 break;
16554 }
16555 /* fallthrough */
16556 case 128:
16557 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16558 val |= (DMA_RWCTRL_READ_BNDRY_128 |
16559 DMA_RWCTRL_WRITE_BNDRY_128);
16560 break;
16561 }
16562 /* fallthrough */
16563 case 256:
16564 val |= (DMA_RWCTRL_READ_BNDRY_256 |
16565 DMA_RWCTRL_WRITE_BNDRY_256);
16566 break;
16567 case 512:
16568 val |= (DMA_RWCTRL_READ_BNDRY_512 |
16569 DMA_RWCTRL_WRITE_BNDRY_512);
16570 break;
16571 case 1024:
16572 default:
16573 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
16574 DMA_RWCTRL_WRITE_BNDRY_1024);
16575 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016576 }
David S. Miller59e6b432005-05-18 22:50:10 -070016577 }
16578
16579out:
16580 return val;
16581}
16582
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016583static int tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma,
Joe Perches953c96e2013-04-09 10:18:14 +000016584 int size, bool to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016585{
16586 struct tg3_internal_buffer_desc test_desc;
16587 u32 sram_dma_descs;
16588 int i, ret;
16589
16590 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
16591
16592 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
16593 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
16594 tw32(RDMAC_STATUS, 0);
16595 tw32(WDMAC_STATUS, 0);
16596
16597 tw32(BUFMGR_MODE, 0);
16598 tw32(FTQ_RESET, 0);
16599
16600 test_desc.addr_hi = ((u64) buf_dma) >> 32;
16601 test_desc.addr_lo = buf_dma & 0xffffffff;
16602 test_desc.nic_mbuf = 0x00002100;
16603 test_desc.len = size;
16604
16605 /*
16606 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
16607 * the *second* time the tg3 driver was getting loaded after an
16608 * initial scan.
16609 *
16610 * Broadcom tells me:
16611 * ...the DMA engine is connected to the GRC block and a DMA
16612 * reset may affect the GRC block in some unpredictable way...
16613 * The behavior of resets to individual blocks has not been tested.
16614 *
16615 * Broadcom noted the GRC reset will also reset all sub-components.
16616 */
16617 if (to_device) {
16618 test_desc.cqid_sqid = (13 << 8) | 2;
16619
16620 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
16621 udelay(40);
16622 } else {
16623 test_desc.cqid_sqid = (16 << 8) | 7;
16624
16625 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
16626 udelay(40);
16627 }
16628 test_desc.flags = 0x00000005;
16629
16630 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
16631 u32 val;
16632
16633 val = *(((u32 *)&test_desc) + i);
16634 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
16635 sram_dma_descs + (i * sizeof(u32)));
16636 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
16637 }
16638 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
16639
Matt Carlson859a588792010-04-05 10:19:28 +000016640 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016641 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000016642 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070016643 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016644
16645 ret = -ENODEV;
16646 for (i = 0; i < 40; i++) {
16647 u32 val;
16648
16649 if (to_device)
16650 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
16651 else
16652 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
16653 if ((val & 0xffff) == sram_dma_descs) {
16654 ret = 0;
16655 break;
16656 }
16657
16658 udelay(100);
16659 }
16660
16661 return ret;
16662}
16663
David S. Millerded73402005-05-23 13:59:47 -070016664#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070016665
Matt Carlson41434702011-03-09 16:58:22 +000016666static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080016667 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
16668 { },
16669};
16670
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016671static int tg3_test_dma(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016672{
16673 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070016674 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016675 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016676
Matt Carlson4bae65c2010-11-24 08:31:52 +000016677 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
16678 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016679 if (!buf) {
16680 ret = -ENOMEM;
16681 goto out_nofree;
16682 }
16683
16684 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
16685 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
16686
David S. Miller59e6b432005-05-18 22:50:10 -070016687 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016688
Joe Perches63c3a662011-04-26 08:12:10 +000016689 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016690 goto out;
16691
Joe Perches63c3a662011-04-26 08:12:10 +000016692 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016693 /* DMA read watermark not used on PCIE */
16694 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000016695 } else if (!tg3_flag(tp, PCIX_MODE)) {
Joe Perches41535772013-02-16 11:20:04 +000016696 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
16697 tg3_asic_rev(tp) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016698 tp->dma_rwctrl |= 0x003f0000;
16699 else
16700 tp->dma_rwctrl |= 0x003f000f;
16701 } else {
Joe Perches41535772013-02-16 11:20:04 +000016702 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16703 tg3_asic_rev(tp) == ASIC_REV_5704) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016704 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080016705 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016706
Michael Chan4a29cc22006-03-19 13:21:12 -080016707 /* If the 5704 is behind the EPB bridge, we can
16708 * do the less restrictive ONE_DMA workaround for
16709 * better performance.
16710 */
Joe Perches63c3a662011-04-26 08:12:10 +000016711 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Joe Perches41535772013-02-16 11:20:04 +000016712 tg3_asic_rev(tp) == ASIC_REV_5704)
Michael Chan4a29cc22006-03-19 13:21:12 -080016713 tp->dma_rwctrl |= 0x8000;
16714 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016715 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
16716
Joe Perches41535772013-02-16 11:20:04 +000016717 if (tg3_asic_rev(tp) == ASIC_REV_5703)
Michael Chan49afdeb2007-02-13 12:17:03 -080016718 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070016719 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080016720 tp->dma_rwctrl |=
16721 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
16722 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
16723 (1 << 23);
Joe Perches41535772013-02-16 11:20:04 +000016724 } else if (tg3_asic_rev(tp) == ASIC_REV_5780) {
Michael Chan4cf78e42005-07-25 12:29:19 -070016725 /* 5780 always in PCIX mode */
16726 tp->dma_rwctrl |= 0x00144000;
Joe Perches41535772013-02-16 11:20:04 +000016727 } else if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chana4e2b342005-10-26 15:46:52 -070016728 /* 5714 always in PCIX mode */
16729 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016730 } else {
16731 tp->dma_rwctrl |= 0x001b000f;
16732 }
16733 }
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016734 if (tg3_flag(tp, ONE_DMA_AT_ONCE))
16735 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016736
Joe Perches41535772013-02-16 11:20:04 +000016737 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16738 tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016739 tp->dma_rwctrl &= 0xfffffff0;
16740
Joe Perches41535772013-02-16 11:20:04 +000016741 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16742 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016743 /* Remove this if it causes problems for some boards. */
16744 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
16745
16746 /* On 5700/5701 chips, we need to set this bit.
16747 * Otherwise the chip will issue cacheline transactions
16748 * to streamable DMA memory with not all the byte
16749 * enables turned on. This is an error on several
16750 * RISC PCI controllers, in particular sparc64.
16751 *
16752 * On 5703/5704 chips, this bit has been reassigned
16753 * a different meaning. In particular, it is used
16754 * on those chips to enable a PCI-X workaround.
16755 */
16756 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
16757 }
16758
16759 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16760
16761#if 0
16762 /* Unneeded, already done by tg3_get_invariants. */
16763 tg3_switch_clocks(tp);
16764#endif
16765
Joe Perches41535772013-02-16 11:20:04 +000016766 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16767 tg3_asic_rev(tp) != ASIC_REV_5701)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016768 goto out;
16769
David S. Miller59e6b432005-05-18 22:50:10 -070016770 /* It is best to perform DMA test with maximum write burst size
16771 * to expose the 5700/5701 write DMA bug.
16772 */
16773 saved_dma_rwctrl = tp->dma_rwctrl;
16774 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16775 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16776
Linus Torvalds1da177e2005-04-16 15:20:36 -070016777 while (1) {
16778 u32 *p = buf, i;
16779
16780 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
16781 p[i] = i;
16782
16783 /* Send the buffer to the chip. */
Joe Perches953c96e2013-04-09 10:18:14 +000016784 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016785 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000016786 dev_err(&tp->pdev->dev,
16787 "%s: Buffer write failed. err = %d\n",
16788 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016789 break;
16790 }
16791
16792#if 0
16793 /* validate data reached card RAM correctly. */
16794 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16795 u32 val;
16796 tg3_read_mem(tp, 0x2100 + (i*4), &val);
16797 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000016798 dev_err(&tp->pdev->dev,
16799 "%s: Buffer corrupted on device! "
16800 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016801 /* ret = -ENODEV here? */
16802 }
16803 p[i] = 0;
16804 }
16805#endif
16806 /* Now read it back. */
Joe Perches953c96e2013-04-09 10:18:14 +000016807 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016808 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000016809 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
16810 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016811 break;
16812 }
16813
16814 /* Verify it. */
16815 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16816 if (p[i] == i)
16817 continue;
16818
David S. Miller59e6b432005-05-18 22:50:10 -070016819 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16820 DMA_RWCTRL_WRITE_BNDRY_16) {
16821 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016822 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
16823 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16824 break;
16825 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000016826 dev_err(&tp->pdev->dev,
16827 "%s: Buffer corrupted on read back! "
16828 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016829 ret = -ENODEV;
16830 goto out;
16831 }
16832 }
16833
16834 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
16835 /* Success. */
16836 ret = 0;
16837 break;
16838 }
16839 }
David S. Miller59e6b432005-05-18 22:50:10 -070016840 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16841 DMA_RWCTRL_WRITE_BNDRY_16) {
16842 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070016843 * now look for chipsets that are known to expose the
16844 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070016845 */
Matt Carlson41434702011-03-09 16:58:22 +000016846 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016847 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16848 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000016849 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016850 /* Safe to use the calculated DMA boundary. */
16851 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000016852 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070016853
David S. Miller59e6b432005-05-18 22:50:10 -070016854 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016856
16857out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000016858 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016859out_nofree:
16860 return ret;
16861}
16862
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016863static void tg3_init_bufmgr_config(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016864{
Joe Perches63c3a662011-04-26 08:12:10 +000016865 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000016866 tp->bufmgr_config.mbuf_read_dma_low_water =
16867 DEFAULT_MB_RDMA_LOW_WATER_5705;
16868 tp->bufmgr_config.mbuf_mac_rx_low_water =
16869 DEFAULT_MB_MACRX_LOW_WATER_57765;
16870 tp->bufmgr_config.mbuf_high_water =
16871 DEFAULT_MB_HIGH_WATER_57765;
16872
16873 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16874 DEFAULT_MB_RDMA_LOW_WATER_5705;
16875 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16876 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
16877 tp->bufmgr_config.mbuf_high_water_jumbo =
16878 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000016879 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070016880 tp->bufmgr_config.mbuf_read_dma_low_water =
16881 DEFAULT_MB_RDMA_LOW_WATER_5705;
16882 tp->bufmgr_config.mbuf_mac_rx_low_water =
16883 DEFAULT_MB_MACRX_LOW_WATER_5705;
16884 tp->bufmgr_config.mbuf_high_water =
16885 DEFAULT_MB_HIGH_WATER_5705;
Joe Perches41535772013-02-16 11:20:04 +000016886 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070016887 tp->bufmgr_config.mbuf_mac_rx_low_water =
16888 DEFAULT_MB_MACRX_LOW_WATER_5906;
16889 tp->bufmgr_config.mbuf_high_water =
16890 DEFAULT_MB_HIGH_WATER_5906;
16891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016892
Michael Chanfdfec1722005-07-25 12:31:48 -070016893 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16894 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
16895 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16896 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
16897 tp->bufmgr_config.mbuf_high_water_jumbo =
16898 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
16899 } else {
16900 tp->bufmgr_config.mbuf_read_dma_low_water =
16901 DEFAULT_MB_RDMA_LOW_WATER;
16902 tp->bufmgr_config.mbuf_mac_rx_low_water =
16903 DEFAULT_MB_MACRX_LOW_WATER;
16904 tp->bufmgr_config.mbuf_high_water =
16905 DEFAULT_MB_HIGH_WATER;
16906
16907 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16908 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
16909 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16910 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
16911 tp->bufmgr_config.mbuf_high_water_jumbo =
16912 DEFAULT_MB_HIGH_WATER_JUMBO;
16913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016914
16915 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
16916 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
16917}
16918
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016919static char *tg3_phy_string(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016920{
Matt Carlson79eb6902010-02-17 15:17:03 +000016921 switch (tp->phy_id & TG3_PHY_ID_MASK) {
16922 case TG3_PHY_ID_BCM5400: return "5400";
16923 case TG3_PHY_ID_BCM5401: return "5401";
16924 case TG3_PHY_ID_BCM5411: return "5411";
16925 case TG3_PHY_ID_BCM5701: return "5701";
16926 case TG3_PHY_ID_BCM5703: return "5703";
16927 case TG3_PHY_ID_BCM5704: return "5704";
16928 case TG3_PHY_ID_BCM5705: return "5705";
16929 case TG3_PHY_ID_BCM5750: return "5750";
16930 case TG3_PHY_ID_BCM5752: return "5752";
16931 case TG3_PHY_ID_BCM5714: return "5714";
16932 case TG3_PHY_ID_BCM5780: return "5780";
16933 case TG3_PHY_ID_BCM5755: return "5755";
16934 case TG3_PHY_ID_BCM5787: return "5787";
16935 case TG3_PHY_ID_BCM5784: return "5784";
16936 case TG3_PHY_ID_BCM5756: return "5722/5756";
16937 case TG3_PHY_ID_BCM5906: return "5906";
16938 case TG3_PHY_ID_BCM5761: return "5761";
16939 case TG3_PHY_ID_BCM5718C: return "5718C";
16940 case TG3_PHY_ID_BCM5718S: return "5718S";
16941 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000016942 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000016943 case TG3_PHY_ID_BCM5720C: return "5720C";
Michael Chanc65a17f2013-01-06 12:51:07 +000016944 case TG3_PHY_ID_BCM5762: return "5762C";
Matt Carlson79eb6902010-02-17 15:17:03 +000016945 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070016946 case 0: return "serdes";
16947 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070016948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016949}
16950
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016951static char *tg3_bus_string(struct tg3 *tp, char *str)
Michael Chanf9804dd2005-09-27 12:13:10 -070016952{
Joe Perches63c3a662011-04-26 08:12:10 +000016953 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016954 strcpy(str, "PCI Express");
16955 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000016956 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016957 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
16958
16959 strcpy(str, "PCIX:");
16960
16961 if ((clock_ctrl == 7) ||
16962 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
16963 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
16964 strcat(str, "133MHz");
16965 else if (clock_ctrl == 0)
16966 strcat(str, "33MHz");
16967 else if (clock_ctrl == 2)
16968 strcat(str, "50MHz");
16969 else if (clock_ctrl == 4)
16970 strcat(str, "66MHz");
16971 else if (clock_ctrl == 6)
16972 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070016973 } else {
16974 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000016975 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070016976 strcat(str, "66MHz");
16977 else
16978 strcat(str, "33MHz");
16979 }
Joe Perches63c3a662011-04-26 08:12:10 +000016980 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070016981 strcat(str, ":32-bit");
16982 else
16983 strcat(str, ":64-bit");
16984 return str;
16985}
16986
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016987static void tg3_init_coal(struct tg3 *tp)
David S. Miller15f98502005-05-18 22:49:26 -070016988{
16989 struct ethtool_coalesce *ec = &tp->coal;
16990
16991 memset(ec, 0, sizeof(*ec));
16992 ec->cmd = ETHTOOL_GCOALESCE;
16993 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
16994 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
16995 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
16996 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
16997 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
16998 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
16999 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
17000 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
17001 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
17002
17003 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
17004 HOSTCC_MODE_CLRTICK_TXBD)) {
17005 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
17006 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
17007 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
17008 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
17009 }
Michael Chand244c892005-07-05 14:42:33 -070017010
Joe Perches63c3a662011-04-26 08:12:10 +000017011 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070017012 ec->rx_coalesce_usecs_irq = 0;
17013 ec->tx_coalesce_usecs_irq = 0;
17014 ec->stats_block_coalesce_usecs = 0;
17015 }
David S. Miller15f98502005-05-18 22:49:26 -070017016}
17017
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017018static int tg3_init_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017019 const struct pci_device_id *ent)
17020{
Linus Torvalds1da177e2005-04-16 15:20:36 -070017021 struct net_device *dev;
17022 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000017023 int i, err, pm_cap;
17024 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070017025 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080017026 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000017027 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017028
Joe Perches05dbe002010-02-17 19:44:19 +000017029 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017030
17031 err = pci_enable_device(pdev);
17032 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017033 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017034 return err;
17035 }
17036
Linus Torvalds1da177e2005-04-16 15:20:36 -070017037 err = pci_request_regions(pdev, DRV_MODULE_NAME);
17038 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017039 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017040 goto err_out_disable_pdev;
17041 }
17042
17043 pci_set_master(pdev);
17044
17045 /* Find power-management capability. */
17046 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
17047 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000017048 dev_err(&pdev->dev,
17049 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017050 err = -EIO;
17051 goto err_out_free_res;
17052 }
17053
Matt Carlson16821282011-07-13 09:27:28 +000017054 err = pci_set_power_state(pdev, PCI_D0);
17055 if (err) {
17056 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
17057 goto err_out_free_res;
17058 }
17059
Matt Carlsonfe5f5782009-09-01 13:09:39 +000017060 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017061 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017062 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000017063 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017064 }
17065
Linus Torvalds1da177e2005-04-16 15:20:36 -070017066 SET_NETDEV_DEV(dev, &pdev->dev);
17067
Linus Torvalds1da177e2005-04-16 15:20:36 -070017068 tp = netdev_priv(dev);
17069 tp->pdev = pdev;
17070 tp->dev = dev;
17071 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017072 tp->rx_mode = TG3_DEF_RX_MODE;
17073 tp->tx_mode = TG3_DEF_TX_MODE;
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +000017074 tp->irq_sync = 1;
Matt Carlson8ef21422008-05-02 16:47:53 -070017075
Linus Torvalds1da177e2005-04-16 15:20:36 -070017076 if (tg3_debug > 0)
17077 tp->msg_enable = tg3_debug;
17078 else
17079 tp->msg_enable = TG3_DEF_MSG_ENABLE;
17080
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017081 if (pdev_is_ssb_gige_core(pdev)) {
17082 tg3_flag_set(tp, IS_SSB_CORE);
17083 if (ssb_gige_must_flush_posted_writes(pdev))
17084 tg3_flag_set(tp, FLUSH_POSTED_WRITES);
17085 if (ssb_gige_one_dma_at_once(pdev))
17086 tg3_flag_set(tp, ONE_DMA_AT_ONCE);
17087 if (ssb_gige_have_roboswitch(pdev))
17088 tg3_flag_set(tp, ROBOSWITCH);
17089 if (ssb_gige_is_rgmii(pdev))
17090 tg3_flag_set(tp, RGMII_MODE);
17091 }
17092
Linus Torvalds1da177e2005-04-16 15:20:36 -070017093 /* The word/byte swap controls here control register access byte
17094 * swapping. DMA data byte swapping is controlled in the GRC_MODE
17095 * setting below.
17096 */
17097 tp->misc_host_ctrl =
17098 MISC_HOST_CTRL_MASK_PCI_INT |
17099 MISC_HOST_CTRL_WORD_SWAP |
17100 MISC_HOST_CTRL_INDIR_ACCESS |
17101 MISC_HOST_CTRL_PCISTATE_RW;
17102
17103 /* The NONFRM (non-frame) byte/word swap controls take effect
17104 * on descriptor entries, anything which isn't packet data.
17105 *
17106 * The StrongARM chips on the board (one for tx, one for rx)
17107 * are running in big-endian mode.
17108 */
17109 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
17110 GRC_MODE_WSWAP_NONFRM_DATA);
17111#ifdef __BIG_ENDIAN
17112 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
17113#endif
17114 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017115 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000017116 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017117
Matt Carlsond5fe4882008-11-21 17:20:32 -080017118 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010017119 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017120 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017121 err = -ENOMEM;
17122 goto err_out_free_dev;
17123 }
17124
Matt Carlsonc9cab242011-07-13 09:27:27 +000017125 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
17126 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
17127 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
17128 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
17129 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000017130 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlsonc9cab242011-07-13 09:27:27 +000017131 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
17132 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000017133 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
17134 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
17135 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
17136 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727) {
Matt Carlsonc9cab242011-07-13 09:27:27 +000017137 tg3_flag_set(tp, ENABLE_APE);
17138 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
17139 if (!tp->aperegs) {
17140 dev_err(&pdev->dev,
17141 "Cannot map APE registers, aborting\n");
17142 err = -ENOMEM;
17143 goto err_out_iounmap;
17144 }
17145 }
17146
Linus Torvalds1da177e2005-04-16 15:20:36 -070017147 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
17148 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017149
Linus Torvalds1da177e2005-04-16 15:20:36 -070017150 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017151 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000017152 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017153 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017154
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000017155 err = tg3_get_invariants(tp, ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017156 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017157 dev_err(&pdev->dev,
17158 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017159 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017160 }
17161
Michael Chan4a29cc22006-03-19 13:21:12 -080017162 /* The EPB bridge inside 5714, 5715, and 5780 and any
17163 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080017164 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
17165 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
17166 * do DMA address check in tg3_start_xmit().
17167 */
Joe Perches63c3a662011-04-26 08:12:10 +000017168 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070017169 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000017170 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070017171 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080017172#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070017173 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017174#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080017175 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070017176 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017177
17178 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070017179 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080017180 err = pci_set_dma_mask(pdev, dma_mask);
17181 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000017182 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080017183 err = pci_set_consistent_dma_mask(pdev,
17184 persist_dma_mask);
17185 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017186 dev_err(&pdev->dev, "Unable to obtain 64 bit "
17187 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017188 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017189 }
17190 }
17191 }
Yang Hongyang284901a2009-04-06 19:01:15 -070017192 if (err || dma_mask == DMA_BIT_MASK(32)) {
17193 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080017194 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017195 dev_err(&pdev->dev,
17196 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017197 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017198 }
17199 }
17200
Michael Chanfdfec1722005-07-25 12:31:48 -070017201 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017202
Patrick McHardyf6469682013-04-19 02:04:27 +000017203 features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Matt Carlson0da06062011-05-19 12:12:53 +000017204
17205 /* 5700 B0 chips do not support checksumming correctly due
17206 * to hardware bugs.
17207 */
Joe Perches41535772013-02-16 11:20:04 +000017208 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5700_B0) {
Matt Carlson0da06062011-05-19 12:12:53 +000017209 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
17210
17211 if (tg3_flag(tp, 5755_PLUS))
17212 features |= NETIF_F_IPV6_CSUM;
17213 }
17214
Michael Chan4e3a7aa2006-03-20 17:47:44 -080017215 /* TSO is on by default on chips that support hardware TSO.
17216 * Firmware TSO on older chips gives lower performance, so it
17217 * is off by default, but can be enabled using ethtool.
17218 */
Joe Perches63c3a662011-04-26 08:12:10 +000017219 if ((tg3_flag(tp, HW_TSO_1) ||
17220 tg3_flag(tp, HW_TSO_2) ||
17221 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000017222 (features & NETIF_F_IP_CSUM))
17223 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000017224 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000017225 if (features & NETIF_F_IPV6_CSUM)
17226 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000017227 if (tg3_flag(tp, HW_TSO_3) ||
Joe Perches41535772013-02-16 11:20:04 +000017228 tg3_asic_rev(tp) == ASIC_REV_5761 ||
17229 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
17230 tg3_chip_rev(tp) != CHIPREV_5784_AX) ||
17231 tg3_asic_rev(tp) == ASIC_REV_5785 ||
17232 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000017233 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070017234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017235
Matt Carlsond542fe22011-05-19 16:02:43 +000017236 dev->features |= features;
17237 dev->vlan_features |= features;
17238
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017239 /*
17240 * Add loopback capability only for a subset of devices that support
17241 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
17242 * loopback for the remaining devices.
17243 */
Joe Perches41535772013-02-16 11:20:04 +000017244 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017245 !tg3_flag(tp, CPMU_PRESENT))
17246 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000017247 features |= NETIF_F_LOOPBACK;
17248
Matt Carlson0da06062011-05-19 12:12:53 +000017249 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017250
Joe Perches41535772013-02-16 11:20:04 +000017251 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000017252 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070017253 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000017254 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017255 tp->rx_pending = 63;
17256 }
17257
Linus Torvalds1da177e2005-04-16 15:20:36 -070017258 err = tg3_get_device_address(tp);
17259 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017260 dev_err(&pdev->dev,
17261 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017262 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070017263 }
17264
Matt Carlsonc88864d2007-11-12 21:07:01 -080017265 /*
17266 * Reset chip in case UNDI or EFI driver did not shutdown
17267 * DMA self test will enable WDMAC and we'll see (spurious)
17268 * pending DMA on the PCI bus at that point.
17269 */
17270 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
17271 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
17272 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
17273 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
17274 }
17275
17276 err = tg3_test_dma(tp);
17277 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017278 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080017279 goto err_out_apeunmap;
17280 }
17281
Matt Carlson78f90dc2009-11-13 13:03:42 +000017282 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
17283 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
17284 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000017285 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000017286 struct tg3_napi *tnapi = &tp->napi[i];
17287
17288 tnapi->tp = tp;
17289 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
17290
17291 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000017292 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017293 intmbx += 0x8;
17294 else
17295 intmbx += 0x4;
17296
17297 tnapi->consmbox = rcvmbx;
17298 tnapi->prodmbox = sndmbx;
17299
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017300 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017301 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017302 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000017303 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000017304
Joe Perches63c3a662011-04-26 08:12:10 +000017305 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000017306 break;
17307
17308 /*
17309 * If we support MSIX, we'll be using RSS. If we're using
17310 * RSS, the first vector only handles link interrupts and the
17311 * remaining vectors handle rx and tx interrupts. Reuse the
17312 * mailbox values for the next iteration. The values we setup
17313 * above are still useful for the single vectored mode.
17314 */
17315 if (!i)
17316 continue;
17317
17318 rcvmbx += 0x8;
17319
17320 if (sndmbx & 0x4)
17321 sndmbx -= 0x4;
17322 else
17323 sndmbx += 0xc;
17324 }
17325
Matt Carlsonc88864d2007-11-12 21:07:01 -080017326 tg3_init_coal(tp);
17327
Michael Chanc49a1562006-12-17 17:07:29 -080017328 pci_set_drvdata(pdev, dev);
17329
Joe Perches41535772013-02-16 11:20:04 +000017330 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
17331 tg3_asic_rev(tp) == ASIC_REV_5720 ||
17332 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +000017333 tg3_flag_set(tp, PTP_CAPABLE);
17334
Matt Carlsoncd0d7222011-07-13 09:27:33 +000017335 if (tg3_flag(tp, 5717_PLUS)) {
17336 /* Resume a low-power mode */
17337 tg3_frob_aux_power(tp, false);
17338 }
17339
Matt Carlson21f76382012-02-22 12:35:21 +000017340 tg3_timer_init(tp);
17341
Michael Chan402e1392013-02-14 12:13:41 +000017342 tg3_carrier_off(tp);
17343
Linus Torvalds1da177e2005-04-16 15:20:36 -070017344 err = register_netdev(dev);
17345 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017346 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070017347 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017348 }
17349
Joe Perches05dbe002010-02-17 19:44:19 +000017350 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
17351 tp->board_part_number,
Joe Perches41535772013-02-16 11:20:04 +000017352 tg3_chip_rev_id(tp),
Joe Perches05dbe002010-02-17 19:44:19 +000017353 tg3_bus_string(tp, str),
17354 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017355
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017356 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000017357 struct phy_device *phydev;
17358 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000017359 netdev_info(dev,
17360 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000017361 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017362 } else {
17363 char *ethtype;
17364
17365 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
17366 ethtype = "10/100Base-TX";
17367 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
17368 ethtype = "1000Base-SX";
17369 else
17370 ethtype = "10/100/1000Base-T";
17371
Matt Carlson5129c3a2010-04-05 10:19:23 +000017372 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000017373 "(WireSpeed[%d], EEE[%d])\n",
17374 tg3_phy_string(tp), ethtype,
17375 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
17376 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017377 }
Matt Carlsondf59c942008-11-03 16:52:56 -080017378
Joe Perches05dbe002010-02-17 19:44:19 +000017379 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000017380 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017381 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017382 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017383 tg3_flag(tp, ENABLE_ASF) != 0,
17384 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000017385 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
17386 tp->dma_rwctrl,
17387 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
17388 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017389
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017390 pci_save_state(pdev);
17391
Linus Torvalds1da177e2005-04-16 15:20:36 -070017392 return 0;
17393
Matt Carlson0d3031d2007-10-10 18:02:43 -070017394err_out_apeunmap:
17395 if (tp->aperegs) {
17396 iounmap(tp->aperegs);
17397 tp->aperegs = NULL;
17398 }
17399
Linus Torvalds1da177e2005-04-16 15:20:36 -070017400err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070017401 if (tp->regs) {
17402 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017403 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017405
17406err_out_free_dev:
17407 free_netdev(dev);
17408
Matt Carlson16821282011-07-13 09:27:28 +000017409err_out_power_down:
17410 pci_set_power_state(pdev, PCI_D3hot);
17411
Linus Torvalds1da177e2005-04-16 15:20:36 -070017412err_out_free_res:
17413 pci_release_regions(pdev);
17414
17415err_out_disable_pdev:
17416 pci_disable_device(pdev);
17417 pci_set_drvdata(pdev, NULL);
17418 return err;
17419}
17420
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017421static void tg3_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017422{
17423 struct net_device *dev = pci_get_drvdata(pdev);
17424
17425 if (dev) {
17426 struct tg3 *tp = netdev_priv(dev);
17427
Jesper Juhle3c55302012-04-09 22:50:15 +020017428 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080017429
Matt Carlsondb219972011-11-04 09:15:03 +000017430 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017431
David S. Miller1805b2f2011-10-24 18:18:09 -040017432 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017433 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017434 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017435 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070017436
Linus Torvalds1da177e2005-04-16 15:20:36 -070017437 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070017438 if (tp->aperegs) {
17439 iounmap(tp->aperegs);
17440 tp->aperegs = NULL;
17441 }
Michael Chan68929142005-08-09 20:17:14 -070017442 if (tp->regs) {
17443 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017444 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017446 free_netdev(dev);
17447 pci_release_regions(pdev);
17448 pci_disable_device(pdev);
17449 pci_set_drvdata(pdev, NULL);
17450 }
17451}
17452
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017453#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017454static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017455{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017456 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017457 struct net_device *dev = pci_get_drvdata(pdev);
17458 struct tg3 *tp = netdev_priv(dev);
17459 int err;
17460
17461 if (!netif_running(dev))
17462 return 0;
17463
Matt Carlsondb219972011-11-04 09:15:03 +000017464 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017465 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017466 tg3_netif_stop(tp);
17467
Matt Carlson21f76382012-02-22 12:35:21 +000017468 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017469
David S. Millerf47c11e2005-06-24 20:18:35 -070017470 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017471 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070017472 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017473
17474 netif_device_detach(dev);
17475
David S. Millerf47c11e2005-06-24 20:18:35 -070017476 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070017477 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000017478 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070017479 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017480
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017481 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017482 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017483 int err2;
17484
David S. Millerf47c11e2005-06-24 20:18:35 -070017485 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017486
Joe Perches63c3a662011-04-26 08:12:10 +000017487 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017488 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017489 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070017490 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017491
Matt Carlson21f76382012-02-22 12:35:21 +000017492 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017493
17494 netif_device_attach(dev);
17495 tg3_netif_start(tp);
17496
Michael Chanb9ec6c12006-07-25 16:37:27 -070017497out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017498 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017499
17500 if (!err2)
17501 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017502 }
17503
17504 return err;
17505}
17506
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017507static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017508{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017509 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017510 struct net_device *dev = pci_get_drvdata(pdev);
17511 struct tg3 *tp = netdev_priv(dev);
17512 int err;
17513
17514 if (!netif_running(dev))
17515 return 0;
17516
Linus Torvalds1da177e2005-04-16 15:20:36 -070017517 netif_device_attach(dev);
17518
David S. Millerf47c11e2005-06-24 20:18:35 -070017519 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017520
Joe Perches63c3a662011-04-26 08:12:10 +000017521 tg3_flag_set(tp, INIT_COMPLETE);
Nithin Sujir942d1af2013-04-09 08:48:07 +000017522 err = tg3_restart_hw(tp,
17523 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN));
Michael Chanb9ec6c12006-07-25 16:37:27 -070017524 if (err)
17525 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017526
Matt Carlson21f76382012-02-22 12:35:21 +000017527 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017528
Linus Torvalds1da177e2005-04-16 15:20:36 -070017529 tg3_netif_start(tp);
17530
Michael Chanb9ec6c12006-07-25 16:37:27 -070017531out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017532 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017533
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017534 if (!err)
17535 tg3_phy_start(tp);
17536
Michael Chanb9ec6c12006-07-25 16:37:27 -070017537 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017538}
Fabio Estevam42df36a2013-04-16 09:28:29 +000017539#endif /* CONFIG_PM_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017540
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017541static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
17542
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017543/**
17544 * tg3_io_error_detected - called when PCI error is detected
17545 * @pdev: Pointer to PCI device
17546 * @state: The current pci connection state
17547 *
17548 * This function is called after a PCI bus error affecting
17549 * this device has been detected.
17550 */
17551static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
17552 pci_channel_state_t state)
17553{
17554 struct net_device *netdev = pci_get_drvdata(pdev);
17555 struct tg3 *tp = netdev_priv(netdev);
17556 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
17557
17558 netdev_info(netdev, "PCI I/O error detected\n");
17559
17560 rtnl_lock();
17561
17562 if (!netif_running(netdev))
17563 goto done;
17564
17565 tg3_phy_stop(tp);
17566
17567 tg3_netif_stop(tp);
17568
Matt Carlson21f76382012-02-22 12:35:21 +000017569 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017570
17571 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000017572 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017573
17574 netif_device_detach(netdev);
17575
17576 /* Clean up software state, even if MMIO is blocked */
17577 tg3_full_lock(tp, 0);
17578 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
17579 tg3_full_unlock(tp);
17580
17581done:
17582 if (state == pci_channel_io_perm_failure)
17583 err = PCI_ERS_RESULT_DISCONNECT;
17584 else
17585 pci_disable_device(pdev);
17586
17587 rtnl_unlock();
17588
17589 return err;
17590}
17591
17592/**
17593 * tg3_io_slot_reset - called after the pci bus has been reset.
17594 * @pdev: Pointer to PCI device
17595 *
17596 * Restart the card from scratch, as if from a cold-boot.
17597 * At this point, the card has exprienced a hard reset,
17598 * followed by fixups by BIOS, and has its config space
17599 * set up identically to what it was at cold boot.
17600 */
17601static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
17602{
17603 struct net_device *netdev = pci_get_drvdata(pdev);
17604 struct tg3 *tp = netdev_priv(netdev);
17605 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
17606 int err;
17607
17608 rtnl_lock();
17609
17610 if (pci_enable_device(pdev)) {
17611 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
17612 goto done;
17613 }
17614
17615 pci_set_master(pdev);
17616 pci_restore_state(pdev);
17617 pci_save_state(pdev);
17618
17619 if (!netif_running(netdev)) {
17620 rc = PCI_ERS_RESULT_RECOVERED;
17621 goto done;
17622 }
17623
17624 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000017625 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017626 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017627
17628 rc = PCI_ERS_RESULT_RECOVERED;
17629
17630done:
17631 rtnl_unlock();
17632
17633 return rc;
17634}
17635
17636/**
17637 * tg3_io_resume - called when traffic can start flowing again.
17638 * @pdev: Pointer to PCI device
17639 *
17640 * This callback is called when the error recovery driver tells
17641 * us that its OK to resume normal operation.
17642 */
17643static void tg3_io_resume(struct pci_dev *pdev)
17644{
17645 struct net_device *netdev = pci_get_drvdata(pdev);
17646 struct tg3 *tp = netdev_priv(netdev);
17647 int err;
17648
17649 rtnl_lock();
17650
17651 if (!netif_running(netdev))
17652 goto done;
17653
17654 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000017655 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017656 err = tg3_restart_hw(tp, true);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017657 if (err) {
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017658 tg3_full_unlock(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017659 netdev_err(netdev, "Cannot restart hardware after reset.\n");
17660 goto done;
17661 }
17662
17663 netif_device_attach(netdev);
17664
Matt Carlson21f76382012-02-22 12:35:21 +000017665 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017666
17667 tg3_netif_start(tp);
17668
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017669 tg3_full_unlock(tp);
17670
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017671 tg3_phy_start(tp);
17672
17673done:
17674 rtnl_unlock();
17675}
17676
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070017677static const struct pci_error_handlers tg3_err_handler = {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017678 .error_detected = tg3_io_error_detected,
17679 .slot_reset = tg3_io_slot_reset,
17680 .resume = tg3_io_resume
17681};
17682
Linus Torvalds1da177e2005-04-16 15:20:36 -070017683static struct pci_driver tg3_driver = {
17684 .name = DRV_MODULE_NAME,
17685 .id_table = tg3_pci_tbl,
17686 .probe = tg3_init_one,
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017687 .remove = tg3_remove_one,
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017688 .err_handler = &tg3_err_handler,
Fabio Estevam42df36a2013-04-16 09:28:29 +000017689 .driver.pm = &tg3_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017690};
17691
17692static int __init tg3_init(void)
17693{
Jeff Garzik29917622006-08-19 17:48:59 -040017694 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017695}
17696
17697static void __exit tg3_cleanup(void)
17698{
17699 pci_unregister_driver(&tg3_driver);
17700}
17701
17702module_init(tg3_init);
17703module_exit(tg3_cleanup);