blob: 69d84d67f09abe2f2874e78dd38c0e3be0c12dbb [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.
Michael Chande750e42014-05-11 20:22:55 -07007 * Copyright (C) 2005-2014 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>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000028#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/ioport.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/etherdevice.h>
33#include <linux/skbuff.h>
34#include <linux/ethtool.h>
Matt Carlson3110f5f52010-12-06 08:28:50 +000035#include <linux/mdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070037#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070038#include <linux/brcmphy.h>
Michael Chane565eec2014-01-03 10:09:12 -080039#include <linux/if.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/if_vlan.h>
41#include <linux/ip.h>
42#include <linux/tcp.h>
43#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070044#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020045#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080046#include <linux/firmware.h>
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000047#include <linux/ssb/ssb_driver_gige.h>
Michael Chanaed93e02012-07-16 16:24:02 +000048#include <linux/hwmon.h>
49#include <linux/hwmon-sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030052#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000054#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000056#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Matt Carlsonbe947302012-12-03 19:36:57 +000058#include <uapi/linux/net_tstamp.h>
59#include <linux/ptp_clock_kernel.h>
60
David S. Miller49b6e95f2007-03-29 01:38:42 -070061#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070063#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#endif
65
Matt Carlson63532392008-11-03 16:49:57 -080066#define BAR_0 0
67#define BAR_2 2
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include "tg3.h"
70
Joe Perches63c3a662011-04-26 08:12:10 +000071/* Functions & macros to verify TG3_FLAGS types */
72
73static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
74{
75 return test_bit(flag, bits);
76}
77
78static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
79{
80 set_bit(flag, bits);
81}
82
83static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
84{
85 clear_bit(flag, bits);
86}
87
88#define tg3_flag(tp, flag) \
89 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
90#define tg3_flag_set(tp, flag) \
91 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
92#define tg3_flag_clear(tp, flag) \
93 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000096#define TG3_MAJ_NUM 3
Michael Chande750e42014-05-11 20:22:55 -070097#define TG3_MIN_NUM 137
Matt Carlson6867c842010-07-11 09:31:44 +000098#define DRV_MODULE_VERSION \
99 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Michael Chande750e42014-05-11 20:22:55 -0700100#define DRV_MODULE_RELDATE "May 11, 2014"
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
Michael Chane565eec2014-01-03 10:09:12 -0800211#define TG3_MAX_UCAST_ADDR(tp) (tg3_flag((tp), ENABLE_ASF) ? 2 : 3)
212#define TG3_UCAST_ADDR_IDX(tp) (tg3_flag((tp), ENABLE_ASF) ? 2 : 1)
213
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000214#define TG3_FW_UPDATE_TIMEOUT_SEC 5
Matt Carlson21f76382012-02-22 12:35:21 +0000215#define TG3_FW_UPDATE_FREQ_SEC (TG3_FW_UPDATE_TIMEOUT_SEC / 2)
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000216
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800217#define FIRMWARE_TG3 "tigon/tg3.bin"
Nithin Sujirc4dab502013-03-06 17:02:34 +0000218#define FIRMWARE_TG357766 "tigon/tg357766.bin"
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800219#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
220#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
221
Bill Pemberton229b1ad2012-12-03 09:22:59 -0500222static char version[] =
Joe Perches05dbe002010-02-17 19:44:19 +0000223 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
226MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
227MODULE_LICENSE("GPL");
228MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800229MODULE_FIRMWARE(FIRMWARE_TG3);
230MODULE_FIRMWARE(FIRMWARE_TG3TSO);
231MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
234module_param(tg3_debug, int, 0);
235MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
236
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000237#define TG3_DRV_DATA_FLAG_10_100_ONLY 0x0001
238#define TG3_DRV_DATA_FLAG_5705_10_100 0x0002
239
Benoit Taine9baa3c32014-08-08 15:56:03 +0200240static const struct pci_device_id tg3_pci_tbl[] = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901),
260 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
261 TG3_DRV_DATA_FLAG_5705_10_100},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2),
263 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
264 TG3_DRV_DATA_FLAG_5705_10_100},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F),
267 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
268 TG3_DRV_DATA_FLAG_5705_10_100},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F),
275 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F),
281 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000289 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5787M,
290 PCI_VENDOR_ID_LENOVO,
291 TG3PCI_SUBDEVICE_ID_LENOVO_5787M),
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_5787M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000294 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F),
295 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700296 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
297 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
298 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
299 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
300 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
301 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
302 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700303 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
304 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700305 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
306 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700307 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700308 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
309 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800310 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
311 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000312 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
313 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000314 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780,
315 PCI_VENDOR_ID_AI, TG3PCI_SUBDEVICE_ID_ACER_57780_A),
316 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
317 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780,
318 PCI_VENDOR_ID_AI, TG3PCI_SUBDEVICE_ID_ACER_57780_B),
319 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson321d32a2008-11-21 17:22:19 -0800320 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
321 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000322 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790),
323 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000324 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000325 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
Michael Chan79d49692012-11-05 14:26:29 +0000326 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717_C)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000327 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000328 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
329 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
330 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
331 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000332 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791),
333 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
334 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795),
335 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson302b5002010-06-05 17:24:38 +0000336 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000337 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Greg KH02eca3f2012-07-12 15:39:44 +0000338 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57762)},
Matt Carlsond3f677a2013-02-14 14:27:51 +0000339 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57766)},
Michael Chanc86a8562013-01-06 12:51:08 +0000340 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5762)},
341 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5725)},
342 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5727)},
Nithin Sujir68273712013-09-20 16:46:56 -0700343 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57764)},
344 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57767)},
345 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57787)},
346 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57782)},
347 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57786)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700348 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
349 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
350 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
351 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
352 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
353 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
354 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000355 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700356 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357};
358
359MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
360
Andreas Mohr50da8592006-08-14 23:54:30 -0700361static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000363} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 { "rx_octets" },
365 { "rx_fragments" },
366 { "rx_ucast_packets" },
367 { "rx_mcast_packets" },
368 { "rx_bcast_packets" },
369 { "rx_fcs_errors" },
370 { "rx_align_errors" },
371 { "rx_xon_pause_rcvd" },
372 { "rx_xoff_pause_rcvd" },
373 { "rx_mac_ctrl_rcvd" },
374 { "rx_xoff_entered" },
375 { "rx_frame_too_long_errors" },
376 { "rx_jabbers" },
377 { "rx_undersize_packets" },
378 { "rx_in_length_errors" },
379 { "rx_out_length_errors" },
380 { "rx_64_or_less_octet_packets" },
381 { "rx_65_to_127_octet_packets" },
382 { "rx_128_to_255_octet_packets" },
383 { "rx_256_to_511_octet_packets" },
384 { "rx_512_to_1023_octet_packets" },
385 { "rx_1024_to_1522_octet_packets" },
386 { "rx_1523_to_2047_octet_packets" },
387 { "rx_2048_to_4095_octet_packets" },
388 { "rx_4096_to_8191_octet_packets" },
389 { "rx_8192_to_9022_octet_packets" },
390
391 { "tx_octets" },
392 { "tx_collisions" },
393
394 { "tx_xon_sent" },
395 { "tx_xoff_sent" },
396 { "tx_flow_control" },
397 { "tx_mac_errors" },
398 { "tx_single_collisions" },
399 { "tx_mult_collisions" },
400 { "tx_deferred" },
401 { "tx_excessive_collisions" },
402 { "tx_late_collisions" },
403 { "tx_collide_2times" },
404 { "tx_collide_3times" },
405 { "tx_collide_4times" },
406 { "tx_collide_5times" },
407 { "tx_collide_6times" },
408 { "tx_collide_7times" },
409 { "tx_collide_8times" },
410 { "tx_collide_9times" },
411 { "tx_collide_10times" },
412 { "tx_collide_11times" },
413 { "tx_collide_12times" },
414 { "tx_collide_13times" },
415 { "tx_collide_14times" },
416 { "tx_collide_15times" },
417 { "tx_ucast_packets" },
418 { "tx_mcast_packets" },
419 { "tx_bcast_packets" },
420 { "tx_carrier_sense_errors" },
421 { "tx_discards" },
422 { "tx_errors" },
423
424 { "dma_writeq_full" },
425 { "dma_write_prioq_full" },
426 { "rxbds_empty" },
427 { "rx_discards" },
428 { "rx_errors" },
429 { "rx_threshold_hit" },
430
431 { "dma_readq_full" },
432 { "dma_read_prioq_full" },
433 { "tx_comp_queue_full" },
434
435 { "ring_set_send_prod_index" },
436 { "ring_status_update" },
437 { "nic_irqs" },
438 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000439 { "nic_tx_threshold_hit" },
440
441 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442};
443
Matt Carlson48fa55a2011-04-13 11:05:06 +0000444#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +0000445#define TG3_NVRAM_TEST 0
446#define TG3_LINK_TEST 1
447#define TG3_REGISTER_TEST 2
448#define TG3_MEMORY_TEST 3
449#define TG3_MAC_LOOPB_TEST 4
450#define TG3_PHY_LOOPB_TEST 5
451#define TG3_EXT_LOOPB_TEST 6
452#define TG3_INTERRUPT_TEST 7
Matt Carlson48fa55a2011-04-13 11:05:06 +0000453
454
Andreas Mohr50da8592006-08-14 23:54:30 -0700455static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700456 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000457} ethtool_test_keys[] = {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +0000458 [TG3_NVRAM_TEST] = { "nvram test (online) " },
459 [TG3_LINK_TEST] = { "link test (online) " },
460 [TG3_REGISTER_TEST] = { "register test (offline)" },
461 [TG3_MEMORY_TEST] = { "memory test (offline)" },
462 [TG3_MAC_LOOPB_TEST] = { "mac loopback test (offline)" },
463 [TG3_PHY_LOOPB_TEST] = { "phy loopback test (offline)" },
464 [TG3_EXT_LOOPB_TEST] = { "ext loopback test (offline)" },
465 [TG3_INTERRUPT_TEST] = { "interrupt test (offline)" },
Michael Chan4cafd3f2005-05-29 14:56:34 -0700466};
467
Matt Carlson48fa55a2011-04-13 11:05:06 +0000468#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
469
470
Michael Chanb401e9e2005-12-19 16:27:04 -0800471static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
472{
473 writel(val, tp->regs + off);
474}
475
476static u32 tg3_read32(struct tg3 *tp, u32 off)
477{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000478 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800479}
480
Matt Carlson0d3031d2007-10-10 18:02:43 -0700481static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
482{
483 writel(val, tp->aperegs + off);
484}
485
486static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
487{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000488 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700489}
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
492{
Michael Chan68929142005-08-09 20:17:14 -0700493 unsigned long flags;
494
495 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700496 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
497 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700498 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700499}
500
501static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
502{
503 writel(val, tp->regs + off);
504 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Michael Chan68929142005-08-09 20:17:14 -0700507static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
508{
509 unsigned long flags;
510 u32 val;
511
512 spin_lock_irqsave(&tp->indirect_lock, flags);
513 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
514 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
515 spin_unlock_irqrestore(&tp->indirect_lock, flags);
516 return val;
517}
518
519static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
520{
521 unsigned long flags;
522
523 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
524 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
525 TG3_64BIT_REG_LOW, val);
526 return;
527 }
Matt Carlson66711e62009-11-13 13:03:49 +0000528 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700529 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
530 TG3_64BIT_REG_LOW, val);
531 return;
532 }
533
534 spin_lock_irqsave(&tp->indirect_lock, flags);
535 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
536 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
537 spin_unlock_irqrestore(&tp->indirect_lock, flags);
538
539 /* In indirect mode when disabling interrupts, we also need
540 * to clear the interrupt bit in the GRC local ctrl register.
541 */
542 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
543 (val == 0x1)) {
544 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
545 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
546 }
547}
548
549static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
550{
551 unsigned long flags;
552 u32 val;
553
554 spin_lock_irqsave(&tp->indirect_lock, flags);
555 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
556 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
557 spin_unlock_irqrestore(&tp->indirect_lock, flags);
558 return val;
559}
560
Michael Chanb401e9e2005-12-19 16:27:04 -0800561/* usec_wait specifies the wait time in usec when writing to certain registers
562 * where it is unsafe to read back the register without some delay.
563 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
564 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
565 */
566static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Joe Perches63c3a662011-04-26 08:12:10 +0000568 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800569 /* Non-posted methods */
570 tp->write32(tp, off, val);
571 else {
572 /* Posted method */
573 tg3_write32(tp, off, val);
574 if (usec_wait)
575 udelay(usec_wait);
576 tp->read32(tp, off);
577 }
578 /* Wait again after the read for the posted method to guarantee that
579 * the wait time is met.
580 */
581 if (usec_wait)
582 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Michael Chan09ee9292005-08-09 20:17:00 -0700585static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
586{
587 tp->write32_mbox(tp, off, val);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000588 if (tg3_flag(tp, FLUSH_POSTED_WRITES) ||
589 (!tg3_flag(tp, MBOX_WRITE_REORDER) &&
590 !tg3_flag(tp, ICH_WORKAROUND)))
Michael Chan68929142005-08-09 20:17:14 -0700591 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700592}
593
Michael Chan20094932005-08-09 20:16:32 -0700594static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 void __iomem *mbox = tp->regs + off;
597 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000598 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 writel(val, mbox);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000600 if (tg3_flag(tp, MBOX_WRITE_REORDER) ||
601 tg3_flag(tp, FLUSH_POSTED_WRITES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 readl(mbox);
603}
604
Michael Chanb5d37722006-09-27 16:06:21 -0700605static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
606{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000607 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700608}
609
610static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
611{
612 writel(val, tp->regs + off + GRCMBOX_BASE);
613}
614
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000615#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700616#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000617#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
618#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
619#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700620
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000621#define tw32(reg, val) tp->write32(tp, reg, val)
622#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
623#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
624#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
627{
Michael Chan68929142005-08-09 20:17:14 -0700628 unsigned long flags;
629
Joe Perches41535772013-02-16 11:20:04 +0000630 if (tg3_asic_rev(tp) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700631 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
632 return;
633
Michael Chan68929142005-08-09 20:17:14 -0700634 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000635 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700636 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
637 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Michael Chanbbadf502006-04-06 21:46:34 -0700639 /* Always leave this as zero. */
640 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
641 } else {
642 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
643 tw32_f(TG3PCI_MEM_WIN_DATA, val);
644
645 /* Always leave this as zero. */
646 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
647 }
Michael Chan68929142005-08-09 20:17:14 -0700648 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
651static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
652{
Michael Chan68929142005-08-09 20:17:14 -0700653 unsigned long flags;
654
Joe Perches41535772013-02-16 11:20:04 +0000655 if (tg3_asic_rev(tp) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700656 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
657 *val = 0;
658 return;
659 }
660
Michael Chan68929142005-08-09 20:17:14 -0700661 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000662 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700663 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
664 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Michael Chanbbadf502006-04-06 21:46:34 -0700666 /* Always leave this as zero. */
667 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
668 } else {
669 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
670 *val = tr32(TG3PCI_MEM_WIN_DATA);
671
672 /* Always leave this as zero. */
673 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
674 }
Michael Chan68929142005-08-09 20:17:14 -0700675 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Matt Carlson0d3031d2007-10-10 18:02:43 -0700678static void tg3_ape_lock_init(struct tg3 *tp)
679{
680 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000681 u32 regbase, bit;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000682
Joe Perches41535772013-02-16 11:20:04 +0000683 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000684 regbase = TG3_APE_LOCK_GRANT;
685 else
686 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700687
688 /* Make sure the driver hasn't any stale locks. */
Matt Carlson78f94dc2011-11-04 09:14:58 +0000689 for (i = TG3_APE_LOCK_PHY0; i <= TG3_APE_LOCK_GPIO; i++) {
690 switch (i) {
691 case TG3_APE_LOCK_PHY0:
692 case TG3_APE_LOCK_PHY1:
693 case TG3_APE_LOCK_PHY2:
694 case TG3_APE_LOCK_PHY3:
695 bit = APE_LOCK_GRANT_DRIVER;
696 break;
697 default:
698 if (!tp->pci_fn)
699 bit = APE_LOCK_GRANT_DRIVER;
700 else
701 bit = 1 << tp->pci_fn;
702 }
703 tg3_ape_write32(tp, regbase + 4 * i, bit);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000704 }
705
Matt Carlson0d3031d2007-10-10 18:02:43 -0700706}
707
708static int tg3_ape_lock(struct tg3 *tp, int locknum)
709{
710 int i, off;
711 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000712 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700713
Joe Perches63c3a662011-04-26 08:12:10 +0000714 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700715 return 0;
716
717 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000718 case TG3_APE_LOCK_GPIO:
Joe Perches41535772013-02-16 11:20:04 +0000719 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000720 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000721 case TG3_APE_LOCK_GRC:
722 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000723 if (!tp->pci_fn)
724 bit = APE_LOCK_REQ_DRIVER;
725 else
726 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000727 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000728 case TG3_APE_LOCK_PHY0:
729 case TG3_APE_LOCK_PHY1:
730 case TG3_APE_LOCK_PHY2:
731 case TG3_APE_LOCK_PHY3:
732 bit = APE_LOCK_REQ_DRIVER;
733 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000734 default:
735 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700736 }
737
Joe Perches41535772013-02-16 11:20:04 +0000738 if (tg3_asic_rev(tp) == ASIC_REV_5761) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000739 req = TG3_APE_LOCK_REQ;
740 gnt = TG3_APE_LOCK_GRANT;
741 } else {
742 req = TG3_APE_PER_LOCK_REQ;
743 gnt = TG3_APE_PER_LOCK_GRANT;
744 }
745
Matt Carlson0d3031d2007-10-10 18:02:43 -0700746 off = 4 * locknum;
747
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000748 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700749
750 /* Wait for up to 1 millisecond to acquire lock. */
751 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000752 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000753 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700754 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +0800755 if (pci_channel_offline(tp->pdev))
756 break;
757
Matt Carlson0d3031d2007-10-10 18:02:43 -0700758 udelay(10);
759 }
760
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000761 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700762 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000763 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700764 ret = -EBUSY;
765 }
766
767 return ret;
768}
769
770static void tg3_ape_unlock(struct tg3 *tp, int locknum)
771{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000772 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700773
Joe Perches63c3a662011-04-26 08:12:10 +0000774 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700775 return;
776
777 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000778 case TG3_APE_LOCK_GPIO:
Joe Perches41535772013-02-16 11:20:04 +0000779 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000780 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000781 case TG3_APE_LOCK_GRC:
782 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000783 if (!tp->pci_fn)
784 bit = APE_LOCK_GRANT_DRIVER;
785 else
786 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000787 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000788 case TG3_APE_LOCK_PHY0:
789 case TG3_APE_LOCK_PHY1:
790 case TG3_APE_LOCK_PHY2:
791 case TG3_APE_LOCK_PHY3:
792 bit = APE_LOCK_GRANT_DRIVER;
793 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000794 default:
795 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700796 }
797
Joe Perches41535772013-02-16 11:20:04 +0000798 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000799 gnt = TG3_APE_LOCK_GRANT;
800 else
801 gnt = TG3_APE_PER_LOCK_GRANT;
802
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000803 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700804}
805
Matt Carlsonb65a3722012-07-16 16:24:00 +0000806static int tg3_ape_event_lock(struct tg3 *tp, u32 timeout_us)
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000807{
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000808 u32 apedata;
809
Matt Carlsonb65a3722012-07-16 16:24:00 +0000810 while (timeout_us) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000811 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
Matt Carlsonb65a3722012-07-16 16:24:00 +0000812 return -EBUSY;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000813
814 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000815 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
816 break;
817
Matt Carlsonb65a3722012-07-16 16:24:00 +0000818 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
819
820 udelay(10);
821 timeout_us -= (timeout_us > 10) ? 10 : timeout_us;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000822 }
823
Matt Carlsonb65a3722012-07-16 16:24:00 +0000824 return timeout_us ? 0 : -EBUSY;
825}
826
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000827static int tg3_ape_wait_for_event(struct tg3 *tp, u32 timeout_us)
828{
829 u32 i, apedata;
830
831 for (i = 0; i < timeout_us / 10; i++) {
832 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
833
834 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
835 break;
836
837 udelay(10);
838 }
839
840 return i == timeout_us / 10;
841}
842
Michael Chan86449942012-10-02 20:31:14 -0700843static int tg3_ape_scratchpad_read(struct tg3 *tp, u32 *data, u32 base_off,
844 u32 len)
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000845{
846 int err;
847 u32 i, bufoff, msgoff, maxlen, apedata;
848
849 if (!tg3_flag(tp, APE_HAS_NCSI))
850 return 0;
851
852 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
853 if (apedata != APE_SEG_SIG_MAGIC)
854 return -ENODEV;
855
856 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
857 if (!(apedata & APE_FW_STATUS_READY))
858 return -EAGAIN;
859
860 bufoff = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_OFF) +
861 TG3_APE_SHMEM_BASE;
862 msgoff = bufoff + 2 * sizeof(u32);
863 maxlen = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_LEN);
864
865 while (len) {
866 u32 length;
867
868 /* Cap xfer sizes to scratchpad limits. */
869 length = (len > maxlen) ? maxlen : len;
870 len -= length;
871
872 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
873 if (!(apedata & APE_FW_STATUS_READY))
874 return -EAGAIN;
875
876 /* Wait for up to 1 msec for APE to service previous event. */
877 err = tg3_ape_event_lock(tp, 1000);
878 if (err)
879 return err;
880
881 apedata = APE_EVENT_STATUS_DRIVER_EVNT |
882 APE_EVENT_STATUS_SCRTCHPD_READ |
883 APE_EVENT_STATUS_EVENT_PENDING;
884 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS, apedata);
885
886 tg3_ape_write32(tp, bufoff, base_off);
887 tg3_ape_write32(tp, bufoff + sizeof(u32), length);
888
889 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
890 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
891
892 base_off += length;
893
894 if (tg3_ape_wait_for_event(tp, 30000))
895 return -EAGAIN;
896
897 for (i = 0; length; i += 4, length -= 4) {
898 u32 val = tg3_ape_read32(tp, msgoff + i);
899 memcpy(data, &val, sizeof(u32));
900 data++;
901 }
902 }
903
904 return 0;
905}
906
Matt Carlsonb65a3722012-07-16 16:24:00 +0000907static int tg3_ape_send_event(struct tg3 *tp, u32 event)
908{
909 int err;
910 u32 apedata;
911
912 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
913 if (apedata != APE_SEG_SIG_MAGIC)
914 return -EAGAIN;
915
916 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
917 if (!(apedata & APE_FW_STATUS_READY))
918 return -EAGAIN;
919
920 /* Wait for up to 1 millisecond for APE to service previous event. */
921 err = tg3_ape_event_lock(tp, 1000);
922 if (err)
923 return err;
924
925 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
926 event | APE_EVENT_STATUS_EVENT_PENDING);
927
928 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
929 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
930
931 return 0;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000932}
933
934static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
935{
936 u32 event;
937 u32 apedata;
938
939 if (!tg3_flag(tp, ENABLE_APE))
940 return;
941
942 switch (kind) {
943 case RESET_KIND_INIT:
944 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
945 APE_HOST_SEG_SIG_MAGIC);
946 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
947 APE_HOST_SEG_LEN_MAGIC);
948 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
949 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
950 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
951 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
952 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
953 APE_HOST_BEHAV_NO_PHYLOCK);
954 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
955 TG3_APE_HOST_DRVR_STATE_START);
956
957 event = APE_EVENT_STATUS_STATE_START;
958 break;
959 case RESET_KIND_SHUTDOWN:
960 /* With the interface we are currently using,
961 * APE does not track driver state. Wiping
962 * out the HOST SEGMENT SIGNATURE forces
963 * the APE to assume OS absent status.
964 */
965 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
966
967 if (device_may_wakeup(&tp->pdev->dev) &&
968 tg3_flag(tp, WOL_ENABLE)) {
969 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
970 TG3_APE_HOST_WOL_SPEED_AUTO);
971 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
972 } else
973 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
974
975 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
976
977 event = APE_EVENT_STATUS_STATE_UNLOAD;
978 break;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000979 default:
980 return;
981 }
982
983 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
984
985 tg3_ape_send_event(tp, event);
986}
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988static void tg3_disable_ints(struct tg3 *tp)
989{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000990 int i;
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 tw32(TG3PCI_MISC_HOST_CTRL,
993 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000994 for (i = 0; i < tp->irq_max; i++)
995 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998static void tg3_enable_ints(struct tg3 *tp)
999{
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001000 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001001
Michael Chanbbe832c2005-06-24 20:20:04 -07001002 tp->irq_sync = 0;
1003 wmb();
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 tw32(TG3PCI_MISC_HOST_CTRL,
1006 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +00001007
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001008 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001009 for (i = 0; i < tp->irq_cnt; i++) {
1010 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001011
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001012 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +00001013 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001014 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
1015
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001016 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001017 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +00001018
1019 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +00001020 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +00001021 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
1022 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
1023 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001024 tw32(HOSTCC_MODE, tp->coal_now);
1025
1026 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Matt Carlson17375d22009-08-28 14:02:18 +00001029static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -07001030{
Matt Carlson17375d22009-08-28 14:02:18 +00001031 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00001032 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -07001033 unsigned int work_exists = 0;
1034
1035 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00001036 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -07001037 if (sblk->status & SD_STATUS_LINK_CHG)
1038 work_exists = 1;
1039 }
Matt Carlsonf891ea12012-04-24 13:37:01 +00001040
1041 /* check for TX work to do */
1042 if (sblk->idx[0].tx_consumer != tnapi->tx_cons)
1043 work_exists = 1;
1044
1045 /* check for RX work to do */
1046 if (tnapi->rx_rcb_prod_idx &&
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00001047 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -07001048 work_exists = 1;
1049
1050 return work_exists;
1051}
1052
Matt Carlson17375d22009-08-28 14:02:18 +00001053/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -07001054 * similar to tg3_enable_ints, but it accurately determines whether there
1055 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001056 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 */
Matt Carlson17375d22009-08-28 14:02:18 +00001058static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Matt Carlson17375d22009-08-28 14:02:18 +00001060 struct tg3 *tp = tnapi->tp;
1061
Matt Carlson898a56f2009-08-28 14:02:40 +00001062 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 mmiowb();
1064
David S. Millerfac9b832005-05-18 22:46:34 -07001065 /* When doing tagged status, this work check is unnecessary.
1066 * The last_tag we write above tells the chip which piece of
1067 * work we've completed.
1068 */
Joe Perches63c3a662011-04-26 08:12:10 +00001069 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -07001070 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00001071 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074static void tg3_switch_clocks(struct tg3 *tp)
1075{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001076 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 u32 orig_clock_ctrl;
1078
Joe Perches63c3a662011-04-26 08:12:10 +00001079 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07001080 return;
1081
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001082 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 orig_clock_ctrl = clock_ctrl;
1085 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
1086 CLOCK_CTRL_CLKRUN_OENABLE |
1087 0x1f);
1088 tp->pci_clock_ctrl = clock_ctrl;
1089
Joe Perches63c3a662011-04-26 08:12:10 +00001090 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001092 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1093 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001096 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1097 clock_ctrl |
1098 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
1099 40);
1100 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1101 clock_ctrl | (CLOCK_CTRL_ALTCLK),
1102 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
Michael Chanb401e9e2005-12-19 16:27:04 -08001104 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
1107#define PHY_BUSY_LOOPS 5000
1108
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001109static int __tg3_readphy(struct tg3 *tp, unsigned int phy_addr, int reg,
1110 u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 u32 frame_val;
1113 unsigned int loops;
1114 int ret;
1115
1116 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1117 tw32_f(MAC_MI_MODE,
1118 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1119 udelay(80);
1120 }
1121
Michael Chan8151ad52012-07-29 19:15:41 +00001122 tg3_ape_lock(tp, tp->phy_ape_lock);
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 *val = 0x0;
1125
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001126 frame_val = ((phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 MI_COM_PHY_ADDR_MASK);
1128 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1129 MI_COM_REG_ADDR_MASK);
1130 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 tw32_f(MAC_MI_COM, frame_val);
1133
1134 loops = PHY_BUSY_LOOPS;
1135 while (loops != 0) {
1136 udelay(10);
1137 frame_val = tr32(MAC_MI_COM);
1138
1139 if ((frame_val & MI_COM_BUSY) == 0) {
1140 udelay(5);
1141 frame_val = tr32(MAC_MI_COM);
1142 break;
1143 }
1144 loops -= 1;
1145 }
1146
1147 ret = -EBUSY;
1148 if (loops != 0) {
1149 *val = frame_val & MI_COM_DATA_MASK;
1150 ret = 0;
1151 }
1152
1153 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1154 tw32_f(MAC_MI_MODE, tp->mi_mode);
1155 udelay(80);
1156 }
1157
Michael Chan8151ad52012-07-29 19:15:41 +00001158 tg3_ape_unlock(tp, tp->phy_ape_lock);
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return ret;
1161}
1162
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001163static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
1164{
1165 return __tg3_readphy(tp, tp->phy_addr, reg, val);
1166}
1167
1168static int __tg3_writephy(struct tg3 *tp, unsigned int phy_addr, int reg,
1169 u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 u32 frame_val;
1172 unsigned int loops;
1173 int ret;
1174
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001175 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +00001176 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -07001177 return 0;
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1180 tw32_f(MAC_MI_MODE,
1181 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1182 udelay(80);
1183 }
1184
Michael Chan8151ad52012-07-29 19:15:41 +00001185 tg3_ape_lock(tp, tp->phy_ape_lock);
1186
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001187 frame_val = ((phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 MI_COM_PHY_ADDR_MASK);
1189 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1190 MI_COM_REG_ADDR_MASK);
1191 frame_val |= (val & MI_COM_DATA_MASK);
1192 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 tw32_f(MAC_MI_COM, frame_val);
1195
1196 loops = PHY_BUSY_LOOPS;
1197 while (loops != 0) {
1198 udelay(10);
1199 frame_val = tr32(MAC_MI_COM);
1200 if ((frame_val & MI_COM_BUSY) == 0) {
1201 udelay(5);
1202 frame_val = tr32(MAC_MI_COM);
1203 break;
1204 }
1205 loops -= 1;
1206 }
1207
1208 ret = -EBUSY;
1209 if (loops != 0)
1210 ret = 0;
1211
1212 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1213 tw32_f(MAC_MI_MODE, tp->mi_mode);
1214 udelay(80);
1215 }
1216
Michael Chan8151ad52012-07-29 19:15:41 +00001217 tg3_ape_unlock(tp, tp->phy_ape_lock);
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return ret;
1220}
1221
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001222static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
1223{
1224 return __tg3_writephy(tp, tp->phy_addr, reg, val);
1225}
1226
Matt Carlsonb0988c12011-04-20 07:57:39 +00001227static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
1228{
1229 int err;
1230
1231 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1232 if (err)
1233 goto done;
1234
1235 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1236 if (err)
1237 goto done;
1238
1239 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1240 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1241 if (err)
1242 goto done;
1243
1244 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
1245
1246done:
1247 return err;
1248}
1249
1250static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
1251{
1252 int err;
1253
1254 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1255 if (err)
1256 goto done;
1257
1258 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1259 if (err)
1260 goto done;
1261
1262 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1263 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1264 if (err)
1265 goto done;
1266
1267 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
1268
1269done:
1270 return err;
1271}
1272
1273static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
1274{
1275 int err;
1276
1277 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1278 if (!err)
1279 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
1280
1281 return err;
1282}
1283
1284static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1285{
1286 int err;
1287
1288 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1289 if (!err)
1290 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1291
1292 return err;
1293}
1294
Matt Carlson15ee95c2011-04-20 07:57:40 +00001295static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1296{
1297 int err;
1298
1299 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1300 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1301 MII_TG3_AUXCTL_SHDWSEL_MISC);
1302 if (!err)
1303 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1304
1305 return err;
1306}
1307
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001308static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1309{
1310 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1311 set |= MII_TG3_AUXCTL_MISC_WREN;
1312
1313 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1314}
1315
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001316static int tg3_phy_toggle_auxctl_smdsp(struct tg3 *tp, bool enable)
1317{
1318 u32 val;
1319 int err;
Matt Carlson1d36ba42011-04-20 07:57:42 +00001320
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001321 err = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
1322
1323 if (err)
1324 return err;
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001325
Nithin Sujir7c10ee32013-05-23 11:11:26 +00001326 if (enable)
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001327 val |= MII_TG3_AUXCTL_ACTL_SMDSP_ENA;
1328 else
1329 val &= ~MII_TG3_AUXCTL_ACTL_SMDSP_ENA;
1330
1331 err = tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
1332 val | MII_TG3_AUXCTL_ACTL_TX_6DB);
1333
1334 return err;
1335}
Matt Carlson1d36ba42011-04-20 07:57:42 +00001336
Nithin Sujir3ab71072013-09-20 16:46:55 -07001337static int tg3_phy_shdw_write(struct tg3 *tp, int reg, u32 val)
1338{
1339 return tg3_writephy(tp, MII_TG3_MISC_SHDW,
1340 reg | val | MII_TG3_MISC_SHDW_WREN);
1341}
1342
Matt Carlson95e28692008-05-25 23:44:14 -07001343static int tg3_bmcr_reset(struct tg3 *tp)
1344{
1345 u32 phy_control;
1346 int limit, err;
1347
1348 /* OK, reset it, and poll the BMCR_RESET bit until it
1349 * clears or we time out.
1350 */
1351 phy_control = BMCR_RESET;
1352 err = tg3_writephy(tp, MII_BMCR, phy_control);
1353 if (err != 0)
1354 return -EBUSY;
1355
1356 limit = 5000;
1357 while (limit--) {
1358 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1359 if (err != 0)
1360 return -EBUSY;
1361
1362 if ((phy_control & BMCR_RESET) == 0) {
1363 udelay(40);
1364 break;
1365 }
1366 udelay(10);
1367 }
Roel Kluind4675b52009-02-12 16:33:27 -08001368 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001369 return -EBUSY;
1370
1371 return 0;
1372}
1373
Matt Carlson158d7ab2008-05-29 01:37:54 -07001374static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1375{
Francois Romieu3d165432009-01-19 16:56:50 -08001376 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001377 u32 val;
1378
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001379 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001380
Hauke Mehrtensead24022013-09-28 23:15:26 +02001381 if (__tg3_readphy(tp, mii_id, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001382 val = -EIO;
1383
1384 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001385
1386 return val;
1387}
1388
1389static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1390{
Francois Romieu3d165432009-01-19 16:56:50 -08001391 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001392 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001393
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001394 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001395
Hauke Mehrtensead24022013-09-28 23:15:26 +02001396 if (__tg3_writephy(tp, mii_id, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001397 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001398
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001399 spin_unlock_bh(&tp->lock);
1400
1401 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001402}
1403
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001404static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001405{
1406 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001407 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001408
Hauke Mehrtensead24022013-09-28 23:15:26 +02001409 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001410 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001411 case PHY_ID_BCM50610:
1412 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001413 val = MAC_PHYCFG2_50610_LED_MODES;
1414 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001415 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001416 val = MAC_PHYCFG2_AC131_LED_MODES;
1417 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001418 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001419 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1420 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001421 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001422 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1423 break;
1424 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001425 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001426 }
1427
1428 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1429 tw32(MAC_PHYCFG2, val);
1430
1431 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001432 val &= ~(MAC_PHYCFG1_RGMII_INT |
1433 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1434 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001435 tw32(MAC_PHYCFG1, val);
1436
1437 return;
1438 }
1439
Joe Perches63c3a662011-04-26 08:12:10 +00001440 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001441 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1442 MAC_PHYCFG2_FMODE_MASK_MASK |
1443 MAC_PHYCFG2_GMODE_MASK_MASK |
1444 MAC_PHYCFG2_ACT_MASK_MASK |
1445 MAC_PHYCFG2_QUAL_MASK_MASK |
1446 MAC_PHYCFG2_INBAND_ENABLE;
1447
1448 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001449
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001450 val = tr32(MAC_PHYCFG1);
1451 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1452 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001453 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1454 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001455 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001456 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001457 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1458 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001459 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1460 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1461 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001462
Matt Carlsona9daf362008-05-25 23:49:44 -07001463 val = tr32(MAC_EXT_RGMII_MODE);
1464 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 |
1468 MAC_RGMII_MODE_TX_ENABLE |
1469 MAC_RGMII_MODE_TX_LOWPWR |
1470 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001471 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1472 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001473 val |= MAC_RGMII_MODE_RX_INT_B |
1474 MAC_RGMII_MODE_RX_QUALITY |
1475 MAC_RGMII_MODE_RX_ACTIVITY |
1476 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001477 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001478 val |= MAC_RGMII_MODE_TX_ENABLE |
1479 MAC_RGMII_MODE_TX_LOWPWR |
1480 MAC_RGMII_MODE_TX_RESET;
1481 }
1482 tw32(MAC_EXT_RGMII_MODE, val);
1483}
1484
Matt Carlson158d7ab2008-05-29 01:37:54 -07001485static void tg3_mdio_start(struct tg3 *tp)
1486{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001487 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1488 tw32_f(MAC_MI_MODE, tp->mi_mode);
1489 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001490
Joe Perches63c3a662011-04-26 08:12:10 +00001491 if (tg3_flag(tp, MDIOBUS_INITED) &&
Joe Perches41535772013-02-16 11:20:04 +00001492 tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson9ea48182010-02-17 15:17:01 +00001493 tg3_mdio_config_5785(tp);
1494}
1495
1496static int tg3_mdio_init(struct tg3 *tp)
1497{
1498 int i;
1499 u32 reg;
1500 struct phy_device *phydev;
1501
Joe Perches63c3a662011-04-26 08:12:10 +00001502 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001503 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001504
Matt Carlson69f11c92011-07-13 09:27:30 +00001505 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001506
Joe Perches41535772013-02-16 11:20:04 +00001507 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0)
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001508 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1509 else
1510 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1511 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001512 if (is_serdes)
1513 tp->phy_addr += 7;
Hauke Mehrtensee002b62013-09-28 23:15:28 +02001514 } else if (tg3_flag(tp, IS_SSB_CORE) && tg3_flag(tp, ROBOSWITCH)) {
1515 int addr;
1516
1517 addr = ssb_gige_get_phyaddr(tp->pdev);
1518 if (addr < 0)
1519 return addr;
1520 tp->phy_addr = addr;
Matt Carlson882e9792009-09-01 13:21:36 +00001521 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001522 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001523
Matt Carlson158d7ab2008-05-29 01:37:54 -07001524 tg3_mdio_start(tp);
1525
Joe Perches63c3a662011-04-26 08:12:10 +00001526 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001527 return 0;
1528
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001529 tp->mdio_bus = mdiobus_alloc();
1530 if (tp->mdio_bus == NULL)
1531 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001532
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001533 tp->mdio_bus->name = "tg3 mdio bus";
1534 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001535 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001536 tp->mdio_bus->priv = tp;
1537 tp->mdio_bus->parent = &tp->pdev->dev;
1538 tp->mdio_bus->read = &tg3_mdio_read;
1539 tp->mdio_bus->write = &tg3_mdio_write;
Hauke Mehrtensead24022013-09-28 23:15:26 +02001540 tp->mdio_bus->phy_mask = ~(1 << tp->phy_addr);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001541 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001542
1543 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001544 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001545
1546 /* The bus registration will look for all the PHYs on the mdio bus.
1547 * Unfortunately, it does not ensure the PHY is powered up before
1548 * accessing the PHY ID registers. A chip reset is the
1549 * quickest way to bring the device back to an operational state..
1550 */
1551 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1552 tg3_bmcr_reset(tp);
1553
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001554 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001555 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001556 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001557 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001558 return i;
1559 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001560
Hauke Mehrtensead24022013-09-28 23:15:26 +02001561 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlsona9daf362008-05-25 23:49:44 -07001562
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001563 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001564 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001565 mdiobus_unregister(tp->mdio_bus);
1566 mdiobus_free(tp->mdio_bus);
1567 return -ENODEV;
1568 }
1569
1570 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001571 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001572 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001573 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001574 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001575 case PHY_ID_BCM50610:
1576 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001577 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001578 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001579 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001580 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001581 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001582 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001583 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001584 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001585 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001586 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001587 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001588 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001589 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001590 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001591 case PHY_ID_RTL8201E:
1592 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001593 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001594 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001595 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001596 break;
1597 }
1598
Joe Perches63c3a662011-04-26 08:12:10 +00001599 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001600
Joe Perches41535772013-02-16 11:20:04 +00001601 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001602 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001603
1604 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001605}
1606
1607static void tg3_mdio_fini(struct tg3 *tp)
1608{
Joe Perches63c3a662011-04-26 08:12:10 +00001609 if (tg3_flag(tp, MDIOBUS_INITED)) {
1610 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001611 mdiobus_unregister(tp->mdio_bus);
1612 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001613 }
1614}
1615
Matt Carlson95e28692008-05-25 23:44:14 -07001616/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001617static inline void tg3_generate_fw_event(struct tg3 *tp)
1618{
1619 u32 val;
1620
1621 val = tr32(GRC_RX_CPU_EVENT);
1622 val |= GRC_RX_CPU_DRIVER_EVENT;
1623 tw32_f(GRC_RX_CPU_EVENT, val);
1624
1625 tp->last_event_jiffies = jiffies;
1626}
1627
1628#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1629
1630/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001631static void tg3_wait_for_event_ack(struct tg3 *tp)
1632{
1633 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001634 unsigned int delay_cnt;
1635 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001636
Matt Carlson4ba526c2008-08-15 14:10:04 -07001637 /* If enough time has passed, no wait is necessary. */
1638 time_remain = (long)(tp->last_event_jiffies + 1 +
1639 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1640 (long)jiffies;
1641 if (time_remain < 0)
1642 return;
1643
1644 /* Check if we can shorten the wait time. */
1645 delay_cnt = jiffies_to_usecs(time_remain);
1646 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1647 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1648 delay_cnt = (delay_cnt >> 3) + 1;
1649
1650 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001651 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1652 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +08001653 if (pci_channel_offline(tp->pdev))
1654 break;
1655
Matt Carlson4ba526c2008-08-15 14:10:04 -07001656 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001657 }
1658}
1659
1660/* tp->lock is held. */
Matt Carlsonb28f3892012-02-13 15:20:12 +00001661static void tg3_phy_gather_ump_data(struct tg3 *tp, u32 *data)
Matt Carlson95e28692008-05-25 23:44:14 -07001662{
Matt Carlsonb28f3892012-02-13 15:20:12 +00001663 u32 reg, val;
Matt Carlson95e28692008-05-25 23:44:14 -07001664
1665 val = 0;
1666 if (!tg3_readphy(tp, MII_BMCR, &reg))
1667 val = reg << 16;
1668 if (!tg3_readphy(tp, MII_BMSR, &reg))
1669 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001670 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001671
1672 val = 0;
1673 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1674 val = reg << 16;
1675 if (!tg3_readphy(tp, MII_LPA, &reg))
1676 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001677 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001678
1679 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001680 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001681 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1682 val = reg << 16;
1683 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1684 val |= (reg & 0xffff);
1685 }
Matt Carlsonb28f3892012-02-13 15:20:12 +00001686 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001687
1688 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1689 val = reg << 16;
1690 else
1691 val = 0;
Matt Carlsonb28f3892012-02-13 15:20:12 +00001692 *data++ = val;
1693}
1694
1695/* tp->lock is held. */
1696static void tg3_ump_link_report(struct tg3 *tp)
1697{
1698 u32 data[4];
1699
1700 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
1701 return;
1702
1703 tg3_phy_gather_ump_data(tp, data);
1704
1705 tg3_wait_for_event_ack(tp);
1706
1707 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1708 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1709 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x0, data[0]);
1710 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x4, data[1]);
1711 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x8, data[2]);
1712 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0xc, data[3]);
Matt Carlson95e28692008-05-25 23:44:14 -07001713
Matt Carlson4ba526c2008-08-15 14:10:04 -07001714 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001715}
1716
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001717/* tp->lock is held. */
1718static void tg3_stop_fw(struct tg3 *tp)
1719{
1720 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1721 /* Wait for RX cpu to ACK the previous event. */
1722 tg3_wait_for_event_ack(tp);
1723
1724 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1725
1726 tg3_generate_fw_event(tp);
1727
1728 /* Wait for RX cpu to ACK this event. */
1729 tg3_wait_for_event_ack(tp);
1730 }
1731}
1732
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001733/* tp->lock is held. */
1734static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1735{
1736 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1737 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1738
1739 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1740 switch (kind) {
1741 case RESET_KIND_INIT:
1742 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1743 DRV_STATE_START);
1744 break;
1745
1746 case RESET_KIND_SHUTDOWN:
1747 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1748 DRV_STATE_UNLOAD);
1749 break;
1750
1751 case RESET_KIND_SUSPEND:
1752 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1753 DRV_STATE_SUSPEND);
1754 break;
1755
1756 default:
1757 break;
1758 }
1759 }
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001760}
1761
1762/* tp->lock is held. */
1763static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1764{
1765 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1766 switch (kind) {
1767 case RESET_KIND_INIT:
1768 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1769 DRV_STATE_START_DONE);
1770 break;
1771
1772 case RESET_KIND_SHUTDOWN:
1773 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1774 DRV_STATE_UNLOAD_DONE);
1775 break;
1776
1777 default:
1778 break;
1779 }
1780 }
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001781}
1782
1783/* tp->lock is held. */
1784static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1785{
1786 if (tg3_flag(tp, ENABLE_ASF)) {
1787 switch (kind) {
1788 case RESET_KIND_INIT:
1789 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1790 DRV_STATE_START);
1791 break;
1792
1793 case RESET_KIND_SHUTDOWN:
1794 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1795 DRV_STATE_UNLOAD);
1796 break;
1797
1798 case RESET_KIND_SUSPEND:
1799 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1800 DRV_STATE_SUSPEND);
1801 break;
1802
1803 default:
1804 break;
1805 }
1806 }
1807}
1808
1809static int tg3_poll_fw(struct tg3 *tp)
1810{
1811 int i;
1812 u32 val;
1813
Nithin Sujirdf465ab2013-06-12 11:08:59 -07001814 if (tg3_flag(tp, NO_FWARE_REPORTED))
1815 return 0;
1816
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00001817 if (tg3_flag(tp, IS_SSB_CORE)) {
1818 /* We don't use firmware. */
1819 return 0;
1820 }
1821
Joe Perches41535772013-02-16 11:20:04 +00001822 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001823 /* Wait up to 20ms for init done. */
1824 for (i = 0; i < 200; i++) {
1825 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1826 return 0;
Gavin Shan6d446ec2013-06-25 15:24:32 +08001827 if (pci_channel_offline(tp->pdev))
1828 return -ENODEV;
1829
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001830 udelay(100);
1831 }
1832 return -ENODEV;
1833 }
1834
1835 /* Wait for firmware initialization to complete. */
1836 for (i = 0; i < 100000; i++) {
1837 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1838 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1839 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +08001840 if (pci_channel_offline(tp->pdev)) {
1841 if (!tg3_flag(tp, NO_FWARE_REPORTED)) {
1842 tg3_flag_set(tp, NO_FWARE_REPORTED);
1843 netdev_info(tp->dev, "No firmware running\n");
1844 }
1845
1846 break;
1847 }
1848
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001849 udelay(10);
1850 }
1851
1852 /* Chip might not be fitted with firmware. Some Sun onboard
1853 * parts are configured like that. So don't signal the timeout
1854 * of the above loop as an error, but do report the lack of
1855 * running firmware once.
1856 */
1857 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1858 tg3_flag_set(tp, NO_FWARE_REPORTED);
1859
1860 netdev_info(tp->dev, "No firmware running\n");
1861 }
1862
Joe Perches41535772013-02-16 11:20:04 +00001863 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001864 /* The 57765 A0 needs a little more
1865 * time to do some important work.
1866 */
1867 mdelay(10);
1868 }
1869
1870 return 0;
1871}
1872
Matt Carlson95e28692008-05-25 23:44:14 -07001873static void tg3_link_report(struct tg3 *tp)
1874{
1875 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001876 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001877 tg3_ump_link_report(tp);
1878 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001879 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1880 (tp->link_config.active_speed == SPEED_1000 ?
1881 1000 :
1882 (tp->link_config.active_speed == SPEED_100 ?
1883 100 : 10)),
1884 (tp->link_config.active_duplex == DUPLEX_FULL ?
1885 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001886
Joe Perches05dbe002010-02-17 19:44:19 +00001887 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1888 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1889 "on" : "off",
1890 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1891 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001892
1893 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1894 netdev_info(tp->dev, "EEE is %s\n",
1895 tp->setlpicnt ? "enabled" : "disabled");
1896
Matt Carlson95e28692008-05-25 23:44:14 -07001897 tg3_ump_link_report(tp);
1898 }
Nithin Sujir84421b92013-03-08 08:01:24 +00001899
1900 tp->link_up = netif_carrier_ok(tp->dev);
Matt Carlson95e28692008-05-25 23:44:14 -07001901}
1902
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001903static u32 tg3_decode_flowctrl_1000T(u32 adv)
1904{
1905 u32 flowctrl = 0;
1906
1907 if (adv & ADVERTISE_PAUSE_CAP) {
1908 flowctrl |= FLOW_CTRL_RX;
1909 if (!(adv & ADVERTISE_PAUSE_ASYM))
1910 flowctrl |= FLOW_CTRL_TX;
1911 } else if (adv & ADVERTISE_PAUSE_ASYM)
1912 flowctrl |= FLOW_CTRL_TX;
1913
1914 return flowctrl;
1915}
1916
Matt Carlson95e28692008-05-25 23:44:14 -07001917static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1918{
1919 u16 miireg;
1920
Steve Glendinninge18ce342008-12-16 02:00:00 -08001921 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001922 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001923 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001924 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001925 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001926 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1927 else
1928 miireg = 0;
1929
1930 return miireg;
1931}
1932
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001933static u32 tg3_decode_flowctrl_1000X(u32 adv)
1934{
1935 u32 flowctrl = 0;
1936
1937 if (adv & ADVERTISE_1000XPAUSE) {
1938 flowctrl |= FLOW_CTRL_RX;
1939 if (!(adv & ADVERTISE_1000XPSE_ASYM))
1940 flowctrl |= FLOW_CTRL_TX;
1941 } else if (adv & ADVERTISE_1000XPSE_ASYM)
1942 flowctrl |= FLOW_CTRL_TX;
1943
1944 return flowctrl;
1945}
1946
Matt Carlson95e28692008-05-25 23:44:14 -07001947static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1948{
1949 u8 cap = 0;
1950
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001951 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1952 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1953 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1954 if (lcladv & ADVERTISE_1000XPAUSE)
1955 cap = FLOW_CTRL_RX;
1956 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001957 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001958 }
1959
1960 return cap;
1961}
1962
Matt Carlsonf51f3562008-05-25 23:45:08 -07001963static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001964{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001965 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001966 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001967 u32 old_rx_mode = tp->rx_mode;
1968 u32 old_tx_mode = tp->tx_mode;
1969
Joe Perches63c3a662011-04-26 08:12:10 +00001970 if (tg3_flag(tp, USE_PHYLIB))
Hauke Mehrtensead24022013-09-28 23:15:26 +02001971 autoneg = tp->mdio_bus->phy_map[tp->phy_addr]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001972 else
1973 autoneg = tp->link_config.autoneg;
1974
Joe Perches63c3a662011-04-26 08:12:10 +00001975 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001976 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001977 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001978 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001979 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001980 } else
1981 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001982
Matt Carlsonf51f3562008-05-25 23:45:08 -07001983 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001984
Steve Glendinninge18ce342008-12-16 02:00:00 -08001985 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001986 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1987 else
1988 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1989
Matt Carlsonf51f3562008-05-25 23:45:08 -07001990 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001991 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001992
Steve Glendinninge18ce342008-12-16 02:00:00 -08001993 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001994 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1995 else
1996 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1997
Matt Carlsonf51f3562008-05-25 23:45:08 -07001998 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001999 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07002000}
2001
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002002static void tg3_adjust_link(struct net_device *dev)
2003{
2004 u8 oldflowctrl, linkmesg = 0;
2005 u32 mac_mode, lcl_adv, rmt_adv;
2006 struct tg3 *tp = netdev_priv(dev);
Hauke Mehrtensead24022013-09-28 23:15:26 +02002007 struct phy_device *phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002008
Matt Carlson24bb4fb2009-10-05 17:55:29 +00002009 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002010
2011 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
2012 MAC_MODE_HALF_DUPLEX);
2013
2014 oldflowctrl = tp->link_config.active_flowctrl;
2015
2016 if (phydev->link) {
2017 lcl_adv = 0;
2018 rmt_adv = 0;
2019
2020 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
2021 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00002022 else if (phydev->speed == SPEED_1000 ||
Joe Perches41535772013-02-16 11:20:04 +00002023 tg3_asic_rev(tp) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002024 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00002025 else
2026 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002027
2028 if (phydev->duplex == DUPLEX_HALF)
2029 mac_mode |= MAC_MODE_HALF_DUPLEX;
2030 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00002031 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002032 tp->link_config.flowctrl);
2033
2034 if (phydev->pause)
2035 rmt_adv = LPA_PAUSE_CAP;
2036 if (phydev->asym_pause)
2037 rmt_adv |= LPA_PAUSE_ASYM;
2038 }
2039
2040 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
2041 } else
2042 mac_mode |= MAC_MODE_PORT_MODE_GMII;
2043
2044 if (mac_mode != tp->mac_mode) {
2045 tp->mac_mode = mac_mode;
2046 tw32_f(MAC_MODE, tp->mac_mode);
2047 udelay(40);
2048 }
2049
Joe Perches41535772013-02-16 11:20:04 +00002050 if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -08002051 if (phydev->speed == SPEED_10)
2052 tw32(MAC_MI_STAT,
2053 MAC_MI_STAT_10MBPS_MODE |
2054 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2055 else
2056 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2057 }
2058
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002059 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
2060 tw32(MAC_TX_LENGTHS,
2061 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2062 (6 << TX_LENGTHS_IPG_SHIFT) |
2063 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
2064 else
2065 tw32(MAC_TX_LENGTHS,
2066 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2067 (6 << TX_LENGTHS_IPG_SHIFT) |
2068 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
2069
Matt Carlson34655ad2012-02-22 12:35:18 +00002070 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002071 phydev->speed != tp->link_config.active_speed ||
2072 phydev->duplex != tp->link_config.active_duplex ||
2073 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002074 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002075
Matt Carlson34655ad2012-02-22 12:35:18 +00002076 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002077 tp->link_config.active_speed = phydev->speed;
2078 tp->link_config.active_duplex = phydev->duplex;
2079
Matt Carlson24bb4fb2009-10-05 17:55:29 +00002080 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002081
2082 if (linkmesg)
2083 tg3_link_report(tp);
2084}
2085
2086static int tg3_phy_init(struct tg3 *tp)
2087{
2088 struct phy_device *phydev;
2089
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002090 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002091 return 0;
2092
2093 /* Bring the PHY back to a known state. */
2094 tg3_bmcr_reset(tp);
2095
Hauke Mehrtensead24022013-09-28 23:15:26 +02002096 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002097
2098 /* Attach the MAC to the PHY. */
Andrew Lunn84eff6d2016-01-06 20:11:10 +01002099 phydev = phy_connect(tp->dev, phydev_name(phydev),
Florian Fainellif9a8f832013-01-14 00:52:52 +00002100 tg3_adjust_link, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002101 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00002102 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002103 return PTR_ERR(phydev);
2104 }
2105
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002106 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002107 switch (phydev->interface) {
2108 case PHY_INTERFACE_MODE_GMII:
2109 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002110 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08002111 phydev->supported &= (PHY_GBIT_FEATURES |
2112 SUPPORTED_Pause |
2113 SUPPORTED_Asym_Pause);
2114 break;
2115 }
2116 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002117 case PHY_INTERFACE_MODE_MII:
2118 phydev->supported &= (PHY_BASIC_FEATURES |
2119 SUPPORTED_Pause |
2120 SUPPORTED_Asym_Pause);
2121 break;
2122 default:
Hauke Mehrtensead24022013-09-28 23:15:26 +02002123 phy_disconnect(tp->mdio_bus->phy_map[tp->phy_addr]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002124 return -EINVAL;
2125 }
2126
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002127 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002128
2129 phydev->advertising = phydev->supported;
2130
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002131 return 0;
2132}
2133
2134static void tg3_phy_start(struct tg3 *tp)
2135{
2136 struct phy_device *phydev;
2137
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002138 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002139 return;
2140
Hauke Mehrtensead24022013-09-28 23:15:26 +02002141 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002142
Matt Carlson80096062010-08-02 11:26:06 +00002143 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
2144 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00002145 phydev->speed = tp->link_config.speed;
2146 phydev->duplex = tp->link_config.duplex;
2147 phydev->autoneg = tp->link_config.autoneg;
2148 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002149 }
2150
2151 phy_start(phydev);
2152
2153 phy_start_aneg(phydev);
2154}
2155
2156static void tg3_phy_stop(struct tg3 *tp)
2157{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002158 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002159 return;
2160
Hauke Mehrtensead24022013-09-28 23:15:26 +02002161 phy_stop(tp->mdio_bus->phy_map[tp->phy_addr]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002162}
2163
2164static void tg3_phy_fini(struct tg3 *tp)
2165{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002166 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Hauke Mehrtensead24022013-09-28 23:15:26 +02002167 phy_disconnect(tp->mdio_bus->phy_map[tp->phy_addr]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002168 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002169 }
2170}
2171
Matt Carlson941ec902011-08-19 13:58:23 +00002172static int tg3_phy_set_extloopbk(struct tg3 *tp)
2173{
2174 int err;
2175 u32 val;
2176
2177 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
2178 return 0;
2179
2180 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
2181 /* Cannot do read-modify-write on 5401 */
2182 err = tg3_phy_auxctl_write(tp,
2183 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2184 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
2185 0x4c20);
2186 goto done;
2187 }
2188
2189 err = tg3_phy_auxctl_read(tp,
2190 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2191 if (err)
2192 return err;
2193
2194 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
2195 err = tg3_phy_auxctl_write(tp,
2196 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
2197
2198done:
2199 return err;
2200}
2201
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002202static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
2203{
2204 u32 phytest;
2205
2206 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2207 u32 phy;
2208
2209 tg3_writephy(tp, MII_TG3_FET_TEST,
2210 phytest | MII_TG3_FET_SHADOW_EN);
2211 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
2212 if (enable)
2213 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
2214 else
2215 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
2216 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
2217 }
2218 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2219 }
2220}
2221
Matt Carlson6833c042008-11-21 17:18:59 -08002222static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
2223{
2224 u32 reg;
2225
Joe Perches63c3a662011-04-26 08:12:10 +00002226 if (!tg3_flag(tp, 5705_PLUS) ||
2227 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002228 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08002229 return;
2230
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002231 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002232 tg3_phy_fet_toggle_apd(tp, enable);
2233 return;
2234 }
2235
Nithin Sujir3ab71072013-09-20 16:46:55 -07002236 reg = MII_TG3_MISC_SHDW_SCR5_LPED |
Matt Carlson6833c042008-11-21 17:18:59 -08002237 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
2238 MII_TG3_MISC_SHDW_SCR5_SDTL |
2239 MII_TG3_MISC_SHDW_SCR5_C125OE;
Joe Perches41535772013-02-16 11:20:04 +00002240 if (tg3_asic_rev(tp) != ASIC_REV_5784 || !enable)
Matt Carlson6833c042008-11-21 17:18:59 -08002241 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2242
Nithin Sujir3ab71072013-09-20 16:46:55 -07002243 tg3_phy_shdw_write(tp, MII_TG3_MISC_SHDW_SCR5_SEL, reg);
Matt Carlson6833c042008-11-21 17:18:59 -08002244
2245
Nithin Sujir3ab71072013-09-20 16:46:55 -07002246 reg = MII_TG3_MISC_SHDW_APD_WKTM_84MS;
Matt Carlson6833c042008-11-21 17:18:59 -08002247 if (enable)
2248 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2249
Nithin Sujir3ab71072013-09-20 16:46:55 -07002250 tg3_phy_shdw_write(tp, MII_TG3_MISC_SHDW_APD_SEL, reg);
Matt Carlson6833c042008-11-21 17:18:59 -08002251}
2252
Joe Perches953c96e2013-04-09 10:18:14 +00002253static void tg3_phy_toggle_automdix(struct tg3 *tp, bool enable)
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002254{
2255 u32 phy;
2256
Joe Perches63c3a662011-04-26 08:12:10 +00002257 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002258 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002259 return;
2260
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002261 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002262 u32 ephy;
2263
Matt Carlson535ef6e2009-08-25 10:09:36 +00002264 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2265 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2266
2267 tg3_writephy(tp, MII_TG3_FET_TEST,
2268 ephy | MII_TG3_FET_SHADOW_EN);
2269 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002270 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002271 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002272 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002273 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2274 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002275 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002276 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002277 }
2278 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002279 int ret;
2280
2281 ret = tg3_phy_auxctl_read(tp,
2282 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2283 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002284 if (enable)
2285 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2286 else
2287 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002288 tg3_phy_auxctl_write(tp,
2289 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002290 }
2291 }
2292}
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294static void tg3_phy_set_wirespeed(struct tg3 *tp)
2295{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002296 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 u32 val;
2298
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002299 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 return;
2301
Matt Carlson15ee95c2011-04-20 07:57:40 +00002302 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2303 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002304 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2305 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
2307
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002308static void tg3_phy_apply_otp(struct tg3 *tp)
2309{
2310 u32 otp, phy;
2311
2312 if (!tp->phy_otp)
2313 return;
2314
2315 otp = tp->phy_otp;
2316
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002317 if (tg3_phy_toggle_auxctl_smdsp(tp, true))
Matt Carlson1d36ba42011-04-20 07:57:42 +00002318 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002319
2320 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2321 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2322 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2323
2324 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2325 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2326 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2327
2328 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2329 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2330 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2331
2332 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2333 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2334
2335 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2336 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2337
2338 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2339 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2340 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2341
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002342 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002343}
2344
Nithin Sujir400dfba2013-05-18 06:26:53 +00002345static void tg3_eee_pull_config(struct tg3 *tp, struct ethtool_eee *eee)
2346{
2347 u32 val;
2348 struct ethtool_eee *dest = &tp->eee;
2349
2350 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2351 return;
2352
2353 if (eee)
2354 dest = eee;
2355
2356 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, TG3_CL45_D7_EEERES_STAT, &val))
2357 return;
2358
2359 /* Pull eee_active */
2360 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2361 val == TG3_CL45_D7_EEERES_STAT_LP_100TX) {
2362 dest->eee_active = 1;
2363 } else
2364 dest->eee_active = 0;
2365
2366 /* Pull lp advertised settings */
2367 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE, &val))
2368 return;
2369 dest->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
2370
2371 /* Pull advertised and eee_enabled settings */
2372 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, &val))
2373 return;
2374 dest->eee_enabled = !!val;
2375 dest->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
2376
2377 /* Pull tx_lpi_enabled */
2378 val = tr32(TG3_CPMU_EEE_MODE);
2379 dest->tx_lpi_enabled = !!(val & TG3_CPMU_EEEMD_LPI_IN_TX);
2380
2381 /* Pull lpi timer value */
2382 dest->tx_lpi_timer = tr32(TG3_CPMU_EEE_DBTMR1) & 0xffff;
2383}
2384
Joe Perches953c96e2013-04-09 10:18:14 +00002385static void tg3_phy_eee_adjust(struct tg3 *tp, bool current_link_up)
Matt Carlson52b02d02010-10-14 10:37:41 +00002386{
2387 u32 val;
2388
2389 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2390 return;
2391
2392 tp->setlpicnt = 0;
2393
2394 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
Joe Perches953c96e2013-04-09 10:18:14 +00002395 current_link_up &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002396 tp->link_config.active_duplex == DUPLEX_FULL &&
2397 (tp->link_config.active_speed == SPEED_100 ||
2398 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002399 u32 eeectl;
2400
2401 if (tp->link_config.active_speed == SPEED_1000)
2402 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2403 else
2404 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2405
2406 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2407
Nithin Sujir400dfba2013-05-18 06:26:53 +00002408 tg3_eee_pull_config(tp, NULL);
2409 if (tp->eee.eee_active)
Matt Carlson52b02d02010-10-14 10:37:41 +00002410 tp->setlpicnt = 2;
2411 }
2412
2413 if (!tp->setlpicnt) {
Joe Perches953c96e2013-04-09 10:18:14 +00002414 if (current_link_up &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002415 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002416 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002417 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb715ce92011-07-20 10:20:52 +00002418 }
2419
Matt Carlson52b02d02010-10-14 10:37:41 +00002420 val = tr32(TG3_CPMU_EEE_MODE);
2421 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2422 }
2423}
2424
Matt Carlsonb0c59432011-05-19 12:12:48 +00002425static void tg3_phy_eee_enable(struct tg3 *tp)
2426{
2427 u32 val;
2428
2429 if (tp->link_config.active_speed == SPEED_1000 &&
Joe Perches41535772013-02-16 11:20:04 +00002430 (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2431 tg3_asic_rev(tp) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002432 tg3_flag(tp, 57765_CLASS)) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002433 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002434 val = MII_TG3_DSP_TAP26_ALNOKO |
2435 MII_TG3_DSP_TAP26_RMRXSTO;
2436 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002437 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002438 }
2439
2440 val = tr32(TG3_CPMU_EEE_MODE);
2441 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2442}
2443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444static int tg3_wait_macro_done(struct tg3 *tp)
2445{
2446 int limit = 100;
2447
2448 while (limit--) {
2449 u32 tmp32;
2450
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002451 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if ((tmp32 & 0x1000) == 0)
2453 break;
2454 }
2455 }
Roel Kluind4675b52009-02-12 16:33:27 -08002456 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 return -EBUSY;
2458
2459 return 0;
2460}
2461
2462static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2463{
2464 static const u32 test_pat[4][6] = {
2465 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2466 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2467 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2468 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2469 };
2470 int chan;
2471
2472 for (chan = 0; chan < 4; chan++) {
2473 int i;
2474
2475 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2476 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002477 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 for (i = 0; i < 6; i++)
2480 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2481 test_pat[chan][i]);
2482
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002483 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (tg3_wait_macro_done(tp)) {
2485 *resetp = 1;
2486 return -EBUSY;
2487 }
2488
2489 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2490 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002491 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 if (tg3_wait_macro_done(tp)) {
2493 *resetp = 1;
2494 return -EBUSY;
2495 }
2496
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002497 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 if (tg3_wait_macro_done(tp)) {
2499 *resetp = 1;
2500 return -EBUSY;
2501 }
2502
2503 for (i = 0; i < 6; i += 2) {
2504 u32 low, high;
2505
2506 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2507 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2508 tg3_wait_macro_done(tp)) {
2509 *resetp = 1;
2510 return -EBUSY;
2511 }
2512 low &= 0x7fff;
2513 high &= 0x000f;
2514 if (low != test_pat[chan][i] ||
2515 high != test_pat[chan][i+1]) {
2516 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2517 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2518 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2519
2520 return -EBUSY;
2521 }
2522 }
2523 }
2524
2525 return 0;
2526}
2527
2528static int tg3_phy_reset_chanpat(struct tg3 *tp)
2529{
2530 int chan;
2531
2532 for (chan = 0; chan < 4; chan++) {
2533 int i;
2534
2535 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2536 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002537 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 for (i = 0; i < 6; i++)
2539 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002540 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 if (tg3_wait_macro_done(tp))
2542 return -EBUSY;
2543 }
2544
2545 return 0;
2546}
2547
2548static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2549{
2550 u32 reg32, phy9_orig;
2551 int retries, do_phy_reset, err;
2552
2553 retries = 10;
2554 do_phy_reset = 1;
2555 do {
2556 if (do_phy_reset) {
2557 err = tg3_bmcr_reset(tp);
2558 if (err)
2559 return err;
2560 do_phy_reset = 0;
2561 }
2562
2563 /* Disable transmitter and interrupt. */
2564 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2565 continue;
2566
2567 reg32 |= 0x3000;
2568 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2569
2570 /* Set full-duplex, 1000 mbps. */
2571 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002572 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
2574 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002575 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 continue;
2577
Matt Carlson221c5632011-06-13 13:39:01 +00002578 tg3_writephy(tp, MII_CTRL1000,
2579 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002581 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002582 if (err)
2583 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002586 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2589 if (!err)
2590 break;
2591 } while (--retries);
2592
2593 err = tg3_phy_reset_chanpat(tp);
2594 if (err)
2595 return err;
2596
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002597 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002600 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002602 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Matt Carlson221c5632011-06-13 13:39:01 +00002604 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Dan Carpenterc6e27f22014-02-05 16:29:21 +03002606 err = tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32);
2607 if (err)
2608 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Dan Carpenterc6e27f22014-02-05 16:29:21 +03002610 reg32 &= ~0x3000;
2611 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2612
2613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002616static void tg3_carrier_off(struct tg3 *tp)
2617{
2618 netif_carrier_off(tp->dev);
2619 tp->link_up = false;
2620}
2621
Nithin Sujirce20f162013-04-09 08:48:04 +00002622static void tg3_warn_mgmt_link_flap(struct tg3 *tp)
2623{
2624 if (tg3_flag(tp, ENABLE_ASF))
2625 netdev_warn(tp->dev,
2626 "Management side-band traffic will be interrupted during phy settings change\n");
2627}
2628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629/* This will reset the tigon3 PHY if there is no valid
2630 * link unless the FORCE argument is non-zero.
2631 */
2632static int tg3_phy_reset(struct tg3 *tp)
2633{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002634 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 int err;
2636
Joe Perches41535772013-02-16 11:20:04 +00002637 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002638 val = tr32(GRC_MISC_CFG);
2639 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2640 udelay(40);
2641 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002642 err = tg3_readphy(tp, MII_BMSR, &val);
2643 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 if (err != 0)
2645 return -EBUSY;
2646
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002647 if (netif_running(tp->dev) && tp->link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00002648 netif_carrier_off(tp->dev);
Michael Chanc8e1e822006-04-29 18:55:17 -07002649 tg3_link_report(tp);
2650 }
2651
Joe Perches41535772013-02-16 11:20:04 +00002652 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
2653 tg3_asic_rev(tp) == ASIC_REV_5704 ||
2654 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 err = tg3_phy_reset_5703_4_5(tp);
2656 if (err)
2657 return err;
2658 goto out;
2659 }
2660
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002661 cpmuctrl = 0;
Joe Perches41535772013-02-16 11:20:04 +00002662 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
2663 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002664 cpmuctrl = tr32(TG3_CPMU_CTRL);
2665 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2666 tw32(TG3_CPMU_CTRL,
2667 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2668 }
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 err = tg3_bmcr_reset(tp);
2671 if (err)
2672 return err;
2673
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002674 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002675 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2676 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002677
2678 tw32(TG3_CPMU_CTRL, cpmuctrl);
2679 }
2680
Joe Perches41535772013-02-16 11:20:04 +00002681 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
2682 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002683 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2684 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2685 CPMU_LSPD_1000MB_MACCLK_12_5) {
2686 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2687 udelay(40);
2688 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2689 }
2690 }
2691
Joe Perches63c3a662011-04-26 08:12:10 +00002692 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002693 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002694 return 0;
2695
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002696 tg3_phy_apply_otp(tp);
2697
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002698 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002699 tg3_phy_toggle_apd(tp, true);
2700 else
2701 tg3_phy_toggle_apd(tp, false);
2702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002704 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002705 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002706 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2707 tg3_phydsp_write(tp, 0x000a, 0x0323);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002708 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002710
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002711 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002712 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2713 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002715
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002716 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002717 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002718 tg3_phydsp_write(tp, 0x000a, 0x310b);
2719 tg3_phydsp_write(tp, 0x201f, 0x9506);
2720 tg3_phydsp_write(tp, 0x401f, 0x14e2);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002721 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002722 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002723 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002724 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002725 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2726 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2727 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2728 tg3_writephy(tp, MII_TG3_TEST1,
2729 MII_TG3_TEST1_TRIM_EN | 0x4);
2730 } else
2731 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2732
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002733 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002734 }
Michael Chanc424cb22006-04-29 18:56:34 -07002735 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 /* Set Extended packet length bit (bit 14) on all chips that */
2738 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002739 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002741 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002742 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002744 err = tg3_phy_auxctl_read(tp,
2745 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2746 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002747 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2748 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 }
2750
2751 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2752 * jumbo frames transmission.
2753 */
Joe Perches63c3a662011-04-26 08:12:10 +00002754 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002755 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002756 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002757 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 }
2759
Joe Perches41535772013-02-16 11:20:04 +00002760 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002761 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002762 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002763 }
2764
Joe Perches41535772013-02-16 11:20:04 +00002765 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5762_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00002766 tg3_phydsp_write(tp, 0xffb, 0x4000);
2767
Joe Perches953c96e2013-04-09 10:18:14 +00002768 tg3_phy_toggle_automdix(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 tg3_phy_set_wirespeed(tp);
2770 return 0;
2771}
2772
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002773#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2774#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2775#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2776 TG3_GPIO_MSG_NEED_VAUX)
2777#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2778 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2779 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2780 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2781 (TG3_GPIO_MSG_DRVR_PRES << 12))
2782
2783#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2784 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2785 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2786 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2787 (TG3_GPIO_MSG_NEED_VAUX << 12))
2788
2789static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2790{
2791 u32 status, shift;
2792
Joe Perches41535772013-02-16 11:20:04 +00002793 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2794 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002795 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2796 else
2797 status = tr32(TG3_CPMU_DRV_STATUS);
2798
2799 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2800 status &= ~(TG3_GPIO_MSG_MASK << shift);
2801 status |= (newstat << shift);
2802
Joe Perches41535772013-02-16 11:20:04 +00002803 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2804 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002805 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2806 else
2807 tw32(TG3_CPMU_DRV_STATUS, status);
2808
2809 return status >> TG3_APE_GPIO_MSG_SHIFT;
2810}
2811
Matt Carlson520b2752011-06-13 13:39:02 +00002812static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2813{
2814 if (!tg3_flag(tp, IS_NIC))
2815 return 0;
2816
Joe Perches41535772013-02-16 11:20:04 +00002817 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2818 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2819 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002820 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2821 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002822
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002823 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2824
2825 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2826 TG3_GRC_LCLCTL_PWRSW_DELAY);
2827
2828 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2829 } else {
2830 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2831 TG3_GRC_LCLCTL_PWRSW_DELAY);
2832 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002833
Matt Carlson520b2752011-06-13 13:39:02 +00002834 return 0;
2835}
2836
2837static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2838{
2839 u32 grc_local_ctrl;
2840
2841 if (!tg3_flag(tp, IS_NIC) ||
Joe Perches41535772013-02-16 11:20:04 +00002842 tg3_asic_rev(tp) == ASIC_REV_5700 ||
2843 tg3_asic_rev(tp) == ASIC_REV_5701)
Matt Carlson520b2752011-06-13 13:39:02 +00002844 return;
2845
2846 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2847
2848 tw32_wait_f(GRC_LOCAL_CTRL,
2849 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2850 TG3_GRC_LCLCTL_PWRSW_DELAY);
2851
2852 tw32_wait_f(GRC_LOCAL_CTRL,
2853 grc_local_ctrl,
2854 TG3_GRC_LCLCTL_PWRSW_DELAY);
2855
2856 tw32_wait_f(GRC_LOCAL_CTRL,
2857 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2858 TG3_GRC_LCLCTL_PWRSW_DELAY);
2859}
2860
2861static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2862{
2863 if (!tg3_flag(tp, IS_NIC))
2864 return;
2865
Joe Perches41535772013-02-16 11:20:04 +00002866 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
2867 tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson520b2752011-06-13 13:39:02 +00002868 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2869 (GRC_LCLCTRL_GPIO_OE0 |
2870 GRC_LCLCTRL_GPIO_OE1 |
2871 GRC_LCLCTRL_GPIO_OE2 |
2872 GRC_LCLCTRL_GPIO_OUTPUT0 |
2873 GRC_LCLCTRL_GPIO_OUTPUT1),
2874 TG3_GRC_LCLCTL_PWRSW_DELAY);
2875 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2876 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2877 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2878 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2879 GRC_LCLCTRL_GPIO_OE1 |
2880 GRC_LCLCTRL_GPIO_OE2 |
2881 GRC_LCLCTRL_GPIO_OUTPUT0 |
2882 GRC_LCLCTRL_GPIO_OUTPUT1 |
2883 tp->grc_local_ctrl;
2884 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2885 TG3_GRC_LCLCTL_PWRSW_DELAY);
2886
2887 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2888 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2889 TG3_GRC_LCLCTL_PWRSW_DELAY);
2890
2891 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2892 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2893 TG3_GRC_LCLCTL_PWRSW_DELAY);
2894 } else {
2895 u32 no_gpio2;
2896 u32 grc_local_ctrl = 0;
2897
2898 /* Workaround to prevent overdrawing Amps. */
Joe Perches41535772013-02-16 11:20:04 +00002899 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Matt Carlson520b2752011-06-13 13:39:02 +00002900 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2901 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2902 grc_local_ctrl,
2903 TG3_GRC_LCLCTL_PWRSW_DELAY);
2904 }
2905
2906 /* On 5753 and variants, GPIO2 cannot be used. */
2907 no_gpio2 = tp->nic_sram_data_cfg &
2908 NIC_SRAM_DATA_CFG_NO_GPIO2;
2909
2910 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2911 GRC_LCLCTRL_GPIO_OE1 |
2912 GRC_LCLCTRL_GPIO_OE2 |
2913 GRC_LCLCTRL_GPIO_OUTPUT1 |
2914 GRC_LCLCTRL_GPIO_OUTPUT2;
2915 if (no_gpio2) {
2916 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2917 GRC_LCLCTRL_GPIO_OUTPUT2);
2918 }
2919 tw32_wait_f(GRC_LOCAL_CTRL,
2920 tp->grc_local_ctrl | grc_local_ctrl,
2921 TG3_GRC_LCLCTL_PWRSW_DELAY);
2922
2923 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2924
2925 tw32_wait_f(GRC_LOCAL_CTRL,
2926 tp->grc_local_ctrl | grc_local_ctrl,
2927 TG3_GRC_LCLCTL_PWRSW_DELAY);
2928
2929 if (!no_gpio2) {
2930 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2931 tw32_wait_f(GRC_LOCAL_CTRL,
2932 tp->grc_local_ctrl | grc_local_ctrl,
2933 TG3_GRC_LCLCTL_PWRSW_DELAY);
2934 }
2935 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002936}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002937
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002938static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002939{
2940 u32 msg = 0;
2941
2942 /* Serialize power state transitions */
2943 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2944 return;
2945
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002946 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002947 msg = TG3_GPIO_MSG_NEED_VAUX;
2948
2949 msg = tg3_set_function_status(tp, msg);
2950
2951 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2952 goto done;
2953
2954 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2955 tg3_pwrsrc_switch_to_vaux(tp);
2956 else
2957 tg3_pwrsrc_die_with_vmain(tp);
2958
2959done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002960 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002961}
2962
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002963static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964{
Matt Carlson683644b2011-03-09 16:58:23 +00002965 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
Matt Carlson334355a2010-01-20 16:58:10 +00002967 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002968 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return;
2970
Joe Perches41535772013-02-16 11:20:04 +00002971 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2972 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2973 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002974 tg3_frob_aux_power_5717(tp, include_wol ?
2975 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002976 return;
2977 }
2978
2979 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002980 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002982 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002983
Michael Chanbc1c7562006-03-20 17:48:03 -08002984 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002985 if (dev_peer) {
2986 struct tg3 *tp_peer = netdev_priv(dev_peer);
2987
Joe Perches63c3a662011-04-26 08:12:10 +00002988 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002989 return;
2990
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002991 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002992 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002993 need_vaux = true;
2994 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002997 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2998 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002999 need_vaux = true;
3000
Matt Carlson520b2752011-06-13 13:39:02 +00003001 if (need_vaux)
3002 tg3_pwrsrc_switch_to_vaux(tp);
3003 else
3004 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005}
3006
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003007static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
3008{
3009 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
3010 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00003011 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003012 if (speed != SPEED_10)
3013 return 1;
3014 } else if (speed == SPEED_10)
3015 return 1;
3016
3017 return 0;
3018}
3019
Nithin Sujir44f3b502013-05-13 11:04:15 +00003020static bool tg3_phy_power_bug(struct tg3 *tp)
3021{
3022 switch (tg3_asic_rev(tp)) {
3023 case ASIC_REV_5700:
3024 case ASIC_REV_5704:
3025 return true;
3026 case ASIC_REV_5780:
3027 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
3028 return true;
3029 return false;
3030 case ASIC_REV_5717:
3031 if (!tp->pci_fn)
3032 return true;
3033 return false;
3034 case ASIC_REV_5719:
3035 case ASIC_REV_5720:
3036 if ((tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
3037 !tp->pci_fn)
3038 return true;
3039 return false;
3040 }
3041
3042 return false;
3043}
3044
Nithin Sujir989038e2013-08-30 17:01:36 -07003045static bool tg3_phy_led_bug(struct tg3 *tp)
3046{
3047 switch (tg3_asic_rev(tp)) {
3048 case ASIC_REV_5719:
Nithin Sujir300cf9b2013-09-12 14:01:31 -07003049 case ASIC_REV_5720:
Nithin Sujir989038e2013-08-30 17:01:36 -07003050 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
3051 !tp->pci_fn)
3052 return true;
3053 return false;
3054 }
3055
3056 return false;
3057}
3058
Matt Carlson0a459aa2008-11-03 16:54:15 -08003059static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08003060{
Matt Carlsonce057f02007-11-12 21:08:03 -08003061 u32 val;
3062
Nithin Sujir942d1af2013-04-09 08:48:07 +00003063 if (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)
3064 return;
3065
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003066 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +00003067 if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Michael Chan51297242007-02-13 12:17:57 -08003068 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3069 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
3070
3071 sg_dig_ctrl |=
3072 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
3073 tw32(SG_DIG_CTRL, sg_dig_ctrl);
3074 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
3075 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003076 return;
Michael Chan51297242007-02-13 12:17:57 -08003077 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003078
Joe Perches41535772013-02-16 11:20:04 +00003079 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08003080 tg3_bmcr_reset(tp);
3081 val = tr32(GRC_MISC_CFG);
3082 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
3083 udelay(40);
3084 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003085 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00003086 u32 phytest;
3087 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
3088 u32 phy;
3089
3090 tg3_writephy(tp, MII_ADVERTISE, 0);
3091 tg3_writephy(tp, MII_BMCR,
3092 BMCR_ANENABLE | BMCR_ANRESTART);
3093
3094 tg3_writephy(tp, MII_TG3_FET_TEST,
3095 phytest | MII_TG3_FET_SHADOW_EN);
3096 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
3097 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
3098 tg3_writephy(tp,
3099 MII_TG3_FET_SHDW_AUXMODE4,
3100 phy);
3101 }
3102 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
3103 }
3104 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003105 } else if (do_low_power) {
Nithin Sujir989038e2013-08-30 17:01:36 -07003106 if (!tg3_phy_led_bug(tp))
3107 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3108 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003109
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003110 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3111 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
3112 MII_TG3_AUXCTL_PCTL_VREG_11V;
3113 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07003114 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003115
Michael Chan15c3b692006-03-22 01:06:52 -08003116 /* The PHY should not be powered down on some chips because
3117 * of bugs.
3118 */
Nithin Sujir44f3b502013-05-13 11:04:15 +00003119 if (tg3_phy_power_bug(tp))
Michael Chan15c3b692006-03-22 01:06:52 -08003120 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08003121
Joe Perches41535772013-02-16 11:20:04 +00003122 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
3123 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08003124 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
3125 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
3126 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
3127 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
3128 }
3129
Michael Chan15c3b692006-03-22 01:06:52 -08003130 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
3131}
3132
Matt Carlson3f007892008-11-03 16:51:36 -08003133/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003134static int tg3_nvram_lock(struct tg3 *tp)
3135{
Joe Perches63c3a662011-04-26 08:12:10 +00003136 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003137 int i;
3138
3139 if (tp->nvram_lock_cnt == 0) {
3140 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
3141 for (i = 0; i < 8000; i++) {
3142 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
3143 break;
3144 udelay(20);
3145 }
3146 if (i == 8000) {
3147 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
3148 return -ENODEV;
3149 }
3150 }
3151 tp->nvram_lock_cnt++;
3152 }
3153 return 0;
3154}
3155
3156/* tp->lock is held. */
3157static void tg3_nvram_unlock(struct tg3 *tp)
3158{
Joe Perches63c3a662011-04-26 08:12:10 +00003159 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003160 if (tp->nvram_lock_cnt > 0)
3161 tp->nvram_lock_cnt--;
3162 if (tp->nvram_lock_cnt == 0)
3163 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
3164 }
3165}
3166
3167/* tp->lock is held. */
3168static void tg3_enable_nvram_access(struct tg3 *tp)
3169{
Joe Perches63c3a662011-04-26 08:12:10 +00003170 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003171 u32 nvaccess = tr32(NVRAM_ACCESS);
3172
3173 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
3174 }
3175}
3176
3177/* tp->lock is held. */
3178static void tg3_disable_nvram_access(struct tg3 *tp)
3179{
Joe Perches63c3a662011-04-26 08:12:10 +00003180 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003181 u32 nvaccess = tr32(NVRAM_ACCESS);
3182
3183 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
3184 }
3185}
3186
3187static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
3188 u32 offset, u32 *val)
3189{
3190 u32 tmp;
3191 int i;
3192
3193 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
3194 return -EINVAL;
3195
3196 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
3197 EEPROM_ADDR_DEVID_MASK |
3198 EEPROM_ADDR_READ);
3199 tw32(GRC_EEPROM_ADDR,
3200 tmp |
3201 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3202 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
3203 EEPROM_ADDR_ADDR_MASK) |
3204 EEPROM_ADDR_READ | EEPROM_ADDR_START);
3205
3206 for (i = 0; i < 1000; i++) {
3207 tmp = tr32(GRC_EEPROM_ADDR);
3208
3209 if (tmp & EEPROM_ADDR_COMPLETE)
3210 break;
3211 msleep(1);
3212 }
3213 if (!(tmp & EEPROM_ADDR_COMPLETE))
3214 return -EBUSY;
3215
Matt Carlson62cedd12009-04-20 14:52:29 -07003216 tmp = tr32(GRC_EEPROM_DATA);
3217
3218 /*
3219 * The data will always be opposite the native endian
3220 * format. Perform a blind byteswap to compensate.
3221 */
3222 *val = swab32(tmp);
3223
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003224 return 0;
3225}
3226
Prashant Sreedharan66c965f2014-06-20 23:28:15 -07003227#define NVRAM_CMD_TIMEOUT 5000
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003228
3229static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
3230{
3231 int i;
3232
3233 tw32(NVRAM_CMD, nvram_cmd);
3234 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
Prashant Sreedharan66c965f2014-06-20 23:28:15 -07003235 usleep_range(10, 40);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003236 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
3237 udelay(10);
3238 break;
3239 }
3240 }
3241
3242 if (i == NVRAM_CMD_TIMEOUT)
3243 return -EBUSY;
3244
3245 return 0;
3246}
3247
3248static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
3249{
Joe Perches63c3a662011-04-26 08:12:10 +00003250 if (tg3_flag(tp, NVRAM) &&
3251 tg3_flag(tp, NVRAM_BUFFERED) &&
3252 tg3_flag(tp, FLASH) &&
3253 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003254 (tp->nvram_jedecnum == JEDEC_ATMEL))
3255
3256 addr = ((addr / tp->nvram_pagesize) <<
3257 ATMEL_AT45DB0X1B_PAGE_POS) +
3258 (addr % tp->nvram_pagesize);
3259
3260 return addr;
3261}
3262
3263static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
3264{
Joe Perches63c3a662011-04-26 08:12:10 +00003265 if (tg3_flag(tp, NVRAM) &&
3266 tg3_flag(tp, NVRAM_BUFFERED) &&
3267 tg3_flag(tp, FLASH) &&
3268 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003269 (tp->nvram_jedecnum == JEDEC_ATMEL))
3270
3271 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
3272 tp->nvram_pagesize) +
3273 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
3274
3275 return addr;
3276}
3277
Matt Carlsone4f34112009-02-25 14:25:00 +00003278/* NOTE: Data read in from NVRAM is byteswapped according to
3279 * the byteswapping settings for all other register accesses.
3280 * tg3 devices are BE devices, so on a BE machine, the data
3281 * returned will be exactly as it is seen in NVRAM. On a LE
3282 * machine, the 32-bit value will be byteswapped.
3283 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003284static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
3285{
3286 int ret;
3287
Joe Perches63c3a662011-04-26 08:12:10 +00003288 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003289 return tg3_nvram_read_using_eeprom(tp, offset, val);
3290
3291 offset = tg3_nvram_phys_addr(tp, offset);
3292
3293 if (offset > NVRAM_ADDR_MSK)
3294 return -EINVAL;
3295
3296 ret = tg3_nvram_lock(tp);
3297 if (ret)
3298 return ret;
3299
3300 tg3_enable_nvram_access(tp);
3301
3302 tw32(NVRAM_ADDR, offset);
3303 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
3304 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
3305
3306 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00003307 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003308
3309 tg3_disable_nvram_access(tp);
3310
3311 tg3_nvram_unlock(tp);
3312
3313 return ret;
3314}
3315
Matt Carlsona9dc5292009-02-25 14:25:30 +00003316/* Ensures NVRAM data is in bytestream format. */
3317static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003318{
3319 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00003320 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003321 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003322 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003323 return res;
3324}
3325
Matt Carlsondbe9b922012-02-13 10:20:09 +00003326static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
3327 u32 offset, u32 len, u8 *buf)
3328{
3329 int i, j, rc = 0;
3330 u32 val;
3331
3332 for (i = 0; i < len; i += 4) {
3333 u32 addr;
3334 __be32 data;
3335
3336 addr = offset + i;
3337
3338 memcpy(&data, buf + i, 4);
3339
3340 /*
3341 * The SEEPROM interface expects the data to always be opposite
3342 * the native endian format. We accomplish this by reversing
3343 * all the operations that would have been performed on the
3344 * data from a call to tg3_nvram_read_be32().
3345 */
3346 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3347
3348 val = tr32(GRC_EEPROM_ADDR);
3349 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3350
3351 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3352 EEPROM_ADDR_READ);
3353 tw32(GRC_EEPROM_ADDR, val |
3354 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3355 (addr & EEPROM_ADDR_ADDR_MASK) |
3356 EEPROM_ADDR_START |
3357 EEPROM_ADDR_WRITE);
3358
3359 for (j = 0; j < 1000; j++) {
3360 val = tr32(GRC_EEPROM_ADDR);
3361
3362 if (val & EEPROM_ADDR_COMPLETE)
3363 break;
3364 msleep(1);
3365 }
3366 if (!(val & EEPROM_ADDR_COMPLETE)) {
3367 rc = -EBUSY;
3368 break;
3369 }
3370 }
3371
3372 return rc;
3373}
3374
3375/* offset and length are dword aligned */
3376static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3377 u8 *buf)
3378{
3379 int ret = 0;
3380 u32 pagesize = tp->nvram_pagesize;
3381 u32 pagemask = pagesize - 1;
3382 u32 nvram_cmd;
3383 u8 *tmp;
3384
3385 tmp = kmalloc(pagesize, GFP_KERNEL);
3386 if (tmp == NULL)
3387 return -ENOMEM;
3388
3389 while (len) {
3390 int j;
3391 u32 phy_addr, page_off, size;
3392
3393 phy_addr = offset & ~pagemask;
3394
3395 for (j = 0; j < pagesize; j += 4) {
3396 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3397 (__be32 *) (tmp + j));
3398 if (ret)
3399 break;
3400 }
3401 if (ret)
3402 break;
3403
3404 page_off = offset & pagemask;
3405 size = pagesize;
3406 if (len < size)
3407 size = len;
3408
3409 len -= size;
3410
3411 memcpy(tmp + page_off, buf, size);
3412
3413 offset = offset + (pagesize - page_off);
3414
3415 tg3_enable_nvram_access(tp);
3416
3417 /*
3418 * Before we can erase the flash page, we need
3419 * to issue a special "write enable" command.
3420 */
3421 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3422
3423 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3424 break;
3425
3426 /* Erase the target page */
3427 tw32(NVRAM_ADDR, phy_addr);
3428
3429 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3430 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3431
3432 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3433 break;
3434
3435 /* Issue another write enable to start the write. */
3436 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3437
3438 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3439 break;
3440
3441 for (j = 0; j < pagesize; j += 4) {
3442 __be32 data;
3443
3444 data = *((__be32 *) (tmp + j));
3445
3446 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3447
3448 tw32(NVRAM_ADDR, phy_addr + j);
3449
3450 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3451 NVRAM_CMD_WR;
3452
3453 if (j == 0)
3454 nvram_cmd |= NVRAM_CMD_FIRST;
3455 else if (j == (pagesize - 4))
3456 nvram_cmd |= NVRAM_CMD_LAST;
3457
3458 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3459 if (ret)
3460 break;
3461 }
3462 if (ret)
3463 break;
3464 }
3465
3466 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3467 tg3_nvram_exec_cmd(tp, nvram_cmd);
3468
3469 kfree(tmp);
3470
3471 return ret;
3472}
3473
3474/* offset and length are dword aligned */
3475static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3476 u8 *buf)
3477{
3478 int i, ret = 0;
3479
3480 for (i = 0; i < len; i += 4, offset += 4) {
3481 u32 page_off, phy_addr, nvram_cmd;
3482 __be32 data;
3483
3484 memcpy(&data, buf + i, 4);
3485 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3486
3487 page_off = offset % tp->nvram_pagesize;
3488
3489 phy_addr = tg3_nvram_phys_addr(tp, offset);
3490
Matt Carlsondbe9b922012-02-13 10:20:09 +00003491 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3492
3493 if (page_off == 0 || i == 0)
3494 nvram_cmd |= NVRAM_CMD_FIRST;
3495 if (page_off == (tp->nvram_pagesize - 4))
3496 nvram_cmd |= NVRAM_CMD_LAST;
3497
3498 if (i == (len - 4))
3499 nvram_cmd |= NVRAM_CMD_LAST;
3500
Matt Carlson42278222012-02-13 15:20:11 +00003501 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3502 !tg3_flag(tp, FLASH) ||
3503 !tg3_flag(tp, 57765_PLUS))
3504 tw32(NVRAM_ADDR, phy_addr);
3505
Joe Perches41535772013-02-16 11:20:04 +00003506 if (tg3_asic_rev(tp) != ASIC_REV_5752 &&
Matt Carlsondbe9b922012-02-13 10:20:09 +00003507 !tg3_flag(tp, 5755_PLUS) &&
3508 (tp->nvram_jedecnum == JEDEC_ST) &&
3509 (nvram_cmd & NVRAM_CMD_FIRST)) {
3510 u32 cmd;
3511
3512 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3513 ret = tg3_nvram_exec_cmd(tp, cmd);
3514 if (ret)
3515 break;
3516 }
3517 if (!tg3_flag(tp, FLASH)) {
3518 /* We always do complete word writes to eeprom. */
3519 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3520 }
3521
3522 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3523 if (ret)
3524 break;
3525 }
3526 return ret;
3527}
3528
3529/* offset and length are dword aligned */
3530static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3531{
3532 int ret;
3533
3534 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3535 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3536 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3537 udelay(40);
3538 }
3539
3540 if (!tg3_flag(tp, NVRAM)) {
3541 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3542 } else {
3543 u32 grc_mode;
3544
3545 ret = tg3_nvram_lock(tp);
3546 if (ret)
3547 return ret;
3548
3549 tg3_enable_nvram_access(tp);
3550 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3551 tw32(NVRAM_WRITE1, 0x406);
3552
3553 grc_mode = tr32(GRC_MODE);
3554 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3555
3556 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3557 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3558 buf);
3559 } else {
3560 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3561 buf);
3562 }
3563
3564 grc_mode = tr32(GRC_MODE);
3565 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3566
3567 tg3_disable_nvram_access(tp);
3568 tg3_nvram_unlock(tp);
3569 }
3570
3571 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3572 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3573 udelay(40);
3574 }
3575
3576 return ret;
3577}
3578
Matt Carlson997b4f12011-08-31 11:44:53 +00003579#define RX_CPU_SCRATCH_BASE 0x30000
3580#define RX_CPU_SCRATCH_SIZE 0x04000
3581#define TX_CPU_SCRATCH_BASE 0x34000
3582#define TX_CPU_SCRATCH_SIZE 0x04000
3583
3584/* tp->lock is held. */
Nithin Sujir837c45b2013-03-06 17:02:30 +00003585static int tg3_pause_cpu(struct tg3 *tp, u32 cpu_base)
Matt Carlson997b4f12011-08-31 11:44:53 +00003586{
3587 int i;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003588 const int iters = 10000;
Matt Carlson997b4f12011-08-31 11:44:53 +00003589
Nithin Sujir837c45b2013-03-06 17:02:30 +00003590 for (i = 0; i < iters; i++) {
3591 tw32(cpu_base + CPU_STATE, 0xffffffff);
3592 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3593 if (tr32(cpu_base + CPU_MODE) & CPU_MODE_HALT)
3594 break;
Gavin Shan6d446ec2013-06-25 15:24:32 +08003595 if (pci_channel_offline(tp->pdev))
3596 return -EBUSY;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003597 }
3598
3599 return (i == iters) ? -EBUSY : 0;
3600}
3601
3602/* tp->lock is held. */
3603static int tg3_rxcpu_pause(struct tg3 *tp)
3604{
3605 int rc = tg3_pause_cpu(tp, RX_CPU_BASE);
3606
3607 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3608 tw32_f(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3609 udelay(10);
3610
3611 return rc;
3612}
3613
3614/* tp->lock is held. */
3615static int tg3_txcpu_pause(struct tg3 *tp)
3616{
3617 return tg3_pause_cpu(tp, TX_CPU_BASE);
3618}
3619
3620/* tp->lock is held. */
3621static void tg3_resume_cpu(struct tg3 *tp, u32 cpu_base)
3622{
3623 tw32(cpu_base + CPU_STATE, 0xffffffff);
3624 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3625}
3626
3627/* tp->lock is held. */
3628static void tg3_rxcpu_resume(struct tg3 *tp)
3629{
3630 tg3_resume_cpu(tp, RX_CPU_BASE);
3631}
3632
3633/* tp->lock is held. */
3634static int tg3_halt_cpu(struct tg3 *tp, u32 cpu_base)
3635{
3636 int rc;
3637
3638 BUG_ON(cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Matt Carlson997b4f12011-08-31 11:44:53 +00003639
Joe Perches41535772013-02-16 11:20:04 +00003640 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003641 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3642
3643 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3644 return 0;
3645 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003646 if (cpu_base == RX_CPU_BASE) {
3647 rc = tg3_rxcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003648 } else {
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00003649 /*
3650 * There is only an Rx CPU for the 5750 derivative in the
3651 * BCM4785.
3652 */
3653 if (tg3_flag(tp, IS_SSB_CORE))
3654 return 0;
3655
Nithin Sujir837c45b2013-03-06 17:02:30 +00003656 rc = tg3_txcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003657 }
3658
Nithin Sujir837c45b2013-03-06 17:02:30 +00003659 if (rc) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003660 netdev_err(tp->dev, "%s timed out, %s CPU\n",
Nithin Sujir837c45b2013-03-06 17:02:30 +00003661 __func__, cpu_base == RX_CPU_BASE ? "RX" : "TX");
Matt Carlson997b4f12011-08-31 11:44:53 +00003662 return -ENODEV;
3663 }
3664
3665 /* Clear firmware's nvram arbitration. */
3666 if (tg3_flag(tp, NVRAM))
3667 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3668 return 0;
3669}
3670
Nithin Sujir31f11a92013-03-06 17:02:33 +00003671static int tg3_fw_data_len(struct tg3 *tp,
3672 const struct tg3_firmware_hdr *fw_hdr)
3673{
3674 int fw_len;
3675
3676 /* Non fragmented firmware have one firmware header followed by a
3677 * contiguous chunk of data to be written. The length field in that
3678 * header is not the length of data to be written but the complete
3679 * length of the bss. The data length is determined based on
3680 * tp->fw->size minus headers.
3681 *
3682 * Fragmented firmware have a main header followed by multiple
3683 * fragments. Each fragment is identical to non fragmented firmware
3684 * with a firmware header followed by a contiguous chunk of data. In
3685 * the main header, the length field is unused and set to 0xffffffff.
3686 * In each fragment header the length is the entire size of that
3687 * fragment i.e. fragment data + header length. Data length is
3688 * therefore length field in the header minus TG3_FW_HDR_LEN.
3689 */
3690 if (tp->fw_len == 0xffffffff)
3691 fw_len = be32_to_cpu(fw_hdr->len);
3692 else
3693 fw_len = tp->fw->size;
3694
3695 return (fw_len - TG3_FW_HDR_LEN) / sizeof(u32);
3696}
3697
Matt Carlson997b4f12011-08-31 11:44:53 +00003698/* tp->lock is held. */
3699static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3700 u32 cpu_scratch_base, int cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003701 const struct tg3_firmware_hdr *fw_hdr)
Matt Carlson997b4f12011-08-31 11:44:53 +00003702{
Nithin Sujirc4dab502013-03-06 17:02:34 +00003703 int err, i;
Matt Carlson997b4f12011-08-31 11:44:53 +00003704 void (*write_op)(struct tg3 *, u32, u32);
Nithin Sujir31f11a92013-03-06 17:02:33 +00003705 int total_len = tp->fw->size;
Matt Carlson997b4f12011-08-31 11:44:53 +00003706
3707 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3708 netdev_err(tp->dev,
3709 "%s: Trying to load TX cpu firmware which is 5705\n",
3710 __func__);
3711 return -EINVAL;
3712 }
3713
Nithin Sujirc4dab502013-03-06 17:02:34 +00003714 if (tg3_flag(tp, 5705_PLUS) && tg3_asic_rev(tp) != ASIC_REV_57766)
Matt Carlson997b4f12011-08-31 11:44:53 +00003715 write_op = tg3_write_mem;
3716 else
3717 write_op = tg3_write_indirect_reg32;
3718
Nithin Sujirc4dab502013-03-06 17:02:34 +00003719 if (tg3_asic_rev(tp) != ASIC_REV_57766) {
3720 /* It is possible that bootcode is still loading at this point.
3721 * Get the nvram lock first before halting the cpu.
3722 */
3723 int lock_err = tg3_nvram_lock(tp);
3724 err = tg3_halt_cpu(tp, cpu_base);
3725 if (!lock_err)
3726 tg3_nvram_unlock(tp);
3727 if (err)
3728 goto out;
Matt Carlson997b4f12011-08-31 11:44:53 +00003729
Nithin Sujirc4dab502013-03-06 17:02:34 +00003730 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3731 write_op(tp, cpu_scratch_base + i, 0);
3732 tw32(cpu_base + CPU_STATE, 0xffffffff);
3733 tw32(cpu_base + CPU_MODE,
3734 tr32(cpu_base + CPU_MODE) | CPU_MODE_HALT);
3735 } else {
3736 /* Subtract additional main header for fragmented firmware and
3737 * advance to the first fragment
3738 */
3739 total_len -= TG3_FW_HDR_LEN;
3740 fw_hdr++;
3741 }
Nithin Sujir77997ea2013-03-06 17:02:32 +00003742
Nithin Sujir31f11a92013-03-06 17:02:33 +00003743 do {
3744 u32 *fw_data = (u32 *)(fw_hdr + 1);
3745 for (i = 0; i < tg3_fw_data_len(tp, fw_hdr); i++)
3746 write_op(tp, cpu_scratch_base +
3747 (be32_to_cpu(fw_hdr->base_addr) & 0xffff) +
3748 (i * sizeof(u32)),
3749 be32_to_cpu(fw_data[i]));
3750
3751 total_len -= be32_to_cpu(fw_hdr->len);
3752
3753 /* Advance to next fragment */
3754 fw_hdr = (struct tg3_firmware_hdr *)
3755 ((void *)fw_hdr + be32_to_cpu(fw_hdr->len));
3756 } while (total_len > 0);
Matt Carlson997b4f12011-08-31 11:44:53 +00003757
3758 err = 0;
3759
3760out:
3761 return err;
3762}
3763
3764/* tp->lock is held. */
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003765static int tg3_pause_cpu_and_set_pc(struct tg3 *tp, u32 cpu_base, u32 pc)
3766{
3767 int i;
3768 const int iters = 5;
3769
3770 tw32(cpu_base + CPU_STATE, 0xffffffff);
3771 tw32_f(cpu_base + CPU_PC, pc);
3772
3773 for (i = 0; i < iters; i++) {
3774 if (tr32(cpu_base + CPU_PC) == pc)
3775 break;
3776 tw32(cpu_base + CPU_STATE, 0xffffffff);
3777 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3778 tw32_f(cpu_base + CPU_PC, pc);
3779 udelay(1000);
3780 }
3781
3782 return (i == iters) ? -EBUSY : 0;
3783}
3784
3785/* tp->lock is held. */
Matt Carlson997b4f12011-08-31 11:44:53 +00003786static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3787{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003788 const struct tg3_firmware_hdr *fw_hdr;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003789 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003790
Nithin Sujir77997ea2013-03-06 17:02:32 +00003791 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003792
3793 /* Firmware blob starts with version numbers, followed by
3794 start address and length. We are setting complete length.
3795 length = end_address_of_bss - start_address_of_text.
3796 Remainder is the blob to be loaded contiguously
3797 from start address. */
3798
Matt Carlson997b4f12011-08-31 11:44:53 +00003799 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3800 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003801 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003802 if (err)
3803 return err;
3804
3805 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3806 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003807 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003808 if (err)
3809 return err;
3810
3811 /* Now startup only the RX cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003812 err = tg3_pause_cpu_and_set_pc(tp, RX_CPU_BASE,
3813 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003814 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003815 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3816 "should be %08x\n", __func__,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003817 tr32(RX_CPU_BASE + CPU_PC),
3818 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003819 return -ENODEV;
3820 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003821
3822 tg3_rxcpu_resume(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003823
3824 return 0;
3825}
3826
Nithin Sujirc4dab502013-03-06 17:02:34 +00003827static int tg3_validate_rxcpu_state(struct tg3 *tp)
3828{
3829 const int iters = 1000;
3830 int i;
3831 u32 val;
3832
3833 /* Wait for boot code to complete initialization and enter service
3834 * loop. It is then safe to download service patches
3835 */
3836 for (i = 0; i < iters; i++) {
3837 if (tr32(RX_CPU_HWBKPT) == TG3_SBROM_IN_SERVICE_LOOP)
3838 break;
3839
3840 udelay(10);
3841 }
3842
3843 if (i == iters) {
3844 netdev_err(tp->dev, "Boot code not ready for service patches\n");
3845 return -EBUSY;
3846 }
3847
3848 val = tg3_read_indirect_reg32(tp, TG3_57766_FW_HANDSHAKE);
3849 if (val & 0xff) {
3850 netdev_warn(tp->dev,
3851 "Other patches exist. Not downloading EEE patch\n");
3852 return -EEXIST;
3853 }
3854
3855 return 0;
3856}
3857
3858/* tp->lock is held. */
3859static void tg3_load_57766_firmware(struct tg3 *tp)
3860{
3861 struct tg3_firmware_hdr *fw_hdr;
3862
3863 if (!tg3_flag(tp, NO_NVRAM))
3864 return;
3865
3866 if (tg3_validate_rxcpu_state(tp))
3867 return;
3868
3869 if (!tp->fw)
3870 return;
3871
3872 /* This firmware blob has a different format than older firmware
3873 * releases as given below. The main difference is we have fragmented
3874 * data to be written to non-contiguous locations.
3875 *
3876 * In the beginning we have a firmware header identical to other
3877 * firmware which consists of version, base addr and length. The length
3878 * here is unused and set to 0xffffffff.
3879 *
3880 * This is followed by a series of firmware fragments which are
3881 * individually identical to previous firmware. i.e. they have the
3882 * firmware header and followed by data for that fragment. The version
3883 * field of the individual fragment header is unused.
3884 */
3885
3886 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
3887 if (be32_to_cpu(fw_hdr->base_addr) != TG3_57766_FW_BASE_ADDR)
3888 return;
3889
3890 if (tg3_rxcpu_pause(tp))
3891 return;
3892
3893 /* tg3_load_firmware_cpu() will always succeed for the 57766 */
3894 tg3_load_firmware_cpu(tp, 0, TG3_57766_FW_BASE_ADDR, 0, fw_hdr);
3895
3896 tg3_rxcpu_resume(tp);
3897}
3898
Matt Carlson997b4f12011-08-31 11:44:53 +00003899/* tp->lock is held. */
3900static int tg3_load_tso_firmware(struct tg3 *tp)
3901{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003902 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson997b4f12011-08-31 11:44:53 +00003903 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003904 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003905
Matt Carlson1caf13e2013-03-06 17:02:29 +00003906 if (!tg3_flag(tp, FW_TSO))
Matt Carlson997b4f12011-08-31 11:44:53 +00003907 return 0;
3908
Nithin Sujir77997ea2013-03-06 17:02:32 +00003909 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003910
3911 /* Firmware blob starts with version numbers, followed by
3912 start address and length. We are setting complete length.
3913 length = end_address_of_bss - start_address_of_text.
3914 Remainder is the blob to be loaded contiguously
3915 from start address. */
3916
Matt Carlson997b4f12011-08-31 11:44:53 +00003917 cpu_scratch_size = tp->fw_len;
Matt Carlson997b4f12011-08-31 11:44:53 +00003918
Joe Perches41535772013-02-16 11:20:04 +00003919 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003920 cpu_base = RX_CPU_BASE;
3921 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3922 } else {
3923 cpu_base = TX_CPU_BASE;
3924 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3925 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3926 }
3927
3928 err = tg3_load_firmware_cpu(tp, cpu_base,
3929 cpu_scratch_base, cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003930 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003931 if (err)
3932 return err;
3933
3934 /* Now startup the cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003935 err = tg3_pause_cpu_and_set_pc(tp, cpu_base,
3936 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003937 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003938 netdev_err(tp->dev,
3939 "%s fails to set CPU PC, is %08x should be %08x\n",
Nithin Sujir77997ea2013-03-06 17:02:32 +00003940 __func__, tr32(cpu_base + CPU_PC),
3941 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003942 return -ENODEV;
3943 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003944
3945 tg3_resume_cpu(tp, cpu_base);
Matt Carlson997b4f12011-08-31 11:44:53 +00003946 return 0;
3947}
3948
Michael Chanf022ae62014-01-03 10:09:11 -08003949/* tp->lock is held. */
3950static void __tg3_set_one_mac_addr(struct tg3 *tp, u8 *mac_addr, int index)
3951{
3952 u32 addr_high, addr_low;
3953
3954 addr_high = ((mac_addr[0] << 8) | mac_addr[1]);
3955 addr_low = ((mac_addr[2] << 24) | (mac_addr[3] << 16) |
3956 (mac_addr[4] << 8) | mac_addr[5]);
3957
3958 if (index < 4) {
3959 tw32(MAC_ADDR_0_HIGH + (index * 8), addr_high);
3960 tw32(MAC_ADDR_0_LOW + (index * 8), addr_low);
3961 } else {
3962 index -= 4;
3963 tw32(MAC_EXTADDR_0_HIGH + (index * 8), addr_high);
3964 tw32(MAC_EXTADDR_0_LOW + (index * 8), addr_low);
3965 }
3966}
Matt Carlson997b4f12011-08-31 11:44:53 +00003967
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003968/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00003969static void __tg3_set_mac_addr(struct tg3 *tp, bool skip_mac_1)
Matt Carlson3f007892008-11-03 16:51:36 -08003970{
Michael Chanf022ae62014-01-03 10:09:11 -08003971 u32 addr_high;
Matt Carlson3f007892008-11-03 16:51:36 -08003972 int i;
3973
Matt Carlson3f007892008-11-03 16:51:36 -08003974 for (i = 0; i < 4; i++) {
3975 if (i == 1 && skip_mac_1)
3976 continue;
Michael Chanf022ae62014-01-03 10:09:11 -08003977 __tg3_set_one_mac_addr(tp, tp->dev->dev_addr, i);
Matt Carlson3f007892008-11-03 16:51:36 -08003978 }
3979
Joe Perches41535772013-02-16 11:20:04 +00003980 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
3981 tg3_asic_rev(tp) == ASIC_REV_5704) {
Michael Chanf022ae62014-01-03 10:09:11 -08003982 for (i = 4; i < 16; i++)
3983 __tg3_set_one_mac_addr(tp, tp->dev->dev_addr, i);
Matt Carlson3f007892008-11-03 16:51:36 -08003984 }
3985
3986 addr_high = (tp->dev->dev_addr[0] +
3987 tp->dev->dev_addr[1] +
3988 tp->dev->dev_addr[2] +
3989 tp->dev->dev_addr[3] +
3990 tp->dev->dev_addr[4] +
3991 tp->dev->dev_addr[5]) &
3992 TX_BACKOFF_SEED_MASK;
3993 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3994}
3995
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003996static void tg3_enable_register_access(struct tg3 *tp)
3997{
3998 /*
3999 * Make sure register accesses (indirect or otherwise) will function
4000 * correctly.
4001 */
4002 pci_write_config_dword(tp->pdev,
4003 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
4004}
4005
4006static int tg3_power_up(struct tg3 *tp)
4007{
Matt Carlsonbed98292011-07-13 09:27:29 +00004008 int err;
4009
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004010 tg3_enable_register_access(tp);
4011
Matt Carlsonbed98292011-07-13 09:27:29 +00004012 err = pci_set_power_state(tp->pdev, PCI_D0);
4013 if (!err) {
4014 /* Switch out of Vaux if it is a NIC */
4015 tg3_pwrsrc_switch_to_vmain(tp);
4016 } else {
4017 netdev_err(tp->dev, "Transition to D0 failed\n");
4018 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004019
Matt Carlsonbed98292011-07-13 09:27:29 +00004020 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004021}
4022
Joe Perches953c96e2013-04-09 10:18:14 +00004023static int tg3_setup_phy(struct tg3 *, bool);
Matt Carlson4b409522012-02-13 10:20:11 +00004024
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004025static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026{
4027 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08004028 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004030 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004031
4032 /* Restore the CLKREQ setting. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004033 if (tg3_flag(tp, CLKREQ_BUG))
4034 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
4035 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004036
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
4038 tw32(TG3PCI_MISC_HOST_CTRL,
4039 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
4040
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004041 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004042 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004043
Joe Perches63c3a662011-04-26 08:12:10 +00004044 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08004045 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004046 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00004047 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004048 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08004049 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004050
Hauke Mehrtensead24022013-09-28 23:15:26 +02004051 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004052
Matt Carlson80096062010-08-02 11:26:06 +00004053 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004054
Matt Carlsonc6700ce2012-02-13 15:20:15 +00004055 tp->link_config.speed = phydev->speed;
4056 tp->link_config.duplex = phydev->duplex;
4057 tp->link_config.autoneg = phydev->autoneg;
4058 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004059
4060 advertising = ADVERTISED_TP |
4061 ADVERTISED_Pause |
4062 ADVERTISED_Autoneg |
4063 ADVERTISED_10baseT_Half;
4064
Joe Perches63c3a662011-04-26 08:12:10 +00004065 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
4066 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004067 advertising |=
4068 ADVERTISED_100baseT_Half |
4069 ADVERTISED_100baseT_Full |
4070 ADVERTISED_10baseT_Full;
4071 else
4072 advertising |= ADVERTISED_10baseT_Full;
4073 }
4074
4075 phydev->advertising = advertising;
4076
4077 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08004078
4079 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00004080 if (phyid != PHY_ID_BCMAC131) {
4081 phyid &= PHY_BCM_OUI_MASK;
4082 if (phyid == PHY_BCM_OUI_1 ||
4083 phyid == PHY_BCM_OUI_2 ||
4084 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08004085 do_low_power = true;
4086 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004087 }
Matt Carlsondd477002008-05-25 23:45:58 -07004088 } else {
Matt Carlson20232762008-12-21 20:18:56 -08004089 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08004090
Matt Carlsonc6700ce2012-02-13 15:20:15 +00004091 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00004092 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
Matt Carlson2855b9f2012-02-13 15:20:14 +00004094 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Joe Perches953c96e2013-04-09 10:18:14 +00004095 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 }
4097
Joe Perches41535772013-02-16 11:20:04 +00004098 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07004099 u32 val;
4100
4101 val = tr32(GRC_VCPU_EXT_CTRL);
4102 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00004103 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08004104 int i;
4105 u32 val;
4106
4107 for (i = 0; i < 200; i++) {
4108 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
4109 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
4110 break;
4111 msleep(1);
4112 }
4113 }
Joe Perches63c3a662011-04-26 08:12:10 +00004114 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07004115 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
4116 WOL_DRV_STATE_SHUTDOWN |
4117 WOL_DRV_WOL |
4118 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08004119
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004120 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 u32 mac_mode;
4122
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004123 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004124 if (do_low_power &&
4125 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
4126 tg3_phy_auxctl_write(tp,
4127 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
4128 MII_TG3_AUXCTL_PCTL_WOL_EN |
4129 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
4130 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07004131 udelay(40);
4132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004134 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07004135 mac_mode = MAC_MODE_PORT_MODE_GMII;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004136 else if (tp->phy_flags &
4137 TG3_PHYFLG_KEEP_LINK_ON_PWRDN) {
4138 if (tp->link_config.active_speed == SPEED_1000)
4139 mac_mode = MAC_MODE_PORT_MODE_GMII;
4140 else
4141 mac_mode = MAC_MODE_PORT_MODE_MII;
4142 } else
Michael Chan3f7045c2006-09-27 16:02:29 -07004143 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004145 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
Joe Perches41535772013-02-16 11:20:04 +00004146 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00004147 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004148 SPEED_100 : SPEED_10;
4149 if (tg3_5700_link_polarity(tp, speed))
4150 mac_mode |= MAC_MODE_LINK_POLARITY;
4151 else
4152 mac_mode &= ~MAC_MODE_LINK_POLARITY;
4153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 } else {
4155 mac_mode = MAC_MODE_PORT_MODE_TBI;
4156 }
4157
Joe Perches63c3a662011-04-26 08:12:10 +00004158 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 tw32(MAC_LED_CTRL, tp->led_ctrl);
4160
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004161 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00004162 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
4163 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004164 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
Joe Perches63c3a662011-04-26 08:12:10 +00004166 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00004167 mac_mode |= MAC_MODE_APE_TX_EN |
4168 MAC_MODE_APE_RX_EN |
4169 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07004170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 tw32_f(MAC_MODE, mac_mode);
4172 udelay(100);
4173
4174 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
4175 udelay(10);
4176 }
4177
Joe Perches63c3a662011-04-26 08:12:10 +00004178 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Joe Perches41535772013-02-16 11:20:04 +00004179 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4180 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 u32 base_val;
4182
4183 base_val = tp->pci_clock_ctrl;
4184 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
4185 CLOCK_CTRL_TXCLK_DISABLE);
4186
Michael Chanb401e9e2005-12-19 16:27:04 -08004187 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
4188 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00004189 } else if (tg3_flag(tp, 5780_CLASS) ||
4190 tg3_flag(tp, CPMU_PRESENT) ||
Joe Perches41535772013-02-16 11:20:04 +00004191 tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07004192 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00004193 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 u32 newbits1, newbits2;
4195
Joe Perches41535772013-02-16 11:20:04 +00004196 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4197 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
4199 CLOCK_CTRL_TXCLK_DISABLE |
4200 CLOCK_CTRL_ALTCLK);
4201 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00004202 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 newbits1 = CLOCK_CTRL_625_CORE;
4204 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
4205 } else {
4206 newbits1 = CLOCK_CTRL_ALTCLK;
4207 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
4208 }
4209
Michael Chanb401e9e2005-12-19 16:27:04 -08004210 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
4211 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Michael Chanb401e9e2005-12-19 16:27:04 -08004213 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
4214 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
Joe Perches63c3a662011-04-26 08:12:10 +00004216 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 u32 newbits3;
4218
Joe Perches41535772013-02-16 11:20:04 +00004219 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4220 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
4222 CLOCK_CTRL_TXCLK_DISABLE |
4223 CLOCK_CTRL_44MHZ_CORE);
4224 } else {
4225 newbits3 = CLOCK_CTRL_44MHZ_CORE;
4226 }
4227
Michael Chanb401e9e2005-12-19 16:27:04 -08004228 tw32_wait_f(TG3PCI_CLOCK_CTRL,
4229 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 }
4231 }
4232
Joe Perches63c3a662011-04-26 08:12:10 +00004233 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08004234 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08004235
Matt Carlsoncd0d7222011-07-13 09:27:33 +00004236 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
4238 /* Workaround for unstable PLL clock */
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004239 if ((!tg3_flag(tp, IS_SSB_CORE)) &&
Joe Perches41535772013-02-16 11:20:04 +00004240 ((tg3_chip_rev(tp) == CHIPREV_5750_AX) ||
4241 (tg3_chip_rev(tp) == CHIPREV_5750_BX))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 u32 val = tr32(0x7d00);
4243
4244 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
4245 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00004246 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08004247 int err;
4248
4249 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08004251 if (!err)
4252 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08004253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 }
4255
Michael Chanbbadf502006-04-06 21:46:34 -07004256 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
4257
Nithin Sujir2e460fc2013-05-23 11:11:22 +00004258 tg3_ape_driver_state_change(tp, RESET_KIND_SHUTDOWN);
4259
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 return 0;
4261}
4262
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004263static void tg3_power_down(struct tg3 *tp)
4264{
Joe Perches63c3a662011-04-26 08:12:10 +00004265 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004266 pci_set_power_state(tp->pdev, PCI_D3hot);
4267}
4268
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
4270{
4271 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
4272 case MII_TG3_AUX_STAT_10HALF:
4273 *speed = SPEED_10;
4274 *duplex = DUPLEX_HALF;
4275 break;
4276
4277 case MII_TG3_AUX_STAT_10FULL:
4278 *speed = SPEED_10;
4279 *duplex = DUPLEX_FULL;
4280 break;
4281
4282 case MII_TG3_AUX_STAT_100HALF:
4283 *speed = SPEED_100;
4284 *duplex = DUPLEX_HALF;
4285 break;
4286
4287 case MII_TG3_AUX_STAT_100FULL:
4288 *speed = SPEED_100;
4289 *duplex = DUPLEX_FULL;
4290 break;
4291
4292 case MII_TG3_AUX_STAT_1000HALF:
4293 *speed = SPEED_1000;
4294 *duplex = DUPLEX_HALF;
4295 break;
4296
4297 case MII_TG3_AUX_STAT_1000FULL:
4298 *speed = SPEED_1000;
4299 *duplex = DUPLEX_FULL;
4300 break;
4301
4302 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004303 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07004304 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
4305 SPEED_10;
4306 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
4307 DUPLEX_HALF;
4308 break;
4309 }
Matt Carlsone7405222012-02-13 15:20:16 +00004310 *speed = SPEED_UNKNOWN;
4311 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314}
4315
Matt Carlson42b64a42011-05-19 12:12:49 +00004316static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317{
Matt Carlson42b64a42011-05-19 12:12:49 +00004318 int err = 0;
4319 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Matt Carlson42b64a42011-05-19 12:12:49 +00004321 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00004322 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00004323 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324
Matt Carlson42b64a42011-05-19 12:12:49 +00004325 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
4326 if (err)
4327 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Matt Carlson4f272092011-12-14 11:09:57 +00004329 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4330 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004331
Joe Perches41535772013-02-16 11:20:04 +00004332 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4333 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)
Matt Carlson4f272092011-12-14 11:09:57 +00004334 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004335
Matt Carlson4f272092011-12-14 11:09:57 +00004336 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
4337 if (err)
4338 goto done;
4339 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004340
Matt Carlson42b64a42011-05-19 12:12:49 +00004341 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4342 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
Matt Carlson42b64a42011-05-19 12:12:49 +00004344 tw32(TG3_CPMU_EEE_MODE,
4345 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004346
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004347 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson42b64a42011-05-19 12:12:49 +00004348 if (!err) {
4349 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00004350
Matt Carlsona6b68da2010-12-06 08:28:52 +00004351 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00004352 /* Advertise 100-BaseTX EEE ability */
4353 if (advertise & ADVERTISED_100baseT_Full)
4354 val |= MDIO_AN_EEE_ADV_100TX;
4355 /* Advertise 1000-BaseT EEE ability */
4356 if (advertise & ADVERTISED_1000baseT_Full)
4357 val |= MDIO_AN_EEE_ADV_1000T;
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +00004358
4359 if (!tp->eee.eee_enabled) {
4360 val = 0;
4361 tp->eee.advertised = 0;
4362 } else {
4363 tp->eee.advertised = advertise &
4364 (ADVERTISED_100baseT_Full |
4365 ADVERTISED_1000baseT_Full);
4366 }
4367
Matt Carlson42b64a42011-05-19 12:12:49 +00004368 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00004369 if (err)
4370 val = 0;
4371
Joe Perches41535772013-02-16 11:20:04 +00004372 switch (tg3_asic_rev(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00004373 case ASIC_REV_5717:
4374 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00004375 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004376 case ASIC_REV_5719:
4377 /* If we advertised any eee advertisements above... */
4378 if (val)
4379 val = MII_TG3_DSP_TAP26_ALNOKO |
4380 MII_TG3_DSP_TAP26_RMRXSTO |
4381 MII_TG3_DSP_TAP26_OPCSINPT;
4382 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
4383 /* Fall through */
4384 case ASIC_REV_5720:
Michael Chanc65a17f2013-01-06 12:51:07 +00004385 case ASIC_REV_5762:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004386 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
4387 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
4388 MII_TG3_DSP_CH34TP2_HIBW01);
4389 }
Matt Carlson52b02d02010-10-14 10:37:41 +00004390
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004391 err2 = tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson42b64a42011-05-19 12:12:49 +00004392 if (!err)
4393 err = err2;
4394 }
4395
4396done:
4397 return err;
4398}
4399
4400static void tg3_phy_copper_begin(struct tg3 *tp)
4401{
Matt Carlsond13ba512012-02-22 12:35:19 +00004402 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4403 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4404 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004405
Nithin Sujir942d1af2013-04-09 08:48:07 +00004406 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4407 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
Matt Carlsond13ba512012-02-22 12:35:19 +00004408 adv = ADVERTISED_10baseT_Half |
4409 ADVERTISED_10baseT_Full;
4410 if (tg3_flag(tp, WOL_SPEED_100MB))
4411 adv |= ADVERTISED_100baseT_Half |
4412 ADVERTISED_100baseT_Full;
Nithin Sujir7c786062013-12-06 09:53:17 -08004413 if (tp->phy_flags & TG3_PHYFLG_1G_ON_VAUX_OK) {
4414 if (!(tp->phy_flags &
4415 TG3_PHYFLG_DISABLE_1G_HD_ADV))
4416 adv |= ADVERTISED_1000baseT_Half;
4417 adv |= ADVERTISED_1000baseT_Full;
4418 }
Matt Carlson42b64a42011-05-19 12:12:49 +00004419
Matt Carlsond13ba512012-02-22 12:35:19 +00004420 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004421 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004422 adv = tp->link_config.advertising;
4423 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4424 adv &= ~(ADVERTISED_1000baseT_Half |
4425 ADVERTISED_1000baseT_Full);
4426
4427 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004428 }
4429
Matt Carlsond13ba512012-02-22 12:35:19 +00004430 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004431
Nithin Sujir942d1af2013-04-09 08:48:07 +00004432 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4433 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
4434 /* Normally during power down we want to autonegotiate
4435 * the lowest possible speed for WOL. However, to avoid
4436 * link flap, we leave it untouched.
4437 */
4438 return;
4439 }
4440
Matt Carlsond13ba512012-02-22 12:35:19 +00004441 tg3_writephy(tp, MII_BMCR,
4442 BMCR_ANENABLE | BMCR_ANRESTART);
4443 } else {
4444 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 u32 bmcr, orig_bmcr;
4446
4447 tp->link_config.active_speed = tp->link_config.speed;
4448 tp->link_config.active_duplex = tp->link_config.duplex;
4449
Nithin Sujir7c6cdea2013-03-12 15:32:48 +00004450 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
4451 /* With autoneg disabled, 5715 only links up when the
4452 * advertisement register has the configured speed
4453 * enabled.
4454 */
4455 tg3_writephy(tp, MII_ADVERTISE, ADVERTISE_ALL);
4456 }
4457
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 bmcr = 0;
4459 switch (tp->link_config.speed) {
4460 default:
4461 case SPEED_10:
4462 break;
4463
4464 case SPEED_100:
4465 bmcr |= BMCR_SPEED100;
4466 break;
4467
4468 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004469 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
4473 if (tp->link_config.duplex == DUPLEX_FULL)
4474 bmcr |= BMCR_FULLDPLX;
4475
4476 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4477 (bmcr != orig_bmcr)) {
4478 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4479 for (i = 0; i < 1500; i++) {
4480 u32 tmp;
4481
4482 udelay(10);
4483 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4484 tg3_readphy(tp, MII_BMSR, &tmp))
4485 continue;
4486 if (!(tmp & BMSR_LSTATUS)) {
4487 udelay(40);
4488 break;
4489 }
4490 }
4491 tg3_writephy(tp, MII_BMCR, bmcr);
4492 udelay(40);
4493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 }
4495}
4496
Nithin Sujirfdad8de2013-04-09 08:48:08 +00004497static int tg3_phy_pull_config(struct tg3 *tp)
4498{
4499 int err;
4500 u32 val;
4501
4502 err = tg3_readphy(tp, MII_BMCR, &val);
4503 if (err)
4504 goto done;
4505
4506 if (!(val & BMCR_ANENABLE)) {
4507 tp->link_config.autoneg = AUTONEG_DISABLE;
4508 tp->link_config.advertising = 0;
4509 tg3_flag_clear(tp, PAUSE_AUTONEG);
4510
4511 err = -EIO;
4512
4513 switch (val & (BMCR_SPEED1000 | BMCR_SPEED100)) {
4514 case 0:
4515 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4516 goto done;
4517
4518 tp->link_config.speed = SPEED_10;
4519 break;
4520 case BMCR_SPEED100:
4521 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4522 goto done;
4523
4524 tp->link_config.speed = SPEED_100;
4525 break;
4526 case BMCR_SPEED1000:
4527 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4528 tp->link_config.speed = SPEED_1000;
4529 break;
4530 }
4531 /* Fall through */
4532 default:
4533 goto done;
4534 }
4535
4536 if (val & BMCR_FULLDPLX)
4537 tp->link_config.duplex = DUPLEX_FULL;
4538 else
4539 tp->link_config.duplex = DUPLEX_HALF;
4540
4541 tp->link_config.flowctrl = FLOW_CTRL_RX | FLOW_CTRL_TX;
4542
4543 err = 0;
4544 goto done;
4545 }
4546
4547 tp->link_config.autoneg = AUTONEG_ENABLE;
4548 tp->link_config.advertising = ADVERTISED_Autoneg;
4549 tg3_flag_set(tp, PAUSE_AUTONEG);
4550
4551 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4552 u32 adv;
4553
4554 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4555 if (err)
4556 goto done;
4557
4558 adv = mii_adv_to_ethtool_adv_t(val & ADVERTISE_ALL);
4559 tp->link_config.advertising |= adv | ADVERTISED_TP;
4560
4561 tp->link_config.flowctrl = tg3_decode_flowctrl_1000T(val);
4562 } else {
4563 tp->link_config.advertising |= ADVERTISED_FIBRE;
4564 }
4565
4566 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4567 u32 adv;
4568
4569 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4570 err = tg3_readphy(tp, MII_CTRL1000, &val);
4571 if (err)
4572 goto done;
4573
4574 adv = mii_ctrl1000_to_ethtool_adv_t(val);
4575 } else {
4576 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4577 if (err)
4578 goto done;
4579
4580 adv = tg3_decode_flowctrl_1000X(val);
4581 tp->link_config.flowctrl = adv;
4582
4583 val &= (ADVERTISE_1000XHALF | ADVERTISE_1000XFULL);
4584 adv = mii_adv_to_ethtool_adv_x(val);
4585 }
4586
4587 tp->link_config.advertising |= adv;
4588 }
4589
4590done:
4591 return err;
4592}
4593
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594static int tg3_init_5401phy_dsp(struct tg3 *tp)
4595{
4596 int err;
4597
4598 /* Turn off tap power management. */
4599 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004600 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004602 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4603 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4604 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4605 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4606 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
4608 udelay(40);
4609
4610 return err;
4611}
4612
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004613static bool tg3_phy_eee_config_ok(struct tg3 *tp)
4614{
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004615 struct ethtool_eee eee;
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004616
4617 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4618 return true;
4619
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004620 tg3_eee_pull_config(tp, &eee);
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004621
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004622 if (tp->eee.eee_enabled) {
4623 if (tp->eee.advertised != eee.advertised ||
4624 tp->eee.tx_lpi_timer != eee.tx_lpi_timer ||
4625 tp->eee.tx_lpi_enabled != eee.tx_lpi_enabled)
4626 return false;
4627 } else {
4628 /* EEE is disabled but we're advertising */
4629 if (eee.advertised)
4630 return false;
4631 }
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004632
4633 return true;
4634}
4635
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004636static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004638 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004639
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004640 advertising = tp->link_config.advertising;
4641 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004643 advmsk = ADVERTISE_ALL;
4644 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004645 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004646 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004649 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4650 return false;
4651
4652 if ((*lcladv & advmsk) != tgtadv)
4653 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004654
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004655 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 u32 tg3_ctrl;
4657
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004658 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004659
Matt Carlson221c5632011-06-13 13:39:01 +00004660 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004661 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Matt Carlson3198e072012-02-13 15:20:10 +00004663 if (tgtadv &&
Joe Perches41535772013-02-16 11:20:04 +00004664 (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4665 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)) {
Matt Carlson3198e072012-02-13 15:20:10 +00004666 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4667 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4668 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4669 } else {
4670 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4671 }
4672
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004673 if (tg3_ctrl != tgtadv)
4674 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004676
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004677 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004678}
4679
Matt Carlson859edb22011-12-08 14:40:16 +00004680static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4681{
4682 u32 lpeth = 0;
4683
4684 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4685 u32 val;
4686
4687 if (tg3_readphy(tp, MII_STAT1000, &val))
4688 return false;
4689
4690 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4691 }
4692
4693 if (tg3_readphy(tp, MII_LPA, rmtadv))
4694 return false;
4695
4696 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4697 tp->link_config.rmt_adv = lpeth;
4698
4699 return true;
4700}
4701
Joe Perches953c96e2013-04-09 10:18:14 +00004702static bool tg3_test_and_report_link_chg(struct tg3 *tp, bool curr_link_up)
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004703{
4704 if (curr_link_up != tp->link_up) {
4705 if (curr_link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00004706 netif_carrier_on(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004707 } else {
Nithin Sujir84421b92013-03-08 08:01:24 +00004708 netif_carrier_off(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004709 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
4710 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
4711 }
4712
4713 tg3_link_report(tp);
4714 return true;
4715 }
4716
4717 return false;
4718}
4719
Michael Chan3310e242013-04-09 08:48:05 +00004720static void tg3_clear_mac_status(struct tg3 *tp)
4721{
4722 tw32(MAC_EVENT, 0);
4723
4724 tw32_f(MAC_STATUS,
4725 MAC_STATUS_SYNC_CHANGED |
4726 MAC_STATUS_CFG_CHANGED |
4727 MAC_STATUS_MI_COMPLETION |
4728 MAC_STATUS_LNKSTATE_CHANGED);
4729 udelay(40);
4730}
4731
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +00004732static void tg3_setup_eee(struct tg3 *tp)
4733{
4734 u32 val;
4735
4736 val = TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
4737 TG3_CPMU_EEE_LNKIDL_UART_IDL;
4738 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
4739 val |= TG3_CPMU_EEE_LNKIDL_APE_TX_MT;
4740
4741 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL, val);
4742
4743 tw32_f(TG3_CPMU_EEE_CTRL,
4744 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
4745
4746 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
4747 (tp->eee.tx_lpi_enabled ? TG3_CPMU_EEEMD_LPI_IN_TX : 0) |
4748 TG3_CPMU_EEEMD_LPI_IN_RX |
4749 TG3_CPMU_EEEMD_EEE_ENABLE;
4750
4751 if (tg3_asic_rev(tp) != ASIC_REV_5717)
4752 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
4753
4754 if (tg3_flag(tp, ENABLE_APE))
4755 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
4756
4757 tw32_f(TG3_CPMU_EEE_MODE, tp->eee.eee_enabled ? val : 0);
4758
4759 tw32_f(TG3_CPMU_EEE_DBTMR1,
4760 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
4761 (tp->eee.tx_lpi_timer & 0xffff));
4762
4763 tw32_f(TG3_CPMU_EEE_DBTMR2,
4764 TG3_CPMU_DBTMR2_APE_TX_2047US |
4765 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
4766}
4767
Joe Perches953c96e2013-04-09 10:18:14 +00004768static int tg3_setup_copper_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769{
Joe Perches953c96e2013-04-09 10:18:14 +00004770 bool current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004771 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004772 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 u16 current_speed;
4774 u8 current_duplex;
4775 int i, err;
4776
Michael Chan3310e242013-04-09 08:48:05 +00004777 tg3_clear_mac_status(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
Matt Carlson8ef21422008-05-02 16:47:53 -07004779 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4780 tw32_f(MAC_MI_MODE,
4781 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4782 udelay(80);
4783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004785 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
4787 /* Some third-party PHYs need to be reset on link going
4788 * down.
4789 */
Joe Perches41535772013-02-16 11:20:04 +00004790 if ((tg3_asic_rev(tp) == ASIC_REV_5703 ||
4791 tg3_asic_rev(tp) == ASIC_REV_5704 ||
4792 tg3_asic_rev(tp) == ASIC_REV_5705) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004793 tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 tg3_readphy(tp, MII_BMSR, &bmsr);
4795 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4796 !(bmsr & BMSR_LSTATUS))
Joe Perches953c96e2013-04-09 10:18:14 +00004797 force_reset = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 }
4799 if (force_reset)
4800 tg3_phy_reset(tp);
4801
Matt Carlson79eb6902010-02-17 15:17:03 +00004802 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 tg3_readphy(tp, MII_BMSR, &bmsr);
4804 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004805 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 bmsr = 0;
4807
4808 if (!(bmsr & BMSR_LSTATUS)) {
4809 err = tg3_init_5401phy_dsp(tp);
4810 if (err)
4811 return err;
4812
4813 tg3_readphy(tp, MII_BMSR, &bmsr);
4814 for (i = 0; i < 1000; i++) {
4815 udelay(10);
4816 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4817 (bmsr & BMSR_LSTATUS)) {
4818 udelay(40);
4819 break;
4820 }
4821 }
4822
Matt Carlson79eb6902010-02-17 15:17:03 +00004823 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4824 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 !(bmsr & BMSR_LSTATUS) &&
4826 tp->link_config.active_speed == SPEED_1000) {
4827 err = tg3_phy_reset(tp);
4828 if (!err)
4829 err = tg3_init_5401phy_dsp(tp);
4830 if (err)
4831 return err;
4832 }
4833 }
Joe Perches41535772013-02-16 11:20:04 +00004834 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4835 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 /* 5701 {A0,B0} CRC bug workaround */
4837 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004838 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4839 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4840 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 }
4842
4843 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004844 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4845 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004847 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004849 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4851
Joe Perches41535772013-02-16 11:20:04 +00004852 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4853 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4855 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4856 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4857 else
4858 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4859 }
4860
Joe Perches953c96e2013-04-09 10:18:14 +00004861 current_link_up = false;
Matt Carlsone7405222012-02-13 15:20:16 +00004862 current_speed = SPEED_UNKNOWN;
4863 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004864 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004865 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004867 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004868 err = tg3_phy_auxctl_read(tp,
4869 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4870 &val);
4871 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004872 tg3_phy_auxctl_write(tp,
4873 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4874 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 goto relink;
4876 }
4877 }
4878
4879 bmsr = 0;
4880 for (i = 0; i < 100; i++) {
4881 tg3_readphy(tp, MII_BMSR, &bmsr);
4882 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4883 (bmsr & BMSR_LSTATUS))
4884 break;
4885 udelay(40);
4886 }
4887
4888 if (bmsr & BMSR_LSTATUS) {
4889 u32 aux_stat, bmcr;
4890
4891 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4892 for (i = 0; i < 2000; i++) {
4893 udelay(10);
4894 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4895 aux_stat)
4896 break;
4897 }
4898
4899 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4900 &current_speed,
4901 &current_duplex);
4902
4903 bmcr = 0;
4904 for (i = 0; i < 200; i++) {
4905 tg3_readphy(tp, MII_BMCR, &bmcr);
4906 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4907 continue;
4908 if (bmcr && bmcr != 0x7fff)
4909 break;
4910 udelay(10);
4911 }
4912
Matt Carlsonef167e22007-12-20 20:10:01 -08004913 lcl_adv = 0;
4914 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Matt Carlsonef167e22007-12-20 20:10:01 -08004916 tp->link_config.active_speed = current_speed;
4917 tp->link_config.active_duplex = current_duplex;
4918
4919 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004920 bool eee_config_ok = tg3_phy_eee_config_ok(tp);
4921
Matt Carlsonef167e22007-12-20 20:10:01 -08004922 if ((bmcr & BMCR_ANENABLE) &&
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004923 eee_config_ok &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004924 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004925 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Joe Perches953c96e2013-04-09 10:18:14 +00004926 current_link_up = true;
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004927
4928 /* EEE settings changes take effect only after a phy
4929 * reset. If we have skipped a reset due to Link Flap
4930 * Avoidance being enabled, do it now.
4931 */
4932 if (!eee_config_ok &&
4933 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004934 !force_reset) {
4935 tg3_setup_eee(tp);
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004936 tg3_phy_reset(tp);
Nithin Sujir5b6c2732013-05-18 06:26:54 +00004937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938 } else {
4939 if (!(bmcr & BMCR_ANENABLE) &&
4940 tp->link_config.speed == current_speed &&
Nithin Sujirf0fcd7a2013-04-09 08:48:01 +00004941 tp->link_config.duplex == current_duplex) {
Joe Perches953c96e2013-04-09 10:18:14 +00004942 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 }
4944 }
4945
Joe Perches953c96e2013-04-09 10:18:14 +00004946 if (current_link_up &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004947 tp->link_config.active_duplex == DUPLEX_FULL) {
4948 u32 reg, bit;
4949
4950 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4951 reg = MII_TG3_FET_GEN_STAT;
4952 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4953 } else {
4954 reg = MII_TG3_EXT_STAT;
4955 bit = MII_TG3_EXT_STAT_MDIX;
4956 }
4957
4958 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4959 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4960
Matt Carlsonef167e22007-12-20 20:10:01 -08004961 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 }
4964
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965relink:
Joe Perches953c96e2013-04-09 10:18:14 +00004966 if (!current_link_up || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 tg3_phy_copper_begin(tp);
4968
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004969 if (tg3_flag(tp, ROBOSWITCH)) {
Joe Perches953c96e2013-04-09 10:18:14 +00004970 current_link_up = true;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004971 /* FIXME: when BCM5325 switch is used use 100 MBit/s */
4972 current_speed = SPEED_1000;
4973 current_duplex = DUPLEX_FULL;
4974 tp->link_config.active_speed = current_speed;
4975 tp->link_config.active_duplex = current_duplex;
4976 }
4977
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004978 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004979 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4980 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Joe Perches953c96e2013-04-09 10:18:14 +00004981 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 }
4983
4984 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
Joe Perches953c96e2013-04-09 10:18:14 +00004985 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 if (tp->link_config.active_speed == SPEED_100 ||
4987 tp->link_config.active_speed == SPEED_10)
4988 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4989 else
4990 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004991 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004992 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4993 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4995
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004996 /* In order for the 5750 core in BCM4785 chip to work properly
4997 * in RGMII mode, the Led Control Register must be set up.
4998 */
4999 if (tg3_flag(tp, RGMII_MODE)) {
5000 u32 led_ctrl = tr32(MAC_LED_CTRL);
5001 led_ctrl &= ~(LED_CTRL_1000MBPS_ON | LED_CTRL_100MBPS_ON);
5002
5003 if (tp->link_config.active_speed == SPEED_10)
5004 led_ctrl |= LED_CTRL_LNKLED_OVERRIDE;
5005 else if (tp->link_config.active_speed == SPEED_100)
5006 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
5007 LED_CTRL_100MBPS_ON);
5008 else if (tp->link_config.active_speed == SPEED_1000)
5009 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
5010 LED_CTRL_1000MBPS_ON);
5011
5012 tw32(MAC_LED_CTRL, led_ctrl);
5013 udelay(40);
5014 }
5015
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5017 if (tp->link_config.active_duplex == DUPLEX_HALF)
5018 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5019
Joe Perches41535772013-02-16 11:20:04 +00005020 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches953c96e2013-04-09 10:18:14 +00005021 if (current_link_up &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005022 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005024 else
5025 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026 }
5027
5028 /* ??? Without this setting Netgear GA302T PHY does not
5029 * ??? send/receive packets...
5030 */
Matt Carlson79eb6902010-02-17 15:17:03 +00005031 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Joe Perches41535772013-02-16 11:20:04 +00005032 tg3_chip_rev_id(tp) == CHIPREV_ID_5700_ALTIMA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
5034 tw32_f(MAC_MI_MODE, tp->mi_mode);
5035 udelay(80);
5036 }
5037
5038 tw32_f(MAC_MODE, tp->mac_mode);
5039 udelay(40);
5040
Matt Carlson52b02d02010-10-14 10:37:41 +00005041 tg3_phy_eee_adjust(tp, current_link_up);
5042
Joe Perches63c3a662011-04-26 08:12:10 +00005043 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 /* Polled via timer. */
5045 tw32_f(MAC_EVENT, 0);
5046 } else {
5047 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5048 }
5049 udelay(40);
5050
Joe Perches41535772013-02-16 11:20:04 +00005051 if (tg3_asic_rev(tp) == ASIC_REV_5700 &&
Joe Perches953c96e2013-04-09 10:18:14 +00005052 current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00005054 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 udelay(120);
5056 tw32_f(MAC_STATUS,
5057 (MAC_STATUS_SYNC_CHANGED |
5058 MAC_STATUS_CFG_CHANGED));
5059 udelay(40);
5060 tg3_write_mem(tp,
5061 NIC_SRAM_FIRMWARE_MBOX,
5062 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
5063 }
5064
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005065 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00005066 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005067 if (tp->link_config.active_speed == SPEED_100 ||
5068 tp->link_config.active_speed == SPEED_10)
Jiang Liu0f49bfb2012-08-20 13:28:20 -06005069 pcie_capability_clear_word(tp->pdev, PCI_EXP_LNKCTL,
5070 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005071 else
Jiang Liu0f49bfb2012-08-20 13:28:20 -06005072 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
5073 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08005074 }
5075
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005076 tg3_test_and_report_link_chg(tp, current_link_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
5078 return 0;
5079}
5080
5081struct tg3_fiber_aneginfo {
5082 int state;
5083#define ANEG_STATE_UNKNOWN 0
5084#define ANEG_STATE_AN_ENABLE 1
5085#define ANEG_STATE_RESTART_INIT 2
5086#define ANEG_STATE_RESTART 3
5087#define ANEG_STATE_DISABLE_LINK_OK 4
5088#define ANEG_STATE_ABILITY_DETECT_INIT 5
5089#define ANEG_STATE_ABILITY_DETECT 6
5090#define ANEG_STATE_ACK_DETECT_INIT 7
5091#define ANEG_STATE_ACK_DETECT 8
5092#define ANEG_STATE_COMPLETE_ACK_INIT 9
5093#define ANEG_STATE_COMPLETE_ACK 10
5094#define ANEG_STATE_IDLE_DETECT_INIT 11
5095#define ANEG_STATE_IDLE_DETECT 12
5096#define ANEG_STATE_LINK_OK 13
5097#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
5098#define ANEG_STATE_NEXT_PAGE_WAIT 15
5099
5100 u32 flags;
5101#define MR_AN_ENABLE 0x00000001
5102#define MR_RESTART_AN 0x00000002
5103#define MR_AN_COMPLETE 0x00000004
5104#define MR_PAGE_RX 0x00000008
5105#define MR_NP_LOADED 0x00000010
5106#define MR_TOGGLE_TX 0x00000020
5107#define MR_LP_ADV_FULL_DUPLEX 0x00000040
5108#define MR_LP_ADV_HALF_DUPLEX 0x00000080
5109#define MR_LP_ADV_SYM_PAUSE 0x00000100
5110#define MR_LP_ADV_ASYM_PAUSE 0x00000200
5111#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
5112#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
5113#define MR_LP_ADV_NEXT_PAGE 0x00001000
5114#define MR_TOGGLE_RX 0x00002000
5115#define MR_NP_RX 0x00004000
5116
5117#define MR_LINK_OK 0x80000000
5118
5119 unsigned long link_time, cur_time;
5120
5121 u32 ability_match_cfg;
5122 int ability_match_count;
5123
5124 char ability_match, idle_match, ack_match;
5125
5126 u32 txconfig, rxconfig;
5127#define ANEG_CFG_NP 0x00000080
5128#define ANEG_CFG_ACK 0x00000040
5129#define ANEG_CFG_RF2 0x00000020
5130#define ANEG_CFG_RF1 0x00000010
5131#define ANEG_CFG_PS2 0x00000001
5132#define ANEG_CFG_PS1 0x00008000
5133#define ANEG_CFG_HD 0x00004000
5134#define ANEG_CFG_FD 0x00002000
5135#define ANEG_CFG_INVAL 0x00001f06
5136
5137};
5138#define ANEG_OK 0
5139#define ANEG_DONE 1
5140#define ANEG_TIMER_ENAB 2
5141#define ANEG_FAILED -1
5142
5143#define ANEG_STATE_SETTLE_TIME 10000
5144
5145static int tg3_fiber_aneg_smachine(struct tg3 *tp,
5146 struct tg3_fiber_aneginfo *ap)
5147{
Matt Carlson5be73b42007-12-20 20:09:29 -08005148 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 unsigned long delta;
5150 u32 rx_cfg_reg;
5151 int ret;
5152
5153 if (ap->state == ANEG_STATE_UNKNOWN) {
5154 ap->rxconfig = 0;
5155 ap->link_time = 0;
5156 ap->cur_time = 0;
5157 ap->ability_match_cfg = 0;
5158 ap->ability_match_count = 0;
5159 ap->ability_match = 0;
5160 ap->idle_match = 0;
5161 ap->ack_match = 0;
5162 }
5163 ap->cur_time++;
5164
5165 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
5166 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
5167
5168 if (rx_cfg_reg != ap->ability_match_cfg) {
5169 ap->ability_match_cfg = rx_cfg_reg;
5170 ap->ability_match = 0;
5171 ap->ability_match_count = 0;
5172 } else {
5173 if (++ap->ability_match_count > 1) {
5174 ap->ability_match = 1;
5175 ap->ability_match_cfg = rx_cfg_reg;
5176 }
5177 }
5178 if (rx_cfg_reg & ANEG_CFG_ACK)
5179 ap->ack_match = 1;
5180 else
5181 ap->ack_match = 0;
5182
5183 ap->idle_match = 0;
5184 } else {
5185 ap->idle_match = 1;
5186 ap->ability_match_cfg = 0;
5187 ap->ability_match_count = 0;
5188 ap->ability_match = 0;
5189 ap->ack_match = 0;
5190
5191 rx_cfg_reg = 0;
5192 }
5193
5194 ap->rxconfig = rx_cfg_reg;
5195 ret = ANEG_OK;
5196
Matt Carlson33f401a2010-04-05 10:19:27 +00005197 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 case ANEG_STATE_UNKNOWN:
5199 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
5200 ap->state = ANEG_STATE_AN_ENABLE;
5201
5202 /* fallthru */
5203 case ANEG_STATE_AN_ENABLE:
5204 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
5205 if (ap->flags & MR_AN_ENABLE) {
5206 ap->link_time = 0;
5207 ap->cur_time = 0;
5208 ap->ability_match_cfg = 0;
5209 ap->ability_match_count = 0;
5210 ap->ability_match = 0;
5211 ap->idle_match = 0;
5212 ap->ack_match = 0;
5213
5214 ap->state = ANEG_STATE_RESTART_INIT;
5215 } else {
5216 ap->state = ANEG_STATE_DISABLE_LINK_OK;
5217 }
5218 break;
5219
5220 case ANEG_STATE_RESTART_INIT:
5221 ap->link_time = ap->cur_time;
5222 ap->flags &= ~(MR_NP_LOADED);
5223 ap->txconfig = 0;
5224 tw32(MAC_TX_AUTO_NEG, 0);
5225 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5226 tw32_f(MAC_MODE, tp->mac_mode);
5227 udelay(40);
5228
5229 ret = ANEG_TIMER_ENAB;
5230 ap->state = ANEG_STATE_RESTART;
5231
5232 /* fallthru */
5233 case ANEG_STATE_RESTART:
5234 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00005235 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00005237 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 break;
5240
5241 case ANEG_STATE_DISABLE_LINK_OK:
5242 ret = ANEG_DONE;
5243 break;
5244
5245 case ANEG_STATE_ABILITY_DETECT_INIT:
5246 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08005247 ap->txconfig = ANEG_CFG_FD;
5248 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5249 if (flowctrl & ADVERTISE_1000XPAUSE)
5250 ap->txconfig |= ANEG_CFG_PS1;
5251 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5252 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5254 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5255 tw32_f(MAC_MODE, tp->mac_mode);
5256 udelay(40);
5257
5258 ap->state = ANEG_STATE_ABILITY_DETECT;
5259 break;
5260
5261 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00005262 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 break;
5265
5266 case ANEG_STATE_ACK_DETECT_INIT:
5267 ap->txconfig |= ANEG_CFG_ACK;
5268 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5269 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5270 tw32_f(MAC_MODE, tp->mac_mode);
5271 udelay(40);
5272
5273 ap->state = ANEG_STATE_ACK_DETECT;
5274
5275 /* fallthru */
5276 case ANEG_STATE_ACK_DETECT:
5277 if (ap->ack_match != 0) {
5278 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
5279 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
5280 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
5281 } else {
5282 ap->state = ANEG_STATE_AN_ENABLE;
5283 }
5284 } else if (ap->ability_match != 0 &&
5285 ap->rxconfig == 0) {
5286 ap->state = ANEG_STATE_AN_ENABLE;
5287 }
5288 break;
5289
5290 case ANEG_STATE_COMPLETE_ACK_INIT:
5291 if (ap->rxconfig & ANEG_CFG_INVAL) {
5292 ret = ANEG_FAILED;
5293 break;
5294 }
5295 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
5296 MR_LP_ADV_HALF_DUPLEX |
5297 MR_LP_ADV_SYM_PAUSE |
5298 MR_LP_ADV_ASYM_PAUSE |
5299 MR_LP_ADV_REMOTE_FAULT1 |
5300 MR_LP_ADV_REMOTE_FAULT2 |
5301 MR_LP_ADV_NEXT_PAGE |
5302 MR_TOGGLE_RX |
5303 MR_NP_RX);
5304 if (ap->rxconfig & ANEG_CFG_FD)
5305 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
5306 if (ap->rxconfig & ANEG_CFG_HD)
5307 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
5308 if (ap->rxconfig & ANEG_CFG_PS1)
5309 ap->flags |= MR_LP_ADV_SYM_PAUSE;
5310 if (ap->rxconfig & ANEG_CFG_PS2)
5311 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
5312 if (ap->rxconfig & ANEG_CFG_RF1)
5313 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
5314 if (ap->rxconfig & ANEG_CFG_RF2)
5315 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
5316 if (ap->rxconfig & ANEG_CFG_NP)
5317 ap->flags |= MR_LP_ADV_NEXT_PAGE;
5318
5319 ap->link_time = ap->cur_time;
5320
5321 ap->flags ^= (MR_TOGGLE_TX);
5322 if (ap->rxconfig & 0x0008)
5323 ap->flags |= MR_TOGGLE_RX;
5324 if (ap->rxconfig & ANEG_CFG_NP)
5325 ap->flags |= MR_NP_RX;
5326 ap->flags |= MR_PAGE_RX;
5327
5328 ap->state = ANEG_STATE_COMPLETE_ACK;
5329 ret = ANEG_TIMER_ENAB;
5330 break;
5331
5332 case ANEG_STATE_COMPLETE_ACK:
5333 if (ap->ability_match != 0 &&
5334 ap->rxconfig == 0) {
5335 ap->state = ANEG_STATE_AN_ENABLE;
5336 break;
5337 }
5338 delta = ap->cur_time - ap->link_time;
5339 if (delta > ANEG_STATE_SETTLE_TIME) {
5340 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
5341 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5342 } else {
5343 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
5344 !(ap->flags & MR_NP_RX)) {
5345 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5346 } else {
5347 ret = ANEG_FAILED;
5348 }
5349 }
5350 }
5351 break;
5352
5353 case ANEG_STATE_IDLE_DETECT_INIT:
5354 ap->link_time = ap->cur_time;
5355 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5356 tw32_f(MAC_MODE, tp->mac_mode);
5357 udelay(40);
5358
5359 ap->state = ANEG_STATE_IDLE_DETECT;
5360 ret = ANEG_TIMER_ENAB;
5361 break;
5362
5363 case ANEG_STATE_IDLE_DETECT:
5364 if (ap->ability_match != 0 &&
5365 ap->rxconfig == 0) {
5366 ap->state = ANEG_STATE_AN_ENABLE;
5367 break;
5368 }
5369 delta = ap->cur_time - ap->link_time;
5370 if (delta > ANEG_STATE_SETTLE_TIME) {
5371 /* XXX another gem from the Broadcom driver :( */
5372 ap->state = ANEG_STATE_LINK_OK;
5373 }
5374 break;
5375
5376 case ANEG_STATE_LINK_OK:
5377 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
5378 ret = ANEG_DONE;
5379 break;
5380
5381 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
5382 /* ??? unimplemented */
5383 break;
5384
5385 case ANEG_STATE_NEXT_PAGE_WAIT:
5386 /* ??? unimplemented */
5387 break;
5388
5389 default:
5390 ret = ANEG_FAILED;
5391 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393
5394 return ret;
5395}
5396
Matt Carlson5be73b42007-12-20 20:09:29 -08005397static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398{
5399 int res = 0;
5400 struct tg3_fiber_aneginfo aninfo;
5401 int status = ANEG_FAILED;
5402 unsigned int tick;
5403 u32 tmp;
5404
5405 tw32_f(MAC_TX_AUTO_NEG, 0);
5406
5407 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
5408 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
5409 udelay(40);
5410
5411 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
5412 udelay(40);
5413
5414 memset(&aninfo, 0, sizeof(aninfo));
5415 aninfo.flags |= MR_AN_ENABLE;
5416 aninfo.state = ANEG_STATE_UNKNOWN;
5417 aninfo.cur_time = 0;
5418 tick = 0;
5419 while (++tick < 195000) {
5420 status = tg3_fiber_aneg_smachine(tp, &aninfo);
5421 if (status == ANEG_DONE || status == ANEG_FAILED)
5422 break;
5423
5424 udelay(1);
5425 }
5426
5427 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5428 tw32_f(MAC_MODE, tp->mac_mode);
5429 udelay(40);
5430
Matt Carlson5be73b42007-12-20 20:09:29 -08005431 *txflags = aninfo.txconfig;
5432 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433
5434 if (status == ANEG_DONE &&
5435 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
5436 MR_LP_ADV_FULL_DUPLEX)))
5437 res = 1;
5438
5439 return res;
5440}
5441
5442static void tg3_init_bcm8002(struct tg3 *tp)
5443{
5444 u32 mac_status = tr32(MAC_STATUS);
5445 int i;
5446
5447 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00005448 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 !(mac_status & MAC_STATUS_PCS_SYNCED))
5450 return;
5451
5452 /* Set PLL lock range. */
5453 tg3_writephy(tp, 0x16, 0x8007);
5454
5455 /* SW reset */
5456 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
5457
5458 /* Wait for reset to complete. */
5459 /* XXX schedule_timeout() ... */
5460 for (i = 0; i < 500; i++)
5461 udelay(10);
5462
5463 /* Config mode; select PMA/Ch 1 regs. */
5464 tg3_writephy(tp, 0x10, 0x8411);
5465
5466 /* Enable auto-lock and comdet, select txclk for tx. */
5467 tg3_writephy(tp, 0x11, 0x0a10);
5468
5469 tg3_writephy(tp, 0x18, 0x00a0);
5470 tg3_writephy(tp, 0x16, 0x41ff);
5471
5472 /* Assert and deassert POR. */
5473 tg3_writephy(tp, 0x13, 0x0400);
5474 udelay(40);
5475 tg3_writephy(tp, 0x13, 0x0000);
5476
5477 tg3_writephy(tp, 0x11, 0x0a50);
5478 udelay(40);
5479 tg3_writephy(tp, 0x11, 0x0a10);
5480
5481 /* Wait for signal to stabilize */
5482 /* XXX schedule_timeout() ... */
5483 for (i = 0; i < 15000; i++)
5484 udelay(10);
5485
5486 /* Deselect the channel register so we can read the PHYID
5487 * later.
5488 */
5489 tg3_writephy(tp, 0x10, 0x8011);
5490}
5491
Joe Perches953c96e2013-04-09 10:18:14 +00005492static bool tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493{
Matt Carlson82cd3d12007-12-20 20:09:00 -08005494 u16 flowctrl;
Joe Perches953c96e2013-04-09 10:18:14 +00005495 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 u32 sg_dig_ctrl, sg_dig_status;
5497 u32 serdes_cfg, expected_sg_dig_ctrl;
5498 int workaround, port_a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
5500 serdes_cfg = 0;
5501 expected_sg_dig_ctrl = 0;
5502 workaround = 0;
5503 port_a = 1;
Joe Perches953c96e2013-04-09 10:18:14 +00005504 current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505
Joe Perches41535772013-02-16 11:20:04 +00005506 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A0 &&
5507 tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 workaround = 1;
5509 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
5510 port_a = 0;
5511
5512 /* preserve bits 0-11,13,14 for signal pre-emphasis */
5513 /* preserve bits 20-23 for voltage regulator */
5514 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
5515 }
5516
5517 sg_dig_ctrl = tr32(SG_DIG_CTRL);
5518
5519 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005520 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 if (workaround) {
5522 u32 val = serdes_cfg;
5523
5524 if (port_a)
5525 val |= 0xc010000;
5526 else
5527 val |= 0x4010000;
5528 tw32_f(MAC_SERDES_CFG, val);
5529 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005530
5531 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 }
5533 if (mac_status & MAC_STATUS_PCS_SYNCED) {
5534 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005535 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536 }
5537 goto out;
5538 }
5539
5540 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005541 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
Matt Carlson82cd3d12007-12-20 20:09:00 -08005543 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5544 if (flowctrl & ADVERTISE_1000XPAUSE)
5545 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
5546 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5547 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
5549 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005550 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07005551 tp->serdes_counter &&
5552 ((mac_status & (MAC_STATUS_PCS_SYNCED |
5553 MAC_STATUS_RCVD_CFG)) ==
5554 MAC_STATUS_PCS_SYNCED)) {
5555 tp->serdes_counter--;
Joe Perches953c96e2013-04-09 10:18:14 +00005556 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005557 goto out;
5558 }
5559restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560 if (workaround)
5561 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005562 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 udelay(5);
5564 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
5565
Michael Chan3d3ebe72006-09-27 15:59:15 -07005566 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005567 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
5569 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005570 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 mac_status = tr32(MAC_STATUS);
5572
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005573 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08005575 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
Matt Carlson82cd3d12007-12-20 20:09:00 -08005577 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
5578 local_adv |= ADVERTISE_1000XPAUSE;
5579 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
5580 local_adv |= ADVERTISE_1000XPSE_ASYM;
5581
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005582 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005583 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005584 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005585 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
Matt Carlson859edb22011-12-08 14:40:16 +00005587 tp->link_config.rmt_adv =
5588 mii_adv_to_ethtool_adv_x(remote_adv);
5589
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 tg3_setup_flow_control(tp, local_adv, remote_adv);
Joe Perches953c96e2013-04-09 10:18:14 +00005591 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005592 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005593 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005594 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005595 if (tp->serdes_counter)
5596 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597 else {
5598 if (workaround) {
5599 u32 val = serdes_cfg;
5600
5601 if (port_a)
5602 val |= 0xc010000;
5603 else
5604 val |= 0x4010000;
5605
5606 tw32_f(MAC_SERDES_CFG, val);
5607 }
5608
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005609 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 udelay(40);
5611
5612 /* Link parallel detection - link is up */
5613 /* only if we have PCS_SYNC and not */
5614 /* receiving config code words */
5615 mac_status = tr32(MAC_STATUS);
5616 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
5617 !(mac_status & MAC_STATUS_RCVD_CFG)) {
5618 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005619 current_link_up = true;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005620 tp->phy_flags |=
5621 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005622 tp->serdes_counter =
5623 SERDES_PARALLEL_DET_TIMEOUT;
5624 } else
5625 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 }
5627 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07005628 } else {
5629 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005630 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 }
5632
5633out:
5634 return current_link_up;
5635}
5636
Joe Perches953c96e2013-04-09 10:18:14 +00005637static bool tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638{
Joe Perches953c96e2013-04-09 10:18:14 +00005639 bool current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005641 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
5644 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005645 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005647
Matt Carlson5be73b42007-12-20 20:09:29 -08005648 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5649 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650
Matt Carlson5be73b42007-12-20 20:09:29 -08005651 if (txflags & ANEG_CFG_PS1)
5652 local_adv |= ADVERTISE_1000XPAUSE;
5653 if (txflags & ANEG_CFG_PS2)
5654 local_adv |= ADVERTISE_1000XPSE_ASYM;
5655
5656 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5657 remote_adv |= LPA_1000XPAUSE;
5658 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5659 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
Matt Carlson859edb22011-12-08 14:40:16 +00005661 tp->link_config.rmt_adv =
5662 mii_adv_to_ethtool_adv_x(remote_adv);
5663
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 tg3_setup_flow_control(tp, local_adv, remote_adv);
5665
Joe Perches953c96e2013-04-09 10:18:14 +00005666 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 }
5668 for (i = 0; i < 30; i++) {
5669 udelay(20);
5670 tw32_f(MAC_STATUS,
5671 (MAC_STATUS_SYNC_CHANGED |
5672 MAC_STATUS_CFG_CHANGED));
5673 udelay(40);
5674 if ((tr32(MAC_STATUS) &
5675 (MAC_STATUS_SYNC_CHANGED |
5676 MAC_STATUS_CFG_CHANGED)) == 0)
5677 break;
5678 }
5679
5680 mac_status = tr32(MAC_STATUS);
Joe Perches953c96e2013-04-09 10:18:14 +00005681 if (!current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5683 !(mac_status & MAC_STATUS_RCVD_CFG))
Joe Perches953c96e2013-04-09 10:18:14 +00005684 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005686 tg3_setup_flow_control(tp, 0, 0);
5687
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688 /* Forcing 1000FD link up. */
Joe Perches953c96e2013-04-09 10:18:14 +00005689 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
5691 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5692 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005693
5694 tw32_f(MAC_MODE, tp->mac_mode);
5695 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696 }
5697
5698out:
5699 return current_link_up;
5700}
5701
Joe Perches953c96e2013-04-09 10:18:14 +00005702static int tg3_setup_fiber_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703{
5704 u32 orig_pause_cfg;
5705 u16 orig_active_speed;
5706 u8 orig_active_duplex;
5707 u32 mac_status;
Joe Perches953c96e2013-04-09 10:18:14 +00005708 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 int i;
5710
Matt Carlson8d018622007-12-20 20:05:44 -08005711 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712 orig_active_speed = tp->link_config.active_speed;
5713 orig_active_duplex = tp->link_config.active_duplex;
5714
Joe Perches63c3a662011-04-26 08:12:10 +00005715 if (!tg3_flag(tp, HW_AUTONEG) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005716 tp->link_up &&
Joe Perches63c3a662011-04-26 08:12:10 +00005717 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718 mac_status = tr32(MAC_STATUS);
5719 mac_status &= (MAC_STATUS_PCS_SYNCED |
5720 MAC_STATUS_SIGNAL_DET |
5721 MAC_STATUS_CFG_CHANGED |
5722 MAC_STATUS_RCVD_CFG);
5723 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5724 MAC_STATUS_SIGNAL_DET)) {
5725 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5726 MAC_STATUS_CFG_CHANGED));
5727 return 0;
5728 }
5729 }
5730
5731 tw32_f(MAC_TX_AUTO_NEG, 0);
5732
5733 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5734 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5735 tw32_f(MAC_MODE, tp->mac_mode);
5736 udelay(40);
5737
Matt Carlson79eb6902010-02-17 15:17:03 +00005738 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739 tg3_init_bcm8002(tp);
5740
5741 /* Enable link change event even when serdes polling. */
5742 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5743 udelay(40);
5744
Joe Perches953c96e2013-04-09 10:18:14 +00005745 current_link_up = false;
Matt Carlson859edb22011-12-08 14:40:16 +00005746 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 mac_status = tr32(MAC_STATUS);
5748
Joe Perches63c3a662011-04-26 08:12:10 +00005749 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5751 else
5752 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5753
Matt Carlson898a56f2009-08-28 14:02:40 +00005754 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005756 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
5758 for (i = 0; i < 100; i++) {
5759 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5760 MAC_STATUS_CFG_CHANGED));
5761 udelay(5);
5762 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005763 MAC_STATUS_CFG_CHANGED |
5764 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765 break;
5766 }
5767
5768 mac_status = tr32(MAC_STATUS);
5769 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
Joe Perches953c96e2013-04-09 10:18:14 +00005770 current_link_up = false;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005771 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5772 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773 tw32_f(MAC_MODE, (tp->mac_mode |
5774 MAC_MODE_SEND_CONFIGS));
5775 udelay(1);
5776 tw32_f(MAC_MODE, tp->mac_mode);
5777 }
5778 }
5779
Joe Perches953c96e2013-04-09 10:18:14 +00005780 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781 tp->link_config.active_speed = SPEED_1000;
5782 tp->link_config.active_duplex = DUPLEX_FULL;
5783 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5784 LED_CTRL_LNKLED_OVERRIDE |
5785 LED_CTRL_1000MBPS_ON));
5786 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005787 tp->link_config.active_speed = SPEED_UNKNOWN;
5788 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5790 LED_CTRL_LNKLED_OVERRIDE |
5791 LED_CTRL_TRAFFIC_OVERRIDE));
5792 }
5793
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005794 if (!tg3_test_and_report_link_chg(tp, current_link_up)) {
Matt Carlson8d018622007-12-20 20:05:44 -08005795 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796 if (orig_pause_cfg != now_pause_cfg ||
5797 orig_active_speed != tp->link_config.active_speed ||
5798 orig_active_duplex != tp->link_config.active_duplex)
5799 tg3_link_report(tp);
5800 }
5801
5802 return 0;
5803}
5804
Joe Perches953c96e2013-04-09 10:18:14 +00005805static int tg3_setup_fiber_mii_phy(struct tg3 *tp, bool force_reset)
Michael Chan747e8f82005-07-25 12:33:22 -07005806{
Joe Perches953c96e2013-04-09 10:18:14 +00005807 int err = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005808 u32 bmsr, bmcr;
Michael Chan85730a62013-04-09 08:48:06 +00005809 u16 current_speed = SPEED_UNKNOWN;
5810 u8 current_duplex = DUPLEX_UNKNOWN;
Joe Perches953c96e2013-04-09 10:18:14 +00005811 bool current_link_up = false;
Michael Chan85730a62013-04-09 08:48:06 +00005812 u32 local_adv, remote_adv, sgsr;
5813
5814 if ((tg3_asic_rev(tp) == ASIC_REV_5719 ||
5815 tg3_asic_rev(tp) == ASIC_REV_5720) &&
5816 !tg3_readphy(tp, SERDES_TG3_1000X_STATUS, &sgsr) &&
5817 (sgsr & SERDES_TG3_SGMII_MODE)) {
5818
5819 if (force_reset)
5820 tg3_phy_reset(tp);
5821
5822 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
5823
5824 if (!(sgsr & SERDES_TG3_LINK_UP)) {
5825 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5826 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005827 current_link_up = true;
Michael Chan85730a62013-04-09 08:48:06 +00005828 if (sgsr & SERDES_TG3_SPEED_1000) {
5829 current_speed = SPEED_1000;
5830 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5831 } else if (sgsr & SERDES_TG3_SPEED_100) {
5832 current_speed = SPEED_100;
5833 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5834 } else {
5835 current_speed = SPEED_10;
5836 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5837 }
5838
5839 if (sgsr & SERDES_TG3_FULL_DUPLEX)
5840 current_duplex = DUPLEX_FULL;
5841 else
5842 current_duplex = DUPLEX_HALF;
5843 }
5844
5845 tw32_f(MAC_MODE, tp->mac_mode);
5846 udelay(40);
5847
5848 tg3_clear_mac_status(tp);
5849
5850 goto fiber_setup_done;
5851 }
Michael Chan747e8f82005-07-25 12:33:22 -07005852
5853 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5854 tw32_f(MAC_MODE, tp->mac_mode);
5855 udelay(40);
5856
Michael Chan3310e242013-04-09 08:48:05 +00005857 tg3_clear_mac_status(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005858
5859 if (force_reset)
5860 tg3_phy_reset(tp);
5861
Matt Carlson859edb22011-12-08 14:40:16 +00005862 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005863
5864 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5865 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005866 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005867 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5868 bmsr |= BMSR_LSTATUS;
5869 else
5870 bmsr &= ~BMSR_LSTATUS;
5871 }
Michael Chan747e8f82005-07-25 12:33:22 -07005872
5873 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5874
5875 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005876 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005877 /* do nothing, just check for link up at the end */
5878 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005879 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005880
5881 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005882 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5883 ADVERTISE_1000XPAUSE |
5884 ADVERTISE_1000XPSE_ASYM |
5885 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005886
Matt Carlson28011cf2011-11-16 18:36:59 -05005887 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005888 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005889
Matt Carlson28011cf2011-11-16 18:36:59 -05005890 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5891 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005892 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5893 tg3_writephy(tp, MII_BMCR, bmcr);
5894
5895 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005896 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005897 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005898
5899 return err;
5900 }
5901 } else {
5902 u32 new_bmcr;
5903
5904 bmcr &= ~BMCR_SPEED1000;
5905 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5906
5907 if (tp->link_config.duplex == DUPLEX_FULL)
5908 new_bmcr |= BMCR_FULLDPLX;
5909
5910 if (new_bmcr != bmcr) {
5911 /* BMCR_SPEED1000 is a reserved bit that needs
5912 * to be set on write.
5913 */
5914 new_bmcr |= BMCR_SPEED1000;
5915
5916 /* Force a linkdown */
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005917 if (tp->link_up) {
Michael Chan747e8f82005-07-25 12:33:22 -07005918 u32 adv;
5919
5920 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5921 adv &= ~(ADVERTISE_1000XFULL |
5922 ADVERTISE_1000XHALF |
5923 ADVERTISE_SLCT);
5924 tg3_writephy(tp, MII_ADVERTISE, adv);
5925 tg3_writephy(tp, MII_BMCR, bmcr |
5926 BMCR_ANRESTART |
5927 BMCR_ANENABLE);
5928 udelay(10);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005929 tg3_carrier_off(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005930 }
5931 tg3_writephy(tp, MII_BMCR, new_bmcr);
5932 bmcr = new_bmcr;
5933 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5934 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005935 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005936 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5937 bmsr |= BMSR_LSTATUS;
5938 else
5939 bmsr &= ~BMSR_LSTATUS;
5940 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005941 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005942 }
5943 }
5944
5945 if (bmsr & BMSR_LSTATUS) {
5946 current_speed = SPEED_1000;
Joe Perches953c96e2013-04-09 10:18:14 +00005947 current_link_up = true;
Michael Chan747e8f82005-07-25 12:33:22 -07005948 if (bmcr & BMCR_FULLDPLX)
5949 current_duplex = DUPLEX_FULL;
5950 else
5951 current_duplex = DUPLEX_HALF;
5952
Matt Carlsonef167e22007-12-20 20:10:01 -08005953 local_adv = 0;
5954 remote_adv = 0;
5955
Michael Chan747e8f82005-07-25 12:33:22 -07005956 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005957 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005958
5959 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5960 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5961 common = local_adv & remote_adv;
5962 if (common & (ADVERTISE_1000XHALF |
5963 ADVERTISE_1000XFULL)) {
5964 if (common & ADVERTISE_1000XFULL)
5965 current_duplex = DUPLEX_FULL;
5966 else
5967 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005968
5969 tp->link_config.rmt_adv =
5970 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005971 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005972 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005973 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005974 current_link_up = false;
Matt Carlson859a588792010-04-05 10:19:28 +00005975 }
Michael Chan747e8f82005-07-25 12:33:22 -07005976 }
5977 }
5978
Michael Chan85730a62013-04-09 08:48:06 +00005979fiber_setup_done:
Joe Perches953c96e2013-04-09 10:18:14 +00005980 if (current_link_up && current_duplex == DUPLEX_FULL)
Matt Carlsonef167e22007-12-20 20:10:01 -08005981 tg3_setup_flow_control(tp, local_adv, remote_adv);
5982
Michael Chan747e8f82005-07-25 12:33:22 -07005983 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5984 if (tp->link_config.active_duplex == DUPLEX_HALF)
5985 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5986
5987 tw32_f(MAC_MODE, tp->mac_mode);
5988 udelay(40);
5989
5990 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5991
5992 tp->link_config.active_speed = current_speed;
5993 tp->link_config.active_duplex = current_duplex;
5994
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005995 tg3_test_and_report_link_chg(tp, current_link_up);
Michael Chan747e8f82005-07-25 12:33:22 -07005996 return err;
5997}
5998
5999static void tg3_serdes_parallel_detect(struct tg3 *tp)
6000{
Michael Chan3d3ebe72006-09-27 15:59:15 -07006001 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07006002 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07006003 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07006004 return;
6005 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006006
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006007 if (!tp->link_up &&
Michael Chan747e8f82005-07-25 12:33:22 -07006008 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
6009 u32 bmcr;
6010
6011 tg3_readphy(tp, MII_BMCR, &bmcr);
6012 if (bmcr & BMCR_ANENABLE) {
6013 u32 phy1, phy2;
6014
6015 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00006016 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
6017 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07006018
6019 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00006020 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
6021 MII_TG3_DSP_EXP1_INT_STAT);
6022 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
6023 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07006024
6025 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
6026 /* We have signal detect and not receiving
6027 * config code words, link is up by parallel
6028 * detection.
6029 */
6030
6031 bmcr &= ~BMCR_ANENABLE;
6032 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
6033 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006034 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07006035 }
6036 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006037 } else if (tp->link_up &&
Matt Carlson859a588792010-04-05 10:19:28 +00006038 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006039 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07006040 u32 phy2;
6041
6042 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00006043 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
6044 MII_TG3_DSP_EXP1_INT_STAT);
6045 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07006046 if (phy2 & 0x20) {
6047 u32 bmcr;
6048
6049 /* Config code words received, turn on autoneg. */
6050 tg3_readphy(tp, MII_BMCR, &bmcr);
6051 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
6052
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006053 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07006054
6055 }
6056 }
6057}
6058
Joe Perches953c96e2013-04-09 10:18:14 +00006059static int tg3_setup_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060{
Matt Carlsonf2096f92011-04-05 14:22:48 +00006061 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 int err;
6063
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006064 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00006066 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07006067 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00006068 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070
Joe Perches41535772013-02-16 11:20:04 +00006071 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00006072 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08006073
6074 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
6075 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
6076 scale = 65;
6077 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
6078 scale = 6;
6079 else
6080 scale = 12;
6081
6082 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
6083 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
6084 tw32(GRC_MISC_CFG, val);
6085 }
6086
Matt Carlsonf2096f92011-04-05 14:22:48 +00006087 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
6088 (6 << TX_LENGTHS_IPG_SHIFT);
Joe Perches41535772013-02-16 11:20:04 +00006089 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
6090 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00006091 val |= tr32(MAC_TX_LENGTHS) &
6092 (TX_LENGTHS_JMB_FRM_LEN_MSK |
6093 TX_LENGTHS_CNT_DWN_VAL_MSK);
6094
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095 if (tp->link_config.active_speed == SPEED_1000 &&
6096 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00006097 tw32(MAC_TX_LENGTHS, val |
6098 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00006100 tw32(MAC_TX_LENGTHS, val |
6101 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102
Joe Perches63c3a662011-04-26 08:12:10 +00006103 if (!tg3_flag(tp, 5705_PLUS)) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006104 if (tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07006106 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107 } else {
6108 tw32(HOSTCC_STAT_COAL_TICKS, 0);
6109 }
6110 }
6111
Joe Perches63c3a662011-04-26 08:12:10 +00006112 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00006113 val = tr32(PCIE_PWR_MGMT_THRESH);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00006114 if (!tp->link_up)
Matt Carlson8ed5d972007-05-07 00:25:49 -07006115 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
6116 tp->pwrmgmt_thresh;
6117 else
6118 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
6119 tw32(PCIE_PWR_MGMT_THRESH, val);
6120 }
6121
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122 return err;
6123}
6124
Matt Carlsonbe947302012-12-03 19:36:57 +00006125/* tp->lock must be held */
Matt Carlson7d41e492012-12-03 19:36:58 +00006126static u64 tg3_refclk_read(struct tg3 *tp)
6127{
6128 u64 stamp = tr32(TG3_EAV_REF_CLCK_LSB);
6129 return stamp | (u64)tr32(TG3_EAV_REF_CLCK_MSB) << 32;
6130}
6131
6132/* tp->lock must be held */
Matt Carlsonbe947302012-12-03 19:36:57 +00006133static void tg3_refclk_write(struct tg3 *tp, u64 newval)
6134{
Nithin Sujir92e64572013-07-29 13:58:38 -07006135 u32 clock_ctl = tr32(TG3_EAV_REF_CLCK_CTL);
6136
6137 tw32(TG3_EAV_REF_CLCK_CTL, clock_ctl | TG3_EAV_REF_CLCK_CTL_STOP);
Matt Carlsonbe947302012-12-03 19:36:57 +00006138 tw32(TG3_EAV_REF_CLCK_LSB, newval & 0xffffffff);
6139 tw32(TG3_EAV_REF_CLCK_MSB, newval >> 32);
Nithin Sujir92e64572013-07-29 13:58:38 -07006140 tw32_f(TG3_EAV_REF_CLCK_CTL, clock_ctl | TG3_EAV_REF_CLCK_CTL_RESUME);
Matt Carlsonbe947302012-12-03 19:36:57 +00006141}
6142
Matt Carlson7d41e492012-12-03 19:36:58 +00006143static inline void tg3_full_lock(struct tg3 *tp, int irq_sync);
6144static inline void tg3_full_unlock(struct tg3 *tp);
6145static int tg3_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
6146{
6147 struct tg3 *tp = netdev_priv(dev);
6148
6149 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
6150 SOF_TIMESTAMPING_RX_SOFTWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006151 SOF_TIMESTAMPING_SOFTWARE;
6152
6153 if (tg3_flag(tp, PTP_CAPABLE)) {
Flavio Leitner32e19272013-04-30 07:20:34 +00006154 info->so_timestamping |= SOF_TIMESTAMPING_TX_HARDWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006155 SOF_TIMESTAMPING_RX_HARDWARE |
6156 SOF_TIMESTAMPING_RAW_HARDWARE;
6157 }
Matt Carlson7d41e492012-12-03 19:36:58 +00006158
6159 if (tp->ptp_clock)
6160 info->phc_index = ptp_clock_index(tp->ptp_clock);
6161 else
6162 info->phc_index = -1;
6163
6164 info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
6165
6166 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
6167 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
6168 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
6169 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
6170 return 0;
6171}
6172
6173static int tg3_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
6174{
6175 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6176 bool neg_adj = false;
6177 u32 correction = 0;
6178
6179 if (ppb < 0) {
6180 neg_adj = true;
6181 ppb = -ppb;
6182 }
6183
6184 /* Frequency adjustment is performed using hardware with a 24 bit
6185 * accumulator and a programmable correction value. On each clk, the
6186 * correction value gets added to the accumulator and when it
6187 * overflows, the time counter is incremented/decremented.
6188 *
6189 * So conversion from ppb to correction value is
6190 * ppb * (1 << 24) / 1000000000
6191 */
6192 correction = div_u64((u64)ppb * (1 << 24), 1000000000ULL) &
6193 TG3_EAV_REF_CLK_CORRECT_MASK;
6194
6195 tg3_full_lock(tp, 0);
6196
6197 if (correction)
6198 tw32(TG3_EAV_REF_CLK_CORRECT_CTL,
6199 TG3_EAV_REF_CLK_CORRECT_EN |
6200 (neg_adj ? TG3_EAV_REF_CLK_CORRECT_NEG : 0) | correction);
6201 else
6202 tw32(TG3_EAV_REF_CLK_CORRECT_CTL, 0);
6203
6204 tg3_full_unlock(tp);
6205
6206 return 0;
6207}
6208
6209static int tg3_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
6210{
6211 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6212
6213 tg3_full_lock(tp, 0);
6214 tp->ptp_adjust += delta;
6215 tg3_full_unlock(tp);
6216
6217 return 0;
6218}
6219
Richard Cochranf578b412015-03-29 23:11:57 +02006220static int tg3_ptp_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts)
Matt Carlson7d41e492012-12-03 19:36:58 +00006221{
6222 u64 ns;
Matt Carlson7d41e492012-12-03 19:36:58 +00006223 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6224
6225 tg3_full_lock(tp, 0);
6226 ns = tg3_refclk_read(tp);
6227 ns += tp->ptp_adjust;
6228 tg3_full_unlock(tp);
6229
Richard Cochran7a20efb2015-03-31 23:08:08 +02006230 *ts = ns_to_timespec64(ns);
Matt Carlson7d41e492012-12-03 19:36:58 +00006231
6232 return 0;
6233}
6234
6235static int tg3_ptp_settime(struct ptp_clock_info *ptp,
Richard Cochranf578b412015-03-29 23:11:57 +02006236 const struct timespec64 *ts)
Matt Carlson7d41e492012-12-03 19:36:58 +00006237{
6238 u64 ns;
6239 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6240
Richard Cochranf578b412015-03-29 23:11:57 +02006241 ns = timespec64_to_ns(ts);
Matt Carlson7d41e492012-12-03 19:36:58 +00006242
6243 tg3_full_lock(tp, 0);
6244 tg3_refclk_write(tp, ns);
6245 tp->ptp_adjust = 0;
6246 tg3_full_unlock(tp);
6247
6248 return 0;
6249}
6250
6251static int tg3_ptp_enable(struct ptp_clock_info *ptp,
6252 struct ptp_clock_request *rq, int on)
6253{
Nithin Sujir92e64572013-07-29 13:58:38 -07006254 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6255 u32 clock_ctl;
6256 int rval = 0;
6257
6258 switch (rq->type) {
6259 case PTP_CLK_REQ_PEROUT:
6260 if (rq->perout.index != 0)
6261 return -EINVAL;
6262
6263 tg3_full_lock(tp, 0);
6264 clock_ctl = tr32(TG3_EAV_REF_CLCK_CTL);
6265 clock_ctl &= ~TG3_EAV_CTL_TSYNC_GPIO_MASK;
6266
6267 if (on) {
6268 u64 nsec;
6269
6270 nsec = rq->perout.start.sec * 1000000000ULL +
6271 rq->perout.start.nsec;
6272
6273 if (rq->perout.period.sec || rq->perout.period.nsec) {
6274 netdev_warn(tp->dev,
6275 "Device supports only a one-shot timesync output, period must be 0\n");
6276 rval = -EINVAL;
6277 goto err_out;
6278 }
6279
6280 if (nsec & (1ULL << 63)) {
6281 netdev_warn(tp->dev,
6282 "Start value (nsec) is over limit. Maximum size of start is only 63 bits\n");
6283 rval = -EINVAL;
6284 goto err_out;
6285 }
6286
6287 tw32(TG3_EAV_WATCHDOG0_LSB, (nsec & 0xffffffff));
6288 tw32(TG3_EAV_WATCHDOG0_MSB,
6289 TG3_EAV_WATCHDOG0_EN |
6290 ((nsec >> 32) & TG3_EAV_WATCHDOG_MSB_MASK));
6291
6292 tw32(TG3_EAV_REF_CLCK_CTL,
6293 clock_ctl | TG3_EAV_CTL_TSYNC_WDOG0);
6294 } else {
6295 tw32(TG3_EAV_WATCHDOG0_MSB, 0);
6296 tw32(TG3_EAV_REF_CLCK_CTL, clock_ctl);
6297 }
6298
6299err_out:
6300 tg3_full_unlock(tp);
6301 return rval;
6302
6303 default:
6304 break;
6305 }
6306
Matt Carlson7d41e492012-12-03 19:36:58 +00006307 return -EOPNOTSUPP;
6308}
6309
6310static const struct ptp_clock_info tg3_ptp_caps = {
6311 .owner = THIS_MODULE,
6312 .name = "tg3 clock",
6313 .max_adj = 250000000,
6314 .n_alarm = 0,
6315 .n_ext_ts = 0,
Nithin Sujir92e64572013-07-29 13:58:38 -07006316 .n_per_out = 1,
Richard Cochran4986b4f02014-03-20 22:21:55 +01006317 .n_pins = 0,
Matt Carlson7d41e492012-12-03 19:36:58 +00006318 .pps = 0,
6319 .adjfreq = tg3_ptp_adjfreq,
6320 .adjtime = tg3_ptp_adjtime,
Richard Cochranf578b412015-03-29 23:11:57 +02006321 .gettime64 = tg3_ptp_gettime,
6322 .settime64 = tg3_ptp_settime,
Matt Carlson7d41e492012-12-03 19:36:58 +00006323 .enable = tg3_ptp_enable,
6324};
6325
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006326static void tg3_hwclock_to_timestamp(struct tg3 *tp, u64 hwclock,
6327 struct skb_shared_hwtstamps *timestamp)
6328{
6329 memset(timestamp, 0, sizeof(struct skb_shared_hwtstamps));
6330 timestamp->hwtstamp = ns_to_ktime((hwclock & TG3_TSTAMP_MASK) +
6331 tp->ptp_adjust);
6332}
6333
Matt Carlsonbe947302012-12-03 19:36:57 +00006334/* tp->lock must be held */
6335static void tg3_ptp_init(struct tg3 *tp)
6336{
6337 if (!tg3_flag(tp, PTP_CAPABLE))
6338 return;
6339
6340 /* Initialize the hardware clock to the system time. */
6341 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()));
6342 tp->ptp_adjust = 0;
Matt Carlson7d41e492012-12-03 19:36:58 +00006343 tp->ptp_info = tg3_ptp_caps;
Matt Carlsonbe947302012-12-03 19:36:57 +00006344}
6345
6346/* tp->lock must be held */
6347static void tg3_ptp_resume(struct tg3 *tp)
6348{
6349 if (!tg3_flag(tp, PTP_CAPABLE))
6350 return;
6351
6352 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()) + tp->ptp_adjust);
6353 tp->ptp_adjust = 0;
6354}
6355
6356static void tg3_ptp_fini(struct tg3 *tp)
6357{
6358 if (!tg3_flag(tp, PTP_CAPABLE) || !tp->ptp_clock)
6359 return;
6360
Matt Carlson7d41e492012-12-03 19:36:58 +00006361 ptp_clock_unregister(tp->ptp_clock);
Matt Carlsonbe947302012-12-03 19:36:57 +00006362 tp->ptp_clock = NULL;
6363 tp->ptp_adjust = 0;
6364}
6365
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006366static inline int tg3_irq_sync(struct tg3 *tp)
6367{
6368 return tp->irq_sync;
6369}
6370
Matt Carlson97bd8e42011-04-13 11:05:04 +00006371static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
6372{
6373 int i;
6374
6375 dst = (u32 *)((u8 *)dst + off);
6376 for (i = 0; i < len; i += sizeof(u32))
6377 *dst++ = tr32(off + i);
6378}
6379
6380static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
6381{
6382 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
6383 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
6384 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
6385 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
6386 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
6387 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
6388 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
6389 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
6390 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
6391 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
6392 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
6393 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
6394 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
6395 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
6396 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
6397 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
6398 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
6399 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
6400 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
6401
Joe Perches63c3a662011-04-26 08:12:10 +00006402 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006403 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
6404
6405 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
6406 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
6407 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
6408 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
6409 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
6410 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
6411 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
6412 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
6413
Joe Perches63c3a662011-04-26 08:12:10 +00006414 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006415 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
6416 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
6417 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
6418 }
6419
6420 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
6421 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
6422 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
6423 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
6424 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
6425
Joe Perches63c3a662011-04-26 08:12:10 +00006426 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006427 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
6428}
6429
6430static void tg3_dump_state(struct tg3 *tp)
6431{
6432 int i;
6433 u32 *regs;
6434
6435 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
Joe Perchesb2adaca2013-02-03 17:43:58 +00006436 if (!regs)
Matt Carlson97bd8e42011-04-13 11:05:04 +00006437 return;
Matt Carlson97bd8e42011-04-13 11:05:04 +00006438
Joe Perches63c3a662011-04-26 08:12:10 +00006439 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006440 /* Read up to but not including private PCI registers */
6441 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
6442 regs[i / sizeof(u32)] = tr32(i);
6443 } else
6444 tg3_dump_legacy_regs(tp, regs);
6445
6446 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
6447 if (!regs[i + 0] && !regs[i + 1] &&
6448 !regs[i + 2] && !regs[i + 3])
6449 continue;
6450
6451 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
6452 i * 4,
6453 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
6454 }
6455
6456 kfree(regs);
6457
6458 for (i = 0; i < tp->irq_cnt; i++) {
6459 struct tg3_napi *tnapi = &tp->napi[i];
6460
6461 /* SW status block */
6462 netdev_err(tp->dev,
6463 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
6464 i,
6465 tnapi->hw_status->status,
6466 tnapi->hw_status->status_tag,
6467 tnapi->hw_status->rx_jumbo_consumer,
6468 tnapi->hw_status->rx_consumer,
6469 tnapi->hw_status->rx_mini_consumer,
6470 tnapi->hw_status->idx[0].rx_producer,
6471 tnapi->hw_status->idx[0].tx_consumer);
6472
6473 netdev_err(tp->dev,
6474 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
6475 i,
6476 tnapi->last_tag, tnapi->last_irq_tag,
6477 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
6478 tnapi->rx_rcb_ptr,
6479 tnapi->prodring.rx_std_prod_idx,
6480 tnapi->prodring.rx_std_cons_idx,
6481 tnapi->prodring.rx_jmb_prod_idx,
6482 tnapi->prodring.rx_jmb_cons_idx);
6483 }
6484}
6485
Michael Chandf3e6542006-05-26 17:48:07 -07006486/* This is called whenever we suspect that the system chipset is re-
6487 * ordering the sequence of MMIO to the tx send mailbox. The symptom
6488 * is bogus tx completions. We try to recover by setting the
6489 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
6490 * in the workqueue.
6491 */
6492static void tg3_tx_recover(struct tg3 *tp)
6493{
Joe Perches63c3a662011-04-26 08:12:10 +00006494 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07006495 tp->write32_tx_mbox == tg3_write_indirect_mbox);
6496
Matt Carlson5129c3a2010-04-05 10:19:23 +00006497 netdev_warn(tp->dev,
6498 "The system may be re-ordering memory-mapped I/O "
6499 "cycles to the network device, attempting to recover. "
6500 "Please report the problem to the driver maintainer "
6501 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07006502
Joe Perches63c3a662011-04-26 08:12:10 +00006503 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006504}
6505
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006506static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07006507{
Matt Carlsonf65aac12010-08-02 11:26:03 +00006508 /* Tell compiler to fetch tx indices from memory. */
6509 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006510 return tnapi->tx_pending -
6511 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07006512}
6513
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514/* Tigon3 never reports partial packet sends. So we do not
6515 * need special logic to handle SKBs that have not had all
6516 * of their frags sent yet, like SunGEM does.
6517 */
Matt Carlson17375d22009-08-28 14:02:18 +00006518static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519{
Matt Carlson17375d22009-08-28 14:02:18 +00006520 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006521 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006522 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006523 struct netdev_queue *txq;
6524 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00006525 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006526
Joe Perches63c3a662011-04-26 08:12:10 +00006527 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006528 index--;
6529
6530 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531
6532 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00006533 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07006535 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536
Michael Chandf3e6542006-05-26 17:48:07 -07006537 if (unlikely(skb == NULL)) {
6538 tg3_tx_recover(tp);
6539 return;
6540 }
6541
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006542 if (tnapi->tx_ring[sw_idx].len_flags & TXD_FLAG_HWTSTAMP) {
6543 struct skb_shared_hwtstamps timestamp;
6544 u64 hwclock = tr32(TG3_TX_TSTAMP_LSB);
6545 hwclock |= (u64)tr32(TG3_TX_TSTAMP_MSB) << 32;
6546
6547 tg3_hwclock_to_timestamp(tp, hwclock, &timestamp);
6548
6549 skb_tstamp_tx(skb, &timestamp);
6550 }
6551
Alexander Duyckf4188d82009-12-02 16:48:38 +00006552 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006553 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006554 skb_headlen(skb),
6555 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556
6557 ri->skb = NULL;
6558
Matt Carlsone01ee142011-07-27 14:20:50 +00006559 while (ri->fragmented) {
6560 ri->fragmented = false;
6561 sw_idx = NEXT_TX(sw_idx);
6562 ri = &tnapi->tx_buffers[sw_idx];
6563 }
6564
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565 sw_idx = NEXT_TX(sw_idx);
6566
6567 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006568 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07006569 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
6570 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006571
6572 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006573 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006574 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006575 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006576
6577 while (ri->fragmented) {
6578 ri->fragmented = false;
6579 sw_idx = NEXT_TX(sw_idx);
6580 ri = &tnapi->tx_buffers[sw_idx];
6581 }
6582
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 sw_idx = NEXT_TX(sw_idx);
6584 }
6585
Tom Herbert298376d2011-11-28 16:33:30 +00006586 pkts_compl++;
6587 bytes_compl += skb->len;
6588
Eric W. Biederman497a27b2014-03-11 14:18:14 -07006589 dev_kfree_skb_any(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07006590
6591 if (unlikely(tx_bug)) {
6592 tg3_tx_recover(tp);
6593 return;
6594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595 }
6596
Tom Herbert5cb917b2012-03-05 19:53:50 +00006597 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00006598
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006599 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600
Michael Chan1b2a7202006-08-07 21:46:02 -07006601 /* Need to make the tx_cons update visible to tg3_start_xmit()
6602 * before checking for netif_queue_stopped(). Without the
6603 * memory barrier, there is a small possibility that tg3_start_xmit()
6604 * will miss it and cause the queue to be stopped forever.
6605 */
6606 smp_mb();
6607
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006608 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006609 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006610 __netif_tx_lock(txq, smp_processor_id());
6611 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006612 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006613 netif_tx_wake_queue(txq);
6614 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616}
6617
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006618static void tg3_frag_free(bool is_frag, void *data)
6619{
6620 if (is_frag)
Alexander Duycke51423d2015-05-06 21:12:31 -07006621 skb_free_frag(data);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006622 else
6623 kfree(data);
6624}
6625
Eric Dumazet9205fd92011-11-18 06:47:01 +00006626static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006627{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006628 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
6629 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
6630
Eric Dumazet9205fd92011-11-18 06:47:01 +00006631 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006632 return;
6633
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006634 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006635 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006636 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006637 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006638}
6639
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006640
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641/* Returns size of skb allocated or < 0 on error.
6642 *
6643 * We only need to fill in the address because the other members
6644 * of the RX descriptor are invariant, see tg3_init_rings.
6645 *
6646 * Note the purposeful assymetry of cpu vs. chip accesses. For
6647 * posting buffers we only dirty the first cache line of the RX
6648 * descriptor (containing the address). Whereas for the RX status
6649 * buffers the cpu only reads the last cacheline of the RX descriptor
6650 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
6651 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006652static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006653 u32 opaque_key, u32 dest_idx_unmasked,
6654 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655{
6656 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00006657 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006658 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006660 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 switch (opaque_key) {
6663 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006664 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00006665 desc = &tpr->rx_std[dest_idx];
6666 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006667 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668 break;
6669
6670 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006671 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00006672 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00006673 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006674 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675 break;
6676
6677 default:
6678 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680
6681 /* Do not overwrite any of the map or rp information
6682 * until we are sure we can commit to a new buffer.
6683 *
6684 * Callers depend upon this behavior and assume that
6685 * we leave everything unchanged if we fail.
6686 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006687 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
6688 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006689 if (skb_size <= PAGE_SIZE) {
6690 data = netdev_alloc_frag(skb_size);
6691 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006692 } else {
6693 data = kmalloc(skb_size, GFP_ATOMIC);
6694 *frag_size = 0;
6695 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00006696 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697 return -ENOMEM;
6698
Eric Dumazet9205fd92011-11-18 06:47:01 +00006699 mapping = pci_map_single(tp->pdev,
6700 data + TG3_RX_OFFSET(tp),
6701 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006703 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006704 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00006705 return -EIO;
6706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707
Eric Dumazet9205fd92011-11-18 06:47:01 +00006708 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006709 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 desc->addr_hi = ((u64)mapping >> 32);
6712 desc->addr_lo = ((u64)mapping & 0xffffffff);
6713
Eric Dumazet9205fd92011-11-18 06:47:01 +00006714 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715}
6716
6717/* We only need to move over in the address because the other
6718 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00006719 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720 */
Matt Carlsona3896162009-11-13 13:03:44 +00006721static void tg3_recycle_rx(struct tg3_napi *tnapi,
6722 struct tg3_rx_prodring_set *dpr,
6723 u32 opaque_key, int src_idx,
6724 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725{
Matt Carlson17375d22009-08-28 14:02:18 +00006726 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
6728 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006729 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006730 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731
6732 switch (opaque_key) {
6733 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006734 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006735 dest_desc = &dpr->rx_std[dest_idx];
6736 dest_map = &dpr->rx_std_buffers[dest_idx];
6737 src_desc = &spr->rx_std[src_idx];
6738 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739 break;
6740
6741 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006742 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006743 dest_desc = &dpr->rx_jmb[dest_idx].std;
6744 dest_map = &dpr->rx_jmb_buffers[dest_idx];
6745 src_desc = &spr->rx_jmb[src_idx].std;
6746 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747 break;
6748
6749 default:
6750 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752
Eric Dumazet9205fd92011-11-18 06:47:01 +00006753 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006754 dma_unmap_addr_set(dest_map, mapping,
6755 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756 dest_desc->addr_hi = src_desc->addr_hi;
6757 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00006758
6759 /* Ensure that the update to the skb happens after the physical
6760 * addresses have been transferred to the new BD location.
6761 */
6762 smp_wmb();
6763
Eric Dumazet9205fd92011-11-18 06:47:01 +00006764 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765}
6766
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767/* The RX ring scheme is composed of multiple rings which post fresh
6768 * buffers to the chip, and one special ring the chip uses to report
6769 * status back to the host.
6770 *
6771 * The special ring reports the status of received packets to the
6772 * host. The chip does not write into the original descriptor the
6773 * RX buffer was obtained from. The chip simply takes the original
6774 * descriptor as provided by the host, updates the status and length
6775 * field, then writes this into the next status ring entry.
6776 *
6777 * Each ring the host uses to post buffers to the chip is described
6778 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
6779 * it is first placed into the on-chip ram. When the packet's length
6780 * is known, it walks down the TG3_BDINFO entries to select the ring.
6781 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
6782 * which is within the range of the new packet's length is chosen.
6783 *
6784 * The "separate ring for rx status" scheme may sound queer, but it makes
6785 * sense from a cache coherency perspective. If only the host writes
6786 * to the buffer post rings, and only the chip writes to the rx status
6787 * rings, then cache lines never move beyond shared-modified state.
6788 * If both the host and chip were to write into the same ring, cache line
6789 * eviction could occur since both entities want it in an exclusive state.
6790 */
Matt Carlson17375d22009-08-28 14:02:18 +00006791static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792{
Matt Carlson17375d22009-08-28 14:02:18 +00006793 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07006794 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006795 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00006796 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07006797 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006799 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006801 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802 /*
6803 * We need to order the read of hw_idx and the read of
6804 * the opaque cookie.
6805 */
6806 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807 work_mask = 0;
6808 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006809 std_prod_idx = tpr->rx_std_prod_idx;
6810 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00006812 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00006813 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 unsigned int len;
6815 struct sk_buff *skb;
6816 dma_addr_t dma_addr;
6817 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006818 u8 *data;
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006819 u64 tstamp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820
6821 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
6822 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
6823 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006824 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006825 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006826 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006827 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07006828 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006830 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006831 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006832 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006833 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00006834 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836
6837 work_mask |= opaque_key;
6838
Michael Chand7b95312014-02-28 15:05:10 -08006839 if (desc->err_vlan & RXD_ERR_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00006841 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842 desc_idx, *post_ptr);
6843 drop_it_no_recycle:
6844 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00006845 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846 goto next_pkt;
6847 }
6848
Eric Dumazet9205fd92011-11-18 06:47:01 +00006849 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08006850 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
6851 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006853 if ((desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6854 RXD_FLAG_PTPSTAT_PTPV1 ||
6855 (desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6856 RXD_FLAG_PTPSTAT_PTPV2) {
6857 tstamp = tr32(TG3_RX_TSTAMP_LSB);
6858 tstamp |= (u64)tr32(TG3_RX_TSTAMP_MSB) << 32;
6859 }
6860
Matt Carlsond2757fc2010-04-12 06:58:27 +00006861 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006863 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864
Eric Dumazet9205fd92011-11-18 06:47:01 +00006865 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006866 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867 if (skb_size < 0)
6868 goto drop_it;
6869
Matt Carlson287be122009-08-28 13:58:46 +00006870 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871 PCI_DMA_FROMDEVICE);
6872
Eric Dumazet9205fd92011-11-18 06:47:01 +00006873 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00006874 * after the usage of the old DMA mapping.
6875 */
6876 smp_wmb();
6877
Eric Dumazet9205fd92011-11-18 06:47:01 +00006878 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00006879
Ivan Vecera85aec732013-11-06 14:02:36 +01006880 skb = build_skb(data, frag_size);
6881 if (!skb) {
6882 tg3_frag_free(frag_size != 0, data);
6883 goto drop_it_no_recycle;
6884 }
6885 skb_reserve(skb, TG3_RX_OFFSET(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00006887 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888 desc_idx, *post_ptr);
6889
Eric Dumazet9205fd92011-11-18 06:47:01 +00006890 skb = netdev_alloc_skb(tp->dev,
6891 len + TG3_RAW_IP_ALIGN);
6892 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893 goto drop_it_no_recycle;
6894
Eric Dumazet9205fd92011-11-18 06:47:01 +00006895 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006897 memcpy(skb->data,
6898 data + TG3_RX_OFFSET(tp),
6899 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901 }
6902
Eric Dumazet9205fd92011-11-18 06:47:01 +00006903 skb_put(skb, len);
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006904 if (tstamp)
6905 tg3_hwclock_to_timestamp(tp, tstamp,
6906 skb_hwtstamps(skb));
6907
Michał Mirosławdc668912011-04-07 03:35:07 +00006908 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6910 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6911 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6912 skb->ip_summed = CHECKSUM_UNNECESSARY;
6913 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006914 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915
6916 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006917
6918 if (len > (tp->dev->mtu + ETH_HLEN) &&
Vlad Yasevich7d3083e2014-09-30 19:39:36 -04006919 skb->protocol != htons(ETH_P_8021Q) &&
6920 skb->protocol != htons(ETH_P_8021AD)) {
Eric W. Biederman497a27b2014-03-11 14:18:14 -07006921 dev_kfree_skb_any(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006922 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006923 }
6924
Matt Carlson9dc7a112010-04-12 06:58:28 +00006925 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006926 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00006927 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
Matt Carlsonbf933c82011-01-25 15:58:49 +00006928 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006929
Matt Carlsonbf933c82011-01-25 15:58:49 +00006930 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932 received++;
6933 budget--;
6934
6935next_pkt:
6936 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006937
6938 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006939 tpr->rx_std_prod_idx = std_prod_idx &
6940 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006941 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6942 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006943 work_mask &= ~RXD_OPAQUE_RING_STD;
6944 rx_std_posted = 0;
6945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006947 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006948 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006949
6950 /* Refresh hw_idx to see if there is new work */
6951 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006952 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006953 rmb();
6954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955 }
6956
6957 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006958 tnapi->rx_rcb_ptr = sw_idx;
6959 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960
6961 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006962 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006963 /* Sync BD data before updating mailbox */
6964 wmb();
6965
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006966 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006967 tpr->rx_std_prod_idx = std_prod_idx &
6968 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006969 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6970 tpr->rx_std_prod_idx);
6971 }
6972 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006973 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6974 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006975 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6976 tpr->rx_jmb_prod_idx);
6977 }
6978 mmiowb();
6979 } else if (work_mask) {
6980 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6981 * updated before the producer indices can be updated.
6982 */
6983 smp_wmb();
6984
Matt Carlson2c49a442010-09-30 10:34:35 +00006985 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6986 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006987
Michael Chan7ae52892012-03-21 15:38:33 +00006988 if (tnapi != &tp->napi[1]) {
6989 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006990 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993
6994 return received;
6995}
6996
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006997static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00007000 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007001 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
7002
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003 if (sblk->status & SD_STATUS_LINK_CHG) {
7004 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007005 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07007006 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00007007 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07007008 tw32_f(MAC_STATUS,
7009 (MAC_STATUS_SYNC_CHANGED |
7010 MAC_STATUS_CFG_CHANGED |
7011 MAC_STATUS_MI_COMPLETION |
7012 MAC_STATUS_LNKSTATE_CHANGED));
7013 udelay(40);
7014 } else
Joe Perches953c96e2013-04-09 10:18:14 +00007015 tg3_setup_phy(tp, false);
David S. Millerf47c11e2005-06-24 20:18:35 -07007016 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017 }
7018 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007019}
7020
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007021static int tg3_rx_prodring_xfer(struct tg3 *tp,
7022 struct tg3_rx_prodring_set *dpr,
7023 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007024{
7025 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007026 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007027
7028 while (1) {
7029 src_prod_idx = spr->rx_std_prod_idx;
7030
7031 /* Make sure updates to the rx_std_buffers[] entries and the
7032 * standard producer index are seen in the correct order.
7033 */
7034 smp_rmb();
7035
7036 if (spr->rx_std_cons_idx == src_prod_idx)
7037 break;
7038
7039 if (spr->rx_std_cons_idx < src_prod_idx)
7040 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
7041 else
Matt Carlson2c49a442010-09-30 10:34:35 +00007042 cpycnt = tp->rx_std_ring_mask + 1 -
7043 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007044
Matt Carlson2c49a442010-09-30 10:34:35 +00007045 cpycnt = min(cpycnt,
7046 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007047
7048 si = spr->rx_std_cons_idx;
7049 di = dpr->rx_std_prod_idx;
7050
Matt Carlsone92967b2010-02-12 14:47:06 +00007051 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007052 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00007053 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007054 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00007055 break;
7056 }
7057 }
7058
7059 if (!cpycnt)
7060 break;
7061
7062 /* Ensure that updates to the rx_std_buffers ring and the
7063 * shadowed hardware producer ring from tg3_recycle_skb() are
7064 * ordered correctly WRT the skb check above.
7065 */
7066 smp_rmb();
7067
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007068 memcpy(&dpr->rx_std_buffers[di],
7069 &spr->rx_std_buffers[si],
7070 cpycnt * sizeof(struct ring_info));
7071
7072 for (i = 0; i < cpycnt; i++, di++, si++) {
7073 struct tg3_rx_buffer_desc *sbd, *dbd;
7074 sbd = &spr->rx_std[si];
7075 dbd = &dpr->rx_std[di];
7076 dbd->addr_hi = sbd->addr_hi;
7077 dbd->addr_lo = sbd->addr_lo;
7078 }
7079
Matt Carlson2c49a442010-09-30 10:34:35 +00007080 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
7081 tp->rx_std_ring_mask;
7082 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
7083 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007084 }
7085
7086 while (1) {
7087 src_prod_idx = spr->rx_jmb_prod_idx;
7088
7089 /* Make sure updates to the rx_jmb_buffers[] entries and
7090 * the jumbo producer index are seen in the correct order.
7091 */
7092 smp_rmb();
7093
7094 if (spr->rx_jmb_cons_idx == src_prod_idx)
7095 break;
7096
7097 if (spr->rx_jmb_cons_idx < src_prod_idx)
7098 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
7099 else
Matt Carlson2c49a442010-09-30 10:34:35 +00007100 cpycnt = tp->rx_jmb_ring_mask + 1 -
7101 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007102
7103 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00007104 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007105
7106 si = spr->rx_jmb_cons_idx;
7107 di = dpr->rx_jmb_prod_idx;
7108
Matt Carlsone92967b2010-02-12 14:47:06 +00007109 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007110 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00007111 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007112 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00007113 break;
7114 }
7115 }
7116
7117 if (!cpycnt)
7118 break;
7119
7120 /* Ensure that updates to the rx_jmb_buffers ring and the
7121 * shadowed hardware producer ring from tg3_recycle_skb() are
7122 * ordered correctly WRT the skb check above.
7123 */
7124 smp_rmb();
7125
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007126 memcpy(&dpr->rx_jmb_buffers[di],
7127 &spr->rx_jmb_buffers[si],
7128 cpycnt * sizeof(struct ring_info));
7129
7130 for (i = 0; i < cpycnt; i++, di++, si++) {
7131 struct tg3_rx_buffer_desc *sbd, *dbd;
7132 sbd = &spr->rx_jmb[si].std;
7133 dbd = &dpr->rx_jmb[di].std;
7134 dbd->addr_hi = sbd->addr_hi;
7135 dbd->addr_lo = sbd->addr_lo;
7136 }
7137
Matt Carlson2c49a442010-09-30 10:34:35 +00007138 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
7139 tp->rx_jmb_ring_mask;
7140 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
7141 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007142 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007143
7144 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007145}
7146
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007147static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
7148{
7149 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150
7151 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007152 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00007153 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00007154 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07007155 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156 }
7157
Matt Carlsonf891ea12012-04-24 13:37:01 +00007158 if (!tnapi->rx_rcb_prod_idx)
7159 return work_done;
7160
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161 /* run RX thread, within the bounds set by NAPI.
7162 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007163 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007165 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00007166 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167
Joe Perches63c3a662011-04-26 08:12:10 +00007168 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00007169 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007170 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007171 u32 std_prod_idx = dpr->rx_std_prod_idx;
7172 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007173
Michael Chan7ae52892012-03-21 15:38:33 +00007174 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00007175 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007176 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00007177 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007178
7179 wmb();
7180
Matt Carlsone4af1af2010-02-12 14:47:05 +00007181 if (std_prod_idx != dpr->rx_std_prod_idx)
7182 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
7183 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007184
Matt Carlsone4af1af2010-02-12 14:47:05 +00007185 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
7186 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
7187 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007188
7189 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007190
7191 if (err)
7192 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007193 }
7194
David S. Miller6f535762007-10-11 18:08:29 -07007195 return work_done;
7196}
David S. Millerf7383c22005-05-18 22:50:53 -07007197
Matt Carlsondb219972011-11-04 09:15:03 +00007198static inline void tg3_reset_task_schedule(struct tg3 *tp)
7199{
7200 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
7201 schedule_work(&tp->reset_task);
7202}
7203
7204static inline void tg3_reset_task_cancel(struct tg3 *tp)
7205{
7206 cancel_work_sync(&tp->reset_task);
7207 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00007208 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00007209}
7210
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007211static int tg3_poll_msix(struct napi_struct *napi, int budget)
7212{
7213 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7214 struct tg3 *tp = tnapi->tp;
7215 int work_done = 0;
7216 struct tg3_hw_status *sblk = tnapi->hw_status;
7217
7218 while (1) {
7219 work_done = tg3_poll_work(tnapi, work_done, budget);
7220
Joe Perches63c3a662011-04-26 08:12:10 +00007221 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007222 goto tx_recovery;
7223
7224 if (unlikely(work_done >= budget))
7225 break;
7226
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007227 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007228 * to tell the hw how much work has been processed,
7229 * so we must read it before checking for more work.
7230 */
7231 tnapi->last_tag = sblk->status_tag;
7232 tnapi->last_irq_tag = tnapi->last_tag;
7233 rmb();
7234
7235 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00007236 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
7237 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00007238
7239 /* This test here is not race free, but will reduce
7240 * the number of interrupts by looping again.
7241 */
7242 if (tnapi == &tp->napi[1] && tp->rx_refill)
7243 continue;
7244
Eric Dumazet24d2e4a2015-03-05 10:41:34 -08007245 napi_complete_done(napi, work_done);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007246 /* Reenable interrupts. */
7247 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00007248
7249 /* This test here is synchronized by napi_schedule()
7250 * and napi_complete() to close the race condition.
7251 */
7252 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
7253 tw32(HOSTCC_MODE, tp->coalesce_mode |
7254 HOSTCC_MODE_ENABLE |
7255 tnapi->coal_now);
7256 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007257 mmiowb();
7258 break;
7259 }
7260 }
7261
7262 return work_done;
7263
7264tx_recovery:
7265 /* work_done is guaranteed to be less than budget. */
7266 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007267 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007268 return work_done;
7269}
7270
Matt Carlsone64de4e2011-04-13 11:05:05 +00007271static void tg3_process_error(struct tg3 *tp)
7272{
7273 u32 val;
7274 bool real_error = false;
7275
Joe Perches63c3a662011-04-26 08:12:10 +00007276 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00007277 return;
7278
7279 /* Check Flow Attention register */
7280 val = tr32(HOSTCC_FLOW_ATTN);
7281 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
7282 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
7283 real_error = true;
7284 }
7285
7286 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
7287 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
7288 real_error = true;
7289 }
7290
7291 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
7292 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
7293 real_error = true;
7294 }
7295
7296 if (!real_error)
7297 return;
7298
7299 tg3_dump_state(tp);
7300
Joe Perches63c3a662011-04-26 08:12:10 +00007301 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00007302 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00007303}
7304
David S. Miller6f535762007-10-11 18:08:29 -07007305static int tg3_poll(struct napi_struct *napi, int budget)
7306{
Matt Carlson8ef04422009-08-28 14:01:37 +00007307 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7308 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07007309 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00007310 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07007311
7312 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00007313 if (sblk->status & SD_STATUS_ERROR)
7314 tg3_process_error(tp);
7315
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007316 tg3_poll_link(tp);
7317
Matt Carlson17375d22009-08-28 14:02:18 +00007318 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07007319
Joe Perches63c3a662011-04-26 08:12:10 +00007320 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07007321 goto tx_recovery;
7322
7323 if (unlikely(work_done >= budget))
7324 break;
7325
Joe Perches63c3a662011-04-26 08:12:10 +00007326 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00007327 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07007328 * to tell the hw how much work has been processed,
7329 * so we must read it before checking for more work.
7330 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007331 tnapi->last_tag = sblk->status_tag;
7332 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07007333 rmb();
7334 } else
7335 sblk->status &= ~SD_STATUS_UPDATED;
7336
Matt Carlson17375d22009-08-28 14:02:18 +00007337 if (likely(!tg3_has_work(tnapi))) {
Eric Dumazet24d2e4a2015-03-05 10:41:34 -08007338 napi_complete_done(napi, work_done);
Matt Carlson17375d22009-08-28 14:02:18 +00007339 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07007340 break;
7341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342 }
7343
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007344 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07007345
7346tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07007347 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08007348 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007349 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07007350 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351}
7352
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007353static void tg3_napi_disable(struct tg3 *tp)
7354{
7355 int i;
7356
7357 for (i = tp->irq_cnt - 1; i >= 0; i--)
7358 napi_disable(&tp->napi[i].napi);
7359}
7360
7361static void tg3_napi_enable(struct tg3 *tp)
7362{
7363 int i;
7364
7365 for (i = 0; i < tp->irq_cnt; i++)
7366 napi_enable(&tp->napi[i].napi);
7367}
7368
7369static void tg3_napi_init(struct tg3 *tp)
7370{
7371 int i;
7372
7373 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
7374 for (i = 1; i < tp->irq_cnt; i++)
7375 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
7376}
7377
7378static void tg3_napi_fini(struct tg3 *tp)
7379{
7380 int i;
7381
7382 for (i = 0; i < tp->irq_cnt; i++)
7383 netif_napi_del(&tp->napi[i].napi);
7384}
7385
7386static inline void tg3_netif_stop(struct tg3 *tp)
7387{
7388 tp->dev->trans_start = jiffies; /* prevent tx timeout */
7389 tg3_napi_disable(tp);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007390 netif_carrier_off(tp->dev);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007391 netif_tx_disable(tp->dev);
7392}
7393
Nithin Nayak Sujir35763062012-12-03 19:36:56 +00007394/* tp->lock must be held */
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007395static inline void tg3_netif_start(struct tg3 *tp)
7396{
Matt Carlsonbe947302012-12-03 19:36:57 +00007397 tg3_ptp_resume(tp);
7398
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007399 /* NOTE: unconditional netif_tx_wake_all_queues is only
7400 * appropriate so long as all callers are assured to
7401 * have free tx slots (such as after tg3_init_hw)
7402 */
7403 netif_tx_wake_all_queues(tp->dev);
7404
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007405 if (tp->link_up)
7406 netif_carrier_on(tp->dev);
7407
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007408 tg3_napi_enable(tp);
7409 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
7410 tg3_enable_ints(tp);
7411}
7412
David S. Millerf47c11e2005-06-24 20:18:35 -07007413static void tg3_irq_quiesce(struct tg3 *tp)
Prashant Sreedharan932f19d2015-01-14 11:34:44 -08007414 __releases(tp->lock)
7415 __acquires(tp->lock)
David S. Millerf47c11e2005-06-24 20:18:35 -07007416{
Matt Carlson4f125f42009-09-01 12:55:02 +00007417 int i;
7418
David S. Millerf47c11e2005-06-24 20:18:35 -07007419 BUG_ON(tp->irq_sync);
7420
7421 tp->irq_sync = 1;
7422 smp_mb();
7423
Prashant Sreedharan932f19d2015-01-14 11:34:44 -08007424 spin_unlock_bh(&tp->lock);
7425
Matt Carlson4f125f42009-09-01 12:55:02 +00007426 for (i = 0; i < tp->irq_cnt; i++)
7427 synchronize_irq(tp->napi[i].irq_vec);
Prashant Sreedharan932f19d2015-01-14 11:34:44 -08007428
7429 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07007430}
7431
David S. Millerf47c11e2005-06-24 20:18:35 -07007432/* Fully shutdown all tg3 driver activity elsewhere in the system.
7433 * If irq_sync is non-zero, then the IRQ handler must be synchronized
7434 * with as well. Most of the time, this is not necessary except when
7435 * shutting down the device.
7436 */
7437static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
7438{
Michael Chan46966542007-07-11 19:47:19 -07007439 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07007440 if (irq_sync)
7441 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007442}
7443
7444static inline void tg3_full_unlock(struct tg3 *tp)
7445{
David S. Millerf47c11e2005-06-24 20:18:35 -07007446 spin_unlock_bh(&tp->lock);
7447}
7448
Michael Chanfcfa0a32006-03-20 22:28:41 -08007449/* One-shot MSI handler - Chip automatically disables interrupt
7450 * after sending MSI so driver doesn't have to do it.
7451 */
David Howells7d12e782006-10-05 14:55:46 +01007452static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007453{
Matt Carlson09943a12009-08-28 14:01:57 +00007454 struct tg3_napi *tnapi = dev_id;
7455 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007456
Matt Carlson898a56f2009-08-28 14:02:40 +00007457 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007458 if (tnapi->rx_rcb)
7459 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007460
7461 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007462 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007463
7464 return IRQ_HANDLED;
7465}
7466
Michael Chan88b06bc22005-04-21 17:13:25 -07007467/* MSI ISR - No need to check for interrupt sharing and no need to
7468 * flush status block and interrupt mailbox. PCI ordering rules
7469 * guarantee that MSI will arrive after the status block.
7470 */
David Howells7d12e782006-10-05 14:55:46 +01007471static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07007472{
Matt Carlson09943a12009-08-28 14:01:57 +00007473 struct tg3_napi *tnapi = dev_id;
7474 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07007475
Matt Carlson898a56f2009-08-28 14:02:40 +00007476 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007477 if (tnapi->rx_rcb)
7478 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07007479 /*
David S. Millerfac9b832005-05-18 22:46:34 -07007480 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07007481 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07007482 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07007483 * NIC to stop sending us irqs, engaging "in-intr-handler"
7484 * event coalescing.
7485 */
Matt Carlson5b39de92011-08-31 11:44:50 +00007486 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07007487 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007488 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07007489
Michael Chan88b06bc22005-04-21 17:13:25 -07007490 return IRQ_RETVAL(1);
7491}
7492
David Howells7d12e782006-10-05 14:55:46 +01007493static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494{
Matt Carlson09943a12009-08-28 14:01:57 +00007495 struct tg3_napi *tnapi = dev_id;
7496 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007497 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498 unsigned int handled = 1;
7499
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500 /* In INTx mode, it is possible for the interrupt to arrive at
7501 * the CPU before the status block posted prior to the interrupt.
7502 * Reading the PCI State register will confirm whether the
7503 * interrupt is ours and will flush the status block.
7504 */
Michael Chand18edcb2007-03-24 20:57:11 -07007505 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00007506 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007507 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7508 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007509 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07007510 }
Michael Chand18edcb2007-03-24 20:57:11 -07007511 }
7512
7513 /*
7514 * Writing any value to intr-mbox-0 clears PCI INTA# and
7515 * chip-internal interrupt pending events.
7516 * Writing non-zero to intr-mbox-0 additional tells the
7517 * NIC to stop sending us irqs, engaging "in-intr-handler"
7518 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007519 *
7520 * Flush the mailbox to de-assert the IRQ immediately to prevent
7521 * spurious interrupts. The flush impacts performance but
7522 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007523 */
Michael Chanc04cb342007-05-07 00:26:15 -07007524 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07007525 if (tg3_irq_sync(tp))
7526 goto out;
7527 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00007528 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00007529 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00007530 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07007531 } else {
7532 /* No work, shared interrupt perhaps? re-enable
7533 * interrupts, and flush that PCI write
7534 */
7535 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
7536 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07007537 }
David S. Millerf47c11e2005-06-24 20:18:35 -07007538out:
David S. Millerfac9b832005-05-18 22:46:34 -07007539 return IRQ_RETVAL(handled);
7540}
7541
David Howells7d12e782006-10-05 14:55:46 +01007542static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07007543{
Matt Carlson09943a12009-08-28 14:01:57 +00007544 struct tg3_napi *tnapi = dev_id;
7545 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007546 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07007547 unsigned int handled = 1;
7548
David S. Millerfac9b832005-05-18 22:46:34 -07007549 /* In INTx mode, it is possible for the interrupt to arrive at
7550 * the CPU before the status block posted prior to the interrupt.
7551 * Reading the PCI State register will confirm whether the
7552 * interrupt is ours and will flush the status block.
7553 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007554 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00007555 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007556 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7557 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007558 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 }
Michael Chand18edcb2007-03-24 20:57:11 -07007560 }
7561
7562 /*
7563 * writing any value to intr-mbox-0 clears PCI INTA# and
7564 * chip-internal interrupt pending events.
7565 * writing non-zero to intr-mbox-0 additional tells the
7566 * NIC to stop sending us irqs, engaging "in-intr-handler"
7567 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007568 *
7569 * Flush the mailbox to de-assert the IRQ immediately to prevent
7570 * spurious interrupts. The flush impacts performance but
7571 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007572 */
Michael Chanc04cb342007-05-07 00:26:15 -07007573 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00007574
7575 /*
7576 * In a shared interrupt configuration, sometimes other devices'
7577 * interrupts will scream. We record the current status tag here
7578 * so that the above check can report that the screaming interrupts
7579 * are unhandled. Eventually they will be silenced.
7580 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007581 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00007582
Michael Chand18edcb2007-03-24 20:57:11 -07007583 if (tg3_irq_sync(tp))
7584 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00007585
Matt Carlson72334482009-08-28 14:03:01 +00007586 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00007587
Matt Carlson09943a12009-08-28 14:01:57 +00007588 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00007589
David S. Millerf47c11e2005-06-24 20:18:35 -07007590out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591 return IRQ_RETVAL(handled);
7592}
7593
Michael Chan79381092005-04-21 17:13:59 -07007594/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01007595static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07007596{
Matt Carlson09943a12009-08-28 14:01:57 +00007597 struct tg3_napi *tnapi = dev_id;
7598 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007599 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07007600
Michael Chanf9804dd2005-09-27 12:13:10 -07007601 if ((sblk->status & SD_STATUS_UPDATED) ||
7602 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07007603 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07007604 return IRQ_RETVAL(1);
7605 }
7606 return IRQ_RETVAL(0);
7607}
7608
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609#ifdef CONFIG_NET_POLL_CONTROLLER
7610static void tg3_poll_controller(struct net_device *dev)
7611{
Matt Carlson4f125f42009-09-01 12:55:02 +00007612 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07007613 struct tg3 *tp = netdev_priv(dev);
7614
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +00007615 if (tg3_irq_sync(tp))
7616 return;
7617
Matt Carlson4f125f42009-09-01 12:55:02 +00007618 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00007619 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620}
7621#endif
7622
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623static void tg3_tx_timeout(struct net_device *dev)
7624{
7625 struct tg3 *tp = netdev_priv(dev);
7626
Michael Chanb0408752007-02-13 12:18:30 -08007627 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007628 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00007629 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08007630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631
Matt Carlsondb219972011-11-04 09:15:03 +00007632 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633}
7634
Michael Chanc58ec932005-09-17 00:46:27 -07007635/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
7636static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
7637{
7638 u32 base = (u32) mapping & 0xffffffff;
7639
Nithin Sujir37567912013-12-19 17:44:11 -08007640 return base + len + 8 < base;
Michael Chanc58ec932005-09-17 00:46:27 -07007641}
7642
Michael Chan0f0d1512013-05-13 11:04:16 +00007643/* Test for TSO DMA buffers that cross into regions which are within MSS bytes
7644 * of any 4GB boundaries: 4G, 8G, etc
7645 */
7646static inline int tg3_4g_tso_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7647 u32 len, u32 mss)
7648{
7649 if (tg3_asic_rev(tp) == ASIC_REV_5762 && mss) {
7650 u32 base = (u32) mapping & 0xffffffff;
7651
7652 return ((base + len + (mss & 0x3fff)) < base);
7653 }
7654 return 0;
7655}
7656
Michael Chan72f2afb2006-03-06 19:28:35 -08007657/* Test for DMA addresses > 40-bit */
7658static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7659 int len)
7660{
7661#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00007662 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00007663 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08007664 return 0;
7665#else
7666 return 0;
7667#endif
7668}
7669
Matt Carlsond1a3b732011-07-27 14:20:51 +00007670static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007671 dma_addr_t mapping, u32 len, u32 flags,
7672 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00007673{
Matt Carlson92cd3a12011-07-27 14:20:47 +00007674 txbd->addr_hi = ((u64) mapping >> 32);
7675 txbd->addr_lo = ((u64) mapping & 0xffffffff);
7676 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
7677 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00007678}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679
Matt Carlson84b67b22011-07-27 14:20:52 +00007680static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007681 dma_addr_t map, u32 len, u32 flags,
7682 u32 mss, u32 vlan)
7683{
7684 struct tg3 *tp = tnapi->tp;
7685 bool hwbug = false;
7686
7687 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00007688 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007689
7690 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007691 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007692
Michael Chan0f0d1512013-05-13 11:04:16 +00007693 if (tg3_4g_tso_overflow_test(tp, map, len, mss))
7694 hwbug = true;
7695
Matt Carlsond1a3b732011-07-27 14:20:51 +00007696 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007697 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007698
Matt Carlsona4cb4282011-12-14 11:09:58 +00007699 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007700 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00007701 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00007702 while (len > tp->dma_limit && *budget) {
7703 u32 frag_len = tp->dma_limit;
7704 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00007705
Matt Carlsonb9e45482011-11-04 09:14:59 +00007706 /* Avoid the 8byte DMA problem */
7707 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00007708 len += tp->dma_limit / 2;
7709 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00007710 }
7711
Matt Carlsonb9e45482011-11-04 09:14:59 +00007712 tnapi->tx_buffers[*entry].fragmented = true;
7713
7714 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7715 frag_len, tmp_flag, mss, vlan);
7716 *budget -= 1;
7717 prvidx = *entry;
7718 *entry = NEXT_TX(*entry);
7719
Matt Carlsone31aa982011-07-27 14:20:53 +00007720 map += frag_len;
7721 }
7722
7723 if (len) {
7724 if (*budget) {
7725 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7726 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00007727 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00007728 *entry = NEXT_TX(*entry);
7729 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00007730 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007731 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00007732 }
7733 }
7734 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00007735 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7736 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00007737 *entry = NEXT_TX(*entry);
7738 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00007739
7740 return hwbug;
7741}
7742
Matt Carlson0d681b22011-07-27 14:20:49 +00007743static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00007744{
7745 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00007746 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00007747 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007748
Matt Carlson0d681b22011-07-27 14:20:49 +00007749 skb = txb->skb;
7750 txb->skb = NULL;
7751
Matt Carlson432aa7e2011-05-19 12:12:45 +00007752 pci_unmap_single(tnapi->tp->pdev,
7753 dma_unmap_addr(txb, mapping),
7754 skb_headlen(skb),
7755 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007756
7757 while (txb->fragmented) {
7758 txb->fragmented = false;
7759 entry = NEXT_TX(entry);
7760 txb = &tnapi->tx_buffers[entry];
7761 }
7762
Matt Carlsonba1142e2011-11-04 09:15:00 +00007763 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00007764 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007765
7766 entry = NEXT_TX(entry);
7767 txb = &tnapi->tx_buffers[entry];
7768
7769 pci_unmap_page(tnapi->tp->pdev,
7770 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00007771 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007772
7773 while (txb->fragmented) {
7774 txb->fragmented = false;
7775 entry = NEXT_TX(entry);
7776 txb = &tnapi->tx_buffers[entry];
7777 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00007778 }
7779}
7780
Michael Chan72f2afb2006-03-06 19:28:35 -08007781/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007782static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04007783 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00007784 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007785 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786{
Matt Carlson24f4efd2009-11-13 13:03:35 +00007787 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04007788 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07007789 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007790 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791
Joe Perches41535772013-02-16 11:20:04 +00007792 if (tg3_asic_rev(tp) != ASIC_REV_5701)
Matt Carlson41588ba2008-04-19 18:12:33 -07007793 new_skb = skb_copy(skb, GFP_ATOMIC);
7794 else {
7795 int more_headroom = 4 - ((unsigned long)skb->data & 3);
7796
7797 new_skb = skb_copy_expand(skb,
7798 skb_headroom(skb) + more_headroom,
7799 skb_tailroom(skb), GFP_ATOMIC);
7800 }
7801
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07007803 ret = -1;
7804 } else {
7805 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00007806 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
7807 PCI_DMA_TODEVICE);
7808 /* Make sure the mapping succeeded */
7809 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Eric W. Biederman497a27b2014-03-11 14:18:14 -07007810 dev_kfree_skb_any(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07007811 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07007812 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007813 u32 save_entry = *entry;
7814
Matt Carlson92cd3a12011-07-27 14:20:47 +00007815 base_flags |= TXD_FLAG_END;
7816
Matt Carlson84b67b22011-07-27 14:20:52 +00007817 tnapi->tx_buffers[*entry].skb = new_skb;
7818 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00007819 mapping, new_addr);
7820
Matt Carlson84b67b22011-07-27 14:20:52 +00007821 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007822 new_skb->len, base_flags,
7823 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00007824 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Eric W. Biederman497a27b2014-03-11 14:18:14 -07007825 dev_kfree_skb_any(new_skb);
Matt Carlsond1a3b732011-07-27 14:20:51 +00007826 ret = -1;
7827 }
Michael Chanc58ec932005-09-17 00:46:27 -07007828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829 }
7830
Eric W. Biederman497a27b2014-03-11 14:18:14 -07007831 dev_kfree_skb_any(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04007832 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07007833 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834}
7835
Matt Carlson2ffcc982011-05-19 12:12:44 +00007836static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07007837
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07007838/* Use GSO to workaround all TSO packets that meet HW bug conditions
7839 * indicated in tg3_tx_frag_set()
Michael Chan52c0fd82006-06-29 20:15:54 -07007840 */
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07007841static int tg3_tso_bug(struct tg3 *tp, struct tg3_napi *tnapi,
7842 struct netdev_queue *txq, struct sk_buff *skb)
Michael Chan52c0fd82006-06-29 20:15:54 -07007843{
7844 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007845 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07007846
7847 /* Estimate the number of fragments in the worst case */
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07007848 if (unlikely(tg3_tx_avail(tnapi) <= frag_cnt_est)) {
7849 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007850
7851 /* netif_tx_stop_queue() must be done before checking
7852 * checking tx index in tg3_tx_avail() below, because in
7853 * tg3_tx(), we update tx index before checking for
7854 * netif_tx_queue_stopped().
7855 */
7856 smp_mb();
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07007857 if (tg3_tx_avail(tnapi) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08007858 return NETDEV_TX_BUSY;
7859
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07007860 netif_tx_wake_queue(txq);
Michael Chan52c0fd82006-06-29 20:15:54 -07007861 }
7862
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07007863 segs = skb_gso_segment(skb, tp->dev->features &
7864 ~(NETIF_F_TSO | NETIF_F_TSO6));
Prashant Sreedharan40c1dea2014-06-18 18:38:13 -07007865 if (IS_ERR(segs) || !segs)
Michael Chan52c0fd82006-06-29 20:15:54 -07007866 goto tg3_tso_bug_end;
7867
7868 do {
7869 nskb = segs;
7870 segs = segs->next;
7871 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00007872 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007873 } while (segs);
7874
7875tg3_tso_bug_end:
Eric W. Biederman497a27b2014-03-11 14:18:14 -07007876 dev_kfree_skb_any(skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007877
7878 return NETDEV_TX_OK;
7879}
Michael Chan52c0fd82006-06-29 20:15:54 -07007880
Michael Chand71c0dc2014-05-11 20:22:53 -07007881/* hard_start_xmit for all devices */
Matt Carlson2ffcc982011-05-19 12:12:44 +00007882static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08007883{
7884 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00007885 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00007886 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007887 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07007888 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007889 struct tg3_napi *tnapi;
7890 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007891 unsigned int last;
Michael Chand3f6f3a2014-05-11 20:22:54 -07007892 struct iphdr *iph = NULL;
7893 struct tcphdr *tcph = NULL;
7894 __sum16 tcp_csum = 0, ip_csum = 0;
7895 __be16 ip_tot_len = 0;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007896
Matt Carlson24f4efd2009-11-13 13:03:35 +00007897 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
7898 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00007899 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007900 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007901
Matt Carlson84b67b22011-07-27 14:20:52 +00007902 budget = tg3_tx_avail(tnapi);
7903
Michael Chan00b70502006-06-17 21:58:45 -07007904 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007905 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07007906 * interrupt. Furthermore, IRQ processing runs lockless so we have
7907 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007909 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007910 if (!netif_tx_queue_stopped(txq)) {
7911 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007912
7913 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00007914 netdev_err(dev,
7915 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917 return NETDEV_TX_BUSY;
7918 }
7919
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007920 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921 base_flags = 0;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007922
Matt Carlsonbe98da62010-07-11 09:31:46 +00007923 mss = skb_shinfo(skb)->gso_size;
7924 if (mss) {
Matt Carlson34195c32010-07-11 09:31:42 +00007925 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926
françois romieu105dcb52014-03-29 12:26:29 +01007927 if (skb_cow_head(skb, 0))
Eric Dumazet48855432011-10-24 07:53:03 +00007928 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929
Matt Carlson34195c32010-07-11 09:31:42 +00007930 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07007931 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007932
Eric Dumazeta5a11952012-01-23 01:22:09 +00007933 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00007934
Vlad Yasevich476c1882014-09-18 10:31:17 -04007935 /* HW/FW can not correctly segment packets that have been
7936 * vlan encapsulated.
7937 */
7938 if (skb->protocol == htons(ETH_P_8021Q) ||
7939 skb->protocol == htons(ETH_P_8021AD))
7940 return tg3_tso_bug(tp, tnapi, txq, skb);
7941
Eric Dumazeta5a11952012-01-23 01:22:09 +00007942 if (!skb_is_gso_v6(skb)) {
Michael Chand71c0dc2014-05-11 20:22:53 -07007943 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
7944 tg3_flag(tp, TSO_BUG))
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07007945 return tg3_tso_bug(tp, tnapi, txq, skb);
Michael Chand71c0dc2014-05-11 20:22:53 -07007946
Michael Chand3f6f3a2014-05-11 20:22:54 -07007947 ip_csum = iph->check;
7948 ip_tot_len = iph->tot_len;
Matt Carlson34195c32010-07-11 09:31:42 +00007949 iph->check = 0;
7950 iph->tot_len = htons(mss + hdr_len);
7951 }
7952
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7954 TXD_FLAG_CPU_POST_DMA);
7955
Michael Chand3f6f3a2014-05-11 20:22:54 -07007956 tcph = tcp_hdr(skb);
7957 tcp_csum = tcph->check;
7958
Joe Perches63c3a662011-04-26 08:12:10 +00007959 if (tg3_flag(tp, HW_TSO_1) ||
7960 tg3_flag(tp, HW_TSO_2) ||
7961 tg3_flag(tp, HW_TSO_3)) {
Michael Chand3f6f3a2014-05-11 20:22:54 -07007962 tcph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Michael Chand3f6f3a2014-05-11 20:22:54 -07007964 } else {
7965 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
7966 0, IPPROTO_TCP, 0);
7967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968
Joe Perches63c3a662011-04-26 08:12:10 +00007969 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007970 mss |= (hdr_len & 0xc) << 12;
7971 if (hdr_len & 0x10)
7972 base_flags |= 0x00000010;
7973 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007974 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007975 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007976 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +00007977 tg3_asic_rev(tp) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007978 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007979 int tsflags;
7980
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007981 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982 mss |= (tsflags << 11);
7983 }
7984 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007985 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986 int tsflags;
7987
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007988 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989 base_flags |= tsflags << 12;
7990 }
7991 }
Vlad Yasevich476c1882014-09-18 10:31:17 -04007992 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
7993 /* HW/FW can not correctly checksum packets that have been
7994 * vlan encapsulated.
7995 */
7996 if (skb->protocol == htons(ETH_P_8021Q) ||
7997 skb->protocol == htons(ETH_P_8021AD)) {
7998 if (skb_checksum_help(skb))
7999 goto drop;
8000 } else {
8001 base_flags |= TXD_FLAG_TCPUDP_CSUM;
8002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00008004
Matt Carlson93a700a2011-08-31 11:44:54 +00008005 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
8006 !mss && skb->len > VLAN_ETH_FRAME_LEN)
8007 base_flags |= TXD_FLAG_JMB_PKT;
8008
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01008009 if (skb_vlan_tag_present(skb)) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00008010 base_flags |= TXD_FLAG_VLAN;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01008011 vlan = skb_vlan_tag_get(skb);
Matt Carlson92cd3a12011-07-27 14:20:47 +00008012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008013
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00008014 if ((unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) &&
8015 tg3_flag(tp, TX_TSTAMP_EN)) {
8016 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
8017 base_flags |= TXD_FLAG_HWTSTAMP;
8018 }
8019
Alexander Duyckf4188d82009-12-02 16:48:38 +00008020 len = skb_headlen(skb);
8021
8022 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00008023 if (pci_dma_mapping_error(tp->pdev, mapping))
8024 goto drop;
8025
David S. Miller90079ce2008-09-11 04:52:51 -07008026
Matt Carlsonf3f3f272009-08-28 14:03:21 +00008027 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00008028 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029
8030 would_hit_hwbug = 0;
8031
Joe Perches63c3a662011-04-26 08:12:10 +00008032 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07008033 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034
Matt Carlson84b67b22011-07-27 14:20:52 +00008035 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00008036 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00008037 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00008038 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00008039 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00008040 u32 tmp_mss = mss;
8041
8042 if (!tg3_flag(tp, HW_TSO_1) &&
8043 !tg3_flag(tp, HW_TSO_2) &&
8044 !tg3_flag(tp, HW_TSO_3))
8045 tmp_mss = 0;
8046
Matt Carlsonc5665a52012-02-13 10:20:12 +00008047 /* Now loop through additional data
8048 * fragments, and queue them.
8049 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050 last = skb_shinfo(skb)->nr_frags - 1;
8051 for (i = 0; i <= last; i++) {
8052 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
8053
Eric Dumazet9e903e02011-10-18 21:00:24 +00008054 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00008055 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01008056 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008057
Matt Carlsonf3f3f272009-08-28 14:03:21 +00008058 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00008059 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00008060 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01008061 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00008062 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063
Matt Carlsonb9e45482011-11-04 09:14:59 +00008064 if (!budget ||
8065 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00008066 len, base_flags |
8067 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00008068 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00008069 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00008070 break;
8071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072 }
8073 }
8074
8075 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00008076 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008077
Michael Chand3f6f3a2014-05-11 20:22:54 -07008078 if (mss) {
8079 /* If it's a TSO packet, do GSO instead of
8080 * allocating and copying to a large linear SKB
8081 */
8082 if (ip_tot_len) {
8083 iph->check = ip_csum;
8084 iph->tot_len = ip_tot_len;
8085 }
8086 tcph->check = tcp_csum;
Prashant Sreedharan4d8fdc92014-08-05 16:02:02 -07008087 return tg3_tso_bug(tp, tnapi, txq, skb);
Michael Chand3f6f3a2014-05-11 20:22:54 -07008088 }
8089
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090 /* If the workaround fails due to memory/mapping
8091 * failure, silently drop this packet.
8092 */
Matt Carlson84b67b22011-07-27 14:20:52 +00008093 entry = tnapi->tx_prod;
8094 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04008095 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00008096 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00008097 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098 }
8099
Richard Cochrand515b452011-06-19 03:31:41 +00008100 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00008101 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00008102
Michael Chan6541b802012-03-04 14:48:14 +00008103 /* Sync BD data before updating mailbox */
8104 wmb();
8105
Matt Carlsonf3f3f272009-08-28 14:03:21 +00008106 tnapi->tx_prod = entry;
8107 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00008108 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00008109
8110 /* netif_tx_stop_queue() must be done before checking
8111 * checking tx index in tg3_tx_avail() below, because in
8112 * tg3_tx(), we update tx index before checking for
8113 * netif_tx_queue_stopped().
8114 */
8115 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00008116 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00008117 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07008118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119
Prashant Sreedharan2c7c9ea2014-10-13 09:21:42 -07008120 if (!skb->xmit_more || netif_xmit_stopped(txq)) {
8121 /* Packets are ready, update Tx producer idx on card. */
8122 tw32_tx_mbox(tnapi->prodmbox, entry);
8123 mmiowb();
8124 }
8125
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00008127
8128dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00008129 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00008130 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00008131drop:
Eric W. Biederman497a27b2014-03-11 14:18:14 -07008132 dev_kfree_skb_any(skb);
Eric Dumazet48855432011-10-24 07:53:03 +00008133drop_nofree:
8134 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00008135 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136}
8137
Matt Carlson6e01b202011-08-19 13:58:20 +00008138static void tg3_mac_loopback(struct tg3 *tp, bool enable)
8139{
8140 if (enable) {
8141 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
8142 MAC_MODE_PORT_MODE_MASK);
8143
8144 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
8145
8146 if (!tg3_flag(tp, 5705_PLUS))
8147 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
8148
8149 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
8150 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
8151 else
8152 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
8153 } else {
8154 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
8155
8156 if (tg3_flag(tp, 5705_PLUS) ||
8157 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
Joe Perches41535772013-02-16 11:20:04 +00008158 tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlson6e01b202011-08-19 13:58:20 +00008159 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
8160 }
8161
8162 tw32(MAC_MODE, tp->mac_mode);
8163 udelay(40);
8164}
8165
Matt Carlson941ec902011-08-19 13:58:23 +00008166static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008167{
Matt Carlson941ec902011-08-19 13:58:23 +00008168 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008169
8170 tg3_phy_toggle_apd(tp, false);
Joe Perches953c96e2013-04-09 10:18:14 +00008171 tg3_phy_toggle_automdix(tp, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008172
Matt Carlson941ec902011-08-19 13:58:23 +00008173 if (extlpbk && tg3_phy_set_extloopbk(tp))
8174 return -EIO;
8175
8176 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008177 switch (speed) {
8178 case SPEED_10:
8179 break;
8180 case SPEED_100:
8181 bmcr |= BMCR_SPEED100;
8182 break;
8183 case SPEED_1000:
8184 default:
8185 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
8186 speed = SPEED_100;
8187 bmcr |= BMCR_SPEED100;
8188 } else {
8189 speed = SPEED_1000;
8190 bmcr |= BMCR_SPEED1000;
8191 }
8192 }
8193
Matt Carlson941ec902011-08-19 13:58:23 +00008194 if (extlpbk) {
8195 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
8196 tg3_readphy(tp, MII_CTRL1000, &val);
8197 val |= CTL1000_AS_MASTER |
8198 CTL1000_ENABLE_MASTER;
8199 tg3_writephy(tp, MII_CTRL1000, val);
8200 } else {
8201 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
8202 MII_TG3_FET_PTEST_TRIM_2;
8203 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
8204 }
8205 } else
8206 bmcr |= BMCR_LOOPBACK;
8207
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008208 tg3_writephy(tp, MII_BMCR, bmcr);
8209
8210 /* The write needs to be flushed for the FETs */
8211 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
8212 tg3_readphy(tp, MII_BMCR, &bmcr);
8213
8214 udelay(40);
8215
8216 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +00008217 tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00008218 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008219 MII_TG3_FET_PTEST_FRC_TX_LINK |
8220 MII_TG3_FET_PTEST_FRC_TX_LOCK);
8221
8222 /* The write needs to be flushed for the AC131 */
8223 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
8224 }
8225
8226 /* Reset to prevent losing 1st rx packet intermittently */
8227 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
8228 tg3_flag(tp, 5780_CLASS)) {
8229 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8230 udelay(10);
8231 tw32_f(MAC_RX_MODE, tp->rx_mode);
8232 }
8233
8234 mac_mode = tp->mac_mode &
8235 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
8236 if (speed == SPEED_1000)
8237 mac_mode |= MAC_MODE_PORT_MODE_GMII;
8238 else
8239 mac_mode |= MAC_MODE_PORT_MODE_MII;
8240
Joe Perches41535772013-02-16 11:20:04 +00008241 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008242 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
8243
8244 if (masked_phy_id == TG3_PHY_ID_BCM5401)
8245 mac_mode &= ~MAC_MODE_LINK_POLARITY;
8246 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
8247 mac_mode |= MAC_MODE_LINK_POLARITY;
8248
8249 tg3_writephy(tp, MII_TG3_EXT_CTRL,
8250 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
8251 }
8252
8253 tw32(MAC_MODE, mac_mode);
8254 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00008255
8256 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008257}
8258
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008259static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008260{
8261 struct tg3 *tp = netdev_priv(dev);
8262
8263 if (features & NETIF_F_LOOPBACK) {
8264 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
8265 return;
8266
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008267 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008268 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008269 netif_carrier_on(tp->dev);
8270 spin_unlock_bh(&tp->lock);
8271 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
8272 } else {
8273 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
8274 return;
8275
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008276 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008277 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008278 /* Force link status check */
Joe Perches953c96e2013-04-09 10:18:14 +00008279 tg3_setup_phy(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008280 spin_unlock_bh(&tp->lock);
8281 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
8282 }
8283}
8284
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008285static netdev_features_t tg3_fix_features(struct net_device *dev,
8286 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00008287{
8288 struct tg3 *tp = netdev_priv(dev);
8289
Joe Perches63c3a662011-04-26 08:12:10 +00008290 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00008291 features &= ~NETIF_F_ALL_TSO;
8292
8293 return features;
8294}
8295
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008296static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008297{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008298 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008299
8300 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
8301 tg3_set_loopback(dev, features);
8302
8303 return 0;
8304}
8305
Matt Carlson21f581a2009-08-28 14:00:25 +00008306static void tg3_rx_prodring_free(struct tg3 *tp,
8307 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309 int i;
8310
Matt Carlson8fea32b2010-09-15 08:59:58 +00008311 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008312 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008313 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008314 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008315 tp->rx_pkt_map_sz);
8316
Joe Perches63c3a662011-04-26 08:12:10 +00008317 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008318 for (i = tpr->rx_jmb_cons_idx;
8319 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008320 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00008321 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008322 TG3_RX_JMB_MAP_SZ);
8323 }
8324 }
8325
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008326 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328
Matt Carlson2c49a442010-09-30 10:34:35 +00008329 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008330 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008331 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332
Joe Perches63c3a662011-04-26 08:12:10 +00008333 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008334 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008335 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008336 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008337 }
8338}
8339
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008340/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341 *
8342 * The chip has been shut down and the driver detached from
8343 * the networking, so no interrupts or new tx packets will
8344 * end up in the driver. tp->{tx,}lock are held and thus
8345 * we may not sleep.
8346 */
Matt Carlson21f581a2009-08-28 14:00:25 +00008347static int tg3_rx_prodring_alloc(struct tg3 *tp,
8348 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349{
Matt Carlson287be122009-08-28 13:58:46 +00008350 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008352 tpr->rx_std_cons_idx = 0;
8353 tpr->rx_std_prod_idx = 0;
8354 tpr->rx_jmb_cons_idx = 0;
8355 tpr->rx_jmb_prod_idx = 0;
8356
Matt Carlson8fea32b2010-09-15 08:59:58 +00008357 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008358 memset(&tpr->rx_std_buffers[0], 0,
8359 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00008360 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008361 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00008362 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008363 goto done;
8364 }
8365
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00008367 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008368
Matt Carlson287be122009-08-28 13:58:46 +00008369 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008370 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00008371 tp->dev->mtu > ETH_DATA_LEN)
8372 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
8373 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07008374
Linus Torvalds1da177e2005-04-16 15:20:36 -07008375 /* Initialize invariants of the rings, we only set this
8376 * stuff once. This works because the card does not
8377 * write into the rx buffer posting rings.
8378 */
Matt Carlson2c49a442010-09-30 10:34:35 +00008379 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380 struct tg3_rx_buffer_desc *rxd;
8381
Matt Carlson21f581a2009-08-28 14:00:25 +00008382 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00008383 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
8385 rxd->opaque = (RXD_OPAQUE_RING_STD |
8386 (i << RXD_OPAQUE_INDEX_SHIFT));
8387 }
8388
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008389 /* Now allocate fresh SKBs for each rx ring. */
8390 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008391 unsigned int frag_size;
8392
8393 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
8394 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008395 netdev_warn(tp->dev,
8396 "Using a smaller RX standard ring. Only "
8397 "%d out of %d buffers were allocated "
8398 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008399 if (i == 0)
8400 goto initfail;
8401 tp->rx_pending = i;
8402 break;
8403 }
8404 }
8405
Joe Perches63c3a662011-04-26 08:12:10 +00008406 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008407 goto done;
8408
Matt Carlson2c49a442010-09-30 10:34:35 +00008409 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008410
Joe Perches63c3a662011-04-26 08:12:10 +00008411 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00008412 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413
Matt Carlson2c49a442010-09-30 10:34:35 +00008414 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00008415 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008416
Matt Carlson0d86df82010-02-17 15:17:00 +00008417 rxd = &tpr->rx_jmb[i].std;
8418 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
8419 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
8420 RXD_FLAG_JUMBO;
8421 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
8422 (i << RXD_OPAQUE_INDEX_SHIFT));
8423 }
8424
8425 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008426 unsigned int frag_size;
8427
8428 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
8429 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008430 netdev_warn(tp->dev,
8431 "Using a smaller RX jumbo ring. Only %d "
8432 "out of %d buffers were allocated "
8433 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00008434 if (i == 0)
8435 goto initfail;
8436 tp->rx_jumbo_pending = i;
8437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008438 }
8439 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008440
8441done:
Michael Chan32d8c572006-07-25 16:38:29 -07008442 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008443
8444initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00008445 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008446 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008447}
8448
Matt Carlson21f581a2009-08-28 14:00:25 +00008449static void tg3_rx_prodring_fini(struct tg3 *tp,
8450 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008451{
Matt Carlson21f581a2009-08-28 14:00:25 +00008452 kfree(tpr->rx_std_buffers);
8453 tpr->rx_std_buffers = NULL;
8454 kfree(tpr->rx_jmb_buffers);
8455 tpr->rx_jmb_buffers = NULL;
8456 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008457 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
8458 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008459 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008460 }
Matt Carlson21f581a2009-08-28 14:00:25 +00008461 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008462 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
8463 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008464 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008465 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008466}
8467
Matt Carlson21f581a2009-08-28 14:00:25 +00008468static int tg3_rx_prodring_init(struct tg3 *tp,
8469 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008470{
Matt Carlson2c49a442010-09-30 10:34:35 +00008471 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
8472 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008473 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008474 return -ENOMEM;
8475
Matt Carlson4bae65c2010-11-24 08:31:52 +00008476 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
8477 TG3_RX_STD_RING_BYTES(tp),
8478 &tpr->rx_std_mapping,
8479 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008480 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008481 goto err_out;
8482
Joe Perches63c3a662011-04-26 08:12:10 +00008483 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008484 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00008485 GFP_KERNEL);
8486 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008487 goto err_out;
8488
Matt Carlson4bae65c2010-11-24 08:31:52 +00008489 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
8490 TG3_RX_JMB_RING_BYTES(tp),
8491 &tpr->rx_jmb_mapping,
8492 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008493 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008494 goto err_out;
8495 }
8496
8497 return 0;
8498
8499err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00008500 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008501 return -ENOMEM;
8502}
8503
8504/* Free up pending packets in all rx/tx rings.
8505 *
8506 * The chip has been shut down and the driver detached from
8507 * the networking, so no interrupts or new tx packets will
8508 * end up in the driver. tp->{tx,}lock is not held and we are not
8509 * in an interrupt context and thus may sleep.
8510 */
8511static void tg3_free_rings(struct tg3 *tp)
8512{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008513 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008514
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008515 for (j = 0; j < tp->irq_cnt; j++) {
8516 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008517
Matt Carlson8fea32b2010-09-15 08:59:58 +00008518 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00008519
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008520 if (!tnapi->tx_buffers)
8521 continue;
8522
Matt Carlson0d681b22011-07-27 14:20:49 +00008523 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
8524 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008525
Matt Carlson0d681b22011-07-27 14:20:49 +00008526 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008527 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008528
Matt Carlsonba1142e2011-11-04 09:15:00 +00008529 tg3_tx_skb_unmap(tnapi, i,
8530 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008531
8532 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008533 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00008534 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008535 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008536}
8537
8538/* Initialize tx/rx rings for packet processing.
8539 *
8540 * The chip has been shut down and the driver detached from
8541 * the networking, so no interrupts or new tx packets will
8542 * end up in the driver. tp->{tx,}lock are held and thus
8543 * we may not sleep.
8544 */
8545static int tg3_init_rings(struct tg3 *tp)
8546{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008547 int i;
Matt Carlson72334482009-08-28 14:03:01 +00008548
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008549 /* Free up all the SKBs. */
8550 tg3_free_rings(tp);
8551
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008552 for (i = 0; i < tp->irq_cnt; i++) {
8553 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008554
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008555 tnapi->last_tag = 0;
8556 tnapi->last_irq_tag = 0;
8557 tnapi->hw_status->status = 0;
8558 tnapi->hw_status->status_tag = 0;
8559 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8560
8561 tnapi->tx_prod = 0;
8562 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008563 if (tnapi->tx_ring)
8564 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008565
8566 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008567 if (tnapi->rx_rcb)
8568 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008569
Thadeu Lima de Souza Cascardoa620a6b2014-11-25 14:21:11 -02008570 if (tnapi->prodring.rx_std &&
8571 tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00008572 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008573 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00008574 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008575 }
Matt Carlson72334482009-08-28 14:03:01 +00008576
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008577 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008578}
8579
Michael Chan49a359e2012-09-28 07:12:37 +00008580static void tg3_mem_tx_release(struct tg3 *tp)
8581{
8582 int i;
8583
8584 for (i = 0; i < tp->irq_max; i++) {
8585 struct tg3_napi *tnapi = &tp->napi[i];
8586
8587 if (tnapi->tx_ring) {
8588 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
8589 tnapi->tx_ring, tnapi->tx_desc_mapping);
8590 tnapi->tx_ring = NULL;
8591 }
8592
8593 kfree(tnapi->tx_buffers);
8594 tnapi->tx_buffers = NULL;
8595 }
8596}
8597
8598static int tg3_mem_tx_acquire(struct tg3 *tp)
8599{
8600 int i;
8601 struct tg3_napi *tnapi = &tp->napi[0];
8602
8603 /* If multivector TSS is enabled, vector 0 does not handle
8604 * tx interrupts. Don't allocate any resources for it.
8605 */
8606 if (tg3_flag(tp, ENABLE_TSS))
8607 tnapi++;
8608
8609 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
8610 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
8611 TG3_TX_RING_SIZE, GFP_KERNEL);
8612 if (!tnapi->tx_buffers)
8613 goto err_out;
8614
8615 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
8616 TG3_TX_RING_BYTES,
8617 &tnapi->tx_desc_mapping,
8618 GFP_KERNEL);
8619 if (!tnapi->tx_ring)
8620 goto err_out;
8621 }
8622
8623 return 0;
8624
8625err_out:
8626 tg3_mem_tx_release(tp);
8627 return -ENOMEM;
8628}
8629
8630static void tg3_mem_rx_release(struct tg3 *tp)
8631{
8632 int i;
8633
8634 for (i = 0; i < tp->irq_max; i++) {
8635 struct tg3_napi *tnapi = &tp->napi[i];
8636
8637 tg3_rx_prodring_fini(tp, &tnapi->prodring);
8638
8639 if (!tnapi->rx_rcb)
8640 continue;
8641
8642 dma_free_coherent(&tp->pdev->dev,
8643 TG3_RX_RCB_RING_BYTES(tp),
8644 tnapi->rx_rcb,
8645 tnapi->rx_rcb_mapping);
8646 tnapi->rx_rcb = NULL;
8647 }
8648}
8649
8650static int tg3_mem_rx_acquire(struct tg3 *tp)
8651{
8652 unsigned int i, limit;
8653
8654 limit = tp->rxq_cnt;
8655
8656 /* If RSS is enabled, we need a (dummy) producer ring
8657 * set on vector zero. This is the true hw prodring.
8658 */
8659 if (tg3_flag(tp, ENABLE_RSS))
8660 limit++;
8661
8662 for (i = 0; i < limit; i++) {
8663 struct tg3_napi *tnapi = &tp->napi[i];
8664
8665 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
8666 goto err_out;
8667
8668 /* If multivector RSS is enabled, vector 0
8669 * does not handle rx or tx interrupts.
8670 * Don't allocate any resources for it.
8671 */
8672 if (!i && tg3_flag(tp, ENABLE_RSS))
8673 continue;
8674
Joe Perchesede23fa82013-08-26 22:45:23 -07008675 tnapi->rx_rcb = dma_zalloc_coherent(&tp->pdev->dev,
8676 TG3_RX_RCB_RING_BYTES(tp),
8677 &tnapi->rx_rcb_mapping,
8678 GFP_KERNEL);
Michael Chan49a359e2012-09-28 07:12:37 +00008679 if (!tnapi->rx_rcb)
8680 goto err_out;
Michael Chan49a359e2012-09-28 07:12:37 +00008681 }
8682
8683 return 0;
8684
8685err_out:
8686 tg3_mem_rx_release(tp);
8687 return -ENOMEM;
8688}
8689
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008690/*
8691 * Must not be invoked with interrupt sources disabled and
8692 * the hardware shutdown down.
8693 */
8694static void tg3_free_consistent(struct tg3 *tp)
8695{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008696 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008697
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008698 for (i = 0; i < tp->irq_cnt; i++) {
8699 struct tg3_napi *tnapi = &tp->napi[i];
8700
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008701 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008702 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
8703 tnapi->hw_status,
8704 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008705 tnapi->hw_status = NULL;
8706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008707 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008708
Michael Chan49a359e2012-09-28 07:12:37 +00008709 tg3_mem_rx_release(tp);
8710 tg3_mem_tx_release(tp);
8711
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008713 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
8714 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008715 tp->hw_stats = NULL;
8716 }
8717}
8718
8719/*
8720 * Must not be invoked with interrupt sources disabled and
8721 * the hardware shutdown down. Can sleep.
8722 */
8723static int tg3_alloc_consistent(struct tg3 *tp)
8724{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008725 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008726
Joe Perchesede23fa82013-08-26 22:45:23 -07008727 tp->hw_stats = dma_zalloc_coherent(&tp->pdev->dev,
8728 sizeof(struct tg3_hw_stats),
8729 &tp->stats_mapping, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008730 if (!tp->hw_stats)
8731 goto err_out;
8732
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008733 for (i = 0; i < tp->irq_cnt; i++) {
8734 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008735 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008736
Joe Perchesede23fa82013-08-26 22:45:23 -07008737 tnapi->hw_status = dma_zalloc_coherent(&tp->pdev->dev,
8738 TG3_HW_STATUS_SIZE,
8739 &tnapi->status_mapping,
8740 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008741 if (!tnapi->hw_status)
8742 goto err_out;
8743
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008744 sblk = tnapi->hw_status;
8745
Michael Chan49a359e2012-09-28 07:12:37 +00008746 if (tg3_flag(tp, ENABLE_RSS)) {
Michael Chan86449942012-10-02 20:31:14 -07008747 u16 *prodptr = NULL;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008748
Michael Chan49a359e2012-09-28 07:12:37 +00008749 /*
8750 * When RSS is enabled, the status block format changes
8751 * slightly. The "rx_jumbo_consumer", "reserved",
8752 * and "rx_mini_consumer" members get mapped to the
8753 * other three rx return ring producer indexes.
8754 */
8755 switch (i) {
8756 case 1:
8757 prodptr = &sblk->idx[0].rx_producer;
8758 break;
8759 case 2:
8760 prodptr = &sblk->rx_jumbo_consumer;
8761 break;
8762 case 3:
8763 prodptr = &sblk->reserved;
8764 break;
8765 case 4:
8766 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00008767 break;
8768 }
Michael Chan49a359e2012-09-28 07:12:37 +00008769 tnapi->rx_rcb_prod_idx = prodptr;
8770 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008771 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008772 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008773 }
8774
Michael Chan49a359e2012-09-28 07:12:37 +00008775 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
8776 goto err_out;
8777
Linus Torvalds1da177e2005-04-16 15:20:36 -07008778 return 0;
8779
8780err_out:
8781 tg3_free_consistent(tp);
8782 return -ENOMEM;
8783}
8784
8785#define MAX_WAIT_CNT 1000
8786
8787/* To stop a block, clear the enable bit and poll till it
8788 * clears. tp->lock is held.
8789 */
Joe Perches953c96e2013-04-09 10:18:14 +00008790static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008791{
8792 unsigned int i;
8793 u32 val;
8794
Joe Perches63c3a662011-04-26 08:12:10 +00008795 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008796 switch (ofs) {
8797 case RCVLSC_MODE:
8798 case DMAC_MODE:
8799 case MBFREE_MODE:
8800 case BUFMGR_MODE:
8801 case MEMARB_MODE:
8802 /* We can't enable/disable these bits of the
8803 * 5705/5750, just say success.
8804 */
8805 return 0;
8806
8807 default:
8808 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810 }
8811
8812 val = tr32(ofs);
8813 val &= ~enable_bit;
8814 tw32_f(ofs, val);
8815
8816 for (i = 0; i < MAX_WAIT_CNT; i++) {
Gavin Shan6d446ec2013-06-25 15:24:32 +08008817 if (pci_channel_offline(tp->pdev)) {
8818 dev_err(&tp->pdev->dev,
8819 "tg3_stop_block device offline, "
8820 "ofs=%lx enable_bit=%x\n",
8821 ofs, enable_bit);
8822 return -ENODEV;
8823 }
8824
Linus Torvalds1da177e2005-04-16 15:20:36 -07008825 udelay(100);
8826 val = tr32(ofs);
8827 if ((val & enable_bit) == 0)
8828 break;
8829 }
8830
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008831 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00008832 dev_err(&tp->pdev->dev,
8833 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
8834 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008835 return -ENODEV;
8836 }
8837
8838 return 0;
8839}
8840
8841/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008842static int tg3_abort_hw(struct tg3 *tp, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008843{
8844 int i, err;
8845
8846 tg3_disable_ints(tp);
8847
Gavin Shan6d446ec2013-06-25 15:24:32 +08008848 if (pci_channel_offline(tp->pdev)) {
8849 tp->rx_mode &= ~(RX_MODE_ENABLE | TX_MODE_ENABLE);
8850 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8851 err = -ENODEV;
8852 goto err_no_dev;
8853 }
8854
Linus Torvalds1da177e2005-04-16 15:20:36 -07008855 tp->rx_mode &= ~RX_MODE_ENABLE;
8856 tw32_f(MAC_RX_MODE, tp->rx_mode);
8857 udelay(10);
8858
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008859 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
8860 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
8861 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
8862 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
8863 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
8864 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008865
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008866 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
8867 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
8868 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
8869 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
8870 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
8871 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
8872 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873
8874 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8875 tw32_f(MAC_MODE, tp->mac_mode);
8876 udelay(40);
8877
8878 tp->tx_mode &= ~TX_MODE_ENABLE;
8879 tw32_f(MAC_TX_MODE, tp->tx_mode);
8880
8881 for (i = 0; i < MAX_WAIT_CNT; i++) {
8882 udelay(100);
8883 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
8884 break;
8885 }
8886 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00008887 dev_err(&tp->pdev->dev,
8888 "%s timed out, TX_MODE_ENABLE will not clear "
8889 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07008890 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008891 }
8892
Michael Chane6de8ad2005-05-05 14:42:41 -07008893 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008894 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
8895 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896
8897 tw32(FTQ_RESET, 0xffffffff);
8898 tw32(FTQ_RESET, 0x00000000);
8899
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008900 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
8901 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008902
Gavin Shan6d446ec2013-06-25 15:24:32 +08008903err_no_dev:
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008904 for (i = 0; i < tp->irq_cnt; i++) {
8905 struct tg3_napi *tnapi = &tp->napi[i];
8906 if (tnapi->hw_status)
8907 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008909
Linus Torvalds1da177e2005-04-16 15:20:36 -07008910 return err;
8911}
8912
Michael Chanee6a99b2007-07-18 21:49:10 -07008913/* Save PCI command register before chip reset */
8914static void tg3_save_pci_state(struct tg3 *tp)
8915{
Matt Carlson8a6eac92007-10-21 16:17:55 -07008916 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008917}
8918
8919/* Restore PCI state after chip reset */
8920static void tg3_restore_pci_state(struct tg3 *tp)
8921{
8922 u32 val;
8923
8924 /* Re-enable indirect register accesses. */
8925 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8926 tp->misc_host_ctrl);
8927
8928 /* Set MAX PCI retry to zero. */
8929 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
Joe Perches41535772013-02-16 11:20:04 +00008930 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008931 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07008932 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008933 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00008934 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07008935 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008936 PCISTATE_ALLOW_APE_SHMEM_WR |
8937 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07008938 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
8939
Matt Carlson8a6eac92007-10-21 16:17:55 -07008940 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008941
Matt Carlson2c55a3d2011-11-28 09:41:04 +00008942 if (!tg3_flag(tp, PCI_EXPRESS)) {
8943 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
8944 tp->pci_cacheline_sz);
8945 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
8946 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07008947 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08008948
Michael Chanee6a99b2007-07-18 21:49:10 -07008949 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00008950 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008951 u16 pcix_cmd;
8952
8953 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8954 &pcix_cmd);
8955 pcix_cmd &= ~PCI_X_CMD_ERO;
8956 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8957 pcix_cmd);
8958 }
Michael Chanee6a99b2007-07-18 21:49:10 -07008959
Joe Perches63c3a662011-04-26 08:12:10 +00008960 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008961
8962 /* Chip reset on 5780 will reset MSI enable bit,
8963 * so need to restore it.
8964 */
Joe Perches63c3a662011-04-26 08:12:10 +00008965 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008966 u16 ctrl;
8967
8968 pci_read_config_word(tp->pdev,
8969 tp->msi_cap + PCI_MSI_FLAGS,
8970 &ctrl);
8971 pci_write_config_word(tp->pdev,
8972 tp->msi_cap + PCI_MSI_FLAGS,
8973 ctrl | PCI_MSI_FLAGS_ENABLE);
8974 val = tr32(MSGINT_MODE);
8975 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
8976 }
8977 }
8978}
8979
Nithin Sujirf82995b2014-01-03 10:09:13 -08008980static void tg3_override_clk(struct tg3 *tp)
8981{
8982 u32 val;
8983
8984 switch (tg3_asic_rev(tp)) {
8985 case ASIC_REV_5717:
8986 val = tr32(TG3_CPMU_CLCK_ORIDE_ENABLE);
8987 tw32(TG3_CPMU_CLCK_ORIDE_ENABLE, val |
8988 TG3_CPMU_MAC_ORIDE_ENABLE);
8989 break;
8990
8991 case ASIC_REV_5719:
8992 case ASIC_REV_5720:
8993 tw32(TG3_CPMU_CLCK_ORIDE, CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8994 break;
8995
8996 default:
8997 return;
8998 }
8999}
9000
9001static void tg3_restore_clk(struct tg3 *tp)
9002{
9003 u32 val;
9004
9005 switch (tg3_asic_rev(tp)) {
9006 case ASIC_REV_5717:
9007 val = tr32(TG3_CPMU_CLCK_ORIDE_ENABLE);
9008 tw32(TG3_CPMU_CLCK_ORIDE_ENABLE,
9009 val & ~TG3_CPMU_MAC_ORIDE_ENABLE);
9010 break;
9011
9012 case ASIC_REV_5719:
9013 case ASIC_REV_5720:
9014 val = tr32(TG3_CPMU_CLCK_ORIDE);
9015 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
9016 break;
9017
9018 default:
9019 return;
9020 }
9021}
9022
Linus Torvalds1da177e2005-04-16 15:20:36 -07009023/* tp->lock is held. */
9024static int tg3_chip_reset(struct tg3 *tp)
Prashant Sreedharan932f19d2015-01-14 11:34:44 -08009025 __releases(tp->lock)
9026 __acquires(tp->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009027{
9028 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07009029 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00009030 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009031
Rafael J. Wysocki8496e852013-12-01 02:34:37 +01009032 if (!pci_device_is_present(tp->pdev))
9033 return -ENODEV;
9034
David S. Millerf49639e2006-06-09 11:58:36 -07009035 tg3_nvram_lock(tp);
9036
Matt Carlson77b483f2008-08-15 14:07:24 -07009037 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
9038
David S. Millerf49639e2006-06-09 11:58:36 -07009039 /* No matching tg3_nvram_unlock() after this because
9040 * chip reset below will undo the nvram lock.
9041 */
9042 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009043
Michael Chanee6a99b2007-07-18 21:49:10 -07009044 /* GRC_MISC_CFG core clock reset will clear the memory
9045 * enable bit in PCI register 4 and the MSI enable bit
9046 * on some chips, so we save relevant registers here.
9047 */
9048 tg3_save_pci_state(tp);
9049
Joe Perches41535772013-02-16 11:20:04 +00009050 if (tg3_asic_rev(tp) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009051 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08009052 tw32(GRC_FASTBOOT_PC, 0);
9053
Linus Torvalds1da177e2005-04-16 15:20:36 -07009054 /*
9055 * We must avoid the readl() that normally takes place.
9056 * It locks machines, causes machine checks, and other
9057 * fun things. So, temporarily disable the 5701
9058 * hardware workaround, while we do the reset.
9059 */
Michael Chan1ee582d2005-08-09 20:16:46 -07009060 write_op = tp->write32;
9061 if (write_op == tg3_write_flush_reg32)
9062 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009063
Michael Chand18edcb2007-03-24 20:57:11 -07009064 /* Prevent the irq handler from reading or writing PCI registers
9065 * during chip reset when the memory enable bit in the PCI command
9066 * register may be cleared. The chip does not generate interrupt
9067 * at this time, but the irq handler may still be called due to irq
9068 * sharing or irqpoll.
9069 */
Joe Perches63c3a662011-04-26 08:12:10 +00009070 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009071 for (i = 0; i < tp->irq_cnt; i++) {
9072 struct tg3_napi *tnapi = &tp->napi[i];
9073 if (tnapi->hw_status) {
9074 tnapi->hw_status->status = 0;
9075 tnapi->hw_status->status_tag = 0;
9076 }
9077 tnapi->last_tag = 0;
9078 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07009079 }
Michael Chand18edcb2007-03-24 20:57:11 -07009080 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00009081
Prashant Sreedharan932f19d2015-01-14 11:34:44 -08009082 tg3_full_unlock(tp);
9083
Matt Carlson4f125f42009-09-01 12:55:02 +00009084 for (i = 0; i < tp->irq_cnt; i++)
9085 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07009086
Prashant Sreedharan932f19d2015-01-14 11:34:44 -08009087 tg3_full_lock(tp, 0);
9088
Joe Perches41535772013-02-16 11:20:04 +00009089 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson255ca312009-08-25 10:07:27 +00009090 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
9091 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
9092 }
9093
Linus Torvalds1da177e2005-04-16 15:20:36 -07009094 /* do the reset */
9095 val = GRC_MISC_CFG_CORECLK_RESET;
9096
Joe Perches63c3a662011-04-26 08:12:10 +00009097 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00009098 /* Force PCIe 1.0a mode */
Joe Perches41535772013-02-16 11:20:04 +00009099 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009100 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00009101 tr32(TG3_PCIE_PHY_TSTCTL) ==
9102 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
9103 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
9104
Joe Perches41535772013-02-16 11:20:04 +00009105 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106 tw32(GRC_MISC_CFG, (1 << 29));
9107 val |= (1 << 29);
9108 }
9109 }
9110
Joe Perches41535772013-02-16 11:20:04 +00009111 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07009112 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
9113 tw32(GRC_VCPU_EXT_CTRL,
9114 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
9115 }
9116
Nithin Sujirf82995b2014-01-03 10:09:13 -08009117 /* Set the clock to the highest frequency to avoid timeouts. With link
9118 * aware mode, the clock speed could be slow and bootcode does not
9119 * complete within the expected time. Override the clock to allow the
9120 * bootcode to finish sooner and then restore it.
9121 */
9122 tg3_override_clk(tp);
9123
Matt Carlsonf37500d2010-08-02 11:25:59 +00009124 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00009125 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009126 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00009127
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128 tw32(GRC_MISC_CFG, val);
9129
Michael Chan1ee582d2005-08-09 20:16:46 -07009130 /* restore 5701 hardware bug workaround write method */
9131 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009132
9133 /* Unfortunately, we have to delay before the PCI read back.
9134 * Some 575X chips even will not respond to a PCI cfg access
9135 * when the reset command is given to the chip.
9136 *
9137 * How do these hardware designers expect things to work
9138 * properly if the PCI write is posted for a long period
9139 * of time? It is always necessary to have some method by
9140 * which a register read back can occur to push the write
9141 * out which does the reset.
9142 *
9143 * For most tg3 variants the trick below was working.
9144 * Ho hum...
9145 */
9146 udelay(120);
9147
9148 /* Flush PCI posted writes. The normal MMIO registers
9149 * are inaccessible at this time so this is the only
9150 * way to make this reliably (actually, this is no longer
9151 * the case, see above). I tried to use indirect
9152 * register read/write but this upset some 5701 variants.
9153 */
9154 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
9155
9156 udelay(120);
9157
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009158 if (tg3_flag(tp, PCI_EXPRESS) && pci_is_pcie(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00009159 u16 val16;
9160
Joe Perches41535772013-02-16 11:20:04 +00009161 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0) {
Michael Chan86449942012-10-02 20:31:14 -07009162 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009163 u32 cfg_val;
9164
9165 /* Wait for link training to complete. */
Michael Chan86449942012-10-02 20:31:14 -07009166 for (j = 0; j < 5000; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009167 udelay(100);
9168
9169 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
9170 pci_write_config_dword(tp->pdev, 0xc4,
9171 cfg_val | (1 << 15));
9172 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009173
Matt Carlsone7126992009-08-25 10:08:16 +00009174 /* Clear the "no snoop" and "relaxed ordering" bits. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009175 val16 = PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
Matt Carlsone7126992009-08-25 10:08:16 +00009176 /*
9177 * Older PCIe devices only support the 128 byte
9178 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009179 */
Joe Perches63c3a662011-04-26 08:12:10 +00009180 if (!tg3_flag(tp, CPMU_PRESENT))
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009181 val16 |= PCI_EXP_DEVCTL_PAYLOAD;
9182 pcie_capability_clear_word(tp->pdev, PCI_EXP_DEVCTL, val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009183
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009184 /* Clear error status */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06009185 pcie_capability_write_word(tp->pdev, PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08009186 PCI_EXP_DEVSTA_CED |
9187 PCI_EXP_DEVSTA_NFED |
9188 PCI_EXP_DEVSTA_FED |
9189 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009190 }
9191
Michael Chanee6a99b2007-07-18 21:49:10 -07009192 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009193
Joe Perches63c3a662011-04-26 08:12:10 +00009194 tg3_flag_clear(tp, CHIP_RESETTING);
9195 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07009196
Michael Chanee6a99b2007-07-18 21:49:10 -07009197 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00009198 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07009199 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07009200 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009201
Joe Perches41535772013-02-16 11:20:04 +00009202 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009203 tg3_stop_fw(tp);
9204 tw32(0x5000, 0x400);
9205 }
9206
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00009207 if (tg3_flag(tp, IS_SSB_CORE)) {
9208 /*
9209 * BCM4785: In order to avoid repercussions from using
9210 * potentially defective internal ROM, stop the Rx RISC CPU,
9211 * which is not required.
9212 */
9213 tg3_stop_fw(tp);
9214 tg3_halt_cpu(tp, RX_CPU_BASE);
9215 }
9216
Nithin Sujirfb03a432013-05-21 12:57:32 +00009217 err = tg3_poll_fw(tp);
9218 if (err)
9219 return err;
9220
Linus Torvalds1da177e2005-04-16 15:20:36 -07009221 tw32(GRC_MODE, tp->grc_mode);
9222
Joe Perches41535772013-02-16 11:20:04 +00009223 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009224 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009225
9226 tw32(0xc4, val | (1 << 15));
9227 }
9228
9229 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
Joe Perches41535772013-02-16 11:20:04 +00009230 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009231 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
Joe Perches41535772013-02-16 11:20:04 +00009232 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009233 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
9234 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9235 }
9236
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009237 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00009238 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00009239 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009240 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00009241 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00009242 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009243 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00009244 val = 0;
9245
9246 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009247 udelay(40);
9248
Matt Carlson77b483f2008-08-15 14:07:24 -07009249 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
9250
Matt Carlson0a9140c2009-08-28 12:27:50 +00009251 tg3_mdio_start(tp);
9252
Joe Perches63c3a662011-04-26 08:12:10 +00009253 if (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +00009254 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
9255 tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009256 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009257 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009258
9259 tw32(0x7c00, val | (1 << 25));
9260 }
9261
Nithin Sujirf82995b2014-01-03 10:09:13 -08009262 tg3_restore_clk(tp);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009263
Linus Torvalds1da177e2005-04-16 15:20:36 -07009264 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00009265 tg3_flag_clear(tp, ENABLE_ASF);
Nithin Sujir942d1af2013-04-09 08:48:07 +00009266 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
9267 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
9268
Joe Perches63c3a662011-04-26 08:12:10 +00009269 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009270 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
9271 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
9272 u32 nic_cfg;
9273
9274 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
9275 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00009276 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009277 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00009278 if (tg3_flag(tp, 5750_PLUS))
9279 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Nithin Sujir942d1af2013-04-09 08:48:07 +00009280
9281 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &nic_cfg);
9282 if (nic_cfg & NIC_SRAM_1G_ON_VAUX_OK)
9283 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
9284 if (nic_cfg & NIC_SRAM_LNK_FLAP_AVOID)
9285 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009286 }
9287 }
9288
9289 return 0;
9290}
9291
Matt Carlson65ec6982012-02-28 23:33:37 +00009292static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
9293static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Michael Chane565eec2014-01-03 10:09:12 -08009294static void __tg3_set_rx_mode(struct net_device *);
Matt Carlson92feeab2011-12-08 14:40:14 +00009295
Linus Torvalds1da177e2005-04-16 15:20:36 -07009296/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00009297static int tg3_halt(struct tg3 *tp, int kind, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009298{
9299 int err;
9300
9301 tg3_stop_fw(tp);
9302
Michael Chan944d9802005-05-29 14:57:48 -07009303 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009304
David S. Millerb3b7d6b2005-05-05 14:40:20 -07009305 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009306 err = tg3_chip_reset(tp);
9307
Joe Perches953c96e2013-04-09 10:18:14 +00009308 __tg3_set_mac_addr(tp, false);
Matt Carlsondaba2a62009-04-20 06:58:52 +00009309
Michael Chan944d9802005-05-29 14:57:48 -07009310 tg3_write_sig_legacy(tp, kind);
9311 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009312
Matt Carlson92feeab2011-12-08 14:40:14 +00009313 if (tp->hw_stats) {
9314 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05009315 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00009316 tg3_get_estats(tp, &tp->estats_prev);
9317
9318 /* And make sure the next sample is new data */
9319 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
9320 }
9321
Nithin Sujir4bc814a2013-09-20 16:46:59 -07009322 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009323}
9324
Linus Torvalds1da177e2005-04-16 15:20:36 -07009325static int tg3_set_mac_addr(struct net_device *dev, void *p)
9326{
9327 struct tg3 *tp = netdev_priv(dev);
9328 struct sockaddr *addr = p;
Joe Perches953c96e2013-04-09 10:18:14 +00009329 int err = 0;
9330 bool skip_mac_1 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009331
Michael Chanf9804dd2005-09-27 12:13:10 -07009332 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00009333 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07009334
Linus Torvalds1da177e2005-04-16 15:20:36 -07009335 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
9336
Michael Chane75f7c92006-03-20 21:33:26 -08009337 if (!netif_running(dev))
9338 return 0;
9339
Joe Perches63c3a662011-04-26 08:12:10 +00009340 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07009341 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07009342
Michael Chan986e0ae2007-05-05 12:10:20 -07009343 addr0_high = tr32(MAC_ADDR_0_HIGH);
9344 addr0_low = tr32(MAC_ADDR_0_LOW);
9345 addr1_high = tr32(MAC_ADDR_1_HIGH);
9346 addr1_low = tr32(MAC_ADDR_1_LOW);
9347
9348 /* Skip MAC addr 1 if ASF is using it. */
9349 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
9350 !(addr1_high == 0 && addr1_low == 0))
Joe Perches953c96e2013-04-09 10:18:14 +00009351 skip_mac_1 = true;
Michael Chan58712ef2006-04-29 18:58:01 -07009352 }
Michael Chan986e0ae2007-05-05 12:10:20 -07009353 spin_lock_bh(&tp->lock);
9354 __tg3_set_mac_addr(tp, skip_mac_1);
Michael Chane565eec2014-01-03 10:09:12 -08009355 __tg3_set_rx_mode(dev);
Michael Chan986e0ae2007-05-05 12:10:20 -07009356 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009357
Michael Chanb9ec6c12006-07-25 16:37:27 -07009358 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009359}
9360
9361/* tp->lock is held. */
9362static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
9363 dma_addr_t mapping, u32 maxlen_flags,
9364 u32 nic_addr)
9365{
9366 tg3_write_mem(tp,
9367 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
9368 ((u64) mapping >> 32));
9369 tg3_write_mem(tp,
9370 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
9371 ((u64) mapping & 0xffffffff));
9372 tg3_write_mem(tp,
9373 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
9374 maxlen_flags);
9375
Joe Perches63c3a662011-04-26 08:12:10 +00009376 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009377 tg3_write_mem(tp,
9378 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
9379 nic_addr);
9380}
9381
Michael Chana489b6d2012-09-28 07:12:39 +00009382
9383static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07009384{
Michael Chana489b6d2012-09-28 07:12:39 +00009385 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00009386
Joe Perches63c3a662011-04-26 08:12:10 +00009387 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009388 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
9389 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
9390 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00009391 } else {
9392 tw32(HOSTCC_TXCOL_TICKS, 0);
9393 tw32(HOSTCC_TXMAX_FRAMES, 0);
9394 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00009395
9396 for (; i < tp->txq_cnt; i++) {
9397 u32 reg;
9398
9399 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
9400 tw32(reg, ec->tx_coalesce_usecs);
9401 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
9402 tw32(reg, ec->tx_max_coalesced_frames);
9403 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
9404 tw32(reg, ec->tx_max_coalesced_frames_irq);
9405 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00009406 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009407
Michael Chana489b6d2012-09-28 07:12:39 +00009408 for (; i < tp->irq_max - 1; i++) {
9409 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
9410 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
9411 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9412 }
9413}
9414
9415static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
9416{
9417 int i = 0;
9418 u32 limit = tp->rxq_cnt;
9419
Joe Perches63c3a662011-04-26 08:12:10 +00009420 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00009421 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
9422 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
9423 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00009424 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00009425 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009426 tw32(HOSTCC_RXCOL_TICKS, 0);
9427 tw32(HOSTCC_RXMAX_FRAMES, 0);
9428 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07009429 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009430
Michael Chana489b6d2012-09-28 07:12:39 +00009431 for (; i < limit; i++) {
9432 u32 reg;
9433
9434 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
9435 tw32(reg, ec->rx_coalesce_usecs);
9436 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
9437 tw32(reg, ec->rx_max_coalesced_frames);
9438 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
9439 tw32(reg, ec->rx_max_coalesced_frames_irq);
9440 }
9441
9442 for (; i < tp->irq_max - 1; i++) {
9443 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
9444 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
9445 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9446 }
9447}
9448
9449static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
9450{
9451 tg3_coal_tx_init(tp, ec);
9452 tg3_coal_rx_init(tp, ec);
9453
Joe Perches63c3a662011-04-26 08:12:10 +00009454 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07009455 u32 val = ec->stats_block_coalesce_usecs;
9456
Matt Carlsonb6080e12009-09-01 13:12:00 +00009457 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
9458 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
9459
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00009460 if (!tp->link_up)
David S. Miller15f98502005-05-18 22:49:26 -07009461 val = 0;
9462
9463 tw32(HOSTCC_STAT_COAL_TICKS, val);
9464 }
9465}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009466
9467/* tp->lock is held. */
Nithin Sujir328947f2013-05-23 11:11:24 +00009468static void tg3_tx_rcbs_disable(struct tg3 *tp)
9469{
9470 u32 txrcb, limit;
9471
9472 /* Disable all transmit rings but the first. */
9473 if (!tg3_flag(tp, 5705_PLUS))
9474 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
9475 else if (tg3_flag(tp, 5717_PLUS))
9476 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
9477 else if (tg3_flag(tp, 57765_CLASS) ||
9478 tg3_asic_rev(tp) == ASIC_REV_5762)
9479 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
9480 else
9481 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9482
9483 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9484 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
9485 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
9486 BDINFO_FLAGS_DISABLED);
9487}
9488
9489/* tp->lock is held. */
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009490static void tg3_tx_rcbs_init(struct tg3 *tp)
9491{
9492 int i = 0;
9493 u32 txrcb = NIC_SRAM_SEND_RCB;
9494
9495 if (tg3_flag(tp, ENABLE_TSS))
9496 i++;
9497
9498 for (; i < tp->irq_max; i++, txrcb += TG3_BDINFO_SIZE) {
9499 struct tg3_napi *tnapi = &tp->napi[i];
9500
9501 if (!tnapi->tx_ring)
9502 continue;
9503
9504 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9505 (TG3_TX_RING_SIZE << BDINFO_FLAGS_MAXLEN_SHIFT),
9506 NIC_SRAM_TX_BUFFER_DESC);
9507 }
9508}
9509
9510/* tp->lock is held. */
Nithin Sujir328947f2013-05-23 11:11:24 +00009511static void tg3_rx_ret_rcbs_disable(struct tg3 *tp)
9512{
9513 u32 rxrcb, limit;
9514
9515 /* Disable all receive return rings but the first. */
9516 if (tg3_flag(tp, 5717_PLUS))
9517 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
9518 else if (!tg3_flag(tp, 5705_PLUS))
9519 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
9520 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9521 tg3_asic_rev(tp) == ASIC_REV_5762 ||
9522 tg3_flag(tp, 57765_CLASS))
9523 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
9524 else
9525 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9526
9527 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9528 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
9529 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
9530 BDINFO_FLAGS_DISABLED);
9531}
9532
9533/* tp->lock is held. */
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009534static void tg3_rx_ret_rcbs_init(struct tg3 *tp)
9535{
9536 int i = 0;
9537 u32 rxrcb = NIC_SRAM_RCV_RET_RCB;
9538
9539 if (tg3_flag(tp, ENABLE_RSS))
9540 i++;
9541
9542 for (; i < tp->irq_max; i++, rxrcb += TG3_BDINFO_SIZE) {
9543 struct tg3_napi *tnapi = &tp->napi[i];
9544
9545 if (!tnapi->rx_rcb)
9546 continue;
9547
9548 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
9549 (tp->rx_ret_ring_mask + 1) <<
9550 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
9551 }
9552}
9553
9554/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00009555static void tg3_rings_reset(struct tg3 *tp)
9556{
9557 int i;
Nithin Sujir328947f2013-05-23 11:11:24 +00009558 u32 stblk;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009559 struct tg3_napi *tnapi = &tp->napi[0];
9560
Nithin Sujir328947f2013-05-23 11:11:24 +00009561 tg3_tx_rcbs_disable(tp);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009562
Nithin Sujir328947f2013-05-23 11:11:24 +00009563 tg3_rx_ret_rcbs_disable(tp);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009564
9565 /* Disable interrupts */
9566 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009567 tp->napi[0].chk_msi_cnt = 0;
9568 tp->napi[0].last_rx_cons = 0;
9569 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009570
9571 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00009572 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00009573 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009574 tp->napi[i].tx_prod = 0;
9575 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00009576 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009577 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009578 tw32_rx_mbox(tp->napi[i].consmbox, 0);
9579 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00009580 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009581 tp->napi[i].last_rx_cons = 0;
9582 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009583 }
Joe Perches63c3a662011-04-26 08:12:10 +00009584 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009585 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009586 } else {
9587 tp->napi[0].tx_prod = 0;
9588 tp->napi[0].tx_cons = 0;
9589 tw32_mailbox(tp->napi[0].prodmbox, 0);
9590 tw32_rx_mbox(tp->napi[0].consmbox, 0);
9591 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009592
9593 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00009594 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00009595 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
9596 for (i = 0; i < 16; i++)
9597 tw32_tx_mbox(mbox + i * 8, 0);
9598 }
9599
Matt Carlson2d31eca2009-09-01 12:53:31 +00009600 /* Clear status block in ram. */
9601 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9602
9603 /* Set status block DMA address */
9604 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9605 ((u64) tnapi->status_mapping >> 32));
9606 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9607 ((u64) tnapi->status_mapping & 0xffffffff));
9608
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009609 stblk = HOSTCC_STATBLCK_RING1;
9610
9611 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
9612 u64 mapping = (u64)tnapi->status_mapping;
9613 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
9614 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009615 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009616
9617 /* Clear status block in ram. */
9618 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009619 }
Nithin Sujir32ba19e2013-05-23 11:11:23 +00009620
9621 tg3_tx_rcbs_init(tp);
9622 tg3_rx_ret_rcbs_init(tp);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009623}
9624
Matt Carlsoneb07a942011-04-20 07:57:36 +00009625static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
9626{
9627 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
9628
Joe Perches63c3a662011-04-26 08:12:10 +00009629 if (!tg3_flag(tp, 5750_PLUS) ||
9630 tg3_flag(tp, 5780_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009631 tg3_asic_rev(tp) == ASIC_REV_5750 ||
9632 tg3_asic_rev(tp) == ASIC_REV_5752 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00009633 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009634 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
Joe Perches41535772013-02-16 11:20:04 +00009635 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9636 tg3_asic_rev(tp) == ASIC_REV_5787)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009637 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
9638 else
9639 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
9640
9641 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
9642 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
9643
9644 val = min(nic_rep_thresh, host_rep_thresh);
9645 tw32(RCVBDI_STD_THRESH, val);
9646
Joe Perches63c3a662011-04-26 08:12:10 +00009647 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009648 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
9649
Joe Perches63c3a662011-04-26 08:12:10 +00009650 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009651 return;
9652
Matt Carlson513aa6e2011-11-21 15:01:18 +00009653 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00009654
9655 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
9656
9657 val = min(bdcache_maxcnt / 2, host_rep_thresh);
9658 tw32(RCVBDI_JUMBO_THRESH, val);
9659
Joe Perches63c3a662011-04-26 08:12:10 +00009660 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009661 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
9662}
9663
Matt Carlsonccd5ba92012-02-13 10:20:08 +00009664static inline u32 calc_crc(unsigned char *buf, int len)
9665{
9666 u32 reg;
9667 u32 tmp;
9668 int j, k;
9669
9670 reg = 0xffffffff;
9671
9672 for (j = 0; j < len; j++) {
9673 reg ^= buf[j];
9674
9675 for (k = 0; k < 8; k++) {
9676 tmp = reg & 0x01;
9677
9678 reg >>= 1;
9679
9680 if (tmp)
9681 reg ^= 0xedb88320;
9682 }
9683 }
9684
9685 return ~reg;
9686}
9687
9688static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9689{
9690 /* accept or reject all multicast frames */
9691 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9692 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9693 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9694 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9695}
9696
9697static void __tg3_set_rx_mode(struct net_device *dev)
9698{
9699 struct tg3 *tp = netdev_priv(dev);
9700 u32 rx_mode;
9701
9702 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9703 RX_MODE_KEEP_VLAN_TAG);
9704
9705#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
9706 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9707 * flag clear.
9708 */
9709 if (!tg3_flag(tp, ENABLE_ASF))
9710 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9711#endif
9712
9713 if (dev->flags & IFF_PROMISC) {
9714 /* Promiscuous mode. */
9715 rx_mode |= RX_MODE_PROMISC;
9716 } else if (dev->flags & IFF_ALLMULTI) {
9717 /* Accept all multicast. */
9718 tg3_set_multi(tp, 1);
9719 } else if (netdev_mc_empty(dev)) {
9720 /* Reject all multicast. */
9721 tg3_set_multi(tp, 0);
9722 } else {
9723 /* Accept one or more multicast(s). */
9724 struct netdev_hw_addr *ha;
9725 u32 mc_filter[4] = { 0, };
9726 u32 regidx;
9727 u32 bit;
9728 u32 crc;
9729
9730 netdev_for_each_mc_addr(ha, dev) {
9731 crc = calc_crc(ha->addr, ETH_ALEN);
9732 bit = ~crc & 0x7f;
9733 regidx = (bit & 0x60) >> 5;
9734 bit &= 0x1f;
9735 mc_filter[regidx] |= (1 << bit);
9736 }
9737
9738 tw32(MAC_HASH_REG_0, mc_filter[0]);
9739 tw32(MAC_HASH_REG_1, mc_filter[1]);
9740 tw32(MAC_HASH_REG_2, mc_filter[2]);
9741 tw32(MAC_HASH_REG_3, mc_filter[3]);
9742 }
9743
Michael Chane565eec2014-01-03 10:09:12 -08009744 if (netdev_uc_count(dev) > TG3_MAX_UCAST_ADDR(tp)) {
9745 rx_mode |= RX_MODE_PROMISC;
9746 } else if (!(dev->flags & IFF_PROMISC)) {
9747 /* Add all entries into to the mac addr filter list */
9748 int i = 0;
9749 struct netdev_hw_addr *ha;
9750
9751 netdev_for_each_uc_addr(ha, dev) {
9752 __tg3_set_one_mac_addr(tp, ha->addr,
9753 i + TG3_UCAST_ADDR_IDX(tp));
9754 i++;
9755 }
9756 }
9757
Matt Carlsonccd5ba92012-02-13 10:20:08 +00009758 if (rx_mode != tp->rx_mode) {
9759 tp->rx_mode = rx_mode;
9760 tw32_f(MAC_RX_MODE, rx_mode);
9761 udelay(10);
9762 }
9763}
9764
Michael Chan91024262012-09-28 07:12:38 +00009765static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00009766{
9767 int i;
9768
9769 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00009770 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00009771}
9772
9773static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009774{
9775 int i;
9776
9777 if (!tg3_flag(tp, SUPPORT_MSIX))
9778 return;
9779
Michael Chan0b3ba052012-11-14 14:44:29 +00009780 if (tp->rxq_cnt == 1) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009781 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00009782 return;
9783 }
9784
9785 /* Validate table against current IRQ count */
9786 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
Michael Chan0b3ba052012-11-14 14:44:29 +00009787 if (tp->rss_ind_tbl[i] >= tp->rxq_cnt)
Matt Carlson90415472011-12-16 13:33:23 +00009788 break;
9789 }
9790
9791 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00009792 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009793}
9794
Matt Carlson90415472011-12-16 13:33:23 +00009795static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009796{
9797 int i = 0;
9798 u32 reg = MAC_RSS_INDIR_TBL_0;
9799
9800 while (i < TG3_RSS_INDIR_TBL_SIZE) {
9801 u32 val = tp->rss_ind_tbl[i];
9802 i++;
9803 for (; i % 8; i++) {
9804 val <<= 4;
9805 val |= tp->rss_ind_tbl[i];
9806 }
9807 tw32(reg, val);
9808 reg += 4;
9809 }
9810}
9811
Nithin Sujir9bc297e2013-06-03 09:19:34 +00009812static inline u32 tg3_lso_rd_dma_workaround_bit(struct tg3 *tp)
9813{
9814 if (tg3_asic_rev(tp) == ASIC_REV_5719)
9815 return TG3_LSO_RD_DMA_TX_LENGTH_WA_5719;
9816 else
9817 return TG3_LSO_RD_DMA_TX_LENGTH_WA_5720;
9818}
9819
Matt Carlson2d31eca2009-09-01 12:53:31 +00009820/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00009821static int tg3_reset_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009822{
9823 u32 val, rdmac_mode;
9824 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00009825 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009826
9827 tg3_disable_ints(tp);
9828
9829 tg3_stop_fw(tp);
9830
9831 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
9832
Joe Perches63c3a662011-04-26 08:12:10 +00009833 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07009834 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009835
Nithin Sujirfdad8de2013-04-09 08:48:08 +00009836 if ((tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
9837 !(tp->phy_flags & TG3_PHYFLG_USER_CONFIGURED)) {
9838 tg3_phy_pull_config(tp);
Nithin Sujir400dfba2013-05-18 06:26:53 +00009839 tg3_eee_pull_config(tp, NULL);
Nithin Sujirfdad8de2013-04-09 08:48:08 +00009840 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
9841 }
9842
Nithin Sujir400dfba2013-05-18 06:26:53 +00009843 /* Enable MAC control of LPI */
9844 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
9845 tg3_setup_eee(tp);
9846
Matt Carlson603f1172010-02-12 14:47:10 +00009847 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08009848 tg3_phy_reset(tp);
9849
Linus Torvalds1da177e2005-04-16 15:20:36 -07009850 err = tg3_chip_reset(tp);
9851 if (err)
9852 return err;
9853
9854 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
9855
Joe Perches41535772013-02-16 11:20:04 +00009856 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009857 val = tr32(TG3_CPMU_CTRL);
9858 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
9859 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08009860
9861 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9862 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9863 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9864 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
9865
9866 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
9867 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
9868 val |= CPMU_LNK_AWARE_MACCLK_6_25;
9869 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
9870
9871 val = tr32(TG3_CPMU_HST_ACC);
9872 val &= ~CPMU_HST_ACC_MACCLK_MASK;
9873 val |= CPMU_HST_ACC_MACCLK_6_25;
9874 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07009875 }
9876
Joe Perches41535772013-02-16 11:20:04 +00009877 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson33466d92009-04-20 06:57:41 +00009878 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
9879 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
9880 PCIE_PWR_MGMT_L1_THRESH_4MS;
9881 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00009882
9883 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
9884 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
9885
9886 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00009887
Matt Carlsonf40386c2009-11-02 14:24:02 +00009888 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
9889 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00009890 }
9891
Joe Perches63c3a662011-04-26 08:12:10 +00009892 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00009893 u32 grc_mode = tr32(GRC_MODE);
9894
9895 /* Access the lower 1K of PL PCIE block registers. */
9896 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9897 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
9898
9899 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
9900 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
9901 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
9902
9903 tw32(GRC_MODE, grc_mode);
9904 }
9905
Matt Carlson55086ad2011-12-14 11:09:59 +00009906 if (tg3_flag(tp, 57765_CLASS)) {
Joe Perches41535772013-02-16 11:20:04 +00009907 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlson5093eed2010-11-24 08:31:45 +00009908 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00009909
Matt Carlson5093eed2010-11-24 08:31:45 +00009910 /* Access the lower 1K of PL PCIE block registers. */
9911 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9912 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00009913
Matt Carlson5093eed2010-11-24 08:31:45 +00009914 val = tr32(TG3_PCIE_TLDLPL_PORT +
9915 TG3_PCIE_PL_LO_PHYCTL5);
9916 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
9917 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00009918
Matt Carlson5093eed2010-11-24 08:31:45 +00009919 tw32(GRC_MODE, grc_mode);
9920 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00009921
Joe Perches41535772013-02-16 11:20:04 +00009922 if (tg3_chip_rev(tp) != CHIPREV_57765_AX) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009923 u32 grc_mode;
9924
9925 /* Fix transmit hangs */
9926 val = tr32(TG3_CPMU_PADRNG_CTL);
9927 val |= TG3_CPMU_PADRNG_CTL_RDIV2;
9928 tw32(TG3_CPMU_PADRNG_CTL, val);
9929
9930 grc_mode = tr32(GRC_MODE);
Matt Carlson1ff30a52011-05-19 12:12:46 +00009931
9932 /* Access the lower 1K of DL PCIE block registers. */
9933 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9934 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
9935
9936 val = tr32(TG3_PCIE_TLDLPL_PORT +
9937 TG3_PCIE_DL_LO_FTSMAX);
9938 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
9939 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
9940 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
9941
9942 tw32(GRC_MODE, grc_mode);
9943 }
9944
Matt Carlsona977dbe2010-04-12 06:58:26 +00009945 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9946 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9947 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9948 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00009949 }
9950
Linus Torvalds1da177e2005-04-16 15:20:36 -07009951 /* This works around an issue with Athlon chipsets on
9952 * B3 tigon3 silicon. This bit has no effect on any
9953 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07009954 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009955 */
Joe Perches63c3a662011-04-26 08:12:10 +00009956 if (!tg3_flag(tp, CPMU_PRESENT)) {
9957 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07009958 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
9959 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009961
Joe Perches41535772013-02-16 11:20:04 +00009962 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009963 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964 val = tr32(TG3PCI_PCISTATE);
9965 val |= PCISTATE_RETRY_SAME_DMA;
9966 tw32(TG3PCI_PCISTATE, val);
9967 }
9968
Joe Perches63c3a662011-04-26 08:12:10 +00009969 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07009970 /* Allow reads and writes to the
9971 * APE register and memory space.
9972 */
9973 val = tr32(TG3PCI_PCISTATE);
9974 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00009975 PCISTATE_ALLOW_APE_SHMEM_WR |
9976 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07009977 tw32(TG3PCI_PCISTATE, val);
9978 }
9979
Joe Perches41535772013-02-16 11:20:04 +00009980 if (tg3_chip_rev(tp) == CHIPREV_5704_BX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009981 /* Enable some hw fixes. */
9982 val = tr32(TG3PCI_MSI_DATA);
9983 val |= (1 << 26) | (1 << 28) | (1 << 29);
9984 tw32(TG3PCI_MSI_DATA, val);
9985 }
9986
9987 /* Descriptor ring init may make accesses to the
9988 * NIC SRAM area to setup the TX descriptors, so we
9989 * can only do this after the hardware has been
9990 * successfully reset.
9991 */
Michael Chan32d8c572006-07-25 16:38:29 -07009992 err = tg3_init_rings(tp);
9993 if (err)
9994 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009995
Joe Perches63c3a662011-04-26 08:12:10 +00009996 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009997 val = tr32(TG3PCI_DMA_RW_CTRL) &
9998 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Joe Perches41535772013-02-16 11:20:04 +00009999 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Matt Carlson1a319022010-04-12 06:58:25 +000010000 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +000010001 if (!tg3_flag(tp, 57765_CLASS) &&
Joe Perches41535772013-02-16 11:20:04 +000010002 tg3_asic_rev(tp) != ASIC_REV_5717 &&
10003 tg3_asic_rev(tp) != ASIC_REV_5762)
Matt Carlson0aebff42011-04-25 12:42:45 +000010004 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000010005 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
Joe Perches41535772013-02-16 11:20:04 +000010006 } else if (tg3_asic_rev(tp) != ASIC_REV_5784 &&
10007 tg3_asic_rev(tp) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -070010008 /* This value is determined during the probe time DMA
10009 * engine test, tg3_test_dma.
10010 */
10011 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
10012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010013
10014 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
10015 GRC_MODE_4X_NIC_SEND_RINGS |
10016 GRC_MODE_NO_TX_PHDR_CSUM |
10017 GRC_MODE_NO_RX_PHDR_CSUM);
10018 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -070010019
10020 /* Pseudo-header checksum is done by hardware logic and not
10021 * the offload processers, so make the chip do the pseudo-
10022 * header checksums on receive. For transmit it is more
10023 * convenient to do the pseudo-header checksum in software
10024 * as Linux does that on transmit for us in all cases.
10025 */
10026 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010027
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +000010028 val = GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP;
10029 if (tp->rxptpctl)
10030 tw32(TG3_RX_PTP_CTL,
10031 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
10032
10033 if (tg3_flag(tp, PTP_CAPABLE))
10034 val |= GRC_MODE_TIME_SYNC_ENABLE;
10035
10036 tw32(GRC_MODE, tp->grc_mode | val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010037
10038 /* Setup the timer prescalar register. Clock is always 66Mhz. */
10039 val = tr32(GRC_MISC_CFG);
10040 val &= ~0xff;
10041 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
10042 tw32(GRC_MISC_CFG, val);
10043
10044 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +000010045 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010046 /* Do nothing. */
Joe Perches41535772013-02-16 11:20:04 +000010047 } else if (tg3_asic_rev(tp) != ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010048 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
Joe Perches41535772013-02-16 11:20:04 +000010049 if (tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010050 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
10051 else
10052 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
10053 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
10054 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +000010055 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010056 int fw_len;
10057
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080010058 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010059 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
10060 tw32(BUFMGR_MB_POOL_ADDR,
10061 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
10062 tw32(BUFMGR_MB_POOL_SIZE,
10063 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
10064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010065
Michael Chan0f893dc2005-07-25 12:30:38 -070010066 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010067 tw32(BUFMGR_MB_RDMA_LOW_WATER,
10068 tp->bufmgr_config.mbuf_read_dma_low_water);
10069 tw32(BUFMGR_MB_MACRX_LOW_WATER,
10070 tp->bufmgr_config.mbuf_mac_rx_low_water);
10071 tw32(BUFMGR_MB_HIGH_WATER,
10072 tp->bufmgr_config.mbuf_high_water);
10073 } else {
10074 tw32(BUFMGR_MB_RDMA_LOW_WATER,
10075 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
10076 tw32(BUFMGR_MB_MACRX_LOW_WATER,
10077 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
10078 tw32(BUFMGR_MB_HIGH_WATER,
10079 tp->bufmgr_config.mbuf_high_water_jumbo);
10080 }
10081 tw32(BUFMGR_DMA_LOW_WATER,
10082 tp->bufmgr_config.dma_low_water);
10083 tw32(BUFMGR_DMA_HIGH_WATER,
10084 tp->bufmgr_config.dma_high_water);
10085
Matt Carlsond309a462010-09-30 10:34:31 +000010086 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
Joe Perches41535772013-02-16 11:20:04 +000010087 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsond309a462010-09-30 10:34:31 +000010088 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Joe Perches41535772013-02-16 11:20:04 +000010089 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Nithin Sujir94962f72013-12-06 09:53:19 -080010090 tg3_asic_rev(tp) == ASIC_REV_5762 ||
Joe Perches41535772013-02-16 11:20:04 +000010091 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
10092 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0)
Matt Carlson4d958472011-04-20 07:57:35 +000010093 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +000010094 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010095 for (i = 0; i < 2000; i++) {
10096 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
10097 break;
10098 udelay(10);
10099 }
10100 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +000010101 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010102 return -ENODEV;
10103 }
10104
Joe Perches41535772013-02-16 11:20:04 +000010105 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5906_A1)
Matt Carlsoneb07a942011-04-20 07:57:36 +000010106 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -070010107
Matt Carlsoneb07a942011-04-20 07:57:36 +000010108 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010109
10110 /* Initialize TG3_BDINFO's at:
10111 * RCVDBDI_STD_BD: standard eth size rx ring
10112 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
10113 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
10114 *
10115 * like so:
10116 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
10117 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
10118 * ring attribute flags
10119 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
10120 *
10121 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
10122 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
10123 *
10124 * The size of each ring is fixed in the firmware, but the location is
10125 * configurable.
10126 */
10127 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +000010128 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010129 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +000010130 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +000010131 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +000010132 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
10133 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010134
Matt Carlsonfdb72b32009-08-28 13:57:12 +000010135 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +000010136 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010137 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
10138 BDINFO_FLAGS_DISABLED);
10139
Matt Carlsonfdb72b32009-08-28 13:57:12 +000010140 /* Program the jumbo buffer descriptor ring control
10141 * blocks on those devices that have them.
10142 */
Joe Perches41535772013-02-16 11:20:04 +000010143 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +000010144 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145
Joe Perches63c3a662011-04-26 08:12:10 +000010146 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010147 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +000010148 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010149 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +000010150 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +000010151 val = TG3_RX_JMB_RING_SIZE(tp) <<
10152 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010153 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +000010154 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +000010155 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Michael Chanc65a17f2013-01-06 12:51:07 +000010156 tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000010157 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson87668d32009-11-13 13:03:34 +000010158 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
10159 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010160 } else {
10161 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
10162 BDINFO_FLAGS_DISABLED);
10163 }
10164
Joe Perches63c3a662011-04-26 08:12:10 +000010165 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +000010166 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010167 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
10168 val |= (TG3_RX_STD_DMA_SZ << 2);
10169 } else
Matt Carlson04380d42010-04-12 06:58:29 +000010170 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +000010171 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +000010172 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +000010173
10174 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010175
Matt Carlson411da642009-11-13 13:03:46 +000010176 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +000010177 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010178
Joe Perches63c3a662011-04-26 08:12:10 +000010179 tpr->rx_jmb_prod_idx =
10180 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +000010181 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010182
Matt Carlson2d31eca2009-09-01 12:53:31 +000010183 tg3_rings_reset(tp);
10184
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185 /* Initialize MAC address and backoff seed. */
Joe Perches953c96e2013-04-09 10:18:14 +000010186 __tg3_set_mac_addr(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010187
10188 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +000010189 tw32(MAC_RX_MTU_SIZE,
10190 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191
10192 /* The slot time is changed by tg3_setup_phy if we
10193 * run at gigabit with half duplex.
10194 */
Matt Carlsonf2096f92011-04-05 14:22:48 +000010195 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
10196 (6 << TX_LENGTHS_IPG_SHIFT) |
10197 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
10198
Joe Perches41535772013-02-16 11:20:04 +000010199 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10200 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000010201 val |= tr32(MAC_TX_LENGTHS) &
10202 (TX_LENGTHS_JMB_FRM_LEN_MSK |
10203 TX_LENGTHS_CNT_DWN_VAL_MSK);
10204
10205 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010206
10207 /* Receive rules. */
10208 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
10209 tw32(RCVLPC_CONFIG, 0x0181);
10210
10211 /* Calculate RDMAC_MODE setting early, we need it to determine
10212 * the RCVLPC_STATE_ENABLE mask.
10213 */
10214 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
10215 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
10216 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
10217 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
10218 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -070010219
Joe Perches41535772013-02-16 11:20:04 +000010220 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +000010221 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
10222
Joe Perches41535772013-02-16 11:20:04 +000010223 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
10224 tg3_asic_rev(tp) == ASIC_REV_5785 ||
10225 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -070010226 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
10227 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
10228 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
10229
Joe Perches41535772013-02-16 11:20:04 +000010230 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
10231 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000010232 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +000010233 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010234 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
10235 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010236 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010237 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
10238 }
10239 }
10240
Joe Perches63c3a662011-04-26 08:12:10 +000010241 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -070010242 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
10243
Joe Perches41535772013-02-16 11:20:04 +000010244 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlsond3f677a2013-02-14 14:27:51 +000010245 tp->dma_limit = 0;
10246 if (tp->dev->mtu <= ETH_DATA_LEN) {
10247 rdmac_mode |= RDMAC_MODE_JMB_2K_MMRR;
10248 tp->dma_limit = TG3_TX_BD_DMA_MAX_2K;
10249 }
10250 }
10251
Joe Perches63c3a662011-04-26 08:12:10 +000010252 if (tg3_flag(tp, HW_TSO_1) ||
10253 tg3_flag(tp, HW_TSO_2) ||
10254 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -080010255 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
10256
Matt Carlson108a6c12011-05-19 12:12:47 +000010257 if (tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000010258 tg3_asic_rev(tp) == ASIC_REV_5785 ||
10259 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson027455a2008-12-21 20:19:30 -080010260 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010261
Joe Perches41535772013-02-16 11:20:04 +000010262 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10263 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000010264 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
10265
Joe Perches41535772013-02-16 11:20:04 +000010266 if (tg3_asic_rev(tp) == ASIC_REV_5761 ||
10267 tg3_asic_rev(tp) == ASIC_REV_5784 ||
10268 tg3_asic_rev(tp) == ASIC_REV_5785 ||
10269 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000010270 tg3_flag(tp, 57765_PLUS)) {
Michael Chanc65a17f2013-01-06 12:51:07 +000010271 u32 tgtreg;
10272
Joe Perches41535772013-02-16 11:20:04 +000010273 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +000010274 tgtreg = TG3_RDMA_RSRVCTRL_REG2;
10275 else
10276 tgtreg = TG3_RDMA_RSRVCTRL_REG;
10277
10278 val = tr32(tgtreg);
Joe Perches41535772013-02-16 11:20:04 +000010279 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
10280 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +000010281 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
10282 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
10283 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
10284 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
10285 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
10286 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +000010287 }
Michael Chanc65a17f2013-01-06 12:51:07 +000010288 tw32(tgtreg, val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
Matt Carlson41a8a7e2010-09-15 08:59:53 +000010289 }
10290
Joe Perches41535772013-02-16 11:20:04 +000010291 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
10292 tg3_asic_rev(tp) == ASIC_REV_5720 ||
10293 tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc65a17f2013-01-06 12:51:07 +000010294 u32 tgtreg;
10295
Joe Perches41535772013-02-16 11:20:04 +000010296 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +000010297 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL2;
10298 else
10299 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL;
10300
10301 val = tr32(tgtreg);
10302 tw32(tgtreg, val |
Matt Carlsond309a462010-09-30 10:34:31 +000010303 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
10304 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
10305 }
10306
Linus Torvalds1da177e2005-04-16 15:20:36 -070010307 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +000010308 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -070010309 val = tr32(RCVLPC_STATS_ENABLE);
10310 val &= ~RCVLPC_STATSENAB_DACK_FIX;
10311 tw32(RCVLPC_STATS_ENABLE, val);
10312 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010313 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010314 val = tr32(RCVLPC_STATS_ENABLE);
10315 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
10316 tw32(RCVLPC_STATS_ENABLE, val);
10317 } else {
10318 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
10319 }
10320 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
10321 tw32(SNDDATAI_STATSENAB, 0xffffff);
10322 tw32(SNDDATAI_STATSCTRL,
10323 (SNDDATAI_SCTRL_ENABLE |
10324 SNDDATAI_SCTRL_FASTUPD));
10325
10326 /* Setup host coalescing engine. */
10327 tw32(HOSTCC_MODE, 0);
10328 for (i = 0; i < 2000; i++) {
10329 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
10330 break;
10331 udelay(10);
10332 }
10333
Michael Chand244c892005-07-05 14:42:33 -070010334 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010335
Joe Perches63c3a662011-04-26 08:12:10 +000010336 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010337 /* Status/statistics block address. See tg3_timer,
10338 * the tg3_periodic_fetch_stats call there, and
10339 * tg3_get_stats to see how this works for 5705/5750 chips.
10340 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010341 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
10342 ((u64) tp->stats_mapping >> 32));
10343 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
10344 ((u64) tp->stats_mapping & 0xffffffff));
10345 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010346
Linus Torvalds1da177e2005-04-16 15:20:36 -070010347 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010348
10349 /* Clear statistics and status block memory areas */
10350 for (i = NIC_SRAM_STATS_BLK;
10351 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
10352 i += sizeof(u32)) {
10353 tg3_write_mem(tp, i, 0);
10354 udelay(40);
10355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010356 }
10357
10358 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
10359
10360 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
10361 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010362 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010363 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
10364
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010365 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
10366 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -070010367 /* reset to prevent losing 1st rx packet intermittently */
10368 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10369 udelay(10);
10370 }
10371
Matt Carlson3bda1252008-08-15 14:08:22 -070010372 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +000010373 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
10374 MAC_MODE_FHDE_ENABLE;
10375 if (tg3_flag(tp, ENABLE_APE))
10376 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +000010377 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010378 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010379 tg3_asic_rev(tp) != ASIC_REV_5700)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010380 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010381 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
10382 udelay(40);
10383
Michael Chan314fba32005-04-21 17:07:04 -070010384 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +000010385 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -070010386 * register to preserve the GPIO settings for LOMs. The GPIOs,
10387 * whether used as inputs or outputs, are set by boot code after
10388 * reset.
10389 */
Joe Perches63c3a662011-04-26 08:12:10 +000010390 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -070010391 u32 gpio_mask;
10392
Michael Chan9d26e212006-12-07 00:21:14 -080010393 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
10394 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
10395 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -070010396
Joe Perches41535772013-02-16 11:20:04 +000010397 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070010398 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
10399 GRC_LCLCTRL_GPIO_OUTPUT3;
10400
Joe Perches41535772013-02-16 11:20:04 +000010401 if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanaf36e6b2006-03-23 01:28:06 -080010402 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
10403
Gary Zambranoaaf84462007-05-05 11:51:45 -070010404 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -070010405 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
10406
10407 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +000010408 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -080010409 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
10410 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -070010411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010412 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10413 udelay(100);
10414
Matt Carlsonc3b50032012-01-17 15:27:23 +000010415 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010416 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010417 val |= MSGINT_MODE_ENABLE;
10418 if (tp->irq_cnt > 1)
10419 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010420 if (!tg3_flag(tp, 1SHOT_MSI))
10421 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010422 tw32(MSGINT_MODE, val);
10423 }
10424
Joe Perches63c3a662011-04-26 08:12:10 +000010425 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010426 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
10427 udelay(40);
10428 }
10429
10430 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
10431 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
10432 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
10433 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
10434 WDMAC_MODE_LNGREAD_ENAB);
10435
Joe Perches41535772013-02-16 11:20:04 +000010436 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
10437 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000010438 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +000010439 (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 ||
10440 tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010441 /* nothing */
10442 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010443 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010444 val |= WDMAC_MODE_RX_ACCEL;
10445 }
10446 }
10447
Michael Chand9ab5ad12006-03-20 22:27:35 -080010448 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +000010449 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -070010450 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -080010451
Joe Perches41535772013-02-16 11:20:04 +000010452 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson788a0352009-11-02 14:26:03 +000010453 val |= WDMAC_MODE_BURST_ALL_DATA;
10454
Linus Torvalds1da177e2005-04-16 15:20:36 -070010455 tw32_f(WDMAC_MODE, val);
10456 udelay(40);
10457
Joe Perches63c3a662011-04-26 08:12:10 +000010458 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -070010459 u16 pcix_cmd;
10460
10461 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10462 &pcix_cmd);
Joe Perches41535772013-02-16 11:20:04 +000010463 if (tg3_asic_rev(tp) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -070010464 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
10465 pcix_cmd |= PCI_X_CMD_READ_2K;
Joe Perches41535772013-02-16 11:20:04 +000010466 } else if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -070010467 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
10468 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010469 }
Matt Carlson9974a352007-10-07 23:27:28 -070010470 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10471 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010472 }
10473
10474 tw32_f(RDMAC_MODE, rdmac_mode);
10475 udelay(40);
10476
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010477 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
10478 tg3_asic_rev(tp) == ASIC_REV_5720) {
Michael Chan091f0ea2012-07-29 19:15:43 +000010479 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
10480 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
10481 break;
10482 }
10483 if (i < TG3_NUM_RDMA_CHANNELS) {
10484 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010485 val |= tg3_lso_rd_dma_workaround_bit(tp);
Michael Chan091f0ea2012-07-29 19:15:43 +000010486 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010487 tg3_flag_set(tp, 5719_5720_RDMA_BUG);
Michael Chan091f0ea2012-07-29 19:15:43 +000010488 }
10489 }
10490
Linus Torvalds1da177e2005-04-16 15:20:36 -070010491 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010492 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010493 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -070010494
Joe Perches41535772013-02-16 11:20:04 +000010495 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson9936bcf2007-10-10 18:03:07 -070010496 tw32(SNDDATAC_MODE,
10497 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
10498 else
10499 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
10500
Linus Torvalds1da177e2005-04-16 15:20:36 -070010501 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
10502 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010503 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +000010504 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010505 val |= RCVDBDI_MODE_LRG_RING_SZ;
10506 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010507 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010508 if (tg3_flag(tp, HW_TSO_1) ||
10509 tg3_flag(tp, HW_TSO_2) ||
10510 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010511 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010512 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010513 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010514 val |= SNDBDI_MODE_MULTI_TXQ_EN;
10515 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010516 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
10517
Joe Perches41535772013-02-16 11:20:04 +000010518 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010519 err = tg3_load_5701_a0_firmware_fix(tp);
10520 if (err)
10521 return err;
10522 }
10523
Nithin Sujirc4dab502013-03-06 17:02:34 +000010524 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
10525 /* Ignore any errors for the firmware download. If download
10526 * fails, the device will operate with EEE disabled
10527 */
10528 tg3_load_57766_firmware(tp);
10529 }
10530
Joe Perches63c3a662011-04-26 08:12:10 +000010531 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010532 err = tg3_load_tso_firmware(tp);
10533 if (err)
10534 return err;
10535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010536
10537 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010538
Joe Perches63c3a662011-04-26 08:12:10 +000010539 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000010540 tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonb1d05212010-06-05 17:24:31 +000010541 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010542
Joe Perches41535772013-02-16 11:20:04 +000010543 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10544 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonf2096f92011-04-05 14:22:48 +000010545 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
10546 tp->tx_mode &= ~val;
10547 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
10548 }
10549
Linus Torvalds1da177e2005-04-16 15:20:36 -070010550 tw32_f(MAC_TX_MODE, tp->tx_mode);
10551 udelay(100);
10552
Joe Perches63c3a662011-04-26 08:12:10 +000010553 if (tg3_flag(tp, ENABLE_RSS)) {
Eric Dumazet39648352014-11-16 06:23:08 -080010554 u32 rss_key[10];
10555
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010556 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010557
Eric Dumazet39648352014-11-16 06:23:08 -080010558 netdev_rss_key_fill(rss_key, 10 * sizeof(u32));
10559
10560 for (i = 0; i < 10 ; i++)
10561 tw32(MAC_RSS_HASH_KEY_0 + i*4, rss_key[i]);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010562 }
10563
Linus Torvalds1da177e2005-04-16 15:20:36 -070010564 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010565 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080010566 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
10567
Nithin Sujir378b72c2013-07-29 13:58:39 -070010568 if (tg3_asic_rev(tp) == ASIC_REV_5762)
10569 tp->rx_mode |= RX_MODE_IPV4_FRAG_FIX;
10570
Joe Perches63c3a662011-04-26 08:12:10 +000010571 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010572 tp->rx_mode |= RX_MODE_RSS_ENABLE |
10573 RX_MODE_RSS_ITBL_HASH_BITS_7 |
10574 RX_MODE_RSS_IPV6_HASH_EN |
10575 RX_MODE_RSS_TCP_IPV6_HASH_EN |
10576 RX_MODE_RSS_IPV4_HASH_EN |
10577 RX_MODE_RSS_TCP_IPV4_HASH_EN;
10578
Linus Torvalds1da177e2005-04-16 15:20:36 -070010579 tw32_f(MAC_RX_MODE, tp->rx_mode);
10580 udelay(10);
10581
Linus Torvalds1da177e2005-04-16 15:20:36 -070010582 tw32(MAC_LED_CTRL, tp->led_ctrl);
10583
10584 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010585 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010586 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10587 udelay(10);
10588 }
10589 tw32_f(MAC_RX_MODE, tp->rx_mode);
10590 udelay(10);
10591
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010592 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +000010593 if ((tg3_asic_rev(tp) == ASIC_REV_5704) &&
10594 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010595 /* Set drive transmission level to 1.2V */
10596 /* only if the signal pre-emphasis bit is not set */
10597 val = tr32(MAC_SERDES_CFG);
10598 val &= 0xfffff000;
10599 val |= 0x880;
10600 tw32(MAC_SERDES_CFG, val);
10601 }
Joe Perches41535772013-02-16 11:20:04 +000010602 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010603 tw32(MAC_SERDES_CFG, 0x616000);
10604 }
10605
10606 /* Prevent chip from dropping frames when flow control
10607 * is enabled.
10608 */
Matt Carlson55086ad2011-12-14 11:09:59 +000010609 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +000010610 val = 1;
10611 else
10612 val = 2;
10613 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010614
Joe Perches41535772013-02-16 11:20:04 +000010615 if (tg3_asic_rev(tp) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010616 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010617 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +000010618 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010619 }
10620
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010621 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010622 tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -080010623 u32 tmp;
10624
10625 tmp = tr32(SERDES_RX_CTRL);
10626 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
10627 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
10628 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
10629 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10630 }
10631
Joe Perches63c3a662011-04-26 08:12:10 +000010632 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010633 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +000010634 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010635
Joe Perches953c96e2013-04-09 10:18:14 +000010636 err = tg3_setup_phy(tp, false);
Matt Carlsondd477002008-05-25 23:45:58 -070010637 if (err)
10638 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010639
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010640 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
10641 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -070010642 u32 tmp;
10643
10644 /* Clear CRC stats. */
10645 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
10646 tg3_writephy(tp, MII_TG3_TEST1,
10647 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010648 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -070010649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010650 }
10651 }
10652
10653 __tg3_set_rx_mode(tp->dev);
10654
10655 /* Initialize receive rules. */
10656 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
10657 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
10658 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
10659 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
10660
Joe Perches63c3a662011-04-26 08:12:10 +000010661 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010662 limit = 8;
10663 else
10664 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +000010665 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010666 limit -= 4;
10667 switch (limit) {
10668 case 16:
10669 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
10670 case 15:
10671 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
10672 case 14:
10673 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
10674 case 13:
10675 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
10676 case 12:
10677 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
10678 case 11:
10679 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
10680 case 10:
10681 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
10682 case 9:
10683 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
10684 case 8:
10685 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
10686 case 7:
10687 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
10688 case 6:
10689 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
10690 case 5:
10691 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
10692 case 4:
10693 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
10694 case 3:
10695 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
10696 case 2:
10697 case 1:
10698
10699 default:
10700 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070010701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010702
Joe Perches63c3a662011-04-26 08:12:10 +000010703 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -070010704 /* Write our heartbeat update interval to APE. */
10705 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
10706 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -070010707
Linus Torvalds1da177e2005-04-16 15:20:36 -070010708 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
10709
Linus Torvalds1da177e2005-04-16 15:20:36 -070010710 return 0;
10711}
10712
10713/* Called at device open time to get the chip ready for
10714 * packet processing. Invoked with tp->lock held.
10715 */
Joe Perches953c96e2013-04-09 10:18:14 +000010716static int tg3_init_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010717{
Nithin Sujirdf465ab2013-06-12 11:08:59 -070010718 /* Chip may have been just powered on. If so, the boot code may still
10719 * be running initialization. Wait for it to finish to avoid races in
10720 * accessing the hardware.
10721 */
10722 tg3_enable_register_access(tp);
10723 tg3_poll_fw(tp);
10724
Linus Torvalds1da177e2005-04-16 15:20:36 -070010725 tg3_switch_clocks(tp);
10726
10727 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
10728
Matt Carlson2f751b62008-08-04 23:17:34 -070010729 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010730}
10731
Michael Chanaed93e02012-07-16 16:24:02 +000010732static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
10733{
10734 int i;
10735
10736 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
10737 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
10738
10739 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
10740 off += len;
10741
10742 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
10743 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
10744 memset(ocir, 0, TG3_OCIR_LEN);
10745 }
10746}
10747
10748/* sysfs attributes for hwmon */
10749static ssize_t tg3_show_temp(struct device *dev,
10750 struct device_attribute *devattr, char *buf)
10751{
Michael Chanaed93e02012-07-16 16:24:02 +000010752 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Guenter Roecka2f4dfb2013-11-22 22:07:57 -080010753 struct tg3 *tp = dev_get_drvdata(dev);
Michael Chanaed93e02012-07-16 16:24:02 +000010754 u32 temperature;
10755
10756 spin_lock_bh(&tp->lock);
10757 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
10758 sizeof(temperature));
10759 spin_unlock_bh(&tp->lock);
Jean Delvared3d11fe2015-09-01 18:07:41 +020010760 return sprintf(buf, "%u\n", temperature * 1000);
Michael Chanaed93e02012-07-16 16:24:02 +000010761}
10762
10763
10764static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
10765 TG3_TEMP_SENSOR_OFFSET);
10766static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
10767 TG3_TEMP_CAUTION_OFFSET);
10768static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
10769 TG3_TEMP_MAX_OFFSET);
10770
Guenter Roecka2f4dfb2013-11-22 22:07:57 -080010771static struct attribute *tg3_attrs[] = {
Michael Chanaed93e02012-07-16 16:24:02 +000010772 &sensor_dev_attr_temp1_input.dev_attr.attr,
10773 &sensor_dev_attr_temp1_crit.dev_attr.attr,
10774 &sensor_dev_attr_temp1_max.dev_attr.attr,
10775 NULL
10776};
Guenter Roecka2f4dfb2013-11-22 22:07:57 -080010777ATTRIBUTE_GROUPS(tg3);
Michael Chanaed93e02012-07-16 16:24:02 +000010778
Michael Chanaed93e02012-07-16 16:24:02 +000010779static void tg3_hwmon_close(struct tg3 *tp)
10780{
Michael Chanaed93e02012-07-16 16:24:02 +000010781 if (tp->hwmon_dev) {
10782 hwmon_device_unregister(tp->hwmon_dev);
10783 tp->hwmon_dev = NULL;
Michael Chanaed93e02012-07-16 16:24:02 +000010784 }
Michael Chanaed93e02012-07-16 16:24:02 +000010785}
10786
10787static void tg3_hwmon_open(struct tg3 *tp)
10788{
Guenter Roecka2f4dfb2013-11-22 22:07:57 -080010789 int i;
Michael Chanaed93e02012-07-16 16:24:02 +000010790 u32 size = 0;
10791 struct pci_dev *pdev = tp->pdev;
10792 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
10793
10794 tg3_sd_scan_scratchpad(tp, ocirs);
10795
10796 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
10797 if (!ocirs[i].src_data_length)
10798 continue;
10799
10800 size += ocirs[i].src_hdr_length;
10801 size += ocirs[i].src_data_length;
10802 }
10803
10804 if (!size)
10805 return;
10806
Guenter Roecka2f4dfb2013-11-22 22:07:57 -080010807 tp->hwmon_dev = hwmon_device_register_with_groups(&pdev->dev, "tg3",
10808 tp, tg3_groups);
Michael Chanaed93e02012-07-16 16:24:02 +000010809 if (IS_ERR(tp->hwmon_dev)) {
10810 tp->hwmon_dev = NULL;
10811 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
Michael Chanaed93e02012-07-16 16:24:02 +000010812 }
Michael Chanaed93e02012-07-16 16:24:02 +000010813}
10814
10815
Linus Torvalds1da177e2005-04-16 15:20:36 -070010816#define TG3_STAT_ADD32(PSTAT, REG) \
10817do { u32 __val = tr32(REG); \
10818 (PSTAT)->low += __val; \
10819 if ((PSTAT)->low < __val) \
10820 (PSTAT)->high += 1; \
10821} while (0)
10822
10823static void tg3_periodic_fetch_stats(struct tg3 *tp)
10824{
10825 struct tg3_hw_stats *sp = tp->hw_stats;
10826
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010827 if (!tp->link_up)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010828 return;
10829
10830 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
10831 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
10832 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
10833 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
10834 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
10835 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
10836 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
10837 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
10838 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
10839 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
10840 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
10841 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
10842 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010843 if (unlikely(tg3_flag(tp, 5719_5720_RDMA_BUG) &&
Michael Chan091f0ea2012-07-29 19:15:43 +000010844 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
10845 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
10846 u32 val;
10847
10848 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010849 val &= ~tg3_lso_rd_dma_workaround_bit(tp);
Michael Chan091f0ea2012-07-29 19:15:43 +000010850 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
Nithin Sujir9bc297e2013-06-03 09:19:34 +000010851 tg3_flag_clear(tp, 5719_5720_RDMA_BUG);
Michael Chan091f0ea2012-07-29 19:15:43 +000010852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010853
10854 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
10855 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
10856 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
10857 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
10858 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
10859 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
10860 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
10861 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
10862 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
10863 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
10864 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
10865 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
10866 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
10867 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -070010868
10869 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Joe Perches41535772013-02-16 11:20:04 +000010870 if (tg3_asic_rev(tp) != ASIC_REV_5717 &&
Nithin Sujir94962f72013-12-06 09:53:19 -080010871 tg3_asic_rev(tp) != ASIC_REV_5762 &&
Joe Perches41535772013-02-16 11:20:04 +000010872 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0 &&
10873 tg3_chip_rev_id(tp) != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000010874 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
10875 } else {
10876 u32 val = tr32(HOSTCC_FLOW_ATTN);
10877 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
10878 if (val) {
10879 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
10880 sp->rx_discards.low += val;
10881 if (sp->rx_discards.low < val)
10882 sp->rx_discards.high += 1;
10883 }
10884 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
10885 }
Michael Chan463d3052006-05-22 16:36:27 -070010886 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010887}
10888
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010889static void tg3_chk_missed_msi(struct tg3 *tp)
10890{
10891 u32 i;
10892
10893 for (i = 0; i < tp->irq_cnt; i++) {
10894 struct tg3_napi *tnapi = &tp->napi[i];
10895
10896 if (tg3_has_work(tnapi)) {
10897 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
10898 tnapi->last_tx_cons == tnapi->tx_cons) {
10899 if (tnapi->chk_msi_cnt < 1) {
10900 tnapi->chk_msi_cnt++;
10901 return;
10902 }
Matt Carlson7f230732011-08-31 11:44:48 +000010903 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010904 }
10905 }
10906 tnapi->chk_msi_cnt = 0;
10907 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
10908 tnapi->last_tx_cons = tnapi->tx_cons;
10909 }
10910}
10911
Linus Torvalds1da177e2005-04-16 15:20:36 -070010912static void tg3_timer(unsigned long __opaque)
10913{
10914 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010915
David S. Millerf47c11e2005-06-24 20:18:35 -070010916 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010917
Prashant Sreedharan4fd190a2015-01-14 11:33:49 -080010918 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING)) {
10919 spin_unlock(&tp->lock);
10920 goto restart_timer;
10921 }
10922
Joe Perches41535772013-02-16 11:20:04 +000010923 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000010924 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010925 tg3_chk_missed_msi(tp);
10926
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000010927 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
10928 /* BCM4785: Flush posted writes from GbE to host memory. */
10929 tr32(HOSTCC_MODE);
10930 }
10931
Joe Perches63c3a662011-04-26 08:12:10 +000010932 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070010933 /* All of this garbage is because when using non-tagged
10934 * IRQ status the mailbox/status_block protocol the chip
10935 * uses with the cpu is race prone.
10936 */
Matt Carlson898a56f2009-08-28 14:02:40 +000010937 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -070010938 tw32(GRC_LOCAL_CTRL,
10939 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
10940 } else {
10941 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010942 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -070010943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010944
David S. Millerfac9b832005-05-18 22:46:34 -070010945 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010946 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +000010947 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +000010948 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -070010949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010950 }
10951
Linus Torvalds1da177e2005-04-16 15:20:36 -070010952 /* This part only runs once per second. */
10953 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010954 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -070010955 tg3_periodic_fetch_stats(tp);
10956
Matt Carlsonb0c59432011-05-19 12:12:48 +000010957 if (tp->setlpicnt && !--tp->setlpicnt)
10958 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +000010959
Joe Perches63c3a662011-04-26 08:12:10 +000010960 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010961 u32 mac_stat;
10962 int phy_event;
10963
10964 mac_stat = tr32(MAC_STATUS);
10965
10966 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010967 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010968 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
10969 phy_event = 1;
10970 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
10971 phy_event = 1;
10972
10973 if (phy_event)
Joe Perches953c96e2013-04-09 10:18:14 +000010974 tg3_setup_phy(tp, false);
Joe Perches63c3a662011-04-26 08:12:10 +000010975 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010976 u32 mac_stat = tr32(MAC_STATUS);
10977 int need_setup = 0;
10978
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010979 if (tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010980 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
10981 need_setup = 1;
10982 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010983 if (!tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010984 (mac_stat & (MAC_STATUS_PCS_SYNCED |
10985 MAC_STATUS_SIGNAL_DET))) {
10986 need_setup = 1;
10987 }
10988 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -070010989 if (!tp->serdes_counter) {
10990 tw32_f(MAC_MODE,
10991 (tp->mac_mode &
10992 ~MAC_MODE_PORT_MODE_MASK));
10993 udelay(40);
10994 tw32_f(MAC_MODE, tp->mac_mode);
10995 udelay(40);
10996 }
Joe Perches953c96e2013-04-09 10:18:14 +000010997 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010998 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010999 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011000 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -070011001 tg3_serdes_parallel_detect(tp);
Nithin Sujir1743b832014-01-03 10:09:14 -080011002 } else if (tg3_flag(tp, POLL_CPMU_LINK)) {
11003 u32 cpmu = tr32(TG3_CPMU_STATUS);
11004 bool link_up = !((cpmu & TG3_CPMU_STATUS_LINK_MASK) ==
11005 TG3_CPMU_STATUS_LINK_MASK);
11006
11007 if (link_up != tp->link_up)
11008 tg3_setup_phy(tp, false);
Matt Carlson57d8b882010-06-05 17:24:35 +000011009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011010
11011 tp->timer_counter = tp->timer_multiplier;
11012 }
11013
Michael Chan130b8e42006-09-27 16:00:40 -070011014 /* Heartbeat is only sent once every 2 seconds.
11015 *
11016 * The heartbeat is to tell the ASF firmware that the host
11017 * driver is still alive. In the event that the OS crashes,
11018 * ASF needs to reset the hardware to free up the FIFO space
11019 * that may be filled with rx packets destined for the host.
11020 * If the FIFO is full, ASF will no longer function properly.
11021 *
11022 * Unintended resets have been reported on real time kernels
11023 * where the timer doesn't run on time. Netpoll will also have
11024 * same problem.
11025 *
11026 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
11027 * to check the ring condition when the heartbeat is expiring
11028 * before doing the reset. This will prevent most unintended
11029 * resets.
11030 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011031 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000011032 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -070011033 tg3_wait_for_event_ack(tp);
11034
Michael Chanbbadf502006-04-06 21:46:34 -070011035 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -070011036 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -070011037 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011038 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
11039 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -070011040
11041 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011042 }
11043 tp->asf_counter = tp->asf_multiplier;
11044 }
11045
David S. Millerf47c11e2005-06-24 20:18:35 -070011046 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011047
Michael Chanf475f162006-03-27 23:20:14 -080011048restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -070011049 tp->timer.expires = jiffies + tp->timer_offset;
11050 add_timer(&tp->timer);
11051}
11052
Bill Pemberton229b1ad2012-12-03 09:22:59 -050011053static void tg3_timer_init(struct tg3 *tp)
Matt Carlson21f76382012-02-22 12:35:21 +000011054{
11055 if (tg3_flag(tp, TAGGED_STATUS) &&
Joe Perches41535772013-02-16 11:20:04 +000011056 tg3_asic_rev(tp) != ASIC_REV_5717 &&
Matt Carlson21f76382012-02-22 12:35:21 +000011057 !tg3_flag(tp, 57765_CLASS))
11058 tp->timer_offset = HZ;
11059 else
11060 tp->timer_offset = HZ / 10;
11061
11062 BUG_ON(tp->timer_offset > HZ);
11063
11064 tp->timer_multiplier = (HZ / tp->timer_offset);
11065 tp->asf_multiplier = (HZ / tp->timer_offset) *
11066 TG3_FW_UPDATE_FREQ_SEC;
11067
11068 init_timer(&tp->timer);
11069 tp->timer.data = (unsigned long) tp;
11070 tp->timer.function = tg3_timer;
11071}
11072
11073static void tg3_timer_start(struct tg3 *tp)
11074{
11075 tp->asf_counter = tp->asf_multiplier;
11076 tp->timer_counter = tp->timer_multiplier;
11077
11078 tp->timer.expires = jiffies + tp->timer_offset;
11079 add_timer(&tp->timer);
11080}
11081
11082static void tg3_timer_stop(struct tg3 *tp)
11083{
11084 del_timer_sync(&tp->timer);
11085}
11086
11087/* Restart hardware after configuration changes, self-test, etc.
11088 * Invoked with tp->lock held.
11089 */
Joe Perches953c96e2013-04-09 10:18:14 +000011090static int tg3_restart_hw(struct tg3 *tp, bool reset_phy)
Matt Carlson21f76382012-02-22 12:35:21 +000011091 __releases(tp->lock)
11092 __acquires(tp->lock)
11093{
11094 int err;
11095
11096 err = tg3_init_hw(tp, reset_phy);
11097 if (err) {
11098 netdev_err(tp->dev,
11099 "Failed to re-initialize device, aborting\n");
11100 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11101 tg3_full_unlock(tp);
11102 tg3_timer_stop(tp);
11103 tp->irq_sync = 0;
11104 tg3_napi_enable(tp);
11105 dev_close(tp->dev);
11106 tg3_full_lock(tp, 0);
11107 }
11108 return err;
11109}
11110
11111static void tg3_reset_task(struct work_struct *work)
11112{
11113 struct tg3 *tp = container_of(work, struct tg3, reset_task);
11114 int err;
11115
Prashant Sreedharandb84bf42015-01-14 11:34:17 -080011116 rtnl_lock();
Matt Carlson21f76382012-02-22 12:35:21 +000011117 tg3_full_lock(tp, 0);
11118
11119 if (!netif_running(tp->dev)) {
11120 tg3_flag_clear(tp, RESET_TASK_PENDING);
11121 tg3_full_unlock(tp);
Prashant Sreedharandb84bf42015-01-14 11:34:17 -080011122 rtnl_unlock();
Matt Carlson21f76382012-02-22 12:35:21 +000011123 return;
11124 }
11125
11126 tg3_full_unlock(tp);
11127
11128 tg3_phy_stop(tp);
11129
11130 tg3_netif_stop(tp);
11131
11132 tg3_full_lock(tp, 1);
11133
11134 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
11135 tp->write32_tx_mbox = tg3_write32_tx_mbox;
11136 tp->write32_rx_mbox = tg3_write_flush_reg32;
11137 tg3_flag_set(tp, MBOX_WRITE_REORDER);
11138 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
11139 }
11140
11141 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Joe Perches953c96e2013-04-09 10:18:14 +000011142 err = tg3_init_hw(tp, true);
Matt Carlson21f76382012-02-22 12:35:21 +000011143 if (err)
11144 goto out;
11145
11146 tg3_netif_start(tp);
11147
11148out:
11149 tg3_full_unlock(tp);
11150
11151 if (!err)
11152 tg3_phy_start(tp);
11153
11154 tg3_flag_clear(tp, RESET_TASK_PENDING);
Prashant Sreedharandb84bf42015-01-14 11:34:17 -080011155 rtnl_unlock();
Matt Carlson21f76382012-02-22 12:35:21 +000011156}
11157
Matt Carlson4f125f42009-09-01 12:55:02 +000011158static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -080011159{
David Howells7d12e782006-10-05 14:55:46 +010011160 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -080011161 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000011162 char *name;
11163 struct tg3_napi *tnapi = &tp->napi[irq_num];
11164
11165 if (tp->irq_cnt == 1)
11166 name = tp->dev->name;
11167 else {
11168 name = &tnapi->irq_lbl[0];
Nithin Sujir21e315e2013-09-20 16:47:00 -070011169 if (tnapi->tx_buffers && tnapi->rx_rcb)
11170 snprintf(name, IFNAMSIZ,
11171 "%s-txrx-%d", tp->dev->name, irq_num);
11172 else if (tnapi->tx_buffers)
11173 snprintf(name, IFNAMSIZ,
11174 "%s-tx-%d", tp->dev->name, irq_num);
11175 else if (tnapi->rx_rcb)
11176 snprintf(name, IFNAMSIZ,
11177 "%s-rx-%d", tp->dev->name, irq_num);
11178 else
11179 snprintf(name, IFNAMSIZ,
11180 "%s-%d", tp->dev->name, irq_num);
Matt Carlson4f125f42009-09-01 12:55:02 +000011181 name[IFNAMSIZ-1] = 0;
11182 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080011183
Joe Perches63c3a662011-04-26 08:12:10 +000011184 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080011185 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000011186 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080011187 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000011188 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080011189 } else {
11190 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000011191 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080011192 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000011193 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080011194 }
Matt Carlson4f125f42009-09-01 12:55:02 +000011195
11196 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011197}
11198
Michael Chan79381092005-04-21 17:13:59 -070011199static int tg3_test_interrupt(struct tg3 *tp)
11200{
Matt Carlson09943a12009-08-28 14:01:57 +000011201 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070011202 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070011203 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011204 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070011205
Michael Chand4bc3922005-05-29 14:59:20 -070011206 if (!netif_running(dev))
11207 return -ENODEV;
11208
Michael Chan79381092005-04-21 17:13:59 -070011209 tg3_disable_ints(tp);
11210
Matt Carlson4f125f42009-09-01 12:55:02 +000011211 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070011212
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011213 /*
11214 * Turn off MSI one shot mode. Otherwise this test has no
11215 * observable way to know whether the interrupt was delivered.
11216 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000011217 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011218 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
11219 tw32(MSGINT_MODE, val);
11220 }
11221
Matt Carlson4f125f42009-09-01 12:55:02 +000011222 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000011223 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070011224 if (err)
11225 return err;
11226
Matt Carlson898a56f2009-08-28 14:02:40 +000011227 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070011228 tg3_enable_ints(tp);
11229
11230 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011231 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070011232
11233 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070011234 u32 int_mbox, misc_host_ctrl;
11235
Matt Carlson898a56f2009-08-28 14:02:40 +000011236 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070011237 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
11238
11239 if ((int_mbox != 0) ||
11240 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
11241 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070011242 break;
Michael Chanb16250e2006-09-27 16:10:14 -070011243 }
11244
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000011245 if (tg3_flag(tp, 57765_PLUS) &&
11246 tnapi->hw_status->status_tag != tnapi->last_tag)
11247 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
11248
Michael Chan79381092005-04-21 17:13:59 -070011249 msleep(10);
11250 }
11251
11252 tg3_disable_ints(tp);
11253
Matt Carlson4f125f42009-09-01 12:55:02 +000011254 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011255
Matt Carlson4f125f42009-09-01 12:55:02 +000011256 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070011257
11258 if (err)
11259 return err;
11260
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011261 if (intr_ok) {
11262 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000011263 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011264 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
11265 tw32(MSGINT_MODE, val);
11266 }
Michael Chan79381092005-04-21 17:13:59 -070011267 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011268 }
Michael Chan79381092005-04-21 17:13:59 -070011269
11270 return -EIO;
11271}
11272
11273/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
11274 * successfully restored
11275 */
11276static int tg3_test_msi(struct tg3 *tp)
11277{
Michael Chan79381092005-04-21 17:13:59 -070011278 int err;
11279 u16 pci_cmd;
11280
Joe Perches63c3a662011-04-26 08:12:10 +000011281 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070011282 return 0;
11283
11284 /* Turn off SERR reporting in case MSI terminates with Master
11285 * Abort.
11286 */
11287 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
11288 pci_write_config_word(tp->pdev, PCI_COMMAND,
11289 pci_cmd & ~PCI_COMMAND_SERR);
11290
11291 err = tg3_test_interrupt(tp);
11292
11293 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
11294
11295 if (!err)
11296 return 0;
11297
11298 /* other failures */
11299 if (err != -EIO)
11300 return err;
11301
11302 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000011303 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
11304 "to INTx mode. Please report this failure to the PCI "
11305 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070011306
Matt Carlson4f125f42009-09-01 12:55:02 +000011307 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000011308
Michael Chan79381092005-04-21 17:13:59 -070011309 pci_disable_msi(tp->pdev);
11310
Joe Perches63c3a662011-04-26 08:12:10 +000011311 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000011312 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070011313
Matt Carlson4f125f42009-09-01 12:55:02 +000011314 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070011315 if (err)
11316 return err;
11317
11318 /* Need to reset the chip because the MSI cycle may have terminated
11319 * with Master Abort.
11320 */
David S. Millerf47c11e2005-06-24 20:18:35 -070011321 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070011322
Michael Chan944d9802005-05-29 14:57:48 -070011323 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000011324 err = tg3_init_hw(tp, true);
Michael Chan79381092005-04-21 17:13:59 -070011325
David S. Millerf47c11e2005-06-24 20:18:35 -070011326 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070011327
11328 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000011329 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070011330
11331 return err;
11332}
11333
Matt Carlson9e9fd122009-01-19 16:57:45 -080011334static int tg3_request_firmware(struct tg3 *tp)
11335{
Nithin Sujir77997ea2013-03-06 17:02:32 +000011336 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson9e9fd122009-01-19 16:57:45 -080011337
11338 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011339 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
11340 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080011341 return -ENOENT;
11342 }
11343
Nithin Sujir77997ea2013-03-06 17:02:32 +000011344 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson9e9fd122009-01-19 16:57:45 -080011345
11346 /* Firmware blob starts with version numbers, followed by
11347 * start address and _full_ length including BSS sections
11348 * (which must be longer than the actual data, of course
11349 */
11350
Nithin Sujir77997ea2013-03-06 17:02:32 +000011351 tp->fw_len = be32_to_cpu(fw_hdr->len); /* includes bss */
11352 if (tp->fw_len < (tp->fw->size - TG3_FW_HDR_LEN)) {
Joe Perches05dbe002010-02-17 19:44:19 +000011353 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
11354 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080011355 release_firmware(tp->fw);
11356 tp->fw = NULL;
11357 return -EINVAL;
11358 }
11359
11360 /* We no longer need firmware; we have it. */
11361 tp->fw_needed = NULL;
11362 return 0;
11363}
11364
Michael Chan91024262012-09-28 07:12:38 +000011365static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000011366{
Michael Chan91024262012-09-28 07:12:38 +000011367 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000011368
Michael Chan91024262012-09-28 07:12:38 +000011369 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000011370 /* We want as many rx rings enabled as there are cpus.
11371 * In multiqueue MSI-X mode, the first MSI-X vector
11372 * only deals with link interrupts, etc, so we add
11373 * one to the number of vectors we are requesting.
11374 */
Michael Chan91024262012-09-28 07:12:38 +000011375 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000011376 }
Matt Carlson679563f2009-09-01 12:55:46 +000011377
Michael Chan91024262012-09-28 07:12:38 +000011378 return irq_cnt;
11379}
11380
11381static bool tg3_enable_msix(struct tg3 *tp)
11382{
11383 int i, rc;
Michael Chan86449942012-10-02 20:31:14 -070011384 struct msix_entry msix_ent[TG3_IRQ_MAX_VECS];
Michael Chan91024262012-09-28 07:12:38 +000011385
Michael Chan09681692012-09-28 07:12:42 +000011386 tp->txq_cnt = tp->txq_req;
11387 tp->rxq_cnt = tp->rxq_req;
11388 if (!tp->rxq_cnt)
11389 tp->rxq_cnt = netif_get_num_default_rss_queues();
Michael Chan91024262012-09-28 07:12:38 +000011390 if (tp->rxq_cnt > tp->rxq_max)
11391 tp->rxq_cnt = tp->rxq_max;
Michael Chancf6d6ea2012-09-28 07:12:43 +000011392
11393 /* Disable multiple TX rings by default. Simple round-robin hardware
11394 * scheduling of the TX rings can cause starvation of rings with
11395 * small packets when other rings have TSO or jumbo packets.
11396 */
11397 if (!tp->txq_req)
11398 tp->txq_cnt = 1;
Michael Chan91024262012-09-28 07:12:38 +000011399
11400 tp->irq_cnt = tg3_irq_count(tp);
11401
Matt Carlson679563f2009-09-01 12:55:46 +000011402 for (i = 0; i < tp->irq_max; i++) {
11403 msix_ent[i].entry = i;
11404 msix_ent[i].vector = 0;
11405 }
11406
Alexander Gordeev6f1f4112014-02-18 11:07:55 +010011407 rc = pci_enable_msix_range(tp->pdev, msix_ent, 1, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011408 if (rc < 0) {
11409 return false;
Alexander Gordeev6f1f4112014-02-18 11:07:55 +010011410 } else if (rc < tp->irq_cnt) {
Joe Perches05dbe002010-02-17 19:44:19 +000011411 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
11412 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000011413 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000011414 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000011415 if (tp->txq_cnt)
11416 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000011417 }
11418
11419 for (i = 0; i < tp->irq_max; i++)
11420 tp->napi[i].irq_vec = msix_ent[i].vector;
11421
Michael Chan49a359e2012-09-28 07:12:37 +000011422 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011423 pci_disable_msix(tp->pdev);
11424 return false;
11425 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000011426
Michael Chan91024262012-09-28 07:12:38 +000011427 if (tp->irq_cnt == 1)
11428 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000011429
Michael Chan91024262012-09-28 07:12:38 +000011430 tg3_flag_set(tp, ENABLE_RSS);
11431
11432 if (tp->txq_cnt > 1)
11433 tg3_flag_set(tp, ENABLE_TSS);
11434
11435 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011436
Matt Carlson679563f2009-09-01 12:55:46 +000011437 return true;
11438}
11439
Matt Carlson07b01732009-08-28 14:01:15 +000011440static void tg3_ints_init(struct tg3 *tp)
11441{
Joe Perches63c3a662011-04-26 08:12:10 +000011442 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
11443 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000011444 /* All MSI supporting chips should support tagged
11445 * status. Assert that this is the case.
11446 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000011447 netdev_warn(tp->dev,
11448 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000011449 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000011450 }
Matt Carlson4f125f42009-09-01 12:55:02 +000011451
Joe Perches63c3a662011-04-26 08:12:10 +000011452 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
11453 tg3_flag_set(tp, USING_MSIX);
11454 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
11455 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000011456
Joe Perches63c3a662011-04-26 08:12:10 +000011457 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011458 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000011459 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000011460 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000011461 if (!tg3_flag(tp, 1SHOT_MSI))
11462 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000011463 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
11464 }
11465defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000011466 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011467 tp->irq_cnt = 1;
11468 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000011469 }
11470
11471 if (tp->irq_cnt == 1) {
11472 tp->txq_cnt = 1;
11473 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011474 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070011475 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000011476 }
Matt Carlson07b01732009-08-28 14:01:15 +000011477}
11478
11479static void tg3_ints_fini(struct tg3 *tp)
11480{
Joe Perches63c3a662011-04-26 08:12:10 +000011481 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000011482 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011483 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000011484 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011485 tg3_flag_clear(tp, USING_MSI);
11486 tg3_flag_clear(tp, USING_MSIX);
11487 tg3_flag_clear(tp, ENABLE_RSS);
11488 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000011489}
11490
Matt Carlsonbe947302012-12-03 19:36:57 +000011491static int tg3_start(struct tg3 *tp, bool reset_phy, bool test_irq,
11492 bool init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011493{
Michael Chand8f4cd32012-09-28 07:12:40 +000011494 struct net_device *dev = tp->dev;
Matt Carlson4f125f42009-09-01 12:55:02 +000011495 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011496
Matt Carlson679563f2009-09-01 12:55:46 +000011497 /*
11498 * Setup interrupts first so we know how
11499 * many NAPI resources to allocate
11500 */
11501 tg3_ints_init(tp);
11502
Matt Carlson90415472011-12-16 13:33:23 +000011503 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000011504
Linus Torvalds1da177e2005-04-16 15:20:36 -070011505 /* The placement of this call is tied
11506 * to the setup and use of Host TX descriptors.
11507 */
11508 err = tg3_alloc_consistent(tp);
11509 if (err)
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011510 goto out_ints_fini;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011511
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011512 tg3_napi_init(tp);
11513
Matt Carlsonfed97812009-09-01 13:10:19 +000011514 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070011515
Matt Carlson4f125f42009-09-01 12:55:02 +000011516 for (i = 0; i < tp->irq_cnt; i++) {
11517 struct tg3_napi *tnapi = &tp->napi[i];
11518 err = tg3_request_irq(tp, i);
11519 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000011520 for (i--; i >= 0; i--) {
11521 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000011522 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000011523 }
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011524 goto out_napi_fini;
Matt Carlson4f125f42009-09-01 12:55:02 +000011525 }
11526 }
Matt Carlson07b01732009-08-28 14:01:15 +000011527
David S. Millerf47c11e2005-06-24 20:18:35 -070011528 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011529
Nithin Sujir2e460fc2013-05-23 11:11:22 +000011530 if (init)
11531 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
11532
Michael Chand8f4cd32012-09-28 07:12:40 +000011533 err = tg3_init_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011534 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070011535 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011536 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011537 }
11538
David S. Millerf47c11e2005-06-24 20:18:35 -070011539 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011540
Matt Carlson07b01732009-08-28 14:01:15 +000011541 if (err)
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011542 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011543
Michael Chand8f4cd32012-09-28 07:12:40 +000011544 if (test_irq && tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070011545 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070011546
Michael Chan79381092005-04-21 17:13:59 -070011547 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070011548 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070011549 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070011550 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070011551 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070011552
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011553 goto out_napi_fini;
Michael Chan79381092005-04-21 17:13:59 -070011554 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080011555
Joe Perches63c3a662011-04-26 08:12:10 +000011556 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011557 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011558
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011559 tw32(PCIE_TRANSACTION_CFG,
11560 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011561 }
Michael Chan79381092005-04-21 17:13:59 -070011562 }
11563
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011564 tg3_phy_start(tp);
11565
Michael Chanaed93e02012-07-16 16:24:02 +000011566 tg3_hwmon_open(tp);
11567
David S. Millerf47c11e2005-06-24 20:18:35 -070011568 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011569
Matt Carlson21f76382012-02-22 12:35:21 +000011570 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011571 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011572 tg3_enable_ints(tp);
11573
Ivan Vecera20d14a52015-01-08 16:13:07 +010011574 tg3_ptp_resume(tp);
Matt Carlsonbe947302012-12-03 19:36:57 +000011575
David S. Millerf47c11e2005-06-24 20:18:35 -070011576 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011577
Matt Carlsonfe5f5782009-09-01 13:09:39 +000011578 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011579
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000011580 /*
11581 * Reset loopback feature if it was turned on while the device was down
11582 * make sure that it's installed properly now.
11583 */
11584 if (dev->features & NETIF_F_LOOPBACK)
11585 tg3_set_loopback(dev, dev->features);
11586
Linus Torvalds1da177e2005-04-16 15:20:36 -070011587 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000011588
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011589out_free_irq:
Matt Carlson4f125f42009-09-01 12:55:02 +000011590 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11591 struct tg3_napi *tnapi = &tp->napi[i];
11592 free_irq(tnapi->irq_vec, tnapi);
11593 }
Matt Carlson07b01732009-08-28 14:01:15 +000011594
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011595out_napi_fini:
Matt Carlsonfed97812009-09-01 13:10:19 +000011596 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011597 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000011598 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000011599
Nithin Sujir4a5f46f2013-05-23 11:11:25 +000011600out_ints_fini:
Matt Carlson679563f2009-09-01 12:55:46 +000011601 tg3_ints_fini(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011602
Matt Carlson07b01732009-08-28 14:01:15 +000011603 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011604}
11605
Michael Chan65138592012-09-28 07:12:41 +000011606static void tg3_stop(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011607{
Matt Carlson4f125f42009-09-01 12:55:02 +000011608 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011609
Matt Carlsondb219972011-11-04 09:15:03 +000011610 tg3_reset_task_cancel(tp);
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000011611 tg3_netif_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011612
Matt Carlson21f76382012-02-22 12:35:21 +000011613 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011614
Michael Chanaed93e02012-07-16 16:24:02 +000011615 tg3_hwmon_close(tp);
11616
Matt Carlson24bb4fb2009-10-05 17:55:29 +000011617 tg3_phy_stop(tp);
11618
David S. Millerf47c11e2005-06-24 20:18:35 -070011619 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011620
11621 tg3_disable_ints(tp);
11622
Michael Chan944d9802005-05-29 14:57:48 -070011623 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011624 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011625 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011626
David S. Millerf47c11e2005-06-24 20:18:35 -070011627 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011628
Matt Carlson4f125f42009-09-01 12:55:02 +000011629 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11630 struct tg3_napi *tnapi = &tp->napi[i];
11631 free_irq(tnapi->irq_vec, tnapi);
11632 }
Matt Carlson07b01732009-08-28 14:01:15 +000011633
11634 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011635
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011636 tg3_napi_fini(tp);
11637
Linus Torvalds1da177e2005-04-16 15:20:36 -070011638 tg3_free_consistent(tp);
Michael Chan65138592012-09-28 07:12:41 +000011639}
11640
Michael Chand8f4cd32012-09-28 07:12:40 +000011641static int tg3_open(struct net_device *dev)
11642{
11643 struct tg3 *tp = netdev_priv(dev);
11644 int err;
11645
Ivan Vecera0486a062014-09-01 14:21:57 +020011646 if (tp->pcierr_recovery) {
11647 netdev_err(dev, "Failed to open device. PCI error recovery "
11648 "in progress\n");
11649 return -EAGAIN;
11650 }
11651
Michael Chand8f4cd32012-09-28 07:12:40 +000011652 if (tp->fw_needed) {
11653 err = tg3_request_firmware(tp);
Nithin Sujirc4dab502013-03-06 17:02:34 +000011654 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
11655 if (err) {
11656 netdev_warn(tp->dev, "EEE capability disabled\n");
11657 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11658 } else if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
11659 netdev_warn(tp->dev, "EEE capability restored\n");
11660 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
11661 }
11662 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Michael Chand8f4cd32012-09-28 07:12:40 +000011663 if (err)
11664 return err;
11665 } else if (err) {
11666 netdev_warn(tp->dev, "TSO capability disabled\n");
11667 tg3_flag_clear(tp, TSO_CAPABLE);
11668 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
11669 netdev_notice(tp->dev, "TSO capability restored\n");
11670 tg3_flag_set(tp, TSO_CAPABLE);
11671 }
11672 }
11673
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011674 tg3_carrier_off(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011675
11676 err = tg3_power_up(tp);
11677 if (err)
11678 return err;
11679
11680 tg3_full_lock(tp, 0);
11681
11682 tg3_disable_ints(tp);
11683 tg3_flag_clear(tp, INIT_COMPLETE);
11684
11685 tg3_full_unlock(tp);
11686
Nithin Sujir942d1af2013-04-09 08:48:07 +000011687 err = tg3_start(tp,
11688 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN),
11689 true, true);
Michael Chand8f4cd32012-09-28 07:12:40 +000011690 if (err) {
11691 tg3_frob_aux_power(tp, false);
11692 pci_set_power_state(tp->pdev, PCI_D3hot);
11693 }
Matt Carlsonbe947302012-12-03 19:36:57 +000011694
Linus Torvalds1da177e2005-04-16 15:20:36 -070011695 return err;
11696}
11697
11698static int tg3_close(struct net_device *dev)
11699{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011700 struct tg3 *tp = netdev_priv(dev);
11701
Ivan Vecera0486a062014-09-01 14:21:57 +020011702 if (tp->pcierr_recovery) {
11703 netdev_err(dev, "Failed to close device. PCI error recovery "
11704 "in progress\n");
11705 return -EAGAIN;
11706 }
11707
Michael Chan65138592012-09-28 07:12:41 +000011708 tg3_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011709
11710 /* Clear stats across close / open calls */
11711 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
11712 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011713
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010011714 if (pci_device_is_present(tp->pdev)) {
11715 tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011716
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010011717 tg3_carrier_off(tp);
11718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011719 return 0;
11720}
11721
11722static inline u64 get_stat64(tg3_stat64_t *val)
11723{
11724 return ((u64)val->high << 32) | ((u64)val->low);
11725}
11726
11727static u64 tg3_calc_crc_errors(struct tg3 *tp)
11728{
11729 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11730
11731 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000011732 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
11733 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011734 u32 val;
11735
11736 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
11737 tg3_writephy(tp, MII_TG3_TEST1,
11738 val | MII_TG3_TEST1_CRC_EN);
11739 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
11740 } else
11741 val = 0;
11742
11743 tp->phy_crc_errors += val;
11744
11745 return tp->phy_crc_errors;
11746 }
11747
11748 return get_stat64(&hw_stats->rx_fcs_errors);
11749}
11750
11751#define ESTAT_ADD(member) \
11752 estats->member = old_estats->member + \
11753 get_stat64(&hw_stats->member)
11754
11755static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
11756{
11757 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
11758 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11759
11760 ESTAT_ADD(rx_octets);
11761 ESTAT_ADD(rx_fragments);
11762 ESTAT_ADD(rx_ucast_packets);
11763 ESTAT_ADD(rx_mcast_packets);
11764 ESTAT_ADD(rx_bcast_packets);
11765 ESTAT_ADD(rx_fcs_errors);
11766 ESTAT_ADD(rx_align_errors);
11767 ESTAT_ADD(rx_xon_pause_rcvd);
11768 ESTAT_ADD(rx_xoff_pause_rcvd);
11769 ESTAT_ADD(rx_mac_ctrl_rcvd);
11770 ESTAT_ADD(rx_xoff_entered);
11771 ESTAT_ADD(rx_frame_too_long_errors);
11772 ESTAT_ADD(rx_jabbers);
11773 ESTAT_ADD(rx_undersize_packets);
11774 ESTAT_ADD(rx_in_length_errors);
11775 ESTAT_ADD(rx_out_length_errors);
11776 ESTAT_ADD(rx_64_or_less_octet_packets);
11777 ESTAT_ADD(rx_65_to_127_octet_packets);
11778 ESTAT_ADD(rx_128_to_255_octet_packets);
11779 ESTAT_ADD(rx_256_to_511_octet_packets);
11780 ESTAT_ADD(rx_512_to_1023_octet_packets);
11781 ESTAT_ADD(rx_1024_to_1522_octet_packets);
11782 ESTAT_ADD(rx_1523_to_2047_octet_packets);
11783 ESTAT_ADD(rx_2048_to_4095_octet_packets);
11784 ESTAT_ADD(rx_4096_to_8191_octet_packets);
11785 ESTAT_ADD(rx_8192_to_9022_octet_packets);
11786
11787 ESTAT_ADD(tx_octets);
11788 ESTAT_ADD(tx_collisions);
11789 ESTAT_ADD(tx_xon_sent);
11790 ESTAT_ADD(tx_xoff_sent);
11791 ESTAT_ADD(tx_flow_control);
11792 ESTAT_ADD(tx_mac_errors);
11793 ESTAT_ADD(tx_single_collisions);
11794 ESTAT_ADD(tx_mult_collisions);
11795 ESTAT_ADD(tx_deferred);
11796 ESTAT_ADD(tx_excessive_collisions);
11797 ESTAT_ADD(tx_late_collisions);
11798 ESTAT_ADD(tx_collide_2times);
11799 ESTAT_ADD(tx_collide_3times);
11800 ESTAT_ADD(tx_collide_4times);
11801 ESTAT_ADD(tx_collide_5times);
11802 ESTAT_ADD(tx_collide_6times);
11803 ESTAT_ADD(tx_collide_7times);
11804 ESTAT_ADD(tx_collide_8times);
11805 ESTAT_ADD(tx_collide_9times);
11806 ESTAT_ADD(tx_collide_10times);
11807 ESTAT_ADD(tx_collide_11times);
11808 ESTAT_ADD(tx_collide_12times);
11809 ESTAT_ADD(tx_collide_13times);
11810 ESTAT_ADD(tx_collide_14times);
11811 ESTAT_ADD(tx_collide_15times);
11812 ESTAT_ADD(tx_ucast_packets);
11813 ESTAT_ADD(tx_mcast_packets);
11814 ESTAT_ADD(tx_bcast_packets);
11815 ESTAT_ADD(tx_carrier_sense_errors);
11816 ESTAT_ADD(tx_discards);
11817 ESTAT_ADD(tx_errors);
11818
11819 ESTAT_ADD(dma_writeq_full);
11820 ESTAT_ADD(dma_write_prioq_full);
11821 ESTAT_ADD(rxbds_empty);
11822 ESTAT_ADD(rx_discards);
11823 ESTAT_ADD(rx_errors);
11824 ESTAT_ADD(rx_threshold_hit);
11825
11826 ESTAT_ADD(dma_readq_full);
11827 ESTAT_ADD(dma_read_prioq_full);
11828 ESTAT_ADD(tx_comp_queue_full);
11829
11830 ESTAT_ADD(ring_set_send_prod_index);
11831 ESTAT_ADD(ring_status_update);
11832 ESTAT_ADD(nic_irqs);
11833 ESTAT_ADD(nic_avoided_irqs);
11834 ESTAT_ADD(nic_tx_threshold_hit);
11835
Matt Carlson4452d092011-05-19 12:12:51 +000011836 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011837}
11838
Matt Carlson65ec6982012-02-28 23:33:37 +000011839static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011840{
Eric Dumazet511d2222010-07-07 20:44:24 +000011841 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011842 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11843
Linus Torvalds1da177e2005-04-16 15:20:36 -070011844 stats->rx_packets = old_stats->rx_packets +
11845 get_stat64(&hw_stats->rx_ucast_packets) +
11846 get_stat64(&hw_stats->rx_mcast_packets) +
11847 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011848
Linus Torvalds1da177e2005-04-16 15:20:36 -070011849 stats->tx_packets = old_stats->tx_packets +
11850 get_stat64(&hw_stats->tx_ucast_packets) +
11851 get_stat64(&hw_stats->tx_mcast_packets) +
11852 get_stat64(&hw_stats->tx_bcast_packets);
11853
11854 stats->rx_bytes = old_stats->rx_bytes +
11855 get_stat64(&hw_stats->rx_octets);
11856 stats->tx_bytes = old_stats->tx_bytes +
11857 get_stat64(&hw_stats->tx_octets);
11858
11859 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070011860 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011861 stats->tx_errors = old_stats->tx_errors +
11862 get_stat64(&hw_stats->tx_errors) +
11863 get_stat64(&hw_stats->tx_mac_errors) +
11864 get_stat64(&hw_stats->tx_carrier_sense_errors) +
11865 get_stat64(&hw_stats->tx_discards);
11866
11867 stats->multicast = old_stats->multicast +
11868 get_stat64(&hw_stats->rx_mcast_packets);
11869 stats->collisions = old_stats->collisions +
11870 get_stat64(&hw_stats->tx_collisions);
11871
11872 stats->rx_length_errors = old_stats->rx_length_errors +
11873 get_stat64(&hw_stats->rx_frame_too_long_errors) +
11874 get_stat64(&hw_stats->rx_undersize_packets);
11875
Linus Torvalds1da177e2005-04-16 15:20:36 -070011876 stats->rx_frame_errors = old_stats->rx_frame_errors +
11877 get_stat64(&hw_stats->rx_align_errors);
11878 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11879 get_stat64(&hw_stats->tx_discards);
11880 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11881 get_stat64(&hw_stats->tx_carrier_sense_errors);
11882
11883 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000011884 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011885
John W. Linville4f63b872005-09-12 14:43:18 -070011886 stats->rx_missed_errors = old_stats->rx_missed_errors +
11887 get_stat64(&hw_stats->rx_discards);
11888
Eric Dumazetb0057c52010-10-10 19:55:52 +000011889 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000011890 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011891}
11892
Linus Torvalds1da177e2005-04-16 15:20:36 -070011893static int tg3_get_regs_len(struct net_device *dev)
11894{
Matt Carlson97bd8e42011-04-13 11:05:04 +000011895 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011896}
11897
11898static void tg3_get_regs(struct net_device *dev,
11899 struct ethtool_regs *regs, void *_p)
11900{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011901 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011902
11903 regs->version = 0;
11904
Matt Carlson97bd8e42011-04-13 11:05:04 +000011905 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011906
Matt Carlson80096062010-08-02 11:26:06 +000011907 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011908 return;
11909
David S. Millerf47c11e2005-06-24 20:18:35 -070011910 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011911
Matt Carlson97bd8e42011-04-13 11:05:04 +000011912 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011913
David S. Millerf47c11e2005-06-24 20:18:35 -070011914 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011915}
11916
11917static int tg3_get_eeprom_len(struct net_device *dev)
11918{
11919 struct tg3 *tp = netdev_priv(dev);
11920
11921 return tp->nvram_size;
11922}
11923
Linus Torvalds1da177e2005-04-16 15:20:36 -070011924static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11925{
11926 struct tg3 *tp = netdev_priv(dev);
Prashant Sreedharan506724c2014-05-24 01:32:09 -070011927 int ret, cpmu_restore = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011928 u8 *pd;
Prashant Sreedharan506724c2014-05-24 01:32:09 -070011929 u32 i, offset, len, b_offset, b_count, cpmu_val = 0;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011930 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011931
Joe Perches63c3a662011-04-26 08:12:10 +000011932 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011933 return -EINVAL;
11934
Linus Torvalds1da177e2005-04-16 15:20:36 -070011935 offset = eeprom->offset;
11936 len = eeprom->len;
11937 eeprom->len = 0;
11938
11939 eeprom->magic = TG3_EEPROM_MAGIC;
11940
Prashant Sreedharan506724c2014-05-24 01:32:09 -070011941 /* Override clock, link aware and link idle modes */
11942 if (tg3_flag(tp, CPMU_PRESENT)) {
11943 cpmu_val = tr32(TG3_CPMU_CTRL);
11944 if (cpmu_val & (CPMU_CTRL_LINK_AWARE_MODE |
11945 CPMU_CTRL_LINK_IDLE_MODE)) {
11946 tw32(TG3_CPMU_CTRL, cpmu_val &
11947 ~(CPMU_CTRL_LINK_AWARE_MODE |
11948 CPMU_CTRL_LINK_IDLE_MODE));
11949 cpmu_restore = 1;
11950 }
11951 }
11952 tg3_override_clk(tp);
11953
Linus Torvalds1da177e2005-04-16 15:20:36 -070011954 if (offset & 3) {
11955 /* adjustments to start on required 4 byte boundary */
11956 b_offset = offset & 3;
11957 b_count = 4 - b_offset;
11958 if (b_count > len) {
11959 /* i.e. offset=1 len=2 */
11960 b_count = len;
11961 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000011962 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011963 if (ret)
Prashant Sreedharan506724c2014-05-24 01:32:09 -070011964 goto eeprom_done;
Matt Carlsonbe98da62010-07-11 09:31:46 +000011965 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011966 len -= b_count;
11967 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011968 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011969 }
11970
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011971 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011972 pd = &data[eeprom->len];
11973 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011974 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011975 if (ret) {
Prashant Sreedharan506724c2014-05-24 01:32:09 -070011976 if (i)
11977 i -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011978 eeprom->len += i;
Prashant Sreedharan506724c2014-05-24 01:32:09 -070011979 goto eeprom_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011981 memcpy(pd + i, &val, 4);
Prashant Sreedharan506724c2014-05-24 01:32:09 -070011982 if (need_resched()) {
11983 if (signal_pending(current)) {
11984 eeprom->len += i;
11985 ret = -EINTR;
11986 goto eeprom_done;
11987 }
11988 cond_resched();
11989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011990 }
11991 eeprom->len += i;
11992
11993 if (len & 3) {
11994 /* read last bytes not ending on 4 byte boundary */
11995 pd = &data[eeprom->len];
11996 b_count = len & 3;
11997 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011998 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011999 if (ret)
Prashant Sreedharan506724c2014-05-24 01:32:09 -070012000 goto eeprom_done;
Al Virob9fc7dc2007-12-17 22:59:57 -080012001 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012002 eeprom->len += b_count;
12003 }
Prashant Sreedharan506724c2014-05-24 01:32:09 -070012004 ret = 0;
12005
12006eeprom_done:
12007 /* Restore clock, link aware and link idle modes */
12008 tg3_restore_clk(tp);
12009 if (cpmu_restore)
12010 tw32(TG3_CPMU_CTRL, cpmu_val);
12011
12012 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012013}
12014
Linus Torvalds1da177e2005-04-16 15:20:36 -070012015static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
12016{
12017 struct tg3 *tp = netdev_priv(dev);
12018 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080012019 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012020 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012021 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012022
Joe Perches63c3a662011-04-26 08:12:10 +000012023 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000012024 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012025 return -EINVAL;
12026
12027 offset = eeprom->offset;
12028 len = eeprom->len;
12029
12030 if ((b_offset = (offset & 3))) {
12031 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000012032 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012033 if (ret)
12034 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012035 len += b_offset;
12036 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070012037 if (len < 4)
12038 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012039 }
12040
12041 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070012042 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012043 /* adjustments to end on required 4 byte boundary */
12044 odd_len = 1;
12045 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012046 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012047 if (ret)
12048 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012049 }
12050
12051 buf = data;
12052 if (b_offset || odd_len) {
12053 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012054 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012055 return -ENOMEM;
12056 if (b_offset)
12057 memcpy(buf, &start, 4);
12058 if (odd_len)
12059 memcpy(buf+len-4, &end, 4);
12060 memcpy(buf + b_offset, data, eeprom->len);
12061 }
12062
12063 ret = tg3_nvram_write_block(tp, offset, len, buf);
12064
12065 if (buf != data)
12066 kfree(buf);
12067
12068 return ret;
12069}
12070
12071static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
12072{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012073 struct tg3 *tp = netdev_priv(dev);
12074
Joe Perches63c3a662011-04-26 08:12:10 +000012075 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012076 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012077 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012078 return -EAGAIN;
Hauke Mehrtensead24022013-09-28 23:15:26 +020012079 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012080 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012081 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012082
Linus Torvalds1da177e2005-04-16 15:20:36 -070012083 cmd->supported = (SUPPORTED_Autoneg);
12084
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012085 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012086 cmd->supported |= (SUPPORTED_1000baseT_Half |
12087 SUPPORTED_1000baseT_Full);
12088
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012089 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012090 cmd->supported |= (SUPPORTED_100baseT_Half |
12091 SUPPORTED_100baseT_Full |
12092 SUPPORTED_10baseT_Half |
12093 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080012094 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070012095 cmd->port = PORT_TP;
12096 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012097 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070012098 cmd->port = PORT_FIBRE;
12099 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012100
Linus Torvalds1da177e2005-04-16 15:20:36 -070012101 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000012102 if (tg3_flag(tp, PAUSE_AUTONEG)) {
12103 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
12104 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
12105 cmd->advertising |= ADVERTISED_Pause;
12106 } else {
12107 cmd->advertising |= ADVERTISED_Pause |
12108 ADVERTISED_Asym_Pause;
12109 }
12110 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
12111 cmd->advertising |= ADVERTISED_Asym_Pause;
12112 }
12113 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012114 if (netif_running(dev) && tp->link_up) {
David Decotigny70739492011-04-27 18:32:40 +000012115 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012116 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000012117 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000012118 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
12119 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
12120 cmd->eth_tp_mdix = ETH_TP_MDI_X;
12121 else
12122 cmd->eth_tp_mdix = ETH_TP_MDI;
12123 }
Matt Carlson64c22182010-10-14 10:37:44 +000012124 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000012125 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
12126 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000012127 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012128 }
Matt Carlson882e9792009-09-01 13:21:36 +000012129 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000012130 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012131 cmd->autoneg = tp->link_config.autoneg;
12132 cmd->maxtxpkt = 0;
12133 cmd->maxrxpkt = 0;
12134 return 0;
12135}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012136
Linus Torvalds1da177e2005-04-16 15:20:36 -070012137static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
12138{
12139 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000012140 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012141
Joe Perches63c3a662011-04-26 08:12:10 +000012142 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012143 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012144 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012145 return -EAGAIN;
Hauke Mehrtensead24022013-09-28 23:15:26 +020012146 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012147 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012148 }
12149
Matt Carlson7e5856b2009-02-25 14:23:01 +000012150 if (cmd->autoneg != AUTONEG_ENABLE &&
12151 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070012152 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000012153
12154 if (cmd->autoneg == AUTONEG_DISABLE &&
12155 cmd->duplex != DUPLEX_FULL &&
12156 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070012157 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012158
Matt Carlson7e5856b2009-02-25 14:23:01 +000012159 if (cmd->autoneg == AUTONEG_ENABLE) {
12160 u32 mask = ADVERTISED_Autoneg |
12161 ADVERTISED_Pause |
12162 ADVERTISED_Asym_Pause;
12163
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012164 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000012165 mask |= ADVERTISED_1000baseT_Half |
12166 ADVERTISED_1000baseT_Full;
12167
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012168 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000012169 mask |= ADVERTISED_100baseT_Half |
12170 ADVERTISED_100baseT_Full |
12171 ADVERTISED_10baseT_Half |
12172 ADVERTISED_10baseT_Full |
12173 ADVERTISED_TP;
12174 else
12175 mask |= ADVERTISED_FIBRE;
12176
12177 if (cmd->advertising & ~mask)
12178 return -EINVAL;
12179
12180 mask &= (ADVERTISED_1000baseT_Half |
12181 ADVERTISED_1000baseT_Full |
12182 ADVERTISED_100baseT_Half |
12183 ADVERTISED_100baseT_Full |
12184 ADVERTISED_10baseT_Half |
12185 ADVERTISED_10baseT_Full);
12186
12187 cmd->advertising &= mask;
12188 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012189 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000012190 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000012191 return -EINVAL;
12192
12193 if (cmd->duplex != DUPLEX_FULL)
12194 return -EINVAL;
12195 } else {
David Decotigny25db0332011-04-27 18:32:39 +000012196 if (speed != SPEED_100 &&
12197 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000012198 return -EINVAL;
12199 }
12200 }
12201
David S. Millerf47c11e2005-06-24 20:18:35 -070012202 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012203
12204 tp->link_config.autoneg = cmd->autoneg;
12205 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070012206 tp->link_config.advertising = (cmd->advertising |
12207 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000012208 tp->link_config.speed = SPEED_UNKNOWN;
12209 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012210 } else {
12211 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000012212 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012213 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012214 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012215
Nithin Sujirfdad8de2013-04-09 08:48:08 +000012216 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
12217
Nithin Sujirce20f162013-04-09 08:48:04 +000012218 tg3_warn_mgmt_link_flap(tp);
12219
Linus Torvalds1da177e2005-04-16 15:20:36 -070012220 if (netif_running(dev))
Joe Perches953c96e2013-04-09 10:18:14 +000012221 tg3_setup_phy(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012222
David S. Millerf47c11e2005-06-24 20:18:35 -070012223 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012224
Linus Torvalds1da177e2005-04-16 15:20:36 -070012225 return 0;
12226}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012227
Linus Torvalds1da177e2005-04-16 15:20:36 -070012228static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
12229{
12230 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012231
Rick Jones68aad782011-11-07 13:29:27 +000012232 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
12233 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
12234 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
12235 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012236}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012237
Linus Torvalds1da177e2005-04-16 15:20:36 -070012238static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
12239{
12240 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012241
Joe Perches63c3a662011-04-26 08:12:10 +000012242 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070012243 wol->supported = WAKE_MAGIC;
12244 else
12245 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012246 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012247 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012248 wol->wolopts = WAKE_MAGIC;
12249 memset(&wol->sopass, 0, sizeof(wol->sopass));
12250}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012251
Linus Torvalds1da177e2005-04-16 15:20:36 -070012252static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
12253{
12254 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070012255 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012256
Linus Torvalds1da177e2005-04-16 15:20:36 -070012257 if (wol->wolopts & ~WAKE_MAGIC)
12258 return -EINVAL;
12259 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012260 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012261 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012262
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000012263 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
12264
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000012265 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000012266 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000012267 else
Joe Perches63c3a662011-04-26 08:12:10 +000012268 tg3_flag_clear(tp, WOL_ENABLE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012269
Linus Torvalds1da177e2005-04-16 15:20:36 -070012270 return 0;
12271}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012272
Linus Torvalds1da177e2005-04-16 15:20:36 -070012273static u32 tg3_get_msglevel(struct net_device *dev)
12274{
12275 struct tg3 *tp = netdev_priv(dev);
12276 return tp->msg_enable;
12277}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012278
Linus Torvalds1da177e2005-04-16 15:20:36 -070012279static void tg3_set_msglevel(struct net_device *dev, u32 value)
12280{
12281 struct tg3 *tp = netdev_priv(dev);
12282 tp->msg_enable = value;
12283}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012284
Linus Torvalds1da177e2005-04-16 15:20:36 -070012285static int tg3_nway_reset(struct net_device *dev)
12286{
12287 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012288 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012289
Linus Torvalds1da177e2005-04-16 15:20:36 -070012290 if (!netif_running(dev))
12291 return -EAGAIN;
12292
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012293 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070012294 return -EINVAL;
12295
Nithin Sujirce20f162013-04-09 08:48:04 +000012296 tg3_warn_mgmt_link_flap(tp);
12297
Joe Perches63c3a662011-04-26 08:12:10 +000012298 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012299 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012300 return -EAGAIN;
Hauke Mehrtensead24022013-09-28 23:15:26 +020012301 r = phy_start_aneg(tp->mdio_bus->phy_map[tp->phy_addr]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012302 } else {
12303 u32 bmcr;
12304
12305 spin_lock_bh(&tp->lock);
12306 r = -EINVAL;
12307 tg3_readphy(tp, MII_BMCR, &bmcr);
12308 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
12309 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012310 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012311 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
12312 BMCR_ANENABLE);
12313 r = 0;
12314 }
12315 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012316 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012317
Linus Torvalds1da177e2005-04-16 15:20:36 -070012318 return r;
12319}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012320
Linus Torvalds1da177e2005-04-16 15:20:36 -070012321static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
12322{
12323 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012324
Matt Carlson2c49a442010-09-30 10:34:35 +000012325 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000012326 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000012327 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080012328 else
12329 ering->rx_jumbo_max_pending = 0;
12330
12331 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012332
12333 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000012334 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080012335 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
12336 else
12337 ering->rx_jumbo_pending = 0;
12338
Matt Carlsonf3f3f272009-08-28 14:03:21 +000012339 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012340}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012341
Linus Torvalds1da177e2005-04-16 15:20:36 -070012342static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
12343{
12344 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000012345 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012346
Matt Carlson2c49a442010-09-30 10:34:35 +000012347 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
12348 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070012349 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
12350 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000012351 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070012352 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012353 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012354
Michael Chanbbe832c2005-06-24 20:20:04 -070012355 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012356 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012357 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012358 irq_sync = 1;
12359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012360
Michael Chanbbe832c2005-06-24 20:20:04 -070012361 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012362
Linus Torvalds1da177e2005-04-16 15:20:36 -070012363 tp->rx_pending = ering->rx_pending;
12364
Joe Perches63c3a662011-04-26 08:12:10 +000012365 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012366 tp->rx_pending > 63)
12367 tp->rx_pending = 63;
Ivan Veceraba67b512014-04-17 14:51:08 +020012368
12369 if (tg3_flag(tp, JUMBO_RING_ENABLE))
12370 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000012371
Matt Carlson6fd45cb2010-09-15 08:59:57 +000012372 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000012373 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012374
12375 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070012376 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012377 err = tg3_restart_hw(tp, false);
Michael Chanb9ec6c12006-07-25 16:37:27 -070012378 if (!err)
12379 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012380 }
12381
David S. Millerf47c11e2005-06-24 20:18:35 -070012382 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012383
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012384 if (irq_sync && !err)
12385 tg3_phy_start(tp);
12386
Michael Chanb9ec6c12006-07-25 16:37:27 -070012387 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012388}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012389
Linus Torvalds1da177e2005-04-16 15:20:36 -070012390static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12391{
12392 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012393
Joe Perches63c3a662011-04-26 08:12:10 +000012394 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080012395
Matt Carlson4a2db502011-12-08 14:40:17 +000012396 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080012397 epause->rx_pause = 1;
12398 else
12399 epause->rx_pause = 0;
12400
Matt Carlson4a2db502011-12-08 14:40:17 +000012401 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080012402 epause->tx_pause = 1;
12403 else
12404 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012405}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012406
Linus Torvalds1da177e2005-04-16 15:20:36 -070012407static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12408{
12409 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012410 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012411
Nithin Sujirce20f162013-04-09 08:48:04 +000012412 if (tp->link_config.autoneg == AUTONEG_ENABLE)
12413 tg3_warn_mgmt_link_flap(tp);
12414
Joe Perches63c3a662011-04-26 08:12:10 +000012415 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000012416 u32 newadv;
12417 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012418
Hauke Mehrtensead24022013-09-28 23:15:26 +020012419 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012420
Matt Carlson27121682010-02-17 15:16:57 +000012421 if (!(phydev->supported & SUPPORTED_Pause) ||
12422 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000012423 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000012424 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012425
Matt Carlson27121682010-02-17 15:16:57 +000012426 tp->link_config.flowctrl = 0;
12427 if (epause->rx_pause) {
12428 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012429
Matt Carlson27121682010-02-17 15:16:57 +000012430 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080012431 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000012432 newadv = ADVERTISED_Pause;
12433 } else
12434 newadv = ADVERTISED_Pause |
12435 ADVERTISED_Asym_Pause;
12436 } else if (epause->tx_pause) {
12437 tp->link_config.flowctrl |= FLOW_CTRL_TX;
12438 newadv = ADVERTISED_Asym_Pause;
12439 } else
12440 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012441
Matt Carlson27121682010-02-17 15:16:57 +000012442 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012443 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012444 else
Joe Perches63c3a662011-04-26 08:12:10 +000012445 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012446
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012447 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000012448 u32 oldadv = phydev->advertising &
12449 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
12450 if (oldadv != newadv) {
12451 phydev->advertising &=
12452 ~(ADVERTISED_Pause |
12453 ADVERTISED_Asym_Pause);
12454 phydev->advertising |= newadv;
12455 if (phydev->autoneg) {
12456 /*
12457 * Always renegotiate the link to
12458 * inform our link partner of our
12459 * flow control settings, even if the
12460 * flow control is forced. Let
12461 * tg3_adjust_link() do the final
12462 * flow control setup.
12463 */
12464 return phy_start_aneg(phydev);
12465 }
12466 }
12467
12468 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012469 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000012470 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012471 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000012472 ~(ADVERTISED_Pause |
12473 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012474 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012475 }
12476 } else {
12477 int irq_sync = 0;
12478
12479 if (netif_running(dev)) {
12480 tg3_netif_stop(tp);
12481 irq_sync = 1;
12482 }
12483
12484 tg3_full_lock(tp, irq_sync);
12485
12486 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012487 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012488 else
Joe Perches63c3a662011-04-26 08:12:10 +000012489 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012490 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012491 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012492 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012493 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012494 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012495 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012496 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012497 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012498
12499 if (netif_running(dev)) {
12500 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012501 err = tg3_restart_hw(tp, false);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012502 if (!err)
12503 tg3_netif_start(tp);
12504 }
12505
12506 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012508
Nithin Sujirfdad8de2013-04-09 08:48:08 +000012509 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
12510
Michael Chanb9ec6c12006-07-25 16:37:27 -070012511 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012512}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012513
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012514static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012515{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012516 switch (sset) {
12517 case ETH_SS_TEST:
12518 return TG3_NUM_TEST;
12519 case ETH_SS_STATS:
12520 return TG3_NUM_STATS;
12521 default:
12522 return -EOPNOTSUPP;
12523 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070012524}
12525
Matt Carlson90415472011-12-16 13:33:23 +000012526static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
12527 u32 *rules __always_unused)
12528{
12529 struct tg3 *tp = netdev_priv(dev);
12530
12531 if (!tg3_flag(tp, SUPPORT_MSIX))
12532 return -EOPNOTSUPP;
12533
12534 switch (info->cmd) {
12535 case ETHTOOL_GRXRINGS:
12536 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000012537 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000012538 else {
12539 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000012540 if (info->data > TG3_RSS_MAX_NUM_QS)
12541 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000012542 }
12543
12544 /* The first interrupt vector only
12545 * handles link interrupts.
12546 */
12547 info->data -= 1;
12548 return 0;
12549
12550 default:
12551 return -EOPNOTSUPP;
12552 }
12553}
12554
12555static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
12556{
12557 u32 size = 0;
12558 struct tg3 *tp = netdev_priv(dev);
12559
12560 if (tg3_flag(tp, SUPPORT_MSIX))
12561 size = TG3_RSS_INDIR_TBL_SIZE;
12562
12563 return size;
12564}
12565
Eyal Perry892311f2014-12-02 18:12:10 +020012566static int tg3_get_rxfh(struct net_device *dev, u32 *indir, u8 *key, u8 *hfunc)
Matt Carlson90415472011-12-16 13:33:23 +000012567{
12568 struct tg3 *tp = netdev_priv(dev);
12569 int i;
12570
Eyal Perry892311f2014-12-02 18:12:10 +020012571 if (hfunc)
12572 *hfunc = ETH_RSS_HASH_TOP;
12573 if (!indir)
12574 return 0;
12575
Matt Carlson90415472011-12-16 13:33:23 +000012576 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12577 indir[i] = tp->rss_ind_tbl[i];
12578
12579 return 0;
12580}
12581
Eyal Perry892311f2014-12-02 18:12:10 +020012582static int tg3_set_rxfh(struct net_device *dev, const u32 *indir, const u8 *key,
12583 const u8 hfunc)
Matt Carlson90415472011-12-16 13:33:23 +000012584{
12585 struct tg3 *tp = netdev_priv(dev);
12586 size_t i;
12587
Eyal Perry892311f2014-12-02 18:12:10 +020012588 /* We require at least one supported parameter to be changed and no
12589 * change in any of the unsupported parameters
12590 */
12591 if (key ||
12592 (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP))
12593 return -EOPNOTSUPP;
12594
12595 if (!indir)
12596 return 0;
12597
Matt Carlson90415472011-12-16 13:33:23 +000012598 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12599 tp->rss_ind_tbl[i] = indir[i];
12600
12601 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
12602 return 0;
12603
12604 /* It is legal to write the indirection
12605 * table while the device is running.
12606 */
12607 tg3_full_lock(tp, 0);
12608 tg3_rss_write_indir_tbl(tp);
12609 tg3_full_unlock(tp);
12610
12611 return 0;
12612}
12613
Michael Chan09681692012-09-28 07:12:42 +000012614static void tg3_get_channels(struct net_device *dev,
12615 struct ethtool_channels *channel)
12616{
12617 struct tg3 *tp = netdev_priv(dev);
12618 u32 deflt_qs = netif_get_num_default_rss_queues();
12619
12620 channel->max_rx = tp->rxq_max;
12621 channel->max_tx = tp->txq_max;
12622
12623 if (netif_running(dev)) {
12624 channel->rx_count = tp->rxq_cnt;
12625 channel->tx_count = tp->txq_cnt;
12626 } else {
12627 if (tp->rxq_req)
12628 channel->rx_count = tp->rxq_req;
12629 else
12630 channel->rx_count = min(deflt_qs, tp->rxq_max);
12631
12632 if (tp->txq_req)
12633 channel->tx_count = tp->txq_req;
12634 else
12635 channel->tx_count = min(deflt_qs, tp->txq_max);
12636 }
12637}
12638
12639static int tg3_set_channels(struct net_device *dev,
12640 struct ethtool_channels *channel)
12641{
12642 struct tg3 *tp = netdev_priv(dev);
12643
12644 if (!tg3_flag(tp, SUPPORT_MSIX))
12645 return -EOPNOTSUPP;
12646
12647 if (channel->rx_count > tp->rxq_max ||
12648 channel->tx_count > tp->txq_max)
12649 return -EINVAL;
12650
12651 tp->rxq_req = channel->rx_count;
12652 tp->txq_req = channel->tx_count;
12653
12654 if (!netif_running(dev))
12655 return 0;
12656
12657 tg3_stop(tp);
12658
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012659 tg3_carrier_off(tp);
Michael Chan09681692012-09-28 07:12:42 +000012660
Matt Carlsonbe947302012-12-03 19:36:57 +000012661 tg3_start(tp, true, false, false);
Michael Chan09681692012-09-28 07:12:42 +000012662
12663 return 0;
12664}
12665
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012666static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012667{
12668 switch (stringset) {
12669 case ETH_SS_STATS:
12670 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
12671 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070012672 case ETH_SS_TEST:
12673 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
12674 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012675 default:
12676 WARN_ON(1); /* we need a WARN() */
12677 break;
12678 }
12679}
12680
stephen hemminger81b87092011-04-04 08:43:50 +000012681static int tg3_set_phys_id(struct net_device *dev,
12682 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070012683{
12684 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070012685
12686 if (!netif_running(tp->dev))
12687 return -EAGAIN;
12688
stephen hemminger81b87092011-04-04 08:43:50 +000012689 switch (state) {
12690 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000012691 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070012692
stephen hemminger81b87092011-04-04 08:43:50 +000012693 case ETHTOOL_ID_ON:
12694 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12695 LED_CTRL_1000MBPS_ON |
12696 LED_CTRL_100MBPS_ON |
12697 LED_CTRL_10MBPS_ON |
12698 LED_CTRL_TRAFFIC_OVERRIDE |
12699 LED_CTRL_TRAFFIC_BLINK |
12700 LED_CTRL_TRAFFIC_LED);
12701 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012702
stephen hemminger81b87092011-04-04 08:43:50 +000012703 case ETHTOOL_ID_OFF:
12704 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12705 LED_CTRL_TRAFFIC_OVERRIDE);
12706 break;
Michael Chan4009a932005-09-05 17:52:54 -070012707
stephen hemminger81b87092011-04-04 08:43:50 +000012708 case ETHTOOL_ID_INACTIVE:
12709 tw32(MAC_LED_CTRL, tp->led_ctrl);
12710 break;
Michael Chan4009a932005-09-05 17:52:54 -070012711 }
stephen hemminger81b87092011-04-04 08:43:50 +000012712
Michael Chan4009a932005-09-05 17:52:54 -070012713 return 0;
12714}
12715
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012716static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012717 struct ethtool_stats *estats, u64 *tmp_stats)
12718{
12719 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000012720
Matt Carlsonb546e462012-02-13 15:20:09 +000012721 if (tp->hw_stats)
12722 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
12723 else
12724 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012725}
12726
Matt Carlson535a4902011-07-20 10:20:56 +000012727static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000012728{
12729 int i;
12730 __be32 *buf;
12731 u32 offset = 0, len = 0;
12732 u32 magic, val;
12733
Joe Perches63c3a662011-04-26 08:12:10 +000012734 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000012735 return NULL;
12736
12737 if (magic == TG3_EEPROM_MAGIC) {
12738 for (offset = TG3_NVM_DIR_START;
12739 offset < TG3_NVM_DIR_END;
12740 offset += TG3_NVM_DIRENT_SIZE) {
12741 if (tg3_nvram_read(tp, offset, &val))
12742 return NULL;
12743
12744 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
12745 TG3_NVM_DIRTYPE_EXTVPD)
12746 break;
12747 }
12748
12749 if (offset != TG3_NVM_DIR_END) {
12750 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
12751 if (tg3_nvram_read(tp, offset + 4, &offset))
12752 return NULL;
12753
12754 offset = tg3_nvram_logical_addr(tp, offset);
12755 }
12756 }
12757
12758 if (!offset || !len) {
12759 offset = TG3_NVM_VPD_OFF;
12760 len = TG3_NVM_VPD_LEN;
12761 }
12762
12763 buf = kmalloc(len, GFP_KERNEL);
12764 if (buf == NULL)
12765 return NULL;
12766
12767 if (magic == TG3_EEPROM_MAGIC) {
12768 for (i = 0; i < len; i += 4) {
12769 /* The data is in little-endian format in NVRAM.
12770 * Use the big-endian read routines to preserve
12771 * the byte order as it exists in NVRAM.
12772 */
12773 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
12774 goto error;
12775 }
12776 } else {
12777 u8 *ptr;
12778 ssize_t cnt;
12779 unsigned int pos = 0;
12780
12781 ptr = (u8 *)&buf[0];
12782 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
12783 cnt = pci_read_vpd(tp->pdev, pos,
12784 len - pos, ptr);
12785 if (cnt == -ETIMEDOUT || cnt == -EINTR)
12786 cnt = 0;
12787 else if (cnt < 0)
12788 goto error;
12789 }
12790 if (pos != len)
12791 goto error;
12792 }
12793
Matt Carlson535a4902011-07-20 10:20:56 +000012794 *vpdlen = len;
12795
Matt Carlsonc3e94502011-04-13 11:05:08 +000012796 return buf;
12797
12798error:
12799 kfree(buf);
12800 return NULL;
12801}
12802
Michael Chan566f86a2005-05-29 14:56:58 -070012803#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080012804#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
12805#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
12806#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000012807#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
12808#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000012809#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070012810#define NVRAM_SELFBOOT_HW_SIZE 0x20
12811#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070012812
12813static int tg3_test_nvram(struct tg3 *tp)
12814{
Matt Carlson535a4902011-07-20 10:20:56 +000012815 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012816 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012817 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070012818
Joe Perches63c3a662011-04-26 08:12:10 +000012819 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000012820 return 0;
12821
Matt Carlsone4f34112009-02-25 14:25:00 +000012822 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012823 return -EIO;
12824
Michael Chan1b277772006-03-20 22:27:48 -080012825 if (magic == TG3_EEPROM_MAGIC)
12826 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070012827 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080012828 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
12829 TG3_EEPROM_SB_FORMAT_1) {
12830 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
12831 case TG3_EEPROM_SB_REVISION_0:
12832 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
12833 break;
12834 case TG3_EEPROM_SB_REVISION_2:
12835 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
12836 break;
12837 case TG3_EEPROM_SB_REVISION_3:
12838 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
12839 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000012840 case TG3_EEPROM_SB_REVISION_4:
12841 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
12842 break;
12843 case TG3_EEPROM_SB_REVISION_5:
12844 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
12845 break;
12846 case TG3_EEPROM_SB_REVISION_6:
12847 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
12848 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080012849 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000012850 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080012851 }
12852 } else
Michael Chan1b277772006-03-20 22:27:48 -080012853 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070012854 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12855 size = NVRAM_SELFBOOT_HW_SIZE;
12856 else
Michael Chan1b277772006-03-20 22:27:48 -080012857 return -EIO;
12858
12859 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070012860 if (buf == NULL)
12861 return -ENOMEM;
12862
Michael Chan1b277772006-03-20 22:27:48 -080012863 err = -EIO;
12864 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012865 err = tg3_nvram_read_be32(tp, i, &buf[j]);
12866 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070012867 break;
Michael Chan566f86a2005-05-29 14:56:58 -070012868 }
Michael Chan1b277772006-03-20 22:27:48 -080012869 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070012870 goto out;
12871
Michael Chan1b277772006-03-20 22:27:48 -080012872 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000012873 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080012874 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012875 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080012876 u8 *buf8 = (u8 *) buf, csum8 = 0;
12877
Al Virob9fc7dc2007-12-17 22:59:57 -080012878 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080012879 TG3_EEPROM_SB_REVISION_2) {
12880 /* For rev 2, the csum doesn't include the MBA. */
12881 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
12882 csum8 += buf8[i];
12883 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
12884 csum8 += buf8[i];
12885 } else {
12886 for (i = 0; i < size; i++)
12887 csum8 += buf8[i];
12888 }
Michael Chan1b277772006-03-20 22:27:48 -080012889
Adrian Bunkad96b482006-04-05 22:21:04 -070012890 if (csum8 == 0) {
12891 err = 0;
12892 goto out;
12893 }
12894
12895 err = -EIO;
12896 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080012897 }
Michael Chan566f86a2005-05-29 14:56:58 -070012898
Al Virob9fc7dc2007-12-17 22:59:57 -080012899 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012900 TG3_EEPROM_MAGIC_HW) {
12901 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000012902 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070012903 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070012904
12905 /* Separate the parity bits and the data bytes. */
12906 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
12907 if ((i == 0) || (i == 8)) {
12908 int l;
12909 u8 msk;
12910
12911 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
12912 parity[k++] = buf8[i] & msk;
12913 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000012914 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070012915 int l;
12916 u8 msk;
12917
12918 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
12919 parity[k++] = buf8[i] & msk;
12920 i++;
12921
12922 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
12923 parity[k++] = buf8[i] & msk;
12924 i++;
12925 }
12926 data[j++] = buf8[i];
12927 }
12928
12929 err = -EIO;
12930 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
12931 u8 hw8 = hweight8(data[i]);
12932
12933 if ((hw8 & 0x1) && parity[i])
12934 goto out;
12935 else if (!(hw8 & 0x1) && !parity[i])
12936 goto out;
12937 }
12938 err = 0;
12939 goto out;
12940 }
12941
Matt Carlson01c3a392011-03-09 16:58:20 +000012942 err = -EIO;
12943
Michael Chan566f86a2005-05-29 14:56:58 -070012944 /* Bootstrap checksum at offset 0x10 */
12945 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000012946 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070012947 goto out;
12948
12949 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
12950 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000012951 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000012952 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070012953
Matt Carlsonc3e94502011-04-13 11:05:08 +000012954 kfree(buf);
12955
Matt Carlson535a4902011-07-20 10:20:56 +000012956 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000012957 if (!buf)
12958 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000012959
Matt Carlson535a4902011-07-20 10:20:56 +000012960 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000012961 if (i > 0) {
12962 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
12963 if (j < 0)
12964 goto out;
12965
Matt Carlson535a4902011-07-20 10:20:56 +000012966 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000012967 goto out;
12968
12969 i += PCI_VPD_LRDT_TAG_SIZE;
12970 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
12971 PCI_VPD_RO_KEYWORD_CHKSUM);
12972 if (j > 0) {
12973 u8 csum8 = 0;
12974
12975 j += PCI_VPD_INFO_FLD_HDR_SIZE;
12976
12977 for (i = 0; i <= j; i++)
12978 csum8 += ((u8 *)buf)[i];
12979
12980 if (csum8)
12981 goto out;
12982 }
12983 }
12984
Michael Chan566f86a2005-05-29 14:56:58 -070012985 err = 0;
12986
12987out:
12988 kfree(buf);
12989 return err;
12990}
12991
Michael Chanca430072005-05-29 14:57:23 -070012992#define TG3_SERDES_TIMEOUT_SEC 2
12993#define TG3_COPPER_TIMEOUT_SEC 6
12994
12995static int tg3_test_link(struct tg3 *tp)
12996{
12997 int i, max;
12998
12999 if (!netif_running(tp->dev))
13000 return -ENODEV;
13001
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013002 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070013003 max = TG3_SERDES_TIMEOUT_SEC;
13004 else
13005 max = TG3_COPPER_TIMEOUT_SEC;
13006
13007 for (i = 0; i < max; i++) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000013008 if (tp->link_up)
Michael Chanca430072005-05-29 14:57:23 -070013009 return 0;
13010
13011 if (msleep_interruptible(1000))
13012 break;
13013 }
13014
13015 return -EIO;
13016}
13017
Michael Chana71116d2005-05-29 14:58:11 -070013018/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080013019static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070013020{
Michael Chanb16250e2006-09-27 16:10:14 -070013021 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070013022 u32 offset, read_mask, write_mask, val, save_val, read_val;
13023 static struct {
13024 u16 offset;
13025 u16 flags;
13026#define TG3_FL_5705 0x1
13027#define TG3_FL_NOT_5705 0x2
13028#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070013029#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070013030 u32 read_mask;
13031 u32 write_mask;
13032 } reg_tbl[] = {
13033 /* MAC Control Registers */
13034 { MAC_MODE, TG3_FL_NOT_5705,
13035 0x00000000, 0x00ef6f8c },
13036 { MAC_MODE, TG3_FL_5705,
13037 0x00000000, 0x01ef6b8c },
13038 { MAC_STATUS, TG3_FL_NOT_5705,
13039 0x03800107, 0x00000000 },
13040 { MAC_STATUS, TG3_FL_5705,
13041 0x03800100, 0x00000000 },
13042 { MAC_ADDR_0_HIGH, 0x0000,
13043 0x00000000, 0x0000ffff },
13044 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000013045 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070013046 { MAC_RX_MTU_SIZE, 0x0000,
13047 0x00000000, 0x0000ffff },
13048 { MAC_TX_MODE, 0x0000,
13049 0x00000000, 0x00000070 },
13050 { MAC_TX_LENGTHS, 0x0000,
13051 0x00000000, 0x00003fff },
13052 { MAC_RX_MODE, TG3_FL_NOT_5705,
13053 0x00000000, 0x000007fc },
13054 { MAC_RX_MODE, TG3_FL_5705,
13055 0x00000000, 0x000007dc },
13056 { MAC_HASH_REG_0, 0x0000,
13057 0x00000000, 0xffffffff },
13058 { MAC_HASH_REG_1, 0x0000,
13059 0x00000000, 0xffffffff },
13060 { MAC_HASH_REG_2, 0x0000,
13061 0x00000000, 0xffffffff },
13062 { MAC_HASH_REG_3, 0x0000,
13063 0x00000000, 0xffffffff },
13064
13065 /* Receive Data and Receive BD Initiator Control Registers. */
13066 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
13067 0x00000000, 0xffffffff },
13068 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
13069 0x00000000, 0xffffffff },
13070 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
13071 0x00000000, 0x00000003 },
13072 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
13073 0x00000000, 0xffffffff },
13074 { RCVDBDI_STD_BD+0, 0x0000,
13075 0x00000000, 0xffffffff },
13076 { RCVDBDI_STD_BD+4, 0x0000,
13077 0x00000000, 0xffffffff },
13078 { RCVDBDI_STD_BD+8, 0x0000,
13079 0x00000000, 0xffff0002 },
13080 { RCVDBDI_STD_BD+0xc, 0x0000,
13081 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013082
Michael Chana71116d2005-05-29 14:58:11 -070013083 /* Receive BD Initiator Control Registers. */
13084 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
13085 0x00000000, 0xffffffff },
13086 { RCVBDI_STD_THRESH, TG3_FL_5705,
13087 0x00000000, 0x000003ff },
13088 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
13089 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013090
Michael Chana71116d2005-05-29 14:58:11 -070013091 /* Host Coalescing Control Registers. */
13092 { HOSTCC_MODE, TG3_FL_NOT_5705,
13093 0x00000000, 0x00000004 },
13094 { HOSTCC_MODE, TG3_FL_5705,
13095 0x00000000, 0x000000f6 },
13096 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
13097 0x00000000, 0xffffffff },
13098 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
13099 0x00000000, 0x000003ff },
13100 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
13101 0x00000000, 0xffffffff },
13102 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
13103 0x00000000, 0x000003ff },
13104 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
13105 0x00000000, 0xffffffff },
13106 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
13107 0x00000000, 0x000000ff },
13108 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
13109 0x00000000, 0xffffffff },
13110 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
13111 0x00000000, 0x000000ff },
13112 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
13113 0x00000000, 0xffffffff },
13114 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
13115 0x00000000, 0xffffffff },
13116 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
13117 0x00000000, 0xffffffff },
13118 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
13119 0x00000000, 0x000000ff },
13120 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
13121 0x00000000, 0xffffffff },
13122 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
13123 0x00000000, 0x000000ff },
13124 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
13125 0x00000000, 0xffffffff },
13126 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
13127 0x00000000, 0xffffffff },
13128 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
13129 0x00000000, 0xffffffff },
13130 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
13131 0x00000000, 0xffffffff },
13132 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
13133 0x00000000, 0xffffffff },
13134 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
13135 0xffffffff, 0x00000000 },
13136 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
13137 0xffffffff, 0x00000000 },
13138
13139 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070013140 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070013141 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070013142 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070013143 0x00000000, 0x007fffff },
13144 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
13145 0x00000000, 0x0000003f },
13146 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
13147 0x00000000, 0x000001ff },
13148 { BUFMGR_MB_HIGH_WATER, 0x0000,
13149 0x00000000, 0x000001ff },
13150 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
13151 0xffffffff, 0x00000000 },
13152 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
13153 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013154
Michael Chana71116d2005-05-29 14:58:11 -070013155 /* Mailbox Registers */
13156 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
13157 0x00000000, 0x000001ff },
13158 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
13159 0x00000000, 0x000001ff },
13160 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
13161 0x00000000, 0x000007ff },
13162 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
13163 0x00000000, 0x000001ff },
13164
13165 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
13166 };
13167
Michael Chanb16250e2006-09-27 16:10:14 -070013168 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013169 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070013170 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000013171 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070013172 is_5750 = 1;
13173 }
Michael Chana71116d2005-05-29 14:58:11 -070013174
13175 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
13176 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
13177 continue;
13178
13179 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
13180 continue;
13181
Joe Perches63c3a662011-04-26 08:12:10 +000013182 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070013183 (reg_tbl[i].flags & TG3_FL_NOT_5788))
13184 continue;
13185
Michael Chanb16250e2006-09-27 16:10:14 -070013186 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
13187 continue;
13188
Michael Chana71116d2005-05-29 14:58:11 -070013189 offset = (u32) reg_tbl[i].offset;
13190 read_mask = reg_tbl[i].read_mask;
13191 write_mask = reg_tbl[i].write_mask;
13192
13193 /* Save the original register content */
13194 save_val = tr32(offset);
13195
13196 /* Determine the read-only value. */
13197 read_val = save_val & read_mask;
13198
13199 /* Write zero to the register, then make sure the read-only bits
13200 * are not changed and the read/write bits are all zeros.
13201 */
13202 tw32(offset, 0);
13203
13204 val = tr32(offset);
13205
13206 /* Test the read-only and read/write bits. */
13207 if (((val & read_mask) != read_val) || (val & write_mask))
13208 goto out;
13209
13210 /* Write ones to all the bits defined by RdMask and WrMask, then
13211 * make sure the read-only bits are not changed and the
13212 * read/write bits are all ones.
13213 */
13214 tw32(offset, read_mask | write_mask);
13215
13216 val = tr32(offset);
13217
13218 /* Test the read-only bits. */
13219 if ((val & read_mask) != read_val)
13220 goto out;
13221
13222 /* Test the read/write bits. */
13223 if ((val & write_mask) != write_mask)
13224 goto out;
13225
13226 tw32(offset, save_val);
13227 }
13228
13229 return 0;
13230
13231out:
Michael Chan9f88f292006-12-07 00:22:54 -080013232 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000013233 netdev_err(tp->dev,
13234 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070013235 tw32(offset, save_val);
13236 return -EIO;
13237}
13238
Michael Chan7942e1d2005-05-29 14:58:36 -070013239static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
13240{
Arjan van de Venf71e1302006-03-03 21:33:57 -050013241 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070013242 int i;
13243 u32 j;
13244
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020013245 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070013246 for (j = 0; j < len; j += 4) {
13247 u32 val;
13248
13249 tg3_write_mem(tp, offset + j, test_pattern[i]);
13250 tg3_read_mem(tp, offset + j, &val);
13251 if (val != test_pattern[i])
13252 return -EIO;
13253 }
13254 }
13255 return 0;
13256}
13257
13258static int tg3_test_memory(struct tg3 *tp)
13259{
13260 static struct mem_entry {
13261 u32 offset;
13262 u32 len;
13263 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080013264 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070013265 { 0x00002000, 0x1c000},
13266 { 0xffffffff, 0x00000}
13267 }, mem_tbl_5705[] = {
13268 { 0x00000100, 0x0000c},
13269 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070013270 { 0x00004000, 0x00800},
13271 { 0x00006000, 0x01000},
13272 { 0x00008000, 0x02000},
13273 { 0x00010000, 0x0e000},
13274 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080013275 }, mem_tbl_5755[] = {
13276 { 0x00000200, 0x00008},
13277 { 0x00004000, 0x00800},
13278 { 0x00006000, 0x00800},
13279 { 0x00008000, 0x02000},
13280 { 0x00010000, 0x0c000},
13281 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070013282 }, mem_tbl_5906[] = {
13283 { 0x00000200, 0x00008},
13284 { 0x00004000, 0x00400},
13285 { 0x00006000, 0x00400},
13286 { 0x00008000, 0x01000},
13287 { 0x00010000, 0x01000},
13288 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000013289 }, mem_tbl_5717[] = {
13290 { 0x00000200, 0x00008},
13291 { 0x00010000, 0x0a000},
13292 { 0x00020000, 0x13c00},
13293 { 0xffffffff, 0x00000}
13294 }, mem_tbl_57765[] = {
13295 { 0x00000200, 0x00008},
13296 { 0x00004000, 0x00800},
13297 { 0x00006000, 0x09800},
13298 { 0x00010000, 0x0a000},
13299 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070013300 };
13301 struct mem_entry *mem_tbl;
13302 int err = 0;
13303 int i;
13304
Joe Perches63c3a662011-04-26 08:12:10 +000013305 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000013306 mem_tbl = mem_tbl_5717;
Michael Chanc65a17f2013-01-06 12:51:07 +000013307 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000013308 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson8b5a6c42010-01-20 16:58:06 +000013309 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000013310 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013311 mem_tbl = mem_tbl_5755;
Joe Perches41535772013-02-16 11:20:04 +000013312 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlson321d32a2008-11-21 17:22:19 -080013313 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000013314 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013315 mem_tbl = mem_tbl_5705;
13316 else
Michael Chan7942e1d2005-05-29 14:58:36 -070013317 mem_tbl = mem_tbl_570x;
13318
13319 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000013320 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
13321 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070013322 break;
13323 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013324
Michael Chan7942e1d2005-05-29 14:58:36 -070013325 return err;
13326}
13327
Matt Carlsonbb158d62011-04-25 12:42:47 +000013328#define TG3_TSO_MSS 500
13329
13330#define TG3_TSO_IP_HDR_LEN 20
13331#define TG3_TSO_TCP_HDR_LEN 20
13332#define TG3_TSO_TCP_OPT_LEN 12
13333
13334static const u8 tg3_tso_header[] = {
133350x08, 0x00,
133360x45, 0x00, 0x00, 0x00,
133370x00, 0x00, 0x40, 0x00,
133380x40, 0x06, 0x00, 0x00,
133390x0a, 0x00, 0x00, 0x01,
133400x0a, 0x00, 0x00, 0x02,
133410x0d, 0x00, 0xe0, 0x00,
133420x00, 0x00, 0x01, 0x00,
133430x00, 0x00, 0x02, 0x00,
133440x80, 0x10, 0x10, 0x00,
133450x14, 0x09, 0x00, 0x00,
133460x01, 0x01, 0x08, 0x0a,
133470x11, 0x11, 0x11, 0x11,
133480x11, 0x11, 0x11, 0x11,
13349};
Michael Chan9f40dea2005-09-05 17:53:06 -070013350
Matt Carlson28a45952011-08-19 13:58:22 +000013351static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070013352{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013353 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013354 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000013355 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000013356 struct sk_buff *skb;
13357 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070013358 dma_addr_t map;
13359 int num_pkts, tx_len, rx_len, i, err;
13360 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000013361 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000013362 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070013363
Matt Carlsonc8873402010-02-12 14:47:11 +000013364 tnapi = &tp->napi[0];
13365 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000013366 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000013367 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000013368 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000013369 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000013370 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000013371 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013372 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000013373
Michael Chanc76949a2005-05-29 14:58:59 -070013374 err = -EIO;
13375
Matt Carlson4852a862011-04-13 11:05:07 +000013376 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070013377 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070013378 if (!skb)
13379 return -ENOMEM;
13380
Michael Chanc76949a2005-05-29 14:58:59 -070013381 tx_data = skb_put(skb, tx_len);
Joe Perchesd458cdf2013-10-01 19:04:40 -070013382 memcpy(tx_data, tp->dev->dev_addr, ETH_ALEN);
13383 memset(tx_data + ETH_ALEN, 0x0, 8);
Michael Chanc76949a2005-05-29 14:58:59 -070013384
Matt Carlson4852a862011-04-13 11:05:07 +000013385 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070013386
Matt Carlson28a45952011-08-19 13:58:22 +000013387 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013388 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
13389
13390 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
13391 TG3_TSO_TCP_OPT_LEN;
13392
13393 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
13394 sizeof(tg3_tso_header));
13395 mss = TG3_TSO_MSS;
13396
13397 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
13398 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
13399
13400 /* Set the total length field in the IP header */
13401 iph->tot_len = htons((u16)(mss + hdr_len));
13402
13403 base_flags = (TXD_FLAG_CPU_PRE_DMA |
13404 TXD_FLAG_CPU_POST_DMA);
13405
Joe Perches63c3a662011-04-26 08:12:10 +000013406 if (tg3_flag(tp, HW_TSO_1) ||
13407 tg3_flag(tp, HW_TSO_2) ||
13408 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013409 struct tcphdr *th;
13410 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
13411 th = (struct tcphdr *)&tx_data[val];
13412 th->check = 0;
13413 } else
13414 base_flags |= TXD_FLAG_TCPUDP_CSUM;
13415
Joe Perches63c3a662011-04-26 08:12:10 +000013416 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013417 mss |= (hdr_len & 0xc) << 12;
13418 if (hdr_len & 0x10)
13419 base_flags |= 0x00000010;
13420 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000013421 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013422 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000013423 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +000013424 tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013425 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
13426 } else {
13427 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
13428 }
13429
13430 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
13431 } else {
13432 num_pkts = 1;
13433 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000013434
13435 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
13436 tx_len > VLAN_ETH_FRAME_LEN)
13437 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013438 }
13439
13440 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070013441 tx_data[i] = (u8) (i & 0xff);
13442
Alexander Duyckf4188d82009-12-02 16:48:38 +000013443 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
13444 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000013445 dev_kfree_skb(skb);
13446 return -EIO;
13447 }
Michael Chanc76949a2005-05-29 14:58:59 -070013448
Matt Carlson0d681b22011-07-27 14:20:49 +000013449 val = tnapi->tx_prod;
13450 tnapi->tx_buffers[val].skb = skb;
13451 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
13452
Michael Chanc76949a2005-05-29 14:58:59 -070013453 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013454 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013455
13456 udelay(10);
13457
Matt Carlson898a56f2009-08-28 14:02:40 +000013458 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070013459
Matt Carlson84b67b22011-07-27 14:20:52 +000013460 budget = tg3_tx_avail(tnapi);
13461 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000013462 base_flags | TXD_FLAG_END, mss, 0)) {
13463 tnapi->tx_buffers[val].skb = NULL;
13464 dev_kfree_skb(skb);
13465 return -EIO;
13466 }
Michael Chanc76949a2005-05-29 14:58:59 -070013467
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013468 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070013469
Michael Chan6541b802012-03-04 14:48:14 +000013470 /* Sync BD data before updating mailbox */
13471 wmb();
13472
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013473 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
13474 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070013475
13476 udelay(10);
13477
Matt Carlson303fc922009-11-02 14:27:34 +000013478 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
13479 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070013480 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013481 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013482
13483 udelay(10);
13484
Matt Carlson898a56f2009-08-28 14:02:40 +000013485 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
13486 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013487 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070013488 (rx_idx == (rx_start_idx + num_pkts)))
13489 break;
13490 }
13491
Matt Carlsonba1142e2011-11-04 09:15:00 +000013492 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070013493 dev_kfree_skb(skb);
13494
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013495 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070013496 goto out;
13497
13498 if (rx_idx != rx_start_idx + num_pkts)
13499 goto out;
13500
Matt Carlsonbb158d62011-04-25 12:42:47 +000013501 val = data_off;
13502 while (rx_idx != rx_start_idx) {
13503 desc = &rnapi->rx_rcb[rx_start_idx++];
13504 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
13505 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070013506
Matt Carlsonbb158d62011-04-25 12:42:47 +000013507 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
13508 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000013509 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070013510
Matt Carlsonbb158d62011-04-25 12:42:47 +000013511 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
13512 - ETH_FCS_LEN;
13513
Matt Carlson28a45952011-08-19 13:58:22 +000013514 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013515 if (rx_len != tx_len)
13516 goto out;
13517
13518 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
13519 if (opaque_key != RXD_OPAQUE_RING_STD)
13520 goto out;
13521 } else {
13522 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
13523 goto out;
13524 }
13525 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
13526 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000013527 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013528 goto out;
13529 }
13530
13531 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013532 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013533 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
13534 mapping);
13535 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013536 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013537 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
13538 mapping);
13539 } else
Matt Carlson4852a862011-04-13 11:05:07 +000013540 goto out;
13541
Matt Carlsonbb158d62011-04-25 12:42:47 +000013542 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
13543 PCI_DMA_FROMDEVICE);
13544
Eric Dumazet9205fd92011-11-18 06:47:01 +000013545 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000013546 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013547 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013548 goto out;
13549 }
Matt Carlson4852a862011-04-13 11:05:07 +000013550 }
13551
Michael Chanc76949a2005-05-29 14:58:59 -070013552 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013553
Eric Dumazet9205fd92011-11-18 06:47:01 +000013554 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070013555out:
13556 return err;
13557}
13558
Matt Carlson00c266b2011-04-25 12:42:46 +000013559#define TG3_STD_LOOPBACK_FAILED 1
13560#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000013561#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000013562#define TG3_LOOPBACK_FAILED \
13563 (TG3_STD_LOOPBACK_FAILED | \
13564 TG3_JMB_LOOPBACK_FAILED | \
13565 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000013566
Matt Carlson941ec902011-08-19 13:58:23 +000013567static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070013568{
Matt Carlson28a45952011-08-19 13:58:22 +000013569 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000013570 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000013571 u32 jmb_pkt_sz = 9000;
13572
13573 if (tp->dma_limit)
13574 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070013575
Matt Carlsonab789042011-01-25 15:58:54 +000013576 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
13577 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
13578
Matt Carlson28a45952011-08-19 13:58:22 +000013579 if (!netif_running(tp->dev)) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013580 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13581 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013582 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013583 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000013584 goto done;
13585 }
13586
Joe Perches953c96e2013-04-09 10:18:14 +000013587 err = tg3_reset_hw(tp, true);
Matt Carlsonab789042011-01-25 15:58:54 +000013588 if (err) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013589 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13590 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013591 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013592 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000013593 goto done;
13594 }
Michael Chan9f40dea2005-09-05 17:53:06 -070013595
Joe Perches63c3a662011-04-26 08:12:10 +000013596 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000013597 int i;
13598
13599 /* Reroute all rx packets to the 1st queue */
13600 for (i = MAC_RSS_INDIR_TBL_0;
13601 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
13602 tw32(i, 0x0);
13603 }
13604
Matt Carlson6e01b202011-08-19 13:58:20 +000013605 /* HW errata - mac loopback fails in some cases on 5780.
13606 * Normal traffic and PHY loopback are not affected by
13607 * errata. Also, the MAC loopback test is deprecated for
13608 * all newer ASIC revisions.
13609 */
Joe Perches41535772013-02-16 11:20:04 +000013610 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Matt Carlson6e01b202011-08-19 13:58:20 +000013611 !tg3_flag(tp, CPMU_PRESENT)) {
13612 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070013613
Matt Carlson28a45952011-08-19 13:58:22 +000013614 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013615 data[TG3_MAC_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013616
13617 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013618 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013619 data[TG3_MAC_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013620
13621 tg3_mac_loopback(tp, false);
13622 }
Matt Carlson4852a862011-04-13 11:05:07 +000013623
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013624 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013625 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013626 int i;
13627
Matt Carlson941ec902011-08-19 13:58:23 +000013628 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013629
13630 /* Wait for link */
13631 for (i = 0; i < 100; i++) {
13632 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
13633 break;
13634 mdelay(1);
13635 }
13636
Matt Carlson28a45952011-08-19 13:58:22 +000013637 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013638 data[TG3_PHY_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013639 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000013640 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013641 data[TG3_PHY_LOOPB_TEST] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013642 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013643 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013644 data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070013645
Matt Carlson941ec902011-08-19 13:58:23 +000013646 if (do_extlpbk) {
13647 tg3_phy_lpbk_set(tp, 0, true);
13648
13649 /* All link indications report up, but the hardware
13650 * isn't really ready for about 20 msec. Double it
13651 * to be sure.
13652 */
13653 mdelay(40);
13654
13655 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013656 data[TG3_EXT_LOOPB_TEST] |=
13657 TG3_STD_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013658 if (tg3_flag(tp, TSO_CAPABLE) &&
13659 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013660 data[TG3_EXT_LOOPB_TEST] |=
13661 TG3_TSO_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013662 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013663 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013664 data[TG3_EXT_LOOPB_TEST] |=
13665 TG3_JMB_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013666 }
13667
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013668 /* Re-enable gphy autopowerdown. */
13669 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
13670 tg3_phy_toggle_apd(tp, true);
13671 }
Matt Carlson6833c042008-11-21 17:18:59 -080013672
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013673 err = (data[TG3_MAC_LOOPB_TEST] | data[TG3_PHY_LOOPB_TEST] |
13674 data[TG3_EXT_LOOPB_TEST]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000013675
Matt Carlsonab789042011-01-25 15:58:54 +000013676done:
13677 tp->phy_flags |= eee_cap;
13678
Michael Chan9f40dea2005-09-05 17:53:06 -070013679 return err;
13680}
13681
Michael Chan4cafd3f2005-05-29 14:56:34 -070013682static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
13683 u64 *data)
13684{
Michael Chan566f86a2005-05-29 14:56:58 -070013685 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000013686 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070013687
Nithin Sujir2e460fc2013-05-23 11:11:22 +000013688 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
13689 if (tg3_power_up(tp)) {
13690 etest->flags |= ETH_TEST_FL_FAILED;
13691 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
13692 return;
13693 }
13694 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
Matt Carlsonbed98292011-07-13 09:27:29 +000013695 }
Michael Chanbc1c7562006-03-20 17:48:03 -080013696
Michael Chan566f86a2005-05-29 14:56:58 -070013697 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
13698
13699 if (tg3_test_nvram(tp) != 0) {
13700 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013701 data[TG3_NVRAM_TEST] = 1;
Michael Chan566f86a2005-05-29 14:56:58 -070013702 }
Matt Carlson941ec902011-08-19 13:58:23 +000013703 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070013704 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013705 data[TG3_LINK_TEST] = 1;
Michael Chanca430072005-05-29 14:57:23 -070013706 }
Michael Chana71116d2005-05-29 14:58:11 -070013707 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013708 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070013709
Michael Chanbbe832c2005-06-24 20:20:04 -070013710 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013711 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070013712 tg3_netif_stop(tp);
13713 irq_sync = 1;
13714 }
13715
13716 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070013717 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080013718 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013719 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000013720 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070013721 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080013722 if (!err)
13723 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013724
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013725 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080013726 tg3_phy_reset(tp);
13727
Michael Chana71116d2005-05-29 14:58:11 -070013728 if (tg3_test_registers(tp) != 0) {
13729 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013730 data[TG3_REGISTER_TEST] = 1;
Michael Chana71116d2005-05-29 14:58:11 -070013731 }
Matt Carlson28a45952011-08-19 13:58:22 +000013732
Michael Chan7942e1d2005-05-29 14:58:36 -070013733 if (tg3_test_memory(tp) != 0) {
13734 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013735 data[TG3_MEMORY_TEST] = 1;
Michael Chan7942e1d2005-05-29 14:58:36 -070013736 }
Matt Carlson28a45952011-08-19 13:58:22 +000013737
Matt Carlson941ec902011-08-19 13:58:23 +000013738 if (doextlpbk)
13739 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
13740
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013741 if (tg3_test_loopback(tp, data, doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070013742 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070013743
David S. Millerf47c11e2005-06-24 20:18:35 -070013744 tg3_full_unlock(tp);
13745
Michael Chand4bc3922005-05-29 14:59:20 -070013746 if (tg3_test_interrupt(tp) != 0) {
13747 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013748 data[TG3_INTERRUPT_TEST] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070013749 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013750
13751 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070013752
Michael Chana71116d2005-05-29 14:58:11 -070013753 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13754 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013755 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000013756 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013757 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070013758 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013759 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013760
13761 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013762
13763 if (irq_sync && !err2)
13764 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013765 }
Matt Carlson80096062010-08-02 11:26:06 +000013766 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Nithin Sujir5137a2e2013-07-29 13:58:36 -070013767 tg3_power_down_prepare(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080013768
Michael Chan4cafd3f2005-05-29 14:56:34 -070013769}
13770
Ben Hutchings72608992013-11-18 22:59:43 +000013771static int tg3_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Matt Carlson0a633ac2012-12-03 19:36:59 +000013772{
13773 struct tg3 *tp = netdev_priv(dev);
13774 struct hwtstamp_config stmpconf;
13775
13776 if (!tg3_flag(tp, PTP_CAPABLE))
Ben Hutchings72608992013-11-18 22:59:43 +000013777 return -EOPNOTSUPP;
Matt Carlson0a633ac2012-12-03 19:36:59 +000013778
13779 if (copy_from_user(&stmpconf, ifr->ifr_data, sizeof(stmpconf)))
13780 return -EFAULT;
13781
13782 if (stmpconf.flags)
13783 return -EINVAL;
13784
Ben Hutchings58b187c2013-11-14 00:40:56 +000013785 if (stmpconf.tx_type != HWTSTAMP_TX_ON &&
13786 stmpconf.tx_type != HWTSTAMP_TX_OFF)
Matt Carlson0a633ac2012-12-03 19:36:59 +000013787 return -ERANGE;
Matt Carlson0a633ac2012-12-03 19:36:59 +000013788
13789 switch (stmpconf.rx_filter) {
13790 case HWTSTAMP_FILTER_NONE:
13791 tp->rxptpctl = 0;
13792 break;
13793 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
13794 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13795 TG3_RX_PTP_CTL_ALL_V1_EVENTS;
13796 break;
13797 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
13798 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13799 TG3_RX_PTP_CTL_SYNC_EVNT;
13800 break;
13801 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
13802 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13803 TG3_RX_PTP_CTL_DELAY_REQ;
13804 break;
13805 case HWTSTAMP_FILTER_PTP_V2_EVENT:
13806 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13807 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13808 break;
13809 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
13810 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13811 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13812 break;
13813 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
13814 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13815 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13816 break;
13817 case HWTSTAMP_FILTER_PTP_V2_SYNC:
13818 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13819 TG3_RX_PTP_CTL_SYNC_EVNT;
13820 break;
13821 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
13822 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13823 TG3_RX_PTP_CTL_SYNC_EVNT;
13824 break;
13825 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
13826 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13827 TG3_RX_PTP_CTL_SYNC_EVNT;
13828 break;
13829 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
13830 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13831 TG3_RX_PTP_CTL_DELAY_REQ;
13832 break;
13833 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
13834 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13835 TG3_RX_PTP_CTL_DELAY_REQ;
13836 break;
13837 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
13838 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13839 TG3_RX_PTP_CTL_DELAY_REQ;
13840 break;
13841 default:
13842 return -ERANGE;
13843 }
13844
13845 if (netif_running(dev) && tp->rxptpctl)
13846 tw32(TG3_RX_PTP_CTL,
13847 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
13848
Ben Hutchings58b187c2013-11-14 00:40:56 +000013849 if (stmpconf.tx_type == HWTSTAMP_TX_ON)
13850 tg3_flag_set(tp, TX_TSTAMP_EN);
13851 else
13852 tg3_flag_clear(tp, TX_TSTAMP_EN);
13853
Matt Carlson0a633ac2012-12-03 19:36:59 +000013854 return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ?
13855 -EFAULT : 0;
13856}
13857
Ben Hutchings72608992013-11-18 22:59:43 +000013858static int tg3_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
13859{
13860 struct tg3 *tp = netdev_priv(dev);
13861 struct hwtstamp_config stmpconf;
13862
13863 if (!tg3_flag(tp, PTP_CAPABLE))
13864 return -EOPNOTSUPP;
13865
13866 stmpconf.flags = 0;
13867 stmpconf.tx_type = (tg3_flag(tp, TX_TSTAMP_EN) ?
13868 HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF);
13869
13870 switch (tp->rxptpctl) {
13871 case 0:
13872 stmpconf.rx_filter = HWTSTAMP_FILTER_NONE;
13873 break;
13874 case TG3_RX_PTP_CTL_RX_PTP_V1_EN | TG3_RX_PTP_CTL_ALL_V1_EVENTS:
13875 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
13876 break;
13877 case TG3_RX_PTP_CTL_RX_PTP_V1_EN | TG3_RX_PTP_CTL_SYNC_EVNT:
13878 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_SYNC;
13879 break;
13880 case TG3_RX_PTP_CTL_RX_PTP_V1_EN | TG3_RX_PTP_CTL_DELAY_REQ:
13881 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ;
13882 break;
13883 case TG3_RX_PTP_CTL_RX_PTP_V2_EN | TG3_RX_PTP_CTL_ALL_V2_EVENTS:
13884 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
13885 break;
13886 case TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN | TG3_RX_PTP_CTL_ALL_V2_EVENTS:
13887 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
13888 break;
13889 case TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN | TG3_RX_PTP_CTL_ALL_V2_EVENTS:
13890 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
13891 break;
13892 case TG3_RX_PTP_CTL_RX_PTP_V2_EN | TG3_RX_PTP_CTL_SYNC_EVNT:
13893 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_SYNC;
13894 break;
13895 case TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN | TG3_RX_PTP_CTL_SYNC_EVNT:
13896 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_SYNC;
13897 break;
13898 case TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN | TG3_RX_PTP_CTL_SYNC_EVNT:
13899 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_SYNC;
13900 break;
13901 case TG3_RX_PTP_CTL_RX_PTP_V2_EN | TG3_RX_PTP_CTL_DELAY_REQ:
13902 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_DELAY_REQ;
13903 break;
13904 case TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN | TG3_RX_PTP_CTL_DELAY_REQ:
13905 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ;
13906 break;
13907 case TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN | TG3_RX_PTP_CTL_DELAY_REQ:
13908 stmpconf.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ;
13909 break;
13910 default:
13911 WARN_ON_ONCE(1);
13912 return -ERANGE;
13913 }
13914
13915 return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ?
13916 -EFAULT : 0;
13917}
13918
Linus Torvalds1da177e2005-04-16 15:20:36 -070013919static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
13920{
13921 struct mii_ioctl_data *data = if_mii(ifr);
13922 struct tg3 *tp = netdev_priv(dev);
13923 int err;
13924
Joe Perches63c3a662011-04-26 08:12:10 +000013925 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013926 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013927 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013928 return -EAGAIN;
Hauke Mehrtensead24022013-09-28 23:15:26 +020013929 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Richard Cochran28b04112010-07-17 08:48:55 +000013930 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013931 }
13932
Matt Carlson33f401a2010-04-05 10:19:27 +000013933 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013934 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000013935 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013936
13937 /* fallthru */
13938 case SIOCGMIIREG: {
13939 u32 mii_regval;
13940
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013941 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013942 break; /* We have no PHY */
13943
Matt Carlson34eea5a2011-04-20 07:57:38 +000013944 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013945 return -EAGAIN;
13946
David S. Millerf47c11e2005-06-24 20:18:35 -070013947 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013948 err = __tg3_readphy(tp, data->phy_id & 0x1f,
13949 data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070013950 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013951
13952 data->val_out = mii_regval;
13953
13954 return err;
13955 }
13956
13957 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013958 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013959 break; /* We have no PHY */
13960
Matt Carlson34eea5a2011-04-20 07:57:38 +000013961 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013962 return -EAGAIN;
13963
David S. Millerf47c11e2005-06-24 20:18:35 -070013964 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013965 err = __tg3_writephy(tp, data->phy_id & 0x1f,
13966 data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070013967 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013968
13969 return err;
13970
Matt Carlson0a633ac2012-12-03 19:36:59 +000013971 case SIOCSHWTSTAMP:
Ben Hutchings72608992013-11-18 22:59:43 +000013972 return tg3_hwtstamp_set(dev, ifr);
13973
13974 case SIOCGHWTSTAMP:
13975 return tg3_hwtstamp_get(dev, ifr);
Matt Carlson0a633ac2012-12-03 19:36:59 +000013976
Linus Torvalds1da177e2005-04-16 15:20:36 -070013977 default:
13978 /* do nothing */
13979 break;
13980 }
13981 return -EOPNOTSUPP;
13982}
13983
David S. Miller15f98502005-05-18 22:49:26 -070013984static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13985{
13986 struct tg3 *tp = netdev_priv(dev);
13987
13988 memcpy(ec, &tp->coal, sizeof(*ec));
13989 return 0;
13990}
13991
Michael Chand244c892005-07-05 14:42:33 -070013992static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13993{
13994 struct tg3 *tp = netdev_priv(dev);
13995 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
13996 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
13997
Joe Perches63c3a662011-04-26 08:12:10 +000013998 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070013999 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
14000 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
14001 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
14002 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
14003 }
14004
14005 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
14006 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
14007 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
14008 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
14009 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
14010 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
14011 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
14012 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
14013 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
14014 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
14015 return -EINVAL;
14016
14017 /* No rx interrupts will be generated if both are zero */
14018 if ((ec->rx_coalesce_usecs == 0) &&
14019 (ec->rx_max_coalesced_frames == 0))
14020 return -EINVAL;
14021
14022 /* No tx interrupts will be generated if both are zero */
14023 if ((ec->tx_coalesce_usecs == 0) &&
14024 (ec->tx_max_coalesced_frames == 0))
14025 return -EINVAL;
14026
14027 /* Only copy relevant parameters, ignore all others. */
14028 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
14029 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
14030 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
14031 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
14032 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
14033 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
14034 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
14035 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
14036 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
14037
14038 if (netif_running(dev)) {
14039 tg3_full_lock(tp, 0);
14040 __tg3_set_coalesce(tp, &tp->coal);
14041 tg3_full_unlock(tp);
14042 }
14043 return 0;
14044}
14045
Nithin Sujir1cbf9eb2013-05-18 06:26:55 +000014046static int tg3_set_eee(struct net_device *dev, struct ethtool_eee *edata)
14047{
14048 struct tg3 *tp = netdev_priv(dev);
14049
14050 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
14051 netdev_warn(tp->dev, "Board does not support EEE!\n");
14052 return -EOPNOTSUPP;
14053 }
14054
14055 if (edata->advertised != tp->eee.advertised) {
14056 netdev_warn(tp->dev,
14057 "Direct manipulation of EEE advertisement is not supported\n");
14058 return -EINVAL;
14059 }
14060
14061 if (edata->tx_lpi_timer > TG3_CPMU_DBTMR1_LNKIDLE_MAX) {
14062 netdev_warn(tp->dev,
14063 "Maximal Tx Lpi timer supported is %#x(u)\n",
14064 TG3_CPMU_DBTMR1_LNKIDLE_MAX);
14065 return -EINVAL;
14066 }
14067
14068 tp->eee = *edata;
14069
14070 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
14071 tg3_warn_mgmt_link_flap(tp);
14072
14073 if (netif_running(tp->dev)) {
14074 tg3_full_lock(tp, 0);
14075 tg3_setup_eee(tp);
14076 tg3_phy_reset(tp);
14077 tg3_full_unlock(tp);
14078 }
14079
14080 return 0;
14081}
14082
14083static int tg3_get_eee(struct net_device *dev, struct ethtool_eee *edata)
14084{
14085 struct tg3 *tp = netdev_priv(dev);
14086
14087 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
14088 netdev_warn(tp->dev,
14089 "Board does not support EEE!\n");
14090 return -EOPNOTSUPP;
14091 }
14092
14093 *edata = tp->eee;
14094 return 0;
14095}
14096
Jeff Garzik7282d492006-09-13 14:30:00 -040014097static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014098 .get_settings = tg3_get_settings,
14099 .set_settings = tg3_set_settings,
14100 .get_drvinfo = tg3_get_drvinfo,
14101 .get_regs_len = tg3_get_regs_len,
14102 .get_regs = tg3_get_regs,
14103 .get_wol = tg3_get_wol,
14104 .set_wol = tg3_set_wol,
14105 .get_msglevel = tg3_get_msglevel,
14106 .set_msglevel = tg3_set_msglevel,
14107 .nway_reset = tg3_nway_reset,
14108 .get_link = ethtool_op_get_link,
14109 .get_eeprom_len = tg3_get_eeprom_len,
14110 .get_eeprom = tg3_get_eeprom,
14111 .set_eeprom = tg3_set_eeprom,
14112 .get_ringparam = tg3_get_ringparam,
14113 .set_ringparam = tg3_set_ringparam,
14114 .get_pauseparam = tg3_get_pauseparam,
14115 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070014116 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014117 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000014118 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014119 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070014120 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070014121 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070014122 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000014123 .get_rxnfc = tg3_get_rxnfc,
14124 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
Ben Hutchingsfe62d002014-05-15 01:25:27 +010014125 .get_rxfh = tg3_get_rxfh,
14126 .set_rxfh = tg3_set_rxfh,
Michael Chan09681692012-09-28 07:12:42 +000014127 .get_channels = tg3_get_channels,
14128 .set_channels = tg3_set_channels,
Matt Carlson7d41e492012-12-03 19:36:58 +000014129 .get_ts_info = tg3_get_ts_info,
Nithin Sujir1cbf9eb2013-05-18 06:26:55 +000014130 .get_eee = tg3_get_eee,
14131 .set_eee = tg3_set_eee,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014132};
14133
David S. Millerb4017c52012-03-01 17:57:40 -050014134static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
14135 struct rtnl_link_stats64 *stats)
14136{
14137 struct tg3 *tp = netdev_priv(dev);
14138
David S. Millerb4017c52012-03-01 17:57:40 -050014139 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000014140 if (!tp->hw_stats) {
Govindarajulu Varadarajan7b31b4d2014-08-13 13:04:56 +053014141 *stats = tp->net_stats_prev;
Michael Chan0f566b22012-07-29 19:15:44 +000014142 spin_unlock_bh(&tp->lock);
Govindarajulu Varadarajan7b31b4d2014-08-13 13:04:56 +053014143 return stats;
Michael Chan0f566b22012-07-29 19:15:44 +000014144 }
14145
David S. Millerb4017c52012-03-01 17:57:40 -050014146 tg3_get_nstats(tp, stats);
14147 spin_unlock_bh(&tp->lock);
14148
14149 return stats;
14150}
14151
Matt Carlsonccd5ba92012-02-13 10:20:08 +000014152static void tg3_set_rx_mode(struct net_device *dev)
14153{
14154 struct tg3 *tp = netdev_priv(dev);
14155
14156 if (!netif_running(dev))
14157 return;
14158
14159 tg3_full_lock(tp, 0);
14160 __tg3_set_rx_mode(dev);
14161 tg3_full_unlock(tp);
14162}
14163
Matt Carlsonfaf16272012-02-13 10:20:07 +000014164static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
14165 int new_mtu)
14166{
14167 dev->mtu = new_mtu;
14168
14169 if (new_mtu > ETH_DATA_LEN) {
14170 if (tg3_flag(tp, 5780_CLASS)) {
14171 netdev_update_features(dev);
14172 tg3_flag_clear(tp, TSO_CAPABLE);
14173 } else {
14174 tg3_flag_set(tp, JUMBO_RING_ENABLE);
14175 }
14176 } else {
14177 if (tg3_flag(tp, 5780_CLASS)) {
14178 tg3_flag_set(tp, TSO_CAPABLE);
14179 netdev_update_features(dev);
14180 }
14181 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
14182 }
14183}
14184
14185static int tg3_change_mtu(struct net_device *dev, int new_mtu)
14186{
14187 struct tg3 *tp = netdev_priv(dev);
Joe Perches953c96e2013-04-09 10:18:14 +000014188 int err;
14189 bool reset_phy = false;
Matt Carlsonfaf16272012-02-13 10:20:07 +000014190
14191 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
14192 return -EINVAL;
14193
14194 if (!netif_running(dev)) {
14195 /* We'll just catch it later when the
14196 * device is up'd.
14197 */
14198 tg3_set_mtu(dev, tp, new_mtu);
14199 return 0;
14200 }
14201
14202 tg3_phy_stop(tp);
14203
14204 tg3_netif_stop(tp);
14205
Nithin Sujirc6993df2014-02-06 14:13:05 -080014206 tg3_set_mtu(dev, tp, new_mtu);
14207
Matt Carlsonfaf16272012-02-13 10:20:07 +000014208 tg3_full_lock(tp, 1);
14209
14210 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
14211
Michael Chan2fae5e32012-03-04 14:48:15 +000014212 /* Reset PHY, otherwise the read DMA engine will be in a mode that
14213 * breaks all requests to 256 bytes.
14214 */
Joe Perches41535772013-02-16 11:20:04 +000014215 if (tg3_asic_rev(tp) == ASIC_REV_57766)
Joe Perches953c96e2013-04-09 10:18:14 +000014216 reset_phy = true;
Michael Chan2fae5e32012-03-04 14:48:15 +000014217
14218 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000014219
14220 if (!err)
14221 tg3_netif_start(tp);
14222
14223 tg3_full_unlock(tp);
14224
14225 if (!err)
14226 tg3_phy_start(tp);
14227
14228 return err;
14229}
14230
14231static const struct net_device_ops tg3_netdev_ops = {
14232 .ndo_open = tg3_open,
14233 .ndo_stop = tg3_close,
14234 .ndo_start_xmit = tg3_start_xmit,
14235 .ndo_get_stats64 = tg3_get_stats64,
14236 .ndo_validate_addr = eth_validate_addr,
14237 .ndo_set_rx_mode = tg3_set_rx_mode,
14238 .ndo_set_mac_address = tg3_set_mac_addr,
14239 .ndo_do_ioctl = tg3_ioctl,
14240 .ndo_tx_timeout = tg3_tx_timeout,
14241 .ndo_change_mtu = tg3_change_mtu,
14242 .ndo_fix_features = tg3_fix_features,
14243 .ndo_set_features = tg3_set_features,
14244#ifdef CONFIG_NET_POLL_CONTROLLER
14245 .ndo_poll_controller = tg3_poll_controller,
14246#endif
14247};
14248
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014249static void tg3_get_eeprom_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014250{
Michael Chan1b277772006-03-20 22:27:48 -080014251 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014252
14253 tp->nvram_size = EEPROM_CHIP_SIZE;
14254
Matt Carlsone4f34112009-02-25 14:25:00 +000014255 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014256 return;
14257
Michael Chanb16250e2006-09-27 16:10:14 -070014258 if ((magic != TG3_EEPROM_MAGIC) &&
14259 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
14260 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014261 return;
14262
14263 /*
14264 * Size the chip by reading offsets at increasing powers of two.
14265 * When we encounter our validation signature, we know the addressing
14266 * has wrapped around, and thus have our chip size.
14267 */
Michael Chan1b277772006-03-20 22:27:48 -080014268 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014269
14270 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000014271 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014272 return;
14273
Michael Chan18201802006-03-20 22:29:15 -080014274 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014275 break;
14276
14277 cursize <<= 1;
14278 }
14279
14280 tp->nvram_size = cursize;
14281}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014282
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014283static void tg3_get_nvram_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014284{
14285 u32 val;
14286
Joe Perches63c3a662011-04-26 08:12:10 +000014287 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080014288 return;
14289
14290 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080014291 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080014292 tg3_get_eeprom_size(tp);
14293 return;
14294 }
14295
Matt Carlson6d348f22009-02-25 14:25:52 +000014296 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014297 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000014298 /* This is confusing. We want to operate on the
14299 * 16-bit value at offset 0xf2. The tg3_nvram_read()
14300 * call will read from NVRAM and byteswap the data
14301 * according to the byteswapping settings for all
14302 * other register accesses. This ensures the data we
14303 * want will always reside in the lower 16-bits.
14304 * However, the data in NVRAM is in LE format, which
14305 * means the data from the NVRAM read will always be
14306 * opposite the endianness of the CPU. The 16-bit
14307 * byteswap then brings the data to CPU endianness.
14308 */
14309 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014310 return;
14311 }
14312 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070014313 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014314}
14315
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014316static void tg3_get_nvram_info(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014317{
14318 u32 nvcfg1;
14319
14320 nvcfg1 = tr32(NVRAM_CFG1);
14321 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000014322 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014323 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014324 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14325 tw32(NVRAM_CFG1, nvcfg1);
14326 }
14327
Joe Perches41535772013-02-16 11:20:04 +000014328 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014329 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014330 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000014331 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
14332 tp->nvram_jedecnum = JEDEC_ATMEL;
14333 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014334 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014335 break;
14336 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
14337 tp->nvram_jedecnum = JEDEC_ATMEL;
14338 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
14339 break;
14340 case FLASH_VENDOR_ATMEL_EEPROM:
14341 tp->nvram_jedecnum = JEDEC_ATMEL;
14342 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014343 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014344 break;
14345 case FLASH_VENDOR_ST:
14346 tp->nvram_jedecnum = JEDEC_ST;
14347 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014348 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014349 break;
14350 case FLASH_VENDOR_SAIFUN:
14351 tp->nvram_jedecnum = JEDEC_SAIFUN;
14352 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
14353 break;
14354 case FLASH_VENDOR_SST_SMALL:
14355 case FLASH_VENDOR_SST_LARGE:
14356 tp->nvram_jedecnum = JEDEC_SST;
14357 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
14358 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014359 }
Matt Carlson8590a602009-08-28 12:29:16 +000014360 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014361 tp->nvram_jedecnum = JEDEC_ATMEL;
14362 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000014363 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014364 }
14365}
14366
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014367static void tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014368{
14369 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
14370 case FLASH_5752PAGE_SIZE_256:
14371 tp->nvram_pagesize = 256;
14372 break;
14373 case FLASH_5752PAGE_SIZE_512:
14374 tp->nvram_pagesize = 512;
14375 break;
14376 case FLASH_5752PAGE_SIZE_1K:
14377 tp->nvram_pagesize = 1024;
14378 break;
14379 case FLASH_5752PAGE_SIZE_2K:
14380 tp->nvram_pagesize = 2048;
14381 break;
14382 case FLASH_5752PAGE_SIZE_4K:
14383 tp->nvram_pagesize = 4096;
14384 break;
14385 case FLASH_5752PAGE_SIZE_264:
14386 tp->nvram_pagesize = 264;
14387 break;
14388 case FLASH_5752PAGE_SIZE_528:
14389 tp->nvram_pagesize = 528;
14390 break;
14391 }
14392}
14393
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014394static void tg3_get_5752_nvram_info(struct tg3 *tp)
Michael Chan361b4ac2005-04-21 17:11:21 -070014395{
14396 u32 nvcfg1;
14397
14398 nvcfg1 = tr32(NVRAM_CFG1);
14399
Michael Chane6af3012005-04-21 17:12:05 -070014400 /* NVRAM protection for TPM */
14401 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000014402 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070014403
Michael Chan361b4ac2005-04-21 17:11:21 -070014404 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000014405 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
14406 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
14407 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014408 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014409 break;
14410 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14411 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014412 tg3_flag_set(tp, NVRAM_BUFFERED);
14413 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014414 break;
14415 case FLASH_5752VENDOR_ST_M45PE10:
14416 case FLASH_5752VENDOR_ST_M45PE20:
14417 case FLASH_5752VENDOR_ST_M45PE40:
14418 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014419 tg3_flag_set(tp, NVRAM_BUFFERED);
14420 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014421 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070014422 }
14423
Joe Perches63c3a662011-04-26 08:12:10 +000014424 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000014425 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000014426 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070014427 /* For eeprom, set pagesize to maximum eeprom size */
14428 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14429
14430 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14431 tw32(NVRAM_CFG1, nvcfg1);
14432 }
14433}
14434
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014435static void tg3_get_5755_nvram_info(struct tg3 *tp)
Michael Chand3c7b882006-03-23 01:28:25 -080014436{
Matt Carlson989a9d22007-05-05 11:51:05 -070014437 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080014438
14439 nvcfg1 = tr32(NVRAM_CFG1);
14440
14441 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070014442 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014443 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070014444 protect = 1;
14445 }
Michael Chand3c7b882006-03-23 01:28:25 -080014446
Matt Carlson989a9d22007-05-05 11:51:05 -070014447 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
14448 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014449 case FLASH_5755VENDOR_ATMEL_FLASH_1:
14450 case FLASH_5755VENDOR_ATMEL_FLASH_2:
14451 case FLASH_5755VENDOR_ATMEL_FLASH_3:
14452 case FLASH_5755VENDOR_ATMEL_FLASH_5:
14453 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014454 tg3_flag_set(tp, NVRAM_BUFFERED);
14455 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014456 tp->nvram_pagesize = 264;
14457 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
14458 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
14459 tp->nvram_size = (protect ? 0x3e200 :
14460 TG3_NVRAM_SIZE_512KB);
14461 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
14462 tp->nvram_size = (protect ? 0x1f200 :
14463 TG3_NVRAM_SIZE_256KB);
14464 else
14465 tp->nvram_size = (protect ? 0x1f200 :
14466 TG3_NVRAM_SIZE_128KB);
14467 break;
14468 case FLASH_5752VENDOR_ST_M45PE10:
14469 case FLASH_5752VENDOR_ST_M45PE20:
14470 case FLASH_5752VENDOR_ST_M45PE40:
14471 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014472 tg3_flag_set(tp, NVRAM_BUFFERED);
14473 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014474 tp->nvram_pagesize = 256;
14475 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
14476 tp->nvram_size = (protect ?
14477 TG3_NVRAM_SIZE_64KB :
14478 TG3_NVRAM_SIZE_128KB);
14479 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
14480 tp->nvram_size = (protect ?
14481 TG3_NVRAM_SIZE_64KB :
14482 TG3_NVRAM_SIZE_256KB);
14483 else
14484 tp->nvram_size = (protect ?
14485 TG3_NVRAM_SIZE_128KB :
14486 TG3_NVRAM_SIZE_512KB);
14487 break;
Michael Chand3c7b882006-03-23 01:28:25 -080014488 }
14489}
14490
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014491static void tg3_get_5787_nvram_info(struct tg3 *tp)
Michael Chan1b277772006-03-20 22:27:48 -080014492{
14493 u32 nvcfg1;
14494
14495 nvcfg1 = tr32(NVRAM_CFG1);
14496
14497 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000014498 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
14499 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14500 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
14501 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14502 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014503 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000014504 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080014505
Matt Carlson8590a602009-08-28 12:29:16 +000014506 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14507 tw32(NVRAM_CFG1, nvcfg1);
14508 break;
14509 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14510 case FLASH_5755VENDOR_ATMEL_FLASH_1:
14511 case FLASH_5755VENDOR_ATMEL_FLASH_2:
14512 case FLASH_5755VENDOR_ATMEL_FLASH_3:
14513 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014514 tg3_flag_set(tp, NVRAM_BUFFERED);
14515 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014516 tp->nvram_pagesize = 264;
14517 break;
14518 case FLASH_5752VENDOR_ST_M45PE10:
14519 case FLASH_5752VENDOR_ST_M45PE20:
14520 case FLASH_5752VENDOR_ST_M45PE40:
14521 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014522 tg3_flag_set(tp, NVRAM_BUFFERED);
14523 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014524 tp->nvram_pagesize = 256;
14525 break;
Michael Chan1b277772006-03-20 22:27:48 -080014526 }
14527}
14528
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014529static void tg3_get_5761_nvram_info(struct tg3 *tp)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014530{
14531 u32 nvcfg1, protect = 0;
14532
14533 nvcfg1 = tr32(NVRAM_CFG1);
14534
14535 /* NVRAM protection for TPM */
14536 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014537 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070014538 protect = 1;
14539 }
14540
14541 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
14542 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014543 case FLASH_5761VENDOR_ATMEL_ADB021D:
14544 case FLASH_5761VENDOR_ATMEL_ADB041D:
14545 case FLASH_5761VENDOR_ATMEL_ADB081D:
14546 case FLASH_5761VENDOR_ATMEL_ADB161D:
14547 case FLASH_5761VENDOR_ATMEL_MDB021D:
14548 case FLASH_5761VENDOR_ATMEL_MDB041D:
14549 case FLASH_5761VENDOR_ATMEL_MDB081D:
14550 case FLASH_5761VENDOR_ATMEL_MDB161D:
14551 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014552 tg3_flag_set(tp, NVRAM_BUFFERED);
14553 tg3_flag_set(tp, FLASH);
14554 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000014555 tp->nvram_pagesize = 256;
14556 break;
14557 case FLASH_5761VENDOR_ST_A_M45PE20:
14558 case FLASH_5761VENDOR_ST_A_M45PE40:
14559 case FLASH_5761VENDOR_ST_A_M45PE80:
14560 case FLASH_5761VENDOR_ST_A_M45PE16:
14561 case FLASH_5761VENDOR_ST_M_M45PE20:
14562 case FLASH_5761VENDOR_ST_M_M45PE40:
14563 case FLASH_5761VENDOR_ST_M_M45PE80:
14564 case FLASH_5761VENDOR_ST_M_M45PE16:
14565 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014566 tg3_flag_set(tp, NVRAM_BUFFERED);
14567 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014568 tp->nvram_pagesize = 256;
14569 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014570 }
14571
14572 if (protect) {
14573 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
14574 } else {
14575 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014576 case FLASH_5761VENDOR_ATMEL_ADB161D:
14577 case FLASH_5761VENDOR_ATMEL_MDB161D:
14578 case FLASH_5761VENDOR_ST_A_M45PE16:
14579 case FLASH_5761VENDOR_ST_M_M45PE16:
14580 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
14581 break;
14582 case FLASH_5761VENDOR_ATMEL_ADB081D:
14583 case FLASH_5761VENDOR_ATMEL_MDB081D:
14584 case FLASH_5761VENDOR_ST_A_M45PE80:
14585 case FLASH_5761VENDOR_ST_M_M45PE80:
14586 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14587 break;
14588 case FLASH_5761VENDOR_ATMEL_ADB041D:
14589 case FLASH_5761VENDOR_ATMEL_MDB041D:
14590 case FLASH_5761VENDOR_ST_A_M45PE40:
14591 case FLASH_5761VENDOR_ST_M_M45PE40:
14592 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14593 break;
14594 case FLASH_5761VENDOR_ATMEL_ADB021D:
14595 case FLASH_5761VENDOR_ATMEL_MDB021D:
14596 case FLASH_5761VENDOR_ST_A_M45PE20:
14597 case FLASH_5761VENDOR_ST_M_M45PE20:
14598 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14599 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014600 }
14601 }
14602}
14603
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014604static void tg3_get_5906_nvram_info(struct tg3 *tp)
Michael Chanb5d37722006-09-27 16:06:21 -070014605{
14606 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014607 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070014608 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14609}
14610
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014611static void tg3_get_57780_nvram_info(struct tg3 *tp)
Matt Carlson321d32a2008-11-21 17:22:19 -080014612{
14613 u32 nvcfg1;
14614
14615 nvcfg1 = tr32(NVRAM_CFG1);
14616
14617 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14618 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14619 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14620 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014621 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080014622 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14623
14624 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14625 tw32(NVRAM_CFG1, nvcfg1);
14626 return;
14627 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14628 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14629 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14630 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14631 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14632 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14633 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14634 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014635 tg3_flag_set(tp, NVRAM_BUFFERED);
14636 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014637
14638 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14639 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14640 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14641 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14642 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14643 break;
14644 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14645 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14646 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14647 break;
14648 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14649 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14650 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14651 break;
14652 }
14653 break;
14654 case FLASH_5752VENDOR_ST_M45PE10:
14655 case FLASH_5752VENDOR_ST_M45PE20:
14656 case FLASH_5752VENDOR_ST_M45PE40:
14657 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014658 tg3_flag_set(tp, NVRAM_BUFFERED);
14659 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014660
14661 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14662 case FLASH_5752VENDOR_ST_M45PE10:
14663 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14664 break;
14665 case FLASH_5752VENDOR_ST_M45PE20:
14666 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14667 break;
14668 case FLASH_5752VENDOR_ST_M45PE40:
14669 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14670 break;
14671 }
14672 break;
14673 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014674 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080014675 return;
14676 }
14677
Matt Carlsona1b950d2009-09-01 13:20:17 +000014678 tg3_nvram_get_pagesize(tp, nvcfg1);
14679 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014680 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014681}
14682
14683
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014684static void tg3_get_5717_nvram_info(struct tg3 *tp)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014685{
14686 u32 nvcfg1;
14687
14688 nvcfg1 = tr32(NVRAM_CFG1);
14689
14690 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14691 case FLASH_5717VENDOR_ATMEL_EEPROM:
14692 case FLASH_5717VENDOR_MICRO_EEPROM:
14693 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014694 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014695 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14696
14697 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14698 tw32(NVRAM_CFG1, nvcfg1);
14699 return;
14700 case FLASH_5717VENDOR_ATMEL_MDB011D:
14701 case FLASH_5717VENDOR_ATMEL_ADB011B:
14702 case FLASH_5717VENDOR_ATMEL_ADB011D:
14703 case FLASH_5717VENDOR_ATMEL_MDB021D:
14704 case FLASH_5717VENDOR_ATMEL_ADB021B:
14705 case FLASH_5717VENDOR_ATMEL_ADB021D:
14706 case FLASH_5717VENDOR_ATMEL_45USPT:
14707 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014708 tg3_flag_set(tp, NVRAM_BUFFERED);
14709 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014710
14711 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14712 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014713 /* Detect size with tg3_nvram_get_size() */
14714 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014715 case FLASH_5717VENDOR_ATMEL_ADB021B:
14716 case FLASH_5717VENDOR_ATMEL_ADB021D:
14717 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14718 break;
14719 default:
14720 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14721 break;
14722 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014723 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014724 case FLASH_5717VENDOR_ST_M_M25PE10:
14725 case FLASH_5717VENDOR_ST_A_M25PE10:
14726 case FLASH_5717VENDOR_ST_M_M45PE10:
14727 case FLASH_5717VENDOR_ST_A_M45PE10:
14728 case FLASH_5717VENDOR_ST_M_M25PE20:
14729 case FLASH_5717VENDOR_ST_A_M25PE20:
14730 case FLASH_5717VENDOR_ST_M_M45PE20:
14731 case FLASH_5717VENDOR_ST_A_M45PE20:
14732 case FLASH_5717VENDOR_ST_25USPT:
14733 case FLASH_5717VENDOR_ST_45USPT:
14734 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014735 tg3_flag_set(tp, NVRAM_BUFFERED);
14736 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014737
14738 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14739 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014740 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014741 /* Detect size with tg3_nvram_get_size() */
14742 break;
14743 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014744 case FLASH_5717VENDOR_ST_A_M45PE20:
14745 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14746 break;
14747 default:
14748 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14749 break;
14750 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014751 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014752 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014753 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014754 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080014755 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000014756
14757 tg3_nvram_get_pagesize(tp, nvcfg1);
14758 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014759 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080014760}
14761
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014762static void tg3_get_5720_nvram_info(struct tg3 *tp)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014763{
14764 u32 nvcfg1, nvmpinstrp;
14765
14766 nvcfg1 = tr32(NVRAM_CFG1);
14767 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
14768
Joe Perches41535772013-02-16 11:20:04 +000014769 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014770 if (!(nvcfg1 & NVRAM_CFG1_5762VENDOR_MASK)) {
14771 tg3_flag_set(tp, NO_NVRAM);
14772 return;
14773 }
14774
14775 switch (nvmpinstrp) {
14776 case FLASH_5762_EEPROM_HD:
14777 nvmpinstrp = FLASH_5720_EEPROM_HD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014778 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014779 case FLASH_5762_EEPROM_LD:
14780 nvmpinstrp = FLASH_5720_EEPROM_LD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014781 break;
Michael Chanf6334bb2013-04-09 08:48:02 +000014782 case FLASH_5720VENDOR_M_ST_M45PE20:
14783 /* This pinstrap supports multiple sizes, so force it
14784 * to read the actual size from location 0xf0.
14785 */
14786 nvmpinstrp = FLASH_5720VENDOR_ST_45USPT;
14787 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014788 }
14789 }
14790
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014791 switch (nvmpinstrp) {
14792 case FLASH_5720_EEPROM_HD:
14793 case FLASH_5720_EEPROM_LD:
14794 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014795 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014796
14797 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14798 tw32(NVRAM_CFG1, nvcfg1);
14799 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
14800 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14801 else
14802 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
14803 return;
14804 case FLASH_5720VENDOR_M_ATMEL_DB011D:
14805 case FLASH_5720VENDOR_A_ATMEL_DB011B:
14806 case FLASH_5720VENDOR_A_ATMEL_DB011D:
14807 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14808 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14809 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14810 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14811 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14812 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14813 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14814 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14815 case FLASH_5720VENDOR_ATMEL_45USPT:
14816 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014817 tg3_flag_set(tp, NVRAM_BUFFERED);
14818 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014819
14820 switch (nvmpinstrp) {
14821 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14822 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14823 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14824 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14825 break;
14826 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14827 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14828 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14829 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14830 break;
14831 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14832 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14833 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14834 break;
14835 default:
Joe Perches41535772013-02-16 11:20:04 +000014836 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014837 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014838 break;
14839 }
14840 break;
14841 case FLASH_5720VENDOR_M_ST_M25PE10:
14842 case FLASH_5720VENDOR_M_ST_M45PE10:
14843 case FLASH_5720VENDOR_A_ST_M25PE10:
14844 case FLASH_5720VENDOR_A_ST_M45PE10:
14845 case FLASH_5720VENDOR_M_ST_M25PE20:
14846 case FLASH_5720VENDOR_M_ST_M45PE20:
14847 case FLASH_5720VENDOR_A_ST_M25PE20:
14848 case FLASH_5720VENDOR_A_ST_M45PE20:
14849 case FLASH_5720VENDOR_M_ST_M25PE40:
14850 case FLASH_5720VENDOR_M_ST_M45PE40:
14851 case FLASH_5720VENDOR_A_ST_M25PE40:
14852 case FLASH_5720VENDOR_A_ST_M45PE40:
14853 case FLASH_5720VENDOR_M_ST_M25PE80:
14854 case FLASH_5720VENDOR_M_ST_M45PE80:
14855 case FLASH_5720VENDOR_A_ST_M25PE80:
14856 case FLASH_5720VENDOR_A_ST_M45PE80:
14857 case FLASH_5720VENDOR_ST_25USPT:
14858 case FLASH_5720VENDOR_ST_45USPT:
14859 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014860 tg3_flag_set(tp, NVRAM_BUFFERED);
14861 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014862
14863 switch (nvmpinstrp) {
14864 case FLASH_5720VENDOR_M_ST_M25PE20:
14865 case FLASH_5720VENDOR_M_ST_M45PE20:
14866 case FLASH_5720VENDOR_A_ST_M25PE20:
14867 case FLASH_5720VENDOR_A_ST_M45PE20:
14868 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14869 break;
14870 case FLASH_5720VENDOR_M_ST_M25PE40:
14871 case FLASH_5720VENDOR_M_ST_M45PE40:
14872 case FLASH_5720VENDOR_A_ST_M25PE40:
14873 case FLASH_5720VENDOR_A_ST_M45PE40:
14874 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14875 break;
14876 case FLASH_5720VENDOR_M_ST_M25PE80:
14877 case FLASH_5720VENDOR_M_ST_M45PE80:
14878 case FLASH_5720VENDOR_A_ST_M25PE80:
14879 case FLASH_5720VENDOR_A_ST_M45PE80:
14880 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14881 break;
14882 default:
Joe Perches41535772013-02-16 11:20:04 +000014883 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014884 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014885 break;
14886 }
14887 break;
14888 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014889 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014890 return;
14891 }
14892
14893 tg3_nvram_get_pagesize(tp, nvcfg1);
14894 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014895 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Michael Chanc86a8562013-01-06 12:51:08 +000014896
Joe Perches41535772013-02-16 11:20:04 +000014897 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014898 u32 val;
14899
14900 if (tg3_nvram_read(tp, 0, &val))
14901 return;
14902
14903 if (val != TG3_EEPROM_MAGIC &&
14904 (val & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW)
14905 tg3_flag_set(tp, NO_NVRAM);
14906 }
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014907}
14908
Linus Torvalds1da177e2005-04-16 15:20:36 -070014909/* Chips other than 5700/5701 use the NVRAM for fetching info. */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014910static void tg3_nvram_init(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014911{
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014912 if (tg3_flag(tp, IS_SSB_CORE)) {
14913 /* No NVRAM and EEPROM on the SSB Broadcom GigE core. */
14914 tg3_flag_clear(tp, NVRAM);
14915 tg3_flag_clear(tp, NVRAM_BUFFERED);
14916 tg3_flag_set(tp, NO_NVRAM);
14917 return;
14918 }
14919
Linus Torvalds1da177e2005-04-16 15:20:36 -070014920 tw32_f(GRC_EEPROM_ADDR,
14921 (EEPROM_ADDR_FSM_RESET |
14922 (EEPROM_DEFAULT_CLOCK_PERIOD <<
14923 EEPROM_ADDR_CLKPERD_SHIFT)));
14924
Michael Chan9d57f012006-12-07 00:23:25 -080014925 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014926
14927 /* Enable seeprom accesses. */
14928 tw32_f(GRC_LOCAL_CTRL,
14929 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
14930 udelay(100);
14931
Joe Perches41535772013-02-16 11:20:04 +000014932 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14933 tg3_asic_rev(tp) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000014934 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014935
Michael Chanec41c7d2006-01-17 02:40:55 -080014936 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014937 netdev_warn(tp->dev,
14938 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000014939 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080014940 return;
14941 }
Michael Chane6af3012005-04-21 17:12:05 -070014942 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014943
Matt Carlson989a9d22007-05-05 11:51:05 -070014944 tp->nvram_size = 0;
14945
Joe Perches41535772013-02-16 11:20:04 +000014946 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan361b4ac2005-04-21 17:11:21 -070014947 tg3_get_5752_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014948 else if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chand3c7b882006-03-23 01:28:25 -080014949 tg3_get_5755_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014950 else if (tg3_asic_rev(tp) == ASIC_REV_5787 ||
14951 tg3_asic_rev(tp) == ASIC_REV_5784 ||
14952 tg3_asic_rev(tp) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080014953 tg3_get_5787_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014954 else if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014955 tg3_get_5761_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014956 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014957 tg3_get_5906_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014958 else if (tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014959 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080014960 tg3_get_57780_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014961 else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
14962 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014963 tg3_get_5717_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014964 else if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
14965 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014966 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070014967 else
14968 tg3_get_nvram_info(tp);
14969
Matt Carlson989a9d22007-05-05 11:51:05 -070014970 if (tp->nvram_size == 0)
14971 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014972
Michael Chane6af3012005-04-21 17:12:05 -070014973 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080014974 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014975
14976 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014977 tg3_flag_clear(tp, NVRAM);
14978 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014979
14980 tg3_get_eeprom_size(tp);
14981 }
14982}
14983
Linus Torvalds1da177e2005-04-16 15:20:36 -070014984struct subsys_tbl_ent {
14985 u16 subsys_vendor, subsys_devid;
14986 u32 phy_id;
14987};
14988
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014989static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014990 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014991 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014992 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014993 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014994 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014995 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014996 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014997 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14998 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
14999 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015000 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015001 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015002 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015003 { TG3PCI_SUBVENDOR_ID_BROADCOM,
15004 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
15005 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015006 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015007 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015008 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015009 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015010 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015011 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015012 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070015013
15014 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000015015 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015016 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015017 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015018 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015019 { TG3PCI_SUBVENDOR_ID_3COM,
15020 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
15021 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015022 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015023 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000015024 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070015025
15026 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000015027 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000015028 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015029 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000015030 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015031 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000015032 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015033 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000015034 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070015035
15036 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000015037 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000015038 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015039 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000015040 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015041 { TG3PCI_SUBVENDOR_ID_COMPAQ,
15042 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
15043 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000015044 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000015045 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000015046 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070015047
15048 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000015049 { TG3PCI_SUBVENDOR_ID_IBM,
15050 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015051};
15052
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015053static struct subsys_tbl_ent *tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015054{
15055 int i;
15056
15057 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
15058 if ((subsys_id_to_phy_id[i].subsys_vendor ==
15059 tp->pdev->subsystem_vendor) &&
15060 (subsys_id_to_phy_id[i].subsys_devid ==
15061 tp->pdev->subsystem_device))
15062 return &subsys_id_to_phy_id[i];
15063 }
15064 return NULL;
15065}
15066
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015067static void tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015068{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015069 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070015070
Matt Carlson79eb6902010-02-17 15:17:03 +000015071 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070015072 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
15073
Gary Zambranoa85feb82007-05-05 11:52:19 -070015074 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000015075 tg3_flag_set(tp, EEPROM_WRITE_PROT);
15076 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080015077
Joe Perches41535772013-02-16 11:20:04 +000015078 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080015079 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015080 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
15081 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080015082 }
Matt Carlson0527ba32007-10-10 18:03:30 -070015083 val = tr32(VCPU_CFGSHDW);
15084 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000015085 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070015086 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000015087 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015088 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000015089 device_set_wakeup_enable(&tp->pdev->dev, true);
15090 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080015091 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070015092 }
15093
Linus Torvalds1da177e2005-04-16 15:20:36 -070015094 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
15095 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
15096 u32 nic_cfg, led_cfg;
Nithin Sujir7c786062013-12-06 09:53:17 -080015097 u32 cfg2 = 0, cfg4 = 0, cfg5 = 0;
15098 u32 nic_phy_id, ver, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070015099 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015100
15101 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
15102 tp->nic_sram_data_cfg = nic_cfg;
15103
15104 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
15105 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000015106 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
15107 tg3_asic_rev(tp) != ASIC_REV_5701 &&
15108 tg3_asic_rev(tp) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015109 (ver > 0) && (ver < 0x100))
15110 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
15111
Joe Perches41535772013-02-16 11:20:04 +000015112 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlsona9daf362008-05-25 23:49:44 -070015113 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
15114
Nithin Sujir7c786062013-12-06 09:53:17 -080015115 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15116 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15117 tg3_asic_rev(tp) == ASIC_REV_5720)
15118 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_5, &cfg5);
15119
Linus Torvalds1da177e2005-04-16 15:20:36 -070015120 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
15121 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
15122 eeprom_phy_serdes = 1;
15123
15124 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
15125 if (nic_phy_id != 0) {
15126 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
15127 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
15128
15129 eeprom_phy_id = (id1 >> 16) << 10;
15130 eeprom_phy_id |= (id2 & 0xfc00) << 16;
15131 eeprom_phy_id |= (id2 & 0x03ff) << 0;
15132 } else
15133 eeprom_phy_id = 0;
15134
Michael Chan7d0c41e2005-04-21 17:06:20 -070015135 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070015136 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000015137 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015138 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000015139 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015140 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070015141 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070015142
Joe Perches63c3a662011-04-26 08:12:10 +000015143 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070015144 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
15145 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070015146 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070015147 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
15148
15149 switch (led_cfg) {
15150 default:
15151 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
15152 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
15153 break;
15154
15155 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
15156 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
15157 break;
15158
15159 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
15160 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070015161
15162 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
15163 * read on some older 5700/5701 bootcode.
15164 */
Joe Perches41535772013-02-16 11:20:04 +000015165 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
15166 tg3_asic_rev(tp) == ASIC_REV_5701)
Michael Chan9ba27792005-06-06 15:16:20 -070015167 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
15168
Linus Torvalds1da177e2005-04-16 15:20:36 -070015169 break;
15170
15171 case SHASTA_EXT_LED_SHARED:
15172 tp->led_ctrl = LED_CTRL_MODE_SHARED;
Joe Perches41535772013-02-16 11:20:04 +000015173 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
15174 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015175 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
15176 LED_CTRL_MODE_PHY_2);
Nithin Sujir89f67972013-09-20 16:46:57 -070015177
15178 if (tg3_flag(tp, 5717_PLUS) ||
15179 tg3_asic_rev(tp) == ASIC_REV_5762)
15180 tp->led_ctrl |= LED_CTRL_BLINK_RATE_OVERRIDE |
15181 LED_CTRL_BLINK_RATE_MASK;
15182
Linus Torvalds1da177e2005-04-16 15:20:36 -070015183 break;
15184
15185 case SHASTA_EXT_LED_MAC:
15186 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
15187 break;
15188
15189 case SHASTA_EXT_LED_COMBO:
15190 tp->led_ctrl = LED_CTRL_MODE_COMBO;
Joe Perches41535772013-02-16 11:20:04 +000015191 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015192 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
15193 LED_CTRL_MODE_PHY_2);
15194 break;
15195
Stephen Hemminger855e1112008-04-16 16:37:28 -070015196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015197
Joe Perches41535772013-02-16 11:20:04 +000015198 if ((tg3_asic_rev(tp) == ASIC_REV_5700 ||
15199 tg3_asic_rev(tp) == ASIC_REV_5701) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015200 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
15201 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
15202
Joe Perches41535772013-02-16 11:20:04 +000015203 if (tg3_chip_rev(tp) == CHIPREV_5784_AX)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070015204 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080015205
Michael Chan9d26e212006-12-07 00:21:14 -080015206 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000015207 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080015208 if ((tp->pdev->subsystem_vendor ==
15209 PCI_VENDOR_ID_ARIMA) &&
15210 (tp->pdev->subsystem_device == 0x205a ||
15211 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000015212 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080015213 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000015214 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
15215 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080015216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015217
15218 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000015219 tg3_flag_set(tp, ENABLE_ASF);
15220 if (tg3_flag(tp, 5750_PLUS))
15221 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015222 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080015223
15224 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000015225 tg3_flag(tp, 5750_PLUS))
15226 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080015227
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015228 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070015229 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000015230 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015231
Joe Perches63c3a662011-04-26 08:12:10 +000015232 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000015233 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015234 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000015235 device_set_wakeup_enable(&tp->pdev->dev, true);
15236 }
Matt Carlson0527ba32007-10-10 18:03:30 -070015237
Linus Torvalds1da177e2005-04-16 15:20:36 -070015238 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015239 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015240
15241 /* serdes signal pre-emphasis in register 0x590 set by */
15242 /* bootcode if bit 18 is set */
15243 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015244 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070015245
Joe Perches63c3a662011-04-26 08:12:10 +000015246 if ((tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015247 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
15248 tg3_chip_rev(tp) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080015249 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015250 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080015251
Nithin Sujir942d1af2013-04-09 08:48:07 +000015252 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070015253 u32 cfg3;
15254
15255 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
Nithin Sujir942d1af2013-04-09 08:48:07 +000015256 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
15257 !tg3_flag(tp, 57765_PLUS) &&
15258 (cfg3 & NIC_SRAM_ASPM_DEBOUNCE))
Joe Perches63c3a662011-04-26 08:12:10 +000015259 tg3_flag_set(tp, ASPM_WORKAROUND);
Nithin Sujir942d1af2013-04-09 08:48:07 +000015260 if (cfg3 & NIC_SRAM_LNK_FLAP_AVOID)
15261 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
15262 if (cfg3 & NIC_SRAM_1G_ON_VAUX_OK)
15263 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
Matt Carlson8ed5d972007-05-07 00:25:49 -070015264 }
Matt Carlsona9daf362008-05-25 23:49:44 -070015265
Matt Carlson14417062010-02-17 15:16:59 +000015266 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000015267 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070015268 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000015269 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070015270 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000015271 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Nithin Sujir7c786062013-12-06 09:53:17 -080015272
15273 if (cfg5 & NIC_SRAM_DISABLE_1G_HALF_ADV)
15274 tp->phy_flags |= TG3_PHYFLG_DISABLE_1G_HD_ADV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015275 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080015276done:
Joe Perches63c3a662011-04-26 08:12:10 +000015277 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000015278 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000015279 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000015280 else
15281 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070015282}
15283
Michael Chanc86a8562013-01-06 12:51:08 +000015284static int tg3_ape_otp_read(struct tg3 *tp, u32 offset, u32 *val)
15285{
15286 int i, err;
15287 u32 val2, off = offset * 8;
15288
15289 err = tg3_nvram_lock(tp);
15290 if (err)
15291 return err;
15292
15293 tg3_ape_write32(tp, TG3_APE_OTP_ADDR, off | APE_OTP_ADDR_CPU_ENABLE);
15294 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, APE_OTP_CTRL_PROG_EN |
15295 APE_OTP_CTRL_CMD_RD | APE_OTP_CTRL_START);
15296 tg3_ape_read32(tp, TG3_APE_OTP_CTRL);
15297 udelay(10);
15298
15299 for (i = 0; i < 100; i++) {
15300 val2 = tg3_ape_read32(tp, TG3_APE_OTP_STATUS);
15301 if (val2 & APE_OTP_STATUS_CMD_DONE) {
15302 *val = tg3_ape_read32(tp, TG3_APE_OTP_RD_DATA);
15303 break;
15304 }
15305 udelay(10);
15306 }
15307
15308 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, 0);
15309
15310 tg3_nvram_unlock(tp);
15311 if (val2 & APE_OTP_STATUS_CMD_DONE)
15312 return 0;
15313
15314 return -EBUSY;
15315}
15316
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015317static int tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070015318{
15319 int i;
15320 u32 val;
15321
15322 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
15323 tw32(OTP_CTRL, cmd);
15324
15325 /* Wait for up to 1 ms for command to execute. */
15326 for (i = 0; i < 100; i++) {
15327 val = tr32(OTP_STATUS);
15328 if (val & OTP_STATUS_CMD_DONE)
15329 break;
15330 udelay(10);
15331 }
15332
15333 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
15334}
15335
15336/* Read the gphy configuration from the OTP region of the chip. The gphy
15337 * configuration is a 32-bit value that straddles the alignment boundary.
15338 * We do two 32-bit reads and then shift and merge the results.
15339 */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015340static u32 tg3_read_otp_phycfg(struct tg3 *tp)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070015341{
15342 u32 bhalf_otp, thalf_otp;
15343
15344 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
15345
15346 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
15347 return 0;
15348
15349 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
15350
15351 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
15352 return 0;
15353
15354 thalf_otp = tr32(OTP_READ_DATA);
15355
15356 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
15357
15358 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
15359 return 0;
15360
15361 bhalf_otp = tr32(OTP_READ_DATA);
15362
15363 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
15364}
15365
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015366static void tg3_phy_init_link_config(struct tg3 *tp)
Matt Carlsone256f8a2011-03-09 16:58:24 +000015367{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000015368 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000015369
Nithin Sujir7c786062013-12-06 09:53:17 -080015370 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
15371 if (!(tp->phy_flags & TG3_PHYFLG_DISABLE_1G_HD_ADV))
15372 adv |= ADVERTISED_1000baseT_Half;
15373 adv |= ADVERTISED_1000baseT_Full;
15374 }
Matt Carlsone256f8a2011-03-09 16:58:24 +000015375
15376 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
15377 adv |= ADVERTISED_100baseT_Half |
15378 ADVERTISED_100baseT_Full |
15379 ADVERTISED_10baseT_Half |
15380 ADVERTISED_10baseT_Full |
15381 ADVERTISED_TP;
15382 else
15383 adv |= ADVERTISED_FIBRE;
15384
15385 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000015386 tp->link_config.speed = SPEED_UNKNOWN;
15387 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000015388 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000015389 tp->link_config.active_speed = SPEED_UNKNOWN;
15390 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000015391
15392 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000015393}
15394
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015395static int tg3_phy_probe(struct tg3 *tp)
Michael Chan7d0c41e2005-04-21 17:06:20 -070015396{
15397 u32 hw_phy_id_1, hw_phy_id_2;
15398 u32 hw_phy_id, hw_phy_id_masked;
15399 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015400
Matt Carlsone256f8a2011-03-09 16:58:24 +000015401 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000015402 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000015403 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
15404
Michael Chan8151ad52012-07-29 19:15:41 +000015405 if (tg3_flag(tp, ENABLE_APE)) {
15406 switch (tp->pci_fn) {
15407 case 0:
15408 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
15409 break;
15410 case 1:
15411 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
15412 break;
15413 case 2:
15414 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
15415 break;
15416 case 3:
15417 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
15418 break;
15419 }
15420 }
15421
Nithin Sujir942d1af2013-04-09 08:48:07 +000015422 if (!tg3_flag(tp, ENABLE_ASF) &&
15423 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
15424 !(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
15425 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
15426 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
15427
Joe Perches63c3a662011-04-26 08:12:10 +000015428 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015429 return tg3_phy_init(tp);
15430
Linus Torvalds1da177e2005-04-16 15:20:36 -070015431 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010015432 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015433 */
15434 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000015435 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000015436 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015437 } else {
15438 /* Now read the physical PHY_ID from the chip and verify
15439 * that it is sane. If it doesn't look good, we fall back
15440 * to either the hard-coded table based PHY_ID and failing
15441 * that the value found in the eeprom area.
15442 */
15443 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
15444 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
15445
15446 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
15447 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
15448 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
15449
Matt Carlson79eb6902010-02-17 15:17:03 +000015450 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015451 }
15452
Matt Carlson79eb6902010-02-17 15:17:03 +000015453 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015454 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000015455 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015456 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070015457 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015458 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015459 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000015460 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070015461 /* Do nothing, phy ID already set up in
15462 * tg3_get_eeprom_hw_cfg().
15463 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015464 } else {
15465 struct subsys_tbl_ent *p;
15466
15467 /* No eeprom signature? Try the hardcoded
15468 * subsys device table.
15469 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000015470 p = tg3_lookup_by_subsys(tp);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000015471 if (p) {
15472 tp->phy_id = p->phy_id;
15473 } else if (!tg3_flag(tp, IS_SSB_CORE)) {
15474 /* For now we saw the IDs 0xbc050cd0,
15475 * 0xbc050f80 and 0xbc050c30 on devices
15476 * connected to an BCM4785 and there are
15477 * probably more. Just assume that the phy is
15478 * supported when it is connected to a SSB core
15479 * for now.
15480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015481 return -ENODEV;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000015482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015483
Linus Torvalds1da177e2005-04-16 15:20:36 -070015484 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000015485 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015486 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015487 }
15488 }
15489
Matt Carlsona6b68da2010-12-06 08:28:52 +000015490 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000015491 (tg3_asic_rev(tp) == ASIC_REV_5719 ||
15492 tg3_asic_rev(tp) == ASIC_REV_5720 ||
Nithin Sujirc4dab502013-03-06 17:02:34 +000015493 tg3_asic_rev(tp) == ASIC_REV_57766 ||
Joe Perches41535772013-02-16 11:20:04 +000015494 tg3_asic_rev(tp) == ASIC_REV_5762 ||
15495 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
15496 tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0) ||
15497 (tg3_asic_rev(tp) == ASIC_REV_57765 &&
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +000015498 tg3_chip_rev_id(tp) != CHIPREV_ID_57765_A0))) {
Matt Carlson52b02d02010-10-14 10:37:41 +000015499 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
15500
Nithin Sujir9e2ecbe2013-05-18 06:26:52 +000015501 tp->eee.supported = SUPPORTED_100baseT_Full |
15502 SUPPORTED_1000baseT_Full;
15503 tp->eee.advertised = ADVERTISED_100baseT_Full |
15504 ADVERTISED_1000baseT_Full;
15505 tp->eee.eee_enabled = 1;
15506 tp->eee.tx_lpi_enabled = 1;
15507 tp->eee.tx_lpi_timer = TG3_CPMU_DBTMR1_LNKIDLE_2047US;
15508 }
15509
Matt Carlsone256f8a2011-03-09 16:58:24 +000015510 tg3_phy_init_link_config(tp);
15511
Nithin Sujir942d1af2013-04-09 08:48:07 +000015512 if (!(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
15513 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000015514 !tg3_flag(tp, ENABLE_APE) &&
15515 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000015516 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015517
15518 tg3_readphy(tp, MII_BMSR, &bmsr);
15519 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
15520 (bmsr & BMSR_LSTATUS))
15521 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040015522
Linus Torvalds1da177e2005-04-16 15:20:36 -070015523 err = tg3_phy_reset(tp);
15524 if (err)
15525 return err;
15526
Matt Carlson42b64a42011-05-19 12:12:49 +000015527 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015528
Matt Carlsone2bf73e2011-12-08 14:40:15 +000015529 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000015530 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
15531 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015532
15533 tg3_writephy(tp, MII_BMCR,
15534 BMCR_ANENABLE | BMCR_ANRESTART);
15535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015536 }
15537
15538skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000015539 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015540 err = tg3_init_5401phy_dsp(tp);
15541 if (err)
15542 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015543
Linus Torvalds1da177e2005-04-16 15:20:36 -070015544 err = tg3_init_5401phy_dsp(tp);
15545 }
15546
Linus Torvalds1da177e2005-04-16 15:20:36 -070015547 return err;
15548}
15549
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015550static void tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015551{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015552 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015553 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000015554 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000015555 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015556
Matt Carlson535a4902011-07-20 10:20:56 +000015557 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015558 if (!vpd_data)
15559 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015560
Matt Carlson535a4902011-07-20 10:20:56 +000015561 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000015562 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015563 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015564
15565 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
15566 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
15567 i += PCI_VPD_LRDT_TAG_SIZE;
15568
Matt Carlson535a4902011-07-20 10:20:56 +000015569 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015570 goto out_not_found;
15571
Matt Carlson184b8902010-04-05 10:19:25 +000015572 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15573 PCI_VPD_RO_KEYWORD_MFR_ID);
15574 if (j > 0) {
15575 len = pci_vpd_info_field_size(&vpd_data[j]);
15576
15577 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15578 if (j + len > block_end || len != 4 ||
15579 memcmp(&vpd_data[j], "1028", 4))
15580 goto partno;
15581
15582 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15583 PCI_VPD_RO_KEYWORD_VENDOR0);
15584 if (j < 0)
15585 goto partno;
15586
15587 len = pci_vpd_info_field_size(&vpd_data[j]);
15588
15589 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15590 if (j + len > block_end)
15591 goto partno;
15592
Kees Cook715230a2013-03-27 06:40:50 +000015593 if (len >= sizeof(tp->fw_ver))
15594 len = sizeof(tp->fw_ver) - 1;
15595 memset(tp->fw_ver, 0, sizeof(tp->fw_ver));
15596 snprintf(tp->fw_ver, sizeof(tp->fw_ver), "%.*s bc ", len,
15597 &vpd_data[j]);
Matt Carlson184b8902010-04-05 10:19:25 +000015598 }
15599
15600partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000015601 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15602 PCI_VPD_RO_KEYWORD_PARTNO);
15603 if (i < 0)
15604 goto out_not_found;
15605
15606 len = pci_vpd_info_field_size(&vpd_data[i]);
15607
15608 i += PCI_VPD_INFO_FLD_HDR_SIZE;
15609 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000015610 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015611 goto out_not_found;
15612
15613 memcpy(tp->board_part_number, &vpd_data[i], len);
15614
Linus Torvalds1da177e2005-04-16 15:20:36 -070015615out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015616 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000015617 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015618 return;
15619
15620out_no_vpd:
Joe Perches41535772013-02-16 11:20:04 +000015621 if (tg3_asic_rev(tp) == ASIC_REV_5717) {
Michael Chan79d49692012-11-05 14:26:29 +000015622 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15623 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C)
Matt Carlson37a949c2010-09-30 10:34:33 +000015624 strcpy(tp->board_part_number, "BCM5717");
15625 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
15626 strcpy(tp->board_part_number, "BCM5718");
15627 else
15628 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015629 } else if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015630 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
15631 strcpy(tp->board_part_number, "BCM57780");
15632 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
15633 strcpy(tp->board_part_number, "BCM57760");
15634 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
15635 strcpy(tp->board_part_number, "BCM57790");
15636 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
15637 strcpy(tp->board_part_number, "BCM57788");
15638 else
15639 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015640 } else if (tg3_asic_rev(tp) == ASIC_REV_57765) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015641 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
15642 strcpy(tp->board_part_number, "BCM57761");
15643 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
15644 strcpy(tp->board_part_number, "BCM57765");
15645 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
15646 strcpy(tp->board_part_number, "BCM57781");
15647 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
15648 strcpy(tp->board_part_number, "BCM57785");
15649 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
15650 strcpy(tp->board_part_number, "BCM57791");
15651 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
15652 strcpy(tp->board_part_number, "BCM57795");
15653 else
15654 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015655 } else if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlson55086ad2011-12-14 11:09:59 +000015656 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
15657 strcpy(tp->board_part_number, "BCM57762");
15658 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
15659 strcpy(tp->board_part_number, "BCM57766");
15660 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
15661 strcpy(tp->board_part_number, "BCM57782");
15662 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15663 strcpy(tp->board_part_number, "BCM57786");
15664 else
15665 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015666 } else if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015667 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000015668 } else {
15669nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070015670 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000015671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015672}
15673
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015674static int tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
Matt Carlson9c8a6202007-10-21 16:16:08 -070015675{
15676 u32 val;
15677
Matt Carlsone4f34112009-02-25 14:25:00 +000015678 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015679 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015680 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015681 val != 0)
15682 return 0;
15683
15684 return 1;
15685}
15686
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015687static void tg3_read_bc_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015688{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015689 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000015690 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015691 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015692
15693 if (tg3_nvram_read(tp, 0xc, &offset) ||
15694 tg3_nvram_read(tp, 0x4, &start))
15695 return;
15696
15697 offset = tg3_nvram_logical_addr(tp, offset);
15698
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015699 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015700 return;
15701
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015702 if ((val & 0xfc000000) == 0x0c000000) {
15703 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015704 return;
15705
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015706 if (val == 0)
15707 newver = true;
15708 }
15709
Matt Carlson75f99362010-04-05 10:19:24 +000015710 dst_off = strlen(tp->fw_ver);
15711
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015712 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000015713 if (TG3_VER_SIZE - dst_off < 16 ||
15714 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015715 return;
15716
15717 offset = offset + ver_offset - start;
15718 for (i = 0; i < 16; i += 4) {
15719 __be32 v;
15720 if (tg3_nvram_read_be32(tp, offset + i, &v))
15721 return;
15722
Matt Carlson75f99362010-04-05 10:19:24 +000015723 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015724 }
15725 } else {
15726 u32 major, minor;
15727
15728 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
15729 return;
15730
15731 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
15732 TG3_NVM_BCVER_MAJSFT;
15733 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000015734 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
15735 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015736 }
15737}
15738
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015739static void tg3_read_hwsb_ver(struct tg3 *tp)
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015740{
15741 u32 val, major, minor;
15742
15743 /* Use native endian representation */
15744 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
15745 return;
15746
15747 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
15748 TG3_NVM_HWSB_CFG1_MAJSFT;
15749 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
15750 TG3_NVM_HWSB_CFG1_MINSFT;
15751
15752 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
15753}
15754
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015755static void tg3_read_sb_ver(struct tg3 *tp, u32 val)
Matt Carlsondfe00d72008-11-21 17:19:41 -080015756{
15757 u32 offset, major, minor, build;
15758
Matt Carlson75f99362010-04-05 10:19:24 +000015759 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015760
15761 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
15762 return;
15763
15764 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
15765 case TG3_EEPROM_SB_REVISION_0:
15766 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
15767 break;
15768 case TG3_EEPROM_SB_REVISION_2:
15769 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
15770 break;
15771 case TG3_EEPROM_SB_REVISION_3:
15772 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
15773 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000015774 case TG3_EEPROM_SB_REVISION_4:
15775 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
15776 break;
15777 case TG3_EEPROM_SB_REVISION_5:
15778 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
15779 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000015780 case TG3_EEPROM_SB_REVISION_6:
15781 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
15782 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015783 default:
15784 return;
15785 }
15786
Matt Carlsone4f34112009-02-25 14:25:00 +000015787 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080015788 return;
15789
15790 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
15791 TG3_EEPROM_SB_EDH_BLD_SHFT;
15792 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
15793 TG3_EEPROM_SB_EDH_MAJ_SHFT;
15794 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
15795
15796 if (minor > 99 || build > 26)
15797 return;
15798
Matt Carlson75f99362010-04-05 10:19:24 +000015799 offset = strlen(tp->fw_ver);
15800 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
15801 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015802
15803 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000015804 offset = strlen(tp->fw_ver);
15805 if (offset < TG3_VER_SIZE - 1)
15806 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015807 }
15808}
15809
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015810static void tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080015811{
15812 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015813 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070015814
15815 for (offset = TG3_NVM_DIR_START;
15816 offset < TG3_NVM_DIR_END;
15817 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000015818 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015819 return;
15820
15821 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
15822 break;
15823 }
15824
15825 if (offset == TG3_NVM_DIR_END)
15826 return;
15827
Joe Perches63c3a662011-04-26 08:12:10 +000015828 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015829 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000015830 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015831 return;
15832
Matt Carlsone4f34112009-02-25 14:25:00 +000015833 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015834 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015835 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015836 return;
15837
15838 offset += val - start;
15839
Matt Carlsonacd9c112009-02-25 14:26:33 +000015840 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015841
Matt Carlsonacd9c112009-02-25 14:26:33 +000015842 tp->fw_ver[vlen++] = ',';
15843 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070015844
15845 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000015846 __be32 v;
15847 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015848 return;
15849
Al Virob9fc7dc2007-12-17 22:59:57 -080015850 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015851
Matt Carlsonacd9c112009-02-25 14:26:33 +000015852 if (vlen > TG3_VER_SIZE - sizeof(v)) {
15853 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015854 break;
15855 }
15856
Matt Carlsonacd9c112009-02-25 14:26:33 +000015857 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
15858 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015859 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000015860}
15861
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015862static void tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000015863{
Matt Carlson7fd76442009-02-25 14:27:20 +000015864 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000015865
15866 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
15867 if (apedata != APE_SEG_SIG_MAGIC)
15868 return;
15869
15870 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
15871 if (!(apedata & APE_FW_STATUS_READY))
15872 return;
15873
Michael Chan165f4d12012-07-16 16:23:59 +000015874 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
15875 tg3_flag_set(tp, APE_HAS_NCSI);
15876}
15877
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015878static void tg3_read_dash_ver(struct tg3 *tp)
Michael Chan165f4d12012-07-16 16:23:59 +000015879{
15880 int vlen;
15881 u32 apedata;
15882 char *fwtype;
15883
Matt Carlson7fd76442009-02-25 14:27:20 +000015884 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
15885
Michael Chan165f4d12012-07-16 16:23:59 +000015886 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000015887 fwtype = "NCSI";
Michael Chanc86a8562013-01-06 12:51:08 +000015888 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725)
15889 fwtype = "SMASH";
Michael Chan165f4d12012-07-16 16:23:59 +000015890 else
Matt Carlsonecc79642010-08-02 11:26:01 +000015891 fwtype = "DASH";
15892
Matt Carlson7fd76442009-02-25 14:27:20 +000015893 vlen = strlen(tp->fw_ver);
15894
Matt Carlsonecc79642010-08-02 11:26:01 +000015895 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
15896 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000015897 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
15898 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
15899 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
15900 (apedata & APE_FW_VERSION_BLDMSK));
15901}
15902
Michael Chanc86a8562013-01-06 12:51:08 +000015903static void tg3_read_otp_ver(struct tg3 *tp)
15904{
15905 u32 val, val2;
15906
Joe Perches41535772013-02-16 11:20:04 +000015907 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000015908 return;
15909
15910 if (!tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0, &val) &&
15911 !tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0 + 4, &val2) &&
15912 TG3_OTP_MAGIC0_VALID(val)) {
15913 u64 val64 = (u64) val << 32 | val2;
15914 u32 ver = 0;
15915 int i, vlen;
15916
15917 for (i = 0; i < 7; i++) {
15918 if ((val64 & 0xff) == 0)
15919 break;
15920 ver = val64 & 0xff;
15921 val64 >>= 8;
15922 }
15923 vlen = strlen(tp->fw_ver);
15924 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " .%02d", ver);
15925 }
15926}
15927
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015928static void tg3_read_fw_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015929{
15930 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000015931 bool vpd_vers = false;
15932
15933 if (tp->fw_ver[0] != 0)
15934 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015935
Joe Perches63c3a662011-04-26 08:12:10 +000015936 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000015937 strcat(tp->fw_ver, "sb");
Michael Chanc86a8562013-01-06 12:51:08 +000015938 tg3_read_otp_ver(tp);
Matt Carlsondf259d82009-04-20 06:57:14 +000015939 return;
15940 }
15941
Matt Carlsonacd9c112009-02-25 14:26:33 +000015942 if (tg3_nvram_read(tp, 0, &val))
15943 return;
15944
15945 if (val == TG3_EEPROM_MAGIC)
15946 tg3_read_bc_ver(tp);
15947 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
15948 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015949 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
15950 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015951
Michael Chan165f4d12012-07-16 16:23:59 +000015952 if (tg3_flag(tp, ENABLE_ASF)) {
15953 if (tg3_flag(tp, ENABLE_APE)) {
15954 tg3_probe_ncsi(tp);
15955 if (!vpd_vers)
15956 tg3_read_dash_ver(tp);
15957 } else if (!vpd_vers) {
15958 tg3_read_mgmtfw_ver(tp);
15959 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000015960 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070015961
15962 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080015963}
15964
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015965static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
15966{
Joe Perches63c3a662011-04-26 08:12:10 +000015967 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015968 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000015969 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015970 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015971 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000015972 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015973}
15974
Benoit Taine9baa3c32014-08-08 15:56:03 +020015975static const struct pci_device_id tg3_write_reorder_chipsets[] = {
Joe Perches895950c2010-12-21 02:16:08 -080015976 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
15977 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
15978 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
15979 { },
15980};
15981
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015982static struct pci_dev *tg3_find_peer(struct tg3 *tp)
Matt Carlson16c7fa72012-02-13 10:20:10 +000015983{
15984 struct pci_dev *peer;
15985 unsigned int func, devnr = tp->pdev->devfn & ~7;
15986
15987 for (func = 0; func < 8; func++) {
15988 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15989 if (peer && peer != tp->pdev)
15990 break;
15991 pci_dev_put(peer);
15992 }
15993 /* 5704 can be configured in single-port mode, set peer to
15994 * tp->pdev in that case.
15995 */
15996 if (!peer) {
15997 peer = tp->pdev;
15998 return peer;
15999 }
16000
16001 /*
16002 * We don't need to keep the refcount elevated; there's no way
16003 * to remove one half of this device without removing the other
16004 */
16005 pci_dev_put(peer);
16006
16007 return peer;
16008}
16009
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016010static void tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
Matt Carlson42b123b2012-02-13 15:20:13 +000016011{
16012 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000016013 if (tg3_asic_rev(tp) == ASIC_REV_USE_PROD_ID_REG) {
Matt Carlson42b123b2012-02-13 15:20:13 +000016014 u32 reg;
16015
16016 /* All devices that use the alternate
16017 * ASIC REV location have a CPMU.
16018 */
16019 tg3_flag_set(tp, CPMU_PRESENT);
16020
16021 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000016022 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlson42b123b2012-02-13 15:20:13 +000016023 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
16024 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000016025 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
Nithin Sujir68273712013-09-20 16:46:56 -070016026 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57767 ||
16027 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57764 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000016028 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
16029 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
Nithin Sujir68273712013-09-20 16:46:56 -070016030 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727 ||
16031 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57787)
Matt Carlson42b123b2012-02-13 15:20:13 +000016032 reg = TG3PCI_GEN2_PRODID_ASICREV;
16033 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
16034 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
16035 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
16036 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
16037 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
16038 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
16039 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
16040 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
16041 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
16042 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
16043 reg = TG3PCI_GEN15_PRODID_ASICREV;
16044 else
16045 reg = TG3PCI_PRODID_ASICREV;
16046
16047 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
16048 }
16049
16050 /* Wrong chip ID in 5752 A0. This code can be removed later
16051 * as A0 is not in production.
16052 */
Joe Perches41535772013-02-16 11:20:04 +000016053 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5752_A0_HW)
Matt Carlson42b123b2012-02-13 15:20:13 +000016054 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
16055
Joe Perches41535772013-02-16 11:20:04 +000016056 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_C0)
Michael Chan79d49692012-11-05 14:26:29 +000016057 tp->pci_chip_rev_id = CHIPREV_ID_5720_A0;
16058
Joe Perches41535772013-02-16 11:20:04 +000016059 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16060 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16061 tg3_asic_rev(tp) == ASIC_REV_5720)
Matt Carlson42b123b2012-02-13 15:20:13 +000016062 tg3_flag_set(tp, 5717_PLUS);
16063
Joe Perches41535772013-02-16 11:20:04 +000016064 if (tg3_asic_rev(tp) == ASIC_REV_57765 ||
16065 tg3_asic_rev(tp) == ASIC_REV_57766)
Matt Carlson42b123b2012-02-13 15:20:13 +000016066 tg3_flag_set(tp, 57765_CLASS);
16067
Michael Chanc65a17f2013-01-06 12:51:07 +000016068 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000016069 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson42b123b2012-02-13 15:20:13 +000016070 tg3_flag_set(tp, 57765_PLUS);
16071
16072 /* Intentionally exclude ASIC_REV_5906 */
Joe Perches41535772013-02-16 11:20:04 +000016073 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16074 tg3_asic_rev(tp) == ASIC_REV_5787 ||
16075 tg3_asic_rev(tp) == ASIC_REV_5784 ||
16076 tg3_asic_rev(tp) == ASIC_REV_5761 ||
16077 tg3_asic_rev(tp) == ASIC_REV_5785 ||
16078 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000016079 tg3_flag(tp, 57765_PLUS))
16080 tg3_flag_set(tp, 5755_PLUS);
16081
Joe Perches41535772013-02-16 11:20:04 +000016082 if (tg3_asic_rev(tp) == ASIC_REV_5780 ||
16083 tg3_asic_rev(tp) == ASIC_REV_5714)
Matt Carlson42b123b2012-02-13 15:20:13 +000016084 tg3_flag_set(tp, 5780_CLASS);
16085
Joe Perches41535772013-02-16 11:20:04 +000016086 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
16087 tg3_asic_rev(tp) == ASIC_REV_5752 ||
16088 tg3_asic_rev(tp) == ASIC_REV_5906 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000016089 tg3_flag(tp, 5755_PLUS) ||
16090 tg3_flag(tp, 5780_CLASS))
16091 tg3_flag_set(tp, 5750_PLUS);
16092
Joe Perches41535772013-02-16 11:20:04 +000016093 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000016094 tg3_flag(tp, 5750_PLUS))
16095 tg3_flag_set(tp, 5705_PLUS);
16096}
16097
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016098static bool tg3_10_100_only_device(struct tg3 *tp,
16099 const struct pci_device_id *ent)
16100{
16101 u32 grc_misc_cfg = tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK;
16102
Joe Perches41535772013-02-16 11:20:04 +000016103 if ((tg3_asic_rev(tp) == ASIC_REV_5703 &&
16104 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016105 (tp->phy_flags & TG3_PHYFLG_IS_FET))
16106 return true;
16107
16108 if (ent->driver_data & TG3_DRV_DATA_FLAG_10_100_ONLY) {
Joe Perches41535772013-02-16 11:20:04 +000016109 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016110 if (ent->driver_data & TG3_DRV_DATA_FLAG_5705_10_100)
16111 return true;
16112 } else {
16113 return true;
16114 }
16115 }
16116
16117 return false;
16118}
16119
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000016120static int tg3_get_invariants(struct tg3 *tp, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016121{
Linus Torvalds1da177e2005-04-16 15:20:36 -070016122 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016123 u32 pci_state_reg, grc_misc_cfg;
16124 u32 val;
16125 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080016126 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016127
Linus Torvalds1da177e2005-04-16 15:20:36 -070016128 /* Force memory write invalidate off. If we leave it on,
16129 * then on 5700_BX chips we have to enable a workaround.
16130 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
16131 * to match the cacheline size. The Broadcom driver have this
16132 * workaround but turns MWI off all the times so never uses
16133 * it. This seems to suggest that the workaround is insufficient.
16134 */
16135 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
16136 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
16137 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
16138
Matt Carlson16821282011-07-13 09:27:28 +000016139 /* Important! -- Make sure register accesses are byteswapped
16140 * correctly. Also, for those chips that require it, make
16141 * sure that indirect register accesses are enabled before
16142 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016143 */
16144 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
16145 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000016146 tp->misc_host_ctrl |= (misc_ctrl_reg &
16147 MISC_HOST_CTRL_CHIPREV);
16148 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
16149 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016150
Matt Carlson42b123b2012-02-13 15:20:13 +000016151 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070016152
Michael Chan68929142005-08-09 20:17:14 -070016153 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
16154 * we need to disable memory and use config. cycles
16155 * only to access all registers. The 5702/03 chips
16156 * can mistakenly decode the special cycles from the
16157 * ICH chipsets as memory write cycles, causing corruption
16158 * of register and memory space. Only certain ICH bridges
16159 * will drive special cycles with non-zero data during the
16160 * address phase which can fall within the 5703's address
16161 * range. This is not an ICH bug as the PCI spec allows
16162 * non-zero address during special cycles. However, only
16163 * these ICH bridges are known to drive non-zero addresses
16164 * during special cycles.
16165 *
16166 * Since special cycles do not cross PCI bridges, we only
16167 * enable this workaround if the 5703 is on the secondary
16168 * bus of these ICH bridges.
16169 */
Joe Perches41535772013-02-16 11:20:04 +000016170 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1) ||
16171 (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A2)) {
Michael Chan68929142005-08-09 20:17:14 -070016172 static struct tg3_dev_id {
16173 u32 vendor;
16174 u32 device;
16175 u32 rev;
16176 } ich_chipsets[] = {
16177 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
16178 PCI_ANY_ID },
16179 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
16180 PCI_ANY_ID },
16181 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
16182 0xa },
16183 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
16184 PCI_ANY_ID },
16185 { },
16186 };
16187 struct tg3_dev_id *pci_id = &ich_chipsets[0];
16188 struct pci_dev *bridge = NULL;
16189
16190 while (pci_id->vendor != 0) {
16191 bridge = pci_get_device(pci_id->vendor, pci_id->device,
16192 bridge);
16193 if (!bridge) {
16194 pci_id++;
16195 continue;
16196 }
16197 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070016198 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070016199 continue;
16200 }
16201 if (bridge->subordinate &&
16202 (bridge->subordinate->number ==
16203 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000016204 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070016205 pci_dev_put(bridge);
16206 break;
16207 }
16208 }
16209 }
16210
Joe Perches41535772013-02-16 11:20:04 +000016211 if (tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070016212 static struct tg3_dev_id {
16213 u32 vendor;
16214 u32 device;
16215 } bridge_chipsets[] = {
16216 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
16217 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
16218 { },
16219 };
16220 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
16221 struct pci_dev *bridge = NULL;
16222
16223 while (pci_id->vendor != 0) {
16224 bridge = pci_get_device(pci_id->vendor,
16225 pci_id->device,
16226 bridge);
16227 if (!bridge) {
16228 pci_id++;
16229 continue;
16230 }
16231 if (bridge->subordinate &&
16232 (bridge->subordinate->number <=
16233 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070016234 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba2008-04-19 18:12:33 -070016235 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000016236 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070016237 pci_dev_put(bridge);
16238 break;
16239 }
16240 }
16241 }
16242
Michael Chan4a29cc22006-03-19 13:21:12 -080016243 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
16244 * DMA addresses > 40-bit. This bridge may have other additional
16245 * 57xx devices behind it in some 4-port NIC designs for example.
16246 * Any tg3 device found behind the bridge will also need the 40-bit
16247 * DMA workaround.
16248 */
Matt Carlson42b123b2012-02-13 15:20:13 +000016249 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000016250 tg3_flag_set(tp, 40BIT_DMA_BUG);
Yijing Wang0f847582013-08-08 21:03:12 +080016251 tp->msi_cap = tp->pdev->msi_cap;
Matt Carlson859a588792010-04-05 10:19:28 +000016252 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080016253 struct pci_dev *bridge = NULL;
16254
16255 do {
16256 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
16257 PCI_DEVICE_ID_SERVERWORKS_EPB,
16258 bridge);
16259 if (bridge && bridge->subordinate &&
16260 (bridge->subordinate->number <=
16261 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070016262 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080016263 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000016264 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080016265 pci_dev_put(bridge);
16266 break;
16267 }
16268 } while (bridge);
16269 }
Michael Chan4cf78e42005-07-25 12:29:19 -070016270
Joe Perches41535772013-02-16 11:20:04 +000016271 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
16272 tg3_asic_rev(tp) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070016273 tp->pdev_peer = tg3_find_peer(tp);
16274
Matt Carlson507399f2009-11-13 13:03:37 +000016275 /* Determine TSO capabilities */
Joe Perches41535772013-02-16 11:20:04 +000016276 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000016277 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000016278 else if (tg3_flag(tp, 57765_PLUS))
16279 tg3_flag_set(tp, HW_TSO_3);
16280 else if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000016281 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000016282 tg3_flag_set(tp, HW_TSO_2);
16283 else if (tg3_flag(tp, 5750_PLUS)) {
16284 tg3_flag_set(tp, HW_TSO_1);
16285 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016286 if (tg3_asic_rev(tp) == ASIC_REV_5750 &&
16287 tg3_chip_rev_id(tp) >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000016288 tg3_flag_clear(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016289 } else if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16290 tg3_asic_rev(tp) != ASIC_REV_5701 &&
16291 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Matt Carlson1caf13e2013-03-06 17:02:29 +000016292 tg3_flag_set(tp, FW_TSO);
16293 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016294 if (tg3_asic_rev(tp) == ASIC_REV_5705)
Matt Carlson507399f2009-11-13 13:03:37 +000016295 tp->fw_needed = FIRMWARE_TG3TSO5;
16296 else
16297 tp->fw_needed = FIRMWARE_TG3TSO;
16298 }
16299
Matt Carlsondabc5c62011-05-19 12:12:52 +000016300 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000016301 if (tg3_flag(tp, HW_TSO_1) ||
16302 tg3_flag(tp, HW_TSO_2) ||
16303 tg3_flag(tp, HW_TSO_3) ||
Matt Carlson1caf13e2013-03-06 17:02:29 +000016304 tg3_flag(tp, FW_TSO)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016305 /* For firmware TSO, assume ASF is disabled.
16306 * We'll disable TSO later if we discover ASF
16307 * is enabled in tg3_get_eeprom_hw_cfg().
16308 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000016309 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016310 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000016311 tg3_flag_clear(tp, TSO_CAPABLE);
16312 tg3_flag_clear(tp, TSO_BUG);
16313 tp->fw_needed = NULL;
16314 }
16315
Joe Perches41535772013-02-16 11:20:04 +000016316 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0)
Matt Carlsondabc5c62011-05-19 12:12:52 +000016317 tp->fw_needed = FIRMWARE_TG3;
16318
Nithin Sujirc4dab502013-03-06 17:02:34 +000016319 if (tg3_asic_rev(tp) == ASIC_REV_57766)
16320 tp->fw_needed = FIRMWARE_TG357766;
16321
Matt Carlson507399f2009-11-13 13:03:37 +000016322 tp->irq_max = 1;
16323
Joe Perches63c3a662011-04-26 08:12:10 +000016324 if (tg3_flag(tp, 5750_PLUS)) {
16325 tg3_flag_set(tp, SUPPORT_MSI);
Joe Perches41535772013-02-16 11:20:04 +000016326 if (tg3_chip_rev(tp) == CHIPREV_5750_AX ||
16327 tg3_chip_rev(tp) == CHIPREV_5750_BX ||
16328 (tg3_asic_rev(tp) == ASIC_REV_5714 &&
16329 tg3_chip_rev_id(tp) <= CHIPREV_ID_5714_A2 &&
Michael Chan7544b092007-05-05 13:08:32 -070016330 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000016331 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070016332
Joe Perches63c3a662011-04-26 08:12:10 +000016333 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000016334 tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000016335 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070016336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016337
Joe Perches63c3a662011-04-26 08:12:10 +000016338 if (tg3_flag(tp, 57765_PLUS)) {
16339 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000016340 tp->irq_max = TG3_IRQ_MAX_VECS;
16341 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000016342 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000016343
Michael Chan91024262012-09-28 07:12:38 +000016344 tp->txq_max = 1;
16345 tp->rxq_max = 1;
16346 if (tp->irq_max > 1) {
16347 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
16348 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
16349
Joe Perches41535772013-02-16 11:20:04 +000016350 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
16351 tg3_asic_rev(tp) == ASIC_REV_5720)
Michael Chan91024262012-09-28 07:12:38 +000016352 tp->txq_max = tp->irq_max - 1;
16353 }
16354
Matt Carlsonb7abee62012-06-07 12:56:54 +000016355 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000016356 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000016357 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000016358
Joe Perches41535772013-02-16 11:20:04 +000016359 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000016360 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000016361
Joe Perches41535772013-02-16 11:20:04 +000016362 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16363 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16364 tg3_asic_rev(tp) == ASIC_REV_5720 ||
16365 tg3_asic_rev(tp) == ASIC_REV_5762)
Joe Perches63c3a662011-04-26 08:12:10 +000016366 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000016367
Joe Perches63c3a662011-04-26 08:12:10 +000016368 if (tg3_flag(tp, 57765_PLUS) &&
Joe Perches41535772013-02-16 11:20:04 +000016369 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000016370 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000016371
Joe Perches63c3a662011-04-26 08:12:10 +000016372 if (!tg3_flag(tp, 5705_PLUS) ||
16373 tg3_flag(tp, 5780_CLASS) ||
16374 tg3_flag(tp, USE_JUMBO_BDFLAG))
16375 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070016376
Matt Carlson52f44902008-11-21 17:17:04 -080016377 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
16378 &pci_state_reg);
16379
Jon Mason708ebb3a2011-06-27 12:56:50 +000016380 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080016381 u16 lnkctl;
16382
Joe Perches63c3a662011-04-26 08:12:10 +000016383 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080016384
Jiang Liu0f49bfb2012-08-20 13:28:20 -060016385 pcie_capability_read_word(tp->pdev, PCI_EXP_LNKCTL, &lnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080016386 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Joe Perches41535772013-02-16 11:20:04 +000016387 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000016388 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000016389 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000016390 }
Joe Perches41535772013-02-16 11:20:04 +000016391 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
16392 tg3_asic_rev(tp) == ASIC_REV_5761 ||
16393 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A0 ||
16394 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000016395 tg3_flag_set(tp, CLKREQ_BUG);
Joe Perches41535772013-02-16 11:20:04 +000016396 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000016397 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080016398 }
Joe Perches41535772013-02-16 11:20:04 +000016399 } else if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000016400 /* BCM5785 devices are effectively PCIe devices, and should
16401 * follow PCIe codepaths, but do not have a PCIe capabilities
16402 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000016403 */
Joe Perches63c3a662011-04-26 08:12:10 +000016404 tg3_flag_set(tp, PCI_EXPRESS);
16405 } else if (!tg3_flag(tp, 5705_PLUS) ||
16406 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080016407 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
16408 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000016409 dev_err(&tp->pdev->dev,
16410 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080016411 return -EIO;
16412 }
16413
16414 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000016415 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080016416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016417
Michael Chan399de502005-10-03 14:02:39 -070016418 /* If we have an AMD 762 or VIA K8T800 chipset, write
16419 * reordering to the mailbox registers done by the host
16420 * controller can cause major troubles. We read back from
16421 * every mailbox register write to force the writes to be
16422 * posted to the chip in order.
16423 */
Matt Carlson41434702011-03-09 16:58:22 +000016424 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000016425 !tg3_flag(tp, PCI_EXPRESS))
16426 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070016427
Matt Carlson69fc4052008-12-21 20:19:57 -080016428 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
16429 &tp->pci_cacheline_sz);
16430 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
16431 &tp->pci_lat_timer);
Joe Perches41535772013-02-16 11:20:04 +000016432 if (tg3_asic_rev(tp) == ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016433 tp->pci_lat_timer < 64) {
16434 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080016435 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
16436 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016437 }
16438
Matt Carlson16821282011-07-13 09:27:28 +000016439 /* Important! -- It is critical that the PCI-X hw workaround
16440 * situation is decided before the first MMIO register access.
16441 */
Joe Perches41535772013-02-16 11:20:04 +000016442 if (tg3_chip_rev(tp) == CHIPREV_5700_BX) {
Matt Carlson52f44902008-11-21 17:17:04 -080016443 /* 5700 BX chips need to have their TX producer index
16444 * mailboxes written twice to workaround a bug.
16445 */
Joe Perches63c3a662011-04-26 08:12:10 +000016446 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070016447
Matt Carlson52f44902008-11-21 17:17:04 -080016448 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016449 *
16450 * The workaround is to use indirect register accesses
16451 * for all chip writes not to mailbox registers.
16452 */
Joe Perches63c3a662011-04-26 08:12:10 +000016453 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016454 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016455
Joe Perches63c3a662011-04-26 08:12:10 +000016456 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016457
16458 /* The chip can have it's power management PCI config
16459 * space registers clobbered due to this bug.
16460 * So explicitly force the chip into D0 here.
16461 */
Matt Carlson9974a352007-10-07 23:27:28 -070016462 pci_read_config_dword(tp->pdev,
Jon Mason0319f302013-09-11 11:22:40 -070016463 tp->pdev->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016464 &pm_reg);
16465 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
16466 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070016467 pci_write_config_dword(tp->pdev,
Jon Mason0319f302013-09-11 11:22:40 -070016468 tp->pdev->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016469 pm_reg);
16470
16471 /* Also, force SERR#/PERR# in PCI command. */
16472 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
16473 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
16474 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
16475 }
16476 }
16477
Linus Torvalds1da177e2005-04-16 15:20:36 -070016478 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000016479 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016480 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000016481 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016482
16483 /* Chip-specific fixup from Broadcom driver */
Joe Perches41535772013-02-16 11:20:04 +000016484 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016485 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
16486 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
16487 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
16488 }
16489
Michael Chan1ee582d2005-08-09 20:16:46 -070016490 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070016491 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070016492 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070016493 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070016494 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070016495 tp->write32_tx_mbox = tg3_write32;
16496 tp->write32_rx_mbox = tg3_write32;
16497
16498 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000016499 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070016500 tp->write32 = tg3_write_indirect_reg32;
Joe Perches41535772013-02-16 11:20:04 +000016501 else if (tg3_asic_rev(tp) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016502 (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +000016503 tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0)) {
Matt Carlson98efd8a2007-05-05 12:47:25 -070016504 /*
16505 * Back to back register writes can cause problems on these
16506 * chips, the workaround is to read back all reg writes
16507 * except those to mailbox regs.
16508 *
16509 * See tg3_write_indirect_reg32().
16510 */
Michael Chan1ee582d2005-08-09 20:16:46 -070016511 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070016512 }
16513
Joe Perches63c3a662011-04-26 08:12:10 +000016514 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070016515 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000016516 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070016517 tp->write32_rx_mbox = tg3_write_flush_reg32;
16518 }
Michael Chan20094932005-08-09 20:16:32 -070016519
Joe Perches63c3a662011-04-26 08:12:10 +000016520 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070016521 tp->read32 = tg3_read_indirect_reg32;
16522 tp->write32 = tg3_write_indirect_reg32;
16523 tp->read32_mbox = tg3_read_indirect_mbox;
16524 tp->write32_mbox = tg3_write_indirect_mbox;
16525 tp->write32_tx_mbox = tg3_write_indirect_mbox;
16526 tp->write32_rx_mbox = tg3_write_indirect_mbox;
16527
16528 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070016529 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070016530
16531 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
16532 pci_cmd &= ~PCI_COMMAND_MEMORY;
16533 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
16534 }
Joe Perches41535772013-02-16 11:20:04 +000016535 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070016536 tp->read32_mbox = tg3_read32_mbox_5906;
16537 tp->write32_mbox = tg3_write32_mbox_5906;
16538 tp->write32_tx_mbox = tg3_write32_mbox_5906;
16539 tp->write32_rx_mbox = tg3_write32_mbox_5906;
16540 }
Michael Chan68929142005-08-09 20:17:14 -070016541
Michael Chanbbadf502006-04-06 21:46:34 -070016542 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016543 (tg3_flag(tp, PCIX_MODE) &&
Joe Perches41535772013-02-16 11:20:04 +000016544 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16545 tg3_asic_rev(tp) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000016546 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070016547
Matt Carlson16821282011-07-13 09:27:28 +000016548 /* The memory arbiter has to be enabled in order for SRAM accesses
16549 * to succeed. Normally on powerup the tg3 chip firmware will make
16550 * sure it is enabled, but other entities such as system netboot
16551 * code might disable it.
16552 */
16553 val = tr32(MEMARB_MODE);
16554 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
16555
Matt Carlson9dc5e342011-11-04 09:15:02 +000016556 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
Joe Perches41535772013-02-16 11:20:04 +000016557 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Matt Carlson9dc5e342011-11-04 09:15:02 +000016558 tg3_flag(tp, 5780_CLASS)) {
16559 if (tg3_flag(tp, PCIX_MODE)) {
16560 pci_read_config_dword(tp->pdev,
16561 tp->pcix_cap + PCI_X_STATUS,
16562 &val);
16563 tp->pci_fn = val & 0x7;
16564 }
Joe Perches41535772013-02-16 11:20:04 +000016565 } else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16566 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16567 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson9dc5e342011-11-04 09:15:02 +000016568 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
Michael Chan857001f2013-01-06 12:51:09 +000016569 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) != NIC_SRAM_CPMUSTAT_SIG)
16570 val = tr32(TG3_CPMU_STATUS);
16571
Joe Perches41535772013-02-16 11:20:04 +000016572 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Michael Chan857001f2013-01-06 12:51:09 +000016573 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5717) ? 1 : 0;
16574 else
Matt Carlson9dc5e342011-11-04 09:15:02 +000016575 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
16576 TG3_CPMU_STATUS_FSHFT_5719;
Matt Carlson69f11c92011-07-13 09:27:30 +000016577 }
16578
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016579 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
16580 tp->write32_tx_mbox = tg3_write_flush_reg32;
16581 tp->write32_rx_mbox = tg3_write_flush_reg32;
16582 }
16583
Michael Chan7d0c41e2005-04-21 17:06:20 -070016584 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000016585 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070016586 * determined before calling tg3_set_power_state() so that
16587 * we know whether or not to switch out of Vaux power.
16588 * When the flag is set, it means that GPIO1 is used for eeprom
16589 * write protect and also implies that it is a LOM where GPIOs
16590 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040016591 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070016592 tg3_get_eeprom_hw_cfg(tp);
16593
Matt Carlson1caf13e2013-03-06 17:02:29 +000016594 if (tg3_flag(tp, FW_TSO) && tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016595 tg3_flag_clear(tp, TSO_CAPABLE);
16596 tg3_flag_clear(tp, TSO_BUG);
16597 tp->fw_needed = NULL;
16598 }
16599
Joe Perches63c3a662011-04-26 08:12:10 +000016600 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070016601 /* Allow reads and writes to the
16602 * APE register and memory space.
16603 */
16604 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000016605 PCISTATE_ALLOW_APE_SHMEM_WR |
16606 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070016607 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
16608 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000016609
16610 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070016611 }
16612
Matt Carlson16821282011-07-13 09:27:28 +000016613 /* Set up tp->grc_local_ctrl before calling
16614 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
16615 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070016616 * It is also used as eeprom write protect on LOMs.
16617 */
16618 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Joe Perches41535772013-02-16 11:20:04 +000016619 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016620 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070016621 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
16622 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070016623 /* Unused GPIO3 must be driven as output on 5752 because there
16624 * are no pull-up resistors on unused GPIO pins.
16625 */
Joe Perches41535772013-02-16 11:20:04 +000016626 else if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070016627 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070016628
Joe Perches41535772013-02-16 11:20:04 +000016629 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16630 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000016631 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080016632 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
16633
Matt Carlson8d519ab2009-04-20 06:58:01 +000016634 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
16635 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016636 /* Turn off the debug UART. */
16637 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000016638 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016639 /* Keep VMain power. */
16640 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
16641 GRC_LCLCTRL_GPIO_OUTPUT0;
16642 }
16643
Joe Perches41535772013-02-16 11:20:04 +000016644 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000016645 tp->grc_local_ctrl |=
16646 tr32(GRC_LOCAL_CTRL) & GRC_LCLCTRL_GPIO_UART_SEL;
16647
Matt Carlson16821282011-07-13 09:27:28 +000016648 /* Switch out of Vaux if it is a NIC */
16649 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016650
Linus Torvalds1da177e2005-04-16 15:20:36 -070016651 /* Derive initial jumbo mode from MTU assigned in
16652 * ether_setup() via the alloc_etherdev() call
16653 */
Joe Perches63c3a662011-04-26 08:12:10 +000016654 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
16655 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016656
16657 /* Determine WakeOnLan speed to use. */
Joe Perches41535772013-02-16 11:20:04 +000016658 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16659 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16660 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16661 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000016662 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016663 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000016664 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016665 }
16666
Joe Perches41535772013-02-16 11:20:04 +000016667 if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016668 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000016669
Linus Torvalds1da177e2005-04-16 15:20:36 -070016670 /* A few boards don't want Ethernet@WireSpeed phy feature */
Joe Perches41535772013-02-16 11:20:04 +000016671 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16672 (tg3_asic_rev(tp) == ASIC_REV_5705 &&
16673 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) &&
16674 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016675 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
16676 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
16677 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016678
Joe Perches41535772013-02-16 11:20:04 +000016679 if (tg3_chip_rev(tp) == CHIPREV_5703_AX ||
16680 tg3_chip_rev(tp) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016681 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Joe Perches41535772013-02-16 11:20:04 +000016682 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016683 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016684
Joe Perches63c3a662011-04-26 08:12:10 +000016685 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016686 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +000016687 tg3_asic_rev(tp) != ASIC_REV_5785 &&
16688 tg3_asic_rev(tp) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016689 !tg3_flag(tp, 57765_PLUS)) {
Joe Perches41535772013-02-16 11:20:04 +000016690 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16691 tg3_asic_rev(tp) == ASIC_REV_5787 ||
16692 tg3_asic_rev(tp) == ASIC_REV_5784 ||
16693 tg3_asic_rev(tp) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080016694 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
16695 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016696 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080016697 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016698 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080016699 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016700 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070016701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016702
Joe Perches41535772013-02-16 11:20:04 +000016703 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
16704 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -070016705 tp->phy_otp = tg3_read_otp_phycfg(tp);
16706 if (tp->phy_otp == 0)
16707 tp->phy_otp = TG3_OTP_DEFAULT;
16708 }
16709
Joe Perches63c3a662011-04-26 08:12:10 +000016710 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070016711 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
16712 else
16713 tp->mi_mode = MAC_MI_MODE_BASE;
16714
Linus Torvalds1da177e2005-04-16 15:20:36 -070016715 tp->coalesce_mode = 0;
Joe Perches41535772013-02-16 11:20:04 +000016716 if (tg3_chip_rev(tp) != CHIPREV_5700_AX &&
16717 tg3_chip_rev(tp) != CHIPREV_5700_BX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016718 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
16719
Matt Carlson4d958472011-04-20 07:57:35 +000016720 /* Set these bits to enable statistics workaround. */
Joe Perches41535772013-02-16 11:20:04 +000016721 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Nithin Sujir94962f72013-12-06 09:53:19 -080016722 tg3_asic_rev(tp) == ASIC_REV_5762 ||
Joe Perches41535772013-02-16 11:20:04 +000016723 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
16724 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000016725 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
16726 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
16727 }
16728
Joe Perches41535772013-02-16 11:20:04 +000016729 if (tg3_asic_rev(tp) == ASIC_REV_5785 ||
16730 tg3_asic_rev(tp) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000016731 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070016732
Matt Carlson158d7ab2008-05-29 01:37:54 -070016733 err = tg3_mdio_init(tp);
16734 if (err)
16735 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016736
16737 /* Initialize data/descriptor byte/word swapping. */
16738 val = tr32(GRC_MODE);
Joe Perches41535772013-02-16 11:20:04 +000016739 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
16740 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000016741 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
16742 GRC_MODE_WORD_SWAP_B2HRX_DATA |
16743 GRC_MODE_B2HRX_ENABLE |
16744 GRC_MODE_HTX2B_ENABLE |
16745 GRC_MODE_HOST_STACKUP);
16746 else
16747 val &= GRC_MODE_HOST_STACKUP;
16748
Linus Torvalds1da177e2005-04-16 15:20:36 -070016749 tw32(GRC_MODE, val | tp->grc_mode);
16750
16751 tg3_switch_clocks(tp);
16752
16753 /* Clear this out for sanity. */
16754 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
16755
Nat Gurumoorthy388d3332013-12-09 10:43:21 -080016756 /* Clear TG3PCI_REG_BASE_ADDR to prevent hangs. */
16757 tw32(TG3PCI_REG_BASE_ADDR, 0);
16758
Linus Torvalds1da177e2005-04-16 15:20:36 -070016759 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
16760 &pci_state_reg);
16761 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016762 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Joe Perches41535772013-02-16 11:20:04 +000016763 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16764 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16765 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2 ||
16766 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016767 void __iomem *sram_base;
16768
16769 /* Write some dummy words into the SRAM status block
16770 * area, see if it reads back correctly. If the return
16771 * value is bad, force enable the PCIX workaround.
16772 */
16773 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
16774
16775 writel(0x00000000, sram_base);
16776 writel(0x00000000, sram_base + 4);
16777 writel(0xffffffff, sram_base + 4);
16778 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000016779 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016780 }
16781 }
16782
16783 udelay(50);
16784 tg3_nvram_init(tp);
16785
Nithin Sujirc4dab502013-03-06 17:02:34 +000016786 /* If the device has an NVRAM, no need to load patch firmware */
16787 if (tg3_asic_rev(tp) == ASIC_REV_57766 &&
16788 !tg3_flag(tp, NO_NVRAM))
16789 tp->fw_needed = NULL;
16790
Linus Torvalds1da177e2005-04-16 15:20:36 -070016791 grc_misc_cfg = tr32(GRC_MISC_CFG);
16792 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
16793
Joe Perches41535772013-02-16 11:20:04 +000016794 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016795 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
16796 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000016797 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016798
Joe Perches63c3a662011-04-26 08:12:10 +000016799 if (!tg3_flag(tp, IS_5788) &&
Joe Perches41535772013-02-16 11:20:04 +000016800 tg3_asic_rev(tp) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016801 tg3_flag_set(tp, TAGGED_STATUS);
16802 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070016803 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
16804 HOSTCC_MODE_CLRTICK_TXBD);
16805
16806 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
16807 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
16808 tp->misc_host_ctrl);
16809 }
16810
Matt Carlson3bda1252008-08-15 14:08:22 -070016811 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000016812 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000016813 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070016814 else
Matt Carlson6e01b202011-08-19 13:58:20 +000016815 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070016816
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016817 if (tg3_10_100_only_device(tp, ent))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016818 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016819
16820 err = tg3_phy_probe(tp);
16821 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000016822 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016823 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016824 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016825 }
16826
Matt Carlson184b8902010-04-05 10:19:25 +000016827 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080016828 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016829
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016830 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
16831 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016832 } else {
Joe Perches41535772013-02-16 11:20:04 +000016833 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016834 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016835 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016836 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016837 }
16838
16839 /* 5700 {AX,BX} chips have a broken status block link
16840 * change bit implementation, so we must use the
16841 * status register in those cases.
16842 */
Joe Perches41535772013-02-16 11:20:04 +000016843 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016844 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016845 else
Joe Perches63c3a662011-04-26 08:12:10 +000016846 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016847
16848 /* The led_ctrl is set during tg3_phy_probe, here we might
16849 * have to force the link status polling mechanism based
16850 * upon subsystem IDs.
16851 */
16852 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Joe Perches41535772013-02-16 11:20:04 +000016853 tg3_asic_rev(tp) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016854 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
16855 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000016856 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016857 }
16858
16859 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016860 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000016861 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016862 else
Joe Perches63c3a662011-04-26 08:12:10 +000016863 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016864
Nithin Sujir1743b832014-01-03 10:09:14 -080016865 if (tg3_flag(tp, ENABLE_APE) && tg3_flag(tp, ENABLE_ASF))
16866 tg3_flag_set(tp, POLL_CPMU_LINK);
16867
Eric Dumazet9205fd92011-11-18 06:47:01 +000016868 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016869 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Joe Perches41535772013-02-16 11:20:04 +000016870 if (tg3_asic_rev(tp) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016871 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000016872 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016873#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000016874 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016875#endif
16876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016877
Matt Carlson2c49a442010-09-30 10:34:35 +000016878 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
16879 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000016880 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
16881
Matt Carlson2c49a442010-09-30 10:34:35 +000016882 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070016883
16884 /* Increment the rx prod index on the rx std ring by at most
16885 * 8 for these chips to workaround hw errata.
16886 */
Joe Perches41535772013-02-16 11:20:04 +000016887 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
16888 tg3_asic_rev(tp) == ASIC_REV_5752 ||
16889 tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanf92905d2006-06-29 20:14:29 -070016890 tp->rx_std_max_post = 8;
16891
Joe Perches63c3a662011-04-26 08:12:10 +000016892 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070016893 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
16894 PCIE_PWR_MGMT_L1_THRESH_MSK;
16895
Linus Torvalds1da177e2005-04-16 15:20:36 -070016896 return err;
16897}
16898
David S. Miller49b6e95f2007-03-29 01:38:42 -070016899#ifdef CONFIG_SPARC
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016900static int tg3_get_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016901{
16902 struct net_device *dev = tp->dev;
16903 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016904 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070016905 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016906 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016907
David S. Miller49b6e95f2007-03-29 01:38:42 -070016908 addr = of_get_property(dp, "local-mac-address", &len);
Joe Perchesd458cdf2013-10-01 19:04:40 -070016909 if (addr && len == ETH_ALEN) {
16910 memcpy(dev->dev_addr, addr, ETH_ALEN);
David S. Miller49b6e95f2007-03-29 01:38:42 -070016911 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016912 }
16913 return -ENODEV;
16914}
16915
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016916static int tg3_get_default_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016917{
16918 struct net_device *dev = tp->dev;
16919
Joe Perchesd458cdf2013-10-01 19:04:40 -070016920 memcpy(dev->dev_addr, idprom->id_ethaddr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016921 return 0;
16922}
16923#endif
16924
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016925static int tg3_get_device_address(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016926{
16927 struct net_device *dev = tp->dev;
16928 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080016929 int addr_ok = 0;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016930 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016931
David S. Miller49b6e95f2007-03-29 01:38:42 -070016932#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016933 if (!tg3_get_macaddr_sparc(tp))
16934 return 0;
16935#endif
16936
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016937 if (tg3_flag(tp, IS_SSB_CORE)) {
16938 err = ssb_gige_get_macaddr(tp->pdev, &dev->dev_addr[0]);
16939 if (!err && is_valid_ether_addr(&dev->dev_addr[0]))
16940 return 0;
16941 }
16942
Linus Torvalds1da177e2005-04-16 15:20:36 -070016943 mac_offset = 0x7c;
Joe Perches41535772013-02-16 11:20:04 +000016944 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016945 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016946 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
16947 mac_offset = 0xcc;
16948 if (tg3_nvram_lock(tp))
16949 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
16950 else
16951 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000016952 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000016953 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000016954 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000016955 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000016956 mac_offset += 0x18c;
Joe Perches41535772013-02-16 11:20:04 +000016957 } else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070016958 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016959
16960 /* First try to get it from MAC address mailbox. */
16961 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
16962 if ((hi >> 16) == 0x484b) {
16963 dev->dev_addr[0] = (hi >> 8) & 0xff;
16964 dev->dev_addr[1] = (hi >> 0) & 0xff;
16965
16966 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
16967 dev->dev_addr[2] = (lo >> 24) & 0xff;
16968 dev->dev_addr[3] = (lo >> 16) & 0xff;
16969 dev->dev_addr[4] = (lo >> 8) & 0xff;
16970 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016971
Michael Chan008652b2006-03-27 23:14:53 -080016972 /* Some old bootcode may report a 0 MAC address in SRAM */
16973 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
16974 }
16975 if (!addr_ok) {
16976 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000016977 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000016978 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000016979 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070016980 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
16981 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080016982 }
16983 /* Finally just fetch it out of the MAC control regs. */
16984 else {
16985 hi = tr32(MAC_ADDR_0_HIGH);
16986 lo = tr32(MAC_ADDR_0_LOW);
16987
16988 dev->dev_addr[5] = lo & 0xff;
16989 dev->dev_addr[4] = (lo >> 8) & 0xff;
16990 dev->dev_addr[3] = (lo >> 16) & 0xff;
16991 dev->dev_addr[2] = (lo >> 24) & 0xff;
16992 dev->dev_addr[1] = hi & 0xff;
16993 dev->dev_addr[0] = (hi >> 8) & 0xff;
16994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016995 }
16996
16997 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070016998#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016999 if (!tg3_get_default_macaddr_sparc(tp))
17000 return 0;
17001#endif
17002 return -EINVAL;
17003 }
17004 return 0;
17005}
17006
David S. Miller59e6b432005-05-18 22:50:10 -070017007#define BOUNDARY_SINGLE_CACHELINE 1
17008#define BOUNDARY_MULTI_CACHELINE 2
17009
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017010static u32 tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
David S. Miller59e6b432005-05-18 22:50:10 -070017011{
17012 int cacheline_size;
17013 u8 byte;
17014 int goal;
17015
17016 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
17017 if (byte == 0)
17018 cacheline_size = 1024;
17019 else
17020 cacheline_size = (int) byte * 4;
17021
17022 /* On 5703 and later chips, the boundary bits have no
17023 * effect.
17024 */
Joe Perches41535772013-02-16 11:20:04 +000017025 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
17026 tg3_asic_rev(tp) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000017027 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070017028 goto out;
17029
17030#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
17031 goal = BOUNDARY_MULTI_CACHELINE;
17032#else
17033#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
17034 goal = BOUNDARY_SINGLE_CACHELINE;
17035#else
17036 goal = 0;
17037#endif
17038#endif
17039
Joe Perches63c3a662011-04-26 08:12:10 +000017040 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000017041 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
17042 goto out;
17043 }
17044
David S. Miller59e6b432005-05-18 22:50:10 -070017045 if (!goal)
17046 goto out;
17047
17048 /* PCI controllers on most RISC systems tend to disconnect
17049 * when a device tries to burst across a cache-line boundary.
17050 * Therefore, letting tg3 do so just wastes PCI bandwidth.
17051 *
17052 * Unfortunately, for PCI-E there are only limited
17053 * write-side controls for this, and thus for reads
17054 * we will still get the disconnects. We'll also waste
17055 * these PCI cycles for both read and write for chips
17056 * other than 5700 and 5701 which do not implement the
17057 * boundary bits.
17058 */
Joe Perches63c3a662011-04-26 08:12:10 +000017059 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070017060 switch (cacheline_size) {
17061 case 16:
17062 case 32:
17063 case 64:
17064 case 128:
17065 if (goal == BOUNDARY_SINGLE_CACHELINE) {
17066 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
17067 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
17068 } else {
17069 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
17070 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
17071 }
17072 break;
17073
17074 case 256:
17075 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
17076 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
17077 break;
17078
17079 default:
17080 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
17081 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
17082 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070017083 }
Joe Perches63c3a662011-04-26 08:12:10 +000017084 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070017085 switch (cacheline_size) {
17086 case 16:
17087 case 32:
17088 case 64:
17089 if (goal == BOUNDARY_SINGLE_CACHELINE) {
17090 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
17091 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
17092 break;
17093 }
17094 /* fallthrough */
17095 case 128:
17096 default:
17097 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
17098 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
17099 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070017100 }
David S. Miller59e6b432005-05-18 22:50:10 -070017101 } else {
17102 switch (cacheline_size) {
17103 case 16:
17104 if (goal == BOUNDARY_SINGLE_CACHELINE) {
17105 val |= (DMA_RWCTRL_READ_BNDRY_16 |
17106 DMA_RWCTRL_WRITE_BNDRY_16);
17107 break;
17108 }
17109 /* fallthrough */
17110 case 32:
17111 if (goal == BOUNDARY_SINGLE_CACHELINE) {
17112 val |= (DMA_RWCTRL_READ_BNDRY_32 |
17113 DMA_RWCTRL_WRITE_BNDRY_32);
17114 break;
17115 }
17116 /* fallthrough */
17117 case 64:
17118 if (goal == BOUNDARY_SINGLE_CACHELINE) {
17119 val |= (DMA_RWCTRL_READ_BNDRY_64 |
17120 DMA_RWCTRL_WRITE_BNDRY_64);
17121 break;
17122 }
17123 /* fallthrough */
17124 case 128:
17125 if (goal == BOUNDARY_SINGLE_CACHELINE) {
17126 val |= (DMA_RWCTRL_READ_BNDRY_128 |
17127 DMA_RWCTRL_WRITE_BNDRY_128);
17128 break;
17129 }
17130 /* fallthrough */
17131 case 256:
17132 val |= (DMA_RWCTRL_READ_BNDRY_256 |
17133 DMA_RWCTRL_WRITE_BNDRY_256);
17134 break;
17135 case 512:
17136 val |= (DMA_RWCTRL_READ_BNDRY_512 |
17137 DMA_RWCTRL_WRITE_BNDRY_512);
17138 break;
17139 case 1024:
17140 default:
17141 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
17142 DMA_RWCTRL_WRITE_BNDRY_1024);
17143 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070017144 }
David S. Miller59e6b432005-05-18 22:50:10 -070017145 }
17146
17147out:
17148 return val;
17149}
17150
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017151static int tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma,
Joe Perches953c96e2013-04-09 10:18:14 +000017152 int size, bool to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017153{
17154 struct tg3_internal_buffer_desc test_desc;
17155 u32 sram_dma_descs;
17156 int i, ret;
17157
17158 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
17159
17160 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
17161 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
17162 tw32(RDMAC_STATUS, 0);
17163 tw32(WDMAC_STATUS, 0);
17164
17165 tw32(BUFMGR_MODE, 0);
17166 tw32(FTQ_RESET, 0);
17167
17168 test_desc.addr_hi = ((u64) buf_dma) >> 32;
17169 test_desc.addr_lo = buf_dma & 0xffffffff;
17170 test_desc.nic_mbuf = 0x00002100;
17171 test_desc.len = size;
17172
17173 /*
17174 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
17175 * the *second* time the tg3 driver was getting loaded after an
17176 * initial scan.
17177 *
17178 * Broadcom tells me:
17179 * ...the DMA engine is connected to the GRC block and a DMA
17180 * reset may affect the GRC block in some unpredictable way...
17181 * The behavior of resets to individual blocks has not been tested.
17182 *
17183 * Broadcom noted the GRC reset will also reset all sub-components.
17184 */
17185 if (to_device) {
17186 test_desc.cqid_sqid = (13 << 8) | 2;
17187
17188 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
17189 udelay(40);
17190 } else {
17191 test_desc.cqid_sqid = (16 << 8) | 7;
17192
17193 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
17194 udelay(40);
17195 }
17196 test_desc.flags = 0x00000005;
17197
17198 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
17199 u32 val;
17200
17201 val = *(((u32 *)&test_desc) + i);
17202 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
17203 sram_dma_descs + (i * sizeof(u32)));
17204 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
17205 }
17206 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
17207
Matt Carlson859a588792010-04-05 10:19:28 +000017208 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017209 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000017210 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070017211 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017212
17213 ret = -ENODEV;
17214 for (i = 0; i < 40; i++) {
17215 u32 val;
17216
17217 if (to_device)
17218 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
17219 else
17220 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
17221 if ((val & 0xffff) == sram_dma_descs) {
17222 ret = 0;
17223 break;
17224 }
17225
17226 udelay(100);
17227 }
17228
17229 return ret;
17230}
17231
David S. Millerded73402005-05-23 13:59:47 -070017232#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070017233
Benoit Taine9baa3c32014-08-08 15:56:03 +020017234static const struct pci_device_id tg3_dma_wait_state_chipsets[] = {
Joe Perches895950c2010-12-21 02:16:08 -080017235 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
17236 { },
17237};
17238
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017239static int tg3_test_dma(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017240{
17241 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070017242 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000017243 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017244
Matt Carlson4bae65c2010-11-24 08:31:52 +000017245 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
17246 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017247 if (!buf) {
17248 ret = -ENOMEM;
17249 goto out_nofree;
17250 }
17251
17252 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
17253 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
17254
David S. Miller59e6b432005-05-18 22:50:10 -070017255 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017256
Joe Perches63c3a662011-04-26 08:12:10 +000017257 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000017258 goto out;
17259
Joe Perches63c3a662011-04-26 08:12:10 +000017260 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017261 /* DMA read watermark not used on PCIE */
17262 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000017263 } else if (!tg3_flag(tp, PCIX_MODE)) {
Joe Perches41535772013-02-16 11:20:04 +000017264 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
17265 tg3_asic_rev(tp) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017266 tp->dma_rwctrl |= 0x003f0000;
17267 else
17268 tp->dma_rwctrl |= 0x003f000f;
17269 } else {
Joe Perches41535772013-02-16 11:20:04 +000017270 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
17271 tg3_asic_rev(tp) == ASIC_REV_5704) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017272 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080017273 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017274
Michael Chan4a29cc22006-03-19 13:21:12 -080017275 /* If the 5704 is behind the EPB bridge, we can
17276 * do the less restrictive ONE_DMA workaround for
17277 * better performance.
17278 */
Joe Perches63c3a662011-04-26 08:12:10 +000017279 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Joe Perches41535772013-02-16 11:20:04 +000017280 tg3_asic_rev(tp) == ASIC_REV_5704)
Michael Chan4a29cc22006-03-19 13:21:12 -080017281 tp->dma_rwctrl |= 0x8000;
17282 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017283 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
17284
Joe Perches41535772013-02-16 11:20:04 +000017285 if (tg3_asic_rev(tp) == ASIC_REV_5703)
Michael Chan49afdeb2007-02-13 12:17:03 -080017286 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070017287 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080017288 tp->dma_rwctrl |=
17289 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
17290 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
17291 (1 << 23);
Joe Perches41535772013-02-16 11:20:04 +000017292 } else if (tg3_asic_rev(tp) == ASIC_REV_5780) {
Michael Chan4cf78e42005-07-25 12:29:19 -070017293 /* 5780 always in PCIX mode */
17294 tp->dma_rwctrl |= 0x00144000;
Joe Perches41535772013-02-16 11:20:04 +000017295 } else if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chana4e2b342005-10-26 15:46:52 -070017296 /* 5714 always in PCIX mode */
17297 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017298 } else {
17299 tp->dma_rwctrl |= 0x001b000f;
17300 }
17301 }
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017302 if (tg3_flag(tp, ONE_DMA_AT_ONCE))
17303 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017304
Joe Perches41535772013-02-16 11:20:04 +000017305 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
17306 tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017307 tp->dma_rwctrl &= 0xfffffff0;
17308
Joe Perches41535772013-02-16 11:20:04 +000017309 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
17310 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017311 /* Remove this if it causes problems for some boards. */
17312 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
17313
17314 /* On 5700/5701 chips, we need to set this bit.
17315 * Otherwise the chip will issue cacheline transactions
17316 * to streamable DMA memory with not all the byte
17317 * enables turned on. This is an error on several
17318 * RISC PCI controllers, in particular sparc64.
17319 *
17320 * On 5703/5704 chips, this bit has been reassigned
17321 * a different meaning. In particular, it is used
17322 * on those chips to enable a PCI-X workaround.
17323 */
17324 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
17325 }
17326
17327 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17328
Linus Torvalds1da177e2005-04-16 15:20:36 -070017329
Joe Perches41535772013-02-16 11:20:04 +000017330 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
17331 tg3_asic_rev(tp) != ASIC_REV_5701)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017332 goto out;
17333
David S. Miller59e6b432005-05-18 22:50:10 -070017334 /* It is best to perform DMA test with maximum write burst size
17335 * to expose the 5700/5701 write DMA bug.
17336 */
17337 saved_dma_rwctrl = tp->dma_rwctrl;
17338 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
17339 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17340
Linus Torvalds1da177e2005-04-16 15:20:36 -070017341 while (1) {
17342 u32 *p = buf, i;
17343
17344 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
17345 p[i] = i;
17346
17347 /* Send the buffer to the chip. */
Joe Perches953c96e2013-04-09 10:18:14 +000017348 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017349 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000017350 dev_err(&tp->pdev->dev,
17351 "%s: Buffer write failed. err = %d\n",
17352 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017353 break;
17354 }
17355
Linus Torvalds1da177e2005-04-16 15:20:36 -070017356 /* Now read it back. */
Joe Perches953c96e2013-04-09 10:18:14 +000017357 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017358 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000017359 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
17360 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017361 break;
17362 }
17363
17364 /* Verify it. */
17365 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
17366 if (p[i] == i)
17367 continue;
17368
David S. Miller59e6b432005-05-18 22:50:10 -070017369 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
17370 DMA_RWCTRL_WRITE_BNDRY_16) {
17371 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017372 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
17373 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17374 break;
17375 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000017376 dev_err(&tp->pdev->dev,
17377 "%s: Buffer corrupted on read back! "
17378 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017379 ret = -ENODEV;
17380 goto out;
17381 }
17382 }
17383
17384 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
17385 /* Success. */
17386 ret = 0;
17387 break;
17388 }
17389 }
David S. Miller59e6b432005-05-18 22:50:10 -070017390 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
17391 DMA_RWCTRL_WRITE_BNDRY_16) {
17392 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070017393 * now look for chipsets that are known to expose the
17394 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070017395 */
Matt Carlson41434702011-03-09 16:58:22 +000017396 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070017397 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
17398 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000017399 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070017400 /* Safe to use the calculated DMA boundary. */
17401 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000017402 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070017403
David S. Miller59e6b432005-05-18 22:50:10 -070017404 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
17405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017406
17407out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000017408 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017409out_nofree:
17410 return ret;
17411}
17412
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017413static void tg3_init_bufmgr_config(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017414{
Joe Perches63c3a662011-04-26 08:12:10 +000017415 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000017416 tp->bufmgr_config.mbuf_read_dma_low_water =
17417 DEFAULT_MB_RDMA_LOW_WATER_5705;
17418 tp->bufmgr_config.mbuf_mac_rx_low_water =
17419 DEFAULT_MB_MACRX_LOW_WATER_57765;
17420 tp->bufmgr_config.mbuf_high_water =
17421 DEFAULT_MB_HIGH_WATER_57765;
17422
17423 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
17424 DEFAULT_MB_RDMA_LOW_WATER_5705;
17425 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
17426 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
17427 tp->bufmgr_config.mbuf_high_water_jumbo =
17428 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000017429 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070017430 tp->bufmgr_config.mbuf_read_dma_low_water =
17431 DEFAULT_MB_RDMA_LOW_WATER_5705;
17432 tp->bufmgr_config.mbuf_mac_rx_low_water =
17433 DEFAULT_MB_MACRX_LOW_WATER_5705;
17434 tp->bufmgr_config.mbuf_high_water =
17435 DEFAULT_MB_HIGH_WATER_5705;
Joe Perches41535772013-02-16 11:20:04 +000017436 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070017437 tp->bufmgr_config.mbuf_mac_rx_low_water =
17438 DEFAULT_MB_MACRX_LOW_WATER_5906;
17439 tp->bufmgr_config.mbuf_high_water =
17440 DEFAULT_MB_HIGH_WATER_5906;
17441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017442
Michael Chanfdfec1722005-07-25 12:31:48 -070017443 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
17444 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
17445 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
17446 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
17447 tp->bufmgr_config.mbuf_high_water_jumbo =
17448 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
17449 } else {
17450 tp->bufmgr_config.mbuf_read_dma_low_water =
17451 DEFAULT_MB_RDMA_LOW_WATER;
17452 tp->bufmgr_config.mbuf_mac_rx_low_water =
17453 DEFAULT_MB_MACRX_LOW_WATER;
17454 tp->bufmgr_config.mbuf_high_water =
17455 DEFAULT_MB_HIGH_WATER;
17456
17457 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
17458 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
17459 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
17460 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
17461 tp->bufmgr_config.mbuf_high_water_jumbo =
17462 DEFAULT_MB_HIGH_WATER_JUMBO;
17463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017464
17465 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
17466 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
17467}
17468
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017469static char *tg3_phy_string(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017470{
Matt Carlson79eb6902010-02-17 15:17:03 +000017471 switch (tp->phy_id & TG3_PHY_ID_MASK) {
17472 case TG3_PHY_ID_BCM5400: return "5400";
17473 case TG3_PHY_ID_BCM5401: return "5401";
17474 case TG3_PHY_ID_BCM5411: return "5411";
17475 case TG3_PHY_ID_BCM5701: return "5701";
17476 case TG3_PHY_ID_BCM5703: return "5703";
17477 case TG3_PHY_ID_BCM5704: return "5704";
17478 case TG3_PHY_ID_BCM5705: return "5705";
17479 case TG3_PHY_ID_BCM5750: return "5750";
17480 case TG3_PHY_ID_BCM5752: return "5752";
17481 case TG3_PHY_ID_BCM5714: return "5714";
17482 case TG3_PHY_ID_BCM5780: return "5780";
17483 case TG3_PHY_ID_BCM5755: return "5755";
17484 case TG3_PHY_ID_BCM5787: return "5787";
17485 case TG3_PHY_ID_BCM5784: return "5784";
17486 case TG3_PHY_ID_BCM5756: return "5722/5756";
17487 case TG3_PHY_ID_BCM5906: return "5906";
17488 case TG3_PHY_ID_BCM5761: return "5761";
17489 case TG3_PHY_ID_BCM5718C: return "5718C";
17490 case TG3_PHY_ID_BCM5718S: return "5718S";
17491 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000017492 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000017493 case TG3_PHY_ID_BCM5720C: return "5720C";
Michael Chanc65a17f2013-01-06 12:51:07 +000017494 case TG3_PHY_ID_BCM5762: return "5762C";
Matt Carlson79eb6902010-02-17 15:17:03 +000017495 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070017496 case 0: return "serdes";
17497 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070017498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017499}
17500
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017501static char *tg3_bus_string(struct tg3 *tp, char *str)
Michael Chanf9804dd2005-09-27 12:13:10 -070017502{
Joe Perches63c3a662011-04-26 08:12:10 +000017503 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070017504 strcpy(str, "PCI Express");
17505 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000017506 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070017507 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
17508
17509 strcpy(str, "PCIX:");
17510
17511 if ((clock_ctrl == 7) ||
17512 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
17513 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
17514 strcat(str, "133MHz");
17515 else if (clock_ctrl == 0)
17516 strcat(str, "33MHz");
17517 else if (clock_ctrl == 2)
17518 strcat(str, "50MHz");
17519 else if (clock_ctrl == 4)
17520 strcat(str, "66MHz");
17521 else if (clock_ctrl == 6)
17522 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070017523 } else {
17524 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000017525 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070017526 strcat(str, "66MHz");
17527 else
17528 strcat(str, "33MHz");
17529 }
Joe Perches63c3a662011-04-26 08:12:10 +000017530 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070017531 strcat(str, ":32-bit");
17532 else
17533 strcat(str, ":64-bit");
17534 return str;
17535}
17536
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017537static void tg3_init_coal(struct tg3 *tp)
David S. Miller15f98502005-05-18 22:49:26 -070017538{
17539 struct ethtool_coalesce *ec = &tp->coal;
17540
17541 memset(ec, 0, sizeof(*ec));
17542 ec->cmd = ETHTOOL_GCOALESCE;
17543 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
17544 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
17545 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
17546 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
17547 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
17548 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
17549 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
17550 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
17551 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
17552
17553 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
17554 HOSTCC_MODE_CLRTICK_TXBD)) {
17555 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
17556 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
17557 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
17558 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
17559 }
Michael Chand244c892005-07-05 14:42:33 -070017560
Joe Perches63c3a662011-04-26 08:12:10 +000017561 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070017562 ec->rx_coalesce_usecs_irq = 0;
17563 ec->tx_coalesce_usecs_irq = 0;
17564 ec->stats_block_coalesce_usecs = 0;
17565 }
David S. Miller15f98502005-05-18 22:49:26 -070017566}
17567
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017568static int tg3_init_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017569 const struct pci_device_id *ent)
17570{
Linus Torvalds1da177e2005-04-16 15:20:36 -070017571 struct net_device *dev;
17572 struct tg3 *tp;
Yijing Wang5865fc12013-06-02 21:36:21 +000017573 int i, err;
Matt Carlson646c9ed2009-09-01 12:58:41 +000017574 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070017575 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080017576 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000017577 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017578
Joe Perches05dbe002010-02-17 19:44:19 +000017579 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017580
17581 err = pci_enable_device(pdev);
17582 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017583 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017584 return err;
17585 }
17586
Linus Torvalds1da177e2005-04-16 15:20:36 -070017587 err = pci_request_regions(pdev, DRV_MODULE_NAME);
17588 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017589 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017590 goto err_out_disable_pdev;
17591 }
17592
17593 pci_set_master(pdev);
17594
Matt Carlsonfe5f5782009-09-01 13:09:39 +000017595 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017596 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017597 err = -ENOMEM;
Yijing Wang5865fc12013-06-02 21:36:21 +000017598 goto err_out_free_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017599 }
17600
Linus Torvalds1da177e2005-04-16 15:20:36 -070017601 SET_NETDEV_DEV(dev, &pdev->dev);
17602
Linus Torvalds1da177e2005-04-16 15:20:36 -070017603 tp = netdev_priv(dev);
17604 tp->pdev = pdev;
17605 tp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017606 tp->rx_mode = TG3_DEF_RX_MODE;
17607 tp->tx_mode = TG3_DEF_TX_MODE;
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +000017608 tp->irq_sync = 1;
Ivan Vecera0486a062014-09-01 14:21:57 +020017609 tp->pcierr_recovery = false;
Matt Carlson8ef21422008-05-02 16:47:53 -070017610
Linus Torvalds1da177e2005-04-16 15:20:36 -070017611 if (tg3_debug > 0)
17612 tp->msg_enable = tg3_debug;
17613 else
17614 tp->msg_enable = TG3_DEF_MSG_ENABLE;
17615
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017616 if (pdev_is_ssb_gige_core(pdev)) {
17617 tg3_flag_set(tp, IS_SSB_CORE);
17618 if (ssb_gige_must_flush_posted_writes(pdev))
17619 tg3_flag_set(tp, FLUSH_POSTED_WRITES);
17620 if (ssb_gige_one_dma_at_once(pdev))
17621 tg3_flag_set(tp, ONE_DMA_AT_ONCE);
Hauke Mehrtensee002b62013-09-28 23:15:28 +020017622 if (ssb_gige_have_roboswitch(pdev)) {
17623 tg3_flag_set(tp, USE_PHYLIB);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017624 tg3_flag_set(tp, ROBOSWITCH);
Hauke Mehrtensee002b62013-09-28 23:15:28 +020017625 }
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017626 if (ssb_gige_is_rgmii(pdev))
17627 tg3_flag_set(tp, RGMII_MODE);
17628 }
17629
Linus Torvalds1da177e2005-04-16 15:20:36 -070017630 /* The word/byte swap controls here control register access byte
17631 * swapping. DMA data byte swapping is controlled in the GRC_MODE
17632 * setting below.
17633 */
17634 tp->misc_host_ctrl =
17635 MISC_HOST_CTRL_MASK_PCI_INT |
17636 MISC_HOST_CTRL_WORD_SWAP |
17637 MISC_HOST_CTRL_INDIR_ACCESS |
17638 MISC_HOST_CTRL_PCISTATE_RW;
17639
17640 /* The NONFRM (non-frame) byte/word swap controls take effect
17641 * on descriptor entries, anything which isn't packet data.
17642 *
17643 * The StrongARM chips on the board (one for tx, one for rx)
17644 * are running in big-endian mode.
17645 */
17646 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
17647 GRC_MODE_WSWAP_NONFRM_DATA);
17648#ifdef __BIG_ENDIAN
17649 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
17650#endif
17651 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017652 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000017653 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017654
Matt Carlsond5fe4882008-11-21 17:20:32 -080017655 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010017656 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017657 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017658 err = -ENOMEM;
17659 goto err_out_free_dev;
17660 }
17661
Matt Carlsonc9cab242011-07-13 09:27:27 +000017662 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
17663 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
17664 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
17665 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
17666 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000017667 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlsonc9cab242011-07-13 09:27:27 +000017668 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
17669 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000017670 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
Nithin Sujir68273712013-09-20 16:46:56 -070017671 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57767 ||
17672 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57764 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000017673 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
17674 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
Nithin Sujir68273712013-09-20 16:46:56 -070017675 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727 ||
17676 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57787) {
Matt Carlsonc9cab242011-07-13 09:27:27 +000017677 tg3_flag_set(tp, ENABLE_APE);
17678 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
17679 if (!tp->aperegs) {
17680 dev_err(&pdev->dev,
17681 "Cannot map APE registers, aborting\n");
17682 err = -ENOMEM;
17683 goto err_out_iounmap;
17684 }
17685 }
17686
Linus Torvalds1da177e2005-04-16 15:20:36 -070017687 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
17688 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017689
Linus Torvalds1da177e2005-04-16 15:20:36 -070017690 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017691 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000017692 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017693 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017694
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000017695 err = tg3_get_invariants(tp, ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017696 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017697 dev_err(&pdev->dev,
17698 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017699 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017700 }
17701
Michael Chan4a29cc22006-03-19 13:21:12 -080017702 /* The EPB bridge inside 5714, 5715, and 5780 and any
17703 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080017704 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
17705 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
17706 * do DMA address check in tg3_start_xmit().
17707 */
Joe Perches63c3a662011-04-26 08:12:10 +000017708 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070017709 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000017710 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070017711 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080017712#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070017713 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017714#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080017715 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070017716 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017717
17718 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070017719 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080017720 err = pci_set_dma_mask(pdev, dma_mask);
17721 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000017722 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080017723 err = pci_set_consistent_dma_mask(pdev,
17724 persist_dma_mask);
17725 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017726 dev_err(&pdev->dev, "Unable to obtain 64 bit "
17727 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017728 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017729 }
17730 }
17731 }
Yang Hongyang284901a2009-04-06 19:01:15 -070017732 if (err || dma_mask == DMA_BIT_MASK(32)) {
17733 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080017734 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017735 dev_err(&pdev->dev,
17736 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017737 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017738 }
17739 }
17740
Michael Chanfdfec1722005-07-25 12:31:48 -070017741 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017742
Matt Carlson0da06062011-05-19 12:12:53 +000017743 /* 5700 B0 chips do not support checksumming correctly due
17744 * to hardware bugs.
17745 */
Joe Perches41535772013-02-16 11:20:04 +000017746 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5700_B0) {
Matt Carlson0da06062011-05-19 12:12:53 +000017747 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
17748
17749 if (tg3_flag(tp, 5755_PLUS))
17750 features |= NETIF_F_IPV6_CSUM;
17751 }
17752
Michael Chan4e3a7aa2006-03-20 17:47:44 -080017753 /* TSO is on by default on chips that support hardware TSO.
17754 * Firmware TSO on older chips gives lower performance, so it
17755 * is off by default, but can be enabled using ethtool.
17756 */
Joe Perches63c3a662011-04-26 08:12:10 +000017757 if ((tg3_flag(tp, HW_TSO_1) ||
17758 tg3_flag(tp, HW_TSO_2) ||
17759 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000017760 (features & NETIF_F_IP_CSUM))
17761 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000017762 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000017763 if (features & NETIF_F_IPV6_CSUM)
17764 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000017765 if (tg3_flag(tp, HW_TSO_3) ||
Joe Perches41535772013-02-16 11:20:04 +000017766 tg3_asic_rev(tp) == ASIC_REV_5761 ||
17767 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
17768 tg3_chip_rev(tp) != CHIPREV_5784_AX) ||
17769 tg3_asic_rev(tp) == ASIC_REV_5785 ||
17770 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000017771 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070017772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017773
Vlad Yasevich51dfe7b2014-03-24 17:52:12 -040017774 dev->features |= features | NETIF_F_HW_VLAN_CTAG_TX |
17775 NETIF_F_HW_VLAN_CTAG_RX;
Matt Carlsond542fe22011-05-19 16:02:43 +000017776 dev->vlan_features |= features;
17777
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017778 /*
17779 * Add loopback capability only for a subset of devices that support
17780 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
17781 * loopback for the remaining devices.
17782 */
Joe Perches41535772013-02-16 11:20:04 +000017783 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017784 !tg3_flag(tp, CPMU_PRESENT))
17785 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000017786 features |= NETIF_F_LOOPBACK;
17787
Matt Carlson0da06062011-05-19 12:12:53 +000017788 dev->hw_features |= features;
Michael Chane565eec2014-01-03 10:09:12 -080017789 dev->priv_flags |= IFF_UNICAST_FLT;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017790
Joe Perches41535772013-02-16 11:20:04 +000017791 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000017792 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070017793 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000017794 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017795 tp->rx_pending = 63;
17796 }
17797
Linus Torvalds1da177e2005-04-16 15:20:36 -070017798 err = tg3_get_device_address(tp);
17799 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017800 dev_err(&pdev->dev,
17801 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017802 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070017803 }
17804
Matt Carlson78f90dc2009-11-13 13:03:42 +000017805 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
17806 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
17807 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000017808 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000017809 struct tg3_napi *tnapi = &tp->napi[i];
17810
17811 tnapi->tp = tp;
17812 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
17813
17814 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000017815 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017816 intmbx += 0x8;
17817 else
17818 intmbx += 0x4;
17819
17820 tnapi->consmbox = rcvmbx;
17821 tnapi->prodmbox = sndmbx;
17822
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017823 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017824 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017825 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000017826 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000017827
Joe Perches63c3a662011-04-26 08:12:10 +000017828 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000017829 break;
17830
17831 /*
17832 * If we support MSIX, we'll be using RSS. If we're using
17833 * RSS, the first vector only handles link interrupts and the
17834 * remaining vectors handle rx and tx interrupts. Reuse the
17835 * mailbox values for the next iteration. The values we setup
17836 * above are still useful for the single vectored mode.
17837 */
17838 if (!i)
17839 continue;
17840
17841 rcvmbx += 0x8;
17842
17843 if (sndmbx & 0x4)
17844 sndmbx -= 0x4;
17845 else
17846 sndmbx += 0xc;
17847 }
17848
Prashant Sreedharan05b0aa52014-12-20 12:16:17 -080017849 /*
17850 * Reset chip in case UNDI or EFI driver did not shutdown
17851 * DMA self test will enable WDMAC and we'll see (spurious)
17852 * pending DMA on the PCI bus at that point.
17853 */
17854 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
17855 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
Jun'ichi Nomura \(NEC\)d0af71a2015-02-12 01:26:24 +000017856 tg3_full_lock(tp, 0);
Prashant Sreedharan05b0aa52014-12-20 12:16:17 -080017857 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
17858 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Jun'ichi Nomura \(NEC\)d0af71a2015-02-12 01:26:24 +000017859 tg3_full_unlock(tp);
Prashant Sreedharan05b0aa52014-12-20 12:16:17 -080017860 }
17861
17862 err = tg3_test_dma(tp);
17863 if (err) {
17864 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
17865 goto err_out_apeunmap;
17866 }
17867
Matt Carlsonc88864d2007-11-12 21:07:01 -080017868 tg3_init_coal(tp);
17869
Michael Chanc49a1562006-12-17 17:07:29 -080017870 pci_set_drvdata(pdev, dev);
17871
Joe Perches41535772013-02-16 11:20:04 +000017872 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
17873 tg3_asic_rev(tp) == ASIC_REV_5720 ||
17874 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +000017875 tg3_flag_set(tp, PTP_CAPABLE);
17876
Matt Carlson21f76382012-02-22 12:35:21 +000017877 tg3_timer_init(tp);
17878
Michael Chan402e1392013-02-14 12:13:41 +000017879 tg3_carrier_off(tp);
17880
Linus Torvalds1da177e2005-04-16 15:20:36 -070017881 err = register_netdev(dev);
17882 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017883 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070017884 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017885 }
17886
Ivan Vecera20d14a52015-01-08 16:13:07 +010017887 if (tg3_flag(tp, PTP_CAPABLE)) {
17888 tg3_ptp_init(tp);
17889 tp->ptp_clock = ptp_clock_register(&tp->ptp_info,
17890 &tp->pdev->dev);
17891 if (IS_ERR(tp->ptp_clock))
17892 tp->ptp_clock = NULL;
17893 }
17894
Joe Perches05dbe002010-02-17 19:44:19 +000017895 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
17896 tp->board_part_number,
Joe Perches41535772013-02-16 11:20:04 +000017897 tg3_chip_rev_id(tp),
Joe Perches05dbe002010-02-17 19:44:19 +000017898 tg3_bus_string(tp, str),
17899 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017900
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017901 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000017902 struct phy_device *phydev;
Hauke Mehrtensead24022013-09-28 23:15:26 +020017903 phydev = tp->mdio_bus->phy_map[tp->phy_addr];
Matt Carlson5129c3a2010-04-05 10:19:23 +000017904 netdev_info(dev,
17905 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Andrew Lunn84eff6d2016-01-06 20:11:10 +010017906 phydev->drv->name, phydev_name(phydev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017907 } else {
17908 char *ethtype;
17909
17910 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
17911 ethtype = "10/100Base-TX";
17912 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
17913 ethtype = "1000Base-SX";
17914 else
17915 ethtype = "10/100/1000Base-T";
17916
Matt Carlson5129c3a2010-04-05 10:19:23 +000017917 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000017918 "(WireSpeed[%d], EEE[%d])\n",
17919 tg3_phy_string(tp), ethtype,
17920 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
17921 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017922 }
Matt Carlsondf59c942008-11-03 16:52:56 -080017923
Joe Perches05dbe002010-02-17 19:44:19 +000017924 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000017925 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017926 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017927 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017928 tg3_flag(tp, ENABLE_ASF) != 0,
17929 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000017930 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
17931 tp->dma_rwctrl,
17932 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
17933 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017934
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017935 pci_save_state(pdev);
17936
Linus Torvalds1da177e2005-04-16 15:20:36 -070017937 return 0;
17938
Matt Carlson0d3031d2007-10-10 18:02:43 -070017939err_out_apeunmap:
17940 if (tp->aperegs) {
17941 iounmap(tp->aperegs);
17942 tp->aperegs = NULL;
17943 }
17944
Linus Torvalds1da177e2005-04-16 15:20:36 -070017945err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070017946 if (tp->regs) {
17947 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017948 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017950
17951err_out_free_dev:
17952 free_netdev(dev);
17953
17954err_out_free_res:
17955 pci_release_regions(pdev);
17956
17957err_out_disable_pdev:
Gavin Shanc80dc132013-07-24 17:25:09 +080017958 if (pci_is_enabled(pdev))
17959 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017960 return err;
17961}
17962
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017963static void tg3_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017964{
17965 struct net_device *dev = pci_get_drvdata(pdev);
17966
17967 if (dev) {
17968 struct tg3 *tp = netdev_priv(dev);
17969
Ivan Vecera20d14a52015-01-08 16:13:07 +010017970 tg3_ptp_fini(tp);
17971
Jesper Juhle3c55302012-04-09 22:50:15 +020017972 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080017973
Matt Carlsondb219972011-11-04 09:15:03 +000017974 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017975
David S. Miller1805b2f2011-10-24 18:18:09 -040017976 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017977 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017978 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017979 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070017980
Linus Torvalds1da177e2005-04-16 15:20:36 -070017981 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070017982 if (tp->aperegs) {
17983 iounmap(tp->aperegs);
17984 tp->aperegs = NULL;
17985 }
Michael Chan68929142005-08-09 20:17:14 -070017986 if (tp->regs) {
17987 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017988 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017990 free_netdev(dev);
17991 pci_release_regions(pdev);
17992 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017993 }
17994}
17995
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017996#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017997static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017998{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017999 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018000 struct net_device *dev = pci_get_drvdata(pdev);
18001 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010018002 int err = 0;
18003
18004 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070018005
18006 if (!netif_running(dev))
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010018007 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018008
Matt Carlsondb219972011-11-04 09:15:03 +000018009 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070018010 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018011 tg3_netif_stop(tp);
18012
Matt Carlson21f76382012-02-22 12:35:21 +000018013 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018014
David S. Millerf47c11e2005-06-24 20:18:35 -070018015 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018016 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070018017 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018018
18019 netif_device_detach(dev);
18020
David S. Millerf47c11e2005-06-24 20:18:35 -070018021 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070018022 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000018023 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070018024 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018025
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000018026 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018027 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070018028 int err2;
18029
David S. Millerf47c11e2005-06-24 20:18:35 -070018030 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018031
Joe Perches63c3a662011-04-26 08:12:10 +000018032 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000018033 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070018034 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070018035 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018036
Matt Carlson21f76382012-02-22 12:35:21 +000018037 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018038
18039 netif_device_attach(dev);
18040 tg3_netif_start(tp);
18041
Michael Chanb9ec6c12006-07-25 16:37:27 -070018042out:
David S. Millerf47c11e2005-06-24 20:18:35 -070018043 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070018044
18045 if (!err2)
18046 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018047 }
18048
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010018049unlock:
18050 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070018051 return err;
18052}
18053
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000018054static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018055{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000018056 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018057 struct net_device *dev = pci_get_drvdata(pdev);
18058 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010018059 int err = 0;
18060
18061 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070018062
18063 if (!netif_running(dev))
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010018064 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018065
Linus Torvalds1da177e2005-04-16 15:20:36 -070018066 netif_device_attach(dev);
18067
David S. Millerf47c11e2005-06-24 20:18:35 -070018068 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018069
Nithin Sujir2e460fc2013-05-23 11:11:22 +000018070 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
18071
Joe Perches63c3a662011-04-26 08:12:10 +000018072 tg3_flag_set(tp, INIT_COMPLETE);
Nithin Sujir942d1af2013-04-09 08:48:07 +000018073 err = tg3_restart_hw(tp,
18074 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN));
Michael Chanb9ec6c12006-07-25 16:37:27 -070018075 if (err)
18076 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018077
Matt Carlson21f76382012-02-22 12:35:21 +000018078 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018079
Linus Torvalds1da177e2005-04-16 15:20:36 -070018080 tg3_netif_start(tp);
18081
Michael Chanb9ec6c12006-07-25 16:37:27 -070018082out:
David S. Millerf47c11e2005-06-24 20:18:35 -070018083 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018084
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070018085 if (!err)
18086 tg3_phy_start(tp);
18087
Rafael J. Wysocki8496e852013-12-01 02:34:37 +010018088unlock:
18089 rtnl_unlock();
Michael Chanb9ec6c12006-07-25 16:37:27 -070018090 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018091}
Fabio Estevam42df36a2013-04-16 09:28:29 +000018092#endif /* CONFIG_PM_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018093
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000018094static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
18095
Nithin Sujir4c305fa2013-07-29 13:58:37 -070018096static void tg3_shutdown(struct pci_dev *pdev)
18097{
18098 struct net_device *dev = pci_get_drvdata(pdev);
18099 struct tg3 *tp = netdev_priv(dev);
18100
18101 rtnl_lock();
18102 netif_device_detach(dev);
18103
18104 if (netif_running(dev))
18105 dev_close(dev);
18106
18107 if (system_state == SYSTEM_POWER_OFF)
18108 tg3_power_down(tp);
18109
18110 rtnl_unlock();
18111}
18112
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018113/**
18114 * tg3_io_error_detected - called when PCI error is detected
18115 * @pdev: Pointer to PCI device
18116 * @state: The current pci connection state
18117 *
18118 * This function is called after a PCI bus error affecting
18119 * this device has been detected.
18120 */
18121static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
18122 pci_channel_state_t state)
18123{
18124 struct net_device *netdev = pci_get_drvdata(pdev);
18125 struct tg3 *tp = netdev_priv(netdev);
18126 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
18127
18128 netdev_info(netdev, "PCI I/O error detected\n");
18129
18130 rtnl_lock();
18131
Gavin Shandfc8f372015-04-24 15:22:23 +100018132 /* We needn't recover from permanent error */
18133 if (state == pci_channel_io_frozen)
18134 tp->pcierr_recovery = true;
Ivan Vecera0486a062014-09-01 14:21:57 +020018135
Gavin Shand8af4df2013-07-24 17:25:08 +080018136 /* We probably don't have netdev yet */
18137 if (!netdev || !netif_running(netdev))
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018138 goto done;
18139
18140 tg3_phy_stop(tp);
18141
18142 tg3_netif_stop(tp);
18143
Matt Carlson21f76382012-02-22 12:35:21 +000018144 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018145
18146 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000018147 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018148
18149 netif_device_detach(netdev);
18150
18151 /* Clean up software state, even if MMIO is blocked */
18152 tg3_full_lock(tp, 0);
18153 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
18154 tg3_full_unlock(tp);
18155
18156done:
Michael Chan72bb72b2013-06-17 13:47:25 -070018157 if (state == pci_channel_io_perm_failure) {
Daniel Borkmann68293092013-08-13 11:45:13 -070018158 if (netdev) {
18159 tg3_napi_enable(tp);
18160 dev_close(netdev);
18161 }
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018162 err = PCI_ERS_RESULT_DISCONNECT;
Michael Chan72bb72b2013-06-17 13:47:25 -070018163 } else {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018164 pci_disable_device(pdev);
Michael Chan72bb72b2013-06-17 13:47:25 -070018165 }
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018166
18167 rtnl_unlock();
18168
18169 return err;
18170}
18171
18172/**
18173 * tg3_io_slot_reset - called after the pci bus has been reset.
18174 * @pdev: Pointer to PCI device
18175 *
18176 * Restart the card from scratch, as if from a cold-boot.
18177 * At this point, the card has exprienced a hard reset,
18178 * followed by fixups by BIOS, and has its config space
18179 * set up identically to what it was at cold boot.
18180 */
18181static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
18182{
18183 struct net_device *netdev = pci_get_drvdata(pdev);
18184 struct tg3 *tp = netdev_priv(netdev);
18185 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
18186 int err;
18187
18188 rtnl_lock();
18189
18190 if (pci_enable_device(pdev)) {
Daniel Borkmann68293092013-08-13 11:45:13 -070018191 dev_err(&pdev->dev,
18192 "Cannot re-enable PCI device after reset.\n");
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018193 goto done;
18194 }
18195
18196 pci_set_master(pdev);
18197 pci_restore_state(pdev);
18198 pci_save_state(pdev);
18199
Daniel Borkmann68293092013-08-13 11:45:13 -070018200 if (!netdev || !netif_running(netdev)) {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018201 rc = PCI_ERS_RESULT_RECOVERED;
18202 goto done;
18203 }
18204
18205 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000018206 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018207 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018208
18209 rc = PCI_ERS_RESULT_RECOVERED;
18210
18211done:
Daniel Borkmann68293092013-08-13 11:45:13 -070018212 if (rc != PCI_ERS_RESULT_RECOVERED && netdev && netif_running(netdev)) {
Michael Chan72bb72b2013-06-17 13:47:25 -070018213 tg3_napi_enable(tp);
18214 dev_close(netdev);
18215 }
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018216 rtnl_unlock();
18217
18218 return rc;
18219}
18220
18221/**
18222 * tg3_io_resume - called when traffic can start flowing again.
18223 * @pdev: Pointer to PCI device
18224 *
18225 * This callback is called when the error recovery driver tells
18226 * us that its OK to resume normal operation.
18227 */
18228static void tg3_io_resume(struct pci_dev *pdev)
18229{
18230 struct net_device *netdev = pci_get_drvdata(pdev);
18231 struct tg3 *tp = netdev_priv(netdev);
18232 int err;
18233
18234 rtnl_lock();
18235
18236 if (!netif_running(netdev))
18237 goto done;
18238
18239 tg3_full_lock(tp, 0);
Nithin Sujir2e460fc2013-05-23 11:11:22 +000018240 tg3_ape_driver_state_change(tp, RESET_KIND_INIT);
Joe Perches63c3a662011-04-26 08:12:10 +000018241 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000018242 err = tg3_restart_hw(tp, true);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018243 if (err) {
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000018244 tg3_full_unlock(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018245 netdev_err(netdev, "Cannot restart hardware after reset.\n");
18246 goto done;
18247 }
18248
18249 netif_device_attach(netdev);
18250
Matt Carlson21f76382012-02-22 12:35:21 +000018251 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018252
18253 tg3_netif_start(tp);
18254
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000018255 tg3_full_unlock(tp);
18256
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018257 tg3_phy_start(tp);
18258
18259done:
Ivan Vecera0486a062014-09-01 14:21:57 +020018260 tp->pcierr_recovery = false;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018261 rtnl_unlock();
18262}
18263
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070018264static const struct pci_error_handlers tg3_err_handler = {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018265 .error_detected = tg3_io_error_detected,
18266 .slot_reset = tg3_io_slot_reset,
18267 .resume = tg3_io_resume
18268};
18269
Linus Torvalds1da177e2005-04-16 15:20:36 -070018270static struct pci_driver tg3_driver = {
18271 .name = DRV_MODULE_NAME,
18272 .id_table = tg3_pci_tbl,
18273 .probe = tg3_init_one,
Bill Pemberton229b1ad2012-12-03 09:22:59 -050018274 .remove = tg3_remove_one,
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000018275 .err_handler = &tg3_err_handler,
Fabio Estevam42df36a2013-04-16 09:28:29 +000018276 .driver.pm = &tg3_pm_ops,
Nithin Sujir4c305fa2013-07-29 13:58:37 -070018277 .shutdown = tg3_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -070018278};
18279
Peter Hüwe8dbb0dc2013-05-21 12:58:06 +000018280module_pci_driver(tg3_driver);