blob: 781be7660125264f16809f0042d238ec88e70c2a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * tg3.c: Broadcom Tigon3 ethernet driver.
3 *
4 * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com)
5 * Copyright (C) 2001, 2002, 2003 Jeff Garzik (jgarzik@pobox.com)
6 * Copyright (C) 2004 Sun Microsystems Inc.
Nithin Nayak Sujirb681b652013-01-06 12:51:10 +00007 * Copyright (C) 2005-2013 Broadcom Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Firmware is:
Michael Chan49cabf42005-06-06 15:15:17 -070010 * Derived from proprietary unpublished source code,
11 * Copyright (C) 2000-2003 Broadcom Corporation.
12 *
13 * Permission is hereby granted for the distribution of this firmware
14 * data in hexadecimal or equivalent format, provided this copyright
15 * notice is accompanying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <linux/module.h>
20#include <linux/moduleparam.h>
Matt Carlson6867c842010-07-11 09:31:44 +000021#include <linux/stringify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/types.h>
24#include <linux/compiler.h>
25#include <linux/slab.h>
26#include <linux/delay.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020027#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000029#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/ioport.h>
31#include <linux/pci.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/ethtool.h>
Matt Carlson3110f5f52010-12-06 08:28:50 +000036#include <linux/mdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070038#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070039#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/if_vlan.h>
41#include <linux/ip.h>
42#include <linux/tcp.h>
43#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070044#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020045#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080046#include <linux/firmware.h>
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000047#include <linux/ssb/ssb_driver_gige.h>
Michael Chanaed93e02012-07-16 16:24:02 +000048#include <linux/hwmon.h>
49#include <linux/hwmon-sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030052#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000054#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000056#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Matt Carlsonbe947302012-12-03 19:36:57 +000058#include <uapi/linux/net_tstamp.h>
59#include <linux/ptp_clock_kernel.h>
60
David S. Miller49b6e95f2007-03-29 01:38:42 -070061#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070063#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#endif
65
Matt Carlson63532392008-11-03 16:49:57 -080066#define BAR_0 0
67#define BAR_2 2
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include "tg3.h"
70
Joe Perches63c3a662011-04-26 08:12:10 +000071/* Functions & macros to verify TG3_FLAGS types */
72
73static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
74{
75 return test_bit(flag, bits);
76}
77
78static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
79{
80 set_bit(flag, bits);
81}
82
83static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
84{
85 clear_bit(flag, bits);
86}
87
88#define tg3_flag(tp, flag) \
89 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
90#define tg3_flag_set(tp, flag) \
91 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
92#define tg3_flag_clear(tp, flag) \
93 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000096#define TG3_MAJ_NUM 3
Nithin Sujir7a28fde2013-04-09 08:48:10 +000097#define TG3_MIN_NUM 131
Matt Carlson6867c842010-07-11 09:31:44 +000098#define DRV_MODULE_VERSION \
99 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Nithin Sujir7a28fde2013-04-09 08:48:10 +0000100#define DRV_MODULE_RELDATE "April 09, 2013"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000102#define RESET_KIND_SHUTDOWN 0
103#define RESET_KIND_INIT 1
104#define RESET_KIND_SUSPEND 2
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define TG3_DEF_RX_MODE 0
107#define TG3_DEF_TX_MODE 0
108#define TG3_DEF_MSG_ENABLE \
109 (NETIF_MSG_DRV | \
110 NETIF_MSG_PROBE | \
111 NETIF_MSG_LINK | \
112 NETIF_MSG_TIMER | \
113 NETIF_MSG_IFDOWN | \
114 NETIF_MSG_IFUP | \
115 NETIF_MSG_RX_ERR | \
116 NETIF_MSG_TX_ERR)
117
Matt Carlson520b2752011-06-13 13:39:02 +0000118#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* length of time before we decide the hardware is borked,
121 * and dev->tx_timeout() should be called to fix the problem
122 */
Joe Perches63c3a662011-04-26 08:12:10 +0000123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define TG3_TX_TIMEOUT (5 * HZ)
125
126/* hardware minimum and maximum for a single frame's data payload */
127#define TG3_MIN_MTU 60
128#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000129 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/* These numbers seem to be hard coded in the NIC firmware somehow.
132 * You can't change the ring sizes, but you can change where you place
133 * them in the NIC onboard memory.
134 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000135#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000136 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000137 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000139#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000140 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000141 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#define TG3_DEF_RX_JUMBO_RING_PENDING 100
143
144/* Do not place this n-ring entries value into the tp struct itself,
145 * we really want to expose these constants to GCC so that modulo et
146 * al. operations are done with shifts and masks instead of with
147 * hw multiply/modulo instructions. Another solution would be to
148 * replace things like '% foo' with '& (foo - 1)'.
149 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151#define TG3_TX_RING_SIZE 512
152#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
153
Matt Carlson2c49a442010-09-30 10:34:35 +0000154#define TG3_RX_STD_RING_BYTES(tp) \
155 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
156#define TG3_RX_JMB_RING_BYTES(tp) \
157 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
158#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000159 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
161 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
163
Matt Carlson287be122009-08-28 13:58:46 +0000164#define TG3_DMA_BYTE_ENAB 64
165
166#define TG3_RX_STD_DMA_SZ 1536
167#define TG3_RX_JMB_DMA_SZ 9046
168
169#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
170
171#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
172#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Matt Carlson2c49a442010-09-30 10:34:35 +0000174#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
175 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000176
Matt Carlson2c49a442010-09-30 10:34:35 +0000177#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
178 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000179
Matt Carlsond2757fc2010-04-12 06:58:27 +0000180/* Due to a hardware bug, the 5701 can only DMA to memory addresses
181 * that are at least dword aligned when used in PCIX mode. The driver
182 * works around this bug by double copying the packet. This workaround
183 * is built into the normal double copy length check for efficiency.
184 *
185 * However, the double copy is only necessary on those architectures
186 * where unaligned memory accesses are inefficient. For those architectures
187 * where unaligned memory accesses incur little penalty, we can reintegrate
188 * the 5701 in the normal rx path. Doing so saves a device structure
189 * dereference by hardcoding the double copy threshold in place.
190 */
191#define TG3_RX_COPY_THRESHOLD 256
192#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
193 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
194#else
195 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
196#endif
197
Matt Carlson81389f52011-08-31 11:44:49 +0000198#if (NET_IP_ALIGN != 0)
199#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
200#else
Eric Dumazet9205fd92011-11-18 06:47:01 +0000201#define TG3_RX_OFFSET(tp) (NET_SKB_PAD)
Matt Carlson81389f52011-08-31 11:44:49 +0000202#endif
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000205#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlson55086ad2011-12-14 11:09:59 +0000206#define TG3_TX_BD_DMA_MAX_2K 2048
Matt Carlsona4cb4282011-12-14 11:09:58 +0000207#define TG3_TX_BD_DMA_MAX_4K 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Matt Carlsonad829262008-11-21 17:16:16 -0800209#define TG3_RAW_IP_ALIGN 2
210
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000211#define TG3_FW_UPDATE_TIMEOUT_SEC 5
Matt Carlson21f76382012-02-22 12:35:21 +0000212#define TG3_FW_UPDATE_FREQ_SEC (TG3_FW_UPDATE_TIMEOUT_SEC / 2)
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000213
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800214#define FIRMWARE_TG3 "tigon/tg3.bin"
Nithin Sujirc4dab502013-03-06 17:02:34 +0000215#define FIRMWARE_TG357766 "tigon/tg357766.bin"
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800216#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
217#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
218
Bill Pemberton229b1ad2012-12-03 09:22:59 -0500219static char version[] =
Joe Perches05dbe002010-02-17 19:44:19 +0000220 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
223MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
224MODULE_LICENSE("GPL");
225MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800226MODULE_FIRMWARE(FIRMWARE_TG3);
227MODULE_FIRMWARE(FIRMWARE_TG3TSO);
228MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
231module_param(tg3_debug, int, 0);
232MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
233
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000234#define TG3_DRV_DATA_FLAG_10_100_ONLY 0x0001
235#define TG3_DRV_DATA_FLAG_5705_10_100 0x0002
236
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000237static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901),
257 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
258 TG3_DRV_DATA_FLAG_5705_10_100},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2),
260 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
261 TG3_DRV_DATA_FLAG_5705_10_100},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F),
264 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY |
265 TG3_DRV_DATA_FLAG_5705_10_100},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5750)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F),
272 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F),
278 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000286 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5787M,
287 PCI_VENDOR_ID_LENOVO,
288 TG3PCI_SUBDEVICE_ID_LENOVO_5787M),
289 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000291 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F),
292 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700293 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
294 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
295 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
296 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
297 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
298 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
299 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700300 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
301 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700302 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
303 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700304 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700305 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
306 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800307 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
308 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000309 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
310 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000311 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780,
312 PCI_VENDOR_ID_AI, TG3PCI_SUBDEVICE_ID_ACER_57780_A),
313 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
314 {PCI_DEVICE_SUB(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780,
315 PCI_VENDOR_ID_AI, TG3PCI_SUBDEVICE_ID_ACER_57780_B),
316 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson321d32a2008-11-21 17:22:19 -0800317 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
318 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000319 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790),
320 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000321 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000322 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
Michael Chan79d49692012-11-05 14:26:29 +0000323 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717_C)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000324 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000325 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
326 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
327 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
328 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +0000329 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791),
330 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
331 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795),
332 .driver_data = TG3_DRV_DATA_FLAG_10_100_ONLY},
Matt Carlson302b5002010-06-05 17:24:38 +0000333 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000334 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Greg KH02eca3f2012-07-12 15:39:44 +0000335 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57762)},
Matt Carlsond3f677a2013-02-14 14:27:51 +0000336 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57766)},
Michael Chanc86a8562013-01-06 12:51:08 +0000337 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5762)},
338 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5725)},
339 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5727)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700340 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
341 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
342 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
343 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
344 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
345 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
346 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000347 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700348 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
351MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
352
Andreas Mohr50da8592006-08-14 23:54:30 -0700353static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000355} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 { "rx_octets" },
357 { "rx_fragments" },
358 { "rx_ucast_packets" },
359 { "rx_mcast_packets" },
360 { "rx_bcast_packets" },
361 { "rx_fcs_errors" },
362 { "rx_align_errors" },
363 { "rx_xon_pause_rcvd" },
364 { "rx_xoff_pause_rcvd" },
365 { "rx_mac_ctrl_rcvd" },
366 { "rx_xoff_entered" },
367 { "rx_frame_too_long_errors" },
368 { "rx_jabbers" },
369 { "rx_undersize_packets" },
370 { "rx_in_length_errors" },
371 { "rx_out_length_errors" },
372 { "rx_64_or_less_octet_packets" },
373 { "rx_65_to_127_octet_packets" },
374 { "rx_128_to_255_octet_packets" },
375 { "rx_256_to_511_octet_packets" },
376 { "rx_512_to_1023_octet_packets" },
377 { "rx_1024_to_1522_octet_packets" },
378 { "rx_1523_to_2047_octet_packets" },
379 { "rx_2048_to_4095_octet_packets" },
380 { "rx_4096_to_8191_octet_packets" },
381 { "rx_8192_to_9022_octet_packets" },
382
383 { "tx_octets" },
384 { "tx_collisions" },
385
386 { "tx_xon_sent" },
387 { "tx_xoff_sent" },
388 { "tx_flow_control" },
389 { "tx_mac_errors" },
390 { "tx_single_collisions" },
391 { "tx_mult_collisions" },
392 { "tx_deferred" },
393 { "tx_excessive_collisions" },
394 { "tx_late_collisions" },
395 { "tx_collide_2times" },
396 { "tx_collide_3times" },
397 { "tx_collide_4times" },
398 { "tx_collide_5times" },
399 { "tx_collide_6times" },
400 { "tx_collide_7times" },
401 { "tx_collide_8times" },
402 { "tx_collide_9times" },
403 { "tx_collide_10times" },
404 { "tx_collide_11times" },
405 { "tx_collide_12times" },
406 { "tx_collide_13times" },
407 { "tx_collide_14times" },
408 { "tx_collide_15times" },
409 { "tx_ucast_packets" },
410 { "tx_mcast_packets" },
411 { "tx_bcast_packets" },
412 { "tx_carrier_sense_errors" },
413 { "tx_discards" },
414 { "tx_errors" },
415
416 { "dma_writeq_full" },
417 { "dma_write_prioq_full" },
418 { "rxbds_empty" },
419 { "rx_discards" },
420 { "rx_errors" },
421 { "rx_threshold_hit" },
422
423 { "dma_readq_full" },
424 { "dma_read_prioq_full" },
425 { "tx_comp_queue_full" },
426
427 { "ring_set_send_prod_index" },
428 { "ring_status_update" },
429 { "nic_irqs" },
430 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000431 { "nic_tx_threshold_hit" },
432
433 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434};
435
Matt Carlson48fa55a2011-04-13 11:05:06 +0000436#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +0000437#define TG3_NVRAM_TEST 0
438#define TG3_LINK_TEST 1
439#define TG3_REGISTER_TEST 2
440#define TG3_MEMORY_TEST 3
441#define TG3_MAC_LOOPB_TEST 4
442#define TG3_PHY_LOOPB_TEST 5
443#define TG3_EXT_LOOPB_TEST 6
444#define TG3_INTERRUPT_TEST 7
Matt Carlson48fa55a2011-04-13 11:05:06 +0000445
446
Andreas Mohr50da8592006-08-14 23:54:30 -0700447static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700448 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000449} ethtool_test_keys[] = {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +0000450 [TG3_NVRAM_TEST] = { "nvram test (online) " },
451 [TG3_LINK_TEST] = { "link test (online) " },
452 [TG3_REGISTER_TEST] = { "register test (offline)" },
453 [TG3_MEMORY_TEST] = { "memory test (offline)" },
454 [TG3_MAC_LOOPB_TEST] = { "mac loopback test (offline)" },
455 [TG3_PHY_LOOPB_TEST] = { "phy loopback test (offline)" },
456 [TG3_EXT_LOOPB_TEST] = { "ext loopback test (offline)" },
457 [TG3_INTERRUPT_TEST] = { "interrupt test (offline)" },
Michael Chan4cafd3f2005-05-29 14:56:34 -0700458};
459
Matt Carlson48fa55a2011-04-13 11:05:06 +0000460#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
461
462
Michael Chanb401e9e2005-12-19 16:27:04 -0800463static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
464{
465 writel(val, tp->regs + off);
466}
467
468static u32 tg3_read32(struct tg3 *tp, u32 off)
469{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000470 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800471}
472
Matt Carlson0d3031d2007-10-10 18:02:43 -0700473static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
474{
475 writel(val, tp->aperegs + off);
476}
477
478static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
479{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000480 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
484{
Michael Chan68929142005-08-09 20:17:14 -0700485 unsigned long flags;
486
487 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700488 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
489 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700490 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700491}
492
493static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
494{
495 writel(val, tp->regs + off);
496 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Michael Chan68929142005-08-09 20:17:14 -0700499static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
500{
501 unsigned long flags;
502 u32 val;
503
504 spin_lock_irqsave(&tp->indirect_lock, flags);
505 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
506 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
507 spin_unlock_irqrestore(&tp->indirect_lock, flags);
508 return val;
509}
510
511static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
512{
513 unsigned long flags;
514
515 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
516 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
517 TG3_64BIT_REG_LOW, val);
518 return;
519 }
Matt Carlson66711e62009-11-13 13:03:49 +0000520 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700521 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
522 TG3_64BIT_REG_LOW, val);
523 return;
524 }
525
526 spin_lock_irqsave(&tp->indirect_lock, flags);
527 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
528 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
529 spin_unlock_irqrestore(&tp->indirect_lock, flags);
530
531 /* In indirect mode when disabling interrupts, we also need
532 * to clear the interrupt bit in the GRC local ctrl register.
533 */
534 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
535 (val == 0x1)) {
536 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
537 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
538 }
539}
540
541static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
542{
543 unsigned long flags;
544 u32 val;
545
546 spin_lock_irqsave(&tp->indirect_lock, flags);
547 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
548 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
549 spin_unlock_irqrestore(&tp->indirect_lock, flags);
550 return val;
551}
552
Michael Chanb401e9e2005-12-19 16:27:04 -0800553/* usec_wait specifies the wait time in usec when writing to certain registers
554 * where it is unsafe to read back the register without some delay.
555 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
556 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
557 */
558static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Joe Perches63c3a662011-04-26 08:12:10 +0000560 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800561 /* Non-posted methods */
562 tp->write32(tp, off, val);
563 else {
564 /* Posted method */
565 tg3_write32(tp, off, val);
566 if (usec_wait)
567 udelay(usec_wait);
568 tp->read32(tp, off);
569 }
570 /* Wait again after the read for the posted method to guarantee that
571 * the wait time is met.
572 */
573 if (usec_wait)
574 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Michael Chan09ee9292005-08-09 20:17:00 -0700577static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
578{
579 tp->write32_mbox(tp, off, val);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000580 if (tg3_flag(tp, FLUSH_POSTED_WRITES) ||
581 (!tg3_flag(tp, MBOX_WRITE_REORDER) &&
582 !tg3_flag(tp, ICH_WORKAROUND)))
Michael Chan68929142005-08-09 20:17:14 -0700583 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700584}
585
Michael Chan20094932005-08-09 20:16:32 -0700586static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 void __iomem *mbox = tp->regs + off;
589 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000590 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 writel(val, mbox);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +0000592 if (tg3_flag(tp, MBOX_WRITE_REORDER) ||
593 tg3_flag(tp, FLUSH_POSTED_WRITES))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 readl(mbox);
595}
596
Michael Chanb5d37722006-09-27 16:06:21 -0700597static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
598{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000599 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700600}
601
602static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
603{
604 writel(val, tp->regs + off + GRCMBOX_BASE);
605}
606
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000607#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700608#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000609#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
610#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
611#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700612
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000613#define tw32(reg, val) tp->write32(tp, reg, val)
614#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
615#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
616#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
619{
Michael Chan68929142005-08-09 20:17:14 -0700620 unsigned long flags;
621
Joe Perches41535772013-02-16 11:20:04 +0000622 if (tg3_asic_rev(tp) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700623 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
624 return;
625
Michael Chan68929142005-08-09 20:17:14 -0700626 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000627 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700628 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
629 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Michael Chanbbadf502006-04-06 21:46:34 -0700631 /* Always leave this as zero. */
632 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
633 } else {
634 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
635 tw32_f(TG3PCI_MEM_WIN_DATA, val);
636
637 /* Always leave this as zero. */
638 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
639 }
Michael Chan68929142005-08-09 20:17:14 -0700640 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
644{
Michael Chan68929142005-08-09 20:17:14 -0700645 unsigned long flags;
646
Joe Perches41535772013-02-16 11:20:04 +0000647 if (tg3_asic_rev(tp) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700648 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
649 *val = 0;
650 return;
651 }
652
Michael Chan68929142005-08-09 20:17:14 -0700653 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000654 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700655 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
656 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Michael Chanbbadf502006-04-06 21:46:34 -0700658 /* Always leave this as zero. */
659 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
660 } else {
661 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
662 *val = tr32(TG3PCI_MEM_WIN_DATA);
663
664 /* Always leave this as zero. */
665 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
666 }
Michael Chan68929142005-08-09 20:17:14 -0700667 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Matt Carlson0d3031d2007-10-10 18:02:43 -0700670static void tg3_ape_lock_init(struct tg3 *tp)
671{
672 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000673 u32 regbase, bit;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000674
Joe Perches41535772013-02-16 11:20:04 +0000675 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000676 regbase = TG3_APE_LOCK_GRANT;
677 else
678 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700679
680 /* Make sure the driver hasn't any stale locks. */
Matt Carlson78f94dc2011-11-04 09:14:58 +0000681 for (i = TG3_APE_LOCK_PHY0; i <= TG3_APE_LOCK_GPIO; i++) {
682 switch (i) {
683 case TG3_APE_LOCK_PHY0:
684 case TG3_APE_LOCK_PHY1:
685 case TG3_APE_LOCK_PHY2:
686 case TG3_APE_LOCK_PHY3:
687 bit = APE_LOCK_GRANT_DRIVER;
688 break;
689 default:
690 if (!tp->pci_fn)
691 bit = APE_LOCK_GRANT_DRIVER;
692 else
693 bit = 1 << tp->pci_fn;
694 }
695 tg3_ape_write32(tp, regbase + 4 * i, bit);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000696 }
697
Matt Carlson0d3031d2007-10-10 18:02:43 -0700698}
699
700static int tg3_ape_lock(struct tg3 *tp, int locknum)
701{
702 int i, off;
703 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000704 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700705
Joe Perches63c3a662011-04-26 08:12:10 +0000706 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700707 return 0;
708
709 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000710 case TG3_APE_LOCK_GPIO:
Joe Perches41535772013-02-16 11:20:04 +0000711 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000712 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000713 case TG3_APE_LOCK_GRC:
714 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000715 if (!tp->pci_fn)
716 bit = APE_LOCK_REQ_DRIVER;
717 else
718 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000719 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000720 case TG3_APE_LOCK_PHY0:
721 case TG3_APE_LOCK_PHY1:
722 case TG3_APE_LOCK_PHY2:
723 case TG3_APE_LOCK_PHY3:
724 bit = APE_LOCK_REQ_DRIVER;
725 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000726 default:
727 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700728 }
729
Joe Perches41535772013-02-16 11:20:04 +0000730 if (tg3_asic_rev(tp) == ASIC_REV_5761) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000731 req = TG3_APE_LOCK_REQ;
732 gnt = TG3_APE_LOCK_GRANT;
733 } else {
734 req = TG3_APE_PER_LOCK_REQ;
735 gnt = TG3_APE_PER_LOCK_GRANT;
736 }
737
Matt Carlson0d3031d2007-10-10 18:02:43 -0700738 off = 4 * locknum;
739
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000740 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700741
742 /* Wait for up to 1 millisecond to acquire lock. */
743 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000744 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000745 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700746 break;
747 udelay(10);
748 }
749
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000750 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700751 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000752 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700753 ret = -EBUSY;
754 }
755
756 return ret;
757}
758
759static void tg3_ape_unlock(struct tg3 *tp, int locknum)
760{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000761 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700762
Joe Perches63c3a662011-04-26 08:12:10 +0000763 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700764 return;
765
766 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000767 case TG3_APE_LOCK_GPIO:
Joe Perches41535772013-02-16 11:20:04 +0000768 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000769 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000770 case TG3_APE_LOCK_GRC:
771 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000772 if (!tp->pci_fn)
773 bit = APE_LOCK_GRANT_DRIVER;
774 else
775 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000776 break;
Michael Chan8151ad52012-07-29 19:15:41 +0000777 case TG3_APE_LOCK_PHY0:
778 case TG3_APE_LOCK_PHY1:
779 case TG3_APE_LOCK_PHY2:
780 case TG3_APE_LOCK_PHY3:
781 bit = APE_LOCK_GRANT_DRIVER;
782 break;
Matt Carlson33f401a2010-04-05 10:19:27 +0000783 default:
784 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700785 }
786
Joe Perches41535772013-02-16 11:20:04 +0000787 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000788 gnt = TG3_APE_LOCK_GRANT;
789 else
790 gnt = TG3_APE_PER_LOCK_GRANT;
791
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000792 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700793}
794
Matt Carlsonb65a3722012-07-16 16:24:00 +0000795static int tg3_ape_event_lock(struct tg3 *tp, u32 timeout_us)
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000796{
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000797 u32 apedata;
798
Matt Carlsonb65a3722012-07-16 16:24:00 +0000799 while (timeout_us) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000800 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
Matt Carlsonb65a3722012-07-16 16:24:00 +0000801 return -EBUSY;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000802
803 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000804 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
805 break;
806
Matt Carlsonb65a3722012-07-16 16:24:00 +0000807 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
808
809 udelay(10);
810 timeout_us -= (timeout_us > 10) ? 10 : timeout_us;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000811 }
812
Matt Carlsonb65a3722012-07-16 16:24:00 +0000813 return timeout_us ? 0 : -EBUSY;
814}
815
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000816static int tg3_ape_wait_for_event(struct tg3 *tp, u32 timeout_us)
817{
818 u32 i, apedata;
819
820 for (i = 0; i < timeout_us / 10; i++) {
821 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
822
823 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
824 break;
825
826 udelay(10);
827 }
828
829 return i == timeout_us / 10;
830}
831
Michael Chan86449942012-10-02 20:31:14 -0700832static int tg3_ape_scratchpad_read(struct tg3 *tp, u32 *data, u32 base_off,
833 u32 len)
Matt Carlsoncf8d55a2012-07-16 16:24:01 +0000834{
835 int err;
836 u32 i, bufoff, msgoff, maxlen, apedata;
837
838 if (!tg3_flag(tp, APE_HAS_NCSI))
839 return 0;
840
841 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
842 if (apedata != APE_SEG_SIG_MAGIC)
843 return -ENODEV;
844
845 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
846 if (!(apedata & APE_FW_STATUS_READY))
847 return -EAGAIN;
848
849 bufoff = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_OFF) +
850 TG3_APE_SHMEM_BASE;
851 msgoff = bufoff + 2 * sizeof(u32);
852 maxlen = tg3_ape_read32(tp, TG3_APE_SEG_MSG_BUF_LEN);
853
854 while (len) {
855 u32 length;
856
857 /* Cap xfer sizes to scratchpad limits. */
858 length = (len > maxlen) ? maxlen : len;
859 len -= length;
860
861 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
862 if (!(apedata & APE_FW_STATUS_READY))
863 return -EAGAIN;
864
865 /* Wait for up to 1 msec for APE to service previous event. */
866 err = tg3_ape_event_lock(tp, 1000);
867 if (err)
868 return err;
869
870 apedata = APE_EVENT_STATUS_DRIVER_EVNT |
871 APE_EVENT_STATUS_SCRTCHPD_READ |
872 APE_EVENT_STATUS_EVENT_PENDING;
873 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS, apedata);
874
875 tg3_ape_write32(tp, bufoff, base_off);
876 tg3_ape_write32(tp, bufoff + sizeof(u32), length);
877
878 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
879 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
880
881 base_off += length;
882
883 if (tg3_ape_wait_for_event(tp, 30000))
884 return -EAGAIN;
885
886 for (i = 0; length; i += 4, length -= 4) {
887 u32 val = tg3_ape_read32(tp, msgoff + i);
888 memcpy(data, &val, sizeof(u32));
889 data++;
890 }
891 }
892
893 return 0;
894}
895
Matt Carlsonb65a3722012-07-16 16:24:00 +0000896static int tg3_ape_send_event(struct tg3 *tp, u32 event)
897{
898 int err;
899 u32 apedata;
900
901 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
902 if (apedata != APE_SEG_SIG_MAGIC)
903 return -EAGAIN;
904
905 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
906 if (!(apedata & APE_FW_STATUS_READY))
907 return -EAGAIN;
908
909 /* Wait for up to 1 millisecond for APE to service previous event. */
910 err = tg3_ape_event_lock(tp, 1000);
911 if (err)
912 return err;
913
914 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
915 event | APE_EVENT_STATUS_EVENT_PENDING);
916
917 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
918 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
919
920 return 0;
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000921}
922
923static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
924{
925 u32 event;
926 u32 apedata;
927
928 if (!tg3_flag(tp, ENABLE_APE))
929 return;
930
931 switch (kind) {
932 case RESET_KIND_INIT:
933 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
934 APE_HOST_SEG_SIG_MAGIC);
935 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
936 APE_HOST_SEG_LEN_MAGIC);
937 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
938 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
939 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
940 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
941 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
942 APE_HOST_BEHAV_NO_PHYLOCK);
943 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
944 TG3_APE_HOST_DRVR_STATE_START);
945
946 event = APE_EVENT_STATUS_STATE_START;
947 break;
948 case RESET_KIND_SHUTDOWN:
949 /* With the interface we are currently using,
950 * APE does not track driver state. Wiping
951 * out the HOST SEGMENT SIGNATURE forces
952 * the APE to assume OS absent status.
953 */
954 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
955
956 if (device_may_wakeup(&tp->pdev->dev) &&
957 tg3_flag(tp, WOL_ENABLE)) {
958 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
959 TG3_APE_HOST_WOL_SPEED_AUTO);
960 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
961 } else
962 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
963
964 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
965
966 event = APE_EVENT_STATUS_STATE_UNLOAD;
967 break;
968 case RESET_KIND_SUSPEND:
969 event = APE_EVENT_STATUS_STATE_SUSPEND;
970 break;
971 default:
972 return;
973 }
974
975 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
976
977 tg3_ape_send_event(tp, event);
978}
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980static void tg3_disable_ints(struct tg3 *tp)
981{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000982 int i;
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 tw32(TG3PCI_MISC_HOST_CTRL,
985 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000986 for (i = 0; i < tp->irq_max; i++)
987 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990static void tg3_enable_ints(struct tg3 *tp)
991{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000992 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000993
Michael Chanbbe832c2005-06-24 20:20:04 -0700994 tp->irq_sync = 0;
995 wmb();
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 tw32(TG3PCI_MISC_HOST_CTRL,
998 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000999
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001000 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001001 for (i = 0; i < tp->irq_cnt; i++) {
1002 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001003
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001004 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +00001005 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001006 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
1007
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001008 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +00001009 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +00001010
1011 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +00001012 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +00001013 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
1014 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
1015 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +00001016 tw32(HOSTCC_MODE, tp->coal_now);
1017
1018 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Matt Carlson17375d22009-08-28 14:02:18 +00001021static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -07001022{
Matt Carlson17375d22009-08-28 14:02:18 +00001023 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00001024 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -07001025 unsigned int work_exists = 0;
1026
1027 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00001028 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -07001029 if (sblk->status & SD_STATUS_LINK_CHG)
1030 work_exists = 1;
1031 }
Matt Carlsonf891ea12012-04-24 13:37:01 +00001032
1033 /* check for TX work to do */
1034 if (sblk->idx[0].tx_consumer != tnapi->tx_cons)
1035 work_exists = 1;
1036
1037 /* check for RX work to do */
1038 if (tnapi->rx_rcb_prod_idx &&
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00001039 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -07001040 work_exists = 1;
1041
1042 return work_exists;
1043}
1044
Matt Carlson17375d22009-08-28 14:02:18 +00001045/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -07001046 * similar to tg3_enable_ints, but it accurately determines whether there
1047 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001048 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 */
Matt Carlson17375d22009-08-28 14:02:18 +00001050static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Matt Carlson17375d22009-08-28 14:02:18 +00001052 struct tg3 *tp = tnapi->tp;
1053
Matt Carlson898a56f2009-08-28 14:02:40 +00001054 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 mmiowb();
1056
David S. Millerfac9b832005-05-18 22:46:34 -07001057 /* When doing tagged status, this work check is unnecessary.
1058 * The last_tag we write above tells the chip which piece of
1059 * work we've completed.
1060 */
Joe Perches63c3a662011-04-26 08:12:10 +00001061 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -07001062 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00001063 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066static void tg3_switch_clocks(struct tg3 *tp)
1067{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001068 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 u32 orig_clock_ctrl;
1070
Joe Perches63c3a662011-04-26 08:12:10 +00001071 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07001072 return;
1073
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00001074 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 orig_clock_ctrl = clock_ctrl;
1077 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
1078 CLOCK_CTRL_CLKRUN_OENABLE |
1079 0x1f);
1080 tp->pci_clock_ctrl = clock_ctrl;
1081
Joe Perches63c3a662011-04-26 08:12:10 +00001082 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001084 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1085 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -08001088 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1089 clock_ctrl |
1090 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
1091 40);
1092 tw32_wait_f(TG3PCI_CLOCK_CTRL,
1093 clock_ctrl | (CLOCK_CTRL_ALTCLK),
1094 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Michael Chanb401e9e2005-12-19 16:27:04 -08001096 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
1099#define PHY_BUSY_LOOPS 5000
1100
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001101static int __tg3_readphy(struct tg3 *tp, unsigned int phy_addr, int reg,
1102 u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 u32 frame_val;
1105 unsigned int loops;
1106 int ret;
1107
1108 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1109 tw32_f(MAC_MI_MODE,
1110 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1111 udelay(80);
1112 }
1113
Michael Chan8151ad52012-07-29 19:15:41 +00001114 tg3_ape_lock(tp, tp->phy_ape_lock);
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 *val = 0x0;
1117
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001118 frame_val = ((phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 MI_COM_PHY_ADDR_MASK);
1120 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1121 MI_COM_REG_ADDR_MASK);
1122 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 tw32_f(MAC_MI_COM, frame_val);
1125
1126 loops = PHY_BUSY_LOOPS;
1127 while (loops != 0) {
1128 udelay(10);
1129 frame_val = tr32(MAC_MI_COM);
1130
1131 if ((frame_val & MI_COM_BUSY) == 0) {
1132 udelay(5);
1133 frame_val = tr32(MAC_MI_COM);
1134 break;
1135 }
1136 loops -= 1;
1137 }
1138
1139 ret = -EBUSY;
1140 if (loops != 0) {
1141 *val = frame_val & MI_COM_DATA_MASK;
1142 ret = 0;
1143 }
1144
1145 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1146 tw32_f(MAC_MI_MODE, tp->mi_mode);
1147 udelay(80);
1148 }
1149
Michael Chan8151ad52012-07-29 19:15:41 +00001150 tg3_ape_unlock(tp, tp->phy_ape_lock);
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return ret;
1153}
1154
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001155static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
1156{
1157 return __tg3_readphy(tp, tp->phy_addr, reg, val);
1158}
1159
1160static int __tg3_writephy(struct tg3 *tp, unsigned int phy_addr, int reg,
1161 u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
1163 u32 frame_val;
1164 unsigned int loops;
1165 int ret;
1166
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001167 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +00001168 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -07001169 return 0;
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1172 tw32_f(MAC_MI_MODE,
1173 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1174 udelay(80);
1175 }
1176
Michael Chan8151ad52012-07-29 19:15:41 +00001177 tg3_ape_lock(tp, tp->phy_ape_lock);
1178
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001179 frame_val = ((phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 MI_COM_PHY_ADDR_MASK);
1181 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1182 MI_COM_REG_ADDR_MASK);
1183 frame_val |= (val & MI_COM_DATA_MASK);
1184 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 tw32_f(MAC_MI_COM, frame_val);
1187
1188 loops = PHY_BUSY_LOOPS;
1189 while (loops != 0) {
1190 udelay(10);
1191 frame_val = tr32(MAC_MI_COM);
1192 if ((frame_val & MI_COM_BUSY) == 0) {
1193 udelay(5);
1194 frame_val = tr32(MAC_MI_COM);
1195 break;
1196 }
1197 loops -= 1;
1198 }
1199
1200 ret = -EBUSY;
1201 if (loops != 0)
1202 ret = 0;
1203
1204 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1205 tw32_f(MAC_MI_MODE, tp->mi_mode);
1206 udelay(80);
1207 }
1208
Michael Chan8151ad52012-07-29 19:15:41 +00001209 tg3_ape_unlock(tp, tp->phy_ape_lock);
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 return ret;
1212}
1213
Hauke Mehrtens5c358042013-02-07 05:37:38 +00001214static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
1215{
1216 return __tg3_writephy(tp, tp->phy_addr, reg, val);
1217}
1218
Matt Carlsonb0988c12011-04-20 07:57:39 +00001219static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
1220{
1221 int err;
1222
1223 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1224 if (err)
1225 goto done;
1226
1227 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1228 if (err)
1229 goto done;
1230
1231 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1232 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1233 if (err)
1234 goto done;
1235
1236 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
1237
1238done:
1239 return err;
1240}
1241
1242static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
1243{
1244 int err;
1245
1246 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1247 if (err)
1248 goto done;
1249
1250 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1251 if (err)
1252 goto done;
1253
1254 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1255 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1256 if (err)
1257 goto done;
1258
1259 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
1260
1261done:
1262 return err;
1263}
1264
1265static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
1266{
1267 int err;
1268
1269 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1270 if (!err)
1271 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
1272
1273 return err;
1274}
1275
1276static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1277{
1278 int err;
1279
1280 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1281 if (!err)
1282 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1283
1284 return err;
1285}
1286
Matt Carlson15ee95c2011-04-20 07:57:40 +00001287static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1288{
1289 int err;
1290
1291 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1292 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1293 MII_TG3_AUXCTL_SHDWSEL_MISC);
1294 if (!err)
1295 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1296
1297 return err;
1298}
1299
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001300static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1301{
1302 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1303 set |= MII_TG3_AUXCTL_MISC_WREN;
1304
1305 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1306}
1307
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001308static int tg3_phy_toggle_auxctl_smdsp(struct tg3 *tp, bool enable)
1309{
1310 u32 val;
1311 int err;
Matt Carlson1d36ba42011-04-20 07:57:42 +00001312
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00001313 err = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
1314
1315 if (err)
1316 return err;
1317 if (enable)
1318
1319 val |= MII_TG3_AUXCTL_ACTL_SMDSP_ENA;
1320 else
1321 val &= ~MII_TG3_AUXCTL_ACTL_SMDSP_ENA;
1322
1323 err = tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
1324 val | MII_TG3_AUXCTL_ACTL_TX_6DB);
1325
1326 return err;
1327}
Matt Carlson1d36ba42011-04-20 07:57:42 +00001328
Matt Carlson95e28692008-05-25 23:44:14 -07001329static int tg3_bmcr_reset(struct tg3 *tp)
1330{
1331 u32 phy_control;
1332 int limit, err;
1333
1334 /* OK, reset it, and poll the BMCR_RESET bit until it
1335 * clears or we time out.
1336 */
1337 phy_control = BMCR_RESET;
1338 err = tg3_writephy(tp, MII_BMCR, phy_control);
1339 if (err != 0)
1340 return -EBUSY;
1341
1342 limit = 5000;
1343 while (limit--) {
1344 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1345 if (err != 0)
1346 return -EBUSY;
1347
1348 if ((phy_control & BMCR_RESET) == 0) {
1349 udelay(40);
1350 break;
1351 }
1352 udelay(10);
1353 }
Roel Kluind4675b52009-02-12 16:33:27 -08001354 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001355 return -EBUSY;
1356
1357 return 0;
1358}
1359
Matt Carlson158d7ab2008-05-29 01:37:54 -07001360static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1361{
Francois Romieu3d165432009-01-19 16:56:50 -08001362 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001363 u32 val;
1364
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001365 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001366
1367 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001368 val = -EIO;
1369
1370 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001371
1372 return val;
1373}
1374
1375static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1376{
Francois Romieu3d165432009-01-19 16:56:50 -08001377 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001378 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001379
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001380 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001381
1382 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001383 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001384
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001385 spin_unlock_bh(&tp->lock);
1386
1387 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001388}
1389
1390static int tg3_mdio_reset(struct mii_bus *bp)
1391{
1392 return 0;
1393}
1394
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001395static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001396{
1397 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001398 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001399
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001400 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001401 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001402 case PHY_ID_BCM50610:
1403 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001404 val = MAC_PHYCFG2_50610_LED_MODES;
1405 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001406 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001407 val = MAC_PHYCFG2_AC131_LED_MODES;
1408 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001409 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001410 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1411 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001412 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001413 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1414 break;
1415 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001416 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001417 }
1418
1419 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1420 tw32(MAC_PHYCFG2, val);
1421
1422 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001423 val &= ~(MAC_PHYCFG1_RGMII_INT |
1424 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1425 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001426 tw32(MAC_PHYCFG1, val);
1427
1428 return;
1429 }
1430
Joe Perches63c3a662011-04-26 08:12:10 +00001431 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001432 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1433 MAC_PHYCFG2_FMODE_MASK_MASK |
1434 MAC_PHYCFG2_GMODE_MASK_MASK |
1435 MAC_PHYCFG2_ACT_MASK_MASK |
1436 MAC_PHYCFG2_QUAL_MASK_MASK |
1437 MAC_PHYCFG2_INBAND_ENABLE;
1438
1439 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001440
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001441 val = tr32(MAC_PHYCFG1);
1442 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1443 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001444 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1445 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001446 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001447 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001448 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1449 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001450 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1451 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1452 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001453
Matt Carlsona9daf362008-05-25 23:49:44 -07001454 val = tr32(MAC_EXT_RGMII_MODE);
1455 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1456 MAC_RGMII_MODE_RX_QUALITY |
1457 MAC_RGMII_MODE_RX_ACTIVITY |
1458 MAC_RGMII_MODE_RX_ENG_DET |
1459 MAC_RGMII_MODE_TX_ENABLE |
1460 MAC_RGMII_MODE_TX_LOWPWR |
1461 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001462 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1463 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001464 val |= MAC_RGMII_MODE_RX_INT_B |
1465 MAC_RGMII_MODE_RX_QUALITY |
1466 MAC_RGMII_MODE_RX_ACTIVITY |
1467 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001468 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001469 val |= MAC_RGMII_MODE_TX_ENABLE |
1470 MAC_RGMII_MODE_TX_LOWPWR |
1471 MAC_RGMII_MODE_TX_RESET;
1472 }
1473 tw32(MAC_EXT_RGMII_MODE, val);
1474}
1475
Matt Carlson158d7ab2008-05-29 01:37:54 -07001476static void tg3_mdio_start(struct tg3 *tp)
1477{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001478 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1479 tw32_f(MAC_MI_MODE, tp->mi_mode);
1480 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001481
Joe Perches63c3a662011-04-26 08:12:10 +00001482 if (tg3_flag(tp, MDIOBUS_INITED) &&
Joe Perches41535772013-02-16 11:20:04 +00001483 tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson9ea48182010-02-17 15:17:01 +00001484 tg3_mdio_config_5785(tp);
1485}
1486
1487static int tg3_mdio_init(struct tg3 *tp)
1488{
1489 int i;
1490 u32 reg;
1491 struct phy_device *phydev;
1492
Joe Perches63c3a662011-04-26 08:12:10 +00001493 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001494 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001495
Matt Carlson69f11c92011-07-13 09:27:30 +00001496 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001497
Joe Perches41535772013-02-16 11:20:04 +00001498 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0)
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001499 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1500 else
1501 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1502 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001503 if (is_serdes)
1504 tp->phy_addr += 7;
1505 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001506 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001507
Matt Carlson158d7ab2008-05-29 01:37:54 -07001508 tg3_mdio_start(tp);
1509
Joe Perches63c3a662011-04-26 08:12:10 +00001510 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001511 return 0;
1512
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001513 tp->mdio_bus = mdiobus_alloc();
1514 if (tp->mdio_bus == NULL)
1515 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001516
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001517 tp->mdio_bus->name = "tg3 mdio bus";
1518 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001519 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001520 tp->mdio_bus->priv = tp;
1521 tp->mdio_bus->parent = &tp->pdev->dev;
1522 tp->mdio_bus->read = &tg3_mdio_read;
1523 tp->mdio_bus->write = &tg3_mdio_write;
1524 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001525 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001526 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001527
1528 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001529 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001530
1531 /* The bus registration will look for all the PHYs on the mdio bus.
1532 * Unfortunately, it does not ensure the PHY is powered up before
1533 * accessing the PHY ID registers. A chip reset is the
1534 * quickest way to bring the device back to an operational state..
1535 */
1536 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1537 tg3_bmcr_reset(tp);
1538
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001539 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001540 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001541 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001542 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001543 return i;
1544 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001545
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001546 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001547
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001548 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001549 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001550 mdiobus_unregister(tp->mdio_bus);
1551 mdiobus_free(tp->mdio_bus);
1552 return -ENODEV;
1553 }
1554
1555 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001556 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001557 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001558 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001559 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001560 case PHY_ID_BCM50610:
1561 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001562 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001563 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001564 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001565 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001566 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001567 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001568 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001569 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001570 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001571 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001572 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001573 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001574 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001575 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001576 case PHY_ID_RTL8201E:
1577 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001578 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001579 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001580 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001581 break;
1582 }
1583
Joe Perches63c3a662011-04-26 08:12:10 +00001584 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001585
Joe Perches41535772013-02-16 11:20:04 +00001586 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001587 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001588
1589 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001590}
1591
1592static void tg3_mdio_fini(struct tg3 *tp)
1593{
Joe Perches63c3a662011-04-26 08:12:10 +00001594 if (tg3_flag(tp, MDIOBUS_INITED)) {
1595 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001596 mdiobus_unregister(tp->mdio_bus);
1597 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001598 }
1599}
1600
Matt Carlson95e28692008-05-25 23:44:14 -07001601/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001602static inline void tg3_generate_fw_event(struct tg3 *tp)
1603{
1604 u32 val;
1605
1606 val = tr32(GRC_RX_CPU_EVENT);
1607 val |= GRC_RX_CPU_DRIVER_EVENT;
1608 tw32_f(GRC_RX_CPU_EVENT, val);
1609
1610 tp->last_event_jiffies = jiffies;
1611}
1612
1613#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1614
1615/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001616static void tg3_wait_for_event_ack(struct tg3 *tp)
1617{
1618 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001619 unsigned int delay_cnt;
1620 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001621
Matt Carlson4ba526c2008-08-15 14:10:04 -07001622 /* If enough time has passed, no wait is necessary. */
1623 time_remain = (long)(tp->last_event_jiffies + 1 +
1624 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1625 (long)jiffies;
1626 if (time_remain < 0)
1627 return;
1628
1629 /* Check if we can shorten the wait time. */
1630 delay_cnt = jiffies_to_usecs(time_remain);
1631 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1632 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1633 delay_cnt = (delay_cnt >> 3) + 1;
1634
1635 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001636 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1637 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001638 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001639 }
1640}
1641
1642/* tp->lock is held. */
Matt Carlsonb28f3892012-02-13 15:20:12 +00001643static void tg3_phy_gather_ump_data(struct tg3 *tp, u32 *data)
Matt Carlson95e28692008-05-25 23:44:14 -07001644{
Matt Carlsonb28f3892012-02-13 15:20:12 +00001645 u32 reg, val;
Matt Carlson95e28692008-05-25 23:44:14 -07001646
1647 val = 0;
1648 if (!tg3_readphy(tp, MII_BMCR, &reg))
1649 val = reg << 16;
1650 if (!tg3_readphy(tp, MII_BMSR, &reg))
1651 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001652 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001653
1654 val = 0;
1655 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1656 val = reg << 16;
1657 if (!tg3_readphy(tp, MII_LPA, &reg))
1658 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001659 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001660
1661 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001662 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001663 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1664 val = reg << 16;
1665 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1666 val |= (reg & 0xffff);
1667 }
Matt Carlsonb28f3892012-02-13 15:20:12 +00001668 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001669
1670 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1671 val = reg << 16;
1672 else
1673 val = 0;
Matt Carlsonb28f3892012-02-13 15:20:12 +00001674 *data++ = val;
1675}
1676
1677/* tp->lock is held. */
1678static void tg3_ump_link_report(struct tg3 *tp)
1679{
1680 u32 data[4];
1681
1682 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
1683 return;
1684
1685 tg3_phy_gather_ump_data(tp, data);
1686
1687 tg3_wait_for_event_ack(tp);
1688
1689 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1690 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1691 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x0, data[0]);
1692 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x4, data[1]);
1693 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x8, data[2]);
1694 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0xc, data[3]);
Matt Carlson95e28692008-05-25 23:44:14 -07001695
Matt Carlson4ba526c2008-08-15 14:10:04 -07001696 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001697}
1698
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001699/* tp->lock is held. */
1700static void tg3_stop_fw(struct tg3 *tp)
1701{
1702 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1703 /* Wait for RX cpu to ACK the previous event. */
1704 tg3_wait_for_event_ack(tp);
1705
1706 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1707
1708 tg3_generate_fw_event(tp);
1709
1710 /* Wait for RX cpu to ACK this event. */
1711 tg3_wait_for_event_ack(tp);
1712 }
1713}
1714
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001715/* tp->lock is held. */
1716static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1717{
1718 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1719 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1720
1721 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1722 switch (kind) {
1723 case RESET_KIND_INIT:
1724 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1725 DRV_STATE_START);
1726 break;
1727
1728 case RESET_KIND_SHUTDOWN:
1729 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1730 DRV_STATE_UNLOAD);
1731 break;
1732
1733 case RESET_KIND_SUSPEND:
1734 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1735 DRV_STATE_SUSPEND);
1736 break;
1737
1738 default:
1739 break;
1740 }
1741 }
1742
1743 if (kind == RESET_KIND_INIT ||
1744 kind == RESET_KIND_SUSPEND)
1745 tg3_ape_driver_state_change(tp, kind);
1746}
1747
1748/* tp->lock is held. */
1749static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1750{
1751 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1752 switch (kind) {
1753 case RESET_KIND_INIT:
1754 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1755 DRV_STATE_START_DONE);
1756 break;
1757
1758 case RESET_KIND_SHUTDOWN:
1759 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1760 DRV_STATE_UNLOAD_DONE);
1761 break;
1762
1763 default:
1764 break;
1765 }
1766 }
1767
1768 if (kind == RESET_KIND_SHUTDOWN)
1769 tg3_ape_driver_state_change(tp, kind);
1770}
1771
1772/* tp->lock is held. */
1773static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1774{
1775 if (tg3_flag(tp, ENABLE_ASF)) {
1776 switch (kind) {
1777 case RESET_KIND_INIT:
1778 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1779 DRV_STATE_START);
1780 break;
1781
1782 case RESET_KIND_SHUTDOWN:
1783 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1784 DRV_STATE_UNLOAD);
1785 break;
1786
1787 case RESET_KIND_SUSPEND:
1788 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1789 DRV_STATE_SUSPEND);
1790 break;
1791
1792 default:
1793 break;
1794 }
1795 }
1796}
1797
1798static int tg3_poll_fw(struct tg3 *tp)
1799{
1800 int i;
1801 u32 val;
1802
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00001803 if (tg3_flag(tp, IS_SSB_CORE)) {
1804 /* We don't use firmware. */
1805 return 0;
1806 }
1807
Joe Perches41535772013-02-16 11:20:04 +00001808 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001809 /* Wait up to 20ms for init done. */
1810 for (i = 0; i < 200; i++) {
1811 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1812 return 0;
1813 udelay(100);
1814 }
1815 return -ENODEV;
1816 }
1817
1818 /* Wait for firmware initialization to complete. */
1819 for (i = 0; i < 100000; i++) {
1820 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1821 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1822 break;
1823 udelay(10);
1824 }
1825
1826 /* Chip might not be fitted with firmware. Some Sun onboard
1827 * parts are configured like that. So don't signal the timeout
1828 * of the above loop as an error, but do report the lack of
1829 * running firmware once.
1830 */
1831 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1832 tg3_flag_set(tp, NO_FWARE_REPORTED);
1833
1834 netdev_info(tp->dev, "No firmware running\n");
1835 }
1836
Joe Perches41535772013-02-16 11:20:04 +00001837 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001838 /* The 57765 A0 needs a little more
1839 * time to do some important work.
1840 */
1841 mdelay(10);
1842 }
1843
1844 return 0;
1845}
1846
Matt Carlson95e28692008-05-25 23:44:14 -07001847static void tg3_link_report(struct tg3 *tp)
1848{
1849 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001850 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001851 tg3_ump_link_report(tp);
1852 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001853 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1854 (tp->link_config.active_speed == SPEED_1000 ?
1855 1000 :
1856 (tp->link_config.active_speed == SPEED_100 ?
1857 100 : 10)),
1858 (tp->link_config.active_duplex == DUPLEX_FULL ?
1859 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001860
Joe Perches05dbe002010-02-17 19:44:19 +00001861 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1862 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1863 "on" : "off",
1864 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1865 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001866
1867 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1868 netdev_info(tp->dev, "EEE is %s\n",
1869 tp->setlpicnt ? "enabled" : "disabled");
1870
Matt Carlson95e28692008-05-25 23:44:14 -07001871 tg3_ump_link_report(tp);
1872 }
Nithin Sujir84421b92013-03-08 08:01:24 +00001873
1874 tp->link_up = netif_carrier_ok(tp->dev);
Matt Carlson95e28692008-05-25 23:44:14 -07001875}
1876
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001877static u32 tg3_decode_flowctrl_1000T(u32 adv)
1878{
1879 u32 flowctrl = 0;
1880
1881 if (adv & ADVERTISE_PAUSE_CAP) {
1882 flowctrl |= FLOW_CTRL_RX;
1883 if (!(adv & ADVERTISE_PAUSE_ASYM))
1884 flowctrl |= FLOW_CTRL_TX;
1885 } else if (adv & ADVERTISE_PAUSE_ASYM)
1886 flowctrl |= FLOW_CTRL_TX;
1887
1888 return flowctrl;
1889}
1890
Matt Carlson95e28692008-05-25 23:44:14 -07001891static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1892{
1893 u16 miireg;
1894
Steve Glendinninge18ce342008-12-16 02:00:00 -08001895 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001896 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001897 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001898 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001899 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001900 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1901 else
1902 miireg = 0;
1903
1904 return miireg;
1905}
1906
Nithin Sujirfdad8de2013-04-09 08:48:08 +00001907static u32 tg3_decode_flowctrl_1000X(u32 adv)
1908{
1909 u32 flowctrl = 0;
1910
1911 if (adv & ADVERTISE_1000XPAUSE) {
1912 flowctrl |= FLOW_CTRL_RX;
1913 if (!(adv & ADVERTISE_1000XPSE_ASYM))
1914 flowctrl |= FLOW_CTRL_TX;
1915 } else if (adv & ADVERTISE_1000XPSE_ASYM)
1916 flowctrl |= FLOW_CTRL_TX;
1917
1918 return flowctrl;
1919}
1920
Matt Carlson95e28692008-05-25 23:44:14 -07001921static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1922{
1923 u8 cap = 0;
1924
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001925 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1926 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1927 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1928 if (lcladv & ADVERTISE_1000XPAUSE)
1929 cap = FLOW_CTRL_RX;
1930 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001931 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001932 }
1933
1934 return cap;
1935}
1936
Matt Carlsonf51f3562008-05-25 23:45:08 -07001937static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001938{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001939 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001940 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001941 u32 old_rx_mode = tp->rx_mode;
1942 u32 old_tx_mode = tp->tx_mode;
1943
Joe Perches63c3a662011-04-26 08:12:10 +00001944 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001945 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001946 else
1947 autoneg = tp->link_config.autoneg;
1948
Joe Perches63c3a662011-04-26 08:12:10 +00001949 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001950 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001951 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001952 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001953 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001954 } else
1955 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001956
Matt Carlsonf51f3562008-05-25 23:45:08 -07001957 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001958
Steve Glendinninge18ce342008-12-16 02:00:00 -08001959 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001960 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1961 else
1962 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1963
Matt Carlsonf51f3562008-05-25 23:45:08 -07001964 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001965 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001966
Steve Glendinninge18ce342008-12-16 02:00:00 -08001967 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001968 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1969 else
1970 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1971
Matt Carlsonf51f3562008-05-25 23:45:08 -07001972 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001973 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001974}
1975
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001976static void tg3_adjust_link(struct net_device *dev)
1977{
1978 u8 oldflowctrl, linkmesg = 0;
1979 u32 mac_mode, lcl_adv, rmt_adv;
1980 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001981 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001982
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001983 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001984
1985 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1986 MAC_MODE_HALF_DUPLEX);
1987
1988 oldflowctrl = tp->link_config.active_flowctrl;
1989
1990 if (phydev->link) {
1991 lcl_adv = 0;
1992 rmt_adv = 0;
1993
1994 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1995 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001996 else if (phydev->speed == SPEED_1000 ||
Joe Perches41535772013-02-16 11:20:04 +00001997 tg3_asic_rev(tp) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001998 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001999 else
2000 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002001
2002 if (phydev->duplex == DUPLEX_HALF)
2003 mac_mode |= MAC_MODE_HALF_DUPLEX;
2004 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00002005 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002006 tp->link_config.flowctrl);
2007
2008 if (phydev->pause)
2009 rmt_adv = LPA_PAUSE_CAP;
2010 if (phydev->asym_pause)
2011 rmt_adv |= LPA_PAUSE_ASYM;
2012 }
2013
2014 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
2015 } else
2016 mac_mode |= MAC_MODE_PORT_MODE_GMII;
2017
2018 if (mac_mode != tp->mac_mode) {
2019 tp->mac_mode = mac_mode;
2020 tw32_f(MAC_MODE, tp->mac_mode);
2021 udelay(40);
2022 }
2023
Joe Perches41535772013-02-16 11:20:04 +00002024 if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlsonfcb389d2008-11-03 16:55:44 -08002025 if (phydev->speed == SPEED_10)
2026 tw32(MAC_MI_STAT,
2027 MAC_MI_STAT_10MBPS_MODE |
2028 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2029 else
2030 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
2031 }
2032
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002033 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
2034 tw32(MAC_TX_LENGTHS,
2035 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2036 (6 << TX_LENGTHS_IPG_SHIFT) |
2037 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
2038 else
2039 tw32(MAC_TX_LENGTHS,
2040 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
2041 (6 << TX_LENGTHS_IPG_SHIFT) |
2042 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
2043
Matt Carlson34655ad2012-02-22 12:35:18 +00002044 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002045 phydev->speed != tp->link_config.active_speed ||
2046 phydev->duplex != tp->link_config.active_duplex ||
2047 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002048 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002049
Matt Carlson34655ad2012-02-22 12:35:18 +00002050 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002051 tp->link_config.active_speed = phydev->speed;
2052 tp->link_config.active_duplex = phydev->duplex;
2053
Matt Carlson24bb4fb2009-10-05 17:55:29 +00002054 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002055
2056 if (linkmesg)
2057 tg3_link_report(tp);
2058}
2059
2060static int tg3_phy_init(struct tg3 *tp)
2061{
2062 struct phy_device *phydev;
2063
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002064 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002065 return 0;
2066
2067 /* Bring the PHY back to a known state. */
2068 tg3_bmcr_reset(tp);
2069
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002070 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002071
2072 /* Attach the MAC to the PHY. */
Florian Fainellif9a8f832013-01-14 00:52:52 +00002073 phydev = phy_connect(tp->dev, dev_name(&phydev->dev),
2074 tg3_adjust_link, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002075 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00002076 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002077 return PTR_ERR(phydev);
2078 }
2079
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002080 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002081 switch (phydev->interface) {
2082 case PHY_INTERFACE_MODE_GMII:
2083 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002084 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08002085 phydev->supported &= (PHY_GBIT_FEATURES |
2086 SUPPORTED_Pause |
2087 SUPPORTED_Asym_Pause);
2088 break;
2089 }
2090 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002091 case PHY_INTERFACE_MODE_MII:
2092 phydev->supported &= (PHY_BASIC_FEATURES |
2093 SUPPORTED_Pause |
2094 SUPPORTED_Asym_Pause);
2095 break;
2096 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002097 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08002098 return -EINVAL;
2099 }
2100
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002101 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002102
2103 phydev->advertising = phydev->supported;
2104
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002105 return 0;
2106}
2107
2108static void tg3_phy_start(struct tg3 *tp)
2109{
2110 struct phy_device *phydev;
2111
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002112 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002113 return;
2114
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002115 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002116
Matt Carlson80096062010-08-02 11:26:06 +00002117 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
2118 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00002119 phydev->speed = tp->link_config.speed;
2120 phydev->duplex = tp->link_config.duplex;
2121 phydev->autoneg = tp->link_config.autoneg;
2122 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002123 }
2124
2125 phy_start(phydev);
2126
2127 phy_start_aneg(phydev);
2128}
2129
2130static void tg3_phy_stop(struct tg3 *tp)
2131{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002132 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002133 return;
2134
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002135 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002136}
2137
2138static void tg3_phy_fini(struct tg3 *tp)
2139{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002140 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002141 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002142 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002143 }
2144}
2145
Matt Carlson941ec902011-08-19 13:58:23 +00002146static int tg3_phy_set_extloopbk(struct tg3 *tp)
2147{
2148 int err;
2149 u32 val;
2150
2151 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
2152 return 0;
2153
2154 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
2155 /* Cannot do read-modify-write on 5401 */
2156 err = tg3_phy_auxctl_write(tp,
2157 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2158 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
2159 0x4c20);
2160 goto done;
2161 }
2162
2163 err = tg3_phy_auxctl_read(tp,
2164 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2165 if (err)
2166 return err;
2167
2168 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
2169 err = tg3_phy_auxctl_write(tp,
2170 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
2171
2172done:
2173 return err;
2174}
2175
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002176static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
2177{
2178 u32 phytest;
2179
2180 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2181 u32 phy;
2182
2183 tg3_writephy(tp, MII_TG3_FET_TEST,
2184 phytest | MII_TG3_FET_SHADOW_EN);
2185 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
2186 if (enable)
2187 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
2188 else
2189 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
2190 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
2191 }
2192 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2193 }
2194}
2195
Matt Carlson6833c042008-11-21 17:18:59 -08002196static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
2197{
2198 u32 reg;
2199
Joe Perches63c3a662011-04-26 08:12:10 +00002200 if (!tg3_flag(tp, 5705_PLUS) ||
2201 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002202 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08002203 return;
2204
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002205 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00002206 tg3_phy_fet_toggle_apd(tp, enable);
2207 return;
2208 }
2209
Matt Carlson6833c042008-11-21 17:18:59 -08002210 reg = MII_TG3_MISC_SHDW_WREN |
2211 MII_TG3_MISC_SHDW_SCR5_SEL |
2212 MII_TG3_MISC_SHDW_SCR5_LPED |
2213 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
2214 MII_TG3_MISC_SHDW_SCR5_SDTL |
2215 MII_TG3_MISC_SHDW_SCR5_C125OE;
Joe Perches41535772013-02-16 11:20:04 +00002216 if (tg3_asic_rev(tp) != ASIC_REV_5784 || !enable)
Matt Carlson6833c042008-11-21 17:18:59 -08002217 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2218
2219 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2220
2221
2222 reg = MII_TG3_MISC_SHDW_WREN |
2223 MII_TG3_MISC_SHDW_APD_SEL |
2224 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2225 if (enable)
2226 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2227
2228 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2229}
2230
Joe Perches953c96e2013-04-09 10:18:14 +00002231static void tg3_phy_toggle_automdix(struct tg3 *tp, bool enable)
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002232{
2233 u32 phy;
2234
Joe Perches63c3a662011-04-26 08:12:10 +00002235 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002236 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002237 return;
2238
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002239 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002240 u32 ephy;
2241
Matt Carlson535ef6e2009-08-25 10:09:36 +00002242 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2243 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2244
2245 tg3_writephy(tp, MII_TG3_FET_TEST,
2246 ephy | MII_TG3_FET_SHADOW_EN);
2247 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002248 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002249 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002250 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002251 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2252 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002253 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002254 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002255 }
2256 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002257 int ret;
2258
2259 ret = tg3_phy_auxctl_read(tp,
2260 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2261 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002262 if (enable)
2263 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2264 else
2265 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002266 tg3_phy_auxctl_write(tp,
2267 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002268 }
2269 }
2270}
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272static void tg3_phy_set_wirespeed(struct tg3 *tp)
2273{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002274 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 u32 val;
2276
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002277 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 return;
2279
Matt Carlson15ee95c2011-04-20 07:57:40 +00002280 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2281 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002282 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2283 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284}
2285
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002286static void tg3_phy_apply_otp(struct tg3 *tp)
2287{
2288 u32 otp, phy;
2289
2290 if (!tp->phy_otp)
2291 return;
2292
2293 otp = tp->phy_otp;
2294
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002295 if (tg3_phy_toggle_auxctl_smdsp(tp, true))
Matt Carlson1d36ba42011-04-20 07:57:42 +00002296 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002297
2298 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2299 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2300 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2301
2302 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2303 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2304 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2305
2306 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2307 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2308 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2309
2310 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2311 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2312
2313 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2314 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2315
2316 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2317 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2318 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2319
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002320 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002321}
2322
Joe Perches953c96e2013-04-09 10:18:14 +00002323static void tg3_phy_eee_adjust(struct tg3 *tp, bool current_link_up)
Matt Carlson52b02d02010-10-14 10:37:41 +00002324{
2325 u32 val;
2326
2327 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2328 return;
2329
2330 tp->setlpicnt = 0;
2331
2332 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
Joe Perches953c96e2013-04-09 10:18:14 +00002333 current_link_up &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002334 tp->link_config.active_duplex == DUPLEX_FULL &&
2335 (tp->link_config.active_speed == SPEED_100 ||
2336 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002337 u32 eeectl;
2338
2339 if (tp->link_config.active_speed == SPEED_1000)
2340 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2341 else
2342 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2343
2344 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2345
Matt Carlson3110f5f52010-12-06 08:28:50 +00002346 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2347 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002348
Matt Carlsonb0c59432011-05-19 12:12:48 +00002349 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2350 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002351 tp->setlpicnt = 2;
2352 }
2353
2354 if (!tp->setlpicnt) {
Joe Perches953c96e2013-04-09 10:18:14 +00002355 if (current_link_up &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002356 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002357 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002358 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb715ce92011-07-20 10:20:52 +00002359 }
2360
Matt Carlson52b02d02010-10-14 10:37:41 +00002361 val = tr32(TG3_CPMU_EEE_MODE);
2362 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2363 }
2364}
2365
Matt Carlsonb0c59432011-05-19 12:12:48 +00002366static void tg3_phy_eee_enable(struct tg3 *tp)
2367{
2368 u32 val;
2369
2370 if (tp->link_config.active_speed == SPEED_1000 &&
Joe Perches41535772013-02-16 11:20:04 +00002371 (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2372 tg3_asic_rev(tp) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002373 tg3_flag(tp, 57765_CLASS)) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002374 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002375 val = MII_TG3_DSP_TAP26_ALNOKO |
2376 MII_TG3_DSP_TAP26_RMRXSTO;
2377 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002378 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002379 }
2380
2381 val = tr32(TG3_CPMU_EEE_MODE);
2382 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2383}
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385static int tg3_wait_macro_done(struct tg3 *tp)
2386{
2387 int limit = 100;
2388
2389 while (limit--) {
2390 u32 tmp32;
2391
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002392 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 if ((tmp32 & 0x1000) == 0)
2394 break;
2395 }
2396 }
Roel Kluind4675b52009-02-12 16:33:27 -08002397 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return -EBUSY;
2399
2400 return 0;
2401}
2402
2403static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2404{
2405 static const u32 test_pat[4][6] = {
2406 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2407 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2408 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2409 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2410 };
2411 int chan;
2412
2413 for (chan = 0; chan < 4; chan++) {
2414 int i;
2415
2416 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2417 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002418 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420 for (i = 0; i < 6; i++)
2421 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2422 test_pat[chan][i]);
2423
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002424 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (tg3_wait_macro_done(tp)) {
2426 *resetp = 1;
2427 return -EBUSY;
2428 }
2429
2430 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2431 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002432 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 if (tg3_wait_macro_done(tp)) {
2434 *resetp = 1;
2435 return -EBUSY;
2436 }
2437
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002438 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (tg3_wait_macro_done(tp)) {
2440 *resetp = 1;
2441 return -EBUSY;
2442 }
2443
2444 for (i = 0; i < 6; i += 2) {
2445 u32 low, high;
2446
2447 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2448 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2449 tg3_wait_macro_done(tp)) {
2450 *resetp = 1;
2451 return -EBUSY;
2452 }
2453 low &= 0x7fff;
2454 high &= 0x000f;
2455 if (low != test_pat[chan][i] ||
2456 high != test_pat[chan][i+1]) {
2457 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2458 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2459 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2460
2461 return -EBUSY;
2462 }
2463 }
2464 }
2465
2466 return 0;
2467}
2468
2469static int tg3_phy_reset_chanpat(struct tg3 *tp)
2470{
2471 int chan;
2472
2473 for (chan = 0; chan < 4; chan++) {
2474 int i;
2475
2476 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2477 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002478 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 for (i = 0; i < 6; i++)
2480 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002481 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 if (tg3_wait_macro_done(tp))
2483 return -EBUSY;
2484 }
2485
2486 return 0;
2487}
2488
2489static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2490{
2491 u32 reg32, phy9_orig;
2492 int retries, do_phy_reset, err;
2493
2494 retries = 10;
2495 do_phy_reset = 1;
2496 do {
2497 if (do_phy_reset) {
2498 err = tg3_bmcr_reset(tp);
2499 if (err)
2500 return err;
2501 do_phy_reset = 0;
2502 }
2503
2504 /* Disable transmitter and interrupt. */
2505 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2506 continue;
2507
2508 reg32 |= 0x3000;
2509 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2510
2511 /* Set full-duplex, 1000 mbps. */
2512 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002513 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002516 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 continue;
2518
Matt Carlson221c5632011-06-13 13:39:01 +00002519 tg3_writephy(tp, MII_CTRL1000,
2520 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002522 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002523 if (err)
2524 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002527 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2530 if (!err)
2531 break;
2532 } while (--retries);
2533
2534 err = tg3_phy_reset_chanpat(tp);
2535 if (err)
2536 return err;
2537
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002538 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002541 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002543 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Matt Carlson221c5632011-06-13 13:39:01 +00002545 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2548 reg32 &= ~0x3000;
2549 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2550 } else if (!err)
2551 err = -EBUSY;
2552
2553 return err;
2554}
2555
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002556static void tg3_carrier_off(struct tg3 *tp)
2557{
2558 netif_carrier_off(tp->dev);
2559 tp->link_up = false;
2560}
2561
Nithin Sujirce20f162013-04-09 08:48:04 +00002562static void tg3_warn_mgmt_link_flap(struct tg3 *tp)
2563{
2564 if (tg3_flag(tp, ENABLE_ASF))
2565 netdev_warn(tp->dev,
2566 "Management side-band traffic will be interrupted during phy settings change\n");
2567}
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569/* This will reset the tigon3 PHY if there is no valid
2570 * link unless the FORCE argument is non-zero.
2571 */
2572static int tg3_phy_reset(struct tg3 *tp)
2573{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002574 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 int err;
2576
Joe Perches41535772013-02-16 11:20:04 +00002577 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002578 val = tr32(GRC_MISC_CFG);
2579 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2580 udelay(40);
2581 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002582 err = tg3_readphy(tp, MII_BMSR, &val);
2583 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 if (err != 0)
2585 return -EBUSY;
2586
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00002587 if (netif_running(tp->dev) && tp->link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00002588 netif_carrier_off(tp->dev);
Michael Chanc8e1e822006-04-29 18:55:17 -07002589 tg3_link_report(tp);
2590 }
2591
Joe Perches41535772013-02-16 11:20:04 +00002592 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
2593 tg3_asic_rev(tp) == ASIC_REV_5704 ||
2594 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 err = tg3_phy_reset_5703_4_5(tp);
2596 if (err)
2597 return err;
2598 goto out;
2599 }
2600
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002601 cpmuctrl = 0;
Joe Perches41535772013-02-16 11:20:04 +00002602 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
2603 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002604 cpmuctrl = tr32(TG3_CPMU_CTRL);
2605 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2606 tw32(TG3_CPMU_CTRL,
2607 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2608 }
2609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 err = tg3_bmcr_reset(tp);
2611 if (err)
2612 return err;
2613
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002614 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002615 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2616 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002617
2618 tw32(TG3_CPMU_CTRL, cpmuctrl);
2619 }
2620
Joe Perches41535772013-02-16 11:20:04 +00002621 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
2622 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002623 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2624 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2625 CPMU_LSPD_1000MB_MACCLK_12_5) {
2626 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2627 udelay(40);
2628 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2629 }
2630 }
2631
Joe Perches63c3a662011-04-26 08:12:10 +00002632 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002633 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002634 return 0;
2635
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002636 tg3_phy_apply_otp(tp);
2637
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002638 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002639 tg3_phy_toggle_apd(tp, true);
2640 else
2641 tg3_phy_toggle_apd(tp, false);
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002644 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002645 !tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002646 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2647 tg3_phydsp_write(tp, 0x000a, 0x0323);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002648 tg3_phy_toggle_auxctl_smdsp(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002650
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002651 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002652 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2653 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002655
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002656 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002657 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002658 tg3_phydsp_write(tp, 0x000a, 0x310b);
2659 tg3_phydsp_write(tp, 0x201f, 0x9506);
2660 tg3_phydsp_write(tp, 0x401f, 0x14e2);
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002661 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002662 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002663 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002664 if (!tg3_phy_toggle_auxctl_smdsp(tp, true)) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002665 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2666 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2667 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2668 tg3_writephy(tp, MII_TG3_TEST1,
2669 MII_TG3_TEST1_TRIM_EN | 0x4);
2670 } else
2671 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2672
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00002673 tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002674 }
Michael Chanc424cb22006-04-29 18:56:34 -07002675 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 /* Set Extended packet length bit (bit 14) on all chips that */
2678 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002679 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002681 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002682 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002684 err = tg3_phy_auxctl_read(tp,
2685 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2686 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002687 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2688 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
2690
2691 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2692 * jumbo frames transmission.
2693 */
Joe Perches63c3a662011-04-26 08:12:10 +00002694 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002695 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002696 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002697 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 }
2699
Joe Perches41535772013-02-16 11:20:04 +00002700 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002701 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002702 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002703 }
2704
Joe Perches41535772013-02-16 11:20:04 +00002705 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5762_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00002706 tg3_phydsp_write(tp, 0xffb, 0x4000);
2707
Joe Perches953c96e2013-04-09 10:18:14 +00002708 tg3_phy_toggle_automdix(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 tg3_phy_set_wirespeed(tp);
2710 return 0;
2711}
2712
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002713#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2714#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2715#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2716 TG3_GPIO_MSG_NEED_VAUX)
2717#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2718 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2719 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2720 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2721 (TG3_GPIO_MSG_DRVR_PRES << 12))
2722
2723#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2724 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2725 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2726 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2727 (TG3_GPIO_MSG_NEED_VAUX << 12))
2728
2729static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2730{
2731 u32 status, shift;
2732
Joe Perches41535772013-02-16 11:20:04 +00002733 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2734 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002735 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2736 else
2737 status = tr32(TG3_CPMU_DRV_STATUS);
2738
2739 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2740 status &= ~(TG3_GPIO_MSG_MASK << shift);
2741 status |= (newstat << shift);
2742
Joe Perches41535772013-02-16 11:20:04 +00002743 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2744 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002745 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2746 else
2747 tw32(TG3_CPMU_DRV_STATUS, status);
2748
2749 return status >> TG3_APE_GPIO_MSG_SHIFT;
2750}
2751
Matt Carlson520b2752011-06-13 13:39:02 +00002752static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2753{
2754 if (!tg3_flag(tp, IS_NIC))
2755 return 0;
2756
Joe Perches41535772013-02-16 11:20:04 +00002757 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2758 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2759 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002760 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2761 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002762
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002763 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2764
2765 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2766 TG3_GRC_LCLCTL_PWRSW_DELAY);
2767
2768 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2769 } else {
2770 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2771 TG3_GRC_LCLCTL_PWRSW_DELAY);
2772 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002773
Matt Carlson520b2752011-06-13 13:39:02 +00002774 return 0;
2775}
2776
2777static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2778{
2779 u32 grc_local_ctrl;
2780
2781 if (!tg3_flag(tp, IS_NIC) ||
Joe Perches41535772013-02-16 11:20:04 +00002782 tg3_asic_rev(tp) == ASIC_REV_5700 ||
2783 tg3_asic_rev(tp) == ASIC_REV_5701)
Matt Carlson520b2752011-06-13 13:39:02 +00002784 return;
2785
2786 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2787
2788 tw32_wait_f(GRC_LOCAL_CTRL,
2789 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2790 TG3_GRC_LCLCTL_PWRSW_DELAY);
2791
2792 tw32_wait_f(GRC_LOCAL_CTRL,
2793 grc_local_ctrl,
2794 TG3_GRC_LCLCTL_PWRSW_DELAY);
2795
2796 tw32_wait_f(GRC_LOCAL_CTRL,
2797 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2798 TG3_GRC_LCLCTL_PWRSW_DELAY);
2799}
2800
2801static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2802{
2803 if (!tg3_flag(tp, IS_NIC))
2804 return;
2805
Joe Perches41535772013-02-16 11:20:04 +00002806 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
2807 tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson520b2752011-06-13 13:39:02 +00002808 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2809 (GRC_LCLCTRL_GPIO_OE0 |
2810 GRC_LCLCTRL_GPIO_OE1 |
2811 GRC_LCLCTRL_GPIO_OE2 |
2812 GRC_LCLCTRL_GPIO_OUTPUT0 |
2813 GRC_LCLCTRL_GPIO_OUTPUT1),
2814 TG3_GRC_LCLCTL_PWRSW_DELAY);
2815 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2816 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2817 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2818 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2819 GRC_LCLCTRL_GPIO_OE1 |
2820 GRC_LCLCTRL_GPIO_OE2 |
2821 GRC_LCLCTRL_GPIO_OUTPUT0 |
2822 GRC_LCLCTRL_GPIO_OUTPUT1 |
2823 tp->grc_local_ctrl;
2824 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2825 TG3_GRC_LCLCTL_PWRSW_DELAY);
2826
2827 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2828 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2829 TG3_GRC_LCLCTL_PWRSW_DELAY);
2830
2831 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2832 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2833 TG3_GRC_LCLCTL_PWRSW_DELAY);
2834 } else {
2835 u32 no_gpio2;
2836 u32 grc_local_ctrl = 0;
2837
2838 /* Workaround to prevent overdrawing Amps. */
Joe Perches41535772013-02-16 11:20:04 +00002839 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Matt Carlson520b2752011-06-13 13:39:02 +00002840 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2841 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2842 grc_local_ctrl,
2843 TG3_GRC_LCLCTL_PWRSW_DELAY);
2844 }
2845
2846 /* On 5753 and variants, GPIO2 cannot be used. */
2847 no_gpio2 = tp->nic_sram_data_cfg &
2848 NIC_SRAM_DATA_CFG_NO_GPIO2;
2849
2850 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2851 GRC_LCLCTRL_GPIO_OE1 |
2852 GRC_LCLCTRL_GPIO_OE2 |
2853 GRC_LCLCTRL_GPIO_OUTPUT1 |
2854 GRC_LCLCTRL_GPIO_OUTPUT2;
2855 if (no_gpio2) {
2856 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2857 GRC_LCLCTRL_GPIO_OUTPUT2);
2858 }
2859 tw32_wait_f(GRC_LOCAL_CTRL,
2860 tp->grc_local_ctrl | grc_local_ctrl,
2861 TG3_GRC_LCLCTL_PWRSW_DELAY);
2862
2863 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2864
2865 tw32_wait_f(GRC_LOCAL_CTRL,
2866 tp->grc_local_ctrl | grc_local_ctrl,
2867 TG3_GRC_LCLCTL_PWRSW_DELAY);
2868
2869 if (!no_gpio2) {
2870 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2871 tw32_wait_f(GRC_LOCAL_CTRL,
2872 tp->grc_local_ctrl | grc_local_ctrl,
2873 TG3_GRC_LCLCTL_PWRSW_DELAY);
2874 }
2875 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002876}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002877
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002878static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002879{
2880 u32 msg = 0;
2881
2882 /* Serialize power state transitions */
2883 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2884 return;
2885
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002886 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002887 msg = TG3_GPIO_MSG_NEED_VAUX;
2888
2889 msg = tg3_set_function_status(tp, msg);
2890
2891 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2892 goto done;
2893
2894 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2895 tg3_pwrsrc_switch_to_vaux(tp);
2896 else
2897 tg3_pwrsrc_die_with_vmain(tp);
2898
2899done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002900 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002901}
2902
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002903static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Matt Carlson683644b2011-03-09 16:58:23 +00002905 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Matt Carlson334355a2010-01-20 16:58:10 +00002907 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002908 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 return;
2910
Joe Perches41535772013-02-16 11:20:04 +00002911 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
2912 tg3_asic_rev(tp) == ASIC_REV_5719 ||
2913 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002914 tg3_frob_aux_power_5717(tp, include_wol ?
2915 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002916 return;
2917 }
2918
2919 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002920 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002922 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002923
Michael Chanbc1c7562006-03-20 17:48:03 -08002924 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002925 if (dev_peer) {
2926 struct tg3 *tp_peer = netdev_priv(dev_peer);
2927
Joe Perches63c3a662011-04-26 08:12:10 +00002928 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002929 return;
2930
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002931 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002932 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002933 need_vaux = true;
2934 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002937 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2938 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002939 need_vaux = true;
2940
Matt Carlson520b2752011-06-13 13:39:02 +00002941 if (need_vaux)
2942 tg3_pwrsrc_switch_to_vaux(tp);
2943 else
2944 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945}
2946
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002947static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2948{
2949 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2950 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002951 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002952 if (speed != SPEED_10)
2953 return 1;
2954 } else if (speed == SPEED_10)
2955 return 1;
2956
2957 return 0;
2958}
2959
Nithin Sujir44f3b502013-05-13 11:04:15 +00002960static bool tg3_phy_power_bug(struct tg3 *tp)
2961{
2962 switch (tg3_asic_rev(tp)) {
2963 case ASIC_REV_5700:
2964 case ASIC_REV_5704:
2965 return true;
2966 case ASIC_REV_5780:
2967 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
2968 return true;
2969 return false;
2970 case ASIC_REV_5717:
2971 if (!tp->pci_fn)
2972 return true;
2973 return false;
2974 case ASIC_REV_5719:
2975 case ASIC_REV_5720:
2976 if ((tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
2977 !tp->pci_fn)
2978 return true;
2979 return false;
2980 }
2981
2982 return false;
2983}
2984
Matt Carlson0a459aa2008-11-03 16:54:15 -08002985static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002986{
Matt Carlsonce057f02007-11-12 21:08:03 -08002987 u32 val;
2988
Nithin Sujir942d1af2013-04-09 08:48:07 +00002989 if (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)
2990 return;
2991
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002992 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +00002993 if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Michael Chan51297242007-02-13 12:17:57 -08002994 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2995 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2996
2997 sg_dig_ctrl |=
2998 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2999 tw32(SG_DIG_CTRL, sg_dig_ctrl);
3000 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
3001 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003002 return;
Michael Chan51297242007-02-13 12:17:57 -08003003 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003004
Joe Perches41535772013-02-16 11:20:04 +00003005 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08003006 tg3_bmcr_reset(tp);
3007 val = tr32(GRC_MISC_CFG);
3008 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
3009 udelay(40);
3010 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003011 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00003012 u32 phytest;
3013 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
3014 u32 phy;
3015
3016 tg3_writephy(tp, MII_ADVERTISE, 0);
3017 tg3_writephy(tp, MII_BMCR,
3018 BMCR_ANENABLE | BMCR_ANRESTART);
3019
3020 tg3_writephy(tp, MII_TG3_FET_TEST,
3021 phytest | MII_TG3_FET_SHADOW_EN);
3022 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
3023 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
3024 tg3_writephy(tp,
3025 MII_TG3_FET_SHDW_AUXMODE4,
3026 phy);
3027 }
3028 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
3029 }
3030 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003031 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07003032 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3033 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003034
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003035 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3036 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
3037 MII_TG3_AUXCTL_PCTL_VREG_11V;
3038 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07003039 }
Michael Chan3f7045c2006-09-27 16:02:29 -07003040
Michael Chan15c3b692006-03-22 01:06:52 -08003041 /* The PHY should not be powered down on some chips because
3042 * of bugs.
3043 */
Nithin Sujir44f3b502013-05-13 11:04:15 +00003044 if (tg3_phy_power_bug(tp))
Michael Chan15c3b692006-03-22 01:06:52 -08003045 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08003046
Joe Perches41535772013-02-16 11:20:04 +00003047 if (tg3_chip_rev(tp) == CHIPREV_5784_AX ||
3048 tg3_chip_rev(tp) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08003049 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
3050 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
3051 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
3052 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
3053 }
3054
Michael Chan15c3b692006-03-22 01:06:52 -08003055 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
3056}
3057
Matt Carlson3f007892008-11-03 16:51:36 -08003058/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003059static int tg3_nvram_lock(struct tg3 *tp)
3060{
Joe Perches63c3a662011-04-26 08:12:10 +00003061 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003062 int i;
3063
3064 if (tp->nvram_lock_cnt == 0) {
3065 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
3066 for (i = 0; i < 8000; i++) {
3067 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
3068 break;
3069 udelay(20);
3070 }
3071 if (i == 8000) {
3072 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
3073 return -ENODEV;
3074 }
3075 }
3076 tp->nvram_lock_cnt++;
3077 }
3078 return 0;
3079}
3080
3081/* tp->lock is held. */
3082static void tg3_nvram_unlock(struct tg3 *tp)
3083{
Joe Perches63c3a662011-04-26 08:12:10 +00003084 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003085 if (tp->nvram_lock_cnt > 0)
3086 tp->nvram_lock_cnt--;
3087 if (tp->nvram_lock_cnt == 0)
3088 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
3089 }
3090}
3091
3092/* tp->lock is held. */
3093static void tg3_enable_nvram_access(struct tg3 *tp)
3094{
Joe Perches63c3a662011-04-26 08:12:10 +00003095 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003096 u32 nvaccess = tr32(NVRAM_ACCESS);
3097
3098 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
3099 }
3100}
3101
3102/* tp->lock is held. */
3103static void tg3_disable_nvram_access(struct tg3 *tp)
3104{
Joe Perches63c3a662011-04-26 08:12:10 +00003105 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003106 u32 nvaccess = tr32(NVRAM_ACCESS);
3107
3108 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
3109 }
3110}
3111
3112static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
3113 u32 offset, u32 *val)
3114{
3115 u32 tmp;
3116 int i;
3117
3118 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
3119 return -EINVAL;
3120
3121 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
3122 EEPROM_ADDR_DEVID_MASK |
3123 EEPROM_ADDR_READ);
3124 tw32(GRC_EEPROM_ADDR,
3125 tmp |
3126 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3127 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
3128 EEPROM_ADDR_ADDR_MASK) |
3129 EEPROM_ADDR_READ | EEPROM_ADDR_START);
3130
3131 for (i = 0; i < 1000; i++) {
3132 tmp = tr32(GRC_EEPROM_ADDR);
3133
3134 if (tmp & EEPROM_ADDR_COMPLETE)
3135 break;
3136 msleep(1);
3137 }
3138 if (!(tmp & EEPROM_ADDR_COMPLETE))
3139 return -EBUSY;
3140
Matt Carlson62cedd12009-04-20 14:52:29 -07003141 tmp = tr32(GRC_EEPROM_DATA);
3142
3143 /*
3144 * The data will always be opposite the native endian
3145 * format. Perform a blind byteswap to compensate.
3146 */
3147 *val = swab32(tmp);
3148
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003149 return 0;
3150}
3151
3152#define NVRAM_CMD_TIMEOUT 10000
3153
3154static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
3155{
3156 int i;
3157
3158 tw32(NVRAM_CMD, nvram_cmd);
3159 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
3160 udelay(10);
3161 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
3162 udelay(10);
3163 break;
3164 }
3165 }
3166
3167 if (i == NVRAM_CMD_TIMEOUT)
3168 return -EBUSY;
3169
3170 return 0;
3171}
3172
3173static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
3174{
Joe Perches63c3a662011-04-26 08:12:10 +00003175 if (tg3_flag(tp, NVRAM) &&
3176 tg3_flag(tp, NVRAM_BUFFERED) &&
3177 tg3_flag(tp, FLASH) &&
3178 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003179 (tp->nvram_jedecnum == JEDEC_ATMEL))
3180
3181 addr = ((addr / tp->nvram_pagesize) <<
3182 ATMEL_AT45DB0X1B_PAGE_POS) +
3183 (addr % tp->nvram_pagesize);
3184
3185 return addr;
3186}
3187
3188static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
3189{
Joe Perches63c3a662011-04-26 08:12:10 +00003190 if (tg3_flag(tp, NVRAM) &&
3191 tg3_flag(tp, NVRAM_BUFFERED) &&
3192 tg3_flag(tp, FLASH) &&
3193 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003194 (tp->nvram_jedecnum == JEDEC_ATMEL))
3195
3196 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
3197 tp->nvram_pagesize) +
3198 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
3199
3200 return addr;
3201}
3202
Matt Carlsone4f34112009-02-25 14:25:00 +00003203/* NOTE: Data read in from NVRAM is byteswapped according to
3204 * the byteswapping settings for all other register accesses.
3205 * tg3 devices are BE devices, so on a BE machine, the data
3206 * returned will be exactly as it is seen in NVRAM. On a LE
3207 * machine, the 32-bit value will be byteswapped.
3208 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003209static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
3210{
3211 int ret;
3212
Joe Perches63c3a662011-04-26 08:12:10 +00003213 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003214 return tg3_nvram_read_using_eeprom(tp, offset, val);
3215
3216 offset = tg3_nvram_phys_addr(tp, offset);
3217
3218 if (offset > NVRAM_ADDR_MSK)
3219 return -EINVAL;
3220
3221 ret = tg3_nvram_lock(tp);
3222 if (ret)
3223 return ret;
3224
3225 tg3_enable_nvram_access(tp);
3226
3227 tw32(NVRAM_ADDR, offset);
3228 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
3229 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
3230
3231 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00003232 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003233
3234 tg3_disable_nvram_access(tp);
3235
3236 tg3_nvram_unlock(tp);
3237
3238 return ret;
3239}
3240
Matt Carlsona9dc5292009-02-25 14:25:30 +00003241/* Ensures NVRAM data is in bytestream format. */
3242static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003243{
3244 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00003245 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003246 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00003247 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003248 return res;
3249}
3250
Matt Carlsondbe9b922012-02-13 10:20:09 +00003251static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
3252 u32 offset, u32 len, u8 *buf)
3253{
3254 int i, j, rc = 0;
3255 u32 val;
3256
3257 for (i = 0; i < len; i += 4) {
3258 u32 addr;
3259 __be32 data;
3260
3261 addr = offset + i;
3262
3263 memcpy(&data, buf + i, 4);
3264
3265 /*
3266 * The SEEPROM interface expects the data to always be opposite
3267 * the native endian format. We accomplish this by reversing
3268 * all the operations that would have been performed on the
3269 * data from a call to tg3_nvram_read_be32().
3270 */
3271 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3272
3273 val = tr32(GRC_EEPROM_ADDR);
3274 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3275
3276 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3277 EEPROM_ADDR_READ);
3278 tw32(GRC_EEPROM_ADDR, val |
3279 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3280 (addr & EEPROM_ADDR_ADDR_MASK) |
3281 EEPROM_ADDR_START |
3282 EEPROM_ADDR_WRITE);
3283
3284 for (j = 0; j < 1000; j++) {
3285 val = tr32(GRC_EEPROM_ADDR);
3286
3287 if (val & EEPROM_ADDR_COMPLETE)
3288 break;
3289 msleep(1);
3290 }
3291 if (!(val & EEPROM_ADDR_COMPLETE)) {
3292 rc = -EBUSY;
3293 break;
3294 }
3295 }
3296
3297 return rc;
3298}
3299
3300/* offset and length are dword aligned */
3301static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3302 u8 *buf)
3303{
3304 int ret = 0;
3305 u32 pagesize = tp->nvram_pagesize;
3306 u32 pagemask = pagesize - 1;
3307 u32 nvram_cmd;
3308 u8 *tmp;
3309
3310 tmp = kmalloc(pagesize, GFP_KERNEL);
3311 if (tmp == NULL)
3312 return -ENOMEM;
3313
3314 while (len) {
3315 int j;
3316 u32 phy_addr, page_off, size;
3317
3318 phy_addr = offset & ~pagemask;
3319
3320 for (j = 0; j < pagesize; j += 4) {
3321 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3322 (__be32 *) (tmp + j));
3323 if (ret)
3324 break;
3325 }
3326 if (ret)
3327 break;
3328
3329 page_off = offset & pagemask;
3330 size = pagesize;
3331 if (len < size)
3332 size = len;
3333
3334 len -= size;
3335
3336 memcpy(tmp + page_off, buf, size);
3337
3338 offset = offset + (pagesize - page_off);
3339
3340 tg3_enable_nvram_access(tp);
3341
3342 /*
3343 * Before we can erase the flash page, we need
3344 * to issue a special "write enable" command.
3345 */
3346 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3347
3348 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3349 break;
3350
3351 /* Erase the target page */
3352 tw32(NVRAM_ADDR, phy_addr);
3353
3354 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3355 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3356
3357 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3358 break;
3359
3360 /* Issue another write enable to start the write. */
3361 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3362
3363 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3364 break;
3365
3366 for (j = 0; j < pagesize; j += 4) {
3367 __be32 data;
3368
3369 data = *((__be32 *) (tmp + j));
3370
3371 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3372
3373 tw32(NVRAM_ADDR, phy_addr + j);
3374
3375 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3376 NVRAM_CMD_WR;
3377
3378 if (j == 0)
3379 nvram_cmd |= NVRAM_CMD_FIRST;
3380 else if (j == (pagesize - 4))
3381 nvram_cmd |= NVRAM_CMD_LAST;
3382
3383 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3384 if (ret)
3385 break;
3386 }
3387 if (ret)
3388 break;
3389 }
3390
3391 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3392 tg3_nvram_exec_cmd(tp, nvram_cmd);
3393
3394 kfree(tmp);
3395
3396 return ret;
3397}
3398
3399/* offset and length are dword aligned */
3400static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3401 u8 *buf)
3402{
3403 int i, ret = 0;
3404
3405 for (i = 0; i < len; i += 4, offset += 4) {
3406 u32 page_off, phy_addr, nvram_cmd;
3407 __be32 data;
3408
3409 memcpy(&data, buf + i, 4);
3410 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3411
3412 page_off = offset % tp->nvram_pagesize;
3413
3414 phy_addr = tg3_nvram_phys_addr(tp, offset);
3415
Matt Carlsondbe9b922012-02-13 10:20:09 +00003416 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3417
3418 if (page_off == 0 || i == 0)
3419 nvram_cmd |= NVRAM_CMD_FIRST;
3420 if (page_off == (tp->nvram_pagesize - 4))
3421 nvram_cmd |= NVRAM_CMD_LAST;
3422
3423 if (i == (len - 4))
3424 nvram_cmd |= NVRAM_CMD_LAST;
3425
Matt Carlson42278222012-02-13 15:20:11 +00003426 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3427 !tg3_flag(tp, FLASH) ||
3428 !tg3_flag(tp, 57765_PLUS))
3429 tw32(NVRAM_ADDR, phy_addr);
3430
Joe Perches41535772013-02-16 11:20:04 +00003431 if (tg3_asic_rev(tp) != ASIC_REV_5752 &&
Matt Carlsondbe9b922012-02-13 10:20:09 +00003432 !tg3_flag(tp, 5755_PLUS) &&
3433 (tp->nvram_jedecnum == JEDEC_ST) &&
3434 (nvram_cmd & NVRAM_CMD_FIRST)) {
3435 u32 cmd;
3436
3437 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3438 ret = tg3_nvram_exec_cmd(tp, cmd);
3439 if (ret)
3440 break;
3441 }
3442 if (!tg3_flag(tp, FLASH)) {
3443 /* We always do complete word writes to eeprom. */
3444 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3445 }
3446
3447 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3448 if (ret)
3449 break;
3450 }
3451 return ret;
3452}
3453
3454/* offset and length are dword aligned */
3455static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3456{
3457 int ret;
3458
3459 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3460 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3461 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3462 udelay(40);
3463 }
3464
3465 if (!tg3_flag(tp, NVRAM)) {
3466 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3467 } else {
3468 u32 grc_mode;
3469
3470 ret = tg3_nvram_lock(tp);
3471 if (ret)
3472 return ret;
3473
3474 tg3_enable_nvram_access(tp);
3475 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3476 tw32(NVRAM_WRITE1, 0x406);
3477
3478 grc_mode = tr32(GRC_MODE);
3479 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3480
3481 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3482 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3483 buf);
3484 } else {
3485 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3486 buf);
3487 }
3488
3489 grc_mode = tr32(GRC_MODE);
3490 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3491
3492 tg3_disable_nvram_access(tp);
3493 tg3_nvram_unlock(tp);
3494 }
3495
3496 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3497 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3498 udelay(40);
3499 }
3500
3501 return ret;
3502}
3503
Matt Carlson997b4f12011-08-31 11:44:53 +00003504#define RX_CPU_SCRATCH_BASE 0x30000
3505#define RX_CPU_SCRATCH_SIZE 0x04000
3506#define TX_CPU_SCRATCH_BASE 0x34000
3507#define TX_CPU_SCRATCH_SIZE 0x04000
3508
3509/* tp->lock is held. */
Nithin Sujir837c45b2013-03-06 17:02:30 +00003510static int tg3_pause_cpu(struct tg3 *tp, u32 cpu_base)
Matt Carlson997b4f12011-08-31 11:44:53 +00003511{
3512 int i;
Nithin Sujir837c45b2013-03-06 17:02:30 +00003513 const int iters = 10000;
Matt Carlson997b4f12011-08-31 11:44:53 +00003514
Nithin Sujir837c45b2013-03-06 17:02:30 +00003515 for (i = 0; i < iters; i++) {
3516 tw32(cpu_base + CPU_STATE, 0xffffffff);
3517 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3518 if (tr32(cpu_base + CPU_MODE) & CPU_MODE_HALT)
3519 break;
3520 }
3521
3522 return (i == iters) ? -EBUSY : 0;
3523}
3524
3525/* tp->lock is held. */
3526static int tg3_rxcpu_pause(struct tg3 *tp)
3527{
3528 int rc = tg3_pause_cpu(tp, RX_CPU_BASE);
3529
3530 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3531 tw32_f(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3532 udelay(10);
3533
3534 return rc;
3535}
3536
3537/* tp->lock is held. */
3538static int tg3_txcpu_pause(struct tg3 *tp)
3539{
3540 return tg3_pause_cpu(tp, TX_CPU_BASE);
3541}
3542
3543/* tp->lock is held. */
3544static void tg3_resume_cpu(struct tg3 *tp, u32 cpu_base)
3545{
3546 tw32(cpu_base + CPU_STATE, 0xffffffff);
3547 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3548}
3549
3550/* tp->lock is held. */
3551static void tg3_rxcpu_resume(struct tg3 *tp)
3552{
3553 tg3_resume_cpu(tp, RX_CPU_BASE);
3554}
3555
3556/* tp->lock is held. */
3557static int tg3_halt_cpu(struct tg3 *tp, u32 cpu_base)
3558{
3559 int rc;
3560
3561 BUG_ON(cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Matt Carlson997b4f12011-08-31 11:44:53 +00003562
Joe Perches41535772013-02-16 11:20:04 +00003563 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003564 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3565
3566 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3567 return 0;
3568 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003569 if (cpu_base == RX_CPU_BASE) {
3570 rc = tg3_rxcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003571 } else {
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00003572 /*
3573 * There is only an Rx CPU for the 5750 derivative in the
3574 * BCM4785.
3575 */
3576 if (tg3_flag(tp, IS_SSB_CORE))
3577 return 0;
3578
Nithin Sujir837c45b2013-03-06 17:02:30 +00003579 rc = tg3_txcpu_pause(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003580 }
3581
Nithin Sujir837c45b2013-03-06 17:02:30 +00003582 if (rc) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003583 netdev_err(tp->dev, "%s timed out, %s CPU\n",
Nithin Sujir837c45b2013-03-06 17:02:30 +00003584 __func__, cpu_base == RX_CPU_BASE ? "RX" : "TX");
Matt Carlson997b4f12011-08-31 11:44:53 +00003585 return -ENODEV;
3586 }
3587
3588 /* Clear firmware's nvram arbitration. */
3589 if (tg3_flag(tp, NVRAM))
3590 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3591 return 0;
3592}
3593
Nithin Sujir31f11a92013-03-06 17:02:33 +00003594static int tg3_fw_data_len(struct tg3 *tp,
3595 const struct tg3_firmware_hdr *fw_hdr)
3596{
3597 int fw_len;
3598
3599 /* Non fragmented firmware have one firmware header followed by a
3600 * contiguous chunk of data to be written. The length field in that
3601 * header is not the length of data to be written but the complete
3602 * length of the bss. The data length is determined based on
3603 * tp->fw->size minus headers.
3604 *
3605 * Fragmented firmware have a main header followed by multiple
3606 * fragments. Each fragment is identical to non fragmented firmware
3607 * with a firmware header followed by a contiguous chunk of data. In
3608 * the main header, the length field is unused and set to 0xffffffff.
3609 * In each fragment header the length is the entire size of that
3610 * fragment i.e. fragment data + header length. Data length is
3611 * therefore length field in the header minus TG3_FW_HDR_LEN.
3612 */
3613 if (tp->fw_len == 0xffffffff)
3614 fw_len = be32_to_cpu(fw_hdr->len);
3615 else
3616 fw_len = tp->fw->size;
3617
3618 return (fw_len - TG3_FW_HDR_LEN) / sizeof(u32);
3619}
3620
Matt Carlson997b4f12011-08-31 11:44:53 +00003621/* tp->lock is held. */
3622static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3623 u32 cpu_scratch_base, int cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003624 const struct tg3_firmware_hdr *fw_hdr)
Matt Carlson997b4f12011-08-31 11:44:53 +00003625{
Nithin Sujirc4dab502013-03-06 17:02:34 +00003626 int err, i;
Matt Carlson997b4f12011-08-31 11:44:53 +00003627 void (*write_op)(struct tg3 *, u32, u32);
Nithin Sujir31f11a92013-03-06 17:02:33 +00003628 int total_len = tp->fw->size;
Matt Carlson997b4f12011-08-31 11:44:53 +00003629
3630 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3631 netdev_err(tp->dev,
3632 "%s: Trying to load TX cpu firmware which is 5705\n",
3633 __func__);
3634 return -EINVAL;
3635 }
3636
Nithin Sujirc4dab502013-03-06 17:02:34 +00003637 if (tg3_flag(tp, 5705_PLUS) && tg3_asic_rev(tp) != ASIC_REV_57766)
Matt Carlson997b4f12011-08-31 11:44:53 +00003638 write_op = tg3_write_mem;
3639 else
3640 write_op = tg3_write_indirect_reg32;
3641
Nithin Sujirc4dab502013-03-06 17:02:34 +00003642 if (tg3_asic_rev(tp) != ASIC_REV_57766) {
3643 /* It is possible that bootcode is still loading at this point.
3644 * Get the nvram lock first before halting the cpu.
3645 */
3646 int lock_err = tg3_nvram_lock(tp);
3647 err = tg3_halt_cpu(tp, cpu_base);
3648 if (!lock_err)
3649 tg3_nvram_unlock(tp);
3650 if (err)
3651 goto out;
Matt Carlson997b4f12011-08-31 11:44:53 +00003652
Nithin Sujirc4dab502013-03-06 17:02:34 +00003653 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3654 write_op(tp, cpu_scratch_base + i, 0);
3655 tw32(cpu_base + CPU_STATE, 0xffffffff);
3656 tw32(cpu_base + CPU_MODE,
3657 tr32(cpu_base + CPU_MODE) | CPU_MODE_HALT);
3658 } else {
3659 /* Subtract additional main header for fragmented firmware and
3660 * advance to the first fragment
3661 */
3662 total_len -= TG3_FW_HDR_LEN;
3663 fw_hdr++;
3664 }
Nithin Sujir77997ea2013-03-06 17:02:32 +00003665
Nithin Sujir31f11a92013-03-06 17:02:33 +00003666 do {
3667 u32 *fw_data = (u32 *)(fw_hdr + 1);
3668 for (i = 0; i < tg3_fw_data_len(tp, fw_hdr); i++)
3669 write_op(tp, cpu_scratch_base +
3670 (be32_to_cpu(fw_hdr->base_addr) & 0xffff) +
3671 (i * sizeof(u32)),
3672 be32_to_cpu(fw_data[i]));
3673
3674 total_len -= be32_to_cpu(fw_hdr->len);
3675
3676 /* Advance to next fragment */
3677 fw_hdr = (struct tg3_firmware_hdr *)
3678 ((void *)fw_hdr + be32_to_cpu(fw_hdr->len));
3679 } while (total_len > 0);
Matt Carlson997b4f12011-08-31 11:44:53 +00003680
3681 err = 0;
3682
3683out:
3684 return err;
3685}
3686
3687/* tp->lock is held. */
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003688static int tg3_pause_cpu_and_set_pc(struct tg3 *tp, u32 cpu_base, u32 pc)
3689{
3690 int i;
3691 const int iters = 5;
3692
3693 tw32(cpu_base + CPU_STATE, 0xffffffff);
3694 tw32_f(cpu_base + CPU_PC, pc);
3695
3696 for (i = 0; i < iters; i++) {
3697 if (tr32(cpu_base + CPU_PC) == pc)
3698 break;
3699 tw32(cpu_base + CPU_STATE, 0xffffffff);
3700 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3701 tw32_f(cpu_base + CPU_PC, pc);
3702 udelay(1000);
3703 }
3704
3705 return (i == iters) ? -EBUSY : 0;
3706}
3707
3708/* tp->lock is held. */
Matt Carlson997b4f12011-08-31 11:44:53 +00003709static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3710{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003711 const struct tg3_firmware_hdr *fw_hdr;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003712 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003713
Nithin Sujir77997ea2013-03-06 17:02:32 +00003714 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003715
3716 /* Firmware blob starts with version numbers, followed by
3717 start address and length. We are setting complete length.
3718 length = end_address_of_bss - start_address_of_text.
3719 Remainder is the blob to be loaded contiguously
3720 from start address. */
3721
Matt Carlson997b4f12011-08-31 11:44:53 +00003722 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3723 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003724 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003725 if (err)
3726 return err;
3727
3728 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3729 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003730 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003731 if (err)
3732 return err;
3733
3734 /* Now startup only the RX cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003735 err = tg3_pause_cpu_and_set_pc(tp, RX_CPU_BASE,
3736 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003737 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003738 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3739 "should be %08x\n", __func__,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003740 tr32(RX_CPU_BASE + CPU_PC),
3741 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003742 return -ENODEV;
3743 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003744
3745 tg3_rxcpu_resume(tp);
Matt Carlson997b4f12011-08-31 11:44:53 +00003746
3747 return 0;
3748}
3749
Nithin Sujirc4dab502013-03-06 17:02:34 +00003750static int tg3_validate_rxcpu_state(struct tg3 *tp)
3751{
3752 const int iters = 1000;
3753 int i;
3754 u32 val;
3755
3756 /* Wait for boot code to complete initialization and enter service
3757 * loop. It is then safe to download service patches
3758 */
3759 for (i = 0; i < iters; i++) {
3760 if (tr32(RX_CPU_HWBKPT) == TG3_SBROM_IN_SERVICE_LOOP)
3761 break;
3762
3763 udelay(10);
3764 }
3765
3766 if (i == iters) {
3767 netdev_err(tp->dev, "Boot code not ready for service patches\n");
3768 return -EBUSY;
3769 }
3770
3771 val = tg3_read_indirect_reg32(tp, TG3_57766_FW_HANDSHAKE);
3772 if (val & 0xff) {
3773 netdev_warn(tp->dev,
3774 "Other patches exist. Not downloading EEE patch\n");
3775 return -EEXIST;
3776 }
3777
3778 return 0;
3779}
3780
3781/* tp->lock is held. */
3782static void tg3_load_57766_firmware(struct tg3 *tp)
3783{
3784 struct tg3_firmware_hdr *fw_hdr;
3785
3786 if (!tg3_flag(tp, NO_NVRAM))
3787 return;
3788
3789 if (tg3_validate_rxcpu_state(tp))
3790 return;
3791
3792 if (!tp->fw)
3793 return;
3794
3795 /* This firmware blob has a different format than older firmware
3796 * releases as given below. The main difference is we have fragmented
3797 * data to be written to non-contiguous locations.
3798 *
3799 * In the beginning we have a firmware header identical to other
3800 * firmware which consists of version, base addr and length. The length
3801 * here is unused and set to 0xffffffff.
3802 *
3803 * This is followed by a series of firmware fragments which are
3804 * individually identical to previous firmware. i.e. they have the
3805 * firmware header and followed by data for that fragment. The version
3806 * field of the individual fragment header is unused.
3807 */
3808
3809 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
3810 if (be32_to_cpu(fw_hdr->base_addr) != TG3_57766_FW_BASE_ADDR)
3811 return;
3812
3813 if (tg3_rxcpu_pause(tp))
3814 return;
3815
3816 /* tg3_load_firmware_cpu() will always succeed for the 57766 */
3817 tg3_load_firmware_cpu(tp, 0, TG3_57766_FW_BASE_ADDR, 0, fw_hdr);
3818
3819 tg3_rxcpu_resume(tp);
3820}
3821
Matt Carlson997b4f12011-08-31 11:44:53 +00003822/* tp->lock is held. */
3823static int tg3_load_tso_firmware(struct tg3 *tp)
3824{
Nithin Sujir77997ea2013-03-06 17:02:32 +00003825 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson997b4f12011-08-31 11:44:53 +00003826 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003827 int err;
Matt Carlson997b4f12011-08-31 11:44:53 +00003828
Matt Carlson1caf13e2013-03-06 17:02:29 +00003829 if (!tg3_flag(tp, FW_TSO))
Matt Carlson997b4f12011-08-31 11:44:53 +00003830 return 0;
3831
Nithin Sujir77997ea2013-03-06 17:02:32 +00003832 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson997b4f12011-08-31 11:44:53 +00003833
3834 /* Firmware blob starts with version numbers, followed by
3835 start address and length. We are setting complete length.
3836 length = end_address_of_bss - start_address_of_text.
3837 Remainder is the blob to be loaded contiguously
3838 from start address. */
3839
Matt Carlson997b4f12011-08-31 11:44:53 +00003840 cpu_scratch_size = tp->fw_len;
Matt Carlson997b4f12011-08-31 11:44:53 +00003841
Joe Perches41535772013-02-16 11:20:04 +00003842 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003843 cpu_base = RX_CPU_BASE;
3844 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3845 } else {
3846 cpu_base = TX_CPU_BASE;
3847 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3848 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3849 }
3850
3851 err = tg3_load_firmware_cpu(tp, cpu_base,
3852 cpu_scratch_base, cpu_scratch_size,
Nithin Sujir77997ea2013-03-06 17:02:32 +00003853 fw_hdr);
Matt Carlson997b4f12011-08-31 11:44:53 +00003854 if (err)
3855 return err;
3856
3857 /* Now startup the cpu. */
Nithin Sujir77997ea2013-03-06 17:02:32 +00003858 err = tg3_pause_cpu_and_set_pc(tp, cpu_base,
3859 be32_to_cpu(fw_hdr->base_addr));
Nithin Sujirf4bffb22013-03-06 17:02:31 +00003860 if (err) {
Matt Carlson997b4f12011-08-31 11:44:53 +00003861 netdev_err(tp->dev,
3862 "%s fails to set CPU PC, is %08x should be %08x\n",
Nithin Sujir77997ea2013-03-06 17:02:32 +00003863 __func__, tr32(cpu_base + CPU_PC),
3864 be32_to_cpu(fw_hdr->base_addr));
Matt Carlson997b4f12011-08-31 11:44:53 +00003865 return -ENODEV;
3866 }
Nithin Sujir837c45b2013-03-06 17:02:30 +00003867
3868 tg3_resume_cpu(tp, cpu_base);
Matt Carlson997b4f12011-08-31 11:44:53 +00003869 return 0;
3870}
3871
3872
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003873/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00003874static void __tg3_set_mac_addr(struct tg3 *tp, bool skip_mac_1)
Matt Carlson3f007892008-11-03 16:51:36 -08003875{
3876 u32 addr_high, addr_low;
3877 int i;
3878
3879 addr_high = ((tp->dev->dev_addr[0] << 8) |
3880 tp->dev->dev_addr[1]);
3881 addr_low = ((tp->dev->dev_addr[2] << 24) |
3882 (tp->dev->dev_addr[3] << 16) |
3883 (tp->dev->dev_addr[4] << 8) |
3884 (tp->dev->dev_addr[5] << 0));
3885 for (i = 0; i < 4; i++) {
3886 if (i == 1 && skip_mac_1)
3887 continue;
3888 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3889 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3890 }
3891
Joe Perches41535772013-02-16 11:20:04 +00003892 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
3893 tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson3f007892008-11-03 16:51:36 -08003894 for (i = 0; i < 12; i++) {
3895 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3896 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3897 }
3898 }
3899
3900 addr_high = (tp->dev->dev_addr[0] +
3901 tp->dev->dev_addr[1] +
3902 tp->dev->dev_addr[2] +
3903 tp->dev->dev_addr[3] +
3904 tp->dev->dev_addr[4] +
3905 tp->dev->dev_addr[5]) &
3906 TX_BACKOFF_SEED_MASK;
3907 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3908}
3909
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003910static void tg3_enable_register_access(struct tg3 *tp)
3911{
3912 /*
3913 * Make sure register accesses (indirect or otherwise) will function
3914 * correctly.
3915 */
3916 pci_write_config_dword(tp->pdev,
3917 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3918}
3919
3920static int tg3_power_up(struct tg3 *tp)
3921{
Matt Carlsonbed98292011-07-13 09:27:29 +00003922 int err;
3923
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003924 tg3_enable_register_access(tp);
3925
Matt Carlsonbed98292011-07-13 09:27:29 +00003926 err = pci_set_power_state(tp->pdev, PCI_D0);
3927 if (!err) {
3928 /* Switch out of Vaux if it is a NIC */
3929 tg3_pwrsrc_switch_to_vmain(tp);
3930 } else {
3931 netdev_err(tp->dev, "Transition to D0 failed\n");
3932 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003933
Matt Carlsonbed98292011-07-13 09:27:29 +00003934 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003935}
3936
Joe Perches953c96e2013-04-09 10:18:14 +00003937static int tg3_setup_phy(struct tg3 *, bool);
Matt Carlson4b409522012-02-13 10:20:11 +00003938
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003939static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
3941 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003942 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003944 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003945
3946 /* Restore the CLKREQ setting. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06003947 if (tg3_flag(tp, CLKREQ_BUG))
3948 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
3949 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3952 tw32(TG3PCI_MISC_HOST_CTRL,
3953 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3954
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003955 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003956 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003957
Joe Perches63c3a662011-04-26 08:12:10 +00003958 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003959 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003960 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003961 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003962 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003963 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003964
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003965 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003966
Matt Carlson80096062010-08-02 11:26:06 +00003967 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003968
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003969 tp->link_config.speed = phydev->speed;
3970 tp->link_config.duplex = phydev->duplex;
3971 tp->link_config.autoneg = phydev->autoneg;
3972 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003973
3974 advertising = ADVERTISED_TP |
3975 ADVERTISED_Pause |
3976 ADVERTISED_Autoneg |
3977 ADVERTISED_10baseT_Half;
3978
Joe Perches63c3a662011-04-26 08:12:10 +00003979 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3980 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003981 advertising |=
3982 ADVERTISED_100baseT_Half |
3983 ADVERTISED_100baseT_Full |
3984 ADVERTISED_10baseT_Full;
3985 else
3986 advertising |= ADVERTISED_10baseT_Full;
3987 }
3988
3989 phydev->advertising = advertising;
3990
3991 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003992
3993 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003994 if (phyid != PHY_ID_BCMAC131) {
3995 phyid &= PHY_BCM_OUI_MASK;
3996 if (phyid == PHY_BCM_OUI_1 ||
3997 phyid == PHY_BCM_OUI_2 ||
3998 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003999 do_low_power = true;
4000 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07004001 }
Matt Carlsondd477002008-05-25 23:45:58 -07004002 } else {
Matt Carlson20232762008-12-21 20:18:56 -08004003 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08004004
Matt Carlsonc6700ce2012-02-13 15:20:15 +00004005 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00004006 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
Matt Carlson2855b9f2012-02-13 15:20:14 +00004008 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Joe Perches953c96e2013-04-09 10:18:14 +00004009 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 }
4011
Joe Perches41535772013-02-16 11:20:04 +00004012 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07004013 u32 val;
4014
4015 val = tr32(GRC_VCPU_EXT_CTRL);
4016 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00004017 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08004018 int i;
4019 u32 val;
4020
4021 for (i = 0; i < 200; i++) {
4022 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
4023 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
4024 break;
4025 msleep(1);
4026 }
4027 }
Joe Perches63c3a662011-04-26 08:12:10 +00004028 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07004029 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
4030 WOL_DRV_STATE_SHUTDOWN |
4031 WOL_DRV_WOL |
4032 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08004033
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004034 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 u32 mac_mode;
4036
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004037 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004038 if (do_low_power &&
4039 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
4040 tg3_phy_auxctl_write(tp,
4041 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
4042 MII_TG3_AUXCTL_PCTL_WOL_EN |
4043 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
4044 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07004045 udelay(40);
4046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004048 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07004049 mac_mode = MAC_MODE_PORT_MODE_GMII;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004050 else if (tp->phy_flags &
4051 TG3_PHYFLG_KEEP_LINK_ON_PWRDN) {
4052 if (tp->link_config.active_speed == SPEED_1000)
4053 mac_mode = MAC_MODE_PORT_MODE_GMII;
4054 else
4055 mac_mode = MAC_MODE_PORT_MODE_MII;
4056 } else
Michael Chan3f7045c2006-09-27 16:02:29 -07004057 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004059 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
Joe Perches41535772013-02-16 11:20:04 +00004060 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00004061 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004062 SPEED_100 : SPEED_10;
4063 if (tg3_5700_link_polarity(tp, speed))
4064 mac_mode |= MAC_MODE_LINK_POLARITY;
4065 else
4066 mac_mode &= ~MAC_MODE_LINK_POLARITY;
4067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 } else {
4069 mac_mode = MAC_MODE_PORT_MODE_TBI;
4070 }
4071
Joe Perches63c3a662011-04-26 08:12:10 +00004072 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 tw32(MAC_LED_CTRL, tp->led_ctrl);
4074
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004075 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00004076 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
4077 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08004078 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Joe Perches63c3a662011-04-26 08:12:10 +00004080 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00004081 mac_mode |= MAC_MODE_APE_TX_EN |
4082 MAC_MODE_APE_RX_EN |
4083 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07004084
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 tw32_f(MAC_MODE, mac_mode);
4086 udelay(100);
4087
4088 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
4089 udelay(10);
4090 }
4091
Joe Perches63c3a662011-04-26 08:12:10 +00004092 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Joe Perches41535772013-02-16 11:20:04 +00004093 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4094 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 u32 base_val;
4096
4097 base_val = tp->pci_clock_ctrl;
4098 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
4099 CLOCK_CTRL_TXCLK_DISABLE);
4100
Michael Chanb401e9e2005-12-19 16:27:04 -08004101 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
4102 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00004103 } else if (tg3_flag(tp, 5780_CLASS) ||
4104 tg3_flag(tp, CPMU_PRESENT) ||
Joe Perches41535772013-02-16 11:20:04 +00004105 tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07004106 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00004107 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 u32 newbits1, newbits2;
4109
Joe Perches41535772013-02-16 11:20:04 +00004110 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4111 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
4113 CLOCK_CTRL_TXCLK_DISABLE |
4114 CLOCK_CTRL_ALTCLK);
4115 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00004116 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 newbits1 = CLOCK_CTRL_625_CORE;
4118 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
4119 } else {
4120 newbits1 = CLOCK_CTRL_ALTCLK;
4121 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
4122 }
4123
Michael Chanb401e9e2005-12-19 16:27:04 -08004124 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
4125 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Michael Chanb401e9e2005-12-19 16:27:04 -08004127 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
4128 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Joe Perches63c3a662011-04-26 08:12:10 +00004130 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 u32 newbits3;
4132
Joe Perches41535772013-02-16 11:20:04 +00004133 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4134 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
4136 CLOCK_CTRL_TXCLK_DISABLE |
4137 CLOCK_CTRL_44MHZ_CORE);
4138 } else {
4139 newbits3 = CLOCK_CTRL_44MHZ_CORE;
4140 }
4141
Michael Chanb401e9e2005-12-19 16:27:04 -08004142 tw32_wait_f(TG3PCI_CLOCK_CTRL,
4143 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 }
4145 }
4146
Joe Perches63c3a662011-04-26 08:12:10 +00004147 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08004148 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08004149
Matt Carlsoncd0d7222011-07-13 09:27:33 +00004150 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
4152 /* Workaround for unstable PLL clock */
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004153 if ((!tg3_flag(tp, IS_SSB_CORE)) &&
Joe Perches41535772013-02-16 11:20:04 +00004154 ((tg3_chip_rev(tp) == CHIPREV_5750_AX) ||
4155 (tg3_chip_rev(tp) == CHIPREV_5750_BX))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 u32 val = tr32(0x7d00);
4157
4158 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
4159 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00004160 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08004161 int err;
4162
4163 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08004165 if (!err)
4166 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08004167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 }
4169
Michael Chanbbadf502006-04-06 21:46:34 -07004170 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
4171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 return 0;
4173}
4174
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004175static void tg3_power_down(struct tg3 *tp)
4176{
4177 tg3_power_down_prepare(tp);
4178
Joe Perches63c3a662011-04-26 08:12:10 +00004179 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00004180 pci_set_power_state(tp->pdev, PCI_D3hot);
4181}
4182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
4184{
4185 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
4186 case MII_TG3_AUX_STAT_10HALF:
4187 *speed = SPEED_10;
4188 *duplex = DUPLEX_HALF;
4189 break;
4190
4191 case MII_TG3_AUX_STAT_10FULL:
4192 *speed = SPEED_10;
4193 *duplex = DUPLEX_FULL;
4194 break;
4195
4196 case MII_TG3_AUX_STAT_100HALF:
4197 *speed = SPEED_100;
4198 *duplex = DUPLEX_HALF;
4199 break;
4200
4201 case MII_TG3_AUX_STAT_100FULL:
4202 *speed = SPEED_100;
4203 *duplex = DUPLEX_FULL;
4204 break;
4205
4206 case MII_TG3_AUX_STAT_1000HALF:
4207 *speed = SPEED_1000;
4208 *duplex = DUPLEX_HALF;
4209 break;
4210
4211 case MII_TG3_AUX_STAT_1000FULL:
4212 *speed = SPEED_1000;
4213 *duplex = DUPLEX_FULL;
4214 break;
4215
4216 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004217 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07004218 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
4219 SPEED_10;
4220 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
4221 DUPLEX_HALF;
4222 break;
4223 }
Matt Carlsone7405222012-02-13 15:20:16 +00004224 *speed = SPEED_UNKNOWN;
4225 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
Matt Carlson42b64a42011-05-19 12:12:49 +00004230static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231{
Matt Carlson42b64a42011-05-19 12:12:49 +00004232 int err = 0;
4233 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
Matt Carlson42b64a42011-05-19 12:12:49 +00004235 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00004236 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00004237 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238
Matt Carlson42b64a42011-05-19 12:12:49 +00004239 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
4240 if (err)
4241 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Matt Carlson4f272092011-12-14 11:09:57 +00004243 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4244 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004245
Joe Perches41535772013-02-16 11:20:04 +00004246 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4247 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)
Matt Carlson4f272092011-12-14 11:09:57 +00004248 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004249
Matt Carlson4f272092011-12-14 11:09:57 +00004250 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
4251 if (err)
4252 goto done;
4253 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004254
Matt Carlson42b64a42011-05-19 12:12:49 +00004255 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4256 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
Matt Carlson42b64a42011-05-19 12:12:49 +00004258 tw32(TG3_CPMU_EEE_MODE,
4259 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004260
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004261 err = tg3_phy_toggle_auxctl_smdsp(tp, true);
Matt Carlson42b64a42011-05-19 12:12:49 +00004262 if (!err) {
4263 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00004264
Matt Carlsona6b68da2010-12-06 08:28:52 +00004265 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00004266 /* Advertise 100-BaseTX EEE ability */
4267 if (advertise & ADVERTISED_100baseT_Full)
4268 val |= MDIO_AN_EEE_ADV_100TX;
4269 /* Advertise 1000-BaseT EEE ability */
4270 if (advertise & ADVERTISED_1000baseT_Full)
4271 val |= MDIO_AN_EEE_ADV_1000T;
4272 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00004273 if (err)
4274 val = 0;
4275
Joe Perches41535772013-02-16 11:20:04 +00004276 switch (tg3_asic_rev(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00004277 case ASIC_REV_5717:
4278 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00004279 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004280 case ASIC_REV_5719:
4281 /* If we advertised any eee advertisements above... */
4282 if (val)
4283 val = MII_TG3_DSP_TAP26_ALNOKO |
4284 MII_TG3_DSP_TAP26_RMRXSTO |
4285 MII_TG3_DSP_TAP26_OPCSINPT;
4286 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
4287 /* Fall through */
4288 case ASIC_REV_5720:
Michael Chanc65a17f2013-01-06 12:51:07 +00004289 case ASIC_REV_5762:
Matt Carlsonb715ce92011-07-20 10:20:52 +00004290 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
4291 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
4292 MII_TG3_DSP_CH34TP2_HIBW01);
4293 }
Matt Carlson52b02d02010-10-14 10:37:41 +00004294
Nithin Nayak Sujirdaf3ec62013-01-14 17:11:00 +00004295 err2 = tg3_phy_toggle_auxctl_smdsp(tp, false);
Matt Carlson42b64a42011-05-19 12:12:49 +00004296 if (!err)
4297 err = err2;
4298 }
4299
4300done:
4301 return err;
4302}
4303
4304static void tg3_phy_copper_begin(struct tg3 *tp)
4305{
Matt Carlsond13ba512012-02-22 12:35:19 +00004306 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
4307 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
4308 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00004309
Nithin Sujir942d1af2013-04-09 08:48:07 +00004310 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4311 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
Matt Carlsond13ba512012-02-22 12:35:19 +00004312 adv = ADVERTISED_10baseT_Half |
4313 ADVERTISED_10baseT_Full;
4314 if (tg3_flag(tp, WOL_SPEED_100MB))
4315 adv |= ADVERTISED_100baseT_Half |
4316 ADVERTISED_100baseT_Full;
Nithin Sujir942d1af2013-04-09 08:48:07 +00004317 if (tp->phy_flags & TG3_PHYFLG_1G_ON_VAUX_OK)
4318 adv |= ADVERTISED_1000baseT_Half |
4319 ADVERTISED_1000baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00004320
Matt Carlsond13ba512012-02-22 12:35:19 +00004321 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00004322 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00004323 adv = tp->link_config.advertising;
4324 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
4325 adv &= ~(ADVERTISED_1000baseT_Half |
4326 ADVERTISED_1000baseT_Full);
4327
4328 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00004329 }
4330
Matt Carlsond13ba512012-02-22 12:35:19 +00004331 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00004332
Nithin Sujir942d1af2013-04-09 08:48:07 +00004333 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
4334 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN)) {
4335 /* Normally during power down we want to autonegotiate
4336 * the lowest possible speed for WOL. However, to avoid
4337 * link flap, we leave it untouched.
4338 */
4339 return;
4340 }
4341
Matt Carlsond13ba512012-02-22 12:35:19 +00004342 tg3_writephy(tp, MII_BMCR,
4343 BMCR_ANENABLE | BMCR_ANRESTART);
4344 } else {
4345 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 u32 bmcr, orig_bmcr;
4347
4348 tp->link_config.active_speed = tp->link_config.speed;
4349 tp->link_config.active_duplex = tp->link_config.duplex;
4350
Nithin Sujir7c6cdea2013-03-12 15:32:48 +00004351 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
4352 /* With autoneg disabled, 5715 only links up when the
4353 * advertisement register has the configured speed
4354 * enabled.
4355 */
4356 tg3_writephy(tp, MII_ADVERTISE, ADVERTISE_ALL);
4357 }
4358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 bmcr = 0;
4360 switch (tp->link_config.speed) {
4361 default:
4362 case SPEED_10:
4363 break;
4364
4365 case SPEED_100:
4366 bmcr |= BMCR_SPEED100;
4367 break;
4368
4369 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00004370 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
4374 if (tp->link_config.duplex == DUPLEX_FULL)
4375 bmcr |= BMCR_FULLDPLX;
4376
4377 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
4378 (bmcr != orig_bmcr)) {
4379 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
4380 for (i = 0; i < 1500; i++) {
4381 u32 tmp;
4382
4383 udelay(10);
4384 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
4385 tg3_readphy(tp, MII_BMSR, &tmp))
4386 continue;
4387 if (!(tmp & BMSR_LSTATUS)) {
4388 udelay(40);
4389 break;
4390 }
4391 }
4392 tg3_writephy(tp, MII_BMCR, bmcr);
4393 udelay(40);
4394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 }
4396}
4397
Nithin Sujirfdad8de2013-04-09 08:48:08 +00004398static int tg3_phy_pull_config(struct tg3 *tp)
4399{
4400 int err;
4401 u32 val;
4402
4403 err = tg3_readphy(tp, MII_BMCR, &val);
4404 if (err)
4405 goto done;
4406
4407 if (!(val & BMCR_ANENABLE)) {
4408 tp->link_config.autoneg = AUTONEG_DISABLE;
4409 tp->link_config.advertising = 0;
4410 tg3_flag_clear(tp, PAUSE_AUTONEG);
4411
4412 err = -EIO;
4413
4414 switch (val & (BMCR_SPEED1000 | BMCR_SPEED100)) {
4415 case 0:
4416 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4417 goto done;
4418
4419 tp->link_config.speed = SPEED_10;
4420 break;
4421 case BMCR_SPEED100:
4422 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
4423 goto done;
4424
4425 tp->link_config.speed = SPEED_100;
4426 break;
4427 case BMCR_SPEED1000:
4428 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4429 tp->link_config.speed = SPEED_1000;
4430 break;
4431 }
4432 /* Fall through */
4433 default:
4434 goto done;
4435 }
4436
4437 if (val & BMCR_FULLDPLX)
4438 tp->link_config.duplex = DUPLEX_FULL;
4439 else
4440 tp->link_config.duplex = DUPLEX_HALF;
4441
4442 tp->link_config.flowctrl = FLOW_CTRL_RX | FLOW_CTRL_TX;
4443
4444 err = 0;
4445 goto done;
4446 }
4447
4448 tp->link_config.autoneg = AUTONEG_ENABLE;
4449 tp->link_config.advertising = ADVERTISED_Autoneg;
4450 tg3_flag_set(tp, PAUSE_AUTONEG);
4451
4452 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4453 u32 adv;
4454
4455 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4456 if (err)
4457 goto done;
4458
4459 adv = mii_adv_to_ethtool_adv_t(val & ADVERTISE_ALL);
4460 tp->link_config.advertising |= adv | ADVERTISED_TP;
4461
4462 tp->link_config.flowctrl = tg3_decode_flowctrl_1000T(val);
4463 } else {
4464 tp->link_config.advertising |= ADVERTISED_FIBRE;
4465 }
4466
4467 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4468 u32 adv;
4469
4470 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
4471 err = tg3_readphy(tp, MII_CTRL1000, &val);
4472 if (err)
4473 goto done;
4474
4475 adv = mii_ctrl1000_to_ethtool_adv_t(val);
4476 } else {
4477 err = tg3_readphy(tp, MII_ADVERTISE, &val);
4478 if (err)
4479 goto done;
4480
4481 adv = tg3_decode_flowctrl_1000X(val);
4482 tp->link_config.flowctrl = adv;
4483
4484 val &= (ADVERTISE_1000XHALF | ADVERTISE_1000XFULL);
4485 adv = mii_adv_to_ethtool_adv_x(val);
4486 }
4487
4488 tp->link_config.advertising |= adv;
4489 }
4490
4491done:
4492 return err;
4493}
4494
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495static int tg3_init_5401phy_dsp(struct tg3 *tp)
4496{
4497 int err;
4498
4499 /* Turn off tap power management. */
4500 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004501 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00004503 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
4504 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
4505 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
4506 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
4507 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
4509 udelay(40);
4510
4511 return err;
4512}
4513
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004514static bool tg3_phy_eee_config_ok(struct tg3 *tp)
4515{
4516 u32 val;
4517 u32 tgtadv = 0;
4518 u32 advertising = tp->link_config.advertising;
4519
4520 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
4521 return true;
4522
4523 if (tg3_phy_cl45_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, &val))
4524 return false;
4525
4526 val &= (MDIO_AN_EEE_ADV_100TX | MDIO_AN_EEE_ADV_1000T);
4527
4528
4529 if (advertising & ADVERTISED_100baseT_Full)
4530 tgtadv |= MDIO_AN_EEE_ADV_100TX;
4531 if (advertising & ADVERTISED_1000baseT_Full)
4532 tgtadv |= MDIO_AN_EEE_ADV_1000T;
4533
4534 if (val != tgtadv)
4535 return false;
4536
4537 return true;
4538}
4539
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004540static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004542 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08004543
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004544 advertising = tp->link_config.advertising;
4545 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004547 advmsk = ADVERTISE_ALL;
4548 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004549 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004550 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004553 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4554 return false;
4555
4556 if ((*lcladv & advmsk) != tgtadv)
4557 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004558
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004559 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 u32 tg3_ctrl;
4561
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004562 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004563
Matt Carlson221c5632011-06-13 13:39:01 +00004564 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004565 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Matt Carlson3198e072012-02-13 15:20:10 +00004567 if (tgtadv &&
Joe Perches41535772013-02-16 11:20:04 +00004568 (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4569 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0)) {
Matt Carlson3198e072012-02-13 15:20:10 +00004570 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4571 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4572 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4573 } else {
4574 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4575 }
4576
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004577 if (tg3_ctrl != tgtadv)
4578 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004580
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004581 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004582}
4583
Matt Carlson859edb22011-12-08 14:40:16 +00004584static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4585{
4586 u32 lpeth = 0;
4587
4588 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4589 u32 val;
4590
4591 if (tg3_readphy(tp, MII_STAT1000, &val))
4592 return false;
4593
4594 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4595 }
4596
4597 if (tg3_readphy(tp, MII_LPA, rmtadv))
4598 return false;
4599
4600 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4601 tp->link_config.rmt_adv = lpeth;
4602
4603 return true;
4604}
4605
Joe Perches953c96e2013-04-09 10:18:14 +00004606static bool tg3_test_and_report_link_chg(struct tg3 *tp, bool curr_link_up)
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004607{
4608 if (curr_link_up != tp->link_up) {
4609 if (curr_link_up) {
Nithin Sujir84421b92013-03-08 08:01:24 +00004610 netif_carrier_on(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004611 } else {
Nithin Sujir84421b92013-03-08 08:01:24 +00004612 netif_carrier_off(tp->dev);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004613 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
4614 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
4615 }
4616
4617 tg3_link_report(tp);
4618 return true;
4619 }
4620
4621 return false;
4622}
4623
Michael Chan3310e242013-04-09 08:48:05 +00004624static void tg3_clear_mac_status(struct tg3 *tp)
4625{
4626 tw32(MAC_EVENT, 0);
4627
4628 tw32_f(MAC_STATUS,
4629 MAC_STATUS_SYNC_CHANGED |
4630 MAC_STATUS_CFG_CHANGED |
4631 MAC_STATUS_MI_COMPLETION |
4632 MAC_STATUS_LNKSTATE_CHANGED);
4633 udelay(40);
4634}
4635
Joe Perches953c96e2013-04-09 10:18:14 +00004636static int tg3_setup_copper_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637{
Joe Perches953c96e2013-04-09 10:18:14 +00004638 bool current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004639 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004640 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 u16 current_speed;
4642 u8 current_duplex;
4643 int i, err;
4644
Michael Chan3310e242013-04-09 08:48:05 +00004645 tg3_clear_mac_status(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Matt Carlson8ef21422008-05-02 16:47:53 -07004647 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4648 tw32_f(MAC_MI_MODE,
4649 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4650 udelay(80);
4651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004653 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
4655 /* Some third-party PHYs need to be reset on link going
4656 * down.
4657 */
Joe Perches41535772013-02-16 11:20:04 +00004658 if ((tg3_asic_rev(tp) == ASIC_REV_5703 ||
4659 tg3_asic_rev(tp) == ASIC_REV_5704 ||
4660 tg3_asic_rev(tp) == ASIC_REV_5705) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004661 tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 tg3_readphy(tp, MII_BMSR, &bmsr);
4663 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4664 !(bmsr & BMSR_LSTATUS))
Joe Perches953c96e2013-04-09 10:18:14 +00004665 force_reset = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 }
4667 if (force_reset)
4668 tg3_phy_reset(tp);
4669
Matt Carlson79eb6902010-02-17 15:17:03 +00004670 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 tg3_readphy(tp, MII_BMSR, &bmsr);
4672 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004673 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 bmsr = 0;
4675
4676 if (!(bmsr & BMSR_LSTATUS)) {
4677 err = tg3_init_5401phy_dsp(tp);
4678 if (err)
4679 return err;
4680
4681 tg3_readphy(tp, MII_BMSR, &bmsr);
4682 for (i = 0; i < 1000; i++) {
4683 udelay(10);
4684 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4685 (bmsr & BMSR_LSTATUS)) {
4686 udelay(40);
4687 break;
4688 }
4689 }
4690
Matt Carlson79eb6902010-02-17 15:17:03 +00004691 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4692 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 !(bmsr & BMSR_LSTATUS) &&
4694 tp->link_config.active_speed == SPEED_1000) {
4695 err = tg3_phy_reset(tp);
4696 if (!err)
4697 err = tg3_init_5401phy_dsp(tp);
4698 if (err)
4699 return err;
4700 }
4701 }
Joe Perches41535772013-02-16 11:20:04 +00004702 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
4703 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 /* 5701 {A0,B0} CRC bug workaround */
4705 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004706 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4707 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4708 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 }
4710
4711 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004712 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4713 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004715 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004717 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4719
Joe Perches41535772013-02-16 11:20:04 +00004720 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
4721 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4723 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4724 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4725 else
4726 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4727 }
4728
Joe Perches953c96e2013-04-09 10:18:14 +00004729 current_link_up = false;
Matt Carlsone7405222012-02-13 15:20:16 +00004730 current_speed = SPEED_UNKNOWN;
4731 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004732 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004733 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004735 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004736 err = tg3_phy_auxctl_read(tp,
4737 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4738 &val);
4739 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004740 tg3_phy_auxctl_write(tp,
4741 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4742 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 goto relink;
4744 }
4745 }
4746
4747 bmsr = 0;
4748 for (i = 0; i < 100; i++) {
4749 tg3_readphy(tp, MII_BMSR, &bmsr);
4750 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4751 (bmsr & BMSR_LSTATUS))
4752 break;
4753 udelay(40);
4754 }
4755
4756 if (bmsr & BMSR_LSTATUS) {
4757 u32 aux_stat, bmcr;
4758
4759 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4760 for (i = 0; i < 2000; i++) {
4761 udelay(10);
4762 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4763 aux_stat)
4764 break;
4765 }
4766
4767 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4768 &current_speed,
4769 &current_duplex);
4770
4771 bmcr = 0;
4772 for (i = 0; i < 200; i++) {
4773 tg3_readphy(tp, MII_BMCR, &bmcr);
4774 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4775 continue;
4776 if (bmcr && bmcr != 0x7fff)
4777 break;
4778 udelay(10);
4779 }
4780
Matt Carlsonef167e22007-12-20 20:10:01 -08004781 lcl_adv = 0;
4782 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Matt Carlsonef167e22007-12-20 20:10:01 -08004784 tp->link_config.active_speed = current_speed;
4785 tp->link_config.active_duplex = current_duplex;
4786
4787 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004788 bool eee_config_ok = tg3_phy_eee_config_ok(tp);
4789
Matt Carlsonef167e22007-12-20 20:10:01 -08004790 if ((bmcr & BMCR_ANENABLE) &&
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004791 eee_config_ok &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004792 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004793 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Joe Perches953c96e2013-04-09 10:18:14 +00004794 current_link_up = true;
Nithin Sujired1ff5c2013-04-09 08:48:09 +00004795
4796 /* EEE settings changes take effect only after a phy
4797 * reset. If we have skipped a reset due to Link Flap
4798 * Avoidance being enabled, do it now.
4799 */
4800 if (!eee_config_ok &&
4801 (tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
4802 !force_reset)
4803 tg3_phy_reset(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 } else {
4805 if (!(bmcr & BMCR_ANENABLE) &&
4806 tp->link_config.speed == current_speed &&
Nithin Sujirf0fcd7a2013-04-09 08:48:01 +00004807 tp->link_config.duplex == current_duplex) {
Joe Perches953c96e2013-04-09 10:18:14 +00004808 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 }
4810 }
4811
Joe Perches953c96e2013-04-09 10:18:14 +00004812 if (current_link_up &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004813 tp->link_config.active_duplex == DUPLEX_FULL) {
4814 u32 reg, bit;
4815
4816 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4817 reg = MII_TG3_FET_GEN_STAT;
4818 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4819 } else {
4820 reg = MII_TG3_EXT_STAT;
4821 bit = MII_TG3_EXT_STAT_MDIX;
4822 }
4823
4824 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4825 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4826
Matt Carlsonef167e22007-12-20 20:10:01 -08004827 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 }
4830
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831relink:
Joe Perches953c96e2013-04-09 10:18:14 +00004832 if (!current_link_up || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 tg3_phy_copper_begin(tp);
4834
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004835 if (tg3_flag(tp, ROBOSWITCH)) {
Joe Perches953c96e2013-04-09 10:18:14 +00004836 current_link_up = true;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004837 /* FIXME: when BCM5325 switch is used use 100 MBit/s */
4838 current_speed = SPEED_1000;
4839 current_duplex = DUPLEX_FULL;
4840 tp->link_config.active_speed = current_speed;
4841 tp->link_config.active_duplex = current_duplex;
4842 }
4843
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004844 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004845 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4846 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Joe Perches953c96e2013-04-09 10:18:14 +00004847 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 }
4849
4850 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
Joe Perches953c96e2013-04-09 10:18:14 +00004851 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 if (tp->link_config.active_speed == SPEED_100 ||
4853 tp->link_config.active_speed == SPEED_10)
4854 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4855 else
4856 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004857 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004858 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4859 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4861
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00004862 /* In order for the 5750 core in BCM4785 chip to work properly
4863 * in RGMII mode, the Led Control Register must be set up.
4864 */
4865 if (tg3_flag(tp, RGMII_MODE)) {
4866 u32 led_ctrl = tr32(MAC_LED_CTRL);
4867 led_ctrl &= ~(LED_CTRL_1000MBPS_ON | LED_CTRL_100MBPS_ON);
4868
4869 if (tp->link_config.active_speed == SPEED_10)
4870 led_ctrl |= LED_CTRL_LNKLED_OVERRIDE;
4871 else if (tp->link_config.active_speed == SPEED_100)
4872 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4873 LED_CTRL_100MBPS_ON);
4874 else if (tp->link_config.active_speed == SPEED_1000)
4875 led_ctrl |= (LED_CTRL_LNKLED_OVERRIDE |
4876 LED_CTRL_1000MBPS_ON);
4877
4878 tw32(MAC_LED_CTRL, led_ctrl);
4879 udelay(40);
4880 }
4881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4883 if (tp->link_config.active_duplex == DUPLEX_HALF)
4884 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4885
Joe Perches41535772013-02-16 11:20:04 +00004886 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Joe Perches953c96e2013-04-09 10:18:14 +00004887 if (current_link_up &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004888 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004890 else
4891 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 }
4893
4894 /* ??? Without this setting Netgear GA302T PHY does not
4895 * ??? send/receive packets...
4896 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004897 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Joe Perches41535772013-02-16 11:20:04 +00004898 tg3_chip_rev_id(tp) == CHIPREV_ID_5700_ALTIMA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4900 tw32_f(MAC_MI_MODE, tp->mi_mode);
4901 udelay(80);
4902 }
4903
4904 tw32_f(MAC_MODE, tp->mac_mode);
4905 udelay(40);
4906
Matt Carlson52b02d02010-10-14 10:37:41 +00004907 tg3_phy_eee_adjust(tp, current_link_up);
4908
Joe Perches63c3a662011-04-26 08:12:10 +00004909 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 /* Polled via timer. */
4911 tw32_f(MAC_EVENT, 0);
4912 } else {
4913 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4914 }
4915 udelay(40);
4916
Joe Perches41535772013-02-16 11:20:04 +00004917 if (tg3_asic_rev(tp) == ASIC_REV_5700 &&
Joe Perches953c96e2013-04-09 10:18:14 +00004918 current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004920 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 udelay(120);
4922 tw32_f(MAC_STATUS,
4923 (MAC_STATUS_SYNC_CHANGED |
4924 MAC_STATUS_CFG_CHANGED));
4925 udelay(40);
4926 tg3_write_mem(tp,
4927 NIC_SRAM_FIRMWARE_MBOX,
4928 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4929 }
4930
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004931 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004932 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004933 if (tp->link_config.active_speed == SPEED_100 ||
4934 tp->link_config.active_speed == SPEED_10)
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004935 pcie_capability_clear_word(tp->pdev, PCI_EXP_LNKCTL,
4936 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004937 else
Jiang Liu0f49bfb2012-08-20 13:28:20 -06004938 pcie_capability_set_word(tp->pdev, PCI_EXP_LNKCTL,
4939 PCI_EXP_LNKCTL_CLKREQ_EN);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004940 }
4941
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00004942 tg3_test_and_report_link_chg(tp, current_link_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
4944 return 0;
4945}
4946
4947struct tg3_fiber_aneginfo {
4948 int state;
4949#define ANEG_STATE_UNKNOWN 0
4950#define ANEG_STATE_AN_ENABLE 1
4951#define ANEG_STATE_RESTART_INIT 2
4952#define ANEG_STATE_RESTART 3
4953#define ANEG_STATE_DISABLE_LINK_OK 4
4954#define ANEG_STATE_ABILITY_DETECT_INIT 5
4955#define ANEG_STATE_ABILITY_DETECT 6
4956#define ANEG_STATE_ACK_DETECT_INIT 7
4957#define ANEG_STATE_ACK_DETECT 8
4958#define ANEG_STATE_COMPLETE_ACK_INIT 9
4959#define ANEG_STATE_COMPLETE_ACK 10
4960#define ANEG_STATE_IDLE_DETECT_INIT 11
4961#define ANEG_STATE_IDLE_DETECT 12
4962#define ANEG_STATE_LINK_OK 13
4963#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4964#define ANEG_STATE_NEXT_PAGE_WAIT 15
4965
4966 u32 flags;
4967#define MR_AN_ENABLE 0x00000001
4968#define MR_RESTART_AN 0x00000002
4969#define MR_AN_COMPLETE 0x00000004
4970#define MR_PAGE_RX 0x00000008
4971#define MR_NP_LOADED 0x00000010
4972#define MR_TOGGLE_TX 0x00000020
4973#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4974#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4975#define MR_LP_ADV_SYM_PAUSE 0x00000100
4976#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4977#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4978#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4979#define MR_LP_ADV_NEXT_PAGE 0x00001000
4980#define MR_TOGGLE_RX 0x00002000
4981#define MR_NP_RX 0x00004000
4982
4983#define MR_LINK_OK 0x80000000
4984
4985 unsigned long link_time, cur_time;
4986
4987 u32 ability_match_cfg;
4988 int ability_match_count;
4989
4990 char ability_match, idle_match, ack_match;
4991
4992 u32 txconfig, rxconfig;
4993#define ANEG_CFG_NP 0x00000080
4994#define ANEG_CFG_ACK 0x00000040
4995#define ANEG_CFG_RF2 0x00000020
4996#define ANEG_CFG_RF1 0x00000010
4997#define ANEG_CFG_PS2 0x00000001
4998#define ANEG_CFG_PS1 0x00008000
4999#define ANEG_CFG_HD 0x00004000
5000#define ANEG_CFG_FD 0x00002000
5001#define ANEG_CFG_INVAL 0x00001f06
5002
5003};
5004#define ANEG_OK 0
5005#define ANEG_DONE 1
5006#define ANEG_TIMER_ENAB 2
5007#define ANEG_FAILED -1
5008
5009#define ANEG_STATE_SETTLE_TIME 10000
5010
5011static int tg3_fiber_aneg_smachine(struct tg3 *tp,
5012 struct tg3_fiber_aneginfo *ap)
5013{
Matt Carlson5be73b42007-12-20 20:09:29 -08005014 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 unsigned long delta;
5016 u32 rx_cfg_reg;
5017 int ret;
5018
5019 if (ap->state == ANEG_STATE_UNKNOWN) {
5020 ap->rxconfig = 0;
5021 ap->link_time = 0;
5022 ap->cur_time = 0;
5023 ap->ability_match_cfg = 0;
5024 ap->ability_match_count = 0;
5025 ap->ability_match = 0;
5026 ap->idle_match = 0;
5027 ap->ack_match = 0;
5028 }
5029 ap->cur_time++;
5030
5031 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
5032 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
5033
5034 if (rx_cfg_reg != ap->ability_match_cfg) {
5035 ap->ability_match_cfg = rx_cfg_reg;
5036 ap->ability_match = 0;
5037 ap->ability_match_count = 0;
5038 } else {
5039 if (++ap->ability_match_count > 1) {
5040 ap->ability_match = 1;
5041 ap->ability_match_cfg = rx_cfg_reg;
5042 }
5043 }
5044 if (rx_cfg_reg & ANEG_CFG_ACK)
5045 ap->ack_match = 1;
5046 else
5047 ap->ack_match = 0;
5048
5049 ap->idle_match = 0;
5050 } else {
5051 ap->idle_match = 1;
5052 ap->ability_match_cfg = 0;
5053 ap->ability_match_count = 0;
5054 ap->ability_match = 0;
5055 ap->ack_match = 0;
5056
5057 rx_cfg_reg = 0;
5058 }
5059
5060 ap->rxconfig = rx_cfg_reg;
5061 ret = ANEG_OK;
5062
Matt Carlson33f401a2010-04-05 10:19:27 +00005063 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 case ANEG_STATE_UNKNOWN:
5065 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
5066 ap->state = ANEG_STATE_AN_ENABLE;
5067
5068 /* fallthru */
5069 case ANEG_STATE_AN_ENABLE:
5070 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
5071 if (ap->flags & MR_AN_ENABLE) {
5072 ap->link_time = 0;
5073 ap->cur_time = 0;
5074 ap->ability_match_cfg = 0;
5075 ap->ability_match_count = 0;
5076 ap->ability_match = 0;
5077 ap->idle_match = 0;
5078 ap->ack_match = 0;
5079
5080 ap->state = ANEG_STATE_RESTART_INIT;
5081 } else {
5082 ap->state = ANEG_STATE_DISABLE_LINK_OK;
5083 }
5084 break;
5085
5086 case ANEG_STATE_RESTART_INIT:
5087 ap->link_time = ap->cur_time;
5088 ap->flags &= ~(MR_NP_LOADED);
5089 ap->txconfig = 0;
5090 tw32(MAC_TX_AUTO_NEG, 0);
5091 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5092 tw32_f(MAC_MODE, tp->mac_mode);
5093 udelay(40);
5094
5095 ret = ANEG_TIMER_ENAB;
5096 ap->state = ANEG_STATE_RESTART;
5097
5098 /* fallthru */
5099 case ANEG_STATE_RESTART:
5100 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00005101 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00005103 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 break;
5106
5107 case ANEG_STATE_DISABLE_LINK_OK:
5108 ret = ANEG_DONE;
5109 break;
5110
5111 case ANEG_STATE_ABILITY_DETECT_INIT:
5112 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08005113 ap->txconfig = ANEG_CFG_FD;
5114 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5115 if (flowctrl & ADVERTISE_1000XPAUSE)
5116 ap->txconfig |= ANEG_CFG_PS1;
5117 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5118 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5120 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5121 tw32_f(MAC_MODE, tp->mac_mode);
5122 udelay(40);
5123
5124 ap->state = ANEG_STATE_ABILITY_DETECT;
5125 break;
5126
5127 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00005128 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 break;
5131
5132 case ANEG_STATE_ACK_DETECT_INIT:
5133 ap->txconfig |= ANEG_CFG_ACK;
5134 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
5135 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
5136 tw32_f(MAC_MODE, tp->mac_mode);
5137 udelay(40);
5138
5139 ap->state = ANEG_STATE_ACK_DETECT;
5140
5141 /* fallthru */
5142 case ANEG_STATE_ACK_DETECT:
5143 if (ap->ack_match != 0) {
5144 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
5145 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
5146 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
5147 } else {
5148 ap->state = ANEG_STATE_AN_ENABLE;
5149 }
5150 } else if (ap->ability_match != 0 &&
5151 ap->rxconfig == 0) {
5152 ap->state = ANEG_STATE_AN_ENABLE;
5153 }
5154 break;
5155
5156 case ANEG_STATE_COMPLETE_ACK_INIT:
5157 if (ap->rxconfig & ANEG_CFG_INVAL) {
5158 ret = ANEG_FAILED;
5159 break;
5160 }
5161 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
5162 MR_LP_ADV_HALF_DUPLEX |
5163 MR_LP_ADV_SYM_PAUSE |
5164 MR_LP_ADV_ASYM_PAUSE |
5165 MR_LP_ADV_REMOTE_FAULT1 |
5166 MR_LP_ADV_REMOTE_FAULT2 |
5167 MR_LP_ADV_NEXT_PAGE |
5168 MR_TOGGLE_RX |
5169 MR_NP_RX);
5170 if (ap->rxconfig & ANEG_CFG_FD)
5171 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
5172 if (ap->rxconfig & ANEG_CFG_HD)
5173 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
5174 if (ap->rxconfig & ANEG_CFG_PS1)
5175 ap->flags |= MR_LP_ADV_SYM_PAUSE;
5176 if (ap->rxconfig & ANEG_CFG_PS2)
5177 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
5178 if (ap->rxconfig & ANEG_CFG_RF1)
5179 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
5180 if (ap->rxconfig & ANEG_CFG_RF2)
5181 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
5182 if (ap->rxconfig & ANEG_CFG_NP)
5183 ap->flags |= MR_LP_ADV_NEXT_PAGE;
5184
5185 ap->link_time = ap->cur_time;
5186
5187 ap->flags ^= (MR_TOGGLE_TX);
5188 if (ap->rxconfig & 0x0008)
5189 ap->flags |= MR_TOGGLE_RX;
5190 if (ap->rxconfig & ANEG_CFG_NP)
5191 ap->flags |= MR_NP_RX;
5192 ap->flags |= MR_PAGE_RX;
5193
5194 ap->state = ANEG_STATE_COMPLETE_ACK;
5195 ret = ANEG_TIMER_ENAB;
5196 break;
5197
5198 case ANEG_STATE_COMPLETE_ACK:
5199 if (ap->ability_match != 0 &&
5200 ap->rxconfig == 0) {
5201 ap->state = ANEG_STATE_AN_ENABLE;
5202 break;
5203 }
5204 delta = ap->cur_time - ap->link_time;
5205 if (delta > ANEG_STATE_SETTLE_TIME) {
5206 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
5207 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5208 } else {
5209 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
5210 !(ap->flags & MR_NP_RX)) {
5211 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
5212 } else {
5213 ret = ANEG_FAILED;
5214 }
5215 }
5216 }
5217 break;
5218
5219 case ANEG_STATE_IDLE_DETECT_INIT:
5220 ap->link_time = ap->cur_time;
5221 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5222 tw32_f(MAC_MODE, tp->mac_mode);
5223 udelay(40);
5224
5225 ap->state = ANEG_STATE_IDLE_DETECT;
5226 ret = ANEG_TIMER_ENAB;
5227 break;
5228
5229 case ANEG_STATE_IDLE_DETECT:
5230 if (ap->ability_match != 0 &&
5231 ap->rxconfig == 0) {
5232 ap->state = ANEG_STATE_AN_ENABLE;
5233 break;
5234 }
5235 delta = ap->cur_time - ap->link_time;
5236 if (delta > ANEG_STATE_SETTLE_TIME) {
5237 /* XXX another gem from the Broadcom driver :( */
5238 ap->state = ANEG_STATE_LINK_OK;
5239 }
5240 break;
5241
5242 case ANEG_STATE_LINK_OK:
5243 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
5244 ret = ANEG_DONE;
5245 break;
5246
5247 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
5248 /* ??? unimplemented */
5249 break;
5250
5251 case ANEG_STATE_NEXT_PAGE_WAIT:
5252 /* ??? unimplemented */
5253 break;
5254
5255 default:
5256 ret = ANEG_FAILED;
5257 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
5260 return ret;
5261}
5262
Matt Carlson5be73b42007-12-20 20:09:29 -08005263static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264{
5265 int res = 0;
5266 struct tg3_fiber_aneginfo aninfo;
5267 int status = ANEG_FAILED;
5268 unsigned int tick;
5269 u32 tmp;
5270
5271 tw32_f(MAC_TX_AUTO_NEG, 0);
5272
5273 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
5274 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
5275 udelay(40);
5276
5277 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
5278 udelay(40);
5279
5280 memset(&aninfo, 0, sizeof(aninfo));
5281 aninfo.flags |= MR_AN_ENABLE;
5282 aninfo.state = ANEG_STATE_UNKNOWN;
5283 aninfo.cur_time = 0;
5284 tick = 0;
5285 while (++tick < 195000) {
5286 status = tg3_fiber_aneg_smachine(tp, &aninfo);
5287 if (status == ANEG_DONE || status == ANEG_FAILED)
5288 break;
5289
5290 udelay(1);
5291 }
5292
5293 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
5294 tw32_f(MAC_MODE, tp->mac_mode);
5295 udelay(40);
5296
Matt Carlson5be73b42007-12-20 20:09:29 -08005297 *txflags = aninfo.txconfig;
5298 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300 if (status == ANEG_DONE &&
5301 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
5302 MR_LP_ADV_FULL_DUPLEX)))
5303 res = 1;
5304
5305 return res;
5306}
5307
5308static void tg3_init_bcm8002(struct tg3 *tp)
5309{
5310 u32 mac_status = tr32(MAC_STATUS);
5311 int i;
5312
5313 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00005314 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 !(mac_status & MAC_STATUS_PCS_SYNCED))
5316 return;
5317
5318 /* Set PLL lock range. */
5319 tg3_writephy(tp, 0x16, 0x8007);
5320
5321 /* SW reset */
5322 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
5323
5324 /* Wait for reset to complete. */
5325 /* XXX schedule_timeout() ... */
5326 for (i = 0; i < 500; i++)
5327 udelay(10);
5328
5329 /* Config mode; select PMA/Ch 1 regs. */
5330 tg3_writephy(tp, 0x10, 0x8411);
5331
5332 /* Enable auto-lock and comdet, select txclk for tx. */
5333 tg3_writephy(tp, 0x11, 0x0a10);
5334
5335 tg3_writephy(tp, 0x18, 0x00a0);
5336 tg3_writephy(tp, 0x16, 0x41ff);
5337
5338 /* Assert and deassert POR. */
5339 tg3_writephy(tp, 0x13, 0x0400);
5340 udelay(40);
5341 tg3_writephy(tp, 0x13, 0x0000);
5342
5343 tg3_writephy(tp, 0x11, 0x0a50);
5344 udelay(40);
5345 tg3_writephy(tp, 0x11, 0x0a10);
5346
5347 /* Wait for signal to stabilize */
5348 /* XXX schedule_timeout() ... */
5349 for (i = 0; i < 15000; i++)
5350 udelay(10);
5351
5352 /* Deselect the channel register so we can read the PHYID
5353 * later.
5354 */
5355 tg3_writephy(tp, 0x10, 0x8011);
5356}
5357
Joe Perches953c96e2013-04-09 10:18:14 +00005358static bool tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359{
Matt Carlson82cd3d12007-12-20 20:09:00 -08005360 u16 flowctrl;
Joe Perches953c96e2013-04-09 10:18:14 +00005361 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 u32 sg_dig_ctrl, sg_dig_status;
5363 u32 serdes_cfg, expected_sg_dig_ctrl;
5364 int workaround, port_a;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
5366 serdes_cfg = 0;
5367 expected_sg_dig_ctrl = 0;
5368 workaround = 0;
5369 port_a = 1;
Joe Perches953c96e2013-04-09 10:18:14 +00005370 current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
Joe Perches41535772013-02-16 11:20:04 +00005372 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A0 &&
5373 tg3_chip_rev_id(tp) != CHIPREV_ID_5704_A1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 workaround = 1;
5375 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
5376 port_a = 0;
5377
5378 /* preserve bits 0-11,13,14 for signal pre-emphasis */
5379 /* preserve bits 20-23 for voltage regulator */
5380 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
5381 }
5382
5383 sg_dig_ctrl = tr32(SG_DIG_CTRL);
5384
5385 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005386 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 if (workaround) {
5388 u32 val = serdes_cfg;
5389
5390 if (port_a)
5391 val |= 0xc010000;
5392 else
5393 val |= 0x4010000;
5394 tw32_f(MAC_SERDES_CFG, val);
5395 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005396
5397 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 }
5399 if (mac_status & MAC_STATUS_PCS_SYNCED) {
5400 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005401 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 }
5403 goto out;
5404 }
5405
5406 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005407 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408
Matt Carlson82cd3d12007-12-20 20:09:00 -08005409 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
5410 if (flowctrl & ADVERTISE_1000XPAUSE)
5411 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
5412 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
5413 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
5415 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005416 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07005417 tp->serdes_counter &&
5418 ((mac_status & (MAC_STATUS_PCS_SYNCED |
5419 MAC_STATUS_RCVD_CFG)) ==
5420 MAC_STATUS_PCS_SYNCED)) {
5421 tp->serdes_counter--;
Joe Perches953c96e2013-04-09 10:18:14 +00005422 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005423 goto out;
5424 }
5425restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426 if (workaround)
5427 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005428 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 udelay(5);
5430 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
5431
Michael Chan3d3ebe72006-09-27 15:59:15 -07005432 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005433 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
5435 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005436 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437 mac_status = tr32(MAC_STATUS);
5438
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005439 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08005441 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442
Matt Carlson82cd3d12007-12-20 20:09:00 -08005443 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
5444 local_adv |= ADVERTISE_1000XPAUSE;
5445 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
5446 local_adv |= ADVERTISE_1000XPSE_ASYM;
5447
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005448 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005449 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005450 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08005451 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
Matt Carlson859edb22011-12-08 14:40:16 +00005453 tp->link_config.rmt_adv =
5454 mii_adv_to_ethtool_adv_x(remote_adv);
5455
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 tg3_setup_flow_control(tp, local_adv, remote_adv);
Joe Perches953c96e2013-04-09 10:18:14 +00005457 current_link_up = true;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005458 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005459 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005460 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07005461 if (tp->serdes_counter)
5462 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 else {
5464 if (workaround) {
5465 u32 val = serdes_cfg;
5466
5467 if (port_a)
5468 val |= 0xc010000;
5469 else
5470 val |= 0x4010000;
5471
5472 tw32_f(MAC_SERDES_CFG, val);
5473 }
5474
Matt Carlsonc98f6e32007-12-20 20:08:32 -08005475 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 udelay(40);
5477
5478 /* Link parallel detection - link is up */
5479 /* only if we have PCS_SYNC and not */
5480 /* receiving config code words */
5481 mac_status = tr32(MAC_STATUS);
5482 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
5483 !(mac_status & MAC_STATUS_RCVD_CFG)) {
5484 tg3_setup_flow_control(tp, 0, 0);
Joe Perches953c96e2013-04-09 10:18:14 +00005485 current_link_up = true;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005486 tp->phy_flags |=
5487 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005488 tp->serdes_counter =
5489 SERDES_PARALLEL_DET_TIMEOUT;
5490 } else
5491 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 }
5493 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07005494 } else {
5495 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005496 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 }
5498
5499out:
5500 return current_link_up;
5501}
5502
Joe Perches953c96e2013-04-09 10:18:14 +00005503static bool tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504{
Joe Perches953c96e2013-04-09 10:18:14 +00005505 bool current_link_up = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
Michael Chan5cf64b8a2007-05-05 12:11:21 -07005507 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
5510 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08005511 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005513
Matt Carlson5be73b42007-12-20 20:09:29 -08005514 if (fiber_autoneg(tp, &txflags, &rxflags)) {
5515 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516
Matt Carlson5be73b42007-12-20 20:09:29 -08005517 if (txflags & ANEG_CFG_PS1)
5518 local_adv |= ADVERTISE_1000XPAUSE;
5519 if (txflags & ANEG_CFG_PS2)
5520 local_adv |= ADVERTISE_1000XPSE_ASYM;
5521
5522 if (rxflags & MR_LP_ADV_SYM_PAUSE)
5523 remote_adv |= LPA_1000XPAUSE;
5524 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
5525 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Matt Carlson859edb22011-12-08 14:40:16 +00005527 tp->link_config.rmt_adv =
5528 mii_adv_to_ethtool_adv_x(remote_adv);
5529
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 tg3_setup_flow_control(tp, local_adv, remote_adv);
5531
Joe Perches953c96e2013-04-09 10:18:14 +00005532 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533 }
5534 for (i = 0; i < 30; i++) {
5535 udelay(20);
5536 tw32_f(MAC_STATUS,
5537 (MAC_STATUS_SYNC_CHANGED |
5538 MAC_STATUS_CFG_CHANGED));
5539 udelay(40);
5540 if ((tr32(MAC_STATUS) &
5541 (MAC_STATUS_SYNC_CHANGED |
5542 MAC_STATUS_CFG_CHANGED)) == 0)
5543 break;
5544 }
5545
5546 mac_status = tr32(MAC_STATUS);
Joe Perches953c96e2013-04-09 10:18:14 +00005547 if (!current_link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548 (mac_status & MAC_STATUS_PCS_SYNCED) &&
5549 !(mac_status & MAC_STATUS_RCVD_CFG))
Joe Perches953c96e2013-04-09 10:18:14 +00005550 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08005552 tg3_setup_flow_control(tp, 0, 0);
5553
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 /* Forcing 1000FD link up. */
Joe Perches953c96e2013-04-09 10:18:14 +00005555 current_link_up = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
5557 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
5558 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07005559
5560 tw32_f(MAC_MODE, tp->mac_mode);
5561 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562 }
5563
5564out:
5565 return current_link_up;
5566}
5567
Joe Perches953c96e2013-04-09 10:18:14 +00005568static int tg3_setup_fiber_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569{
5570 u32 orig_pause_cfg;
5571 u16 orig_active_speed;
5572 u8 orig_active_duplex;
5573 u32 mac_status;
Joe Perches953c96e2013-04-09 10:18:14 +00005574 bool current_link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 int i;
5576
Matt Carlson8d018622007-12-20 20:05:44 -08005577 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 orig_active_speed = tp->link_config.active_speed;
5579 orig_active_duplex = tp->link_config.active_duplex;
5580
Joe Perches63c3a662011-04-26 08:12:10 +00005581 if (!tg3_flag(tp, HW_AUTONEG) &&
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005582 tp->link_up &&
Joe Perches63c3a662011-04-26 08:12:10 +00005583 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 mac_status = tr32(MAC_STATUS);
5585 mac_status &= (MAC_STATUS_PCS_SYNCED |
5586 MAC_STATUS_SIGNAL_DET |
5587 MAC_STATUS_CFG_CHANGED |
5588 MAC_STATUS_RCVD_CFG);
5589 if (mac_status == (MAC_STATUS_PCS_SYNCED |
5590 MAC_STATUS_SIGNAL_DET)) {
5591 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5592 MAC_STATUS_CFG_CHANGED));
5593 return 0;
5594 }
5595 }
5596
5597 tw32_f(MAC_TX_AUTO_NEG, 0);
5598
5599 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5600 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5601 tw32_f(MAC_MODE, tp->mac_mode);
5602 udelay(40);
5603
Matt Carlson79eb6902010-02-17 15:17:03 +00005604 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 tg3_init_bcm8002(tp);
5606
5607 /* Enable link change event even when serdes polling. */
5608 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5609 udelay(40);
5610
Joe Perches953c96e2013-04-09 10:18:14 +00005611 current_link_up = false;
Matt Carlson859edb22011-12-08 14:40:16 +00005612 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613 mac_status = tr32(MAC_STATUS);
5614
Joe Perches63c3a662011-04-26 08:12:10 +00005615 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5617 else
5618 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5619
Matt Carlson898a56f2009-08-28 14:02:40 +00005620 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005622 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
5624 for (i = 0; i < 100; i++) {
5625 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5626 MAC_STATUS_CFG_CHANGED));
5627 udelay(5);
5628 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005629 MAC_STATUS_CFG_CHANGED |
5630 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 break;
5632 }
5633
5634 mac_status = tr32(MAC_STATUS);
5635 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
Joe Perches953c96e2013-04-09 10:18:14 +00005636 current_link_up = false;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005637 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5638 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639 tw32_f(MAC_MODE, (tp->mac_mode |
5640 MAC_MODE_SEND_CONFIGS));
5641 udelay(1);
5642 tw32_f(MAC_MODE, tp->mac_mode);
5643 }
5644 }
5645
Joe Perches953c96e2013-04-09 10:18:14 +00005646 if (current_link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647 tp->link_config.active_speed = SPEED_1000;
5648 tp->link_config.active_duplex = DUPLEX_FULL;
5649 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5650 LED_CTRL_LNKLED_OVERRIDE |
5651 LED_CTRL_1000MBPS_ON));
5652 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005653 tp->link_config.active_speed = SPEED_UNKNOWN;
5654 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5656 LED_CTRL_LNKLED_OVERRIDE |
5657 LED_CTRL_TRAFFIC_OVERRIDE));
5658 }
5659
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005660 if (!tg3_test_and_report_link_chg(tp, current_link_up)) {
Matt Carlson8d018622007-12-20 20:05:44 -08005661 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662 if (orig_pause_cfg != now_pause_cfg ||
5663 orig_active_speed != tp->link_config.active_speed ||
5664 orig_active_duplex != tp->link_config.active_duplex)
5665 tg3_link_report(tp);
5666 }
5667
5668 return 0;
5669}
5670
Joe Perches953c96e2013-04-09 10:18:14 +00005671static int tg3_setup_fiber_mii_phy(struct tg3 *tp, bool force_reset)
Michael Chan747e8f82005-07-25 12:33:22 -07005672{
Joe Perches953c96e2013-04-09 10:18:14 +00005673 int err = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005674 u32 bmsr, bmcr;
Michael Chan85730a62013-04-09 08:48:06 +00005675 u16 current_speed = SPEED_UNKNOWN;
5676 u8 current_duplex = DUPLEX_UNKNOWN;
Joe Perches953c96e2013-04-09 10:18:14 +00005677 bool current_link_up = false;
Michael Chan85730a62013-04-09 08:48:06 +00005678 u32 local_adv, remote_adv, sgsr;
5679
5680 if ((tg3_asic_rev(tp) == ASIC_REV_5719 ||
5681 tg3_asic_rev(tp) == ASIC_REV_5720) &&
5682 !tg3_readphy(tp, SERDES_TG3_1000X_STATUS, &sgsr) &&
5683 (sgsr & SERDES_TG3_SGMII_MODE)) {
5684
5685 if (force_reset)
5686 tg3_phy_reset(tp);
5687
5688 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
5689
5690 if (!(sgsr & SERDES_TG3_LINK_UP)) {
5691 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5692 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005693 current_link_up = true;
Michael Chan85730a62013-04-09 08:48:06 +00005694 if (sgsr & SERDES_TG3_SPEED_1000) {
5695 current_speed = SPEED_1000;
5696 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5697 } else if (sgsr & SERDES_TG3_SPEED_100) {
5698 current_speed = SPEED_100;
5699 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5700 } else {
5701 current_speed = SPEED_10;
5702 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
5703 }
5704
5705 if (sgsr & SERDES_TG3_FULL_DUPLEX)
5706 current_duplex = DUPLEX_FULL;
5707 else
5708 current_duplex = DUPLEX_HALF;
5709 }
5710
5711 tw32_f(MAC_MODE, tp->mac_mode);
5712 udelay(40);
5713
5714 tg3_clear_mac_status(tp);
5715
5716 goto fiber_setup_done;
5717 }
Michael Chan747e8f82005-07-25 12:33:22 -07005718
5719 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5720 tw32_f(MAC_MODE, tp->mac_mode);
5721 udelay(40);
5722
Michael Chan3310e242013-04-09 08:48:05 +00005723 tg3_clear_mac_status(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005724
5725 if (force_reset)
5726 tg3_phy_reset(tp);
5727
Matt Carlson859edb22011-12-08 14:40:16 +00005728 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005729
5730 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5731 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005732 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005733 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5734 bmsr |= BMSR_LSTATUS;
5735 else
5736 bmsr &= ~BMSR_LSTATUS;
5737 }
Michael Chan747e8f82005-07-25 12:33:22 -07005738
5739 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5740
5741 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005742 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005743 /* do nothing, just check for link up at the end */
5744 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005745 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005746
5747 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005748 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5749 ADVERTISE_1000XPAUSE |
5750 ADVERTISE_1000XPSE_ASYM |
5751 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005752
Matt Carlson28011cf2011-11-16 18:36:59 -05005753 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005754 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005755
Matt Carlson28011cf2011-11-16 18:36:59 -05005756 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5757 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005758 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5759 tg3_writephy(tp, MII_BMCR, bmcr);
5760
5761 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005762 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005763 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005764
5765 return err;
5766 }
5767 } else {
5768 u32 new_bmcr;
5769
5770 bmcr &= ~BMCR_SPEED1000;
5771 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5772
5773 if (tp->link_config.duplex == DUPLEX_FULL)
5774 new_bmcr |= BMCR_FULLDPLX;
5775
5776 if (new_bmcr != bmcr) {
5777 /* BMCR_SPEED1000 is a reserved bit that needs
5778 * to be set on write.
5779 */
5780 new_bmcr |= BMCR_SPEED1000;
5781
5782 /* Force a linkdown */
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005783 if (tp->link_up) {
Michael Chan747e8f82005-07-25 12:33:22 -07005784 u32 adv;
5785
5786 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5787 adv &= ~(ADVERTISE_1000XFULL |
5788 ADVERTISE_1000XHALF |
5789 ADVERTISE_SLCT);
5790 tg3_writephy(tp, MII_ADVERTISE, adv);
5791 tg3_writephy(tp, MII_BMCR, bmcr |
5792 BMCR_ANRESTART |
5793 BMCR_ANENABLE);
5794 udelay(10);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005795 tg3_carrier_off(tp);
Michael Chan747e8f82005-07-25 12:33:22 -07005796 }
5797 tg3_writephy(tp, MII_BMCR, new_bmcr);
5798 bmcr = new_bmcr;
5799 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5800 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Joe Perches41535772013-02-16 11:20:04 +00005801 if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08005802 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5803 bmsr |= BMSR_LSTATUS;
5804 else
5805 bmsr &= ~BMSR_LSTATUS;
5806 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005807 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005808 }
5809 }
5810
5811 if (bmsr & BMSR_LSTATUS) {
5812 current_speed = SPEED_1000;
Joe Perches953c96e2013-04-09 10:18:14 +00005813 current_link_up = true;
Michael Chan747e8f82005-07-25 12:33:22 -07005814 if (bmcr & BMCR_FULLDPLX)
5815 current_duplex = DUPLEX_FULL;
5816 else
5817 current_duplex = DUPLEX_HALF;
5818
Matt Carlsonef167e22007-12-20 20:10:01 -08005819 local_adv = 0;
5820 remote_adv = 0;
5821
Michael Chan747e8f82005-07-25 12:33:22 -07005822 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005823 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005824
5825 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5826 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5827 common = local_adv & remote_adv;
5828 if (common & (ADVERTISE_1000XHALF |
5829 ADVERTISE_1000XFULL)) {
5830 if (common & ADVERTISE_1000XFULL)
5831 current_duplex = DUPLEX_FULL;
5832 else
5833 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005834
5835 tp->link_config.rmt_adv =
5836 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005837 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005838 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005839 } else {
Joe Perches953c96e2013-04-09 10:18:14 +00005840 current_link_up = false;
Matt Carlson859a588792010-04-05 10:19:28 +00005841 }
Michael Chan747e8f82005-07-25 12:33:22 -07005842 }
5843 }
5844
Michael Chan85730a62013-04-09 08:48:06 +00005845fiber_setup_done:
Joe Perches953c96e2013-04-09 10:18:14 +00005846 if (current_link_up && current_duplex == DUPLEX_FULL)
Matt Carlsonef167e22007-12-20 20:10:01 -08005847 tg3_setup_flow_control(tp, local_adv, remote_adv);
5848
Michael Chan747e8f82005-07-25 12:33:22 -07005849 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5850 if (tp->link_config.active_duplex == DUPLEX_HALF)
5851 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5852
5853 tw32_f(MAC_MODE, tp->mac_mode);
5854 udelay(40);
5855
5856 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5857
5858 tp->link_config.active_speed = current_speed;
5859 tp->link_config.active_duplex = current_duplex;
5860
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005861 tg3_test_and_report_link_chg(tp, current_link_up);
Michael Chan747e8f82005-07-25 12:33:22 -07005862 return err;
5863}
5864
5865static void tg3_serdes_parallel_detect(struct tg3 *tp)
5866{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005867 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005868 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005869 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005870 return;
5871 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005872
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005873 if (!tp->link_up &&
Michael Chan747e8f82005-07-25 12:33:22 -07005874 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5875 u32 bmcr;
5876
5877 tg3_readphy(tp, MII_BMCR, &bmcr);
5878 if (bmcr & BMCR_ANENABLE) {
5879 u32 phy1, phy2;
5880
5881 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005882 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5883 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005884
5885 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005886 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5887 MII_TG3_DSP_EXP1_INT_STAT);
5888 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5889 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005890
5891 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5892 /* We have signal detect and not receiving
5893 * config code words, link is up by parallel
5894 * detection.
5895 */
5896
5897 bmcr &= ~BMCR_ANENABLE;
5898 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5899 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005900 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005901 }
5902 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005903 } else if (tp->link_up &&
Matt Carlson859a588792010-04-05 10:19:28 +00005904 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005905 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005906 u32 phy2;
5907
5908 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005909 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5910 MII_TG3_DSP_EXP1_INT_STAT);
5911 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005912 if (phy2 & 0x20) {
5913 u32 bmcr;
5914
5915 /* Config code words received, turn on autoneg. */
5916 tg3_readphy(tp, MII_BMCR, &bmcr);
5917 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5918
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005919 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005920
5921 }
5922 }
5923}
5924
Joe Perches953c96e2013-04-09 10:18:14 +00005925static int tg3_setup_phy(struct tg3 *tp, bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005927 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928 int err;
5929
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005930 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005932 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005933 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005934 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
Joe Perches41535772013-02-16 11:20:04 +00005937 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005938 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005939
5940 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5941 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5942 scale = 65;
5943 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5944 scale = 6;
5945 else
5946 scale = 12;
5947
5948 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5949 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5950 tw32(GRC_MISC_CFG, val);
5951 }
5952
Matt Carlsonf2096f92011-04-05 14:22:48 +00005953 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5954 (6 << TX_LENGTHS_IPG_SHIFT);
Joe Perches41535772013-02-16 11:20:04 +00005955 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
5956 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005957 val |= tr32(MAC_TX_LENGTHS) &
5958 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5959 TX_LENGTHS_CNT_DWN_VAL_MSK);
5960
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961 if (tp->link_config.active_speed == SPEED_1000 &&
5962 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005963 tw32(MAC_TX_LENGTHS, val |
5964 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005966 tw32(MAC_TX_LENGTHS, val |
5967 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968
Joe Perches63c3a662011-04-26 08:12:10 +00005969 if (!tg3_flag(tp, 5705_PLUS)) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005970 if (tp->link_up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005972 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973 } else {
5974 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5975 }
5976 }
5977
Joe Perches63c3a662011-04-26 08:12:10 +00005978 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005979 val = tr32(PCIE_PWR_MGMT_THRESH);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00005980 if (!tp->link_up)
Matt Carlson8ed5d972007-05-07 00:25:49 -07005981 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5982 tp->pwrmgmt_thresh;
5983 else
5984 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5985 tw32(PCIE_PWR_MGMT_THRESH, val);
5986 }
5987
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 return err;
5989}
5990
Matt Carlsonbe947302012-12-03 19:36:57 +00005991/* tp->lock must be held */
Matt Carlson7d41e492012-12-03 19:36:58 +00005992static u64 tg3_refclk_read(struct tg3 *tp)
5993{
5994 u64 stamp = tr32(TG3_EAV_REF_CLCK_LSB);
5995 return stamp | (u64)tr32(TG3_EAV_REF_CLCK_MSB) << 32;
5996}
5997
5998/* tp->lock must be held */
Matt Carlsonbe947302012-12-03 19:36:57 +00005999static void tg3_refclk_write(struct tg3 *tp, u64 newval)
6000{
6001 tw32(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_STOP);
6002 tw32(TG3_EAV_REF_CLCK_LSB, newval & 0xffffffff);
6003 tw32(TG3_EAV_REF_CLCK_MSB, newval >> 32);
6004 tw32_f(TG3_EAV_REF_CLCK_CTL, TG3_EAV_REF_CLCK_CTL_RESUME);
6005}
6006
Matt Carlson7d41e492012-12-03 19:36:58 +00006007static inline void tg3_full_lock(struct tg3 *tp, int irq_sync);
6008static inline void tg3_full_unlock(struct tg3 *tp);
6009static int tg3_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
6010{
6011 struct tg3 *tp = netdev_priv(dev);
6012
6013 info->so_timestamping = SOF_TIMESTAMPING_TX_SOFTWARE |
6014 SOF_TIMESTAMPING_RX_SOFTWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006015 SOF_TIMESTAMPING_SOFTWARE;
6016
6017 if (tg3_flag(tp, PTP_CAPABLE)) {
Flavio Leitner32e19272013-04-30 07:20:34 +00006018 info->so_timestamping |= SOF_TIMESTAMPING_TX_HARDWARE |
Flavio Leitnerf233a972013-04-29 07:08:07 +00006019 SOF_TIMESTAMPING_RX_HARDWARE |
6020 SOF_TIMESTAMPING_RAW_HARDWARE;
6021 }
Matt Carlson7d41e492012-12-03 19:36:58 +00006022
6023 if (tp->ptp_clock)
6024 info->phc_index = ptp_clock_index(tp->ptp_clock);
6025 else
6026 info->phc_index = -1;
6027
6028 info->tx_types = (1 << HWTSTAMP_TX_OFF) | (1 << HWTSTAMP_TX_ON);
6029
6030 info->rx_filters = (1 << HWTSTAMP_FILTER_NONE) |
6031 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
6032 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
6033 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
6034 return 0;
6035}
6036
6037static int tg3_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
6038{
6039 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6040 bool neg_adj = false;
6041 u32 correction = 0;
6042
6043 if (ppb < 0) {
6044 neg_adj = true;
6045 ppb = -ppb;
6046 }
6047
6048 /* Frequency adjustment is performed using hardware with a 24 bit
6049 * accumulator and a programmable correction value. On each clk, the
6050 * correction value gets added to the accumulator and when it
6051 * overflows, the time counter is incremented/decremented.
6052 *
6053 * So conversion from ppb to correction value is
6054 * ppb * (1 << 24) / 1000000000
6055 */
6056 correction = div_u64((u64)ppb * (1 << 24), 1000000000ULL) &
6057 TG3_EAV_REF_CLK_CORRECT_MASK;
6058
6059 tg3_full_lock(tp, 0);
6060
6061 if (correction)
6062 tw32(TG3_EAV_REF_CLK_CORRECT_CTL,
6063 TG3_EAV_REF_CLK_CORRECT_EN |
6064 (neg_adj ? TG3_EAV_REF_CLK_CORRECT_NEG : 0) | correction);
6065 else
6066 tw32(TG3_EAV_REF_CLK_CORRECT_CTL, 0);
6067
6068 tg3_full_unlock(tp);
6069
6070 return 0;
6071}
6072
6073static int tg3_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
6074{
6075 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6076
6077 tg3_full_lock(tp, 0);
6078 tp->ptp_adjust += delta;
6079 tg3_full_unlock(tp);
6080
6081 return 0;
6082}
6083
6084static int tg3_ptp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
6085{
6086 u64 ns;
6087 u32 remainder;
6088 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6089
6090 tg3_full_lock(tp, 0);
6091 ns = tg3_refclk_read(tp);
6092 ns += tp->ptp_adjust;
6093 tg3_full_unlock(tp);
6094
6095 ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder);
6096 ts->tv_nsec = remainder;
6097
6098 return 0;
6099}
6100
6101static int tg3_ptp_settime(struct ptp_clock_info *ptp,
6102 const struct timespec *ts)
6103{
6104 u64 ns;
6105 struct tg3 *tp = container_of(ptp, struct tg3, ptp_info);
6106
6107 ns = timespec_to_ns(ts);
6108
6109 tg3_full_lock(tp, 0);
6110 tg3_refclk_write(tp, ns);
6111 tp->ptp_adjust = 0;
6112 tg3_full_unlock(tp);
6113
6114 return 0;
6115}
6116
6117static int tg3_ptp_enable(struct ptp_clock_info *ptp,
6118 struct ptp_clock_request *rq, int on)
6119{
6120 return -EOPNOTSUPP;
6121}
6122
6123static const struct ptp_clock_info tg3_ptp_caps = {
6124 .owner = THIS_MODULE,
6125 .name = "tg3 clock",
6126 .max_adj = 250000000,
6127 .n_alarm = 0,
6128 .n_ext_ts = 0,
6129 .n_per_out = 0,
6130 .pps = 0,
6131 .adjfreq = tg3_ptp_adjfreq,
6132 .adjtime = tg3_ptp_adjtime,
6133 .gettime = tg3_ptp_gettime,
6134 .settime = tg3_ptp_settime,
6135 .enable = tg3_ptp_enable,
6136};
6137
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006138static void tg3_hwclock_to_timestamp(struct tg3 *tp, u64 hwclock,
6139 struct skb_shared_hwtstamps *timestamp)
6140{
6141 memset(timestamp, 0, sizeof(struct skb_shared_hwtstamps));
6142 timestamp->hwtstamp = ns_to_ktime((hwclock & TG3_TSTAMP_MASK) +
6143 tp->ptp_adjust);
6144}
6145
Matt Carlsonbe947302012-12-03 19:36:57 +00006146/* tp->lock must be held */
6147static void tg3_ptp_init(struct tg3 *tp)
6148{
6149 if (!tg3_flag(tp, PTP_CAPABLE))
6150 return;
6151
6152 /* Initialize the hardware clock to the system time. */
6153 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()));
6154 tp->ptp_adjust = 0;
Matt Carlson7d41e492012-12-03 19:36:58 +00006155 tp->ptp_info = tg3_ptp_caps;
Matt Carlsonbe947302012-12-03 19:36:57 +00006156}
6157
6158/* tp->lock must be held */
6159static void tg3_ptp_resume(struct tg3 *tp)
6160{
6161 if (!tg3_flag(tp, PTP_CAPABLE))
6162 return;
6163
6164 tg3_refclk_write(tp, ktime_to_ns(ktime_get_real()) + tp->ptp_adjust);
6165 tp->ptp_adjust = 0;
6166}
6167
6168static void tg3_ptp_fini(struct tg3 *tp)
6169{
6170 if (!tg3_flag(tp, PTP_CAPABLE) || !tp->ptp_clock)
6171 return;
6172
Matt Carlson7d41e492012-12-03 19:36:58 +00006173 ptp_clock_unregister(tp->ptp_clock);
Matt Carlsonbe947302012-12-03 19:36:57 +00006174 tp->ptp_clock = NULL;
6175 tp->ptp_adjust = 0;
6176}
6177
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006178static inline int tg3_irq_sync(struct tg3 *tp)
6179{
6180 return tp->irq_sync;
6181}
6182
Matt Carlson97bd8e42011-04-13 11:05:04 +00006183static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
6184{
6185 int i;
6186
6187 dst = (u32 *)((u8 *)dst + off);
6188 for (i = 0; i < len; i += sizeof(u32))
6189 *dst++ = tr32(off + i);
6190}
6191
6192static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
6193{
6194 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
6195 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
6196 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
6197 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
6198 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
6199 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
6200 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
6201 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
6202 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
6203 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
6204 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
6205 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
6206 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
6207 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
6208 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
6209 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
6210 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
6211 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
6212 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
6213
Joe Perches63c3a662011-04-26 08:12:10 +00006214 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006215 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
6216
6217 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
6218 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
6219 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
6220 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
6221 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
6222 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
6223 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
6224 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
6225
Joe Perches63c3a662011-04-26 08:12:10 +00006226 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006227 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
6228 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
6229 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
6230 }
6231
6232 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
6233 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
6234 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
6235 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
6236 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
6237
Joe Perches63c3a662011-04-26 08:12:10 +00006238 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00006239 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
6240}
6241
6242static void tg3_dump_state(struct tg3 *tp)
6243{
6244 int i;
6245 u32 *regs;
6246
6247 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
Joe Perchesb2adaca2013-02-03 17:43:58 +00006248 if (!regs)
Matt Carlson97bd8e42011-04-13 11:05:04 +00006249 return;
Matt Carlson97bd8e42011-04-13 11:05:04 +00006250
Joe Perches63c3a662011-04-26 08:12:10 +00006251 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00006252 /* Read up to but not including private PCI registers */
6253 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
6254 regs[i / sizeof(u32)] = tr32(i);
6255 } else
6256 tg3_dump_legacy_regs(tp, regs);
6257
6258 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
6259 if (!regs[i + 0] && !regs[i + 1] &&
6260 !regs[i + 2] && !regs[i + 3])
6261 continue;
6262
6263 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
6264 i * 4,
6265 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
6266 }
6267
6268 kfree(regs);
6269
6270 for (i = 0; i < tp->irq_cnt; i++) {
6271 struct tg3_napi *tnapi = &tp->napi[i];
6272
6273 /* SW status block */
6274 netdev_err(tp->dev,
6275 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
6276 i,
6277 tnapi->hw_status->status,
6278 tnapi->hw_status->status_tag,
6279 tnapi->hw_status->rx_jumbo_consumer,
6280 tnapi->hw_status->rx_consumer,
6281 tnapi->hw_status->rx_mini_consumer,
6282 tnapi->hw_status->idx[0].rx_producer,
6283 tnapi->hw_status->idx[0].tx_consumer);
6284
6285 netdev_err(tp->dev,
6286 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
6287 i,
6288 tnapi->last_tag, tnapi->last_irq_tag,
6289 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
6290 tnapi->rx_rcb_ptr,
6291 tnapi->prodring.rx_std_prod_idx,
6292 tnapi->prodring.rx_std_cons_idx,
6293 tnapi->prodring.rx_jmb_prod_idx,
6294 tnapi->prodring.rx_jmb_cons_idx);
6295 }
6296}
6297
Michael Chandf3e6542006-05-26 17:48:07 -07006298/* This is called whenever we suspect that the system chipset is re-
6299 * ordering the sequence of MMIO to the tx send mailbox. The symptom
6300 * is bogus tx completions. We try to recover by setting the
6301 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
6302 * in the workqueue.
6303 */
6304static void tg3_tx_recover(struct tg3 *tp)
6305{
Joe Perches63c3a662011-04-26 08:12:10 +00006306 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07006307 tp->write32_tx_mbox == tg3_write_indirect_mbox);
6308
Matt Carlson5129c3a2010-04-05 10:19:23 +00006309 netdev_warn(tp->dev,
6310 "The system may be re-ordering memory-mapped I/O "
6311 "cycles to the network device, attempting to recover. "
6312 "Please report the problem to the driver maintainer "
6313 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07006314
6315 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006316 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07006317 spin_unlock(&tp->lock);
6318}
6319
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006320static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07006321{
Matt Carlsonf65aac12010-08-02 11:26:03 +00006322 /* Tell compiler to fetch tx indices from memory. */
6323 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006324 return tnapi->tx_pending -
6325 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07006326}
6327
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328/* Tigon3 never reports partial packet sends. So we do not
6329 * need special logic to handle SKBs that have not had all
6330 * of their frags sent yet, like SunGEM does.
6331 */
Matt Carlson17375d22009-08-28 14:02:18 +00006332static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333{
Matt Carlson17375d22009-08-28 14:02:18 +00006334 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006335 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006336 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006337 struct netdev_queue *txq;
6338 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00006339 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006340
Joe Perches63c3a662011-04-26 08:12:10 +00006341 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006342 index--;
6343
6344 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345
6346 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00006347 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07006349 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
Michael Chandf3e6542006-05-26 17:48:07 -07006351 if (unlikely(skb == NULL)) {
6352 tg3_tx_recover(tp);
6353 return;
6354 }
6355
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006356 if (tnapi->tx_ring[sw_idx].len_flags & TXD_FLAG_HWTSTAMP) {
6357 struct skb_shared_hwtstamps timestamp;
6358 u64 hwclock = tr32(TG3_TX_TSTAMP_LSB);
6359 hwclock |= (u64)tr32(TG3_TX_TSTAMP_MSB) << 32;
6360
6361 tg3_hwclock_to_timestamp(tp, hwclock, &timestamp);
6362
6363 skb_tstamp_tx(skb, &timestamp);
6364 }
6365
Alexander Duyckf4188d82009-12-02 16:48:38 +00006366 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006367 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006368 skb_headlen(skb),
6369 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
6371 ri->skb = NULL;
6372
Matt Carlsone01ee142011-07-27 14:20:50 +00006373 while (ri->fragmented) {
6374 ri->fragmented = false;
6375 sw_idx = NEXT_TX(sw_idx);
6376 ri = &tnapi->tx_buffers[sw_idx];
6377 }
6378
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 sw_idx = NEXT_TX(sw_idx);
6380
6381 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006382 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07006383 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
6384 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006385
6386 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006387 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006388 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006389 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006390
6391 while (ri->fragmented) {
6392 ri->fragmented = false;
6393 sw_idx = NEXT_TX(sw_idx);
6394 ri = &tnapi->tx_buffers[sw_idx];
6395 }
6396
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 sw_idx = NEXT_TX(sw_idx);
6398 }
6399
Tom Herbert298376d2011-11-28 16:33:30 +00006400 pkts_compl++;
6401 bytes_compl += skb->len;
6402
David S. Millerf47c11e2005-06-24 20:18:35 -07006403 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07006404
6405 if (unlikely(tx_bug)) {
6406 tg3_tx_recover(tp);
6407 return;
6408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409 }
6410
Tom Herbert5cb917b2012-03-05 19:53:50 +00006411 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00006412
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006413 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414
Michael Chan1b2a7202006-08-07 21:46:02 -07006415 /* Need to make the tx_cons update visible to tg3_start_xmit()
6416 * before checking for netif_queue_stopped(). Without the
6417 * memory barrier, there is a small possibility that tg3_start_xmit()
6418 * will miss it and cause the queue to be stopped forever.
6419 */
6420 smp_mb();
6421
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006422 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006423 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006424 __netif_tx_lock(txq, smp_processor_id());
6425 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006426 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00006427 netif_tx_wake_queue(txq);
6428 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430}
6431
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006432static void tg3_frag_free(bool is_frag, void *data)
6433{
6434 if (is_frag)
6435 put_page(virt_to_head_page(data));
6436 else
6437 kfree(data);
6438}
6439
Eric Dumazet9205fd92011-11-18 06:47:01 +00006440static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006441{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006442 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
6443 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
6444
Eric Dumazet9205fd92011-11-18 06:47:01 +00006445 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006446 return;
6447
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006448 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006449 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006450 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006451 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006452}
6453
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006454
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455/* Returns size of skb allocated or < 0 on error.
6456 *
6457 * We only need to fill in the address because the other members
6458 * of the RX descriptor are invariant, see tg3_init_rings.
6459 *
6460 * Note the purposeful assymetry of cpu vs. chip accesses. For
6461 * posting buffers we only dirty the first cache line of the RX
6462 * descriptor (containing the address). Whereas for the RX status
6463 * buffers the cpu only reads the last cacheline of the RX descriptor
6464 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
6465 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006466static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006467 u32 opaque_key, u32 dest_idx_unmasked,
6468 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469{
6470 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00006471 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006472 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006474 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476 switch (opaque_key) {
6477 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006478 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00006479 desc = &tpr->rx_std[dest_idx];
6480 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006481 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482 break;
6483
6484 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006485 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00006486 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00006487 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00006488 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489 break;
6490
6491 default:
6492 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494
6495 /* Do not overwrite any of the map or rp information
6496 * until we are sure we can commit to a new buffer.
6497 *
6498 * Callers depend upon this behavior and assume that
6499 * we leave everything unchanged if we fail.
6500 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00006501 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
6502 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006503 if (skb_size <= PAGE_SIZE) {
6504 data = netdev_alloc_frag(skb_size);
6505 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006506 } else {
6507 data = kmalloc(skb_size, GFP_ATOMIC);
6508 *frag_size = 0;
6509 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00006510 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511 return -ENOMEM;
6512
Eric Dumazet9205fd92011-11-18 06:47:01 +00006513 mapping = pci_map_single(tp->pdev,
6514 data + TG3_RX_OFFSET(tp),
6515 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006517 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00006518 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00006519 return -EIO;
6520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
Eric Dumazet9205fd92011-11-18 06:47:01 +00006522 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006523 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525 desc->addr_hi = ((u64)mapping >> 32);
6526 desc->addr_lo = ((u64)mapping & 0xffffffff);
6527
Eric Dumazet9205fd92011-11-18 06:47:01 +00006528 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529}
6530
6531/* We only need to move over in the address because the other
6532 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00006533 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 */
Matt Carlsona3896162009-11-13 13:03:44 +00006535static void tg3_recycle_rx(struct tg3_napi *tnapi,
6536 struct tg3_rx_prodring_set *dpr,
6537 u32 opaque_key, int src_idx,
6538 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539{
Matt Carlson17375d22009-08-28 14:02:18 +00006540 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
6542 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006543 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006544 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545
6546 switch (opaque_key) {
6547 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00006548 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006549 dest_desc = &dpr->rx_std[dest_idx];
6550 dest_map = &dpr->rx_std_buffers[dest_idx];
6551 src_desc = &spr->rx_std[src_idx];
6552 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553 break;
6554
6555 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00006556 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00006557 dest_desc = &dpr->rx_jmb[dest_idx].std;
6558 dest_map = &dpr->rx_jmb_buffers[dest_idx];
6559 src_desc = &spr->rx_jmb[src_idx].std;
6560 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 break;
6562
6563 default:
6564 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566
Eric Dumazet9205fd92011-11-18 06:47:01 +00006567 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006568 dma_unmap_addr_set(dest_map, mapping,
6569 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 dest_desc->addr_hi = src_desc->addr_hi;
6571 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00006572
6573 /* Ensure that the update to the skb happens after the physical
6574 * addresses have been transferred to the new BD location.
6575 */
6576 smp_wmb();
6577
Eric Dumazet9205fd92011-11-18 06:47:01 +00006578 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579}
6580
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581/* The RX ring scheme is composed of multiple rings which post fresh
6582 * buffers to the chip, and one special ring the chip uses to report
6583 * status back to the host.
6584 *
6585 * The special ring reports the status of received packets to the
6586 * host. The chip does not write into the original descriptor the
6587 * RX buffer was obtained from. The chip simply takes the original
6588 * descriptor as provided by the host, updates the status and length
6589 * field, then writes this into the next status ring entry.
6590 *
6591 * Each ring the host uses to post buffers to the chip is described
6592 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
6593 * it is first placed into the on-chip ram. When the packet's length
6594 * is known, it walks down the TG3_BDINFO entries to select the ring.
6595 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
6596 * which is within the range of the new packet's length is chosen.
6597 *
6598 * The "separate ring for rx status" scheme may sound queer, but it makes
6599 * sense from a cache coherency perspective. If only the host writes
6600 * to the buffer post rings, and only the chip writes to the rx status
6601 * rings, then cache lines never move beyond shared-modified state.
6602 * If both the host and chip were to write into the same ring, cache line
6603 * eviction could occur since both entities want it in an exclusive state.
6604 */
Matt Carlson17375d22009-08-28 14:02:18 +00006605static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606{
Matt Carlson17375d22009-08-28 14:02:18 +00006607 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07006608 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006609 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00006610 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07006611 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00006613 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006615 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616 /*
6617 * We need to order the read of hw_idx and the read of
6618 * the opaque cookie.
6619 */
6620 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621 work_mask = 0;
6622 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00006623 std_prod_idx = tpr->rx_std_prod_idx;
6624 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00006626 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00006627 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 unsigned int len;
6629 struct sk_buff *skb;
6630 dma_addr_t dma_addr;
6631 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00006632 u8 *data;
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006633 u64 tstamp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
6635 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
6636 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
6637 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006638 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006639 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006640 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006641 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07006642 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006644 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006645 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006646 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00006647 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00006648 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650
6651 work_mask |= opaque_key;
6652
6653 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
6654 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
6655 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00006656 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 desc_idx, *post_ptr);
6658 drop_it_no_recycle:
6659 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00006660 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 goto next_pkt;
6662 }
6663
Eric Dumazet9205fd92011-11-18 06:47:01 +00006664 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08006665 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
6666 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006668 if ((desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6669 RXD_FLAG_PTPSTAT_PTPV1 ||
6670 (desc->type_flags & RXD_FLAG_PTPSTAT_MASK) ==
6671 RXD_FLAG_PTPSTAT_PTPV2) {
6672 tstamp = tr32(TG3_RX_TSTAMP_LSB);
6673 tstamp |= (u64)tr32(TG3_RX_TSTAMP_MSB) << 32;
6674 }
6675
Matt Carlsond2757fc2010-04-12 06:58:27 +00006676 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006678 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679
Eric Dumazet9205fd92011-11-18 06:47:01 +00006680 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006681 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682 if (skb_size < 0)
6683 goto drop_it;
6684
Matt Carlson287be122009-08-28 13:58:46 +00006685 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686 PCI_DMA_FROMDEVICE);
6687
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006688 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006689 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00006690 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006691 goto drop_it_no_recycle;
6692 }
6693 skb_reserve(skb, TG3_RX_OFFSET(tp));
6694 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00006695 * after the usage of the old DMA mapping.
6696 */
6697 smp_wmb();
6698
Eric Dumazet9205fd92011-11-18 06:47:01 +00006699 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00006700
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00006702 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703 desc_idx, *post_ptr);
6704
Eric Dumazet9205fd92011-11-18 06:47:01 +00006705 skb = netdev_alloc_skb(tp->dev,
6706 len + TG3_RAW_IP_ALIGN);
6707 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708 goto drop_it_no_recycle;
6709
Eric Dumazet9205fd92011-11-18 06:47:01 +00006710 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00006712 memcpy(skb->data,
6713 data + TG3_RX_OFFSET(tp),
6714 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716 }
6717
Eric Dumazet9205fd92011-11-18 06:47:01 +00006718 skb_put(skb, len);
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00006719 if (tstamp)
6720 tg3_hwclock_to_timestamp(tp, tstamp,
6721 skb_hwtstamps(skb));
6722
Michał Mirosławdc668912011-04-07 03:35:07 +00006723 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
6725 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
6726 >> RXD_TCPCSUM_SHIFT) == 0xffff))
6727 skb->ip_summed = CHECKSUM_UNNECESSARY;
6728 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07006729 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730
6731 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006732
6733 if (len > (tp->dev->mtu + ETH_HLEN) &&
6734 skb->protocol != htons(ETH_P_8021Q)) {
6735 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00006736 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00006737 }
6738
Matt Carlson9dc7a112010-04-12 06:58:28 +00006739 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00006740 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00006741 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
Matt Carlsonbf933c82011-01-25 15:58:49 +00006742 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00006743
Matt Carlsonbf933c82011-01-25 15:58:49 +00006744 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746 received++;
6747 budget--;
6748
6749next_pkt:
6750 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07006751
6752 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006753 tpr->rx_std_prod_idx = std_prod_idx &
6754 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00006755 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6756 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07006757 work_mask &= ~RXD_OPAQUE_RING_STD;
6758 rx_std_posted = 0;
6759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07006761 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00006762 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07006763
6764 /* Refresh hw_idx to see if there is new work */
6765 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006766 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07006767 rmb();
6768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 }
6770
6771 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00006772 tnapi->rx_rcb_ptr = sw_idx;
6773 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
6775 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00006776 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00006777 /* Sync BD data before updating mailbox */
6778 wmb();
6779
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006780 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006781 tpr->rx_std_prod_idx = std_prod_idx &
6782 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006783 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6784 tpr->rx_std_prod_idx);
6785 }
6786 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006787 tpr->rx_jmb_prod_idx = jmb_prod_idx &
6788 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006789 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6790 tpr->rx_jmb_prod_idx);
6791 }
6792 mmiowb();
6793 } else if (work_mask) {
6794 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
6795 * updated before the producer indices can be updated.
6796 */
6797 smp_wmb();
6798
Matt Carlson2c49a442010-09-30 10:34:35 +00006799 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
6800 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006801
Michael Chan7ae52892012-03-21 15:38:33 +00006802 if (tnapi != &tp->napi[1]) {
6803 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006804 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00006805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
6808 return received;
6809}
6810
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006811static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006812{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00006814 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006815 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
6816
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817 if (sblk->status & SD_STATUS_LINK_CHG) {
6818 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006819 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006820 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006821 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006822 tw32_f(MAC_STATUS,
6823 (MAC_STATUS_SYNC_CHANGED |
6824 MAC_STATUS_CFG_CHANGED |
6825 MAC_STATUS_MI_COMPLETION |
6826 MAC_STATUS_LNKSTATE_CHANGED));
6827 udelay(40);
6828 } else
Joe Perches953c96e2013-04-09 10:18:14 +00006829 tg3_setup_phy(tp, false);
David S. Millerf47c11e2005-06-24 20:18:35 -07006830 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831 }
6832 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006833}
6834
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006835static int tg3_rx_prodring_xfer(struct tg3 *tp,
6836 struct tg3_rx_prodring_set *dpr,
6837 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006838{
6839 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006840 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006841
6842 while (1) {
6843 src_prod_idx = spr->rx_std_prod_idx;
6844
6845 /* Make sure updates to the rx_std_buffers[] entries and the
6846 * standard producer index are seen in the correct order.
6847 */
6848 smp_rmb();
6849
6850 if (spr->rx_std_cons_idx == src_prod_idx)
6851 break;
6852
6853 if (spr->rx_std_cons_idx < src_prod_idx)
6854 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6855 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006856 cpycnt = tp->rx_std_ring_mask + 1 -
6857 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006858
Matt Carlson2c49a442010-09-30 10:34:35 +00006859 cpycnt = min(cpycnt,
6860 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006861
6862 si = spr->rx_std_cons_idx;
6863 di = dpr->rx_std_prod_idx;
6864
Matt Carlsone92967b2010-02-12 14:47:06 +00006865 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006866 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006867 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006868 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006869 break;
6870 }
6871 }
6872
6873 if (!cpycnt)
6874 break;
6875
6876 /* Ensure that updates to the rx_std_buffers ring and the
6877 * shadowed hardware producer ring from tg3_recycle_skb() are
6878 * ordered correctly WRT the skb check above.
6879 */
6880 smp_rmb();
6881
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006882 memcpy(&dpr->rx_std_buffers[di],
6883 &spr->rx_std_buffers[si],
6884 cpycnt * sizeof(struct ring_info));
6885
6886 for (i = 0; i < cpycnt; i++, di++, si++) {
6887 struct tg3_rx_buffer_desc *sbd, *dbd;
6888 sbd = &spr->rx_std[si];
6889 dbd = &dpr->rx_std[di];
6890 dbd->addr_hi = sbd->addr_hi;
6891 dbd->addr_lo = sbd->addr_lo;
6892 }
6893
Matt Carlson2c49a442010-09-30 10:34:35 +00006894 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6895 tp->rx_std_ring_mask;
6896 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6897 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006898 }
6899
6900 while (1) {
6901 src_prod_idx = spr->rx_jmb_prod_idx;
6902
6903 /* Make sure updates to the rx_jmb_buffers[] entries and
6904 * the jumbo producer index are seen in the correct order.
6905 */
6906 smp_rmb();
6907
6908 if (spr->rx_jmb_cons_idx == src_prod_idx)
6909 break;
6910
6911 if (spr->rx_jmb_cons_idx < src_prod_idx)
6912 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6913 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006914 cpycnt = tp->rx_jmb_ring_mask + 1 -
6915 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006916
6917 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006918 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006919
6920 si = spr->rx_jmb_cons_idx;
6921 di = dpr->rx_jmb_prod_idx;
6922
Matt Carlsone92967b2010-02-12 14:47:06 +00006923 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006924 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006925 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006926 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006927 break;
6928 }
6929 }
6930
6931 if (!cpycnt)
6932 break;
6933
6934 /* Ensure that updates to the rx_jmb_buffers ring and the
6935 * shadowed hardware producer ring from tg3_recycle_skb() are
6936 * ordered correctly WRT the skb check above.
6937 */
6938 smp_rmb();
6939
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006940 memcpy(&dpr->rx_jmb_buffers[di],
6941 &spr->rx_jmb_buffers[si],
6942 cpycnt * sizeof(struct ring_info));
6943
6944 for (i = 0; i < cpycnt; i++, di++, si++) {
6945 struct tg3_rx_buffer_desc *sbd, *dbd;
6946 sbd = &spr->rx_jmb[si].std;
6947 dbd = &dpr->rx_jmb[di].std;
6948 dbd->addr_hi = sbd->addr_hi;
6949 dbd->addr_lo = sbd->addr_lo;
6950 }
6951
Matt Carlson2c49a442010-09-30 10:34:35 +00006952 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6953 tp->rx_jmb_ring_mask;
6954 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6955 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006956 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006957
6958 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006959}
6960
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006961static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6962{
6963 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964
6965 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006966 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006967 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006968 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006969 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970 }
6971
Matt Carlsonf891ea12012-04-24 13:37:01 +00006972 if (!tnapi->rx_rcb_prod_idx)
6973 return work_done;
6974
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975 /* run RX thread, within the bounds set by NAPI.
6976 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006977 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006979 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006980 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981
Joe Perches63c3a662011-04-26 08:12:10 +00006982 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006983 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006984 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006985 u32 std_prod_idx = dpr->rx_std_prod_idx;
6986 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006987
Michael Chan7ae52892012-03-21 15:38:33 +00006988 tp->rx_refill = false;
Michael Chan91024262012-09-28 07:12:38 +00006989 for (i = 1; i <= tp->rxq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006990 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006991 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006992
6993 wmb();
6994
Matt Carlsone4af1af2010-02-12 14:47:05 +00006995 if (std_prod_idx != dpr->rx_std_prod_idx)
6996 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6997 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006998
Matt Carlsone4af1af2010-02-12 14:47:05 +00006999 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
7000 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
7001 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007002
7003 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00007004
7005 if (err)
7006 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007007 }
7008
David S. Miller6f535762007-10-11 18:08:29 -07007009 return work_done;
7010}
David S. Millerf7383c22005-05-18 22:50:53 -07007011
Matt Carlsondb219972011-11-04 09:15:03 +00007012static inline void tg3_reset_task_schedule(struct tg3 *tp)
7013{
7014 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
7015 schedule_work(&tp->reset_task);
7016}
7017
7018static inline void tg3_reset_task_cancel(struct tg3 *tp)
7019{
7020 cancel_work_sync(&tp->reset_task);
7021 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00007022 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00007023}
7024
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007025static int tg3_poll_msix(struct napi_struct *napi, int budget)
7026{
7027 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7028 struct tg3 *tp = tnapi->tp;
7029 int work_done = 0;
7030 struct tg3_hw_status *sblk = tnapi->hw_status;
7031
7032 while (1) {
7033 work_done = tg3_poll_work(tnapi, work_done, budget);
7034
Joe Perches63c3a662011-04-26 08:12:10 +00007035 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007036 goto tx_recovery;
7037
7038 if (unlikely(work_done >= budget))
7039 break;
7040
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007041 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007042 * to tell the hw how much work has been processed,
7043 * so we must read it before checking for more work.
7044 */
7045 tnapi->last_tag = sblk->status_tag;
7046 tnapi->last_irq_tag = tnapi->last_tag;
7047 rmb();
7048
7049 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00007050 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
7051 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00007052
7053 /* This test here is not race free, but will reduce
7054 * the number of interrupts by looping again.
7055 */
7056 if (tnapi == &tp->napi[1] && tp->rx_refill)
7057 continue;
7058
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007059 napi_complete(napi);
7060 /* Reenable interrupts. */
7061 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00007062
7063 /* This test here is synchronized by napi_schedule()
7064 * and napi_complete() to close the race condition.
7065 */
7066 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
7067 tw32(HOSTCC_MODE, tp->coalesce_mode |
7068 HOSTCC_MODE_ENABLE |
7069 tnapi->coal_now);
7070 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007071 mmiowb();
7072 break;
7073 }
7074 }
7075
7076 return work_done;
7077
7078tx_recovery:
7079 /* work_done is guaranteed to be less than budget. */
7080 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007081 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007082 return work_done;
7083}
7084
Matt Carlsone64de4e2011-04-13 11:05:05 +00007085static void tg3_process_error(struct tg3 *tp)
7086{
7087 u32 val;
7088 bool real_error = false;
7089
Joe Perches63c3a662011-04-26 08:12:10 +00007090 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00007091 return;
7092
7093 /* Check Flow Attention register */
7094 val = tr32(HOSTCC_FLOW_ATTN);
7095 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
7096 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
7097 real_error = true;
7098 }
7099
7100 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
7101 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
7102 real_error = true;
7103 }
7104
7105 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
7106 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
7107 real_error = true;
7108 }
7109
7110 if (!real_error)
7111 return;
7112
7113 tg3_dump_state(tp);
7114
Joe Perches63c3a662011-04-26 08:12:10 +00007115 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00007116 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00007117}
7118
David S. Miller6f535762007-10-11 18:08:29 -07007119static int tg3_poll(struct napi_struct *napi, int budget)
7120{
Matt Carlson8ef04422009-08-28 14:01:37 +00007121 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
7122 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07007123 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00007124 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07007125
7126 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00007127 if (sblk->status & SD_STATUS_ERROR)
7128 tg3_process_error(tp);
7129
Matt Carlson35f2d7d2009-11-13 13:03:41 +00007130 tg3_poll_link(tp);
7131
Matt Carlson17375d22009-08-28 14:02:18 +00007132 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07007133
Joe Perches63c3a662011-04-26 08:12:10 +00007134 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07007135 goto tx_recovery;
7136
7137 if (unlikely(work_done >= budget))
7138 break;
7139
Joe Perches63c3a662011-04-26 08:12:10 +00007140 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00007141 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07007142 * to tell the hw how much work has been processed,
7143 * so we must read it before checking for more work.
7144 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007145 tnapi->last_tag = sblk->status_tag;
7146 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07007147 rmb();
7148 } else
7149 sblk->status &= ~SD_STATUS_UPDATED;
7150
Matt Carlson17375d22009-08-28 14:02:18 +00007151 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08007152 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00007153 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07007154 break;
7155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156 }
7157
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007158 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07007159
7160tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07007161 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08007162 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00007163 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07007164 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165}
7166
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007167static void tg3_napi_disable(struct tg3 *tp)
7168{
7169 int i;
7170
7171 for (i = tp->irq_cnt - 1; i >= 0; i--)
7172 napi_disable(&tp->napi[i].napi);
7173}
7174
7175static void tg3_napi_enable(struct tg3 *tp)
7176{
7177 int i;
7178
7179 for (i = 0; i < tp->irq_cnt; i++)
7180 napi_enable(&tp->napi[i].napi);
7181}
7182
7183static void tg3_napi_init(struct tg3 *tp)
7184{
7185 int i;
7186
7187 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
7188 for (i = 1; i < tp->irq_cnt; i++)
7189 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
7190}
7191
7192static void tg3_napi_fini(struct tg3 *tp)
7193{
7194 int i;
7195
7196 for (i = 0; i < tp->irq_cnt; i++)
7197 netif_napi_del(&tp->napi[i].napi);
7198}
7199
7200static inline void tg3_netif_stop(struct tg3 *tp)
7201{
7202 tp->dev->trans_start = jiffies; /* prevent tx timeout */
7203 tg3_napi_disable(tp);
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007204 netif_carrier_off(tp->dev);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007205 netif_tx_disable(tp->dev);
7206}
7207
Nithin Nayak Sujir35763062012-12-03 19:36:56 +00007208/* tp->lock must be held */
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007209static inline void tg3_netif_start(struct tg3 *tp)
7210{
Matt Carlsonbe947302012-12-03 19:36:57 +00007211 tg3_ptp_resume(tp);
7212
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007213 /* NOTE: unconditional netif_tx_wake_all_queues is only
7214 * appropriate so long as all callers are assured to
7215 * have free tx slots (such as after tg3_init_hw)
7216 */
7217 netif_tx_wake_all_queues(tp->dev);
7218
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00007219 if (tp->link_up)
7220 netif_carrier_on(tp->dev);
7221
Matt Carlson66cfd1b2010-09-30 10:34:30 +00007222 tg3_napi_enable(tp);
7223 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
7224 tg3_enable_ints(tp);
7225}
7226
David S. Millerf47c11e2005-06-24 20:18:35 -07007227static void tg3_irq_quiesce(struct tg3 *tp)
7228{
Matt Carlson4f125f42009-09-01 12:55:02 +00007229 int i;
7230
David S. Millerf47c11e2005-06-24 20:18:35 -07007231 BUG_ON(tp->irq_sync);
7232
7233 tp->irq_sync = 1;
7234 smp_mb();
7235
Matt Carlson4f125f42009-09-01 12:55:02 +00007236 for (i = 0; i < tp->irq_cnt; i++)
7237 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07007238}
7239
David S. Millerf47c11e2005-06-24 20:18:35 -07007240/* Fully shutdown all tg3 driver activity elsewhere in the system.
7241 * If irq_sync is non-zero, then the IRQ handler must be synchronized
7242 * with as well. Most of the time, this is not necessary except when
7243 * shutting down the device.
7244 */
7245static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
7246{
Michael Chan46966542007-07-11 19:47:19 -07007247 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07007248 if (irq_sync)
7249 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07007250}
7251
7252static inline void tg3_full_unlock(struct tg3 *tp)
7253{
David S. Millerf47c11e2005-06-24 20:18:35 -07007254 spin_unlock_bh(&tp->lock);
7255}
7256
Michael Chanfcfa0a32006-03-20 22:28:41 -08007257/* One-shot MSI handler - Chip automatically disables interrupt
7258 * after sending MSI so driver doesn't have to do it.
7259 */
David Howells7d12e782006-10-05 14:55:46 +01007260static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08007261{
Matt Carlson09943a12009-08-28 14:01:57 +00007262 struct tg3_napi *tnapi = dev_id;
7263 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08007264
Matt Carlson898a56f2009-08-28 14:02:40 +00007265 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007266 if (tnapi->rx_rcb)
7267 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007268
7269 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007270 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08007271
7272 return IRQ_HANDLED;
7273}
7274
Michael Chan88b06bc22005-04-21 17:13:25 -07007275/* MSI ISR - No need to check for interrupt sharing and no need to
7276 * flush status block and interrupt mailbox. PCI ordering rules
7277 * guarantee that MSI will arrive after the status block.
7278 */
David Howells7d12e782006-10-05 14:55:46 +01007279static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07007280{
Matt Carlson09943a12009-08-28 14:01:57 +00007281 struct tg3_napi *tnapi = dev_id;
7282 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07007283
Matt Carlson898a56f2009-08-28 14:02:40 +00007284 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007285 if (tnapi->rx_rcb)
7286 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07007287 /*
David S. Millerfac9b832005-05-18 22:46:34 -07007288 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07007289 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07007290 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07007291 * NIC to stop sending us irqs, engaging "in-intr-handler"
7292 * event coalescing.
7293 */
Matt Carlson5b39de92011-08-31 11:44:50 +00007294 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07007295 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00007296 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07007297
Michael Chan88b06bc22005-04-21 17:13:25 -07007298 return IRQ_RETVAL(1);
7299}
7300
David Howells7d12e782006-10-05 14:55:46 +01007301static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302{
Matt Carlson09943a12009-08-28 14:01:57 +00007303 struct tg3_napi *tnapi = dev_id;
7304 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007305 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306 unsigned int handled = 1;
7307
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308 /* In INTx mode, it is possible for the interrupt to arrive at
7309 * the CPU before the status block posted prior to the interrupt.
7310 * Reading the PCI State register will confirm whether the
7311 * interrupt is ours and will flush the status block.
7312 */
Michael Chand18edcb2007-03-24 20:57:11 -07007313 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00007314 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007315 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7316 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007317 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07007318 }
Michael Chand18edcb2007-03-24 20:57:11 -07007319 }
7320
7321 /*
7322 * Writing any value to intr-mbox-0 clears PCI INTA# and
7323 * chip-internal interrupt pending events.
7324 * Writing non-zero to intr-mbox-0 additional tells the
7325 * NIC to stop sending us irqs, engaging "in-intr-handler"
7326 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007327 *
7328 * Flush the mailbox to de-assert the IRQ immediately to prevent
7329 * spurious interrupts. The flush impacts performance but
7330 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007331 */
Michael Chanc04cb342007-05-07 00:26:15 -07007332 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07007333 if (tg3_irq_sync(tp))
7334 goto out;
7335 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00007336 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00007337 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00007338 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07007339 } else {
7340 /* No work, shared interrupt perhaps? re-enable
7341 * interrupts, and flush that PCI write
7342 */
7343 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
7344 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07007345 }
David S. Millerf47c11e2005-06-24 20:18:35 -07007346out:
David S. Millerfac9b832005-05-18 22:46:34 -07007347 return IRQ_RETVAL(handled);
7348}
7349
David Howells7d12e782006-10-05 14:55:46 +01007350static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07007351{
Matt Carlson09943a12009-08-28 14:01:57 +00007352 struct tg3_napi *tnapi = dev_id;
7353 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007354 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07007355 unsigned int handled = 1;
7356
David S. Millerfac9b832005-05-18 22:46:34 -07007357 /* In INTx mode, it is possible for the interrupt to arrive at
7358 * the CPU before the status block posted prior to the interrupt.
7359 * Reading the PCI State register will confirm whether the
7360 * interrupt is ours and will flush the status block.
7361 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007362 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00007363 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07007364 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
7365 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07007366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367 }
Michael Chand18edcb2007-03-24 20:57:11 -07007368 }
7369
7370 /*
7371 * writing any value to intr-mbox-0 clears PCI INTA# and
7372 * chip-internal interrupt pending events.
7373 * writing non-zero to intr-mbox-0 additional tells the
7374 * NIC to stop sending us irqs, engaging "in-intr-handler"
7375 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07007376 *
7377 * Flush the mailbox to de-assert the IRQ immediately to prevent
7378 * spurious interrupts. The flush impacts performance but
7379 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07007380 */
Michael Chanc04cb342007-05-07 00:26:15 -07007381 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00007382
7383 /*
7384 * In a shared interrupt configuration, sometimes other devices'
7385 * interrupts will scream. We record the current status tag here
7386 * so that the above check can report that the screaming interrupts
7387 * are unhandled. Eventually they will be silenced.
7388 */
Matt Carlson898a56f2009-08-28 14:02:40 +00007389 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00007390
Michael Chand18edcb2007-03-24 20:57:11 -07007391 if (tg3_irq_sync(tp))
7392 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00007393
Matt Carlson72334482009-08-28 14:03:01 +00007394 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00007395
Matt Carlson09943a12009-08-28 14:01:57 +00007396 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00007397
David S. Millerf47c11e2005-06-24 20:18:35 -07007398out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399 return IRQ_RETVAL(handled);
7400}
7401
Michael Chan79381092005-04-21 17:13:59 -07007402/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01007403static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07007404{
Matt Carlson09943a12009-08-28 14:01:57 +00007405 struct tg3_napi *tnapi = dev_id;
7406 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00007407 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07007408
Michael Chanf9804dd2005-09-27 12:13:10 -07007409 if ((sblk->status & SD_STATUS_UPDATED) ||
7410 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07007411 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07007412 return IRQ_RETVAL(1);
7413 }
7414 return IRQ_RETVAL(0);
7415}
7416
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417#ifdef CONFIG_NET_POLL_CONTROLLER
7418static void tg3_poll_controller(struct net_device *dev)
7419{
Matt Carlson4f125f42009-09-01 12:55:02 +00007420 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07007421 struct tg3 *tp = netdev_priv(dev);
7422
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +00007423 if (tg3_irq_sync(tp))
7424 return;
7425
Matt Carlson4f125f42009-09-01 12:55:02 +00007426 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00007427 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428}
7429#endif
7430
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431static void tg3_tx_timeout(struct net_device *dev)
7432{
7433 struct tg3 *tp = netdev_priv(dev);
7434
Michael Chanb0408752007-02-13 12:18:30 -08007435 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00007436 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00007437 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08007438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439
Matt Carlsondb219972011-11-04 09:15:03 +00007440 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441}
7442
Michael Chanc58ec932005-09-17 00:46:27 -07007443/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
7444static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
7445{
7446 u32 base = (u32) mapping & 0xffffffff;
7447
Eric Dumazet807540b2010-09-23 05:40:09 +00007448 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07007449}
7450
Michael Chan72f2afb2006-03-06 19:28:35 -08007451/* Test for DMA addresses > 40-bit */
7452static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
7453 int len)
7454{
7455#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00007456 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00007457 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08007458 return 0;
7459#else
7460 return 0;
7461#endif
7462}
7463
Matt Carlsond1a3b732011-07-27 14:20:51 +00007464static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007465 dma_addr_t mapping, u32 len, u32 flags,
7466 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00007467{
Matt Carlson92cd3a12011-07-27 14:20:47 +00007468 txbd->addr_hi = ((u64) mapping >> 32);
7469 txbd->addr_lo = ((u64) mapping & 0xffffffff);
7470 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
7471 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00007472}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473
Matt Carlson84b67b22011-07-27 14:20:52 +00007474static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007475 dma_addr_t map, u32 len, u32 flags,
7476 u32 mss, u32 vlan)
7477{
7478 struct tg3 *tp = tnapi->tp;
7479 bool hwbug = false;
7480
7481 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00007482 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007483
7484 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007485 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007486
7487 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00007488 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00007489
Matt Carlsona4cb4282011-12-14 11:09:58 +00007490 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007491 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00007492 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00007493 while (len > tp->dma_limit && *budget) {
7494 u32 frag_len = tp->dma_limit;
7495 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00007496
Matt Carlsonb9e45482011-11-04 09:14:59 +00007497 /* Avoid the 8byte DMA problem */
7498 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00007499 len += tp->dma_limit / 2;
7500 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00007501 }
7502
Matt Carlsonb9e45482011-11-04 09:14:59 +00007503 tnapi->tx_buffers[*entry].fragmented = true;
7504
7505 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7506 frag_len, tmp_flag, mss, vlan);
7507 *budget -= 1;
7508 prvidx = *entry;
7509 *entry = NEXT_TX(*entry);
7510
Matt Carlsone31aa982011-07-27 14:20:53 +00007511 map += frag_len;
7512 }
7513
7514 if (len) {
7515 if (*budget) {
7516 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7517 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00007518 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00007519 *entry = NEXT_TX(*entry);
7520 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00007521 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007522 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00007523 }
7524 }
7525 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00007526 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
7527 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00007528 *entry = NEXT_TX(*entry);
7529 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00007530
7531 return hwbug;
7532}
7533
Matt Carlson0d681b22011-07-27 14:20:49 +00007534static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00007535{
7536 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00007537 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00007538 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007539
Matt Carlson0d681b22011-07-27 14:20:49 +00007540 skb = txb->skb;
7541 txb->skb = NULL;
7542
Matt Carlson432aa7e2011-05-19 12:12:45 +00007543 pci_unmap_single(tnapi->tp->pdev,
7544 dma_unmap_addr(txb, mapping),
7545 skb_headlen(skb),
7546 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007547
7548 while (txb->fragmented) {
7549 txb->fragmented = false;
7550 entry = NEXT_TX(entry);
7551 txb = &tnapi->tx_buffers[entry];
7552 }
7553
Matt Carlsonba1142e2011-11-04 09:15:00 +00007554 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00007555 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00007556
7557 entry = NEXT_TX(entry);
7558 txb = &tnapi->tx_buffers[entry];
7559
7560 pci_unmap_page(tnapi->tp->pdev,
7561 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00007562 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00007563
7564 while (txb->fragmented) {
7565 txb->fragmented = false;
7566 entry = NEXT_TX(entry);
7567 txb = &tnapi->tx_buffers[entry];
7568 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00007569 }
7570}
7571
Michael Chan72f2afb2006-03-06 19:28:35 -08007572/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007573static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04007574 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00007575 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00007576 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577{
Matt Carlson24f4efd2009-11-13 13:03:35 +00007578 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04007579 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07007580 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007581 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582
Joe Perches41535772013-02-16 11:20:04 +00007583 if (tg3_asic_rev(tp) != ASIC_REV_5701)
Matt Carlson41588ba2008-04-19 18:12:33 -07007584 new_skb = skb_copy(skb, GFP_ATOMIC);
7585 else {
7586 int more_headroom = 4 - ((unsigned long)skb->data & 3);
7587
7588 new_skb = skb_copy_expand(skb,
7589 skb_headroom(skb) + more_headroom,
7590 skb_tailroom(skb), GFP_ATOMIC);
7591 }
7592
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07007594 ret = -1;
7595 } else {
7596 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00007597 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
7598 PCI_DMA_TODEVICE);
7599 /* Make sure the mapping succeeded */
7600 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00007601 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07007602 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07007603 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00007604 u32 save_entry = *entry;
7605
Matt Carlson92cd3a12011-07-27 14:20:47 +00007606 base_flags |= TXD_FLAG_END;
7607
Matt Carlson84b67b22011-07-27 14:20:52 +00007608 tnapi->tx_buffers[*entry].skb = new_skb;
7609 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00007610 mapping, new_addr);
7611
Matt Carlson84b67b22011-07-27 14:20:52 +00007612 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00007613 new_skb->len, base_flags,
7614 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00007615 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00007616 dev_kfree_skb(new_skb);
7617 ret = -1;
7618 }
Michael Chanc58ec932005-09-17 00:46:27 -07007619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620 }
7621
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04007623 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07007624 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625}
7626
Matt Carlson2ffcc982011-05-19 12:12:44 +00007627static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07007628
7629/* Use GSO to workaround a rare TSO bug that may be triggered when the
7630 * TSO header is greater than 80 bytes.
7631 */
7632static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
7633{
7634 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007635 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07007636
7637 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007638 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07007639 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007640
7641 /* netif_tx_stop_queue() must be done before checking
7642 * checking tx index in tg3_tx_avail() below, because in
7643 * tg3_tx(), we update tx index before checking for
7644 * netif_tx_queue_stopped().
7645 */
7646 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007647 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08007648 return NETDEV_TX_BUSY;
7649
7650 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007651 }
7652
7653 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07007654 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07007655 goto tg3_tso_bug_end;
7656
7657 do {
7658 nskb = segs;
7659 segs = segs->next;
7660 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00007661 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07007662 } while (segs);
7663
7664tg3_tso_bug_end:
7665 dev_kfree_skb(skb);
7666
7667 return NETDEV_TX_OK;
7668}
Michael Chan52c0fd82006-06-29 20:15:54 -07007669
Michael Chan5a6f3072006-03-20 22:28:05 -08007670/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00007671 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08007672 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00007673static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08007674{
7675 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00007676 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00007677 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007678 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07007679 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007680 struct tg3_napi *tnapi;
7681 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00007682 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007683
Matt Carlson24f4efd2009-11-13 13:03:35 +00007684 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
7685 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00007686 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007687 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688
Matt Carlson84b67b22011-07-27 14:20:52 +00007689 budget = tg3_tx_avail(tnapi);
7690
Michael Chan00b70502006-06-17 21:58:45 -07007691 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007692 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07007693 * interrupt. Furthermore, IRQ processing runs lockless so we have
7694 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007696 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007697 if (!netif_tx_queue_stopped(txq)) {
7698 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007699
7700 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00007701 netdev_err(dev,
7702 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08007703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704 return NETDEV_TX_BUSY;
7705 }
7706
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007707 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07007709 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00007711
Matt Carlsonbe98da62010-07-11 09:31:46 +00007712 mss = skb_shinfo(skb)->gso_size;
7713 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007714 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00007715 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716
7717 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00007718 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7719 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720
Matt Carlson34195c32010-07-11 09:31:42 +00007721 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07007722 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007723
Eric Dumazeta5a11952012-01-23 01:22:09 +00007724 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00007725
Eric Dumazeta5a11952012-01-23 01:22:09 +00007726 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00007727 iph->check = 0;
7728 iph->tot_len = htons(mss + hdr_len);
7729 }
7730
Michael Chan52c0fd82006-06-29 20:15:54 -07007731 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007732 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00007733 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07007734
Linus Torvalds1da177e2005-04-16 15:20:36 -07007735 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
7736 TXD_FLAG_CPU_POST_DMA);
7737
Joe Perches63c3a662011-04-26 08:12:10 +00007738 if (tg3_flag(tp, HW_TSO_1) ||
7739 tg3_flag(tp, HW_TSO_2) ||
7740 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007741 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07007743 } else
7744 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7745 iph->daddr, 0,
7746 IPPROTO_TCP,
7747 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
Joe Perches63c3a662011-04-26 08:12:10 +00007749 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00007750 mss |= (hdr_len & 0xc) << 12;
7751 if (hdr_len & 0x10)
7752 base_flags |= 0x00000010;
7753 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00007754 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007755 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00007756 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +00007757 tg3_asic_rev(tp) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007758 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759 int tsflags;
7760
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007761 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007762 mss |= (tsflags << 11);
7763 }
7764 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007765 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766 int tsflags;
7767
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07007768 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769 base_flags |= tsflags << 12;
7770 }
7771 }
7772 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00007773
Matt Carlson93a700a2011-08-31 11:44:54 +00007774 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
7775 !mss && skb->len > VLAN_ETH_FRAME_LEN)
7776 base_flags |= TXD_FLAG_JMB_PKT;
7777
Matt Carlson92cd3a12011-07-27 14:20:47 +00007778 if (vlan_tx_tag_present(skb)) {
7779 base_flags |= TXD_FLAG_VLAN;
7780 vlan = vlan_tx_tag_get(skb);
7781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00007783 if ((unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) &&
7784 tg3_flag(tp, TX_TSTAMP_EN)) {
7785 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7786 base_flags |= TXD_FLAG_HWTSTAMP;
7787 }
7788
Alexander Duyckf4188d82009-12-02 16:48:38 +00007789 len = skb_headlen(skb);
7790
7791 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00007792 if (pci_dma_mapping_error(tp->pdev, mapping))
7793 goto drop;
7794
David S. Miller90079ce2008-09-11 04:52:51 -07007795
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007796 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007797 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798
7799 would_hit_hwbug = 0;
7800
Joe Perches63c3a662011-04-26 08:12:10 +00007801 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07007802 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803
Matt Carlson84b67b22011-07-27 14:20:52 +00007804 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00007805 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00007806 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00007807 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00007808 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00007809 u32 tmp_mss = mss;
7810
7811 if (!tg3_flag(tp, HW_TSO_1) &&
7812 !tg3_flag(tp, HW_TSO_2) &&
7813 !tg3_flag(tp, HW_TSO_3))
7814 tmp_mss = 0;
7815
Matt Carlsonc5665a52012-02-13 10:20:12 +00007816 /* Now loop through additional data
7817 * fragments, and queue them.
7818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819 last = skb_shinfo(skb)->nr_frags - 1;
7820 for (i = 0; i <= last; i++) {
7821 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
7822
Eric Dumazet9e903e02011-10-18 21:00:24 +00007823 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00007824 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007825 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007827 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00007828 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00007829 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01007830 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00007831 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832
Matt Carlsonb9e45482011-11-04 09:14:59 +00007833 if (!budget ||
7834 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00007835 len, base_flags |
7836 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00007837 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007838 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007839 break;
7840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841 }
7842 }
7843
7844 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00007845 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846
7847 /* If the workaround fails due to memory/mapping
7848 * failure, silently drop this packet.
7849 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007850 entry = tnapi->tx_prod;
7851 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04007852 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00007853 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00007854 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855 }
7856
Richard Cochrand515b452011-06-19 03:31:41 +00007857 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007858 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007859
Michael Chan6541b802012-03-04 14:48:14 +00007860 /* Sync BD data before updating mailbox */
7861 wmb();
7862
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007864 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007866 tnapi->tx_prod = entry;
7867 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007868 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007869
7870 /* netif_tx_stop_queue() must be done before checking
7871 * checking tx index in tg3_tx_avail() below, because in
7872 * tg3_tx(), we update tx index before checking for
7873 * netif_tx_queue_stopped().
7874 */
7875 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007876 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007877 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007880 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007882
7883dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007884 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007885 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007886drop:
7887 dev_kfree_skb(skb);
7888drop_nofree:
7889 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007890 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891}
7892
Matt Carlson6e01b202011-08-19 13:58:20 +00007893static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7894{
7895 if (enable) {
7896 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7897 MAC_MODE_PORT_MODE_MASK);
7898
7899 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7900
7901 if (!tg3_flag(tp, 5705_PLUS))
7902 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7903
7904 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7905 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7906 else
7907 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7908 } else {
7909 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7910
7911 if (tg3_flag(tp, 5705_PLUS) ||
7912 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
Joe Perches41535772013-02-16 11:20:04 +00007913 tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlson6e01b202011-08-19 13:58:20 +00007914 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7915 }
7916
7917 tw32(MAC_MODE, tp->mac_mode);
7918 udelay(40);
7919}
7920
Matt Carlson941ec902011-08-19 13:58:23 +00007921static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007922{
Matt Carlson941ec902011-08-19 13:58:23 +00007923 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007924
7925 tg3_phy_toggle_apd(tp, false);
Joe Perches953c96e2013-04-09 10:18:14 +00007926 tg3_phy_toggle_automdix(tp, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007927
Matt Carlson941ec902011-08-19 13:58:23 +00007928 if (extlpbk && tg3_phy_set_extloopbk(tp))
7929 return -EIO;
7930
7931 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007932 switch (speed) {
7933 case SPEED_10:
7934 break;
7935 case SPEED_100:
7936 bmcr |= BMCR_SPEED100;
7937 break;
7938 case SPEED_1000:
7939 default:
7940 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7941 speed = SPEED_100;
7942 bmcr |= BMCR_SPEED100;
7943 } else {
7944 speed = SPEED_1000;
7945 bmcr |= BMCR_SPEED1000;
7946 }
7947 }
7948
Matt Carlson941ec902011-08-19 13:58:23 +00007949 if (extlpbk) {
7950 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7951 tg3_readphy(tp, MII_CTRL1000, &val);
7952 val |= CTL1000_AS_MASTER |
7953 CTL1000_ENABLE_MASTER;
7954 tg3_writephy(tp, MII_CTRL1000, val);
7955 } else {
7956 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7957 MII_TG3_FET_PTEST_TRIM_2;
7958 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7959 }
7960 } else
7961 bmcr |= BMCR_LOOPBACK;
7962
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007963 tg3_writephy(tp, MII_BMCR, bmcr);
7964
7965 /* The write needs to be flushed for the FETs */
7966 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7967 tg3_readphy(tp, MII_BMCR, &bmcr);
7968
7969 udelay(40);
7970
7971 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +00007972 tg3_asic_rev(tp) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007973 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007974 MII_TG3_FET_PTEST_FRC_TX_LINK |
7975 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7976
7977 /* The write needs to be flushed for the AC131 */
7978 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7979 }
7980
7981 /* Reset to prevent losing 1st rx packet intermittently */
7982 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
7983 tg3_flag(tp, 5780_CLASS)) {
7984 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7985 udelay(10);
7986 tw32_f(MAC_RX_MODE, tp->rx_mode);
7987 }
7988
7989 mac_mode = tp->mac_mode &
7990 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
7991 if (speed == SPEED_1000)
7992 mac_mode |= MAC_MODE_PORT_MODE_GMII;
7993 else
7994 mac_mode |= MAC_MODE_PORT_MODE_MII;
7995
Joe Perches41535772013-02-16 11:20:04 +00007996 if (tg3_asic_rev(tp) == ASIC_REV_5700) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007997 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
7998
7999 if (masked_phy_id == TG3_PHY_ID_BCM5401)
8000 mac_mode &= ~MAC_MODE_LINK_POLARITY;
8001 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
8002 mac_mode |= MAC_MODE_LINK_POLARITY;
8003
8004 tg3_writephy(tp, MII_TG3_EXT_CTRL,
8005 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
8006 }
8007
8008 tw32(MAC_MODE, mac_mode);
8009 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00008010
8011 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00008012}
8013
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008014static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008015{
8016 struct tg3 *tp = netdev_priv(dev);
8017
8018 if (features & NETIF_F_LOOPBACK) {
8019 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
8020 return;
8021
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008022 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008023 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008024 netif_carrier_on(tp->dev);
8025 spin_unlock_bh(&tp->lock);
8026 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
8027 } else {
8028 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
8029 return;
8030
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008031 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00008032 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008033 /* Force link status check */
Joe Perches953c96e2013-04-09 10:18:14 +00008034 tg3_setup_phy(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008035 spin_unlock_bh(&tp->lock);
8036 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
8037 }
8038}
8039
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008040static netdev_features_t tg3_fix_features(struct net_device *dev,
8041 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00008042{
8043 struct tg3 *tp = netdev_priv(dev);
8044
Joe Perches63c3a662011-04-26 08:12:10 +00008045 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00008046 features &= ~NETIF_F_ALL_TSO;
8047
8048 return features;
8049}
8050
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008051static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008052{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008053 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00008054
8055 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
8056 tg3_set_loopback(dev, features);
8057
8058 return 0;
8059}
8060
Matt Carlson21f581a2009-08-28 14:00:25 +00008061static void tg3_rx_prodring_free(struct tg3 *tp,
8062 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064 int i;
8065
Matt Carlson8fea32b2010-09-15 08:59:58 +00008066 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008067 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008068 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008069 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008070 tp->rx_pkt_map_sz);
8071
Joe Perches63c3a662011-04-26 08:12:10 +00008072 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008073 for (i = tpr->rx_jmb_cons_idx;
8074 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00008075 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00008076 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008077 TG3_RX_JMB_MAP_SZ);
8078 }
8079 }
8080
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008081 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083
Matt Carlson2c49a442010-09-30 10:34:35 +00008084 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008085 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008086 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087
Joe Perches63c3a662011-04-26 08:12:10 +00008088 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008089 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00008090 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008091 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008092 }
8093}
8094
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008095/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008096 *
8097 * The chip has been shut down and the driver detached from
8098 * the networking, so no interrupts or new tx packets will
8099 * end up in the driver. tp->{tx,}lock are held and thus
8100 * we may not sleep.
8101 */
Matt Carlson21f581a2009-08-28 14:00:25 +00008102static int tg3_rx_prodring_alloc(struct tg3 *tp,
8103 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104{
Matt Carlson287be122009-08-28 13:58:46 +00008105 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008106
Matt Carlsonb196c7e2009-11-13 13:03:50 +00008107 tpr->rx_std_cons_idx = 0;
8108 tpr->rx_std_prod_idx = 0;
8109 tpr->rx_jmb_cons_idx = 0;
8110 tpr->rx_jmb_prod_idx = 0;
8111
Matt Carlson8fea32b2010-09-15 08:59:58 +00008112 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008113 memset(&tpr->rx_std_buffers[0], 0,
8114 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00008115 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008116 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00008117 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008118 goto done;
8119 }
8120
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00008122 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123
Matt Carlson287be122009-08-28 13:58:46 +00008124 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008125 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00008126 tp->dev->mtu > ETH_DATA_LEN)
8127 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
8128 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07008129
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130 /* Initialize invariants of the rings, we only set this
8131 * stuff once. This works because the card does not
8132 * write into the rx buffer posting rings.
8133 */
Matt Carlson2c49a442010-09-30 10:34:35 +00008134 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135 struct tg3_rx_buffer_desc *rxd;
8136
Matt Carlson21f581a2009-08-28 14:00:25 +00008137 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00008138 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
8140 rxd->opaque = (RXD_OPAQUE_RING_STD |
8141 (i << RXD_OPAQUE_INDEX_SHIFT));
8142 }
8143
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008144 /* Now allocate fresh SKBs for each rx ring. */
8145 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008146 unsigned int frag_size;
8147
8148 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
8149 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008150 netdev_warn(tp->dev,
8151 "Using a smaller RX standard ring. Only "
8152 "%d out of %d buffers were allocated "
8153 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008154 if (i == 0)
8155 goto initfail;
8156 tp->rx_pending = i;
8157 break;
8158 }
8159 }
8160
Joe Perches63c3a662011-04-26 08:12:10 +00008161 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008162 goto done;
8163
Matt Carlson2c49a442010-09-30 10:34:35 +00008164 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008165
Joe Perches63c3a662011-04-26 08:12:10 +00008166 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00008167 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168
Matt Carlson2c49a442010-09-30 10:34:35 +00008169 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00008170 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008171
Matt Carlson0d86df82010-02-17 15:17:00 +00008172 rxd = &tpr->rx_jmb[i].std;
8173 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
8174 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
8175 RXD_FLAG_JUMBO;
8176 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
8177 (i << RXD_OPAQUE_INDEX_SHIFT));
8178 }
8179
8180 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00008181 unsigned int frag_size;
8182
8183 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
8184 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00008185 netdev_warn(tp->dev,
8186 "Using a smaller RX jumbo ring. Only %d "
8187 "out of %d buffers were allocated "
8188 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00008189 if (i == 0)
8190 goto initfail;
8191 tp->rx_jumbo_pending = i;
8192 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008193 }
8194 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008195
8196done:
Michael Chan32d8c572006-07-25 16:38:29 -07008197 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008198
8199initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00008200 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008201 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202}
8203
Matt Carlson21f581a2009-08-28 14:00:25 +00008204static void tg3_rx_prodring_fini(struct tg3 *tp,
8205 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206{
Matt Carlson21f581a2009-08-28 14:00:25 +00008207 kfree(tpr->rx_std_buffers);
8208 tpr->rx_std_buffers = NULL;
8209 kfree(tpr->rx_jmb_buffers);
8210 tpr->rx_jmb_buffers = NULL;
8211 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008212 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
8213 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008214 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215 }
Matt Carlson21f581a2009-08-28 14:00:25 +00008216 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008217 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
8218 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00008219 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008220 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008221}
8222
Matt Carlson21f581a2009-08-28 14:00:25 +00008223static int tg3_rx_prodring_init(struct tg3 *tp,
8224 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008225{
Matt Carlson2c49a442010-09-30 10:34:35 +00008226 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
8227 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008228 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008229 return -ENOMEM;
8230
Matt Carlson4bae65c2010-11-24 08:31:52 +00008231 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
8232 TG3_RX_STD_RING_BYTES(tp),
8233 &tpr->rx_std_mapping,
8234 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008235 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008236 goto err_out;
8237
Joe Perches63c3a662011-04-26 08:12:10 +00008238 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00008239 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00008240 GFP_KERNEL);
8241 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008242 goto err_out;
8243
Matt Carlson4bae65c2010-11-24 08:31:52 +00008244 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
8245 TG3_RX_JMB_RING_BYTES(tp),
8246 &tpr->rx_jmb_mapping,
8247 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00008248 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008249 goto err_out;
8250 }
8251
8252 return 0;
8253
8254err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00008255 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008256 return -ENOMEM;
8257}
8258
8259/* Free up pending packets in all rx/tx rings.
8260 *
8261 * The chip has been shut down and the driver detached from
8262 * the networking, so no interrupts or new tx packets will
8263 * end up in the driver. tp->{tx,}lock is not held and we are not
8264 * in an interrupt context and thus may sleep.
8265 */
8266static void tg3_free_rings(struct tg3 *tp)
8267{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008268 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008269
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008270 for (j = 0; j < tp->irq_cnt; j++) {
8271 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008272
Matt Carlson8fea32b2010-09-15 08:59:58 +00008273 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00008274
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008275 if (!tnapi->tx_buffers)
8276 continue;
8277
Matt Carlson0d681b22011-07-27 14:20:49 +00008278 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
8279 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008280
Matt Carlson0d681b22011-07-27 14:20:49 +00008281 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008282 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008283
Matt Carlsonba1142e2011-11-04 09:15:00 +00008284 tg3_tx_skb_unmap(tnapi, i,
8285 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008286
8287 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008288 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00008289 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008290 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008291}
8292
8293/* Initialize tx/rx rings for packet processing.
8294 *
8295 * The chip has been shut down and the driver detached from
8296 * the networking, so no interrupts or new tx packets will
8297 * end up in the driver. tp->{tx,}lock are held and thus
8298 * we may not sleep.
8299 */
8300static int tg3_init_rings(struct tg3 *tp)
8301{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008302 int i;
Matt Carlson72334482009-08-28 14:03:01 +00008303
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008304 /* Free up all the SKBs. */
8305 tg3_free_rings(tp);
8306
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008307 for (i = 0; i < tp->irq_cnt; i++) {
8308 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008309
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008310 tnapi->last_tag = 0;
8311 tnapi->last_irq_tag = 0;
8312 tnapi->hw_status->status = 0;
8313 tnapi->hw_status->status_tag = 0;
8314 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8315
8316 tnapi->tx_prod = 0;
8317 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008318 if (tnapi->tx_ring)
8319 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008320
8321 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00008322 if (tnapi->rx_rcb)
8323 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008324
Matt Carlson8fea32b2010-09-15 08:59:58 +00008325 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00008326 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008327 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00008328 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008329 }
Matt Carlson72334482009-08-28 14:03:01 +00008330
Matt Carlson2b2cdb62009-11-13 13:03:48 +00008331 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008332}
8333
Michael Chan49a359e2012-09-28 07:12:37 +00008334static void tg3_mem_tx_release(struct tg3 *tp)
8335{
8336 int i;
8337
8338 for (i = 0; i < tp->irq_max; i++) {
8339 struct tg3_napi *tnapi = &tp->napi[i];
8340
8341 if (tnapi->tx_ring) {
8342 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
8343 tnapi->tx_ring, tnapi->tx_desc_mapping);
8344 tnapi->tx_ring = NULL;
8345 }
8346
8347 kfree(tnapi->tx_buffers);
8348 tnapi->tx_buffers = NULL;
8349 }
8350}
8351
8352static int tg3_mem_tx_acquire(struct tg3 *tp)
8353{
8354 int i;
8355 struct tg3_napi *tnapi = &tp->napi[0];
8356
8357 /* If multivector TSS is enabled, vector 0 does not handle
8358 * tx interrupts. Don't allocate any resources for it.
8359 */
8360 if (tg3_flag(tp, ENABLE_TSS))
8361 tnapi++;
8362
8363 for (i = 0; i < tp->txq_cnt; i++, tnapi++) {
8364 tnapi->tx_buffers = kzalloc(sizeof(struct tg3_tx_ring_info) *
8365 TG3_TX_RING_SIZE, GFP_KERNEL);
8366 if (!tnapi->tx_buffers)
8367 goto err_out;
8368
8369 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
8370 TG3_TX_RING_BYTES,
8371 &tnapi->tx_desc_mapping,
8372 GFP_KERNEL);
8373 if (!tnapi->tx_ring)
8374 goto err_out;
8375 }
8376
8377 return 0;
8378
8379err_out:
8380 tg3_mem_tx_release(tp);
8381 return -ENOMEM;
8382}
8383
8384static void tg3_mem_rx_release(struct tg3 *tp)
8385{
8386 int i;
8387
8388 for (i = 0; i < tp->irq_max; i++) {
8389 struct tg3_napi *tnapi = &tp->napi[i];
8390
8391 tg3_rx_prodring_fini(tp, &tnapi->prodring);
8392
8393 if (!tnapi->rx_rcb)
8394 continue;
8395
8396 dma_free_coherent(&tp->pdev->dev,
8397 TG3_RX_RCB_RING_BYTES(tp),
8398 tnapi->rx_rcb,
8399 tnapi->rx_rcb_mapping);
8400 tnapi->rx_rcb = NULL;
8401 }
8402}
8403
8404static int tg3_mem_rx_acquire(struct tg3 *tp)
8405{
8406 unsigned int i, limit;
8407
8408 limit = tp->rxq_cnt;
8409
8410 /* If RSS is enabled, we need a (dummy) producer ring
8411 * set on vector zero. This is the true hw prodring.
8412 */
8413 if (tg3_flag(tp, ENABLE_RSS))
8414 limit++;
8415
8416 for (i = 0; i < limit; i++) {
8417 struct tg3_napi *tnapi = &tp->napi[i];
8418
8419 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
8420 goto err_out;
8421
8422 /* If multivector RSS is enabled, vector 0
8423 * does not handle rx or tx interrupts.
8424 * Don't allocate any resources for it.
8425 */
8426 if (!i && tg3_flag(tp, ENABLE_RSS))
8427 continue;
8428
8429 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
8430 TG3_RX_RCB_RING_BYTES(tp),
8431 &tnapi->rx_rcb_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008432 GFP_KERNEL | __GFP_ZERO);
Michael Chan49a359e2012-09-28 07:12:37 +00008433 if (!tnapi->rx_rcb)
8434 goto err_out;
Michael Chan49a359e2012-09-28 07:12:37 +00008435 }
8436
8437 return 0;
8438
8439err_out:
8440 tg3_mem_rx_release(tp);
8441 return -ENOMEM;
8442}
8443
Matt Carlsoncf7a7292009-08-28 13:59:57 +00008444/*
8445 * Must not be invoked with interrupt sources disabled and
8446 * the hardware shutdown down.
8447 */
8448static void tg3_free_consistent(struct tg3 *tp)
8449{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008450 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008451
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008452 for (i = 0; i < tp->irq_cnt; i++) {
8453 struct tg3_napi *tnapi = &tp->napi[i];
8454
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008455 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008456 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
8457 tnapi->hw_status,
8458 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008459 tnapi->hw_status = NULL;
8460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008461 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008462
Michael Chan49a359e2012-09-28 07:12:37 +00008463 tg3_mem_rx_release(tp);
8464 tg3_mem_tx_release(tp);
8465
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00008467 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
8468 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469 tp->hw_stats = NULL;
8470 }
8471}
8472
8473/*
8474 * Must not be invoked with interrupt sources disabled and
8475 * the hardware shutdown down. Can sleep.
8476 */
8477static int tg3_alloc_consistent(struct tg3 *tp)
8478{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008479 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00008480
Matt Carlson4bae65c2010-11-24 08:31:52 +00008481 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
8482 sizeof(struct tg3_hw_stats),
8483 &tp->stats_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008484 GFP_KERNEL | __GFP_ZERO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485 if (!tp->hw_stats)
8486 goto err_out;
8487
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008488 for (i = 0; i < tp->irq_cnt; i++) {
8489 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008490 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008491
Matt Carlson4bae65c2010-11-24 08:31:52 +00008492 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
8493 TG3_HW_STATUS_SIZE,
8494 &tnapi->status_mapping,
Joe Perches1f9061d22013-03-15 07:23:58 +00008495 GFP_KERNEL | __GFP_ZERO);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008496 if (!tnapi->hw_status)
8497 goto err_out;
8498
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008499 sblk = tnapi->hw_status;
8500
Michael Chan49a359e2012-09-28 07:12:37 +00008501 if (tg3_flag(tp, ENABLE_RSS)) {
Michael Chan86449942012-10-02 20:31:14 -07008502 u16 *prodptr = NULL;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008503
Michael Chan49a359e2012-09-28 07:12:37 +00008504 /*
8505 * When RSS is enabled, the status block format changes
8506 * slightly. The "rx_jumbo_consumer", "reserved",
8507 * and "rx_mini_consumer" members get mapped to the
8508 * other three rx return ring producer indexes.
8509 */
8510 switch (i) {
8511 case 1:
8512 prodptr = &sblk->idx[0].rx_producer;
8513 break;
8514 case 2:
8515 prodptr = &sblk->rx_jumbo_consumer;
8516 break;
8517 case 3:
8518 prodptr = &sblk->reserved;
8519 break;
8520 case 4:
8521 prodptr = &sblk->rx_mini_consumer;
Matt Carlsonf891ea12012-04-24 13:37:01 +00008522 break;
8523 }
Michael Chan49a359e2012-09-28 07:12:37 +00008524 tnapi->rx_rcb_prod_idx = prodptr;
8525 } else {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008526 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00008527 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008528 }
8529
Michael Chan49a359e2012-09-28 07:12:37 +00008530 if (tg3_mem_tx_acquire(tp) || tg3_mem_rx_acquire(tp))
8531 goto err_out;
8532
Linus Torvalds1da177e2005-04-16 15:20:36 -07008533 return 0;
8534
8535err_out:
8536 tg3_free_consistent(tp);
8537 return -ENOMEM;
8538}
8539
8540#define MAX_WAIT_CNT 1000
8541
8542/* To stop a block, clear the enable bit and poll till it
8543 * clears. tp->lock is held.
8544 */
Joe Perches953c96e2013-04-09 10:18:14 +00008545static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546{
8547 unsigned int i;
8548 u32 val;
8549
Joe Perches63c3a662011-04-26 08:12:10 +00008550 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551 switch (ofs) {
8552 case RCVLSC_MODE:
8553 case DMAC_MODE:
8554 case MBFREE_MODE:
8555 case BUFMGR_MODE:
8556 case MEMARB_MODE:
8557 /* We can't enable/disable these bits of the
8558 * 5705/5750, just say success.
8559 */
8560 return 0;
8561
8562 default:
8563 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565 }
8566
8567 val = tr32(ofs);
8568 val &= ~enable_bit;
8569 tw32_f(ofs, val);
8570
8571 for (i = 0; i < MAX_WAIT_CNT; i++) {
8572 udelay(100);
8573 val = tr32(ofs);
8574 if ((val & enable_bit) == 0)
8575 break;
8576 }
8577
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008578 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00008579 dev_err(&tp->pdev->dev,
8580 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
8581 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582 return -ENODEV;
8583 }
8584
8585 return 0;
8586}
8587
8588/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008589static int tg3_abort_hw(struct tg3 *tp, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008590{
8591 int i, err;
8592
8593 tg3_disable_ints(tp);
8594
8595 tp->rx_mode &= ~RX_MODE_ENABLE;
8596 tw32_f(MAC_RX_MODE, tp->rx_mode);
8597 udelay(10);
8598
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008599 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
8600 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
8601 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
8602 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
8603 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
8604 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008606 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
8607 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
8608 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
8609 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
8610 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
8611 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
8612 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613
8614 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
8615 tw32_f(MAC_MODE, tp->mac_mode);
8616 udelay(40);
8617
8618 tp->tx_mode &= ~TX_MODE_ENABLE;
8619 tw32_f(MAC_TX_MODE, tp->tx_mode);
8620
8621 for (i = 0; i < MAX_WAIT_CNT; i++) {
8622 udelay(100);
8623 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
8624 break;
8625 }
8626 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00008627 dev_err(&tp->pdev->dev,
8628 "%s timed out, TX_MODE_ENABLE will not clear "
8629 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07008630 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008631 }
8632
Michael Chane6de8ad2005-05-05 14:42:41 -07008633 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008634 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
8635 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008636
8637 tw32(FTQ_RESET, 0xffffffff);
8638 tw32(FTQ_RESET, 0x00000000);
8639
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008640 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
8641 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008643 for (i = 0; i < tp->irq_cnt; i++) {
8644 struct tg3_napi *tnapi = &tp->napi[i];
8645 if (tnapi->hw_status)
8646 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649 return err;
8650}
8651
Michael Chanee6a99b2007-07-18 21:49:10 -07008652/* Save PCI command register before chip reset */
8653static void tg3_save_pci_state(struct tg3 *tp)
8654{
Matt Carlson8a6eac92007-10-21 16:17:55 -07008655 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008656}
8657
8658/* Restore PCI state after chip reset */
8659static void tg3_restore_pci_state(struct tg3 *tp)
8660{
8661 u32 val;
8662
8663 /* Re-enable indirect register accesses. */
8664 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
8665 tp->misc_host_ctrl);
8666
8667 /* Set MAX PCI retry to zero. */
8668 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
Joe Perches41535772013-02-16 11:20:04 +00008669 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008670 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07008671 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008672 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00008673 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07008674 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008675 PCISTATE_ALLOW_APE_SHMEM_WR |
8676 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07008677 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
8678
Matt Carlson8a6eac92007-10-21 16:17:55 -07008679 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07008680
Matt Carlson2c55a3d2011-11-28 09:41:04 +00008681 if (!tg3_flag(tp, PCI_EXPRESS)) {
8682 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
8683 tp->pci_cacheline_sz);
8684 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
8685 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07008686 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08008687
Michael Chanee6a99b2007-07-18 21:49:10 -07008688 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00008689 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008690 u16 pcix_cmd;
8691
8692 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8693 &pcix_cmd);
8694 pcix_cmd &= ~PCI_X_CMD_ERO;
8695 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8696 pcix_cmd);
8697 }
Michael Chanee6a99b2007-07-18 21:49:10 -07008698
Joe Perches63c3a662011-04-26 08:12:10 +00008699 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008700
8701 /* Chip reset on 5780 will reset MSI enable bit,
8702 * so need to restore it.
8703 */
Joe Perches63c3a662011-04-26 08:12:10 +00008704 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07008705 u16 ctrl;
8706
8707 pci_read_config_word(tp->pdev,
8708 tp->msi_cap + PCI_MSI_FLAGS,
8709 &ctrl);
8710 pci_write_config_word(tp->pdev,
8711 tp->msi_cap + PCI_MSI_FLAGS,
8712 ctrl | PCI_MSI_FLAGS_ENABLE);
8713 val = tr32(MSGINT_MODE);
8714 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
8715 }
8716 }
8717}
8718
Linus Torvalds1da177e2005-04-16 15:20:36 -07008719/* tp->lock is held. */
8720static int tg3_chip_reset(struct tg3 *tp)
8721{
8722 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07008723 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00008724 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725
David S. Millerf49639e2006-06-09 11:58:36 -07008726 tg3_nvram_lock(tp);
8727
Matt Carlson77b483f2008-08-15 14:07:24 -07008728 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
8729
David S. Millerf49639e2006-06-09 11:58:36 -07008730 /* No matching tg3_nvram_unlock() after this because
8731 * chip reset below will undo the nvram lock.
8732 */
8733 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734
Michael Chanee6a99b2007-07-18 21:49:10 -07008735 /* GRC_MISC_CFG core clock reset will clear the memory
8736 * enable bit in PCI register 4 and the MSI enable bit
8737 * on some chips, so we save relevant registers here.
8738 */
8739 tg3_save_pci_state(tp);
8740
Joe Perches41535772013-02-16 11:20:04 +00008741 if (tg3_asic_rev(tp) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008742 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08008743 tw32(GRC_FASTBOOT_PC, 0);
8744
Linus Torvalds1da177e2005-04-16 15:20:36 -07008745 /*
8746 * We must avoid the readl() that normally takes place.
8747 * It locks machines, causes machine checks, and other
8748 * fun things. So, temporarily disable the 5701
8749 * hardware workaround, while we do the reset.
8750 */
Michael Chan1ee582d2005-08-09 20:16:46 -07008751 write_op = tp->write32;
8752 if (write_op == tg3_write_flush_reg32)
8753 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754
Michael Chand18edcb2007-03-24 20:57:11 -07008755 /* Prevent the irq handler from reading or writing PCI registers
8756 * during chip reset when the memory enable bit in the PCI command
8757 * register may be cleared. The chip does not generate interrupt
8758 * at this time, but the irq handler may still be called due to irq
8759 * sharing or irqpoll.
8760 */
Joe Perches63c3a662011-04-26 08:12:10 +00008761 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008762 for (i = 0; i < tp->irq_cnt; i++) {
8763 struct tg3_napi *tnapi = &tp->napi[i];
8764 if (tnapi->hw_status) {
8765 tnapi->hw_status->status = 0;
8766 tnapi->hw_status->status_tag = 0;
8767 }
8768 tnapi->last_tag = 0;
8769 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07008770 }
Michael Chand18edcb2007-03-24 20:57:11 -07008771 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00008772
8773 for (i = 0; i < tp->irq_cnt; i++)
8774 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07008775
Joe Perches41535772013-02-16 11:20:04 +00008776 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson255ca312009-08-25 10:07:27 +00008777 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8778 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
8779 }
8780
Linus Torvalds1da177e2005-04-16 15:20:36 -07008781 /* do the reset */
8782 val = GRC_MISC_CFG_CORECLK_RESET;
8783
Joe Perches63c3a662011-04-26 08:12:10 +00008784 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00008785 /* Force PCIe 1.0a mode */
Joe Perches41535772013-02-16 11:20:04 +00008786 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008787 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00008788 tr32(TG3_PCIE_PHY_TSTCTL) ==
8789 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
8790 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
8791
Joe Perches41535772013-02-16 11:20:04 +00008792 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008793 tw32(GRC_MISC_CFG, (1 << 29));
8794 val |= (1 << 29);
8795 }
8796 }
8797
Joe Perches41535772013-02-16 11:20:04 +00008798 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -07008799 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
8800 tw32(GRC_VCPU_EXT_CTRL,
8801 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
8802 }
8803
Matt Carlsonf37500d2010-08-02 11:25:59 +00008804 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00008805 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008806 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00008807
Linus Torvalds1da177e2005-04-16 15:20:36 -07008808 tw32(GRC_MISC_CFG, val);
8809
Michael Chan1ee582d2005-08-09 20:16:46 -07008810 /* restore 5701 hardware bug workaround write method */
8811 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008812
8813 /* Unfortunately, we have to delay before the PCI read back.
8814 * Some 575X chips even will not respond to a PCI cfg access
8815 * when the reset command is given to the chip.
8816 *
8817 * How do these hardware designers expect things to work
8818 * properly if the PCI write is posted for a long period
8819 * of time? It is always necessary to have some method by
8820 * which a register read back can occur to push the write
8821 * out which does the reset.
8822 *
8823 * For most tg3 variants the trick below was working.
8824 * Ho hum...
8825 */
8826 udelay(120);
8827
8828 /* Flush PCI posted writes. The normal MMIO registers
8829 * are inaccessible at this time so this is the only
8830 * way to make this reliably (actually, this is no longer
8831 * the case, see above). I tried to use indirect
8832 * register read/write but this upset some 5701 variants.
8833 */
8834 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
8835
8836 udelay(120);
8837
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008838 if (tg3_flag(tp, PCI_EXPRESS) && pci_is_pcie(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00008839 u16 val16;
8840
Joe Perches41535772013-02-16 11:20:04 +00008841 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0) {
Michael Chan86449942012-10-02 20:31:14 -07008842 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008843 u32 cfg_val;
8844
8845 /* Wait for link training to complete. */
Michael Chan86449942012-10-02 20:31:14 -07008846 for (j = 0; j < 5000; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008847 udelay(100);
8848
8849 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
8850 pci_write_config_dword(tp->pdev, 0xc4,
8851 cfg_val | (1 << 15));
8852 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008853
Matt Carlsone7126992009-08-25 10:08:16 +00008854 /* Clear the "no snoop" and "relaxed ordering" bits. */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008855 val16 = PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
Matt Carlsone7126992009-08-25 10:08:16 +00008856 /*
8857 * Older PCIe devices only support the 128 byte
8858 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008859 */
Joe Perches63c3a662011-04-26 08:12:10 +00008860 if (!tg3_flag(tp, CPMU_PRESENT))
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008861 val16 |= PCI_EXP_DEVCTL_PAYLOAD;
8862 pcie_capability_clear_word(tp->pdev, PCI_EXP_DEVCTL, val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008863
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008864 /* Clear error status */
Jiang Liu0f49bfb2012-08-20 13:28:20 -06008865 pcie_capability_write_word(tp->pdev, PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08008866 PCI_EXP_DEVSTA_CED |
8867 PCI_EXP_DEVSTA_NFED |
8868 PCI_EXP_DEVSTA_FED |
8869 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008870 }
8871
Michael Chanee6a99b2007-07-18 21:49:10 -07008872 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873
Joe Perches63c3a662011-04-26 08:12:10 +00008874 tg3_flag_clear(tp, CHIP_RESETTING);
8875 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07008876
Michael Chanee6a99b2007-07-18 21:49:10 -07008877 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008878 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07008879 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07008880 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881
Joe Perches41535772013-02-16 11:20:04 +00008882 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008883 tg3_stop_fw(tp);
8884 tw32(0x5000, 0x400);
8885 }
8886
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +00008887 if (tg3_flag(tp, IS_SSB_CORE)) {
8888 /*
8889 * BCM4785: In order to avoid repercussions from using
8890 * potentially defective internal ROM, stop the Rx RISC CPU,
8891 * which is not required.
8892 */
8893 tg3_stop_fw(tp);
8894 tg3_halt_cpu(tp, RX_CPU_BASE);
8895 }
8896
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897 tw32(GRC_MODE, tp->grc_mode);
8898
Joe Perches41535772013-02-16 11:20:04 +00008899 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008900 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008901
8902 tw32(0xc4, val | (1 << 15));
8903 }
8904
8905 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
Joe Perches41535772013-02-16 11:20:04 +00008906 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008907 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
Joe Perches41535772013-02-16 11:20:04 +00008908 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008909 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
8910 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8911 }
8912
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008913 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008914 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008915 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008916 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008917 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008918 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008919 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008920 val = 0;
8921
8922 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923 udelay(40);
8924
Matt Carlson77b483f2008-08-15 14:07:24 -07008925 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8926
Michael Chan7a6f4362006-09-27 16:03:31 -07008927 err = tg3_poll_fw(tp);
8928 if (err)
8929 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008930
Matt Carlson0a9140c2009-08-28 12:27:50 +00008931 tg3_mdio_start(tp);
8932
Joe Perches63c3a662011-04-26 08:12:10 +00008933 if (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +00008934 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
8935 tg3_asic_rev(tp) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008936 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008937 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008938
8939 tw32(0x7c00, val | (1 << 25));
8940 }
8941
Joe Perches41535772013-02-16 11:20:04 +00008942 if (tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlsond78b59f2011-04-05 14:22:46 +00008943 val = tr32(TG3_CPMU_CLCK_ORIDE);
8944 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8945 }
8946
Linus Torvalds1da177e2005-04-16 15:20:36 -07008947 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008948 tg3_flag_clear(tp, ENABLE_ASF);
Nithin Sujir942d1af2013-04-09 08:48:07 +00008949 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
8950 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
8951
Joe Perches63c3a662011-04-26 08:12:10 +00008952 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008953 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8954 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8955 u32 nic_cfg;
8956
8957 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8958 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008959 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008960 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008961 if (tg3_flag(tp, 5750_PLUS))
8962 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Nithin Sujir942d1af2013-04-09 08:48:07 +00008963
8964 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &nic_cfg);
8965 if (nic_cfg & NIC_SRAM_1G_ON_VAUX_OK)
8966 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
8967 if (nic_cfg & NIC_SRAM_LNK_FLAP_AVOID)
8968 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008969 }
8970 }
8971
8972 return 0;
8973}
8974
Matt Carlson65ec6982012-02-28 23:33:37 +00008975static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8976static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008977
Linus Torvalds1da177e2005-04-16 15:20:36 -07008978/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00008979static int tg3_halt(struct tg3 *tp, int kind, bool silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008980{
8981 int err;
8982
8983 tg3_stop_fw(tp);
8984
Michael Chan944d9802005-05-29 14:57:48 -07008985 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008986
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008987 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008988 err = tg3_chip_reset(tp);
8989
Joe Perches953c96e2013-04-09 10:18:14 +00008990 __tg3_set_mac_addr(tp, false);
Matt Carlsondaba2a62009-04-20 06:58:52 +00008991
Michael Chan944d9802005-05-29 14:57:48 -07008992 tg3_write_sig_legacy(tp, kind);
8993 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008994
Matt Carlson92feeab2011-12-08 14:40:14 +00008995 if (tp->hw_stats) {
8996 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05008997 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00008998 tg3_get_estats(tp, &tp->estats_prev);
8999
9000 /* And make sure the next sample is new data */
9001 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
9002 }
9003
Linus Torvalds1da177e2005-04-16 15:20:36 -07009004 if (err)
9005 return err;
9006
9007 return 0;
9008}
9009
Linus Torvalds1da177e2005-04-16 15:20:36 -07009010static int tg3_set_mac_addr(struct net_device *dev, void *p)
9011{
9012 struct tg3 *tp = netdev_priv(dev);
9013 struct sockaddr *addr = p;
Joe Perches953c96e2013-04-09 10:18:14 +00009014 int err = 0;
9015 bool skip_mac_1 = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009016
Michael Chanf9804dd2005-09-27 12:13:10 -07009017 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00009018 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07009019
Linus Torvalds1da177e2005-04-16 15:20:36 -07009020 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
9021
Michael Chane75f7c92006-03-20 21:33:26 -08009022 if (!netif_running(dev))
9023 return 0;
9024
Joe Perches63c3a662011-04-26 08:12:10 +00009025 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07009026 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07009027
Michael Chan986e0ae2007-05-05 12:10:20 -07009028 addr0_high = tr32(MAC_ADDR_0_HIGH);
9029 addr0_low = tr32(MAC_ADDR_0_LOW);
9030 addr1_high = tr32(MAC_ADDR_1_HIGH);
9031 addr1_low = tr32(MAC_ADDR_1_LOW);
9032
9033 /* Skip MAC addr 1 if ASF is using it. */
9034 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
9035 !(addr1_high == 0 && addr1_low == 0))
Joe Perches953c96e2013-04-09 10:18:14 +00009036 skip_mac_1 = true;
Michael Chan58712ef2006-04-29 18:58:01 -07009037 }
Michael Chan986e0ae2007-05-05 12:10:20 -07009038 spin_lock_bh(&tp->lock);
9039 __tg3_set_mac_addr(tp, skip_mac_1);
9040 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009041
Michael Chanb9ec6c12006-07-25 16:37:27 -07009042 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009043}
9044
9045/* tp->lock is held. */
9046static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
9047 dma_addr_t mapping, u32 maxlen_flags,
9048 u32 nic_addr)
9049{
9050 tg3_write_mem(tp,
9051 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
9052 ((u64) mapping >> 32));
9053 tg3_write_mem(tp,
9054 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
9055 ((u64) mapping & 0xffffffff));
9056 tg3_write_mem(tp,
9057 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
9058 maxlen_flags);
9059
Joe Perches63c3a662011-04-26 08:12:10 +00009060 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009061 tg3_write_mem(tp,
9062 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
9063 nic_addr);
9064}
9065
Michael Chana489b6d2012-09-28 07:12:39 +00009066
9067static void tg3_coal_tx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07009068{
Michael Chana489b6d2012-09-28 07:12:39 +00009069 int i = 0;
Matt Carlsonb6080e12009-09-01 13:12:00 +00009070
Joe Perches63c3a662011-04-26 08:12:10 +00009071 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009072 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
9073 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
9074 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00009075 } else {
9076 tw32(HOSTCC_TXCOL_TICKS, 0);
9077 tw32(HOSTCC_TXMAX_FRAMES, 0);
9078 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Michael Chana489b6d2012-09-28 07:12:39 +00009079
9080 for (; i < tp->txq_cnt; i++) {
9081 u32 reg;
9082
9083 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
9084 tw32(reg, ec->tx_coalesce_usecs);
9085 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
9086 tw32(reg, ec->tx_max_coalesced_frames);
9087 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
9088 tw32(reg, ec->tx_max_coalesced_frames_irq);
9089 }
Matt Carlson19cfaec2009-12-03 08:36:20 +00009090 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009091
Michael Chana489b6d2012-09-28 07:12:39 +00009092 for (; i < tp->irq_max - 1; i++) {
9093 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
9094 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
9095 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9096 }
9097}
9098
9099static void tg3_coal_rx_init(struct tg3 *tp, struct ethtool_coalesce *ec)
9100{
9101 int i = 0;
9102 u32 limit = tp->rxq_cnt;
9103
Joe Perches63c3a662011-04-26 08:12:10 +00009104 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00009105 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
9106 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
9107 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
Michael Chana489b6d2012-09-28 07:12:39 +00009108 limit--;
Matt Carlson19cfaec2009-12-03 08:36:20 +00009109 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00009110 tw32(HOSTCC_RXCOL_TICKS, 0);
9111 tw32(HOSTCC_RXMAX_FRAMES, 0);
9112 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07009113 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00009114
Michael Chana489b6d2012-09-28 07:12:39 +00009115 for (; i < limit; i++) {
9116 u32 reg;
9117
9118 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
9119 tw32(reg, ec->rx_coalesce_usecs);
9120 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
9121 tw32(reg, ec->rx_max_coalesced_frames);
9122 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
9123 tw32(reg, ec->rx_max_coalesced_frames_irq);
9124 }
9125
9126 for (; i < tp->irq_max - 1; i++) {
9127 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
9128 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
9129 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
9130 }
9131}
9132
9133static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
9134{
9135 tg3_coal_tx_init(tp, ec);
9136 tg3_coal_rx_init(tp, ec);
9137
Joe Perches63c3a662011-04-26 08:12:10 +00009138 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07009139 u32 val = ec->stats_block_coalesce_usecs;
9140
Matt Carlsonb6080e12009-09-01 13:12:00 +00009141 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
9142 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
9143
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +00009144 if (!tp->link_up)
David S. Miller15f98502005-05-18 22:49:26 -07009145 val = 0;
9146
9147 tw32(HOSTCC_STAT_COAL_TICKS, val);
9148 }
9149}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009150
9151/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00009152static void tg3_rings_reset(struct tg3 *tp)
9153{
9154 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009155 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009156 struct tg3_napi *tnapi = &tp->napi[0];
9157
9158 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00009159 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009160 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009161 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00009162 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Michael Chanc65a17f2013-01-06 12:51:07 +00009163 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009164 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonb703df62009-12-03 08:36:21 +00009165 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009166 else
9167 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9168
9169 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
9170 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
9171 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
9172 BDINFO_FLAGS_DISABLED);
9173
9174
9175 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00009176 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009177 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00009178 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009179 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches41535772013-02-16 11:20:04 +00009180 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9181 tg3_asic_rev(tp) == ASIC_REV_5762 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009182 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00009183 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
9184 else
9185 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9186
9187 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
9188 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
9189 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
9190 BDINFO_FLAGS_DISABLED);
9191
9192 /* Disable interrupts */
9193 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009194 tp->napi[0].chk_msi_cnt = 0;
9195 tp->napi[0].last_rx_cons = 0;
9196 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00009197
9198 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00009199 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00009200 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009201 tp->napi[i].tx_prod = 0;
9202 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00009203 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009204 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009205 tw32_rx_mbox(tp->napi[i].consmbox, 0);
9206 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00009207 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009208 tp->napi[i].last_rx_cons = 0;
9209 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009210 }
Joe Perches63c3a662011-04-26 08:12:10 +00009211 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00009212 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009213 } else {
9214 tp->napi[0].tx_prod = 0;
9215 tp->napi[0].tx_cons = 0;
9216 tw32_mailbox(tp->napi[0].prodmbox, 0);
9217 tw32_rx_mbox(tp->napi[0].consmbox, 0);
9218 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009219
9220 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00009221 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00009222 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
9223 for (i = 0; i < 16; i++)
9224 tw32_tx_mbox(mbox + i * 8, 0);
9225 }
9226
9227 txrcb = NIC_SRAM_SEND_RCB;
9228 rxrcb = NIC_SRAM_RCV_RET_RCB;
9229
9230 /* Clear status block in ram. */
9231 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9232
9233 /* Set status block DMA address */
9234 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9235 ((u64) tnapi->status_mapping >> 32));
9236 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9237 ((u64) tnapi->status_mapping & 0xffffffff));
9238
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009239 if (tnapi->tx_ring) {
9240 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9241 (TG3_TX_RING_SIZE <<
9242 BDINFO_FLAGS_MAXLEN_SHIFT),
9243 NIC_SRAM_TX_BUFFER_DESC);
9244 txrcb += TG3_BDINFO_SIZE;
9245 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009246
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009247 if (tnapi->rx_rcb) {
9248 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009249 (tp->rx_ret_ring_mask + 1) <<
9250 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009251 rxrcb += TG3_BDINFO_SIZE;
9252 }
9253
9254 stblk = HOSTCC_STATBLCK_RING1;
9255
9256 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
9257 u64 mapping = (u64)tnapi->status_mapping;
9258 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
9259 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
9260
9261 /* Clear status block in ram. */
9262 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
9263
Matt Carlson19cfaec2009-12-03 08:36:20 +00009264 if (tnapi->tx_ring) {
9265 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
9266 (TG3_TX_RING_SIZE <<
9267 BDINFO_FLAGS_MAXLEN_SHIFT),
9268 NIC_SRAM_TX_BUFFER_DESC);
9269 txrcb += TG3_BDINFO_SIZE;
9270 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009271
9272 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009273 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009274 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
9275
9276 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00009277 rxrcb += TG3_BDINFO_SIZE;
9278 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00009279}
9280
Matt Carlsoneb07a942011-04-20 07:57:36 +00009281static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
9282{
9283 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
9284
Joe Perches63c3a662011-04-26 08:12:10 +00009285 if (!tg3_flag(tp, 5750_PLUS) ||
9286 tg3_flag(tp, 5780_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009287 tg3_asic_rev(tp) == ASIC_REV_5750 ||
9288 tg3_asic_rev(tp) == ASIC_REV_5752 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00009289 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009290 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
Joe Perches41535772013-02-16 11:20:04 +00009291 else if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
9292 tg3_asic_rev(tp) == ASIC_REV_5787)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009293 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
9294 else
9295 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
9296
9297 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
9298 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
9299
9300 val = min(nic_rep_thresh, host_rep_thresh);
9301 tw32(RCVBDI_STD_THRESH, val);
9302
Joe Perches63c3a662011-04-26 08:12:10 +00009303 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009304 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
9305
Joe Perches63c3a662011-04-26 08:12:10 +00009306 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009307 return;
9308
Matt Carlson513aa6e2011-11-21 15:01:18 +00009309 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00009310
9311 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
9312
9313 val = min(bdcache_maxcnt / 2, host_rep_thresh);
9314 tw32(RCVBDI_JUMBO_THRESH, val);
9315
Joe Perches63c3a662011-04-26 08:12:10 +00009316 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00009317 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
9318}
9319
Matt Carlsonccd5ba92012-02-13 10:20:08 +00009320static inline u32 calc_crc(unsigned char *buf, int len)
9321{
9322 u32 reg;
9323 u32 tmp;
9324 int j, k;
9325
9326 reg = 0xffffffff;
9327
9328 for (j = 0; j < len; j++) {
9329 reg ^= buf[j];
9330
9331 for (k = 0; k < 8; k++) {
9332 tmp = reg & 0x01;
9333
9334 reg >>= 1;
9335
9336 if (tmp)
9337 reg ^= 0xedb88320;
9338 }
9339 }
9340
9341 return ~reg;
9342}
9343
9344static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9345{
9346 /* accept or reject all multicast frames */
9347 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9348 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9349 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9350 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9351}
9352
9353static void __tg3_set_rx_mode(struct net_device *dev)
9354{
9355 struct tg3 *tp = netdev_priv(dev);
9356 u32 rx_mode;
9357
9358 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9359 RX_MODE_KEEP_VLAN_TAG);
9360
9361#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
9362 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9363 * flag clear.
9364 */
9365 if (!tg3_flag(tp, ENABLE_ASF))
9366 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9367#endif
9368
9369 if (dev->flags & IFF_PROMISC) {
9370 /* Promiscuous mode. */
9371 rx_mode |= RX_MODE_PROMISC;
9372 } else if (dev->flags & IFF_ALLMULTI) {
9373 /* Accept all multicast. */
9374 tg3_set_multi(tp, 1);
9375 } else if (netdev_mc_empty(dev)) {
9376 /* Reject all multicast. */
9377 tg3_set_multi(tp, 0);
9378 } else {
9379 /* Accept one or more multicast(s). */
9380 struct netdev_hw_addr *ha;
9381 u32 mc_filter[4] = { 0, };
9382 u32 regidx;
9383 u32 bit;
9384 u32 crc;
9385
9386 netdev_for_each_mc_addr(ha, dev) {
9387 crc = calc_crc(ha->addr, ETH_ALEN);
9388 bit = ~crc & 0x7f;
9389 regidx = (bit & 0x60) >> 5;
9390 bit &= 0x1f;
9391 mc_filter[regidx] |= (1 << bit);
9392 }
9393
9394 tw32(MAC_HASH_REG_0, mc_filter[0]);
9395 tw32(MAC_HASH_REG_1, mc_filter[1]);
9396 tw32(MAC_HASH_REG_2, mc_filter[2]);
9397 tw32(MAC_HASH_REG_3, mc_filter[3]);
9398 }
9399
9400 if (rx_mode != tp->rx_mode) {
9401 tp->rx_mode = rx_mode;
9402 tw32_f(MAC_RX_MODE, rx_mode);
9403 udelay(10);
9404 }
9405}
9406
Michael Chan91024262012-09-28 07:12:38 +00009407static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp, u32 qcnt)
Matt Carlson90415472011-12-16 13:33:23 +00009408{
9409 int i;
9410
9411 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
Michael Chan91024262012-09-28 07:12:38 +00009412 tp->rss_ind_tbl[i] = ethtool_rxfh_indir_default(i, qcnt);
Matt Carlson90415472011-12-16 13:33:23 +00009413}
9414
9415static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009416{
9417 int i;
9418
9419 if (!tg3_flag(tp, SUPPORT_MSIX))
9420 return;
9421
Michael Chan0b3ba052012-11-14 14:44:29 +00009422 if (tp->rxq_cnt == 1) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009423 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00009424 return;
9425 }
9426
9427 /* Validate table against current IRQ count */
9428 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
Michael Chan0b3ba052012-11-14 14:44:29 +00009429 if (tp->rss_ind_tbl[i] >= tp->rxq_cnt)
Matt Carlson90415472011-12-16 13:33:23 +00009430 break;
9431 }
9432
9433 if (i != TG3_RSS_INDIR_TBL_SIZE)
Michael Chan91024262012-09-28 07:12:38 +00009434 tg3_rss_init_dflt_indir_tbl(tp, tp->rxq_cnt);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009435}
9436
Matt Carlson90415472011-12-16 13:33:23 +00009437static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009438{
9439 int i = 0;
9440 u32 reg = MAC_RSS_INDIR_TBL_0;
9441
9442 while (i < TG3_RSS_INDIR_TBL_SIZE) {
9443 u32 val = tp->rss_ind_tbl[i];
9444 i++;
9445 for (; i % 8; i++) {
9446 val <<= 4;
9447 val |= tp->rss_ind_tbl[i];
9448 }
9449 tw32(reg, val);
9450 reg += 4;
9451 }
9452}
9453
Matt Carlson2d31eca2009-09-01 12:53:31 +00009454/* tp->lock is held. */
Joe Perches953c96e2013-04-09 10:18:14 +00009455static int tg3_reset_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009456{
9457 u32 val, rdmac_mode;
9458 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00009459 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009460
9461 tg3_disable_ints(tp);
9462
9463 tg3_stop_fw(tp);
9464
9465 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
9466
Joe Perches63c3a662011-04-26 08:12:10 +00009467 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07009468 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009469
Matt Carlson699c0192010-12-06 08:28:51 +00009470 /* Enable MAC control of LPI */
9471 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009472 val = TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
9473 TG3_CPMU_EEE_LNKIDL_UART_IDL;
Joe Perches41535772013-02-16 11:20:04 +00009474 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Michael Chanc65a17f2013-01-06 12:51:07 +00009475 val |= TG3_CPMU_EEE_LNKIDL_APE_TX_MT;
9476
9477 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL, val);
Matt Carlson699c0192010-12-06 08:28:51 +00009478
9479 tw32_f(TG3_CPMU_EEE_CTRL,
9480 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
9481
Matt Carlsona386b902010-12-06 08:28:53 +00009482 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
9483 TG3_CPMU_EEEMD_LPI_IN_TX |
9484 TG3_CPMU_EEEMD_LPI_IN_RX |
9485 TG3_CPMU_EEEMD_EEE_ENABLE;
9486
Joe Perches41535772013-02-16 11:20:04 +00009487 if (tg3_asic_rev(tp) != ASIC_REV_5717)
Matt Carlsona386b902010-12-06 08:28:53 +00009488 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
9489
Joe Perches63c3a662011-04-26 08:12:10 +00009490 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00009491 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
9492
9493 tw32_f(TG3_CPMU_EEE_MODE, val);
9494
9495 tw32_f(TG3_CPMU_EEE_DBTMR1,
9496 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
9497 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
9498
9499 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00009500 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00009501 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00009502 }
9503
Nithin Sujirfdad8de2013-04-09 08:48:08 +00009504 if ((tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
9505 !(tp->phy_flags & TG3_PHYFLG_USER_CONFIGURED)) {
9506 tg3_phy_pull_config(tp);
9507 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
9508 }
9509
Matt Carlson603f1172010-02-12 14:47:10 +00009510 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08009511 tg3_phy_reset(tp);
9512
Linus Torvalds1da177e2005-04-16 15:20:36 -07009513 err = tg3_chip_reset(tp);
9514 if (err)
9515 return err;
9516
9517 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
9518
Joe Perches41535772013-02-16 11:20:04 +00009519 if (tg3_chip_rev(tp) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009520 val = tr32(TG3_CPMU_CTRL);
9521 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
9522 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08009523
9524 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9525 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9526 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9527 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
9528
9529 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
9530 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
9531 val |= CPMU_LNK_AWARE_MACCLK_6_25;
9532 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
9533
9534 val = tr32(TG3_CPMU_HST_ACC);
9535 val &= ~CPMU_HST_ACC_MACCLK_MASK;
9536 val |= CPMU_HST_ACC_MACCLK_6_25;
9537 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07009538 }
9539
Joe Perches41535772013-02-16 11:20:04 +00009540 if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson33466d92009-04-20 06:57:41 +00009541 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
9542 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
9543 PCIE_PWR_MGMT_L1_THRESH_4MS;
9544 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00009545
9546 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
9547 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
9548
9549 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00009550
Matt Carlsonf40386c2009-11-02 14:24:02 +00009551 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
9552 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00009553 }
9554
Joe Perches63c3a662011-04-26 08:12:10 +00009555 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00009556 u32 grc_mode = tr32(GRC_MODE);
9557
9558 /* Access the lower 1K of PL PCIE block registers. */
9559 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9560 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
9561
9562 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
9563 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
9564 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
9565
9566 tw32(GRC_MODE, grc_mode);
9567 }
9568
Matt Carlson55086ad2011-12-14 11:09:59 +00009569 if (tg3_flag(tp, 57765_CLASS)) {
Joe Perches41535772013-02-16 11:20:04 +00009570 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0) {
Matt Carlson5093eed2010-11-24 08:31:45 +00009571 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00009572
Matt Carlson5093eed2010-11-24 08:31:45 +00009573 /* Access the lower 1K of PL PCIE block registers. */
9574 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9575 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00009576
Matt Carlson5093eed2010-11-24 08:31:45 +00009577 val = tr32(TG3_PCIE_TLDLPL_PORT +
9578 TG3_PCIE_PL_LO_PHYCTL5);
9579 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
9580 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00009581
Matt Carlson5093eed2010-11-24 08:31:45 +00009582 tw32(GRC_MODE, grc_mode);
9583 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00009584
Joe Perches41535772013-02-16 11:20:04 +00009585 if (tg3_chip_rev(tp) != CHIPREV_57765_AX) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009586 u32 grc_mode;
9587
9588 /* Fix transmit hangs */
9589 val = tr32(TG3_CPMU_PADRNG_CTL);
9590 val |= TG3_CPMU_PADRNG_CTL_RDIV2;
9591 tw32(TG3_CPMU_PADRNG_CTL, val);
9592
9593 grc_mode = tr32(GRC_MODE);
Matt Carlson1ff30a52011-05-19 12:12:46 +00009594
9595 /* Access the lower 1K of DL PCIE block registers. */
9596 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
9597 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
9598
9599 val = tr32(TG3_PCIE_TLDLPL_PORT +
9600 TG3_PCIE_DL_LO_FTSMAX);
9601 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
9602 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
9603 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
9604
9605 tw32(GRC_MODE, grc_mode);
9606 }
9607
Matt Carlsona977dbe2010-04-12 06:58:26 +00009608 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
9609 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
9610 val |= CPMU_LSPD_10MB_MACCLK_6_25;
9611 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00009612 }
9613
Linus Torvalds1da177e2005-04-16 15:20:36 -07009614 /* This works around an issue with Athlon chipsets on
9615 * B3 tigon3 silicon. This bit has no effect on any
9616 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07009617 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009618 */
Joe Perches63c3a662011-04-26 08:12:10 +00009619 if (!tg3_flag(tp, CPMU_PRESENT)) {
9620 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07009621 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
9622 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
9623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009624
Joe Perches41535772013-02-16 11:20:04 +00009625 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00009626 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009627 val = tr32(TG3PCI_PCISTATE);
9628 val |= PCISTATE_RETRY_SAME_DMA;
9629 tw32(TG3PCI_PCISTATE, val);
9630 }
9631
Joe Perches63c3a662011-04-26 08:12:10 +00009632 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07009633 /* Allow reads and writes to the
9634 * APE register and memory space.
9635 */
9636 val = tr32(TG3PCI_PCISTATE);
9637 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00009638 PCISTATE_ALLOW_APE_SHMEM_WR |
9639 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07009640 tw32(TG3PCI_PCISTATE, val);
9641 }
9642
Joe Perches41535772013-02-16 11:20:04 +00009643 if (tg3_chip_rev(tp) == CHIPREV_5704_BX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644 /* Enable some hw fixes. */
9645 val = tr32(TG3PCI_MSI_DATA);
9646 val |= (1 << 26) | (1 << 28) | (1 << 29);
9647 tw32(TG3PCI_MSI_DATA, val);
9648 }
9649
9650 /* Descriptor ring init may make accesses to the
9651 * NIC SRAM area to setup the TX descriptors, so we
9652 * can only do this after the hardware has been
9653 * successfully reset.
9654 */
Michael Chan32d8c572006-07-25 16:38:29 -07009655 err = tg3_init_rings(tp);
9656 if (err)
9657 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009658
Joe Perches63c3a662011-04-26 08:12:10 +00009659 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009660 val = tr32(TG3PCI_DMA_RW_CTRL) &
9661 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Joe Perches41535772013-02-16 11:20:04 +00009662 if (tg3_chip_rev_id(tp) == CHIPREV_ID_57765_A0)
Matt Carlson1a319022010-04-12 06:58:25 +00009663 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00009664 if (!tg3_flag(tp, 57765_CLASS) &&
Joe Perches41535772013-02-16 11:20:04 +00009665 tg3_asic_rev(tp) != ASIC_REV_5717 &&
9666 tg3_asic_rev(tp) != ASIC_REV_5762)
Matt Carlson0aebff42011-04-25 12:42:45 +00009667 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00009668 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
Joe Perches41535772013-02-16 11:20:04 +00009669 } else if (tg3_asic_rev(tp) != ASIC_REV_5784 &&
9670 tg3_asic_rev(tp) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07009671 /* This value is determined during the probe time DMA
9672 * engine test, tg3_test_dma.
9673 */
9674 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
9675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009676
9677 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
9678 GRC_MODE_4X_NIC_SEND_RINGS |
9679 GRC_MODE_NO_TX_PHDR_CSUM |
9680 GRC_MODE_NO_RX_PHDR_CSUM);
9681 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07009682
9683 /* Pseudo-header checksum is done by hardware logic and not
9684 * the offload processers, so make the chip do the pseudo-
9685 * header checksums on receive. For transmit it is more
9686 * convenient to do the pseudo-header checksum in software
9687 * as Linux does that on transmit for us in all cases.
9688 */
9689 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009690
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +00009691 val = GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP;
9692 if (tp->rxptpctl)
9693 tw32(TG3_RX_PTP_CTL,
9694 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
9695
9696 if (tg3_flag(tp, PTP_CAPABLE))
9697 val |= GRC_MODE_TIME_SYNC_ENABLE;
9698
9699 tw32(GRC_MODE, tp->grc_mode | val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009700
9701 /* Setup the timer prescalar register. Clock is always 66Mhz. */
9702 val = tr32(GRC_MISC_CFG);
9703 val &= ~0xff;
9704 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
9705 tw32(GRC_MISC_CFG, val);
9706
9707 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00009708 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009709 /* Do nothing. */
Joe Perches41535772013-02-16 11:20:04 +00009710 } else if (tg3_asic_rev(tp) != ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009711 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
Joe Perches41535772013-02-16 11:20:04 +00009712 if (tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009713 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
9714 else
9715 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
9716 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
9717 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00009718 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009719 int fw_len;
9720
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08009721 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009722 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
9723 tw32(BUFMGR_MB_POOL_ADDR,
9724 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
9725 tw32(BUFMGR_MB_POOL_SIZE,
9726 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
9727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009728
Michael Chan0f893dc2005-07-25 12:30:38 -07009729 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009730 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9731 tp->bufmgr_config.mbuf_read_dma_low_water);
9732 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9733 tp->bufmgr_config.mbuf_mac_rx_low_water);
9734 tw32(BUFMGR_MB_HIGH_WATER,
9735 tp->bufmgr_config.mbuf_high_water);
9736 } else {
9737 tw32(BUFMGR_MB_RDMA_LOW_WATER,
9738 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
9739 tw32(BUFMGR_MB_MACRX_LOW_WATER,
9740 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
9741 tw32(BUFMGR_MB_HIGH_WATER,
9742 tp->bufmgr_config.mbuf_high_water_jumbo);
9743 }
9744 tw32(BUFMGR_DMA_LOW_WATER,
9745 tp->bufmgr_config.dma_low_water);
9746 tw32(BUFMGR_DMA_HIGH_WATER,
9747 tp->bufmgr_config.dma_high_water);
9748
Matt Carlsond309a462010-09-30 10:34:31 +00009749 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
Joe Perches41535772013-02-16 11:20:04 +00009750 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsond309a462010-09-30 10:34:31 +00009751 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Joe Perches41535772013-02-16 11:20:04 +00009752 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
9753 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9754 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0)
Matt Carlson4d958472011-04-20 07:57:35 +00009755 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00009756 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009757 for (i = 0; i < 2000; i++) {
9758 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
9759 break;
9760 udelay(10);
9761 }
9762 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00009763 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009764 return -ENODEV;
9765 }
9766
Joe Perches41535772013-02-16 11:20:04 +00009767 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5906_A1)
Matt Carlsoneb07a942011-04-20 07:57:36 +00009768 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07009769
Matt Carlsoneb07a942011-04-20 07:57:36 +00009770 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009771
9772 /* Initialize TG3_BDINFO's at:
9773 * RCVDBDI_STD_BD: standard eth size rx ring
9774 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
9775 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
9776 *
9777 * like so:
9778 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
9779 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
9780 * ring attribute flags
9781 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
9782 *
9783 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
9784 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
9785 *
9786 * The size of each ring is fixed in the firmware, but the location is
9787 * configurable.
9788 */
9789 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009790 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009791 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009792 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00009793 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00009794 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
9795 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009796
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009797 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00009798 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009799 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
9800 BDINFO_FLAGS_DISABLED);
9801
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009802 /* Program the jumbo buffer descriptor ring control
9803 * blocks on those devices that have them.
9804 */
Joe Perches41535772013-02-16 11:20:04 +00009805 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009806 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009807
Joe Perches63c3a662011-04-26 08:12:10 +00009808 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009809 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00009810 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009811 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00009812 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00009813 val = TG3_RX_JMB_RING_SIZE(tp) <<
9814 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009815 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00009816 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00009817 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Michael Chanc65a17f2013-01-06 12:51:07 +00009818 tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +00009819 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson87668d32009-11-13 13:03:34 +00009820 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
9821 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009822 } else {
9823 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
9824 BDINFO_FLAGS_DISABLED);
9825 }
9826
Joe Perches63c3a662011-04-26 08:12:10 +00009827 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00009828 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009829 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
9830 val |= (TG3_RX_STD_DMA_SZ << 2);
9831 } else
Matt Carlson04380d42010-04-12 06:58:29 +00009832 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009833 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00009834 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00009835
9836 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009837
Matt Carlson411da642009-11-13 13:03:46 +00009838 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00009839 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009840
Joe Perches63c3a662011-04-26 08:12:10 +00009841 tpr->rx_jmb_prod_idx =
9842 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00009843 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844
Matt Carlson2d31eca2009-09-01 12:53:31 +00009845 tg3_rings_reset(tp);
9846
Linus Torvalds1da177e2005-04-16 15:20:36 -07009847 /* Initialize MAC address and backoff seed. */
Joe Perches953c96e2013-04-09 10:18:14 +00009848 __tg3_set_mac_addr(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009849
9850 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00009851 tw32(MAC_RX_MTU_SIZE,
9852 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009853
9854 /* The slot time is changed by tg3_setup_phy if we
9855 * run at gigabit with half duplex.
9856 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00009857 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
9858 (6 << TX_LENGTHS_IPG_SHIFT) |
9859 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
9860
Joe Perches41535772013-02-16 11:20:04 +00009861 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9862 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009863 val |= tr32(MAC_TX_LENGTHS) &
9864 (TX_LENGTHS_JMB_FRM_LEN_MSK |
9865 TX_LENGTHS_CNT_DWN_VAL_MSK);
9866
9867 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009868
9869 /* Receive rules. */
9870 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
9871 tw32(RCVLPC_CONFIG, 0x0181);
9872
9873 /* Calculate RDMAC_MODE setting early, we need it to determine
9874 * the RCVLPC_STATE_ENABLE mask.
9875 */
9876 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
9877 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
9878 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
9879 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
9880 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07009881
Joe Perches41535772013-02-16 11:20:04 +00009882 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00009883 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
9884
Joe Perches41535772013-02-16 11:20:04 +00009885 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
9886 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9887 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07009888 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
9889 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
9890 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
9891
Joe Perches41535772013-02-16 11:20:04 +00009892 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
9893 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009894 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +00009895 tg3_asic_rev(tp) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009896 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
9897 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009898 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009899 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9900 }
9901 }
9902
Joe Perches63c3a662011-04-26 08:12:10 +00009903 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07009904 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
9905
Joe Perches41535772013-02-16 11:20:04 +00009906 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlsond3f677a2013-02-14 14:27:51 +00009907 tp->dma_limit = 0;
9908 if (tp->dev->mtu <= ETH_DATA_LEN) {
9909 rdmac_mode |= RDMAC_MODE_JMB_2K_MMRR;
9910 tp->dma_limit = TG3_TX_BD_DMA_MAX_2K;
9911 }
9912 }
9913
Joe Perches63c3a662011-04-26 08:12:10 +00009914 if (tg3_flag(tp, HW_TSO_1) ||
9915 tg3_flag(tp, HW_TSO_2) ||
9916 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08009917 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
9918
Matt Carlson108a6c12011-05-19 12:12:47 +00009919 if (tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +00009920 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9921 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson027455a2008-12-21 20:19:30 -08009922 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009923
Joe Perches41535772013-02-16 11:20:04 +00009924 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
9925 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +00009926 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
9927
Joe Perches41535772013-02-16 11:20:04 +00009928 if (tg3_asic_rev(tp) == ASIC_REV_5761 ||
9929 tg3_asic_rev(tp) == ASIC_REV_5784 ||
9930 tg3_asic_rev(tp) == ASIC_REV_5785 ||
9931 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00009932 tg3_flag(tp, 57765_PLUS)) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009933 u32 tgtreg;
9934
Joe Perches41535772013-02-16 11:20:04 +00009935 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009936 tgtreg = TG3_RDMA_RSRVCTRL_REG2;
9937 else
9938 tgtreg = TG3_RDMA_RSRVCTRL_REG;
9939
9940 val = tr32(tgtreg);
Joe Perches41535772013-02-16 11:20:04 +00009941 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
9942 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00009943 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
9944 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
9945 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
9946 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
9947 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
9948 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00009949 }
Michael Chanc65a17f2013-01-06 12:51:07 +00009950 tw32(tgtreg, val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
Matt Carlson41a8a7e2010-09-15 08:59:53 +00009951 }
9952
Joe Perches41535772013-02-16 11:20:04 +00009953 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
9954 tg3_asic_rev(tp) == ASIC_REV_5720 ||
9955 tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc65a17f2013-01-06 12:51:07 +00009956 u32 tgtreg;
9957
Joe Perches41535772013-02-16 11:20:04 +00009958 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc65a17f2013-01-06 12:51:07 +00009959 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL2;
9960 else
9961 tgtreg = TG3_LSO_RD_DMA_CRPTEN_CTRL;
9962
9963 val = tr32(tgtreg);
9964 tw32(tgtreg, val |
Matt Carlsond309a462010-09-30 10:34:31 +00009965 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
9966 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
9967 }
9968
Linus Torvalds1da177e2005-04-16 15:20:36 -07009969 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00009970 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07009971 val = tr32(RCVLPC_STATS_ENABLE);
9972 val &= ~RCVLPC_STATSENAB_DACK_FIX;
9973 tw32(RCVLPC_STATS_ENABLE, val);
9974 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009975 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009976 val = tr32(RCVLPC_STATS_ENABLE);
9977 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
9978 tw32(RCVLPC_STATS_ENABLE, val);
9979 } else {
9980 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
9981 }
9982 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
9983 tw32(SNDDATAI_STATSENAB, 0xffffff);
9984 tw32(SNDDATAI_STATSCTRL,
9985 (SNDDATAI_SCTRL_ENABLE |
9986 SNDDATAI_SCTRL_FASTUPD));
9987
9988 /* Setup host coalescing engine. */
9989 tw32(HOSTCC_MODE, 0);
9990 for (i = 0; i < 2000; i++) {
9991 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
9992 break;
9993 udelay(10);
9994 }
9995
Michael Chand244c892005-07-05 14:42:33 -07009996 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009997
Joe Perches63c3a662011-04-26 08:12:10 +00009998 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009999 /* Status/statistics block address. See tg3_timer,
10000 * the tg3_periodic_fetch_stats call there, and
10001 * tg3_get_stats to see how this works for 5705/5750 chips.
10002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010003 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
10004 ((u64) tp->stats_mapping >> 32));
10005 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
10006 ((u64) tp->stats_mapping & 0xffffffff));
10007 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010008
Linus Torvalds1da177e2005-04-16 15:20:36 -070010009 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +000010010
10011 /* Clear statistics and status block memory areas */
10012 for (i = NIC_SRAM_STATS_BLK;
10013 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
10014 i += sizeof(u32)) {
10015 tg3_write_mem(tp, i, 0);
10016 udelay(40);
10017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010018 }
10019
10020 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
10021
10022 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
10023 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010024 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010025 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
10026
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010027 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
10028 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -070010029 /* reset to prevent losing 1st rx packet intermittently */
10030 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10031 udelay(10);
10032 }
10033
Matt Carlson3bda1252008-08-15 14:08:22 -070010034 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +000010035 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
10036 MAC_MODE_FHDE_ENABLE;
10037 if (tg3_flag(tp, ENABLE_APE))
10038 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +000010039 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010040 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010041 tg3_asic_rev(tp) != ASIC_REV_5700)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010042 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010043 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
10044 udelay(40);
10045
Michael Chan314fba32005-04-21 17:07:04 -070010046 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +000010047 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -070010048 * register to preserve the GPIO settings for LOMs. The GPIOs,
10049 * whether used as inputs or outputs, are set by boot code after
10050 * reset.
10051 */
Joe Perches63c3a662011-04-26 08:12:10 +000010052 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -070010053 u32 gpio_mask;
10054
Michael Chan9d26e212006-12-07 00:21:14 -080010055 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
10056 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
10057 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -070010058
Joe Perches41535772013-02-16 11:20:04 +000010059 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070010060 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
10061 GRC_LCLCTRL_GPIO_OUTPUT3;
10062
Joe Perches41535772013-02-16 11:20:04 +000010063 if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanaf36e6b2006-03-23 01:28:06 -080010064 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
10065
Gary Zambranoaaf84462007-05-05 11:51:45 -070010066 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -070010067 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
10068
10069 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +000010070 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -080010071 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
10072 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -070010073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010074 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10075 udelay(100);
10076
Matt Carlsonc3b50032012-01-17 15:27:23 +000010077 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010078 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +000010079 val |= MSGINT_MODE_ENABLE;
10080 if (tp->irq_cnt > 1)
10081 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000010082 if (!tg3_flag(tp, 1SHOT_MSI))
10083 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010084 tw32(MSGINT_MODE, val);
10085 }
10086
Joe Perches63c3a662011-04-26 08:12:10 +000010087 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010088 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
10089 udelay(40);
10090 }
10091
10092 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
10093 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
10094 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
10095 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
10096 WDMAC_MODE_LNGREAD_ENAB);
10097
Joe Perches41535772013-02-16 11:20:04 +000010098 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
10099 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000010100 if (tg3_flag(tp, TSO_CAPABLE) &&
Joe Perches41535772013-02-16 11:20:04 +000010101 (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 ||
10102 tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010103 /* nothing */
10104 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010105 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010106 val |= WDMAC_MODE_RX_ACCEL;
10107 }
10108 }
10109
Michael Chand9ab5ad12006-03-20 22:27:35 -080010110 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +000010111 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -070010112 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -080010113
Joe Perches41535772013-02-16 11:20:04 +000010114 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlson788a0352009-11-02 14:26:03 +000010115 val |= WDMAC_MODE_BURST_ALL_DATA;
10116
Linus Torvalds1da177e2005-04-16 15:20:36 -070010117 tw32_f(WDMAC_MODE, val);
10118 udelay(40);
10119
Joe Perches63c3a662011-04-26 08:12:10 +000010120 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -070010121 u16 pcix_cmd;
10122
10123 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10124 &pcix_cmd);
Joe Perches41535772013-02-16 11:20:04 +000010125 if (tg3_asic_rev(tp) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -070010126 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
10127 pcix_cmd |= PCI_X_CMD_READ_2K;
Joe Perches41535772013-02-16 11:20:04 +000010128 } else if (tg3_asic_rev(tp) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -070010129 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
10130 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010131 }
Matt Carlson9974a352007-10-07 23:27:28 -070010132 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
10133 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010134 }
10135
10136 tw32_f(RDMAC_MODE, rdmac_mode);
10137 udelay(40);
10138
Joe Perches41535772013-02-16 11:20:04 +000010139 if (tg3_asic_rev(tp) == ASIC_REV_5719) {
Michael Chan091f0ea2012-07-29 19:15:43 +000010140 for (i = 0; i < TG3_NUM_RDMA_CHANNELS; i++) {
10141 if (tr32(TG3_RDMA_LENGTH + (i << 2)) > TG3_MAX_MTU(tp))
10142 break;
10143 }
10144 if (i < TG3_NUM_RDMA_CHANNELS) {
10145 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
10146 val |= TG3_LSO_RD_DMA_TX_LENGTH_WA;
10147 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
10148 tg3_flag_set(tp, 5719_RDMA_BUG);
10149 }
10150 }
10151
Linus Torvalds1da177e2005-04-16 15:20:36 -070010152 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010153 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010154 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -070010155
Joe Perches41535772013-02-16 11:20:04 +000010156 if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson9936bcf2007-10-10 18:03:07 -070010157 tw32(SNDDATAC_MODE,
10158 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
10159 else
10160 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
10161
Linus Torvalds1da177e2005-04-16 15:20:36 -070010162 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
10163 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010164 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +000010165 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +000010166 val |= RCVDBDI_MODE_LRG_RING_SZ;
10167 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +000010169 if (tg3_flag(tp, HW_TSO_1) ||
10170 tg3_flag(tp, HW_TSO_2) ||
10171 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010172 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010173 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010174 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010175 val |= SNDBDI_MODE_MULTI_TXQ_EN;
10176 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010177 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
10178
Joe Perches41535772013-02-16 11:20:04 +000010179 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010180 err = tg3_load_5701_a0_firmware_fix(tp);
10181 if (err)
10182 return err;
10183 }
10184
Nithin Sujirc4dab502013-03-06 17:02:34 +000010185 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
10186 /* Ignore any errors for the firmware download. If download
10187 * fails, the device will operate with EEE disabled
10188 */
10189 tg3_load_57766_firmware(tp);
10190 }
10191
Joe Perches63c3a662011-04-26 08:12:10 +000010192 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010193 err = tg3_load_tso_firmware(tp);
10194 if (err)
10195 return err;
10196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010197
10198 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010199
Joe Perches63c3a662011-04-26 08:12:10 +000010200 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000010201 tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonb1d05212010-06-05 17:24:31 +000010202 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +000010203
Joe Perches41535772013-02-16 11:20:04 +000010204 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
10205 tg3_asic_rev(tp) == ASIC_REV_5762) {
Matt Carlsonf2096f92011-04-05 14:22:48 +000010206 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
10207 tp->tx_mode &= ~val;
10208 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
10209 }
10210
Linus Torvalds1da177e2005-04-16 15:20:36 -070010211 tw32_f(MAC_TX_MODE, tp->tx_mode);
10212 udelay(100);
10213
Joe Perches63c3a662011-04-26 08:12:10 +000010214 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010215 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010216
10217 /* Setup the "secret" hash key. */
10218 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
10219 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
10220 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
10221 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
10222 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
10223 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
10224 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
10225 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
10226 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
10227 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
10228 }
10229
Linus Torvalds1da177e2005-04-16 15:20:36 -070010230 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +000010231 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080010232 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
10233
Joe Perches63c3a662011-04-26 08:12:10 +000010234 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +000010235 tp->rx_mode |= RX_MODE_RSS_ENABLE |
10236 RX_MODE_RSS_ITBL_HASH_BITS_7 |
10237 RX_MODE_RSS_IPV6_HASH_EN |
10238 RX_MODE_RSS_TCP_IPV6_HASH_EN |
10239 RX_MODE_RSS_IPV4_HASH_EN |
10240 RX_MODE_RSS_TCP_IPV4_HASH_EN;
10241
Linus Torvalds1da177e2005-04-16 15:20:36 -070010242 tw32_f(MAC_RX_MODE, tp->rx_mode);
10243 udelay(10);
10244
Linus Torvalds1da177e2005-04-16 15:20:36 -070010245 tw32(MAC_LED_CTRL, tp->led_ctrl);
10246
10247 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010248 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010249 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
10250 udelay(10);
10251 }
10252 tw32_f(MAC_RX_MODE, tp->rx_mode);
10253 udelay(10);
10254
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010255 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Joe Perches41535772013-02-16 11:20:04 +000010256 if ((tg3_asic_rev(tp) == ASIC_REV_5704) &&
10257 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010258 /* Set drive transmission level to 1.2V */
10259 /* only if the signal pre-emphasis bit is not set */
10260 val = tr32(MAC_SERDES_CFG);
10261 val &= 0xfffff000;
10262 val |= 0x880;
10263 tw32(MAC_SERDES_CFG, val);
10264 }
Joe Perches41535772013-02-16 11:20:04 +000010265 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010266 tw32(MAC_SERDES_CFG, 0x616000);
10267 }
10268
10269 /* Prevent chip from dropping frames when flow control
10270 * is enabled.
10271 */
Matt Carlson55086ad2011-12-14 11:09:59 +000010272 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +000010273 val = 1;
10274 else
10275 val = 2;
10276 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010277
Joe Perches41535772013-02-16 11:20:04 +000010278 if (tg3_asic_rev(tp) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010279 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010280 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +000010281 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010282 }
10283
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010284 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000010285 tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -080010286 u32 tmp;
10287
10288 tmp = tr32(SERDES_RX_CTRL);
10289 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
10290 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
10291 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
10292 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
10293 }
10294
Joe Perches63c3a662011-04-26 08:12:10 +000010295 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010296 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +000010297 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010298
Joe Perches953c96e2013-04-09 10:18:14 +000010299 err = tg3_setup_phy(tp, false);
Matt Carlsondd477002008-05-25 23:45:58 -070010300 if (err)
10301 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010302
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010303 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
10304 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -070010305 u32 tmp;
10306
10307 /* Clear CRC stats. */
10308 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
10309 tg3_writephy(tp, MII_TG3_TEST1,
10310 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010311 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -070010312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010313 }
10314 }
10315
10316 __tg3_set_rx_mode(tp->dev);
10317
10318 /* Initialize receive rules. */
10319 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
10320 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
10321 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
10322 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
10323
Joe Perches63c3a662011-04-26 08:12:10 +000010324 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010325 limit = 8;
10326 else
10327 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +000010328 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010329 limit -= 4;
10330 switch (limit) {
10331 case 16:
10332 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
10333 case 15:
10334 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
10335 case 14:
10336 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
10337 case 13:
10338 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
10339 case 12:
10340 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
10341 case 11:
10342 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
10343 case 10:
10344 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
10345 case 9:
10346 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
10347 case 8:
10348 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
10349 case 7:
10350 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
10351 case 6:
10352 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
10353 case 5:
10354 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
10355 case 4:
10356 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
10357 case 3:
10358 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
10359 case 2:
10360 case 1:
10361
10362 default:
10363 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070010364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010365
Joe Perches63c3a662011-04-26 08:12:10 +000010366 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -070010367 /* Write our heartbeat update interval to APE. */
10368 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
10369 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -070010370
Linus Torvalds1da177e2005-04-16 15:20:36 -070010371 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
10372
Linus Torvalds1da177e2005-04-16 15:20:36 -070010373 return 0;
10374}
10375
10376/* Called at device open time to get the chip ready for
10377 * packet processing. Invoked with tp->lock held.
10378 */
Joe Perches953c96e2013-04-09 10:18:14 +000010379static int tg3_init_hw(struct tg3 *tp, bool reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010380{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010381 tg3_switch_clocks(tp);
10382
10383 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
10384
Matt Carlson2f751b62008-08-04 23:17:34 -070010385 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010386}
10387
Michael Chanaed93e02012-07-16 16:24:02 +000010388static void tg3_sd_scan_scratchpad(struct tg3 *tp, struct tg3_ocir *ocir)
10389{
10390 int i;
10391
10392 for (i = 0; i < TG3_SD_NUM_RECS; i++, ocir++) {
10393 u32 off = i * TG3_OCIR_LEN, len = TG3_OCIR_LEN;
10394
10395 tg3_ape_scratchpad_read(tp, (u32 *) ocir, off, len);
10396 off += len;
10397
10398 if (ocir->signature != TG3_OCIR_SIG_MAGIC ||
10399 !(ocir->version_flags & TG3_OCIR_FLAG_ACTIVE))
10400 memset(ocir, 0, TG3_OCIR_LEN);
10401 }
10402}
10403
10404/* sysfs attributes for hwmon */
10405static ssize_t tg3_show_temp(struct device *dev,
10406 struct device_attribute *devattr, char *buf)
10407{
10408 struct pci_dev *pdev = to_pci_dev(dev);
10409 struct net_device *netdev = pci_get_drvdata(pdev);
10410 struct tg3 *tp = netdev_priv(netdev);
10411 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
10412 u32 temperature;
10413
10414 spin_lock_bh(&tp->lock);
10415 tg3_ape_scratchpad_read(tp, &temperature, attr->index,
10416 sizeof(temperature));
10417 spin_unlock_bh(&tp->lock);
10418 return sprintf(buf, "%u\n", temperature);
10419}
10420
10421
10422static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tg3_show_temp, NULL,
10423 TG3_TEMP_SENSOR_OFFSET);
10424static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, tg3_show_temp, NULL,
10425 TG3_TEMP_CAUTION_OFFSET);
10426static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, tg3_show_temp, NULL,
10427 TG3_TEMP_MAX_OFFSET);
10428
10429static struct attribute *tg3_attributes[] = {
10430 &sensor_dev_attr_temp1_input.dev_attr.attr,
10431 &sensor_dev_attr_temp1_crit.dev_attr.attr,
10432 &sensor_dev_attr_temp1_max.dev_attr.attr,
10433 NULL
10434};
10435
10436static const struct attribute_group tg3_group = {
10437 .attrs = tg3_attributes,
10438};
10439
Michael Chanaed93e02012-07-16 16:24:02 +000010440static void tg3_hwmon_close(struct tg3 *tp)
10441{
Michael Chanaed93e02012-07-16 16:24:02 +000010442 if (tp->hwmon_dev) {
10443 hwmon_device_unregister(tp->hwmon_dev);
10444 tp->hwmon_dev = NULL;
10445 sysfs_remove_group(&tp->pdev->dev.kobj, &tg3_group);
10446 }
Michael Chanaed93e02012-07-16 16:24:02 +000010447}
10448
10449static void tg3_hwmon_open(struct tg3 *tp)
10450{
Michael Chanaed93e02012-07-16 16:24:02 +000010451 int i, err;
10452 u32 size = 0;
10453 struct pci_dev *pdev = tp->pdev;
10454 struct tg3_ocir ocirs[TG3_SD_NUM_RECS];
10455
10456 tg3_sd_scan_scratchpad(tp, ocirs);
10457
10458 for (i = 0; i < TG3_SD_NUM_RECS; i++) {
10459 if (!ocirs[i].src_data_length)
10460 continue;
10461
10462 size += ocirs[i].src_hdr_length;
10463 size += ocirs[i].src_data_length;
10464 }
10465
10466 if (!size)
10467 return;
10468
10469 /* Register hwmon sysfs hooks */
10470 err = sysfs_create_group(&pdev->dev.kobj, &tg3_group);
10471 if (err) {
10472 dev_err(&pdev->dev, "Cannot create sysfs group, aborting\n");
10473 return;
10474 }
10475
10476 tp->hwmon_dev = hwmon_device_register(&pdev->dev);
10477 if (IS_ERR(tp->hwmon_dev)) {
10478 tp->hwmon_dev = NULL;
10479 dev_err(&pdev->dev, "Cannot register hwmon device, aborting\n");
10480 sysfs_remove_group(&pdev->dev.kobj, &tg3_group);
10481 }
Michael Chanaed93e02012-07-16 16:24:02 +000010482}
10483
10484
Linus Torvalds1da177e2005-04-16 15:20:36 -070010485#define TG3_STAT_ADD32(PSTAT, REG) \
10486do { u32 __val = tr32(REG); \
10487 (PSTAT)->low += __val; \
10488 if ((PSTAT)->low < __val) \
10489 (PSTAT)->high += 1; \
10490} while (0)
10491
10492static void tg3_periodic_fetch_stats(struct tg3 *tp)
10493{
10494 struct tg3_hw_stats *sp = tp->hw_stats;
10495
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010496 if (!tp->link_up)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010497 return;
10498
10499 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
10500 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
10501 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
10502 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
10503 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
10504 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
10505 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
10506 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
10507 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
10508 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
10509 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
10510 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
10511 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
Michael Chan091f0ea2012-07-29 19:15:43 +000010512 if (unlikely(tg3_flag(tp, 5719_RDMA_BUG) &&
10513 (sp->tx_ucast_packets.low + sp->tx_mcast_packets.low +
10514 sp->tx_bcast_packets.low) > TG3_NUM_RDMA_CHANNELS)) {
10515 u32 val;
10516
10517 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
10518 val &= ~TG3_LSO_RD_DMA_TX_LENGTH_WA;
10519 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val);
10520 tg3_flag_clear(tp, 5719_RDMA_BUG);
10521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010522
10523 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
10524 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
10525 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
10526 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
10527 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
10528 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
10529 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
10530 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
10531 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
10532 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
10533 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
10534 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
10535 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
10536 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -070010537
10538 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Joe Perches41535772013-02-16 11:20:04 +000010539 if (tg3_asic_rev(tp) != ASIC_REV_5717 &&
10540 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0 &&
10541 tg3_chip_rev_id(tp) != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000010542 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
10543 } else {
10544 u32 val = tr32(HOSTCC_FLOW_ATTN);
10545 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
10546 if (val) {
10547 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
10548 sp->rx_discards.low += val;
10549 if (sp->rx_discards.low < val)
10550 sp->rx_discards.high += 1;
10551 }
10552 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
10553 }
Michael Chan463d3052006-05-22 16:36:27 -070010554 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010555}
10556
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010557static void tg3_chk_missed_msi(struct tg3 *tp)
10558{
10559 u32 i;
10560
10561 for (i = 0; i < tp->irq_cnt; i++) {
10562 struct tg3_napi *tnapi = &tp->napi[i];
10563
10564 if (tg3_has_work(tnapi)) {
10565 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
10566 tnapi->last_tx_cons == tnapi->tx_cons) {
10567 if (tnapi->chk_msi_cnt < 1) {
10568 tnapi->chk_msi_cnt++;
10569 return;
10570 }
Matt Carlson7f230732011-08-31 11:44:48 +000010571 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010572 }
10573 }
10574 tnapi->chk_msi_cnt = 0;
10575 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
10576 tnapi->last_tx_cons = tnapi->tx_cons;
10577 }
10578}
10579
Linus Torvalds1da177e2005-04-16 15:20:36 -070010580static void tg3_timer(unsigned long __opaque)
10581{
10582 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010583
Matt Carlson5b190622011-11-04 09:15:04 +000010584 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -080010585 goto restart_timer;
10586
David S. Millerf47c11e2005-06-24 20:18:35 -070010587 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010588
Joe Perches41535772013-02-16 11:20:04 +000010589 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000010590 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +000010591 tg3_chk_missed_msi(tp);
10592
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000010593 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
10594 /* BCM4785: Flush posted writes from GbE to host memory. */
10595 tr32(HOSTCC_MODE);
10596 }
10597
Joe Perches63c3a662011-04-26 08:12:10 +000010598 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070010599 /* All of this garbage is because when using non-tagged
10600 * IRQ status the mailbox/status_block protocol the chip
10601 * uses with the cpu is race prone.
10602 */
Matt Carlson898a56f2009-08-28 14:02:40 +000010603 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -070010604 tw32(GRC_LOCAL_CTRL,
10605 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
10606 } else {
10607 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010608 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -070010609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010610
David S. Millerfac9b832005-05-18 22:46:34 -070010611 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010612 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +000010613 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +000010614 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -070010615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010616 }
10617
Linus Torvalds1da177e2005-04-16 15:20:36 -070010618 /* This part only runs once per second. */
10619 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010620 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -070010621 tg3_periodic_fetch_stats(tp);
10622
Matt Carlsonb0c59432011-05-19 12:12:48 +000010623 if (tp->setlpicnt && !--tp->setlpicnt)
10624 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +000010625
Joe Perches63c3a662011-04-26 08:12:10 +000010626 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010627 u32 mac_stat;
10628 int phy_event;
10629
10630 mac_stat = tr32(MAC_STATUS);
10631
10632 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010633 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010634 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
10635 phy_event = 1;
10636 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
10637 phy_event = 1;
10638
10639 if (phy_event)
Joe Perches953c96e2013-04-09 10:18:14 +000010640 tg3_setup_phy(tp, false);
Joe Perches63c3a662011-04-26 08:12:10 +000010641 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010642 u32 mac_stat = tr32(MAC_STATUS);
10643 int need_setup = 0;
10644
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010645 if (tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010646 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
10647 need_setup = 1;
10648 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000010649 if (!tp->link_up &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010650 (mac_stat & (MAC_STATUS_PCS_SYNCED |
10651 MAC_STATUS_SIGNAL_DET))) {
10652 need_setup = 1;
10653 }
10654 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -070010655 if (!tp->serdes_counter) {
10656 tw32_f(MAC_MODE,
10657 (tp->mac_mode &
10658 ~MAC_MODE_PORT_MODE_MASK));
10659 udelay(40);
10660 tw32_f(MAC_MODE, tp->mac_mode);
10661 udelay(40);
10662 }
Joe Perches953c96e2013-04-09 10:18:14 +000010663 tg3_setup_phy(tp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010664 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010665 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010666 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -070010667 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +000010668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010669
10670 tp->timer_counter = tp->timer_multiplier;
10671 }
10672
Michael Chan130b8e42006-09-27 16:00:40 -070010673 /* Heartbeat is only sent once every 2 seconds.
10674 *
10675 * The heartbeat is to tell the ASF firmware that the host
10676 * driver is still alive. In the event that the OS crashes,
10677 * ASF needs to reset the hardware to free up the FIFO space
10678 * that may be filled with rx packets destined for the host.
10679 * If the FIFO is full, ASF will no longer function properly.
10680 *
10681 * Unintended resets have been reported on real time kernels
10682 * where the timer doesn't run on time. Netpoll will also have
10683 * same problem.
10684 *
10685 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
10686 * to check the ring condition when the heartbeat is expiring
10687 * before doing the reset. This will prevent most unintended
10688 * resets.
10689 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010690 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +000010691 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -070010692 tg3_wait_for_event_ack(tp);
10693
Michael Chanbbadf502006-04-06 21:46:34 -070010694 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -070010695 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -070010696 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010697 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
10698 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -070010699
10700 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010701 }
10702 tp->asf_counter = tp->asf_multiplier;
10703 }
10704
David S. Millerf47c11e2005-06-24 20:18:35 -070010705 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010706
Michael Chanf475f162006-03-27 23:20:14 -080010707restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -070010708 tp->timer.expires = jiffies + tp->timer_offset;
10709 add_timer(&tp->timer);
10710}
10711
Bill Pemberton229b1ad2012-12-03 09:22:59 -050010712static void tg3_timer_init(struct tg3 *tp)
Matt Carlson21f76382012-02-22 12:35:21 +000010713{
10714 if (tg3_flag(tp, TAGGED_STATUS) &&
Joe Perches41535772013-02-16 11:20:04 +000010715 tg3_asic_rev(tp) != ASIC_REV_5717 &&
Matt Carlson21f76382012-02-22 12:35:21 +000010716 !tg3_flag(tp, 57765_CLASS))
10717 tp->timer_offset = HZ;
10718 else
10719 tp->timer_offset = HZ / 10;
10720
10721 BUG_ON(tp->timer_offset > HZ);
10722
10723 tp->timer_multiplier = (HZ / tp->timer_offset);
10724 tp->asf_multiplier = (HZ / tp->timer_offset) *
10725 TG3_FW_UPDATE_FREQ_SEC;
10726
10727 init_timer(&tp->timer);
10728 tp->timer.data = (unsigned long) tp;
10729 tp->timer.function = tg3_timer;
10730}
10731
10732static void tg3_timer_start(struct tg3 *tp)
10733{
10734 tp->asf_counter = tp->asf_multiplier;
10735 tp->timer_counter = tp->timer_multiplier;
10736
10737 tp->timer.expires = jiffies + tp->timer_offset;
10738 add_timer(&tp->timer);
10739}
10740
10741static void tg3_timer_stop(struct tg3 *tp)
10742{
10743 del_timer_sync(&tp->timer);
10744}
10745
10746/* Restart hardware after configuration changes, self-test, etc.
10747 * Invoked with tp->lock held.
10748 */
Joe Perches953c96e2013-04-09 10:18:14 +000010749static int tg3_restart_hw(struct tg3 *tp, bool reset_phy)
Matt Carlson21f76382012-02-22 12:35:21 +000010750 __releases(tp->lock)
10751 __acquires(tp->lock)
10752{
10753 int err;
10754
10755 err = tg3_init_hw(tp, reset_phy);
10756 if (err) {
10757 netdev_err(tp->dev,
10758 "Failed to re-initialize device, aborting\n");
10759 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10760 tg3_full_unlock(tp);
10761 tg3_timer_stop(tp);
10762 tp->irq_sync = 0;
10763 tg3_napi_enable(tp);
10764 dev_close(tp->dev);
10765 tg3_full_lock(tp, 0);
10766 }
10767 return err;
10768}
10769
10770static void tg3_reset_task(struct work_struct *work)
10771{
10772 struct tg3 *tp = container_of(work, struct tg3, reset_task);
10773 int err;
10774
10775 tg3_full_lock(tp, 0);
10776
10777 if (!netif_running(tp->dev)) {
10778 tg3_flag_clear(tp, RESET_TASK_PENDING);
10779 tg3_full_unlock(tp);
10780 return;
10781 }
10782
10783 tg3_full_unlock(tp);
10784
10785 tg3_phy_stop(tp);
10786
10787 tg3_netif_stop(tp);
10788
10789 tg3_full_lock(tp, 1);
10790
10791 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
10792 tp->write32_tx_mbox = tg3_write32_tx_mbox;
10793 tp->write32_rx_mbox = tg3_write_flush_reg32;
10794 tg3_flag_set(tp, MBOX_WRITE_REORDER);
10795 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
10796 }
10797
10798 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Joe Perches953c96e2013-04-09 10:18:14 +000010799 err = tg3_init_hw(tp, true);
Matt Carlson21f76382012-02-22 12:35:21 +000010800 if (err)
10801 goto out;
10802
10803 tg3_netif_start(tp);
10804
10805out:
10806 tg3_full_unlock(tp);
10807
10808 if (!err)
10809 tg3_phy_start(tp);
10810
10811 tg3_flag_clear(tp, RESET_TASK_PENDING);
10812}
10813
Matt Carlson4f125f42009-09-01 12:55:02 +000010814static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -080010815{
David Howells7d12e782006-10-05 14:55:46 +010010816 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010817 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +000010818 char *name;
10819 struct tg3_napi *tnapi = &tp->napi[irq_num];
10820
10821 if (tp->irq_cnt == 1)
10822 name = tp->dev->name;
10823 else {
10824 name = &tnapi->irq_lbl[0];
10825 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
10826 name[IFNAMSIZ-1] = 0;
10827 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010828
Joe Perches63c3a662011-04-26 08:12:10 +000010829 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -080010830 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +000010831 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010832 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010833 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010834 } else {
10835 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +000010836 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -080010837 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +000010838 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -080010839 }
Matt Carlson4f125f42009-09-01 12:55:02 +000010840
10841 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010842}
10843
Michael Chan79381092005-04-21 17:13:59 -070010844static int tg3_test_interrupt(struct tg3 *tp)
10845{
Matt Carlson09943a12009-08-28 14:01:57 +000010846 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -070010847 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -070010848 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010849 u32 val;
Michael Chan79381092005-04-21 17:13:59 -070010850
Michael Chand4bc3922005-05-29 14:59:20 -070010851 if (!netif_running(dev))
10852 return -ENODEV;
10853
Michael Chan79381092005-04-21 17:13:59 -070010854 tg3_disable_ints(tp);
10855
Matt Carlson4f125f42009-09-01 12:55:02 +000010856 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010857
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010858 /*
10859 * Turn off MSI one shot mode. Otherwise this test has no
10860 * observable way to know whether the interrupt was delivered.
10861 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010862 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010863 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
10864 tw32(MSGINT_MODE, val);
10865 }
10866
Matt Carlson4f125f42009-09-01 12:55:02 +000010867 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +000010868 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -070010869 if (err)
10870 return err;
10871
Matt Carlson898a56f2009-08-28 14:02:40 +000010872 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -070010873 tg3_enable_ints(tp);
10874
10875 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010876 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -070010877
10878 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -070010879 u32 int_mbox, misc_host_ctrl;
10880
Matt Carlson898a56f2009-08-28 14:02:40 +000010881 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -070010882 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
10883
10884 if ((int_mbox != 0) ||
10885 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
10886 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -070010887 break;
Michael Chanb16250e2006-09-27 16:10:14 -070010888 }
10889
Matt Carlson3aa1cdf2011-07-20 10:20:55 +000010890 if (tg3_flag(tp, 57765_PLUS) &&
10891 tnapi->hw_status->status_tag != tnapi->last_tag)
10892 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
10893
Michael Chan79381092005-04-21 17:13:59 -070010894 msleep(10);
10895 }
10896
10897 tg3_disable_ints(tp);
10898
Matt Carlson4f125f42009-09-01 12:55:02 +000010899 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010900
Matt Carlson4f125f42009-09-01 12:55:02 +000010901 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010902
10903 if (err)
10904 return err;
10905
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010906 if (intr_ok) {
10907 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +000010908 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010909 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
10910 tw32(MSGINT_MODE, val);
10911 }
Michael Chan79381092005-04-21 17:13:59 -070010912 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010913 }
Michael Chan79381092005-04-21 17:13:59 -070010914
10915 return -EIO;
10916}
10917
10918/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
10919 * successfully restored
10920 */
10921static int tg3_test_msi(struct tg3 *tp)
10922{
Michael Chan79381092005-04-21 17:13:59 -070010923 int err;
10924 u16 pci_cmd;
10925
Joe Perches63c3a662011-04-26 08:12:10 +000010926 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -070010927 return 0;
10928
10929 /* Turn off SERR reporting in case MSI terminates with Master
10930 * Abort.
10931 */
10932 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
10933 pci_write_config_word(tp->pdev, PCI_COMMAND,
10934 pci_cmd & ~PCI_COMMAND_SERR);
10935
10936 err = tg3_test_interrupt(tp);
10937
10938 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
10939
10940 if (!err)
10941 return 0;
10942
10943 /* other failures */
10944 if (err != -EIO)
10945 return err;
10946
10947 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +000010948 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
10949 "to INTx mode. Please report this failure to the PCI "
10950 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -070010951
Matt Carlson4f125f42009-09-01 12:55:02 +000010952 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +000010953
Michael Chan79381092005-04-21 17:13:59 -070010954 pci_disable_msi(tp->pdev);
10955
Joe Perches63c3a662011-04-26 08:12:10 +000010956 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +000010957 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -070010958
Matt Carlson4f125f42009-09-01 12:55:02 +000010959 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -070010960 if (err)
10961 return err;
10962
10963 /* Need to reset the chip because the MSI cycle may have terminated
10964 * with Master Abort.
10965 */
David S. Millerf47c11e2005-06-24 20:18:35 -070010966 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -070010967
Michael Chan944d9802005-05-29 14:57:48 -070010968 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000010969 err = tg3_init_hw(tp, true);
Michael Chan79381092005-04-21 17:13:59 -070010970
David S. Millerf47c11e2005-06-24 20:18:35 -070010971 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010972
10973 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +000010974 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -070010975
10976 return err;
10977}
10978
Matt Carlson9e9fd122009-01-19 16:57:45 -080010979static int tg3_request_firmware(struct tg3 *tp)
10980{
Nithin Sujir77997ea2013-03-06 17:02:32 +000010981 const struct tg3_firmware_hdr *fw_hdr;
Matt Carlson9e9fd122009-01-19 16:57:45 -080010982
10983 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010984 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
10985 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010986 return -ENOENT;
10987 }
10988
Nithin Sujir77997ea2013-03-06 17:02:32 +000010989 fw_hdr = (struct tg3_firmware_hdr *)tp->fw->data;
Matt Carlson9e9fd122009-01-19 16:57:45 -080010990
10991 /* Firmware blob starts with version numbers, followed by
10992 * start address and _full_ length including BSS sections
10993 * (which must be longer than the actual data, of course
10994 */
10995
Nithin Sujir77997ea2013-03-06 17:02:32 +000010996 tp->fw_len = be32_to_cpu(fw_hdr->len); /* includes bss */
10997 if (tp->fw_len < (tp->fw->size - TG3_FW_HDR_LEN)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010998 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
10999 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -080011000 release_firmware(tp->fw);
11001 tp->fw = NULL;
11002 return -EINVAL;
11003 }
11004
11005 /* We no longer need firmware; we have it. */
11006 tp->fw_needed = NULL;
11007 return 0;
11008}
11009
Michael Chan91024262012-09-28 07:12:38 +000011010static u32 tg3_irq_count(struct tg3 *tp)
Matt Carlson679563f2009-09-01 12:55:46 +000011011{
Michael Chan91024262012-09-28 07:12:38 +000011012 u32 irq_cnt = max(tp->rxq_cnt, tp->txq_cnt);
Matt Carlson679563f2009-09-01 12:55:46 +000011013
Michael Chan91024262012-09-28 07:12:38 +000011014 if (irq_cnt > 1) {
Matt Carlsonc3b50032012-01-17 15:27:23 +000011015 /* We want as many rx rings enabled as there are cpus.
11016 * In multiqueue MSI-X mode, the first MSI-X vector
11017 * only deals with link interrupts, etc, so we add
11018 * one to the number of vectors we are requesting.
11019 */
Michael Chan91024262012-09-28 07:12:38 +000011020 irq_cnt = min_t(unsigned, irq_cnt + 1, tp->irq_max);
Matt Carlsonc3b50032012-01-17 15:27:23 +000011021 }
Matt Carlson679563f2009-09-01 12:55:46 +000011022
Michael Chan91024262012-09-28 07:12:38 +000011023 return irq_cnt;
11024}
11025
11026static bool tg3_enable_msix(struct tg3 *tp)
11027{
11028 int i, rc;
Michael Chan86449942012-10-02 20:31:14 -070011029 struct msix_entry msix_ent[TG3_IRQ_MAX_VECS];
Michael Chan91024262012-09-28 07:12:38 +000011030
Michael Chan09681692012-09-28 07:12:42 +000011031 tp->txq_cnt = tp->txq_req;
11032 tp->rxq_cnt = tp->rxq_req;
11033 if (!tp->rxq_cnt)
11034 tp->rxq_cnt = netif_get_num_default_rss_queues();
Michael Chan91024262012-09-28 07:12:38 +000011035 if (tp->rxq_cnt > tp->rxq_max)
11036 tp->rxq_cnt = tp->rxq_max;
Michael Chancf6d6ea2012-09-28 07:12:43 +000011037
11038 /* Disable multiple TX rings by default. Simple round-robin hardware
11039 * scheduling of the TX rings can cause starvation of rings with
11040 * small packets when other rings have TSO or jumbo packets.
11041 */
11042 if (!tp->txq_req)
11043 tp->txq_cnt = 1;
Michael Chan91024262012-09-28 07:12:38 +000011044
11045 tp->irq_cnt = tg3_irq_count(tp);
11046
Matt Carlson679563f2009-09-01 12:55:46 +000011047 for (i = 0; i < tp->irq_max; i++) {
11048 msix_ent[i].entry = i;
11049 msix_ent[i].vector = 0;
11050 }
11051
11052 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011053 if (rc < 0) {
11054 return false;
11055 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +000011056 if (pci_enable_msix(tp->pdev, msix_ent, rc))
11057 return false;
Joe Perches05dbe002010-02-17 19:44:19 +000011058 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
11059 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +000011060 tp->irq_cnt = rc;
Michael Chan49a359e2012-09-28 07:12:37 +000011061 tp->rxq_cnt = max(rc - 1, 1);
Michael Chan91024262012-09-28 07:12:38 +000011062 if (tp->txq_cnt)
11063 tp->txq_cnt = min(tp->rxq_cnt, tp->txq_max);
Matt Carlson679563f2009-09-01 12:55:46 +000011064 }
11065
11066 for (i = 0; i < tp->irq_max; i++)
11067 tp->napi[i].irq_vec = msix_ent[i].vector;
11068
Michael Chan49a359e2012-09-28 07:12:37 +000011069 if (netif_set_real_num_rx_queues(tp->dev, tp->rxq_cnt)) {
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011070 pci_disable_msix(tp->pdev);
11071 return false;
11072 }
Matt Carlsonb92b9042010-11-24 08:31:51 +000011073
Michael Chan91024262012-09-28 07:12:38 +000011074 if (tp->irq_cnt == 1)
11075 return true;
Matt Carlsond78b59f2011-04-05 14:22:46 +000011076
Michael Chan91024262012-09-28 07:12:38 +000011077 tg3_flag_set(tp, ENABLE_RSS);
11078
11079 if (tp->txq_cnt > 1)
11080 tg3_flag_set(tp, ENABLE_TSS);
11081
11082 netif_set_real_num_tx_queues(tp->dev, tp->txq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +000011083
Matt Carlson679563f2009-09-01 12:55:46 +000011084 return true;
11085}
11086
Matt Carlson07b01732009-08-28 14:01:15 +000011087static void tg3_ints_init(struct tg3 *tp)
11088{
Joe Perches63c3a662011-04-26 08:12:10 +000011089 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
11090 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +000011091 /* All MSI supporting chips should support tagged
11092 * status. Assert that this is the case.
11093 */
Matt Carlson5129c3a2010-04-05 10:19:23 +000011094 netdev_warn(tp->dev,
11095 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +000011096 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +000011097 }
Matt Carlson4f125f42009-09-01 12:55:02 +000011098
Joe Perches63c3a662011-04-26 08:12:10 +000011099 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
11100 tg3_flag_set(tp, USING_MSIX);
11101 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
11102 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +000011103
Joe Perches63c3a662011-04-26 08:12:10 +000011104 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011105 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +000011106 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +000011107 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +000011108 if (!tg3_flag(tp, 1SHOT_MSI))
11109 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +000011110 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
11111 }
11112defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +000011113 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +000011114 tp->irq_cnt = 1;
11115 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan49a359e2012-09-28 07:12:37 +000011116 }
11117
11118 if (tp->irq_cnt == 1) {
11119 tp->txq_cnt = 1;
11120 tp->rxq_cnt = 1;
Ben Hutchings2ddaad32010-09-27 22:11:51 -070011121 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -070011122 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +000011123 }
Matt Carlson07b01732009-08-28 14:01:15 +000011124}
11125
11126static void tg3_ints_fini(struct tg3 *tp)
11127{
Joe Perches63c3a662011-04-26 08:12:10 +000011128 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +000011129 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011130 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000011131 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000011132 tg3_flag_clear(tp, USING_MSI);
11133 tg3_flag_clear(tp, USING_MSIX);
11134 tg3_flag_clear(tp, ENABLE_RSS);
11135 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000011136}
11137
Matt Carlsonbe947302012-12-03 19:36:57 +000011138static int tg3_start(struct tg3 *tp, bool reset_phy, bool test_irq,
11139 bool init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011140{
Michael Chand8f4cd32012-09-28 07:12:40 +000011141 struct net_device *dev = tp->dev;
Matt Carlson4f125f42009-09-01 12:55:02 +000011142 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011143
Matt Carlson679563f2009-09-01 12:55:46 +000011144 /*
11145 * Setup interrupts first so we know how
11146 * many NAPI resources to allocate
11147 */
11148 tg3_ints_init(tp);
11149
Matt Carlson90415472011-12-16 13:33:23 +000011150 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000011151
Linus Torvalds1da177e2005-04-16 15:20:36 -070011152 /* The placement of this call is tied
11153 * to the setup and use of Host TX descriptors.
11154 */
11155 err = tg3_alloc_consistent(tp);
11156 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000011157 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011158
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011159 tg3_napi_init(tp);
11160
Matt Carlsonfed97812009-09-01 13:10:19 +000011161 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070011162
Matt Carlson4f125f42009-09-01 12:55:02 +000011163 for (i = 0; i < tp->irq_cnt; i++) {
11164 struct tg3_napi *tnapi = &tp->napi[i];
11165 err = tg3_request_irq(tp, i);
11166 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000011167 for (i--; i >= 0; i--) {
11168 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000011169 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000011170 }
11171 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000011172 }
11173 }
Matt Carlson07b01732009-08-28 14:01:15 +000011174
David S. Millerf47c11e2005-06-24 20:18:35 -070011175 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011176
Michael Chand8f4cd32012-09-28 07:12:40 +000011177 err = tg3_init_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011178 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070011179 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011180 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011181 }
11182
David S. Millerf47c11e2005-06-24 20:18:35 -070011183 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011184
Matt Carlson07b01732009-08-28 14:01:15 +000011185 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000011186 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011187
Michael Chand8f4cd32012-09-28 07:12:40 +000011188 if (test_irq && tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070011189 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070011190
Michael Chan79381092005-04-21 17:13:59 -070011191 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070011192 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070011193 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070011194 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070011195 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070011196
Matt Carlson679563f2009-09-01 12:55:46 +000011197 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070011198 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080011199
Joe Perches63c3a662011-04-26 08:12:10 +000011200 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011201 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011202
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000011203 tw32(PCIE_TRANSACTION_CFG,
11204 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080011205 }
Michael Chan79381092005-04-21 17:13:59 -070011206 }
11207
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011208 tg3_phy_start(tp);
11209
Michael Chanaed93e02012-07-16 16:24:02 +000011210 tg3_hwmon_open(tp);
11211
David S. Millerf47c11e2005-06-24 20:18:35 -070011212 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011213
Matt Carlson21f76382012-02-22 12:35:21 +000011214 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011215 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011216 tg3_enable_ints(tp);
11217
Matt Carlsonbe947302012-12-03 19:36:57 +000011218 if (init)
11219 tg3_ptp_init(tp);
11220 else
11221 tg3_ptp_resume(tp);
11222
11223
David S. Millerf47c11e2005-06-24 20:18:35 -070011224 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011225
Matt Carlsonfe5f5782009-09-01 13:09:39 +000011226 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011227
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000011228 /*
11229 * Reset loopback feature if it was turned on while the device was down
11230 * make sure that it's installed properly now.
11231 */
11232 if (dev->features & NETIF_F_LOOPBACK)
11233 tg3_set_loopback(dev, dev->features);
11234
Linus Torvalds1da177e2005-04-16 15:20:36 -070011235 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000011236
Matt Carlson679563f2009-09-01 12:55:46 +000011237err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000011238 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11239 struct tg3_napi *tnapi = &tp->napi[i];
11240 free_irq(tnapi->irq_vec, tnapi);
11241 }
Matt Carlson07b01732009-08-28 14:01:15 +000011242
Matt Carlson679563f2009-09-01 12:55:46 +000011243err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000011244 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011245 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000011246 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000011247
11248err_out1:
11249 tg3_ints_fini(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011250
Matt Carlson07b01732009-08-28 14:01:15 +000011251 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011252}
11253
Michael Chan65138592012-09-28 07:12:41 +000011254static void tg3_stop(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011255{
Matt Carlson4f125f42009-09-01 12:55:02 +000011256 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011257
Matt Carlsondb219972011-11-04 09:15:03 +000011258 tg3_reset_task_cancel(tp);
Nithin Nayak Sujirbd473da2012-11-05 14:26:30 +000011259 tg3_netif_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011260
Matt Carlson21f76382012-02-22 12:35:21 +000011261 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011262
Michael Chanaed93e02012-07-16 16:24:02 +000011263 tg3_hwmon_close(tp);
11264
Matt Carlson24bb4fb2009-10-05 17:55:29 +000011265 tg3_phy_stop(tp);
11266
David S. Millerf47c11e2005-06-24 20:18:35 -070011267 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011268
11269 tg3_disable_ints(tp);
11270
Michael Chan944d9802005-05-29 14:57:48 -070011271 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011272 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000011273 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011274
David S. Millerf47c11e2005-06-24 20:18:35 -070011275 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011276
Matt Carlson4f125f42009-09-01 12:55:02 +000011277 for (i = tp->irq_cnt - 1; i >= 0; i--) {
11278 struct tg3_napi *tnapi = &tp->napi[i];
11279 free_irq(tnapi->irq_vec, tnapi);
11280 }
Matt Carlson07b01732009-08-28 14:01:15 +000011281
11282 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011283
Matt Carlson66cfd1b2010-09-30 10:34:30 +000011284 tg3_napi_fini(tp);
11285
Linus Torvalds1da177e2005-04-16 15:20:36 -070011286 tg3_free_consistent(tp);
Michael Chan65138592012-09-28 07:12:41 +000011287}
11288
Michael Chand8f4cd32012-09-28 07:12:40 +000011289static int tg3_open(struct net_device *dev)
11290{
11291 struct tg3 *tp = netdev_priv(dev);
11292 int err;
11293
11294 if (tp->fw_needed) {
11295 err = tg3_request_firmware(tp);
Nithin Sujirc4dab502013-03-06 17:02:34 +000011296 if (tg3_asic_rev(tp) == ASIC_REV_57766) {
11297 if (err) {
11298 netdev_warn(tp->dev, "EEE capability disabled\n");
11299 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11300 } else if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP)) {
11301 netdev_warn(tp->dev, "EEE capability restored\n");
11302 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
11303 }
11304 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0) {
Michael Chand8f4cd32012-09-28 07:12:40 +000011305 if (err)
11306 return err;
11307 } else if (err) {
11308 netdev_warn(tp->dev, "TSO capability disabled\n");
11309 tg3_flag_clear(tp, TSO_CAPABLE);
11310 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
11311 netdev_notice(tp->dev, "TSO capability restored\n");
11312 tg3_flag_set(tp, TSO_CAPABLE);
11313 }
11314 }
11315
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011316 tg3_carrier_off(tp);
Michael Chand8f4cd32012-09-28 07:12:40 +000011317
11318 err = tg3_power_up(tp);
11319 if (err)
11320 return err;
11321
11322 tg3_full_lock(tp, 0);
11323
11324 tg3_disable_ints(tp);
11325 tg3_flag_clear(tp, INIT_COMPLETE);
11326
11327 tg3_full_unlock(tp);
11328
Nithin Sujir942d1af2013-04-09 08:48:07 +000011329 err = tg3_start(tp,
11330 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN),
11331 true, true);
Michael Chand8f4cd32012-09-28 07:12:40 +000011332 if (err) {
11333 tg3_frob_aux_power(tp, false);
11334 pci_set_power_state(tp->pdev, PCI_D3hot);
11335 }
Matt Carlsonbe947302012-12-03 19:36:57 +000011336
Matt Carlson7d41e492012-12-03 19:36:58 +000011337 if (tg3_flag(tp, PTP_CAPABLE)) {
11338 tp->ptp_clock = ptp_clock_register(&tp->ptp_info,
11339 &tp->pdev->dev);
11340 if (IS_ERR(tp->ptp_clock))
11341 tp->ptp_clock = NULL;
11342 }
11343
Linus Torvalds1da177e2005-04-16 15:20:36 -070011344 return err;
11345}
11346
11347static int tg3_close(struct net_device *dev)
11348{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011349 struct tg3 *tp = netdev_priv(dev);
11350
Matt Carlsonbe947302012-12-03 19:36:57 +000011351 tg3_ptp_fini(tp);
11352
Michael Chan65138592012-09-28 07:12:41 +000011353 tg3_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011354
11355 /* Clear stats across close / open calls */
11356 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
11357 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011358
11359 tg3_power_down(tp);
11360
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011361 tg3_carrier_off(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011362
11363 return 0;
11364}
11365
11366static inline u64 get_stat64(tg3_stat64_t *val)
11367{
11368 return ((u64)val->high << 32) | ((u64)val->low);
11369}
11370
11371static u64 tg3_calc_crc_errors(struct tg3 *tp)
11372{
11373 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11374
11375 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000011376 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
11377 tg3_asic_rev(tp) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011378 u32 val;
11379
11380 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
11381 tg3_writephy(tp, MII_TG3_TEST1,
11382 val | MII_TG3_TEST1_CRC_EN);
11383 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
11384 } else
11385 val = 0;
11386
11387 tp->phy_crc_errors += val;
11388
11389 return tp->phy_crc_errors;
11390 }
11391
11392 return get_stat64(&hw_stats->rx_fcs_errors);
11393}
11394
11395#define ESTAT_ADD(member) \
11396 estats->member = old_estats->member + \
11397 get_stat64(&hw_stats->member)
11398
11399static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
11400{
11401 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
11402 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11403
11404 ESTAT_ADD(rx_octets);
11405 ESTAT_ADD(rx_fragments);
11406 ESTAT_ADD(rx_ucast_packets);
11407 ESTAT_ADD(rx_mcast_packets);
11408 ESTAT_ADD(rx_bcast_packets);
11409 ESTAT_ADD(rx_fcs_errors);
11410 ESTAT_ADD(rx_align_errors);
11411 ESTAT_ADD(rx_xon_pause_rcvd);
11412 ESTAT_ADD(rx_xoff_pause_rcvd);
11413 ESTAT_ADD(rx_mac_ctrl_rcvd);
11414 ESTAT_ADD(rx_xoff_entered);
11415 ESTAT_ADD(rx_frame_too_long_errors);
11416 ESTAT_ADD(rx_jabbers);
11417 ESTAT_ADD(rx_undersize_packets);
11418 ESTAT_ADD(rx_in_length_errors);
11419 ESTAT_ADD(rx_out_length_errors);
11420 ESTAT_ADD(rx_64_or_less_octet_packets);
11421 ESTAT_ADD(rx_65_to_127_octet_packets);
11422 ESTAT_ADD(rx_128_to_255_octet_packets);
11423 ESTAT_ADD(rx_256_to_511_octet_packets);
11424 ESTAT_ADD(rx_512_to_1023_octet_packets);
11425 ESTAT_ADD(rx_1024_to_1522_octet_packets);
11426 ESTAT_ADD(rx_1523_to_2047_octet_packets);
11427 ESTAT_ADD(rx_2048_to_4095_octet_packets);
11428 ESTAT_ADD(rx_4096_to_8191_octet_packets);
11429 ESTAT_ADD(rx_8192_to_9022_octet_packets);
11430
11431 ESTAT_ADD(tx_octets);
11432 ESTAT_ADD(tx_collisions);
11433 ESTAT_ADD(tx_xon_sent);
11434 ESTAT_ADD(tx_xoff_sent);
11435 ESTAT_ADD(tx_flow_control);
11436 ESTAT_ADD(tx_mac_errors);
11437 ESTAT_ADD(tx_single_collisions);
11438 ESTAT_ADD(tx_mult_collisions);
11439 ESTAT_ADD(tx_deferred);
11440 ESTAT_ADD(tx_excessive_collisions);
11441 ESTAT_ADD(tx_late_collisions);
11442 ESTAT_ADD(tx_collide_2times);
11443 ESTAT_ADD(tx_collide_3times);
11444 ESTAT_ADD(tx_collide_4times);
11445 ESTAT_ADD(tx_collide_5times);
11446 ESTAT_ADD(tx_collide_6times);
11447 ESTAT_ADD(tx_collide_7times);
11448 ESTAT_ADD(tx_collide_8times);
11449 ESTAT_ADD(tx_collide_9times);
11450 ESTAT_ADD(tx_collide_10times);
11451 ESTAT_ADD(tx_collide_11times);
11452 ESTAT_ADD(tx_collide_12times);
11453 ESTAT_ADD(tx_collide_13times);
11454 ESTAT_ADD(tx_collide_14times);
11455 ESTAT_ADD(tx_collide_15times);
11456 ESTAT_ADD(tx_ucast_packets);
11457 ESTAT_ADD(tx_mcast_packets);
11458 ESTAT_ADD(tx_bcast_packets);
11459 ESTAT_ADD(tx_carrier_sense_errors);
11460 ESTAT_ADD(tx_discards);
11461 ESTAT_ADD(tx_errors);
11462
11463 ESTAT_ADD(dma_writeq_full);
11464 ESTAT_ADD(dma_write_prioq_full);
11465 ESTAT_ADD(rxbds_empty);
11466 ESTAT_ADD(rx_discards);
11467 ESTAT_ADD(rx_errors);
11468 ESTAT_ADD(rx_threshold_hit);
11469
11470 ESTAT_ADD(dma_readq_full);
11471 ESTAT_ADD(dma_read_prioq_full);
11472 ESTAT_ADD(tx_comp_queue_full);
11473
11474 ESTAT_ADD(ring_set_send_prod_index);
11475 ESTAT_ADD(ring_status_update);
11476 ESTAT_ADD(nic_irqs);
11477 ESTAT_ADD(nic_avoided_irqs);
11478 ESTAT_ADD(nic_tx_threshold_hit);
11479
Matt Carlson4452d092011-05-19 12:12:51 +000011480 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011481}
11482
Matt Carlson65ec6982012-02-28 23:33:37 +000011483static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011484{
Eric Dumazet511d2222010-07-07 20:44:24 +000011485 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011486 struct tg3_hw_stats *hw_stats = tp->hw_stats;
11487
Linus Torvalds1da177e2005-04-16 15:20:36 -070011488 stats->rx_packets = old_stats->rx_packets +
11489 get_stat64(&hw_stats->rx_ucast_packets) +
11490 get_stat64(&hw_stats->rx_mcast_packets) +
11491 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011492
Linus Torvalds1da177e2005-04-16 15:20:36 -070011493 stats->tx_packets = old_stats->tx_packets +
11494 get_stat64(&hw_stats->tx_ucast_packets) +
11495 get_stat64(&hw_stats->tx_mcast_packets) +
11496 get_stat64(&hw_stats->tx_bcast_packets);
11497
11498 stats->rx_bytes = old_stats->rx_bytes +
11499 get_stat64(&hw_stats->rx_octets);
11500 stats->tx_bytes = old_stats->tx_bytes +
11501 get_stat64(&hw_stats->tx_octets);
11502
11503 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070011504 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011505 stats->tx_errors = old_stats->tx_errors +
11506 get_stat64(&hw_stats->tx_errors) +
11507 get_stat64(&hw_stats->tx_mac_errors) +
11508 get_stat64(&hw_stats->tx_carrier_sense_errors) +
11509 get_stat64(&hw_stats->tx_discards);
11510
11511 stats->multicast = old_stats->multicast +
11512 get_stat64(&hw_stats->rx_mcast_packets);
11513 stats->collisions = old_stats->collisions +
11514 get_stat64(&hw_stats->tx_collisions);
11515
11516 stats->rx_length_errors = old_stats->rx_length_errors +
11517 get_stat64(&hw_stats->rx_frame_too_long_errors) +
11518 get_stat64(&hw_stats->rx_undersize_packets);
11519
11520 stats->rx_over_errors = old_stats->rx_over_errors +
11521 get_stat64(&hw_stats->rxbds_empty);
11522 stats->rx_frame_errors = old_stats->rx_frame_errors +
11523 get_stat64(&hw_stats->rx_align_errors);
11524 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
11525 get_stat64(&hw_stats->tx_discards);
11526 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
11527 get_stat64(&hw_stats->tx_carrier_sense_errors);
11528
11529 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000011530 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011531
John W. Linville4f63b872005-09-12 14:43:18 -070011532 stats->rx_missed_errors = old_stats->rx_missed_errors +
11533 get_stat64(&hw_stats->rx_discards);
11534
Eric Dumazetb0057c52010-10-10 19:55:52 +000011535 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000011536 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011537}
11538
Linus Torvalds1da177e2005-04-16 15:20:36 -070011539static int tg3_get_regs_len(struct net_device *dev)
11540{
Matt Carlson97bd8e42011-04-13 11:05:04 +000011541 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011542}
11543
11544static void tg3_get_regs(struct net_device *dev,
11545 struct ethtool_regs *regs, void *_p)
11546{
Linus Torvalds1da177e2005-04-16 15:20:36 -070011547 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011548
11549 regs->version = 0;
11550
Matt Carlson97bd8e42011-04-13 11:05:04 +000011551 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011552
Matt Carlson80096062010-08-02 11:26:06 +000011553 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011554 return;
11555
David S. Millerf47c11e2005-06-24 20:18:35 -070011556 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011557
Matt Carlson97bd8e42011-04-13 11:05:04 +000011558 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011559
David S. Millerf47c11e2005-06-24 20:18:35 -070011560 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011561}
11562
11563static int tg3_get_eeprom_len(struct net_device *dev)
11564{
11565 struct tg3 *tp = netdev_priv(dev);
11566
11567 return tp->nvram_size;
11568}
11569
Linus Torvalds1da177e2005-04-16 15:20:36 -070011570static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11571{
11572 struct tg3 *tp = netdev_priv(dev);
11573 int ret;
11574 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080011575 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011576 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011577
Joe Perches63c3a662011-04-26 08:12:10 +000011578 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011579 return -EINVAL;
11580
Matt Carlson80096062010-08-02 11:26:06 +000011581 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011582 return -EAGAIN;
11583
Linus Torvalds1da177e2005-04-16 15:20:36 -070011584 offset = eeprom->offset;
11585 len = eeprom->len;
11586 eeprom->len = 0;
11587
11588 eeprom->magic = TG3_EEPROM_MAGIC;
11589
11590 if (offset & 3) {
11591 /* adjustments to start on required 4 byte boundary */
11592 b_offset = offset & 3;
11593 b_count = 4 - b_offset;
11594 if (b_count > len) {
11595 /* i.e. offset=1 len=2 */
11596 b_count = len;
11597 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000011598 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011599 if (ret)
11600 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000011601 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011602 len -= b_count;
11603 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011604 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011605 }
11606
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011607 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011608 pd = &data[eeprom->len];
11609 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011610 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011611 if (ret) {
11612 eeprom->len += i;
11613 return ret;
11614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011615 memcpy(pd + i, &val, 4);
11616 }
11617 eeprom->len += i;
11618
11619 if (len & 3) {
11620 /* read last bytes not ending on 4 byte boundary */
11621 pd = &data[eeprom->len];
11622 b_count = len & 3;
11623 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011624 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011625 if (ret)
11626 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011627 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011628 eeprom->len += b_count;
11629 }
11630 return 0;
11631}
11632
Linus Torvalds1da177e2005-04-16 15:20:36 -070011633static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
11634{
11635 struct tg3 *tp = netdev_priv(dev);
11636 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080011637 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011638 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011639 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011640
Matt Carlson80096062010-08-02 11:26:06 +000011641 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080011642 return -EAGAIN;
11643
Joe Perches63c3a662011-04-26 08:12:10 +000011644 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000011645 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011646 return -EINVAL;
11647
11648 offset = eeprom->offset;
11649 len = eeprom->len;
11650
11651 if ((b_offset = (offset & 3))) {
11652 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011653 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011654 if (ret)
11655 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011656 len += b_offset;
11657 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070011658 if (len < 4)
11659 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011660 }
11661
11662 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070011663 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011664 /* adjustments to end on required 4 byte boundary */
11665 odd_len = 1;
11666 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011667 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011668 if (ret)
11669 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011670 }
11671
11672 buf = data;
11673 if (b_offset || odd_len) {
11674 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011675 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011676 return -ENOMEM;
11677 if (b_offset)
11678 memcpy(buf, &start, 4);
11679 if (odd_len)
11680 memcpy(buf+len-4, &end, 4);
11681 memcpy(buf + b_offset, data, eeprom->len);
11682 }
11683
11684 ret = tg3_nvram_write_block(tp, offset, len, buf);
11685
11686 if (buf != data)
11687 kfree(buf);
11688
11689 return ret;
11690}
11691
11692static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11693{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011694 struct tg3 *tp = netdev_priv(dev);
11695
Joe Perches63c3a662011-04-26 08:12:10 +000011696 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011697 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011698 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011699 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011700 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11701 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011702 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011703
Linus Torvalds1da177e2005-04-16 15:20:36 -070011704 cmd->supported = (SUPPORTED_Autoneg);
11705
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011706 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011707 cmd->supported |= (SUPPORTED_1000baseT_Half |
11708 SUPPORTED_1000baseT_Full);
11709
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011710 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011711 cmd->supported |= (SUPPORTED_100baseT_Half |
11712 SUPPORTED_100baseT_Full |
11713 SUPPORTED_10baseT_Half |
11714 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080011715 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070011716 cmd->port = PORT_TP;
11717 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011718 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070011719 cmd->port = PORT_FIBRE;
11720 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011721
Linus Torvalds1da177e2005-04-16 15:20:36 -070011722 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000011723 if (tg3_flag(tp, PAUSE_AUTONEG)) {
11724 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
11725 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11726 cmd->advertising |= ADVERTISED_Pause;
11727 } else {
11728 cmd->advertising |= ADVERTISED_Pause |
11729 ADVERTISED_Asym_Pause;
11730 }
11731 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
11732 cmd->advertising |= ADVERTISED_Asym_Pause;
11733 }
11734 }
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000011735 if (netif_running(dev) && tp->link_up) {
David Decotigny70739492011-04-27 18:32:40 +000011736 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011737 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000011738 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011739 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
11740 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
11741 cmd->eth_tp_mdix = ETH_TP_MDI_X;
11742 else
11743 cmd->eth_tp_mdix = ETH_TP_MDI;
11744 }
Matt Carlson64c22182010-10-14 10:37:44 +000011745 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000011746 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
11747 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000011748 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011749 }
Matt Carlson882e9792009-09-01 13:21:36 +000011750 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011751 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011752 cmd->autoneg = tp->link_config.autoneg;
11753 cmd->maxtxpkt = 0;
11754 cmd->maxrxpkt = 0;
11755 return 0;
11756}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011757
Linus Torvalds1da177e2005-04-16 15:20:36 -070011758static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
11759{
11760 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000011761 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011762
Joe Perches63c3a662011-04-26 08:12:10 +000011763 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011764 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011765 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011766 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011767 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
11768 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011769 }
11770
Matt Carlson7e5856b2009-02-25 14:23:01 +000011771 if (cmd->autoneg != AUTONEG_ENABLE &&
11772 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070011773 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000011774
11775 if (cmd->autoneg == AUTONEG_DISABLE &&
11776 cmd->duplex != DUPLEX_FULL &&
11777 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070011778 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011779
Matt Carlson7e5856b2009-02-25 14:23:01 +000011780 if (cmd->autoneg == AUTONEG_ENABLE) {
11781 u32 mask = ADVERTISED_Autoneg |
11782 ADVERTISED_Pause |
11783 ADVERTISED_Asym_Pause;
11784
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011785 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011786 mask |= ADVERTISED_1000baseT_Half |
11787 ADVERTISED_1000baseT_Full;
11788
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011789 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000011790 mask |= ADVERTISED_100baseT_Half |
11791 ADVERTISED_100baseT_Full |
11792 ADVERTISED_10baseT_Half |
11793 ADVERTISED_10baseT_Full |
11794 ADVERTISED_TP;
11795 else
11796 mask |= ADVERTISED_FIBRE;
11797
11798 if (cmd->advertising & ~mask)
11799 return -EINVAL;
11800
11801 mask &= (ADVERTISED_1000baseT_Half |
11802 ADVERTISED_1000baseT_Full |
11803 ADVERTISED_100baseT_Half |
11804 ADVERTISED_100baseT_Full |
11805 ADVERTISED_10baseT_Half |
11806 ADVERTISED_10baseT_Full);
11807
11808 cmd->advertising &= mask;
11809 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011810 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000011811 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011812 return -EINVAL;
11813
11814 if (cmd->duplex != DUPLEX_FULL)
11815 return -EINVAL;
11816 } else {
David Decotigny25db0332011-04-27 18:32:39 +000011817 if (speed != SPEED_100 &&
11818 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000011819 return -EINVAL;
11820 }
11821 }
11822
David S. Millerf47c11e2005-06-24 20:18:35 -070011823 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011824
11825 tp->link_config.autoneg = cmd->autoneg;
11826 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070011827 tp->link_config.advertising = (cmd->advertising |
11828 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000011829 tp->link_config.speed = SPEED_UNKNOWN;
11830 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011831 } else {
11832 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000011833 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011834 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011835 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011836
Nithin Sujirfdad8de2013-04-09 08:48:08 +000011837 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
11838
Nithin Sujirce20f162013-04-09 08:48:04 +000011839 tg3_warn_mgmt_link_flap(tp);
11840
Linus Torvalds1da177e2005-04-16 15:20:36 -070011841 if (netif_running(dev))
Joe Perches953c96e2013-04-09 10:18:14 +000011842 tg3_setup_phy(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011843
David S. Millerf47c11e2005-06-24 20:18:35 -070011844 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011845
Linus Torvalds1da177e2005-04-16 15:20:36 -070011846 return 0;
11847}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011848
Linus Torvalds1da177e2005-04-16 15:20:36 -070011849static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
11850{
11851 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011852
Rick Jones68aad782011-11-07 13:29:27 +000011853 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
11854 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
11855 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
11856 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011857}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011858
Linus Torvalds1da177e2005-04-16 15:20:36 -070011859static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11860{
11861 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011862
Joe Perches63c3a662011-04-26 08:12:10 +000011863 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070011864 wol->supported = WAKE_MAGIC;
11865 else
11866 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011867 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011868 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011869 wol->wolopts = WAKE_MAGIC;
11870 memset(&wol->sopass, 0, sizeof(wol->sopass));
11871}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011872
Linus Torvalds1da177e2005-04-16 15:20:36 -070011873static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
11874{
11875 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070011876 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011877
Linus Torvalds1da177e2005-04-16 15:20:36 -070011878 if (wol->wolopts & ~WAKE_MAGIC)
11879 return -EINVAL;
11880 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011881 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011882 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011883
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011884 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
11885
David S. Millerf47c11e2005-06-24 20:18:35 -070011886 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011887 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000011888 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000011889 else
Joe Perches63c3a662011-04-26 08:12:10 +000011890 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070011891 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011892
Linus Torvalds1da177e2005-04-16 15:20:36 -070011893 return 0;
11894}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011895
Linus Torvalds1da177e2005-04-16 15:20:36 -070011896static u32 tg3_get_msglevel(struct net_device *dev)
11897{
11898 struct tg3 *tp = netdev_priv(dev);
11899 return tp->msg_enable;
11900}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011901
Linus Torvalds1da177e2005-04-16 15:20:36 -070011902static void tg3_set_msglevel(struct net_device *dev, u32 value)
11903{
11904 struct tg3 *tp = netdev_priv(dev);
11905 tp->msg_enable = value;
11906}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011907
Linus Torvalds1da177e2005-04-16 15:20:36 -070011908static int tg3_nway_reset(struct net_device *dev)
11909{
11910 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011911 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011912
Linus Torvalds1da177e2005-04-16 15:20:36 -070011913 if (!netif_running(dev))
11914 return -EAGAIN;
11915
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011916 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070011917 return -EINVAL;
11918
Nithin Sujirce20f162013-04-09 08:48:04 +000011919 tg3_warn_mgmt_link_flap(tp);
11920
Joe Perches63c3a662011-04-26 08:12:10 +000011921 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011922 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011923 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011924 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011925 } else {
11926 u32 bmcr;
11927
11928 spin_lock_bh(&tp->lock);
11929 r = -EINVAL;
11930 tg3_readphy(tp, MII_BMCR, &bmcr);
11931 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
11932 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011933 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011934 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
11935 BMCR_ANENABLE);
11936 r = 0;
11937 }
11938 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011939 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011940
Linus Torvalds1da177e2005-04-16 15:20:36 -070011941 return r;
11942}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011943
Linus Torvalds1da177e2005-04-16 15:20:36 -070011944static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11945{
11946 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011947
Matt Carlson2c49a442010-09-30 10:34:35 +000011948 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000011949 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000011950 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080011951 else
11952 ering->rx_jumbo_max_pending = 0;
11953
11954 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011955
11956 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000011957 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080011958 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
11959 else
11960 ering->rx_jumbo_pending = 0;
11961
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011962 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011963}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011964
Linus Torvalds1da177e2005-04-16 15:20:36 -070011965static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
11966{
11967 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000011968 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011969
Matt Carlson2c49a442010-09-30 10:34:35 +000011970 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
11971 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070011972 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
11973 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011974 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070011975 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011976 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011977
Michael Chanbbe832c2005-06-24 20:20:04 -070011978 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011979 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011980 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011981 irq_sync = 1;
11982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011983
Michael Chanbbe832c2005-06-24 20:20:04 -070011984 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011985
Linus Torvalds1da177e2005-04-16 15:20:36 -070011986 tp->rx_pending = ering->rx_pending;
11987
Joe Perches63c3a662011-04-26 08:12:10 +000011988 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070011989 tp->rx_pending > 63)
11990 tp->rx_pending = 63;
11991 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000011992
Matt Carlson6fd45cb2010-09-15 08:59:57 +000011993 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000011994 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011995
11996 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070011997 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000011998 err = tg3_restart_hw(tp, false);
Michael Chanb9ec6c12006-07-25 16:37:27 -070011999 if (!err)
12000 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012001 }
12002
David S. Millerf47c11e2005-06-24 20:18:35 -070012003 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012004
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012005 if (irq_sync && !err)
12006 tg3_phy_start(tp);
12007
Michael Chanb9ec6c12006-07-25 16:37:27 -070012008 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012009}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012010
Linus Torvalds1da177e2005-04-16 15:20:36 -070012011static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12012{
12013 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012014
Joe Perches63c3a662011-04-26 08:12:10 +000012015 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080012016
Matt Carlson4a2db502011-12-08 14:40:17 +000012017 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080012018 epause->rx_pause = 1;
12019 else
12020 epause->rx_pause = 0;
12021
Matt Carlson4a2db502011-12-08 14:40:17 +000012022 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080012023 epause->tx_pause = 1;
12024 else
12025 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012026}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012027
Linus Torvalds1da177e2005-04-16 15:20:36 -070012028static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
12029{
12030 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012031 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012032
Nithin Sujirce20f162013-04-09 08:48:04 +000012033 if (tp->link_config.autoneg == AUTONEG_ENABLE)
12034 tg3_warn_mgmt_link_flap(tp);
12035
Joe Perches63c3a662011-04-26 08:12:10 +000012036 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000012037 u32 newadv;
12038 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012039
Matt Carlson27121682010-02-17 15:16:57 +000012040 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012041
Matt Carlson27121682010-02-17 15:16:57 +000012042 if (!(phydev->supported & SUPPORTED_Pause) ||
12043 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000012044 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000012045 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012046
Matt Carlson27121682010-02-17 15:16:57 +000012047 tp->link_config.flowctrl = 0;
12048 if (epause->rx_pause) {
12049 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012050
Matt Carlson27121682010-02-17 15:16:57 +000012051 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080012052 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000012053 newadv = ADVERTISED_Pause;
12054 } else
12055 newadv = ADVERTISED_Pause |
12056 ADVERTISED_Asym_Pause;
12057 } else if (epause->tx_pause) {
12058 tp->link_config.flowctrl |= FLOW_CTRL_TX;
12059 newadv = ADVERTISED_Asym_Pause;
12060 } else
12061 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012062
Matt Carlson27121682010-02-17 15:16:57 +000012063 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012064 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012065 else
Joe Perches63c3a662011-04-26 08:12:10 +000012066 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000012067
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012068 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000012069 u32 oldadv = phydev->advertising &
12070 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
12071 if (oldadv != newadv) {
12072 phydev->advertising &=
12073 ~(ADVERTISED_Pause |
12074 ADVERTISED_Asym_Pause);
12075 phydev->advertising |= newadv;
12076 if (phydev->autoneg) {
12077 /*
12078 * Always renegotiate the link to
12079 * inform our link partner of our
12080 * flow control settings, even if the
12081 * flow control is forced. Let
12082 * tg3_adjust_link() do the final
12083 * flow control setup.
12084 */
12085 return phy_start_aneg(phydev);
12086 }
12087 }
12088
12089 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012090 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000012091 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012092 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000012093 ~(ADVERTISED_Pause |
12094 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000012095 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012096 }
12097 } else {
12098 int irq_sync = 0;
12099
12100 if (netif_running(dev)) {
12101 tg3_netif_stop(tp);
12102 irq_sync = 1;
12103 }
12104
12105 tg3_full_lock(tp, irq_sync);
12106
12107 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000012108 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012109 else
Joe Perches63c3a662011-04-26 08:12:10 +000012110 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012111 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012112 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012113 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012114 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012115 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080012116 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012117 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080012118 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012119
12120 if (netif_running(dev)) {
12121 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches953c96e2013-04-09 10:18:14 +000012122 err = tg3_restart_hw(tp, false);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012123 if (!err)
12124 tg3_netif_start(tp);
12125 }
12126
12127 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012129
Nithin Sujirfdad8de2013-04-09 08:48:08 +000012130 tp->phy_flags |= TG3_PHYFLG_USER_CONFIGURED;
12131
Michael Chanb9ec6c12006-07-25 16:37:27 -070012132 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012133}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012134
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012135static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012136{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012137 switch (sset) {
12138 case ETH_SS_TEST:
12139 return TG3_NUM_TEST;
12140 case ETH_SS_STATS:
12141 return TG3_NUM_STATS;
12142 default:
12143 return -EOPNOTSUPP;
12144 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070012145}
12146
Matt Carlson90415472011-12-16 13:33:23 +000012147static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
12148 u32 *rules __always_unused)
12149{
12150 struct tg3 *tp = netdev_priv(dev);
12151
12152 if (!tg3_flag(tp, SUPPORT_MSIX))
12153 return -EOPNOTSUPP;
12154
12155 switch (info->cmd) {
12156 case ETHTOOL_GRXRINGS:
12157 if (netif_running(tp->dev))
Michael Chan91024262012-09-28 07:12:38 +000012158 info->data = tp->rxq_cnt;
Matt Carlson90415472011-12-16 13:33:23 +000012159 else {
12160 info->data = num_online_cpus();
Michael Chan91024262012-09-28 07:12:38 +000012161 if (info->data > TG3_RSS_MAX_NUM_QS)
12162 info->data = TG3_RSS_MAX_NUM_QS;
Matt Carlson90415472011-12-16 13:33:23 +000012163 }
12164
12165 /* The first interrupt vector only
12166 * handles link interrupts.
12167 */
12168 info->data -= 1;
12169 return 0;
12170
12171 default:
12172 return -EOPNOTSUPP;
12173 }
12174}
12175
12176static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
12177{
12178 u32 size = 0;
12179 struct tg3 *tp = netdev_priv(dev);
12180
12181 if (tg3_flag(tp, SUPPORT_MSIX))
12182 size = TG3_RSS_INDIR_TBL_SIZE;
12183
12184 return size;
12185}
12186
12187static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
12188{
12189 struct tg3 *tp = netdev_priv(dev);
12190 int i;
12191
12192 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12193 indir[i] = tp->rss_ind_tbl[i];
12194
12195 return 0;
12196}
12197
12198static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
12199{
12200 struct tg3 *tp = netdev_priv(dev);
12201 size_t i;
12202
12203 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
12204 tp->rss_ind_tbl[i] = indir[i];
12205
12206 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
12207 return 0;
12208
12209 /* It is legal to write the indirection
12210 * table while the device is running.
12211 */
12212 tg3_full_lock(tp, 0);
12213 tg3_rss_write_indir_tbl(tp);
12214 tg3_full_unlock(tp);
12215
12216 return 0;
12217}
12218
Michael Chan09681692012-09-28 07:12:42 +000012219static void tg3_get_channels(struct net_device *dev,
12220 struct ethtool_channels *channel)
12221{
12222 struct tg3 *tp = netdev_priv(dev);
12223 u32 deflt_qs = netif_get_num_default_rss_queues();
12224
12225 channel->max_rx = tp->rxq_max;
12226 channel->max_tx = tp->txq_max;
12227
12228 if (netif_running(dev)) {
12229 channel->rx_count = tp->rxq_cnt;
12230 channel->tx_count = tp->txq_cnt;
12231 } else {
12232 if (tp->rxq_req)
12233 channel->rx_count = tp->rxq_req;
12234 else
12235 channel->rx_count = min(deflt_qs, tp->rxq_max);
12236
12237 if (tp->txq_req)
12238 channel->tx_count = tp->txq_req;
12239 else
12240 channel->tx_count = min(deflt_qs, tp->txq_max);
12241 }
12242}
12243
12244static int tg3_set_channels(struct net_device *dev,
12245 struct ethtool_channels *channel)
12246{
12247 struct tg3 *tp = netdev_priv(dev);
12248
12249 if (!tg3_flag(tp, SUPPORT_MSIX))
12250 return -EOPNOTSUPP;
12251
12252 if (channel->rx_count > tp->rxq_max ||
12253 channel->tx_count > tp->txq_max)
12254 return -EINVAL;
12255
12256 tp->rxq_req = channel->rx_count;
12257 tp->txq_req = channel->tx_count;
12258
12259 if (!netif_running(dev))
12260 return 0;
12261
12262 tg3_stop(tp);
12263
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012264 tg3_carrier_off(tp);
Michael Chan09681692012-09-28 07:12:42 +000012265
Matt Carlsonbe947302012-12-03 19:36:57 +000012266 tg3_start(tp, true, false, false);
Michael Chan09681692012-09-28 07:12:42 +000012267
12268 return 0;
12269}
12270
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012271static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012272{
12273 switch (stringset) {
12274 case ETH_SS_STATS:
12275 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
12276 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070012277 case ETH_SS_TEST:
12278 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
12279 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012280 default:
12281 WARN_ON(1); /* we need a WARN() */
12282 break;
12283 }
12284}
12285
stephen hemminger81b87092011-04-04 08:43:50 +000012286static int tg3_set_phys_id(struct net_device *dev,
12287 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070012288{
12289 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070012290
12291 if (!netif_running(tp->dev))
12292 return -EAGAIN;
12293
stephen hemminger81b87092011-04-04 08:43:50 +000012294 switch (state) {
12295 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000012296 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070012297
stephen hemminger81b87092011-04-04 08:43:50 +000012298 case ETHTOOL_ID_ON:
12299 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12300 LED_CTRL_1000MBPS_ON |
12301 LED_CTRL_100MBPS_ON |
12302 LED_CTRL_10MBPS_ON |
12303 LED_CTRL_TRAFFIC_OVERRIDE |
12304 LED_CTRL_TRAFFIC_BLINK |
12305 LED_CTRL_TRAFFIC_LED);
12306 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012307
stephen hemminger81b87092011-04-04 08:43:50 +000012308 case ETHTOOL_ID_OFF:
12309 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
12310 LED_CTRL_TRAFFIC_OVERRIDE);
12311 break;
Michael Chan4009a932005-09-05 17:52:54 -070012312
stephen hemminger81b87092011-04-04 08:43:50 +000012313 case ETHTOOL_ID_INACTIVE:
12314 tw32(MAC_LED_CTRL, tp->led_ctrl);
12315 break;
Michael Chan4009a932005-09-05 17:52:54 -070012316 }
stephen hemminger81b87092011-04-04 08:43:50 +000012317
Michael Chan4009a932005-09-05 17:52:54 -070012318 return 0;
12319}
12320
Matt Carlsonde6f31e2010-04-12 06:58:30 +000012321static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012322 struct ethtool_stats *estats, u64 *tmp_stats)
12323{
12324 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000012325
Matt Carlsonb546e462012-02-13 15:20:09 +000012326 if (tp->hw_stats)
12327 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
12328 else
12329 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012330}
12331
Matt Carlson535a4902011-07-20 10:20:56 +000012332static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000012333{
12334 int i;
12335 __be32 *buf;
12336 u32 offset = 0, len = 0;
12337 u32 magic, val;
12338
Joe Perches63c3a662011-04-26 08:12:10 +000012339 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000012340 return NULL;
12341
12342 if (magic == TG3_EEPROM_MAGIC) {
12343 for (offset = TG3_NVM_DIR_START;
12344 offset < TG3_NVM_DIR_END;
12345 offset += TG3_NVM_DIRENT_SIZE) {
12346 if (tg3_nvram_read(tp, offset, &val))
12347 return NULL;
12348
12349 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
12350 TG3_NVM_DIRTYPE_EXTVPD)
12351 break;
12352 }
12353
12354 if (offset != TG3_NVM_DIR_END) {
12355 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
12356 if (tg3_nvram_read(tp, offset + 4, &offset))
12357 return NULL;
12358
12359 offset = tg3_nvram_logical_addr(tp, offset);
12360 }
12361 }
12362
12363 if (!offset || !len) {
12364 offset = TG3_NVM_VPD_OFF;
12365 len = TG3_NVM_VPD_LEN;
12366 }
12367
12368 buf = kmalloc(len, GFP_KERNEL);
12369 if (buf == NULL)
12370 return NULL;
12371
12372 if (magic == TG3_EEPROM_MAGIC) {
12373 for (i = 0; i < len; i += 4) {
12374 /* The data is in little-endian format in NVRAM.
12375 * Use the big-endian read routines to preserve
12376 * the byte order as it exists in NVRAM.
12377 */
12378 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
12379 goto error;
12380 }
12381 } else {
12382 u8 *ptr;
12383 ssize_t cnt;
12384 unsigned int pos = 0;
12385
12386 ptr = (u8 *)&buf[0];
12387 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
12388 cnt = pci_read_vpd(tp->pdev, pos,
12389 len - pos, ptr);
12390 if (cnt == -ETIMEDOUT || cnt == -EINTR)
12391 cnt = 0;
12392 else if (cnt < 0)
12393 goto error;
12394 }
12395 if (pos != len)
12396 goto error;
12397 }
12398
Matt Carlson535a4902011-07-20 10:20:56 +000012399 *vpdlen = len;
12400
Matt Carlsonc3e94502011-04-13 11:05:08 +000012401 return buf;
12402
12403error:
12404 kfree(buf);
12405 return NULL;
12406}
12407
Michael Chan566f86a2005-05-29 14:56:58 -070012408#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080012409#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
12410#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
12411#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000012412#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
12413#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000012414#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070012415#define NVRAM_SELFBOOT_HW_SIZE 0x20
12416#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070012417
12418static int tg3_test_nvram(struct tg3 *tp)
12419{
Matt Carlson535a4902011-07-20 10:20:56 +000012420 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012421 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010012422 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070012423
Joe Perches63c3a662011-04-26 08:12:10 +000012424 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000012425 return 0;
12426
Matt Carlsone4f34112009-02-25 14:25:00 +000012427 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012428 return -EIO;
12429
Michael Chan1b277772006-03-20 22:27:48 -080012430 if (magic == TG3_EEPROM_MAGIC)
12431 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070012432 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080012433 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
12434 TG3_EEPROM_SB_FORMAT_1) {
12435 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
12436 case TG3_EEPROM_SB_REVISION_0:
12437 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
12438 break;
12439 case TG3_EEPROM_SB_REVISION_2:
12440 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
12441 break;
12442 case TG3_EEPROM_SB_REVISION_3:
12443 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
12444 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000012445 case TG3_EEPROM_SB_REVISION_4:
12446 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
12447 break;
12448 case TG3_EEPROM_SB_REVISION_5:
12449 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
12450 break;
12451 case TG3_EEPROM_SB_REVISION_6:
12452 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
12453 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080012454 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000012455 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080012456 }
12457 } else
Michael Chan1b277772006-03-20 22:27:48 -080012458 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070012459 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
12460 size = NVRAM_SELFBOOT_HW_SIZE;
12461 else
Michael Chan1b277772006-03-20 22:27:48 -080012462 return -EIO;
12463
12464 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070012465 if (buf == NULL)
12466 return -ENOMEM;
12467
Michael Chan1b277772006-03-20 22:27:48 -080012468 err = -EIO;
12469 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012470 err = tg3_nvram_read_be32(tp, i, &buf[j]);
12471 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070012472 break;
Michael Chan566f86a2005-05-29 14:56:58 -070012473 }
Michael Chan1b277772006-03-20 22:27:48 -080012474 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070012475 goto out;
12476
Michael Chan1b277772006-03-20 22:27:48 -080012477 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000012478 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080012479 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012480 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080012481 u8 *buf8 = (u8 *) buf, csum8 = 0;
12482
Al Virob9fc7dc2007-12-17 22:59:57 -080012483 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080012484 TG3_EEPROM_SB_REVISION_2) {
12485 /* For rev 2, the csum doesn't include the MBA. */
12486 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
12487 csum8 += buf8[i];
12488 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
12489 csum8 += buf8[i];
12490 } else {
12491 for (i = 0; i < size; i++)
12492 csum8 += buf8[i];
12493 }
Michael Chan1b277772006-03-20 22:27:48 -080012494
Adrian Bunkad96b482006-04-05 22:21:04 -070012495 if (csum8 == 0) {
12496 err = 0;
12497 goto out;
12498 }
12499
12500 err = -EIO;
12501 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080012502 }
Michael Chan566f86a2005-05-29 14:56:58 -070012503
Al Virob9fc7dc2007-12-17 22:59:57 -080012504 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070012505 TG3_EEPROM_MAGIC_HW) {
12506 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000012507 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070012508 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070012509
12510 /* Separate the parity bits and the data bytes. */
12511 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
12512 if ((i == 0) || (i == 8)) {
12513 int l;
12514 u8 msk;
12515
12516 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
12517 parity[k++] = buf8[i] & msk;
12518 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000012519 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070012520 int l;
12521 u8 msk;
12522
12523 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
12524 parity[k++] = buf8[i] & msk;
12525 i++;
12526
12527 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
12528 parity[k++] = buf8[i] & msk;
12529 i++;
12530 }
12531 data[j++] = buf8[i];
12532 }
12533
12534 err = -EIO;
12535 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
12536 u8 hw8 = hweight8(data[i]);
12537
12538 if ((hw8 & 0x1) && parity[i])
12539 goto out;
12540 else if (!(hw8 & 0x1) && !parity[i])
12541 goto out;
12542 }
12543 err = 0;
12544 goto out;
12545 }
12546
Matt Carlson01c3a392011-03-09 16:58:20 +000012547 err = -EIO;
12548
Michael Chan566f86a2005-05-29 14:56:58 -070012549 /* Bootstrap checksum at offset 0x10 */
12550 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000012551 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070012552 goto out;
12553
12554 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
12555 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000012556 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000012557 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070012558
Matt Carlsonc3e94502011-04-13 11:05:08 +000012559 kfree(buf);
12560
Matt Carlson535a4902011-07-20 10:20:56 +000012561 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000012562 if (!buf)
12563 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000012564
Matt Carlson535a4902011-07-20 10:20:56 +000012565 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000012566 if (i > 0) {
12567 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
12568 if (j < 0)
12569 goto out;
12570
Matt Carlson535a4902011-07-20 10:20:56 +000012571 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000012572 goto out;
12573
12574 i += PCI_VPD_LRDT_TAG_SIZE;
12575 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
12576 PCI_VPD_RO_KEYWORD_CHKSUM);
12577 if (j > 0) {
12578 u8 csum8 = 0;
12579
12580 j += PCI_VPD_INFO_FLD_HDR_SIZE;
12581
12582 for (i = 0; i <= j; i++)
12583 csum8 += ((u8 *)buf)[i];
12584
12585 if (csum8)
12586 goto out;
12587 }
12588 }
12589
Michael Chan566f86a2005-05-29 14:56:58 -070012590 err = 0;
12591
12592out:
12593 kfree(buf);
12594 return err;
12595}
12596
Michael Chanca430072005-05-29 14:57:23 -070012597#define TG3_SERDES_TIMEOUT_SEC 2
12598#define TG3_COPPER_TIMEOUT_SEC 6
12599
12600static int tg3_test_link(struct tg3 *tp)
12601{
12602 int i, max;
12603
12604 if (!netif_running(tp->dev))
12605 return -ENODEV;
12606
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012607 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070012608 max = TG3_SERDES_TIMEOUT_SEC;
12609 else
12610 max = TG3_COPPER_TIMEOUT_SEC;
12611
12612 for (i = 0; i < max; i++) {
Nithin Nayak Sujirf4a46d12012-11-14 14:44:27 +000012613 if (tp->link_up)
Michael Chanca430072005-05-29 14:57:23 -070012614 return 0;
12615
12616 if (msleep_interruptible(1000))
12617 break;
12618 }
12619
12620 return -EIO;
12621}
12622
Michael Chana71116d2005-05-29 14:58:11 -070012623/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080012624static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070012625{
Michael Chanb16250e2006-09-27 16:10:14 -070012626 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070012627 u32 offset, read_mask, write_mask, val, save_val, read_val;
12628 static struct {
12629 u16 offset;
12630 u16 flags;
12631#define TG3_FL_5705 0x1
12632#define TG3_FL_NOT_5705 0x2
12633#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070012634#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070012635 u32 read_mask;
12636 u32 write_mask;
12637 } reg_tbl[] = {
12638 /* MAC Control Registers */
12639 { MAC_MODE, TG3_FL_NOT_5705,
12640 0x00000000, 0x00ef6f8c },
12641 { MAC_MODE, TG3_FL_5705,
12642 0x00000000, 0x01ef6b8c },
12643 { MAC_STATUS, TG3_FL_NOT_5705,
12644 0x03800107, 0x00000000 },
12645 { MAC_STATUS, TG3_FL_5705,
12646 0x03800100, 0x00000000 },
12647 { MAC_ADDR_0_HIGH, 0x0000,
12648 0x00000000, 0x0000ffff },
12649 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012650 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070012651 { MAC_RX_MTU_SIZE, 0x0000,
12652 0x00000000, 0x0000ffff },
12653 { MAC_TX_MODE, 0x0000,
12654 0x00000000, 0x00000070 },
12655 { MAC_TX_LENGTHS, 0x0000,
12656 0x00000000, 0x00003fff },
12657 { MAC_RX_MODE, TG3_FL_NOT_5705,
12658 0x00000000, 0x000007fc },
12659 { MAC_RX_MODE, TG3_FL_5705,
12660 0x00000000, 0x000007dc },
12661 { MAC_HASH_REG_0, 0x0000,
12662 0x00000000, 0xffffffff },
12663 { MAC_HASH_REG_1, 0x0000,
12664 0x00000000, 0xffffffff },
12665 { MAC_HASH_REG_2, 0x0000,
12666 0x00000000, 0xffffffff },
12667 { MAC_HASH_REG_3, 0x0000,
12668 0x00000000, 0xffffffff },
12669
12670 /* Receive Data and Receive BD Initiator Control Registers. */
12671 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
12672 0x00000000, 0xffffffff },
12673 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
12674 0x00000000, 0xffffffff },
12675 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
12676 0x00000000, 0x00000003 },
12677 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
12678 0x00000000, 0xffffffff },
12679 { RCVDBDI_STD_BD+0, 0x0000,
12680 0x00000000, 0xffffffff },
12681 { RCVDBDI_STD_BD+4, 0x0000,
12682 0x00000000, 0xffffffff },
12683 { RCVDBDI_STD_BD+8, 0x0000,
12684 0x00000000, 0xffff0002 },
12685 { RCVDBDI_STD_BD+0xc, 0x0000,
12686 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012687
Michael Chana71116d2005-05-29 14:58:11 -070012688 /* Receive BD Initiator Control Registers. */
12689 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
12690 0x00000000, 0xffffffff },
12691 { RCVBDI_STD_THRESH, TG3_FL_5705,
12692 0x00000000, 0x000003ff },
12693 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
12694 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012695
Michael Chana71116d2005-05-29 14:58:11 -070012696 /* Host Coalescing Control Registers. */
12697 { HOSTCC_MODE, TG3_FL_NOT_5705,
12698 0x00000000, 0x00000004 },
12699 { HOSTCC_MODE, TG3_FL_5705,
12700 0x00000000, 0x000000f6 },
12701 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
12702 0x00000000, 0xffffffff },
12703 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
12704 0x00000000, 0x000003ff },
12705 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
12706 0x00000000, 0xffffffff },
12707 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
12708 0x00000000, 0x000003ff },
12709 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
12710 0x00000000, 0xffffffff },
12711 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12712 0x00000000, 0x000000ff },
12713 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
12714 0x00000000, 0xffffffff },
12715 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
12716 0x00000000, 0x000000ff },
12717 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
12718 0x00000000, 0xffffffff },
12719 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
12720 0x00000000, 0xffffffff },
12721 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12722 0x00000000, 0xffffffff },
12723 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12724 0x00000000, 0x000000ff },
12725 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
12726 0x00000000, 0xffffffff },
12727 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
12728 0x00000000, 0x000000ff },
12729 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
12730 0x00000000, 0xffffffff },
12731 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
12732 0x00000000, 0xffffffff },
12733 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
12734 0x00000000, 0xffffffff },
12735 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
12736 0x00000000, 0xffffffff },
12737 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
12738 0x00000000, 0xffffffff },
12739 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
12740 0xffffffff, 0x00000000 },
12741 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
12742 0xffffffff, 0x00000000 },
12743
12744 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070012745 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012746 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070012747 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070012748 0x00000000, 0x007fffff },
12749 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
12750 0x00000000, 0x0000003f },
12751 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
12752 0x00000000, 0x000001ff },
12753 { BUFMGR_MB_HIGH_WATER, 0x0000,
12754 0x00000000, 0x000001ff },
12755 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
12756 0xffffffff, 0x00000000 },
12757 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
12758 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012759
Michael Chana71116d2005-05-29 14:58:11 -070012760 /* Mailbox Registers */
12761 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
12762 0x00000000, 0x000001ff },
12763 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
12764 0x00000000, 0x000001ff },
12765 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
12766 0x00000000, 0x000007ff },
12767 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
12768 0x00000000, 0x000001ff },
12769
12770 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
12771 };
12772
Michael Chanb16250e2006-09-27 16:10:14 -070012773 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012774 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070012775 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000012776 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070012777 is_5750 = 1;
12778 }
Michael Chana71116d2005-05-29 14:58:11 -070012779
12780 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
12781 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
12782 continue;
12783
12784 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
12785 continue;
12786
Joe Perches63c3a662011-04-26 08:12:10 +000012787 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070012788 (reg_tbl[i].flags & TG3_FL_NOT_5788))
12789 continue;
12790
Michael Chanb16250e2006-09-27 16:10:14 -070012791 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
12792 continue;
12793
Michael Chana71116d2005-05-29 14:58:11 -070012794 offset = (u32) reg_tbl[i].offset;
12795 read_mask = reg_tbl[i].read_mask;
12796 write_mask = reg_tbl[i].write_mask;
12797
12798 /* Save the original register content */
12799 save_val = tr32(offset);
12800
12801 /* Determine the read-only value. */
12802 read_val = save_val & read_mask;
12803
12804 /* Write zero to the register, then make sure the read-only bits
12805 * are not changed and the read/write bits are all zeros.
12806 */
12807 tw32(offset, 0);
12808
12809 val = tr32(offset);
12810
12811 /* Test the read-only and read/write bits. */
12812 if (((val & read_mask) != read_val) || (val & write_mask))
12813 goto out;
12814
12815 /* Write ones to all the bits defined by RdMask and WrMask, then
12816 * make sure the read-only bits are not changed and the
12817 * read/write bits are all ones.
12818 */
12819 tw32(offset, read_mask | write_mask);
12820
12821 val = tr32(offset);
12822
12823 /* Test the read-only bits. */
12824 if ((val & read_mask) != read_val)
12825 goto out;
12826
12827 /* Test the read/write bits. */
12828 if ((val & write_mask) != write_mask)
12829 goto out;
12830
12831 tw32(offset, save_val);
12832 }
12833
12834 return 0;
12835
12836out:
Michael Chan9f88f292006-12-07 00:22:54 -080012837 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000012838 netdev_err(tp->dev,
12839 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070012840 tw32(offset, save_val);
12841 return -EIO;
12842}
12843
Michael Chan7942e1d2005-05-29 14:58:36 -070012844static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
12845{
Arjan van de Venf71e1302006-03-03 21:33:57 -050012846 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070012847 int i;
12848 u32 j;
12849
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020012850 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070012851 for (j = 0; j < len; j += 4) {
12852 u32 val;
12853
12854 tg3_write_mem(tp, offset + j, test_pattern[i]);
12855 tg3_read_mem(tp, offset + j, &val);
12856 if (val != test_pattern[i])
12857 return -EIO;
12858 }
12859 }
12860 return 0;
12861}
12862
12863static int tg3_test_memory(struct tg3 *tp)
12864{
12865 static struct mem_entry {
12866 u32 offset;
12867 u32 len;
12868 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080012869 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070012870 { 0x00002000, 0x1c000},
12871 { 0xffffffff, 0x00000}
12872 }, mem_tbl_5705[] = {
12873 { 0x00000100, 0x0000c},
12874 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070012875 { 0x00004000, 0x00800},
12876 { 0x00006000, 0x01000},
12877 { 0x00008000, 0x02000},
12878 { 0x00010000, 0x0e000},
12879 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080012880 }, mem_tbl_5755[] = {
12881 { 0x00000200, 0x00008},
12882 { 0x00004000, 0x00800},
12883 { 0x00006000, 0x00800},
12884 { 0x00008000, 0x02000},
12885 { 0x00010000, 0x0c000},
12886 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070012887 }, mem_tbl_5906[] = {
12888 { 0x00000200, 0x00008},
12889 { 0x00004000, 0x00400},
12890 { 0x00006000, 0x00400},
12891 { 0x00008000, 0x01000},
12892 { 0x00010000, 0x01000},
12893 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012894 }, mem_tbl_5717[] = {
12895 { 0x00000200, 0x00008},
12896 { 0x00010000, 0x0a000},
12897 { 0x00020000, 0x13c00},
12898 { 0xffffffff, 0x00000}
12899 }, mem_tbl_57765[] = {
12900 { 0x00000200, 0x00008},
12901 { 0x00004000, 0x00800},
12902 { 0x00006000, 0x09800},
12903 { 0x00010000, 0x0a000},
12904 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070012905 };
12906 struct mem_entry *mem_tbl;
12907 int err = 0;
12908 int i;
12909
Joe Perches63c3a662011-04-26 08:12:10 +000012910 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012911 mem_tbl = mem_tbl_5717;
Michael Chanc65a17f2013-01-06 12:51:07 +000012912 else if (tg3_flag(tp, 57765_CLASS) ||
Joe Perches41535772013-02-16 11:20:04 +000012913 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson8b5a6c42010-01-20 16:58:06 +000012914 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000012915 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012916 mem_tbl = mem_tbl_5755;
Joe Perches41535772013-02-16 11:20:04 +000012917 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlson321d32a2008-11-21 17:22:19 -080012918 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000012919 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080012920 mem_tbl = mem_tbl_5705;
12921 else
Michael Chan7942e1d2005-05-29 14:58:36 -070012922 mem_tbl = mem_tbl_570x;
12923
12924 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000012925 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
12926 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070012927 break;
12928 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012929
Michael Chan7942e1d2005-05-29 14:58:36 -070012930 return err;
12931}
12932
Matt Carlsonbb158d62011-04-25 12:42:47 +000012933#define TG3_TSO_MSS 500
12934
12935#define TG3_TSO_IP_HDR_LEN 20
12936#define TG3_TSO_TCP_HDR_LEN 20
12937#define TG3_TSO_TCP_OPT_LEN 12
12938
12939static const u8 tg3_tso_header[] = {
129400x08, 0x00,
129410x45, 0x00, 0x00, 0x00,
129420x00, 0x00, 0x40, 0x00,
129430x40, 0x06, 0x00, 0x00,
129440x0a, 0x00, 0x00, 0x01,
129450x0a, 0x00, 0x00, 0x02,
129460x0d, 0x00, 0xe0, 0x00,
129470x00, 0x00, 0x01, 0x00,
129480x00, 0x00, 0x02, 0x00,
129490x80, 0x10, 0x10, 0x00,
129500x14, 0x09, 0x00, 0x00,
129510x01, 0x01, 0x08, 0x0a,
129520x11, 0x11, 0x11, 0x11,
129530x11, 0x11, 0x11, 0x11,
12954};
Michael Chan9f40dea2005-09-05 17:53:06 -070012955
Matt Carlson28a45952011-08-19 13:58:22 +000012956static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070012957{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012958 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000012959 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000012960 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000012961 struct sk_buff *skb;
12962 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070012963 dma_addr_t map;
12964 int num_pkts, tx_len, rx_len, i, err;
12965 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000012966 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000012967 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070012968
Matt Carlsonc8873402010-02-12 14:47:11 +000012969 tnapi = &tp->napi[0];
12970 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012971 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000012972 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000012973 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000012974 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000012975 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000012976 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000012977 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000012978
Michael Chanc76949a2005-05-29 14:58:59 -070012979 err = -EIO;
12980
Matt Carlson4852a862011-04-13 11:05:07 +000012981 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070012982 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070012983 if (!skb)
12984 return -ENOMEM;
12985
Michael Chanc76949a2005-05-29 14:58:59 -070012986 tx_data = skb_put(skb, tx_len);
12987 memcpy(tx_data, tp->dev->dev_addr, 6);
12988 memset(tx_data + 6, 0x0, 8);
12989
Matt Carlson4852a862011-04-13 11:05:07 +000012990 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070012991
Matt Carlson28a45952011-08-19 13:58:22 +000012992 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000012993 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
12994
12995 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
12996 TG3_TSO_TCP_OPT_LEN;
12997
12998 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
12999 sizeof(tg3_tso_header));
13000 mss = TG3_TSO_MSS;
13001
13002 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
13003 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
13004
13005 /* Set the total length field in the IP header */
13006 iph->tot_len = htons((u16)(mss + hdr_len));
13007
13008 base_flags = (TXD_FLAG_CPU_PRE_DMA |
13009 TXD_FLAG_CPU_POST_DMA);
13010
Joe Perches63c3a662011-04-26 08:12:10 +000013011 if (tg3_flag(tp, HW_TSO_1) ||
13012 tg3_flag(tp, HW_TSO_2) ||
13013 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013014 struct tcphdr *th;
13015 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
13016 th = (struct tcphdr *)&tx_data[val];
13017 th->check = 0;
13018 } else
13019 base_flags |= TXD_FLAG_TCPUDP_CSUM;
13020
Joe Perches63c3a662011-04-26 08:12:10 +000013021 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013022 mss |= (hdr_len & 0xc) << 12;
13023 if (hdr_len & 0x10)
13024 base_flags |= 0x00000010;
13025 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000013026 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013027 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000013028 else if (tg3_flag(tp, HW_TSO_1) ||
Joe Perches41535772013-02-16 11:20:04 +000013029 tg3_asic_rev(tp) == ASIC_REV_5705) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013030 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
13031 } else {
13032 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
13033 }
13034
13035 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
13036 } else {
13037 num_pkts = 1;
13038 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000013039
13040 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
13041 tx_len > VLAN_ETH_FRAME_LEN)
13042 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013043 }
13044
13045 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070013046 tx_data[i] = (u8) (i & 0xff);
13047
Alexander Duyckf4188d82009-12-02 16:48:38 +000013048 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
13049 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000013050 dev_kfree_skb(skb);
13051 return -EIO;
13052 }
Michael Chanc76949a2005-05-29 14:58:59 -070013053
Matt Carlson0d681b22011-07-27 14:20:49 +000013054 val = tnapi->tx_prod;
13055 tnapi->tx_buffers[val].skb = skb;
13056 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
13057
Michael Chanc76949a2005-05-29 14:58:59 -070013058 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013059 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013060
13061 udelay(10);
13062
Matt Carlson898a56f2009-08-28 14:02:40 +000013063 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070013064
Matt Carlson84b67b22011-07-27 14:20:52 +000013065 budget = tg3_tx_avail(tnapi);
13066 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000013067 base_flags | TXD_FLAG_END, mss, 0)) {
13068 tnapi->tx_buffers[val].skb = NULL;
13069 dev_kfree_skb(skb);
13070 return -EIO;
13071 }
Michael Chanc76949a2005-05-29 14:58:59 -070013072
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013073 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070013074
Michael Chan6541b802012-03-04 14:48:14 +000013075 /* Sync BD data before updating mailbox */
13076 wmb();
13077
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013078 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
13079 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070013080
13081 udelay(10);
13082
Matt Carlson303fc922009-11-02 14:27:34 +000013083 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
13084 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070013085 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000013086 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070013087
13088 udelay(10);
13089
Matt Carlson898a56f2009-08-28 14:02:40 +000013090 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
13091 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013092 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070013093 (rx_idx == (rx_start_idx + num_pkts)))
13094 break;
13095 }
13096
Matt Carlsonba1142e2011-11-04 09:15:00 +000013097 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070013098 dev_kfree_skb(skb);
13099
Matt Carlsonf3f3f272009-08-28 14:03:21 +000013100 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070013101 goto out;
13102
13103 if (rx_idx != rx_start_idx + num_pkts)
13104 goto out;
13105
Matt Carlsonbb158d62011-04-25 12:42:47 +000013106 val = data_off;
13107 while (rx_idx != rx_start_idx) {
13108 desc = &rnapi->rx_rcb[rx_start_idx++];
13109 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
13110 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070013111
Matt Carlsonbb158d62011-04-25 12:42:47 +000013112 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
13113 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000013114 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070013115
Matt Carlsonbb158d62011-04-25 12:42:47 +000013116 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
13117 - ETH_FCS_LEN;
13118
Matt Carlson28a45952011-08-19 13:58:22 +000013119 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013120 if (rx_len != tx_len)
13121 goto out;
13122
13123 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
13124 if (opaque_key != RXD_OPAQUE_RING_STD)
13125 goto out;
13126 } else {
13127 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
13128 goto out;
13129 }
13130 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
13131 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000013132 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000013133 goto out;
13134 }
13135
13136 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013137 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013138 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
13139 mapping);
13140 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013141 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000013142 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
13143 mapping);
13144 } else
Matt Carlson4852a862011-04-13 11:05:07 +000013145 goto out;
13146
Matt Carlsonbb158d62011-04-25 12:42:47 +000013147 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
13148 PCI_DMA_FROMDEVICE);
13149
Eric Dumazet9205fd92011-11-18 06:47:01 +000013150 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000013151 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000013152 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000013153 goto out;
13154 }
Matt Carlson4852a862011-04-13 11:05:07 +000013155 }
13156
Michael Chanc76949a2005-05-29 14:58:59 -070013157 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013158
Eric Dumazet9205fd92011-11-18 06:47:01 +000013159 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070013160out:
13161 return err;
13162}
13163
Matt Carlson00c266b2011-04-25 12:42:46 +000013164#define TG3_STD_LOOPBACK_FAILED 1
13165#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000013166#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000013167#define TG3_LOOPBACK_FAILED \
13168 (TG3_STD_LOOPBACK_FAILED | \
13169 TG3_JMB_LOOPBACK_FAILED | \
13170 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000013171
Matt Carlson941ec902011-08-19 13:58:23 +000013172static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070013173{
Matt Carlson28a45952011-08-19 13:58:22 +000013174 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000013175 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000013176 u32 jmb_pkt_sz = 9000;
13177
13178 if (tp->dma_limit)
13179 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070013180
Matt Carlsonab789042011-01-25 15:58:54 +000013181 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
13182 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
13183
Matt Carlson28a45952011-08-19 13:58:22 +000013184 if (!netif_running(tp->dev)) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013185 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13186 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013187 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013188 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000013189 goto done;
13190 }
13191
Joe Perches953c96e2013-04-09 10:18:14 +000013192 err = tg3_reset_hw(tp, true);
Matt Carlsonab789042011-01-25 15:58:54 +000013193 if (err) {
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013194 data[TG3_MAC_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
13195 data[TG3_PHY_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013196 if (do_extlpbk)
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013197 data[TG3_EXT_LOOPB_TEST] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000013198 goto done;
13199 }
Michael Chan9f40dea2005-09-05 17:53:06 -070013200
Joe Perches63c3a662011-04-26 08:12:10 +000013201 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000013202 int i;
13203
13204 /* Reroute all rx packets to the 1st queue */
13205 for (i = MAC_RSS_INDIR_TBL_0;
13206 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
13207 tw32(i, 0x0);
13208 }
13209
Matt Carlson6e01b202011-08-19 13:58:20 +000013210 /* HW errata - mac loopback fails in some cases on 5780.
13211 * Normal traffic and PHY loopback are not affected by
13212 * errata. Also, the MAC loopback test is deprecated for
13213 * all newer ASIC revisions.
13214 */
Joe Perches41535772013-02-16 11:20:04 +000013215 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Matt Carlson6e01b202011-08-19 13:58:20 +000013216 !tg3_flag(tp, CPMU_PRESENT)) {
13217 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070013218
Matt Carlson28a45952011-08-19 13:58:22 +000013219 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013220 data[TG3_MAC_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013221
13222 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013223 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013224 data[TG3_MAC_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000013225
13226 tg3_mac_loopback(tp, false);
13227 }
Matt Carlson4852a862011-04-13 11:05:07 +000013228
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013229 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013230 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013231 int i;
13232
Matt Carlson941ec902011-08-19 13:58:23 +000013233 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013234
13235 /* Wait for link */
13236 for (i = 0; i < 100; i++) {
13237 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
13238 break;
13239 mdelay(1);
13240 }
13241
Matt Carlson28a45952011-08-19 13:58:22 +000013242 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013243 data[TG3_PHY_LOOPB_TEST] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013244 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000013245 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013246 data[TG3_PHY_LOOPB_TEST] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000013247 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013248 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013249 data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070013250
Matt Carlson941ec902011-08-19 13:58:23 +000013251 if (do_extlpbk) {
13252 tg3_phy_lpbk_set(tp, 0, true);
13253
13254 /* All link indications report up, but the hardware
13255 * isn't really ready for about 20 msec. Double it
13256 * to be sure.
13257 */
13258 mdelay(40);
13259
13260 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013261 data[TG3_EXT_LOOPB_TEST] |=
13262 TG3_STD_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013263 if (tg3_flag(tp, TSO_CAPABLE) &&
13264 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013265 data[TG3_EXT_LOOPB_TEST] |=
13266 TG3_TSO_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013267 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000013268 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013269 data[TG3_EXT_LOOPB_TEST] |=
13270 TG3_JMB_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000013271 }
13272
Matt Carlson5e5a7f32011-08-19 13:58:21 +000013273 /* Re-enable gphy autopowerdown. */
13274 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
13275 tg3_phy_toggle_apd(tp, true);
13276 }
Matt Carlson6833c042008-11-21 17:18:59 -080013277
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013278 err = (data[TG3_MAC_LOOPB_TEST] | data[TG3_PHY_LOOPB_TEST] |
13279 data[TG3_EXT_LOOPB_TEST]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000013280
Matt Carlsonab789042011-01-25 15:58:54 +000013281done:
13282 tp->phy_flags |= eee_cap;
13283
Michael Chan9f40dea2005-09-05 17:53:06 -070013284 return err;
13285}
13286
Michael Chan4cafd3f2005-05-29 14:56:34 -070013287static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
13288 u64 *data)
13289{
Michael Chan566f86a2005-05-29 14:56:58 -070013290 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000013291 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070013292
Matt Carlsonbed98292011-07-13 09:27:29 +000013293 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
13294 tg3_power_up(tp)) {
13295 etest->flags |= ETH_TEST_FL_FAILED;
13296 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
13297 return;
13298 }
Michael Chanbc1c7562006-03-20 17:48:03 -080013299
Michael Chan566f86a2005-05-29 14:56:58 -070013300 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
13301
13302 if (tg3_test_nvram(tp) != 0) {
13303 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013304 data[TG3_NVRAM_TEST] = 1;
Michael Chan566f86a2005-05-29 14:56:58 -070013305 }
Matt Carlson941ec902011-08-19 13:58:23 +000013306 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070013307 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013308 data[TG3_LINK_TEST] = 1;
Michael Chanca430072005-05-29 14:57:23 -070013309 }
Michael Chana71116d2005-05-29 14:58:11 -070013310 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013311 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070013312
Michael Chanbbe832c2005-06-24 20:20:04 -070013313 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013314 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070013315 tg3_netif_stop(tp);
13316 irq_sync = 1;
13317 }
13318
13319 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070013320 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080013321 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013322 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000013323 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070013324 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080013325 if (!err)
13326 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013327
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013328 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080013329 tg3_phy_reset(tp);
13330
Michael Chana71116d2005-05-29 14:58:11 -070013331 if (tg3_test_registers(tp) != 0) {
13332 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013333 data[TG3_REGISTER_TEST] = 1;
Michael Chana71116d2005-05-29 14:58:11 -070013334 }
Matt Carlson28a45952011-08-19 13:58:22 +000013335
Michael Chan7942e1d2005-05-29 14:58:36 -070013336 if (tg3_test_memory(tp) != 0) {
13337 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013338 data[TG3_MEMORY_TEST] = 1;
Michael Chan7942e1d2005-05-29 14:58:36 -070013339 }
Matt Carlson28a45952011-08-19 13:58:22 +000013340
Matt Carlson941ec902011-08-19 13:58:23 +000013341 if (doextlpbk)
13342 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
13343
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013344 if (tg3_test_loopback(tp, data, doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070013345 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070013346
David S. Millerf47c11e2005-06-24 20:18:35 -070013347 tg3_full_unlock(tp);
13348
Michael Chand4bc3922005-05-29 14:59:20 -070013349 if (tg3_test_interrupt(tp) != 0) {
13350 etest->flags |= ETH_TEST_FL_FAILED;
Nithin Nayak Sujir93df8b82012-11-14 14:44:28 +000013351 data[TG3_INTERRUPT_TEST] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070013352 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013353
13354 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070013355
Michael Chana71116d2005-05-29 14:58:11 -070013356 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13357 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013358 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000013359 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013360 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070013361 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013362 }
David S. Millerf47c11e2005-06-24 20:18:35 -070013363
13364 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013365
13366 if (irq_sync && !err2)
13367 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070013368 }
Matt Carlson80096062010-08-02 11:26:06 +000013369 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000013370 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080013371
Michael Chan4cafd3f2005-05-29 14:56:34 -070013372}
13373
Matt Carlson0a633ac2012-12-03 19:36:59 +000013374static int tg3_hwtstamp_ioctl(struct net_device *dev,
13375 struct ifreq *ifr, int cmd)
13376{
13377 struct tg3 *tp = netdev_priv(dev);
13378 struct hwtstamp_config stmpconf;
13379
13380 if (!tg3_flag(tp, PTP_CAPABLE))
13381 return -EINVAL;
13382
13383 if (copy_from_user(&stmpconf, ifr->ifr_data, sizeof(stmpconf)))
13384 return -EFAULT;
13385
13386 if (stmpconf.flags)
13387 return -EINVAL;
13388
13389 switch (stmpconf.tx_type) {
13390 case HWTSTAMP_TX_ON:
13391 tg3_flag_set(tp, TX_TSTAMP_EN);
13392 break;
13393 case HWTSTAMP_TX_OFF:
13394 tg3_flag_clear(tp, TX_TSTAMP_EN);
13395 break;
13396 default:
13397 return -ERANGE;
13398 }
13399
13400 switch (stmpconf.rx_filter) {
13401 case HWTSTAMP_FILTER_NONE:
13402 tp->rxptpctl = 0;
13403 break;
13404 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
13405 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13406 TG3_RX_PTP_CTL_ALL_V1_EVENTS;
13407 break;
13408 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
13409 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13410 TG3_RX_PTP_CTL_SYNC_EVNT;
13411 break;
13412 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
13413 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V1_EN |
13414 TG3_RX_PTP_CTL_DELAY_REQ;
13415 break;
13416 case HWTSTAMP_FILTER_PTP_V2_EVENT:
13417 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13418 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13419 break;
13420 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
13421 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13422 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13423 break;
13424 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
13425 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13426 TG3_RX_PTP_CTL_ALL_V2_EVENTS;
13427 break;
13428 case HWTSTAMP_FILTER_PTP_V2_SYNC:
13429 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13430 TG3_RX_PTP_CTL_SYNC_EVNT;
13431 break;
13432 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
13433 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13434 TG3_RX_PTP_CTL_SYNC_EVNT;
13435 break;
13436 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
13437 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13438 TG3_RX_PTP_CTL_SYNC_EVNT;
13439 break;
13440 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
13441 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_EN |
13442 TG3_RX_PTP_CTL_DELAY_REQ;
13443 break;
13444 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
13445 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L2_EN |
13446 TG3_RX_PTP_CTL_DELAY_REQ;
13447 break;
13448 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
13449 tp->rxptpctl = TG3_RX_PTP_CTL_RX_PTP_V2_L4_EN |
13450 TG3_RX_PTP_CTL_DELAY_REQ;
13451 break;
13452 default:
13453 return -ERANGE;
13454 }
13455
13456 if (netif_running(dev) && tp->rxptpctl)
13457 tw32(TG3_RX_PTP_CTL,
13458 tp->rxptpctl | TG3_RX_PTP_CTL_HWTS_INTERLOCK);
13459
13460 return copy_to_user(ifr->ifr_data, &stmpconf, sizeof(stmpconf)) ?
13461 -EFAULT : 0;
13462}
13463
Linus Torvalds1da177e2005-04-16 15:20:36 -070013464static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
13465{
13466 struct mii_ioctl_data *data = if_mii(ifr);
13467 struct tg3 *tp = netdev_priv(dev);
13468 int err;
13469
Joe Perches63c3a662011-04-26 08:12:10 +000013470 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013471 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013472 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013473 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000013474 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000013475 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013476 }
13477
Matt Carlson33f401a2010-04-05 10:19:27 +000013478 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013479 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000013480 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013481
13482 /* fallthru */
13483 case SIOCGMIIREG: {
13484 u32 mii_regval;
13485
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013486 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013487 break; /* We have no PHY */
13488
Matt Carlson34eea5a2011-04-20 07:57:38 +000013489 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013490 return -EAGAIN;
13491
David S. Millerf47c11e2005-06-24 20:18:35 -070013492 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013493 err = __tg3_readphy(tp, data->phy_id & 0x1f,
13494 data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070013495 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013496
13497 data->val_out = mii_regval;
13498
13499 return err;
13500 }
13501
13502 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013503 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013504 break; /* We have no PHY */
13505
Matt Carlson34eea5a2011-04-20 07:57:38 +000013506 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080013507 return -EAGAIN;
13508
David S. Millerf47c11e2005-06-24 20:18:35 -070013509 spin_lock_bh(&tp->lock);
Hauke Mehrtens5c358042013-02-07 05:37:38 +000013510 err = __tg3_writephy(tp, data->phy_id & 0x1f,
13511 data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070013512 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013513
13514 return err;
13515
Matt Carlson0a633ac2012-12-03 19:36:59 +000013516 case SIOCSHWTSTAMP:
13517 return tg3_hwtstamp_ioctl(dev, ifr, cmd);
13518
Linus Torvalds1da177e2005-04-16 15:20:36 -070013519 default:
13520 /* do nothing */
13521 break;
13522 }
13523 return -EOPNOTSUPP;
13524}
13525
David S. Miller15f98502005-05-18 22:49:26 -070013526static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13527{
13528 struct tg3 *tp = netdev_priv(dev);
13529
13530 memcpy(ec, &tp->coal, sizeof(*ec));
13531 return 0;
13532}
13533
Michael Chand244c892005-07-05 14:42:33 -070013534static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
13535{
13536 struct tg3 *tp = netdev_priv(dev);
13537 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
13538 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
13539
Joe Perches63c3a662011-04-26 08:12:10 +000013540 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070013541 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
13542 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
13543 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
13544 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
13545 }
13546
13547 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
13548 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
13549 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
13550 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
13551 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
13552 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
13553 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
13554 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
13555 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
13556 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
13557 return -EINVAL;
13558
13559 /* No rx interrupts will be generated if both are zero */
13560 if ((ec->rx_coalesce_usecs == 0) &&
13561 (ec->rx_max_coalesced_frames == 0))
13562 return -EINVAL;
13563
13564 /* No tx interrupts will be generated if both are zero */
13565 if ((ec->tx_coalesce_usecs == 0) &&
13566 (ec->tx_max_coalesced_frames == 0))
13567 return -EINVAL;
13568
13569 /* Only copy relevant parameters, ignore all others. */
13570 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
13571 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
13572 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
13573 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
13574 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
13575 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
13576 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
13577 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
13578 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
13579
13580 if (netif_running(dev)) {
13581 tg3_full_lock(tp, 0);
13582 __tg3_set_coalesce(tp, &tp->coal);
13583 tg3_full_unlock(tp);
13584 }
13585 return 0;
13586}
13587
Jeff Garzik7282d492006-09-13 14:30:00 -040013588static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013589 .get_settings = tg3_get_settings,
13590 .set_settings = tg3_set_settings,
13591 .get_drvinfo = tg3_get_drvinfo,
13592 .get_regs_len = tg3_get_regs_len,
13593 .get_regs = tg3_get_regs,
13594 .get_wol = tg3_get_wol,
13595 .set_wol = tg3_set_wol,
13596 .get_msglevel = tg3_get_msglevel,
13597 .set_msglevel = tg3_set_msglevel,
13598 .nway_reset = tg3_nway_reset,
13599 .get_link = ethtool_op_get_link,
13600 .get_eeprom_len = tg3_get_eeprom_len,
13601 .get_eeprom = tg3_get_eeprom,
13602 .set_eeprom = tg3_set_eeprom,
13603 .get_ringparam = tg3_get_ringparam,
13604 .set_ringparam = tg3_set_ringparam,
13605 .get_pauseparam = tg3_get_pauseparam,
13606 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070013607 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013608 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000013609 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013610 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070013611 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070013612 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070013613 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000013614 .get_rxnfc = tg3_get_rxnfc,
13615 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
13616 .get_rxfh_indir = tg3_get_rxfh_indir,
13617 .set_rxfh_indir = tg3_set_rxfh_indir,
Michael Chan09681692012-09-28 07:12:42 +000013618 .get_channels = tg3_get_channels,
13619 .set_channels = tg3_set_channels,
Matt Carlson7d41e492012-12-03 19:36:58 +000013620 .get_ts_info = tg3_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013621};
13622
David S. Millerb4017c52012-03-01 17:57:40 -050013623static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
13624 struct rtnl_link_stats64 *stats)
13625{
13626 struct tg3 *tp = netdev_priv(dev);
13627
David S. Millerb4017c52012-03-01 17:57:40 -050013628 spin_lock_bh(&tp->lock);
Michael Chan0f566b22012-07-29 19:15:44 +000013629 if (!tp->hw_stats) {
13630 spin_unlock_bh(&tp->lock);
13631 return &tp->net_stats_prev;
13632 }
13633
David S. Millerb4017c52012-03-01 17:57:40 -050013634 tg3_get_nstats(tp, stats);
13635 spin_unlock_bh(&tp->lock);
13636
13637 return stats;
13638}
13639
Matt Carlsonccd5ba92012-02-13 10:20:08 +000013640static void tg3_set_rx_mode(struct net_device *dev)
13641{
13642 struct tg3 *tp = netdev_priv(dev);
13643
13644 if (!netif_running(dev))
13645 return;
13646
13647 tg3_full_lock(tp, 0);
13648 __tg3_set_rx_mode(dev);
13649 tg3_full_unlock(tp);
13650}
13651
Matt Carlsonfaf16272012-02-13 10:20:07 +000013652static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
13653 int new_mtu)
13654{
13655 dev->mtu = new_mtu;
13656
13657 if (new_mtu > ETH_DATA_LEN) {
13658 if (tg3_flag(tp, 5780_CLASS)) {
13659 netdev_update_features(dev);
13660 tg3_flag_clear(tp, TSO_CAPABLE);
13661 } else {
13662 tg3_flag_set(tp, JUMBO_RING_ENABLE);
13663 }
13664 } else {
13665 if (tg3_flag(tp, 5780_CLASS)) {
13666 tg3_flag_set(tp, TSO_CAPABLE);
13667 netdev_update_features(dev);
13668 }
13669 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
13670 }
13671}
13672
13673static int tg3_change_mtu(struct net_device *dev, int new_mtu)
13674{
13675 struct tg3 *tp = netdev_priv(dev);
Joe Perches953c96e2013-04-09 10:18:14 +000013676 int err;
13677 bool reset_phy = false;
Matt Carlsonfaf16272012-02-13 10:20:07 +000013678
13679 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
13680 return -EINVAL;
13681
13682 if (!netif_running(dev)) {
13683 /* We'll just catch it later when the
13684 * device is up'd.
13685 */
13686 tg3_set_mtu(dev, tp, new_mtu);
13687 return 0;
13688 }
13689
13690 tg3_phy_stop(tp);
13691
13692 tg3_netif_stop(tp);
13693
13694 tg3_full_lock(tp, 1);
13695
13696 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
13697
13698 tg3_set_mtu(dev, tp, new_mtu);
13699
Michael Chan2fae5e32012-03-04 14:48:15 +000013700 /* Reset PHY, otherwise the read DMA engine will be in a mode that
13701 * breaks all requests to 256 bytes.
13702 */
Joe Perches41535772013-02-16 11:20:04 +000013703 if (tg3_asic_rev(tp) == ASIC_REV_57766)
Joe Perches953c96e2013-04-09 10:18:14 +000013704 reset_phy = true;
Michael Chan2fae5e32012-03-04 14:48:15 +000013705
13706 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000013707
13708 if (!err)
13709 tg3_netif_start(tp);
13710
13711 tg3_full_unlock(tp);
13712
13713 if (!err)
13714 tg3_phy_start(tp);
13715
13716 return err;
13717}
13718
13719static const struct net_device_ops tg3_netdev_ops = {
13720 .ndo_open = tg3_open,
13721 .ndo_stop = tg3_close,
13722 .ndo_start_xmit = tg3_start_xmit,
13723 .ndo_get_stats64 = tg3_get_stats64,
13724 .ndo_validate_addr = eth_validate_addr,
13725 .ndo_set_rx_mode = tg3_set_rx_mode,
13726 .ndo_set_mac_address = tg3_set_mac_addr,
13727 .ndo_do_ioctl = tg3_ioctl,
13728 .ndo_tx_timeout = tg3_tx_timeout,
13729 .ndo_change_mtu = tg3_change_mtu,
13730 .ndo_fix_features = tg3_fix_features,
13731 .ndo_set_features = tg3_set_features,
13732#ifdef CONFIG_NET_POLL_CONTROLLER
13733 .ndo_poll_controller = tg3_poll_controller,
13734#endif
13735};
13736
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013737static void tg3_get_eeprom_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013738{
Michael Chan1b277772006-03-20 22:27:48 -080013739 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013740
13741 tp->nvram_size = EEPROM_CHIP_SIZE;
13742
Matt Carlsone4f34112009-02-25 14:25:00 +000013743 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013744 return;
13745
Michael Chanb16250e2006-09-27 16:10:14 -070013746 if ((magic != TG3_EEPROM_MAGIC) &&
13747 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
13748 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013749 return;
13750
13751 /*
13752 * Size the chip by reading offsets at increasing powers of two.
13753 * When we encounter our validation signature, we know the addressing
13754 * has wrapped around, and thus have our chip size.
13755 */
Michael Chan1b277772006-03-20 22:27:48 -080013756 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013757
13758 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013759 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013760 return;
13761
Michael Chan18201802006-03-20 22:29:15 -080013762 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013763 break;
13764
13765 cursize <<= 1;
13766 }
13767
13768 tp->nvram_size = cursize;
13769}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013770
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013771static void tg3_get_nvram_size(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013772{
13773 u32 val;
13774
Joe Perches63c3a662011-04-26 08:12:10 +000013775 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080013776 return;
13777
13778 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080013779 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080013780 tg3_get_eeprom_size(tp);
13781 return;
13782 }
13783
Matt Carlson6d348f22009-02-25 14:25:52 +000013784 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013785 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000013786 /* This is confusing. We want to operate on the
13787 * 16-bit value at offset 0xf2. The tg3_nvram_read()
13788 * call will read from NVRAM and byteswap the data
13789 * according to the byteswapping settings for all
13790 * other register accesses. This ensures the data we
13791 * want will always reside in the lower 16-bits.
13792 * However, the data in NVRAM is in LE format, which
13793 * means the data from the NVRAM read will always be
13794 * opposite the endianness of the CPU. The 16-bit
13795 * byteswap then brings the data to CPU endianness.
13796 */
13797 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013798 return;
13799 }
13800 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070013801 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013802}
13803
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013804static void tg3_get_nvram_info(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013805{
13806 u32 nvcfg1;
13807
13808 nvcfg1 = tr32(NVRAM_CFG1);
13809 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000013810 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013811 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013812 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13813 tw32(NVRAM_CFG1, nvcfg1);
13814 }
13815
Joe Perches41535772013-02-16 11:20:04 +000013816 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013817 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013818 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013819 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
13820 tp->nvram_jedecnum = JEDEC_ATMEL;
13821 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013822 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013823 break;
13824 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
13825 tp->nvram_jedecnum = JEDEC_ATMEL;
13826 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
13827 break;
13828 case FLASH_VENDOR_ATMEL_EEPROM:
13829 tp->nvram_jedecnum = JEDEC_ATMEL;
13830 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013831 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013832 break;
13833 case FLASH_VENDOR_ST:
13834 tp->nvram_jedecnum = JEDEC_ST;
13835 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013836 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013837 break;
13838 case FLASH_VENDOR_SAIFUN:
13839 tp->nvram_jedecnum = JEDEC_SAIFUN;
13840 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
13841 break;
13842 case FLASH_VENDOR_SST_SMALL:
13843 case FLASH_VENDOR_SST_LARGE:
13844 tp->nvram_jedecnum = JEDEC_SST;
13845 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
13846 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013847 }
Matt Carlson8590a602009-08-28 12:29:16 +000013848 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013849 tp->nvram_jedecnum = JEDEC_ATMEL;
13850 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000013851 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013852 }
13853}
13854
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013855static void tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013856{
13857 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
13858 case FLASH_5752PAGE_SIZE_256:
13859 tp->nvram_pagesize = 256;
13860 break;
13861 case FLASH_5752PAGE_SIZE_512:
13862 tp->nvram_pagesize = 512;
13863 break;
13864 case FLASH_5752PAGE_SIZE_1K:
13865 tp->nvram_pagesize = 1024;
13866 break;
13867 case FLASH_5752PAGE_SIZE_2K:
13868 tp->nvram_pagesize = 2048;
13869 break;
13870 case FLASH_5752PAGE_SIZE_4K:
13871 tp->nvram_pagesize = 4096;
13872 break;
13873 case FLASH_5752PAGE_SIZE_264:
13874 tp->nvram_pagesize = 264;
13875 break;
13876 case FLASH_5752PAGE_SIZE_528:
13877 tp->nvram_pagesize = 528;
13878 break;
13879 }
13880}
13881
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013882static void tg3_get_5752_nvram_info(struct tg3 *tp)
Michael Chan361b4ac2005-04-21 17:11:21 -070013883{
13884 u32 nvcfg1;
13885
13886 nvcfg1 = tr32(NVRAM_CFG1);
13887
Michael Chane6af3012005-04-21 17:12:05 -070013888 /* NVRAM protection for TPM */
13889 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000013890 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070013891
Michael Chan361b4ac2005-04-21 17:11:21 -070013892 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013893 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
13894 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
13895 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013896 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013897 break;
13898 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13899 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013900 tg3_flag_set(tp, NVRAM_BUFFERED);
13901 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013902 break;
13903 case FLASH_5752VENDOR_ST_M45PE10:
13904 case FLASH_5752VENDOR_ST_M45PE20:
13905 case FLASH_5752VENDOR_ST_M45PE40:
13906 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013907 tg3_flag_set(tp, NVRAM_BUFFERED);
13908 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013909 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070013910 }
13911
Joe Perches63c3a662011-04-26 08:12:10 +000013912 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000013913 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000013914 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070013915 /* For eeprom, set pagesize to maximum eeprom size */
13916 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
13917
13918 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13919 tw32(NVRAM_CFG1, nvcfg1);
13920 }
13921}
13922
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013923static void tg3_get_5755_nvram_info(struct tg3 *tp)
Michael Chand3c7b882006-03-23 01:28:25 -080013924{
Matt Carlson989a9d22007-05-05 11:51:05 -070013925 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080013926
13927 nvcfg1 = tr32(NVRAM_CFG1);
13928
13929 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070013930 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013931 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070013932 protect = 1;
13933 }
Michael Chand3c7b882006-03-23 01:28:25 -080013934
Matt Carlson989a9d22007-05-05 11:51:05 -070013935 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
13936 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000013937 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13938 case FLASH_5755VENDOR_ATMEL_FLASH_2:
13939 case FLASH_5755VENDOR_ATMEL_FLASH_3:
13940 case FLASH_5755VENDOR_ATMEL_FLASH_5:
13941 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013942 tg3_flag_set(tp, NVRAM_BUFFERED);
13943 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013944 tp->nvram_pagesize = 264;
13945 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
13946 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
13947 tp->nvram_size = (protect ? 0x3e200 :
13948 TG3_NVRAM_SIZE_512KB);
13949 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
13950 tp->nvram_size = (protect ? 0x1f200 :
13951 TG3_NVRAM_SIZE_256KB);
13952 else
13953 tp->nvram_size = (protect ? 0x1f200 :
13954 TG3_NVRAM_SIZE_128KB);
13955 break;
13956 case FLASH_5752VENDOR_ST_M45PE10:
13957 case FLASH_5752VENDOR_ST_M45PE20:
13958 case FLASH_5752VENDOR_ST_M45PE40:
13959 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000013960 tg3_flag_set(tp, NVRAM_BUFFERED);
13961 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000013962 tp->nvram_pagesize = 256;
13963 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
13964 tp->nvram_size = (protect ?
13965 TG3_NVRAM_SIZE_64KB :
13966 TG3_NVRAM_SIZE_128KB);
13967 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
13968 tp->nvram_size = (protect ?
13969 TG3_NVRAM_SIZE_64KB :
13970 TG3_NVRAM_SIZE_256KB);
13971 else
13972 tp->nvram_size = (protect ?
13973 TG3_NVRAM_SIZE_128KB :
13974 TG3_NVRAM_SIZE_512KB);
13975 break;
Michael Chand3c7b882006-03-23 01:28:25 -080013976 }
13977}
13978
Bill Pemberton229b1ad2012-12-03 09:22:59 -050013979static void tg3_get_5787_nvram_info(struct tg3 *tp)
Michael Chan1b277772006-03-20 22:27:48 -080013980{
13981 u32 nvcfg1;
13982
13983 nvcfg1 = tr32(NVRAM_CFG1);
13984
13985 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000013986 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
13987 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
13988 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
13989 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
13990 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013991 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000013992 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080013993
Matt Carlson8590a602009-08-28 12:29:16 +000013994 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
13995 tw32(NVRAM_CFG1, nvcfg1);
13996 break;
13997 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
13998 case FLASH_5755VENDOR_ATMEL_FLASH_1:
13999 case FLASH_5755VENDOR_ATMEL_FLASH_2:
14000 case FLASH_5755VENDOR_ATMEL_FLASH_3:
14001 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014002 tg3_flag_set(tp, NVRAM_BUFFERED);
14003 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014004 tp->nvram_pagesize = 264;
14005 break;
14006 case FLASH_5752VENDOR_ST_M45PE10:
14007 case FLASH_5752VENDOR_ST_M45PE20:
14008 case FLASH_5752VENDOR_ST_M45PE40:
14009 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014010 tg3_flag_set(tp, NVRAM_BUFFERED);
14011 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014012 tp->nvram_pagesize = 256;
14013 break;
Michael Chan1b277772006-03-20 22:27:48 -080014014 }
14015}
14016
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014017static void tg3_get_5761_nvram_info(struct tg3 *tp)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014018{
14019 u32 nvcfg1, protect = 0;
14020
14021 nvcfg1 = tr32(NVRAM_CFG1);
14022
14023 /* NVRAM protection for TPM */
14024 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014025 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070014026 protect = 1;
14027 }
14028
14029 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
14030 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014031 case FLASH_5761VENDOR_ATMEL_ADB021D:
14032 case FLASH_5761VENDOR_ATMEL_ADB041D:
14033 case FLASH_5761VENDOR_ATMEL_ADB081D:
14034 case FLASH_5761VENDOR_ATMEL_ADB161D:
14035 case FLASH_5761VENDOR_ATMEL_MDB021D:
14036 case FLASH_5761VENDOR_ATMEL_MDB041D:
14037 case FLASH_5761VENDOR_ATMEL_MDB081D:
14038 case FLASH_5761VENDOR_ATMEL_MDB161D:
14039 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014040 tg3_flag_set(tp, NVRAM_BUFFERED);
14041 tg3_flag_set(tp, FLASH);
14042 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000014043 tp->nvram_pagesize = 256;
14044 break;
14045 case FLASH_5761VENDOR_ST_A_M45PE20:
14046 case FLASH_5761VENDOR_ST_A_M45PE40:
14047 case FLASH_5761VENDOR_ST_A_M45PE80:
14048 case FLASH_5761VENDOR_ST_A_M45PE16:
14049 case FLASH_5761VENDOR_ST_M_M45PE20:
14050 case FLASH_5761VENDOR_ST_M_M45PE40:
14051 case FLASH_5761VENDOR_ST_M_M45PE80:
14052 case FLASH_5761VENDOR_ST_M_M45PE16:
14053 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014054 tg3_flag_set(tp, NVRAM_BUFFERED);
14055 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000014056 tp->nvram_pagesize = 256;
14057 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014058 }
14059
14060 if (protect) {
14061 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
14062 } else {
14063 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000014064 case FLASH_5761VENDOR_ATMEL_ADB161D:
14065 case FLASH_5761VENDOR_ATMEL_MDB161D:
14066 case FLASH_5761VENDOR_ST_A_M45PE16:
14067 case FLASH_5761VENDOR_ST_M_M45PE16:
14068 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
14069 break;
14070 case FLASH_5761VENDOR_ATMEL_ADB081D:
14071 case FLASH_5761VENDOR_ATMEL_MDB081D:
14072 case FLASH_5761VENDOR_ST_A_M45PE80:
14073 case FLASH_5761VENDOR_ST_M_M45PE80:
14074 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14075 break;
14076 case FLASH_5761VENDOR_ATMEL_ADB041D:
14077 case FLASH_5761VENDOR_ATMEL_MDB041D:
14078 case FLASH_5761VENDOR_ST_A_M45PE40:
14079 case FLASH_5761VENDOR_ST_M_M45PE40:
14080 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14081 break;
14082 case FLASH_5761VENDOR_ATMEL_ADB021D:
14083 case FLASH_5761VENDOR_ATMEL_MDB021D:
14084 case FLASH_5761VENDOR_ST_A_M45PE20:
14085 case FLASH_5761VENDOR_ST_M_M45PE20:
14086 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14087 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070014088 }
14089 }
14090}
14091
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014092static void tg3_get_5906_nvram_info(struct tg3 *tp)
Michael Chanb5d37722006-09-27 16:06:21 -070014093{
14094 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014095 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070014096 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14097}
14098
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014099static void tg3_get_57780_nvram_info(struct tg3 *tp)
Matt Carlson321d32a2008-11-21 17:22:19 -080014100{
14101 u32 nvcfg1;
14102
14103 nvcfg1 = tr32(NVRAM_CFG1);
14104
14105 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14106 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
14107 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
14108 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014109 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080014110 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14111
14112 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14113 tw32(NVRAM_CFG1, nvcfg1);
14114 return;
14115 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14116 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14117 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14118 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14119 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14120 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14121 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14122 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014123 tg3_flag_set(tp, NVRAM_BUFFERED);
14124 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014125
14126 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14127 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
14128 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
14129 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
14130 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14131 break;
14132 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
14133 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
14134 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14135 break;
14136 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
14137 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
14138 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14139 break;
14140 }
14141 break;
14142 case FLASH_5752VENDOR_ST_M45PE10:
14143 case FLASH_5752VENDOR_ST_M45PE20:
14144 case FLASH_5752VENDOR_ST_M45PE40:
14145 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014146 tg3_flag_set(tp, NVRAM_BUFFERED);
14147 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080014148
14149 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14150 case FLASH_5752VENDOR_ST_M45PE10:
14151 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14152 break;
14153 case FLASH_5752VENDOR_ST_M45PE20:
14154 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14155 break;
14156 case FLASH_5752VENDOR_ST_M45PE40:
14157 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14158 break;
14159 }
14160 break;
14161 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014162 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080014163 return;
14164 }
14165
Matt Carlsona1b950d2009-09-01 13:20:17 +000014166 tg3_nvram_get_pagesize(tp, nvcfg1);
14167 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014168 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014169}
14170
14171
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014172static void tg3_get_5717_nvram_info(struct tg3 *tp)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014173{
14174 u32 nvcfg1;
14175
14176 nvcfg1 = tr32(NVRAM_CFG1);
14177
14178 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14179 case FLASH_5717VENDOR_ATMEL_EEPROM:
14180 case FLASH_5717VENDOR_MICRO_EEPROM:
14181 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014182 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014183 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14184
14185 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14186 tw32(NVRAM_CFG1, nvcfg1);
14187 return;
14188 case FLASH_5717VENDOR_ATMEL_MDB011D:
14189 case FLASH_5717VENDOR_ATMEL_ADB011B:
14190 case FLASH_5717VENDOR_ATMEL_ADB011D:
14191 case FLASH_5717VENDOR_ATMEL_MDB021D:
14192 case FLASH_5717VENDOR_ATMEL_ADB021B:
14193 case FLASH_5717VENDOR_ATMEL_ADB021D:
14194 case FLASH_5717VENDOR_ATMEL_45USPT:
14195 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014196 tg3_flag_set(tp, NVRAM_BUFFERED);
14197 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014198
14199 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14200 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014201 /* Detect size with tg3_nvram_get_size() */
14202 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014203 case FLASH_5717VENDOR_ATMEL_ADB021B:
14204 case FLASH_5717VENDOR_ATMEL_ADB021D:
14205 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14206 break;
14207 default:
14208 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14209 break;
14210 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014211 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014212 case FLASH_5717VENDOR_ST_M_M25PE10:
14213 case FLASH_5717VENDOR_ST_A_M25PE10:
14214 case FLASH_5717VENDOR_ST_M_M45PE10:
14215 case FLASH_5717VENDOR_ST_A_M45PE10:
14216 case FLASH_5717VENDOR_ST_M_M25PE20:
14217 case FLASH_5717VENDOR_ST_A_M25PE20:
14218 case FLASH_5717VENDOR_ST_M_M45PE20:
14219 case FLASH_5717VENDOR_ST_A_M45PE20:
14220 case FLASH_5717VENDOR_ST_25USPT:
14221 case FLASH_5717VENDOR_ST_45USPT:
14222 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014223 tg3_flag_set(tp, NVRAM_BUFFERED);
14224 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014225
14226 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
14227 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014228 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000014229 /* Detect size with tg3_nvram_get_size() */
14230 break;
14231 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000014232 case FLASH_5717VENDOR_ST_A_M45PE20:
14233 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14234 break;
14235 default:
14236 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
14237 break;
14238 }
Matt Carlson321d32a2008-11-21 17:22:19 -080014239 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014240 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014241 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000014242 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080014243 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000014244
14245 tg3_nvram_get_pagesize(tp, nvcfg1);
14246 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014247 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080014248}
14249
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014250static void tg3_get_5720_nvram_info(struct tg3 *tp)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014251{
14252 u32 nvcfg1, nvmpinstrp;
14253
14254 nvcfg1 = tr32(NVRAM_CFG1);
14255 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
14256
Joe Perches41535772013-02-16 11:20:04 +000014257 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014258 if (!(nvcfg1 & NVRAM_CFG1_5762VENDOR_MASK)) {
14259 tg3_flag_set(tp, NO_NVRAM);
14260 return;
14261 }
14262
14263 switch (nvmpinstrp) {
14264 case FLASH_5762_EEPROM_HD:
14265 nvmpinstrp = FLASH_5720_EEPROM_HD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014266 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014267 case FLASH_5762_EEPROM_LD:
14268 nvmpinstrp = FLASH_5720_EEPROM_LD;
Dan Carpenter17e1a422013-01-11 09:57:33 +030014269 break;
Michael Chanf6334bb2013-04-09 08:48:02 +000014270 case FLASH_5720VENDOR_M_ST_M45PE20:
14271 /* This pinstrap supports multiple sizes, so force it
14272 * to read the actual size from location 0xf0.
14273 */
14274 nvmpinstrp = FLASH_5720VENDOR_ST_45USPT;
14275 break;
Michael Chanc86a8562013-01-06 12:51:08 +000014276 }
14277 }
14278
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014279 switch (nvmpinstrp) {
14280 case FLASH_5720_EEPROM_HD:
14281 case FLASH_5720_EEPROM_LD:
14282 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014283 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014284
14285 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
14286 tw32(NVRAM_CFG1, nvcfg1);
14287 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
14288 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
14289 else
14290 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
14291 return;
14292 case FLASH_5720VENDOR_M_ATMEL_DB011D:
14293 case FLASH_5720VENDOR_A_ATMEL_DB011B:
14294 case FLASH_5720VENDOR_A_ATMEL_DB011D:
14295 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14296 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14297 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14298 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14299 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14300 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14301 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14302 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14303 case FLASH_5720VENDOR_ATMEL_45USPT:
14304 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014305 tg3_flag_set(tp, NVRAM_BUFFERED);
14306 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014307
14308 switch (nvmpinstrp) {
14309 case FLASH_5720VENDOR_M_ATMEL_DB021D:
14310 case FLASH_5720VENDOR_A_ATMEL_DB021B:
14311 case FLASH_5720VENDOR_A_ATMEL_DB021D:
14312 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14313 break;
14314 case FLASH_5720VENDOR_M_ATMEL_DB041D:
14315 case FLASH_5720VENDOR_A_ATMEL_DB041B:
14316 case FLASH_5720VENDOR_A_ATMEL_DB041D:
14317 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14318 break;
14319 case FLASH_5720VENDOR_M_ATMEL_DB081D:
14320 case FLASH_5720VENDOR_A_ATMEL_DB081D:
14321 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14322 break;
14323 default:
Joe Perches41535772013-02-16 11:20:04 +000014324 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014325 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014326 break;
14327 }
14328 break;
14329 case FLASH_5720VENDOR_M_ST_M25PE10:
14330 case FLASH_5720VENDOR_M_ST_M45PE10:
14331 case FLASH_5720VENDOR_A_ST_M25PE10:
14332 case FLASH_5720VENDOR_A_ST_M45PE10:
14333 case FLASH_5720VENDOR_M_ST_M25PE20:
14334 case FLASH_5720VENDOR_M_ST_M45PE20:
14335 case FLASH_5720VENDOR_A_ST_M25PE20:
14336 case FLASH_5720VENDOR_A_ST_M45PE20:
14337 case FLASH_5720VENDOR_M_ST_M25PE40:
14338 case FLASH_5720VENDOR_M_ST_M45PE40:
14339 case FLASH_5720VENDOR_A_ST_M25PE40:
14340 case FLASH_5720VENDOR_A_ST_M45PE40:
14341 case FLASH_5720VENDOR_M_ST_M25PE80:
14342 case FLASH_5720VENDOR_M_ST_M45PE80:
14343 case FLASH_5720VENDOR_A_ST_M25PE80:
14344 case FLASH_5720VENDOR_A_ST_M45PE80:
14345 case FLASH_5720VENDOR_ST_25USPT:
14346 case FLASH_5720VENDOR_ST_45USPT:
14347 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000014348 tg3_flag_set(tp, NVRAM_BUFFERED);
14349 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014350
14351 switch (nvmpinstrp) {
14352 case FLASH_5720VENDOR_M_ST_M25PE20:
14353 case FLASH_5720VENDOR_M_ST_M45PE20:
14354 case FLASH_5720VENDOR_A_ST_M25PE20:
14355 case FLASH_5720VENDOR_A_ST_M45PE20:
14356 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
14357 break;
14358 case FLASH_5720VENDOR_M_ST_M25PE40:
14359 case FLASH_5720VENDOR_M_ST_M45PE40:
14360 case FLASH_5720VENDOR_A_ST_M25PE40:
14361 case FLASH_5720VENDOR_A_ST_M45PE40:
14362 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
14363 break;
14364 case FLASH_5720VENDOR_M_ST_M25PE80:
14365 case FLASH_5720VENDOR_M_ST_M45PE80:
14366 case FLASH_5720VENDOR_A_ST_M25PE80:
14367 case FLASH_5720VENDOR_A_ST_M45PE80:
14368 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
14369 break;
14370 default:
Joe Perches41535772013-02-16 11:20:04 +000014371 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc5d0b722013-02-14 12:13:40 +000014372 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014373 break;
14374 }
14375 break;
14376 default:
Joe Perches63c3a662011-04-26 08:12:10 +000014377 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014378 return;
14379 }
14380
14381 tg3_nvram_get_pagesize(tp, nvcfg1);
14382 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000014383 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Michael Chanc86a8562013-01-06 12:51:08 +000014384
Joe Perches41535772013-02-16 11:20:04 +000014385 if (tg3_asic_rev(tp) == ASIC_REV_5762) {
Michael Chanc86a8562013-01-06 12:51:08 +000014386 u32 val;
14387
14388 if (tg3_nvram_read(tp, 0, &val))
14389 return;
14390
14391 if (val != TG3_EEPROM_MAGIC &&
14392 (val & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW)
14393 tg3_flag_set(tp, NO_NVRAM);
14394 }
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014395}
14396
Linus Torvalds1da177e2005-04-16 15:20:36 -070014397/* Chips other than 5700/5701 use the NVRAM for fetching info. */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014398static void tg3_nvram_init(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014399{
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014400 if (tg3_flag(tp, IS_SSB_CORE)) {
14401 /* No NVRAM and EEPROM on the SSB Broadcom GigE core. */
14402 tg3_flag_clear(tp, NVRAM);
14403 tg3_flag_clear(tp, NVRAM_BUFFERED);
14404 tg3_flag_set(tp, NO_NVRAM);
14405 return;
14406 }
14407
Linus Torvalds1da177e2005-04-16 15:20:36 -070014408 tw32_f(GRC_EEPROM_ADDR,
14409 (EEPROM_ADDR_FSM_RESET |
14410 (EEPROM_DEFAULT_CLOCK_PERIOD <<
14411 EEPROM_ADDR_CLKPERD_SHIFT)));
14412
Michael Chan9d57f012006-12-07 00:23:25 -080014413 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014414
14415 /* Enable seeprom accesses. */
14416 tw32_f(GRC_LOCAL_CTRL,
14417 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
14418 udelay(100);
14419
Joe Perches41535772013-02-16 11:20:04 +000014420 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14421 tg3_asic_rev(tp) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000014422 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014423
Michael Chanec41c7d2006-01-17 02:40:55 -080014424 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014425 netdev_warn(tp->dev,
14426 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000014427 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080014428 return;
14429 }
Michael Chane6af3012005-04-21 17:12:05 -070014430 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014431
Matt Carlson989a9d22007-05-05 11:51:05 -070014432 tp->nvram_size = 0;
14433
Joe Perches41535772013-02-16 11:20:04 +000014434 if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan361b4ac2005-04-21 17:11:21 -070014435 tg3_get_5752_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014436 else if (tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chand3c7b882006-03-23 01:28:25 -080014437 tg3_get_5755_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014438 else if (tg3_asic_rev(tp) == ASIC_REV_5787 ||
14439 tg3_asic_rev(tp) == ASIC_REV_5784 ||
14440 tg3_asic_rev(tp) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080014441 tg3_get_5787_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014442 else if (tg3_asic_rev(tp) == ASIC_REV_5761)
Matt Carlson6b91fa02007-10-10 18:01:09 -070014443 tg3_get_5761_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014444 else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014445 tg3_get_5906_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014446 else if (tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014447 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080014448 tg3_get_57780_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014449 else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
14450 tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014451 tg3_get_5717_nvram_info(tp);
Joe Perches41535772013-02-16 11:20:04 +000014452 else if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
14453 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson9b91b5f2011-04-05 14:22:47 +000014454 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070014455 else
14456 tg3_get_nvram_info(tp);
14457
Matt Carlson989a9d22007-05-05 11:51:05 -070014458 if (tp->nvram_size == 0)
14459 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014460
Michael Chane6af3012005-04-21 17:12:05 -070014461 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080014462 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014463
14464 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014465 tg3_flag_clear(tp, NVRAM);
14466 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014467
14468 tg3_get_eeprom_size(tp);
14469 }
14470}
14471
Linus Torvalds1da177e2005-04-16 15:20:36 -070014472struct subsys_tbl_ent {
14473 u16 subsys_vendor, subsys_devid;
14474 u32 phy_id;
14475};
14476
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014477static struct subsys_tbl_ent subsys_id_to_phy_id[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014478 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014479 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014480 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014481 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014482 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014483 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014484 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014485 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14486 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
14487 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014488 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014489 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014490 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014491 { TG3PCI_SUBVENDOR_ID_BROADCOM,
14492 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
14493 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014494 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014495 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014496 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014497 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014498 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014499 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014500 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014501
14502 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014503 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014504 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014505 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014506 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014507 { TG3PCI_SUBVENDOR_ID_3COM,
14508 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
14509 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014510 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014511 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000014512 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014513
14514 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014515 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014516 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014517 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014518 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014519 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014520 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014521 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000014522 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014523
14524 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014525 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014526 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014527 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014528 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014529 { TG3PCI_SUBVENDOR_ID_COMPAQ,
14530 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
14531 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014532 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000014533 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000014534 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014535
14536 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014537 { TG3PCI_SUBVENDOR_ID_IBM,
14538 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014539};
14540
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014541static struct subsys_tbl_ent *tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014542{
14543 int i;
14544
14545 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
14546 if ((subsys_id_to_phy_id[i].subsys_vendor ==
14547 tp->pdev->subsystem_vendor) &&
14548 (subsys_id_to_phy_id[i].subsys_devid ==
14549 tp->pdev->subsystem_device))
14550 return &subsys_id_to_phy_id[i];
14551 }
14552 return NULL;
14553}
14554
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014555static void tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014556{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014557 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070014558
Matt Carlson79eb6902010-02-17 15:17:03 +000014559 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014560 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14561
Gary Zambranoa85feb82007-05-05 11:52:19 -070014562 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000014563 tg3_flag_set(tp, EEPROM_WRITE_PROT);
14564 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080014565
Joe Perches41535772013-02-16 11:20:04 +000014566 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080014567 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014568 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14569 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014570 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014571 val = tr32(VCPU_CFGSHDW);
14572 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000014573 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070014574 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014575 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014576 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014577 device_set_wakeup_enable(&tp->pdev->dev, true);
14578 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014579 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070014580 }
14581
Linus Torvalds1da177e2005-04-16 15:20:36 -070014582 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
14583 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
14584 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070014585 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070014586 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014587
14588 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
14589 tp->nic_sram_data_cfg = nic_cfg;
14590
14591 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
14592 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000014593 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
14594 tg3_asic_rev(tp) != ASIC_REV_5701 &&
14595 tg3_asic_rev(tp) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014596 (ver > 0) && (ver < 0x100))
14597 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
14598
Joe Perches41535772013-02-16 11:20:04 +000014599 if (tg3_asic_rev(tp) == ASIC_REV_5785)
Matt Carlsona9daf362008-05-25 23:49:44 -070014600 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
14601
Linus Torvalds1da177e2005-04-16 15:20:36 -070014602 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
14603 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
14604 eeprom_phy_serdes = 1;
14605
14606 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
14607 if (nic_phy_id != 0) {
14608 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
14609 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
14610
14611 eeprom_phy_id = (id1 >> 16) << 10;
14612 eeprom_phy_id |= (id2 & 0xfc00) << 16;
14613 eeprom_phy_id |= (id2 & 0x03ff) << 0;
14614 } else
14615 eeprom_phy_id = 0;
14616
Michael Chan7d0c41e2005-04-21 17:06:20 -070014617 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070014618 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000014619 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014620 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000014621 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014622 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070014623 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070014624
Joe Perches63c3a662011-04-26 08:12:10 +000014625 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014626 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
14627 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070014628 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014629 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
14630
14631 switch (led_cfg) {
14632 default:
14633 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
14634 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14635 break;
14636
14637 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
14638 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14639 break;
14640
14641 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
14642 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070014643
14644 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
14645 * read on some older 5700/5701 bootcode.
14646 */
Joe Perches41535772013-02-16 11:20:04 +000014647 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
14648 tg3_asic_rev(tp) == ASIC_REV_5701)
Michael Chan9ba27792005-06-06 15:16:20 -070014649 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
14650
Linus Torvalds1da177e2005-04-16 15:20:36 -070014651 break;
14652
14653 case SHASTA_EXT_LED_SHARED:
14654 tp->led_ctrl = LED_CTRL_MODE_SHARED;
Joe Perches41535772013-02-16 11:20:04 +000014655 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0 &&
14656 tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014657 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14658 LED_CTRL_MODE_PHY_2);
14659 break;
14660
14661 case SHASTA_EXT_LED_MAC:
14662 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
14663 break;
14664
14665 case SHASTA_EXT_LED_COMBO:
14666 tp->led_ctrl = LED_CTRL_MODE_COMBO;
Joe Perches41535772013-02-16 11:20:04 +000014667 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5750_A0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014668 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
14669 LED_CTRL_MODE_PHY_2);
14670 break;
14671
Stephen Hemminger855e1112008-04-16 16:37:28 -070014672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014673
Joe Perches41535772013-02-16 11:20:04 +000014674 if ((tg3_asic_rev(tp) == ASIC_REV_5700 ||
14675 tg3_asic_rev(tp) == ASIC_REV_5701) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014676 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
14677 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
14678
Joe Perches41535772013-02-16 11:20:04 +000014679 if (tg3_chip_rev(tp) == CHIPREV_5784_AX)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014680 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080014681
Michael Chan9d26e212006-12-07 00:21:14 -080014682 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000014683 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014684 if ((tp->pdev->subsystem_vendor ==
14685 PCI_VENDOR_ID_ARIMA) &&
14686 (tp->pdev->subsystem_device == 0x205a ||
14687 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000014688 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080014689 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014690 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
14691 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080014692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014693
14694 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000014695 tg3_flag_set(tp, ENABLE_ASF);
14696 if (tg3_flag(tp, 5750_PLUS))
14697 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014698 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014699
14700 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014701 tg3_flag(tp, 5750_PLUS))
14702 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080014703
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014704 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070014705 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000014706 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014707
Joe Perches63c3a662011-04-26 08:12:10 +000014708 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014709 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014710 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000014711 device_set_wakeup_enable(&tp->pdev->dev, true);
14712 }
Matt Carlson0527ba32007-10-10 18:03:30 -070014713
Linus Torvalds1da177e2005-04-16 15:20:36 -070014714 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014715 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014716
14717 /* serdes signal pre-emphasis in register 0x590 set by */
14718 /* bootcode if bit 18 is set */
14719 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014720 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014721
Joe Perches63c3a662011-04-26 08:12:10 +000014722 if ((tg3_flag(tp, 57765_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000014723 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
14724 tg3_chip_rev(tp) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080014725 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014726 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080014727
Nithin Sujir942d1af2013-04-09 08:48:07 +000014728 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070014729 u32 cfg3;
14730
14731 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014732 if (tg3_asic_rev(tp) != ASIC_REV_5785 &&
14733 !tg3_flag(tp, 57765_PLUS) &&
14734 (cfg3 & NIC_SRAM_ASPM_DEBOUNCE))
Joe Perches63c3a662011-04-26 08:12:10 +000014735 tg3_flag_set(tp, ASPM_WORKAROUND);
Nithin Sujir942d1af2013-04-09 08:48:07 +000014736 if (cfg3 & NIC_SRAM_LNK_FLAP_AVOID)
14737 tp->phy_flags |= TG3_PHYFLG_KEEP_LINK_ON_PWRDN;
14738 if (cfg3 & NIC_SRAM_1G_ON_VAUX_OK)
14739 tp->phy_flags |= TG3_PHYFLG_1G_ON_VAUX_OK;
Matt Carlson8ed5d972007-05-07 00:25:49 -070014740 }
Matt Carlsona9daf362008-05-25 23:49:44 -070014741
Matt Carlson14417062010-02-17 15:16:59 +000014742 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000014743 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070014744 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014745 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070014746 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000014747 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014748 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080014749done:
Joe Perches63c3a662011-04-26 08:12:10 +000014750 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014751 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000014752 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000014753 else
14754 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070014755}
14756
Michael Chanc86a8562013-01-06 12:51:08 +000014757static int tg3_ape_otp_read(struct tg3 *tp, u32 offset, u32 *val)
14758{
14759 int i, err;
14760 u32 val2, off = offset * 8;
14761
14762 err = tg3_nvram_lock(tp);
14763 if (err)
14764 return err;
14765
14766 tg3_ape_write32(tp, TG3_APE_OTP_ADDR, off | APE_OTP_ADDR_CPU_ENABLE);
14767 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, APE_OTP_CTRL_PROG_EN |
14768 APE_OTP_CTRL_CMD_RD | APE_OTP_CTRL_START);
14769 tg3_ape_read32(tp, TG3_APE_OTP_CTRL);
14770 udelay(10);
14771
14772 for (i = 0; i < 100; i++) {
14773 val2 = tg3_ape_read32(tp, TG3_APE_OTP_STATUS);
14774 if (val2 & APE_OTP_STATUS_CMD_DONE) {
14775 *val = tg3_ape_read32(tp, TG3_APE_OTP_RD_DATA);
14776 break;
14777 }
14778 udelay(10);
14779 }
14780
14781 tg3_ape_write32(tp, TG3_APE_OTP_CTRL, 0);
14782
14783 tg3_nvram_unlock(tp);
14784 if (val2 & APE_OTP_STATUS_CMD_DONE)
14785 return 0;
14786
14787 return -EBUSY;
14788}
14789
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014790static int tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014791{
14792 int i;
14793 u32 val;
14794
14795 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
14796 tw32(OTP_CTRL, cmd);
14797
14798 /* Wait for up to 1 ms for command to execute. */
14799 for (i = 0; i < 100; i++) {
14800 val = tr32(OTP_STATUS);
14801 if (val & OTP_STATUS_CMD_DONE)
14802 break;
14803 udelay(10);
14804 }
14805
14806 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
14807}
14808
14809/* Read the gphy configuration from the OTP region of the chip. The gphy
14810 * configuration is a 32-bit value that straddles the alignment boundary.
14811 * We do two 32-bit reads and then shift and merge the results.
14812 */
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014813static u32 tg3_read_otp_phycfg(struct tg3 *tp)
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014814{
14815 u32 bhalf_otp, thalf_otp;
14816
14817 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
14818
14819 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
14820 return 0;
14821
14822 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
14823
14824 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14825 return 0;
14826
14827 thalf_otp = tr32(OTP_READ_DATA);
14828
14829 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
14830
14831 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
14832 return 0;
14833
14834 bhalf_otp = tr32(OTP_READ_DATA);
14835
14836 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
14837}
14838
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014839static void tg3_phy_init_link_config(struct tg3 *tp)
Matt Carlsone256f8a2011-03-09 16:58:24 +000014840{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000014841 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014842
14843 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
14844 adv |= ADVERTISED_1000baseT_Half |
14845 ADVERTISED_1000baseT_Full;
14846
14847 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14848 adv |= ADVERTISED_100baseT_Half |
14849 ADVERTISED_100baseT_Full |
14850 ADVERTISED_10baseT_Half |
14851 ADVERTISED_10baseT_Full |
14852 ADVERTISED_TP;
14853 else
14854 adv |= ADVERTISED_FIBRE;
14855
14856 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000014857 tp->link_config.speed = SPEED_UNKNOWN;
14858 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014859 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000014860 tp->link_config.active_speed = SPEED_UNKNOWN;
14861 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000014862
14863 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000014864}
14865
Bill Pemberton229b1ad2012-12-03 09:22:59 -050014866static int tg3_phy_probe(struct tg3 *tp)
Michael Chan7d0c41e2005-04-21 17:06:20 -070014867{
14868 u32 hw_phy_id_1, hw_phy_id_2;
14869 u32 hw_phy_id, hw_phy_id_masked;
14870 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014871
Matt Carlsone256f8a2011-03-09 16:58:24 +000014872 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000014873 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000014874 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
14875
Michael Chan8151ad52012-07-29 19:15:41 +000014876 if (tg3_flag(tp, ENABLE_APE)) {
14877 switch (tp->pci_fn) {
14878 case 0:
14879 tp->phy_ape_lock = TG3_APE_LOCK_PHY0;
14880 break;
14881 case 1:
14882 tp->phy_ape_lock = TG3_APE_LOCK_PHY1;
14883 break;
14884 case 2:
14885 tp->phy_ape_lock = TG3_APE_LOCK_PHY2;
14886 break;
14887 case 3:
14888 tp->phy_ape_lock = TG3_APE_LOCK_PHY3;
14889 break;
14890 }
14891 }
14892
Nithin Sujir942d1af2013-04-09 08:48:07 +000014893 if (!tg3_flag(tp, ENABLE_ASF) &&
14894 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
14895 !(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
14896 tp->phy_flags &= ~(TG3_PHYFLG_1G_ON_VAUX_OK |
14897 TG3_PHYFLG_KEEP_LINK_ON_PWRDN);
14898
Joe Perches63c3a662011-04-26 08:12:10 +000014899 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014900 return tg3_phy_init(tp);
14901
Linus Torvalds1da177e2005-04-16 15:20:36 -070014902 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010014903 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014904 */
14905 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000014906 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000014907 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014908 } else {
14909 /* Now read the physical PHY_ID from the chip and verify
14910 * that it is sane. If it doesn't look good, we fall back
14911 * to either the hard-coded table based PHY_ID and failing
14912 * that the value found in the eeprom area.
14913 */
14914 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
14915 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
14916
14917 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
14918 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
14919 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
14920
Matt Carlson79eb6902010-02-17 15:17:03 +000014921 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014922 }
14923
Matt Carlson79eb6902010-02-17 15:17:03 +000014924 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014925 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000014926 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014927 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070014928 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014929 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014930 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000014931 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070014932 /* Do nothing, phy ID already set up in
14933 * tg3_get_eeprom_hw_cfg().
14934 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014935 } else {
14936 struct subsys_tbl_ent *p;
14937
14938 /* No eeprom signature? Try the hardcoded
14939 * subsys device table.
14940 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000014941 p = tg3_lookup_by_subsys(tp);
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014942 if (p) {
14943 tp->phy_id = p->phy_id;
14944 } else if (!tg3_flag(tp, IS_SSB_CORE)) {
14945 /* For now we saw the IDs 0xbc050cd0,
14946 * 0xbc050f80 and 0xbc050c30 on devices
14947 * connected to an BCM4785 and there are
14948 * probably more. Just assume that the phy is
14949 * supported when it is connected to a SSB core
14950 * for now.
14951 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014952 return -ENODEV;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000014953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014954
Linus Torvalds1da177e2005-04-16 15:20:36 -070014955 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000014956 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014957 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014958 }
14959 }
14960
Matt Carlsona6b68da2010-12-06 08:28:52 +000014961 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches41535772013-02-16 11:20:04 +000014962 (tg3_asic_rev(tp) == ASIC_REV_5719 ||
14963 tg3_asic_rev(tp) == ASIC_REV_5720 ||
Nithin Sujirc4dab502013-03-06 17:02:34 +000014964 tg3_asic_rev(tp) == ASIC_REV_57766 ||
Joe Perches41535772013-02-16 11:20:04 +000014965 tg3_asic_rev(tp) == ASIC_REV_5762 ||
14966 (tg3_asic_rev(tp) == ASIC_REV_5717 &&
14967 tg3_chip_rev_id(tp) != CHIPREV_ID_5717_A0) ||
14968 (tg3_asic_rev(tp) == ASIC_REV_57765 &&
14969 tg3_chip_rev_id(tp) != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000014970 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
14971
Matt Carlsone256f8a2011-03-09 16:58:24 +000014972 tg3_phy_init_link_config(tp);
14973
Nithin Sujir942d1af2013-04-09 08:48:07 +000014974 if (!(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN) &&
14975 !(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014976 !tg3_flag(tp, ENABLE_APE) &&
14977 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000014978 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014979
14980 tg3_readphy(tp, MII_BMSR, &bmsr);
14981 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
14982 (bmsr & BMSR_LSTATUS))
14983 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014984
Linus Torvalds1da177e2005-04-16 15:20:36 -070014985 err = tg3_phy_reset(tp);
14986 if (err)
14987 return err;
14988
Matt Carlson42b64a42011-05-19 12:12:49 +000014989 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014990
Matt Carlsone2bf73e2011-12-08 14:40:15 +000014991 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000014992 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
14993 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014994
14995 tg3_writephy(tp, MII_BMCR,
14996 BMCR_ANENABLE | BMCR_ANRESTART);
14997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014998 }
14999
15000skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000015001 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015002 err = tg3_init_5401phy_dsp(tp);
15003 if (err)
15004 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015005
Linus Torvalds1da177e2005-04-16 15:20:36 -070015006 err = tg3_init_5401phy_dsp(tp);
15007 }
15008
Linus Torvalds1da177e2005-04-16 15:20:36 -070015009 return err;
15010}
15011
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015012static void tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015013{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015014 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015015 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000015016 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000015017 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015018
Matt Carlson535a4902011-07-20 10:20:56 +000015019 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015020 if (!vpd_data)
15021 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015022
Matt Carlson535a4902011-07-20 10:20:56 +000015023 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000015024 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015025 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000015026
15027 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
15028 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
15029 i += PCI_VPD_LRDT_TAG_SIZE;
15030
Matt Carlson535a4902011-07-20 10:20:56 +000015031 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015032 goto out_not_found;
15033
Matt Carlson184b8902010-04-05 10:19:25 +000015034 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15035 PCI_VPD_RO_KEYWORD_MFR_ID);
15036 if (j > 0) {
15037 len = pci_vpd_info_field_size(&vpd_data[j]);
15038
15039 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15040 if (j + len > block_end || len != 4 ||
15041 memcmp(&vpd_data[j], "1028", 4))
15042 goto partno;
15043
15044 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15045 PCI_VPD_RO_KEYWORD_VENDOR0);
15046 if (j < 0)
15047 goto partno;
15048
15049 len = pci_vpd_info_field_size(&vpd_data[j]);
15050
15051 j += PCI_VPD_INFO_FLD_HDR_SIZE;
15052 if (j + len > block_end)
15053 goto partno;
15054
Kees Cook715230a2013-03-27 06:40:50 +000015055 if (len >= sizeof(tp->fw_ver))
15056 len = sizeof(tp->fw_ver) - 1;
15057 memset(tp->fw_ver, 0, sizeof(tp->fw_ver));
15058 snprintf(tp->fw_ver, sizeof(tp->fw_ver), "%.*s bc ", len,
15059 &vpd_data[j]);
Matt Carlson184b8902010-04-05 10:19:25 +000015060 }
15061
15062partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000015063 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
15064 PCI_VPD_RO_KEYWORD_PARTNO);
15065 if (i < 0)
15066 goto out_not_found;
15067
15068 len = pci_vpd_info_field_size(&vpd_data[i]);
15069
15070 i += PCI_VPD_INFO_FLD_HDR_SIZE;
15071 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000015072 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000015073 goto out_not_found;
15074
15075 memcpy(tp->board_part_number, &vpd_data[i], len);
15076
Linus Torvalds1da177e2005-04-16 15:20:36 -070015077out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015078 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000015079 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000015080 return;
15081
15082out_no_vpd:
Joe Perches41535772013-02-16 11:20:04 +000015083 if (tg3_asic_rev(tp) == ASIC_REV_5717) {
Michael Chan79d49692012-11-05 14:26:29 +000015084 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15085 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C)
Matt Carlson37a949c2010-09-30 10:34:33 +000015086 strcpy(tp->board_part_number, "BCM5717");
15087 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
15088 strcpy(tp->board_part_number, "BCM5718");
15089 else
15090 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015091 } else if (tg3_asic_rev(tp) == ASIC_REV_57780) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015092 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
15093 strcpy(tp->board_part_number, "BCM57780");
15094 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
15095 strcpy(tp->board_part_number, "BCM57760");
15096 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
15097 strcpy(tp->board_part_number, "BCM57790");
15098 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
15099 strcpy(tp->board_part_number, "BCM57788");
15100 else
15101 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015102 } else if (tg3_asic_rev(tp) == ASIC_REV_57765) {
Matt Carlson37a949c2010-09-30 10:34:33 +000015103 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
15104 strcpy(tp->board_part_number, "BCM57761");
15105 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
15106 strcpy(tp->board_part_number, "BCM57765");
15107 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
15108 strcpy(tp->board_part_number, "BCM57781");
15109 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
15110 strcpy(tp->board_part_number, "BCM57785");
15111 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
15112 strcpy(tp->board_part_number, "BCM57791");
15113 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
15114 strcpy(tp->board_part_number, "BCM57795");
15115 else
15116 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015117 } else if (tg3_asic_rev(tp) == ASIC_REV_57766) {
Matt Carlson55086ad2011-12-14 11:09:59 +000015118 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
15119 strcpy(tp->board_part_number, "BCM57762");
15120 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
15121 strcpy(tp->board_part_number, "BCM57766");
15122 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
15123 strcpy(tp->board_part_number, "BCM57782");
15124 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15125 strcpy(tp->board_part_number, "BCM57786");
15126 else
15127 goto nomatch;
Joe Perches41535772013-02-16 11:20:04 +000015128 } else if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015129 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000015130 } else {
15131nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070015132 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000015133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015134}
15135
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015136static int tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
Matt Carlson9c8a6202007-10-21 16:16:08 -070015137{
15138 u32 val;
15139
Matt Carlsone4f34112009-02-25 14:25:00 +000015140 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015141 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015142 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015143 val != 0)
15144 return 0;
15145
15146 return 1;
15147}
15148
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015149static void tg3_read_bc_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015150{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015151 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000015152 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015153 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015154
15155 if (tg3_nvram_read(tp, 0xc, &offset) ||
15156 tg3_nvram_read(tp, 0x4, &start))
15157 return;
15158
15159 offset = tg3_nvram_logical_addr(tp, offset);
15160
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015161 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015162 return;
15163
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015164 if ((val & 0xfc000000) == 0x0c000000) {
15165 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000015166 return;
15167
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015168 if (val == 0)
15169 newver = true;
15170 }
15171
Matt Carlson75f99362010-04-05 10:19:24 +000015172 dst_off = strlen(tp->fw_ver);
15173
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015174 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000015175 if (TG3_VER_SIZE - dst_off < 16 ||
15176 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015177 return;
15178
15179 offset = offset + ver_offset - start;
15180 for (i = 0; i < 16; i += 4) {
15181 __be32 v;
15182 if (tg3_nvram_read_be32(tp, offset + i, &v))
15183 return;
15184
Matt Carlson75f99362010-04-05 10:19:24 +000015185 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000015186 }
15187 } else {
15188 u32 major, minor;
15189
15190 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
15191 return;
15192
15193 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
15194 TG3_NVM_BCVER_MAJSFT;
15195 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000015196 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
15197 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015198 }
15199}
15200
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015201static void tg3_read_hwsb_ver(struct tg3 *tp)
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015202{
15203 u32 val, major, minor;
15204
15205 /* Use native endian representation */
15206 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
15207 return;
15208
15209 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
15210 TG3_NVM_HWSB_CFG1_MAJSFT;
15211 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
15212 TG3_NVM_HWSB_CFG1_MINSFT;
15213
15214 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
15215}
15216
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015217static void tg3_read_sb_ver(struct tg3 *tp, u32 val)
Matt Carlsondfe00d72008-11-21 17:19:41 -080015218{
15219 u32 offset, major, minor, build;
15220
Matt Carlson75f99362010-04-05 10:19:24 +000015221 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015222
15223 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
15224 return;
15225
15226 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
15227 case TG3_EEPROM_SB_REVISION_0:
15228 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
15229 break;
15230 case TG3_EEPROM_SB_REVISION_2:
15231 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
15232 break;
15233 case TG3_EEPROM_SB_REVISION_3:
15234 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
15235 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000015236 case TG3_EEPROM_SB_REVISION_4:
15237 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
15238 break;
15239 case TG3_EEPROM_SB_REVISION_5:
15240 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
15241 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000015242 case TG3_EEPROM_SB_REVISION_6:
15243 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
15244 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015245 default:
15246 return;
15247 }
15248
Matt Carlsone4f34112009-02-25 14:25:00 +000015249 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080015250 return;
15251
15252 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
15253 TG3_EEPROM_SB_EDH_BLD_SHFT;
15254 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
15255 TG3_EEPROM_SB_EDH_MAJ_SHFT;
15256 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
15257
15258 if (minor > 99 || build > 26)
15259 return;
15260
Matt Carlson75f99362010-04-05 10:19:24 +000015261 offset = strlen(tp->fw_ver);
15262 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
15263 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080015264
15265 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000015266 offset = strlen(tp->fw_ver);
15267 if (offset < TG3_VER_SIZE - 1)
15268 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080015269 }
15270}
15271
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015272static void tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080015273{
15274 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015275 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070015276
15277 for (offset = TG3_NVM_DIR_START;
15278 offset < TG3_NVM_DIR_END;
15279 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000015280 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015281 return;
15282
15283 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
15284 break;
15285 }
15286
15287 if (offset == TG3_NVM_DIR_END)
15288 return;
15289
Joe Perches63c3a662011-04-26 08:12:10 +000015290 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015291 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000015292 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015293 return;
15294
Matt Carlsone4f34112009-02-25 14:25:00 +000015295 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070015296 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000015297 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015298 return;
15299
15300 offset += val - start;
15301
Matt Carlsonacd9c112009-02-25 14:26:33 +000015302 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015303
Matt Carlsonacd9c112009-02-25 14:26:33 +000015304 tp->fw_ver[vlen++] = ',';
15305 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070015306
15307 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000015308 __be32 v;
15309 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070015310 return;
15311
Al Virob9fc7dc2007-12-17 22:59:57 -080015312 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015313
Matt Carlsonacd9c112009-02-25 14:26:33 +000015314 if (vlen > TG3_VER_SIZE - sizeof(v)) {
15315 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015316 break;
15317 }
15318
Matt Carlsonacd9c112009-02-25 14:26:33 +000015319 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
15320 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070015321 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000015322}
15323
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015324static void tg3_probe_ncsi(struct tg3 *tp)
Matt Carlson7fd76442009-02-25 14:27:20 +000015325{
Matt Carlson7fd76442009-02-25 14:27:20 +000015326 u32 apedata;
Matt Carlson7fd76442009-02-25 14:27:20 +000015327
15328 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
15329 if (apedata != APE_SEG_SIG_MAGIC)
15330 return;
15331
15332 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
15333 if (!(apedata & APE_FW_STATUS_READY))
15334 return;
15335
Michael Chan165f4d12012-07-16 16:23:59 +000015336 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI)
15337 tg3_flag_set(tp, APE_HAS_NCSI);
15338}
15339
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015340static void tg3_read_dash_ver(struct tg3 *tp)
Michael Chan165f4d12012-07-16 16:23:59 +000015341{
15342 int vlen;
15343 u32 apedata;
15344 char *fwtype;
15345
Matt Carlson7fd76442009-02-25 14:27:20 +000015346 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
15347
Michael Chan165f4d12012-07-16 16:23:59 +000015348 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsonecc79642010-08-02 11:26:01 +000015349 fwtype = "NCSI";
Michael Chanc86a8562013-01-06 12:51:08 +000015350 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725)
15351 fwtype = "SMASH";
Michael Chan165f4d12012-07-16 16:23:59 +000015352 else
Matt Carlsonecc79642010-08-02 11:26:01 +000015353 fwtype = "DASH";
15354
Matt Carlson7fd76442009-02-25 14:27:20 +000015355 vlen = strlen(tp->fw_ver);
15356
Matt Carlsonecc79642010-08-02 11:26:01 +000015357 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
15358 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000015359 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
15360 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
15361 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
15362 (apedata & APE_FW_VERSION_BLDMSK));
15363}
15364
Michael Chanc86a8562013-01-06 12:51:08 +000015365static void tg3_read_otp_ver(struct tg3 *tp)
15366{
15367 u32 val, val2;
15368
Joe Perches41535772013-02-16 11:20:04 +000015369 if (tg3_asic_rev(tp) != ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000015370 return;
15371
15372 if (!tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0, &val) &&
15373 !tg3_ape_otp_read(tp, OTP_ADDRESS_MAGIC0 + 4, &val2) &&
15374 TG3_OTP_MAGIC0_VALID(val)) {
15375 u64 val64 = (u64) val << 32 | val2;
15376 u32 ver = 0;
15377 int i, vlen;
15378
15379 for (i = 0; i < 7; i++) {
15380 if ((val64 & 0xff) == 0)
15381 break;
15382 ver = val64 & 0xff;
15383 val64 >>= 8;
15384 }
15385 vlen = strlen(tp->fw_ver);
15386 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " .%02d", ver);
15387 }
15388}
15389
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015390static void tg3_read_fw_ver(struct tg3 *tp)
Matt Carlsonacd9c112009-02-25 14:26:33 +000015391{
15392 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000015393 bool vpd_vers = false;
15394
15395 if (tp->fw_ver[0] != 0)
15396 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000015397
Joe Perches63c3a662011-04-26 08:12:10 +000015398 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000015399 strcat(tp->fw_ver, "sb");
Michael Chanc86a8562013-01-06 12:51:08 +000015400 tg3_read_otp_ver(tp);
Matt Carlsondf259d82009-04-20 06:57:14 +000015401 return;
15402 }
15403
Matt Carlsonacd9c112009-02-25 14:26:33 +000015404 if (tg3_nvram_read(tp, 0, &val))
15405 return;
15406
15407 if (val == TG3_EEPROM_MAGIC)
15408 tg3_read_bc_ver(tp);
15409 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
15410 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000015411 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
15412 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000015413
Michael Chan165f4d12012-07-16 16:23:59 +000015414 if (tg3_flag(tp, ENABLE_ASF)) {
15415 if (tg3_flag(tp, ENABLE_APE)) {
15416 tg3_probe_ncsi(tp);
15417 if (!vpd_vers)
15418 tg3_read_dash_ver(tp);
15419 } else if (!vpd_vers) {
15420 tg3_read_mgmtfw_ver(tp);
15421 }
Matt Carlsonc9cab242011-07-13 09:27:27 +000015422 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070015423
15424 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080015425}
15426
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015427static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
15428{
Joe Perches63c3a662011-04-26 08:12:10 +000015429 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015430 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000015431 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000015432 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015433 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000015434 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000015435}
15436
Matt Carlson41434702011-03-09 16:58:22 +000015437static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015438 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
15439 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
15440 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
15441 { },
15442};
15443
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015444static struct pci_dev *tg3_find_peer(struct tg3 *tp)
Matt Carlson16c7fa72012-02-13 10:20:10 +000015445{
15446 struct pci_dev *peer;
15447 unsigned int func, devnr = tp->pdev->devfn & ~7;
15448
15449 for (func = 0; func < 8; func++) {
15450 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15451 if (peer && peer != tp->pdev)
15452 break;
15453 pci_dev_put(peer);
15454 }
15455 /* 5704 can be configured in single-port mode, set peer to
15456 * tp->pdev in that case.
15457 */
15458 if (!peer) {
15459 peer = tp->pdev;
15460 return peer;
15461 }
15462
15463 /*
15464 * We don't need to keep the refcount elevated; there's no way
15465 * to remove one half of this device without removing the other
15466 */
15467 pci_dev_put(peer);
15468
15469 return peer;
15470}
15471
Bill Pemberton229b1ad2012-12-03 09:22:59 -050015472static void tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
Matt Carlson42b123b2012-02-13 15:20:13 +000015473{
15474 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
Joe Perches41535772013-02-16 11:20:04 +000015475 if (tg3_asic_rev(tp) == ASIC_REV_USE_PROD_ID_REG) {
Matt Carlson42b123b2012-02-13 15:20:13 +000015476 u32 reg;
15477
15478 /* All devices that use the alternate
15479 * ASIC REV location have a CPMU.
15480 */
15481 tg3_flag_set(tp, CPMU_PRESENT);
15482
15483 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000015484 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015485 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15486 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000015487 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
15488 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
15489 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
15490 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727)
Matt Carlson42b123b2012-02-13 15:20:13 +000015491 reg = TG3PCI_GEN2_PRODID_ASICREV;
15492 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
15493 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
15494 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
15495 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
15496 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
15497 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
15498 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
15499 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
15500 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
15501 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
15502 reg = TG3PCI_GEN15_PRODID_ASICREV;
15503 else
15504 reg = TG3PCI_PRODID_ASICREV;
15505
15506 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
15507 }
15508
15509 /* Wrong chip ID in 5752 A0. This code can be removed later
15510 * as A0 is not in production.
15511 */
Joe Perches41535772013-02-16 11:20:04 +000015512 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5752_A0_HW)
Matt Carlson42b123b2012-02-13 15:20:13 +000015513 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
15514
Joe Perches41535772013-02-16 11:20:04 +000015515 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_C0)
Michael Chan79d49692012-11-05 14:26:29 +000015516 tp->pci_chip_rev_id = CHIPREV_ID_5720_A0;
15517
Joe Perches41535772013-02-16 11:20:04 +000015518 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15519 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15520 tg3_asic_rev(tp) == ASIC_REV_5720)
Matt Carlson42b123b2012-02-13 15:20:13 +000015521 tg3_flag_set(tp, 5717_PLUS);
15522
Joe Perches41535772013-02-16 11:20:04 +000015523 if (tg3_asic_rev(tp) == ASIC_REV_57765 ||
15524 tg3_asic_rev(tp) == ASIC_REV_57766)
Matt Carlson42b123b2012-02-13 15:20:13 +000015525 tg3_flag_set(tp, 57765_CLASS);
15526
Michael Chanc65a17f2013-01-06 12:51:07 +000015527 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015528 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlson42b123b2012-02-13 15:20:13 +000015529 tg3_flag_set(tp, 57765_PLUS);
15530
15531 /* Intentionally exclude ASIC_REV_5906 */
Joe Perches41535772013-02-16 11:20:04 +000015532 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
15533 tg3_asic_rev(tp) == ASIC_REV_5787 ||
15534 tg3_asic_rev(tp) == ASIC_REV_5784 ||
15535 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15536 tg3_asic_rev(tp) == ASIC_REV_5785 ||
15537 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015538 tg3_flag(tp, 57765_PLUS))
15539 tg3_flag_set(tp, 5755_PLUS);
15540
Joe Perches41535772013-02-16 11:20:04 +000015541 if (tg3_asic_rev(tp) == ASIC_REV_5780 ||
15542 tg3_asic_rev(tp) == ASIC_REV_5714)
Matt Carlson42b123b2012-02-13 15:20:13 +000015543 tg3_flag_set(tp, 5780_CLASS);
15544
Joe Perches41535772013-02-16 11:20:04 +000015545 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
15546 tg3_asic_rev(tp) == ASIC_REV_5752 ||
15547 tg3_asic_rev(tp) == ASIC_REV_5906 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015548 tg3_flag(tp, 5755_PLUS) ||
15549 tg3_flag(tp, 5780_CLASS))
15550 tg3_flag_set(tp, 5750_PLUS);
15551
Joe Perches41535772013-02-16 11:20:04 +000015552 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
Matt Carlson42b123b2012-02-13 15:20:13 +000015553 tg3_flag(tp, 5750_PLUS))
15554 tg3_flag_set(tp, 5705_PLUS);
15555}
15556
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015557static bool tg3_10_100_only_device(struct tg3 *tp,
15558 const struct pci_device_id *ent)
15559{
15560 u32 grc_misc_cfg = tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK;
15561
Joe Perches41535772013-02-16 11:20:04 +000015562 if ((tg3_asic_rev(tp) == ASIC_REV_5703 &&
15563 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015564 (tp->phy_flags & TG3_PHYFLG_IS_FET))
15565 return true;
15566
15567 if (ent->driver_data & TG3_DRV_DATA_FLAG_10_100_ONLY) {
Joe Perches41535772013-02-16 11:20:04 +000015568 if (tg3_asic_rev(tp) == ASIC_REV_5705) {
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000015569 if (ent->driver_data & TG3_DRV_DATA_FLAG_5705_10_100)
15570 return true;
15571 } else {
15572 return true;
15573 }
15574 }
15575
15576 return false;
15577}
15578
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +000015579static int tg3_get_invariants(struct tg3 *tp, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015580{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015581 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015582 u32 pci_state_reg, grc_misc_cfg;
15583 u32 val;
15584 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015585 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015586
Linus Torvalds1da177e2005-04-16 15:20:36 -070015587 /* Force memory write invalidate off. If we leave it on,
15588 * then on 5700_BX chips we have to enable a workaround.
15589 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
15590 * to match the cacheline size. The Broadcom driver have this
15591 * workaround but turns MWI off all the times so never uses
15592 * it. This seems to suggest that the workaround is insufficient.
15593 */
15594 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15595 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
15596 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15597
Matt Carlson16821282011-07-13 09:27:28 +000015598 /* Important! -- Make sure register accesses are byteswapped
15599 * correctly. Also, for those chips that require it, make
15600 * sure that indirect register accesses are enabled before
15601 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015602 */
15603 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15604 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000015605 tp->misc_host_ctrl |= (misc_ctrl_reg &
15606 MISC_HOST_CTRL_CHIPREV);
15607 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
15608 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015609
Matt Carlson42b123b2012-02-13 15:20:13 +000015610 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070015611
Michael Chan68929142005-08-09 20:17:14 -070015612 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
15613 * we need to disable memory and use config. cycles
15614 * only to access all registers. The 5702/03 chips
15615 * can mistakenly decode the special cycles from the
15616 * ICH chipsets as memory write cycles, causing corruption
15617 * of register and memory space. Only certain ICH bridges
15618 * will drive special cycles with non-zero data during the
15619 * address phase which can fall within the 5703's address
15620 * range. This is not an ICH bug as the PCI spec allows
15621 * non-zero address during special cycles. However, only
15622 * these ICH bridges are known to drive non-zero addresses
15623 * during special cycles.
15624 *
15625 * Since special cycles do not cross PCI bridges, we only
15626 * enable this workaround if the 5703 is on the secondary
15627 * bus of these ICH bridges.
15628 */
Joe Perches41535772013-02-16 11:20:04 +000015629 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A1) ||
15630 (tg3_chip_rev_id(tp) == CHIPREV_ID_5703_A2)) {
Michael Chan68929142005-08-09 20:17:14 -070015631 static struct tg3_dev_id {
15632 u32 vendor;
15633 u32 device;
15634 u32 rev;
15635 } ich_chipsets[] = {
15636 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
15637 PCI_ANY_ID },
15638 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
15639 PCI_ANY_ID },
15640 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
15641 0xa },
15642 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
15643 PCI_ANY_ID },
15644 { },
15645 };
15646 struct tg3_dev_id *pci_id = &ich_chipsets[0];
15647 struct pci_dev *bridge = NULL;
15648
15649 while (pci_id->vendor != 0) {
15650 bridge = pci_get_device(pci_id->vendor, pci_id->device,
15651 bridge);
15652 if (!bridge) {
15653 pci_id++;
15654 continue;
15655 }
15656 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070015657 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070015658 continue;
15659 }
15660 if (bridge->subordinate &&
15661 (bridge->subordinate->number ==
15662 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015663 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070015664 pci_dev_put(bridge);
15665 break;
15666 }
15667 }
15668 }
15669
Joe Perches41535772013-02-16 11:20:04 +000015670 if (tg3_asic_rev(tp) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070015671 static struct tg3_dev_id {
15672 u32 vendor;
15673 u32 device;
15674 } bridge_chipsets[] = {
15675 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
15676 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
15677 { },
15678 };
15679 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
15680 struct pci_dev *bridge = NULL;
15681
15682 while (pci_id->vendor != 0) {
15683 bridge = pci_get_device(pci_id->vendor,
15684 pci_id->device,
15685 bridge);
15686 if (!bridge) {
15687 pci_id++;
15688 continue;
15689 }
15690 if (bridge->subordinate &&
15691 (bridge->subordinate->number <=
15692 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015693 (bridge->subordinate->busn_res.end >=
Matt Carlson41588ba2008-04-19 18:12:33 -070015694 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015695 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070015696 pci_dev_put(bridge);
15697 break;
15698 }
15699 }
15700 }
15701
Michael Chan4a29cc22006-03-19 13:21:12 -080015702 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
15703 * DMA addresses > 40-bit. This bridge may have other additional
15704 * 57xx devices behind it in some 4-port NIC designs for example.
15705 * Any tg3 device found behind the bridge will also need the 40-bit
15706 * DMA workaround.
15707 */
Matt Carlson42b123b2012-02-13 15:20:13 +000015708 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015709 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070015710 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000015711 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080015712 struct pci_dev *bridge = NULL;
15713
15714 do {
15715 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
15716 PCI_DEVICE_ID_SERVERWORKS_EPB,
15717 bridge);
15718 if (bridge && bridge->subordinate &&
15719 (bridge->subordinate->number <=
15720 tp->pdev->bus->number) &&
Yinghai Lub918c622012-05-17 18:51:11 -070015721 (bridge->subordinate->busn_res.end >=
Michael Chan4a29cc22006-03-19 13:21:12 -080015722 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015723 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080015724 pci_dev_put(bridge);
15725 break;
15726 }
15727 } while (bridge);
15728 }
Michael Chan4cf78e42005-07-25 12:29:19 -070015729
Joe Perches41535772013-02-16 11:20:04 +000015730 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
15731 tg3_asic_rev(tp) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070015732 tp->pdev_peer = tg3_find_peer(tp);
15733
Matt Carlson507399f2009-11-13 13:03:37 +000015734 /* Determine TSO capabilities */
Joe Perches41535772013-02-16 11:20:04 +000015735 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000015736 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000015737 else if (tg3_flag(tp, 57765_PLUS))
15738 tg3_flag_set(tp, HW_TSO_3);
15739 else if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015740 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015741 tg3_flag_set(tp, HW_TSO_2);
15742 else if (tg3_flag(tp, 5750_PLUS)) {
15743 tg3_flag_set(tp, HW_TSO_1);
15744 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015745 if (tg3_asic_rev(tp) == ASIC_REV_5750 &&
15746 tg3_chip_rev_id(tp) >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000015747 tg3_flag_clear(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015748 } else if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
15749 tg3_asic_rev(tp) != ASIC_REV_5701 &&
15750 tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
Matt Carlson1caf13e2013-03-06 17:02:29 +000015751 tg3_flag_set(tp, FW_TSO);
15752 tg3_flag_set(tp, TSO_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015753 if (tg3_asic_rev(tp) == ASIC_REV_5705)
Matt Carlson507399f2009-11-13 13:03:37 +000015754 tp->fw_needed = FIRMWARE_TG3TSO5;
15755 else
15756 tp->fw_needed = FIRMWARE_TG3TSO;
15757 }
15758
Matt Carlsondabc5c62011-05-19 12:12:52 +000015759 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000015760 if (tg3_flag(tp, HW_TSO_1) ||
15761 tg3_flag(tp, HW_TSO_2) ||
15762 tg3_flag(tp, HW_TSO_3) ||
Matt Carlson1caf13e2013-03-06 17:02:29 +000015763 tg3_flag(tp, FW_TSO)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015764 /* For firmware TSO, assume ASF is disabled.
15765 * We'll disable TSO later if we discover ASF
15766 * is enabled in tg3_get_eeprom_hw_cfg().
15767 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000015768 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000015769 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000015770 tg3_flag_clear(tp, TSO_CAPABLE);
15771 tg3_flag_clear(tp, TSO_BUG);
15772 tp->fw_needed = NULL;
15773 }
15774
Joe Perches41535772013-02-16 11:20:04 +000015775 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0)
Matt Carlsondabc5c62011-05-19 12:12:52 +000015776 tp->fw_needed = FIRMWARE_TG3;
15777
Nithin Sujirc4dab502013-03-06 17:02:34 +000015778 if (tg3_asic_rev(tp) == ASIC_REV_57766)
15779 tp->fw_needed = FIRMWARE_TG357766;
15780
Matt Carlson507399f2009-11-13 13:03:37 +000015781 tp->irq_max = 1;
15782
Joe Perches63c3a662011-04-26 08:12:10 +000015783 if (tg3_flag(tp, 5750_PLUS)) {
15784 tg3_flag_set(tp, SUPPORT_MSI);
Joe Perches41535772013-02-16 11:20:04 +000015785 if (tg3_chip_rev(tp) == CHIPREV_5750_AX ||
15786 tg3_chip_rev(tp) == CHIPREV_5750_BX ||
15787 (tg3_asic_rev(tp) == ASIC_REV_5714 &&
15788 tg3_chip_rev_id(tp) <= CHIPREV_ID_5714_A2 &&
Michael Chan7544b092007-05-05 13:08:32 -070015789 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000015790 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070015791
Joe Perches63c3a662011-04-26 08:12:10 +000015792 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015793 tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015794 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070015795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015796
Joe Perches63c3a662011-04-26 08:12:10 +000015797 if (tg3_flag(tp, 57765_PLUS)) {
15798 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000015799 tp->irq_max = TG3_IRQ_MAX_VECS;
15800 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015801 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000015802
Michael Chan91024262012-09-28 07:12:38 +000015803 tp->txq_max = 1;
15804 tp->rxq_max = 1;
15805 if (tp->irq_max > 1) {
15806 tp->rxq_max = TG3_RSS_MAX_NUM_QS;
15807 tg3_rss_init_dflt_indir_tbl(tp, TG3_RSS_MAX_NUM_QS);
15808
Joe Perches41535772013-02-16 11:20:04 +000015809 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
15810 tg3_asic_rev(tp) == ASIC_REV_5720)
Michael Chan91024262012-09-28 07:12:38 +000015811 tp->txq_max = tp->irq_max - 1;
15812 }
15813
Matt Carlsonb7abee62012-06-07 12:56:54 +000015814 if (tg3_flag(tp, 5755_PLUS) ||
Joe Perches41535772013-02-16 11:20:04 +000015815 tg3_asic_rev(tp) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000015816 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000015817
Joe Perches41535772013-02-16 11:20:04 +000015818 if (tg3_asic_rev(tp) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000015819 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000015820
Joe Perches41535772013-02-16 11:20:04 +000015821 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
15822 tg3_asic_rev(tp) == ASIC_REV_5719 ||
15823 tg3_asic_rev(tp) == ASIC_REV_5720 ||
15824 tg3_asic_rev(tp) == ASIC_REV_5762)
Joe Perches63c3a662011-04-26 08:12:10 +000015825 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000015826
Joe Perches63c3a662011-04-26 08:12:10 +000015827 if (tg3_flag(tp, 57765_PLUS) &&
Joe Perches41535772013-02-16 11:20:04 +000015828 tg3_chip_rev_id(tp) != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000015829 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000015830
Joe Perches63c3a662011-04-26 08:12:10 +000015831 if (!tg3_flag(tp, 5705_PLUS) ||
15832 tg3_flag(tp, 5780_CLASS) ||
15833 tg3_flag(tp, USE_JUMBO_BDFLAG))
15834 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070015835
Matt Carlson52f44902008-11-21 17:17:04 -080015836 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
15837 &pci_state_reg);
15838
Jon Mason708ebb3a2011-06-27 12:56:50 +000015839 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015840 u16 lnkctl;
15841
Joe Perches63c3a662011-04-26 08:12:10 +000015842 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080015843
Jiang Liu0f49bfb2012-08-20 13:28:20 -060015844 pcie_capability_read_word(tp->pdev, PCI_EXP_LNKCTL, &lnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080015845 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Joe Perches41535772013-02-16 11:20:04 +000015846 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000015847 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000015848 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000015849 }
Joe Perches41535772013-02-16 11:20:04 +000015850 if (tg3_asic_rev(tp) == ASIC_REV_5784 ||
15851 tg3_asic_rev(tp) == ASIC_REV_5761 ||
15852 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A0 ||
15853 tg3_chip_rev_id(tp) == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000015854 tg3_flag_set(tp, CLKREQ_BUG);
Joe Perches41535772013-02-16 11:20:04 +000015855 } else if (tg3_chip_rev_id(tp) == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000015856 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080015857 }
Joe Perches41535772013-02-16 11:20:04 +000015858 } else if (tg3_asic_rev(tp) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000015859 /* BCM5785 devices are effectively PCIe devices, and should
15860 * follow PCIe codepaths, but do not have a PCIe capabilities
15861 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000015862 */
Joe Perches63c3a662011-04-26 08:12:10 +000015863 tg3_flag_set(tp, PCI_EXPRESS);
15864 } else if (!tg3_flag(tp, 5705_PLUS) ||
15865 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080015866 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
15867 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000015868 dev_err(&tp->pdev->dev,
15869 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080015870 return -EIO;
15871 }
15872
15873 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000015874 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080015875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015876
Michael Chan399de502005-10-03 14:02:39 -070015877 /* If we have an AMD 762 or VIA K8T800 chipset, write
15878 * reordering to the mailbox registers done by the host
15879 * controller can cause major troubles. We read back from
15880 * every mailbox register write to force the writes to be
15881 * posted to the chip in order.
15882 */
Matt Carlson41434702011-03-09 16:58:22 +000015883 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000015884 !tg3_flag(tp, PCI_EXPRESS))
15885 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070015886
Matt Carlson69fc4052008-12-21 20:19:57 -080015887 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
15888 &tp->pci_cacheline_sz);
15889 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15890 &tp->pci_lat_timer);
Joe Perches41535772013-02-16 11:20:04 +000015891 if (tg3_asic_rev(tp) == ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015892 tp->pci_lat_timer < 64) {
15893 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080015894 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
15895 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015896 }
15897
Matt Carlson16821282011-07-13 09:27:28 +000015898 /* Important! -- It is critical that the PCI-X hw workaround
15899 * situation is decided before the first MMIO register access.
15900 */
Joe Perches41535772013-02-16 11:20:04 +000015901 if (tg3_chip_rev(tp) == CHIPREV_5700_BX) {
Matt Carlson52f44902008-11-21 17:17:04 -080015902 /* 5700 BX chips need to have their TX producer index
15903 * mailboxes written twice to workaround a bug.
15904 */
Joe Perches63c3a662011-04-26 08:12:10 +000015905 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070015906
Matt Carlson52f44902008-11-21 17:17:04 -080015907 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015908 *
15909 * The workaround is to use indirect register accesses
15910 * for all chip writes not to mailbox registers.
15911 */
Joe Perches63c3a662011-04-26 08:12:10 +000015912 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015913 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015914
Joe Perches63c3a662011-04-26 08:12:10 +000015915 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015916
15917 /* The chip can have it's power management PCI config
15918 * space registers clobbered due to this bug.
15919 * So explicitly force the chip into D0 here.
15920 */
Matt Carlson9974a352007-10-07 23:27:28 -070015921 pci_read_config_dword(tp->pdev,
15922 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015923 &pm_reg);
15924 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
15925 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070015926 pci_write_config_dword(tp->pdev,
15927 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015928 pm_reg);
15929
15930 /* Also, force SERR#/PERR# in PCI command. */
15931 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15932 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
15933 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15934 }
15935 }
15936
Linus Torvalds1da177e2005-04-16 15:20:36 -070015937 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015938 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015939 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000015940 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015941
15942 /* Chip-specific fixup from Broadcom driver */
Joe Perches41535772013-02-16 11:20:04 +000015943 if ((tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015944 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
15945 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
15946 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
15947 }
15948
Michael Chan1ee582d2005-08-09 20:16:46 -070015949 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070015950 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015951 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070015952 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070015953 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070015954 tp->write32_tx_mbox = tg3_write32;
15955 tp->write32_rx_mbox = tg3_write32;
15956
15957 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000015958 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070015959 tp->write32 = tg3_write_indirect_reg32;
Joe Perches41535772013-02-16 11:20:04 +000015960 else if (tg3_asic_rev(tp) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000015961 (tg3_flag(tp, PCI_EXPRESS) &&
Joe Perches41535772013-02-16 11:20:04 +000015962 tg3_chip_rev_id(tp) == CHIPREV_ID_5750_A0)) {
Matt Carlson98efd8a2007-05-05 12:47:25 -070015963 /*
15964 * Back to back register writes can cause problems on these
15965 * chips, the workaround is to read back all reg writes
15966 * except those to mailbox regs.
15967 *
15968 * See tg3_write_indirect_reg32().
15969 */
Michael Chan1ee582d2005-08-09 20:16:46 -070015970 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070015971 }
15972
Joe Perches63c3a662011-04-26 08:12:10 +000015973 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070015974 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000015975 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070015976 tp->write32_rx_mbox = tg3_write_flush_reg32;
15977 }
Michael Chan20094932005-08-09 20:16:32 -070015978
Joe Perches63c3a662011-04-26 08:12:10 +000015979 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070015980 tp->read32 = tg3_read_indirect_reg32;
15981 tp->write32 = tg3_write_indirect_reg32;
15982 tp->read32_mbox = tg3_read_indirect_mbox;
15983 tp->write32_mbox = tg3_write_indirect_mbox;
15984 tp->write32_tx_mbox = tg3_write_indirect_mbox;
15985 tp->write32_rx_mbox = tg3_write_indirect_mbox;
15986
15987 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015988 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015989
15990 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
15991 pci_cmd &= ~PCI_COMMAND_MEMORY;
15992 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
15993 }
Joe Perches41535772013-02-16 11:20:04 +000015994 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070015995 tp->read32_mbox = tg3_read32_mbox_5906;
15996 tp->write32_mbox = tg3_write32_mbox_5906;
15997 tp->write32_tx_mbox = tg3_write32_mbox_5906;
15998 tp->write32_rx_mbox = tg3_write32_mbox_5906;
15999 }
Michael Chan68929142005-08-09 20:17:14 -070016000
Michael Chanbbadf502006-04-06 21:46:34 -070016001 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016002 (tg3_flag(tp, PCIX_MODE) &&
Joe Perches41535772013-02-16 11:20:04 +000016003 (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16004 tg3_asic_rev(tp) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000016005 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070016006
Matt Carlson16821282011-07-13 09:27:28 +000016007 /* The memory arbiter has to be enabled in order for SRAM accesses
16008 * to succeed. Normally on powerup the tg3 chip firmware will make
16009 * sure it is enabled, but other entities such as system netboot
16010 * code might disable it.
16011 */
16012 val = tr32(MEMARB_MODE);
16013 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
16014
Matt Carlson9dc5e342011-11-04 09:15:02 +000016015 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
Joe Perches41535772013-02-16 11:20:04 +000016016 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Matt Carlson9dc5e342011-11-04 09:15:02 +000016017 tg3_flag(tp, 5780_CLASS)) {
16018 if (tg3_flag(tp, PCIX_MODE)) {
16019 pci_read_config_dword(tp->pdev,
16020 tp->pcix_cap + PCI_X_STATUS,
16021 &val);
16022 tp->pci_fn = val & 0x7;
16023 }
Joe Perches41535772013-02-16 11:20:04 +000016024 } else if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16025 tg3_asic_rev(tp) == ASIC_REV_5719 ||
16026 tg3_asic_rev(tp) == ASIC_REV_5720) {
Matt Carlson9dc5e342011-11-04 09:15:02 +000016027 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
Michael Chan857001f2013-01-06 12:51:09 +000016028 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) != NIC_SRAM_CPMUSTAT_SIG)
16029 val = tr32(TG3_CPMU_STATUS);
16030
Joe Perches41535772013-02-16 11:20:04 +000016031 if (tg3_asic_rev(tp) == ASIC_REV_5717)
Michael Chan857001f2013-01-06 12:51:09 +000016032 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5717) ? 1 : 0;
16033 else
Matt Carlson9dc5e342011-11-04 09:15:02 +000016034 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
16035 TG3_CPMU_STATUS_FSHFT_5719;
Matt Carlson69f11c92011-07-13 09:27:30 +000016036 }
16037
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016038 if (tg3_flag(tp, FLUSH_POSTED_WRITES)) {
16039 tp->write32_tx_mbox = tg3_write_flush_reg32;
16040 tp->write32_rx_mbox = tg3_write_flush_reg32;
16041 }
16042
Michael Chan7d0c41e2005-04-21 17:06:20 -070016043 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000016044 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070016045 * determined before calling tg3_set_power_state() so that
16046 * we know whether or not to switch out of Vaux power.
16047 * When the flag is set, it means that GPIO1 is used for eeprom
16048 * write protect and also implies that it is a LOM where GPIOs
16049 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040016050 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070016051 tg3_get_eeprom_hw_cfg(tp);
16052
Matt Carlson1caf13e2013-03-06 17:02:29 +000016053 if (tg3_flag(tp, FW_TSO) && tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000016054 tg3_flag_clear(tp, TSO_CAPABLE);
16055 tg3_flag_clear(tp, TSO_BUG);
16056 tp->fw_needed = NULL;
16057 }
16058
Joe Perches63c3a662011-04-26 08:12:10 +000016059 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070016060 /* Allow reads and writes to the
16061 * APE register and memory space.
16062 */
16063 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000016064 PCISTATE_ALLOW_APE_SHMEM_WR |
16065 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070016066 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
16067 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000016068
16069 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070016070 }
16071
Matt Carlson16821282011-07-13 09:27:28 +000016072 /* Set up tp->grc_local_ctrl before calling
16073 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
16074 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070016075 * It is also used as eeprom write protect on LOMs.
16076 */
16077 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Joe Perches41535772013-02-16 11:20:04 +000016078 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016079 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070016080 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
16081 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070016082 /* Unused GPIO3 must be driven as output on 5752 because there
16083 * are no pull-up resistors on unused GPIO pins.
16084 */
Joe Perches41535772013-02-16 11:20:04 +000016085 else if (tg3_asic_rev(tp) == ASIC_REV_5752)
Michael Chan3e7d83b2005-04-21 17:10:36 -070016086 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070016087
Joe Perches41535772013-02-16 11:20:04 +000016088 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16089 tg3_asic_rev(tp) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000016090 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080016091 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
16092
Matt Carlson8d519ab2009-04-20 06:58:01 +000016093 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
16094 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016095 /* Turn off the debug UART. */
16096 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000016097 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070016098 /* Keep VMain power. */
16099 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
16100 GRC_LCLCTRL_GPIO_OUTPUT0;
16101 }
16102
Joe Perches41535772013-02-16 11:20:04 +000016103 if (tg3_asic_rev(tp) == ASIC_REV_5762)
Michael Chanc86a8562013-01-06 12:51:08 +000016104 tp->grc_local_ctrl |=
16105 tr32(GRC_LOCAL_CTRL) & GRC_LCLCTRL_GPIO_UART_SEL;
16106
Matt Carlson16821282011-07-13 09:27:28 +000016107 /* Switch out of Vaux if it is a NIC */
16108 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016109
Linus Torvalds1da177e2005-04-16 15:20:36 -070016110 /* Derive initial jumbo mode from MTU assigned in
16111 * ether_setup() via the alloc_etherdev() call
16112 */
Joe Perches63c3a662011-04-26 08:12:10 +000016113 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
16114 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016115
16116 /* Determine WakeOnLan speed to use. */
Joe Perches41535772013-02-16 11:20:04 +000016117 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16118 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16119 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16120 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000016121 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016122 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000016123 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016124 }
16125
Joe Perches41535772013-02-16 11:20:04 +000016126 if (tg3_asic_rev(tp) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016127 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000016128
Linus Torvalds1da177e2005-04-16 15:20:36 -070016129 /* A few boards don't want Ethernet@WireSpeed phy feature */
Joe Perches41535772013-02-16 11:20:04 +000016130 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16131 (tg3_asic_rev(tp) == ASIC_REV_5705 &&
16132 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) &&
16133 (tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016134 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
16135 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
16136 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016137
Joe Perches41535772013-02-16 11:20:04 +000016138 if (tg3_chip_rev(tp) == CHIPREV_5703_AX ||
16139 tg3_chip_rev(tp) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016140 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Joe Perches41535772013-02-16 11:20:04 +000016141 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016142 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016143
Joe Perches63c3a662011-04-26 08:12:10 +000016144 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016145 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Joe Perches41535772013-02-16 11:20:04 +000016146 tg3_asic_rev(tp) != ASIC_REV_5785 &&
16147 tg3_asic_rev(tp) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016148 !tg3_flag(tp, 57765_PLUS)) {
Joe Perches41535772013-02-16 11:20:04 +000016149 if (tg3_asic_rev(tp) == ASIC_REV_5755 ||
16150 tg3_asic_rev(tp) == ASIC_REV_5787 ||
16151 tg3_asic_rev(tp) == ASIC_REV_5784 ||
16152 tg3_asic_rev(tp) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080016153 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
16154 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016155 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080016156 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016157 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080016158 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016159 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070016160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016161
Joe Perches41535772013-02-16 11:20:04 +000016162 if (tg3_asic_rev(tp) == ASIC_REV_5784 &&
16163 tg3_chip_rev(tp) != CHIPREV_5784_AX) {
Matt Carlsonb2a5c192008-04-03 21:44:44 -070016164 tp->phy_otp = tg3_read_otp_phycfg(tp);
16165 if (tp->phy_otp == 0)
16166 tp->phy_otp = TG3_OTP_DEFAULT;
16167 }
16168
Joe Perches63c3a662011-04-26 08:12:10 +000016169 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070016170 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
16171 else
16172 tp->mi_mode = MAC_MI_MODE_BASE;
16173
Linus Torvalds1da177e2005-04-16 15:20:36 -070016174 tp->coalesce_mode = 0;
Joe Perches41535772013-02-16 11:20:04 +000016175 if (tg3_chip_rev(tp) != CHIPREV_5700_AX &&
16176 tg3_chip_rev(tp) != CHIPREV_5700_BX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016177 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
16178
Matt Carlson4d958472011-04-20 07:57:35 +000016179 /* Set these bits to enable statistics workaround. */
Joe Perches41535772013-02-16 11:20:04 +000016180 if (tg3_asic_rev(tp) == ASIC_REV_5717 ||
16181 tg3_chip_rev_id(tp) == CHIPREV_ID_5719_A0 ||
16182 tg3_chip_rev_id(tp) == CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +000016183 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
16184 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
16185 }
16186
Joe Perches41535772013-02-16 11:20:04 +000016187 if (tg3_asic_rev(tp) == ASIC_REV_5785 ||
16188 tg3_asic_rev(tp) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000016189 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070016190
Matt Carlson158d7ab2008-05-29 01:37:54 -070016191 err = tg3_mdio_init(tp);
16192 if (err)
16193 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016194
16195 /* Initialize data/descriptor byte/word swapping. */
16196 val = tr32(GRC_MODE);
Joe Perches41535772013-02-16 11:20:04 +000016197 if (tg3_asic_rev(tp) == ASIC_REV_5720 ||
16198 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonf2096f92011-04-05 14:22:48 +000016199 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
16200 GRC_MODE_WORD_SWAP_B2HRX_DATA |
16201 GRC_MODE_B2HRX_ENABLE |
16202 GRC_MODE_HTX2B_ENABLE |
16203 GRC_MODE_HOST_STACKUP);
16204 else
16205 val &= GRC_MODE_HOST_STACKUP;
16206
Linus Torvalds1da177e2005-04-16 15:20:36 -070016207 tw32(GRC_MODE, val | tp->grc_mode);
16208
16209 tg3_switch_clocks(tp);
16210
16211 /* Clear this out for sanity. */
16212 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
16213
16214 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
16215 &pci_state_reg);
16216 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016217 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Joe Perches41535772013-02-16 11:20:04 +000016218 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5701_A0 ||
16219 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B0 ||
16220 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B2 ||
16221 tg3_chip_rev_id(tp) == CHIPREV_ID_5701_B5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016222 void __iomem *sram_base;
16223
16224 /* Write some dummy words into the SRAM status block
16225 * area, see if it reads back correctly. If the return
16226 * value is bad, force enable the PCIX workaround.
16227 */
16228 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
16229
16230 writel(0x00000000, sram_base);
16231 writel(0x00000000, sram_base + 4);
16232 writel(0xffffffff, sram_base + 4);
16233 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000016234 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016235 }
16236 }
16237
16238 udelay(50);
16239 tg3_nvram_init(tp);
16240
Nithin Sujirc4dab502013-03-06 17:02:34 +000016241 /* If the device has an NVRAM, no need to load patch firmware */
16242 if (tg3_asic_rev(tp) == ASIC_REV_57766 &&
16243 !tg3_flag(tp, NO_NVRAM))
16244 tp->fw_needed = NULL;
16245
Linus Torvalds1da177e2005-04-16 15:20:36 -070016246 grc_misc_cfg = tr32(GRC_MISC_CFG);
16247 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
16248
Joe Perches41535772013-02-16 11:20:04 +000016249 if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070016250 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
16251 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000016252 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016253
Joe Perches63c3a662011-04-26 08:12:10 +000016254 if (!tg3_flag(tp, IS_5788) &&
Joe Perches41535772013-02-16 11:20:04 +000016255 tg3_asic_rev(tp) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016256 tg3_flag_set(tp, TAGGED_STATUS);
16257 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070016258 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
16259 HOSTCC_MODE_CLRTICK_TXBD);
16260
16261 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
16262 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
16263 tp->misc_host_ctrl);
16264 }
16265
Matt Carlson3bda1252008-08-15 14:08:22 -070016266 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000016267 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000016268 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070016269 else
Matt Carlson6e01b202011-08-19 13:58:20 +000016270 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070016271
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000016272 if (tg3_10_100_only_device(tp, ent))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016273 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016274
16275 err = tg3_phy_probe(tp);
16276 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000016277 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016278 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070016279 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016280 }
16281
Matt Carlson184b8902010-04-05 10:19:25 +000016282 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080016283 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016284
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016285 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
16286 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016287 } else {
Joe Perches41535772013-02-16 11:20:04 +000016288 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016289 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016290 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016291 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016292 }
16293
16294 /* 5700 {AX,BX} chips have a broken status block link
16295 * change bit implementation, so we must use the
16296 * status register in those cases.
16297 */
Joe Perches41535772013-02-16 11:20:04 +000016298 if (tg3_asic_rev(tp) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000016299 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016300 else
Joe Perches63c3a662011-04-26 08:12:10 +000016301 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016302
16303 /* The led_ctrl is set during tg3_phy_probe, here we might
16304 * have to force the link status polling mechanism based
16305 * upon subsystem IDs.
16306 */
16307 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Joe Perches41535772013-02-16 11:20:04 +000016308 tg3_asic_rev(tp) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016309 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
16310 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000016311 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016312 }
16313
16314 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000016315 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000016316 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016317 else
Joe Perches63c3a662011-04-26 08:12:10 +000016318 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016319
Eric Dumazet9205fd92011-11-18 06:47:01 +000016320 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016321 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Joe Perches41535772013-02-16 11:20:04 +000016322 if (tg3_asic_rev(tp) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016323 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000016324 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016325#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000016326 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000016327#endif
16328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016329
Matt Carlson2c49a442010-09-30 10:34:35 +000016330 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
16331 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000016332 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
16333
Matt Carlson2c49a442010-09-30 10:34:35 +000016334 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070016335
16336 /* Increment the rx prod index on the rx std ring by at most
16337 * 8 for these chips to workaround hw errata.
16338 */
Joe Perches41535772013-02-16 11:20:04 +000016339 if (tg3_asic_rev(tp) == ASIC_REV_5750 ||
16340 tg3_asic_rev(tp) == ASIC_REV_5752 ||
16341 tg3_asic_rev(tp) == ASIC_REV_5755)
Michael Chanf92905d2006-06-29 20:14:29 -070016342 tp->rx_std_max_post = 8;
16343
Joe Perches63c3a662011-04-26 08:12:10 +000016344 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070016345 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
16346 PCIE_PWR_MGMT_L1_THRESH_MSK;
16347
Linus Torvalds1da177e2005-04-16 15:20:36 -070016348 return err;
16349}
16350
David S. Miller49b6e95f2007-03-29 01:38:42 -070016351#ifdef CONFIG_SPARC
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016352static int tg3_get_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016353{
16354 struct net_device *dev = tp->dev;
16355 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016356 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070016357 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070016358 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016359
David S. Miller49b6e95f2007-03-29 01:38:42 -070016360 addr = of_get_property(dp, "local-mac-address", &len);
16361 if (addr && len == 6) {
16362 memcpy(dev->dev_addr, addr, 6);
David S. Miller49b6e95f2007-03-29 01:38:42 -070016363 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016364 }
16365 return -ENODEV;
16366}
16367
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016368static int tg3_get_default_macaddr_sparc(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016369{
16370 struct net_device *dev = tp->dev;
16371
16372 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
16373 return 0;
16374}
16375#endif
16376
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016377static int tg3_get_device_address(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016378{
16379 struct net_device *dev = tp->dev;
16380 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080016381 int addr_ok = 0;
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016382 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016383
David S. Miller49b6e95f2007-03-29 01:38:42 -070016384#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016385 if (!tg3_get_macaddr_sparc(tp))
16386 return 0;
16387#endif
16388
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016389 if (tg3_flag(tp, IS_SSB_CORE)) {
16390 err = ssb_gige_get_macaddr(tp->pdev, &dev->dev_addr[0]);
16391 if (!err && is_valid_ether_addr(&dev->dev_addr[0]))
16392 return 0;
16393 }
16394
Linus Torvalds1da177e2005-04-16 15:20:36 -070016395 mac_offset = 0x7c;
Joe Perches41535772013-02-16 11:20:04 +000016396 if (tg3_asic_rev(tp) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000016397 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016398 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
16399 mac_offset = 0xcc;
16400 if (tg3_nvram_lock(tp))
16401 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
16402 else
16403 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000016404 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000016405 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000016406 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000016407 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000016408 mac_offset += 0x18c;
Joe Perches41535772013-02-16 11:20:04 +000016409 } else if (tg3_asic_rev(tp) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070016410 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016411
16412 /* First try to get it from MAC address mailbox. */
16413 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
16414 if ((hi >> 16) == 0x484b) {
16415 dev->dev_addr[0] = (hi >> 8) & 0xff;
16416 dev->dev_addr[1] = (hi >> 0) & 0xff;
16417
16418 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
16419 dev->dev_addr[2] = (lo >> 24) & 0xff;
16420 dev->dev_addr[3] = (lo >> 16) & 0xff;
16421 dev->dev_addr[4] = (lo >> 8) & 0xff;
16422 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016423
Michael Chan008652b2006-03-27 23:14:53 -080016424 /* Some old bootcode may report a 0 MAC address in SRAM */
16425 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
16426 }
16427 if (!addr_ok) {
16428 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000016429 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000016430 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000016431 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070016432 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
16433 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080016434 }
16435 /* Finally just fetch it out of the MAC control regs. */
16436 else {
16437 hi = tr32(MAC_ADDR_0_HIGH);
16438 lo = tr32(MAC_ADDR_0_LOW);
16439
16440 dev->dev_addr[5] = lo & 0xff;
16441 dev->dev_addr[4] = (lo >> 8) & 0xff;
16442 dev->dev_addr[3] = (lo >> 16) & 0xff;
16443 dev->dev_addr[2] = (lo >> 24) & 0xff;
16444 dev->dev_addr[1] = hi & 0xff;
16445 dev->dev_addr[0] = (hi >> 8) & 0xff;
16446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016447 }
16448
16449 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070016450#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070016451 if (!tg3_get_default_macaddr_sparc(tp))
16452 return 0;
16453#endif
16454 return -EINVAL;
16455 }
16456 return 0;
16457}
16458
David S. Miller59e6b432005-05-18 22:50:10 -070016459#define BOUNDARY_SINGLE_CACHELINE 1
16460#define BOUNDARY_MULTI_CACHELINE 2
16461
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016462static u32 tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
David S. Miller59e6b432005-05-18 22:50:10 -070016463{
16464 int cacheline_size;
16465 u8 byte;
16466 int goal;
16467
16468 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
16469 if (byte == 0)
16470 cacheline_size = 1024;
16471 else
16472 cacheline_size = (int) byte * 4;
16473
16474 /* On 5703 and later chips, the boundary bits have no
16475 * effect.
16476 */
Joe Perches41535772013-02-16 11:20:04 +000016477 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16478 tg3_asic_rev(tp) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000016479 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070016480 goto out;
16481
16482#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
16483 goal = BOUNDARY_MULTI_CACHELINE;
16484#else
16485#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
16486 goal = BOUNDARY_SINGLE_CACHELINE;
16487#else
16488 goal = 0;
16489#endif
16490#endif
16491
Joe Perches63c3a662011-04-26 08:12:10 +000016492 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016493 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
16494 goto out;
16495 }
16496
David S. Miller59e6b432005-05-18 22:50:10 -070016497 if (!goal)
16498 goto out;
16499
16500 /* PCI controllers on most RISC systems tend to disconnect
16501 * when a device tries to burst across a cache-line boundary.
16502 * Therefore, letting tg3 do so just wastes PCI bandwidth.
16503 *
16504 * Unfortunately, for PCI-E there are only limited
16505 * write-side controls for this, and thus for reads
16506 * we will still get the disconnects. We'll also waste
16507 * these PCI cycles for both read and write for chips
16508 * other than 5700 and 5701 which do not implement the
16509 * boundary bits.
16510 */
Joe Perches63c3a662011-04-26 08:12:10 +000016511 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016512 switch (cacheline_size) {
16513 case 16:
16514 case 32:
16515 case 64:
16516 case 128:
16517 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16518 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
16519 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
16520 } else {
16521 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16522 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16523 }
16524 break;
16525
16526 case 256:
16527 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
16528 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
16529 break;
16530
16531 default:
16532 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
16533 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
16534 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016535 }
Joe Perches63c3a662011-04-26 08:12:10 +000016536 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070016537 switch (cacheline_size) {
16538 case 16:
16539 case 32:
16540 case 64:
16541 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16542 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16543 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
16544 break;
16545 }
16546 /* fallthrough */
16547 case 128:
16548 default:
16549 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
16550 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
16551 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016552 }
David S. Miller59e6b432005-05-18 22:50:10 -070016553 } else {
16554 switch (cacheline_size) {
16555 case 16:
16556 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16557 val |= (DMA_RWCTRL_READ_BNDRY_16 |
16558 DMA_RWCTRL_WRITE_BNDRY_16);
16559 break;
16560 }
16561 /* fallthrough */
16562 case 32:
16563 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16564 val |= (DMA_RWCTRL_READ_BNDRY_32 |
16565 DMA_RWCTRL_WRITE_BNDRY_32);
16566 break;
16567 }
16568 /* fallthrough */
16569 case 64:
16570 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16571 val |= (DMA_RWCTRL_READ_BNDRY_64 |
16572 DMA_RWCTRL_WRITE_BNDRY_64);
16573 break;
16574 }
16575 /* fallthrough */
16576 case 128:
16577 if (goal == BOUNDARY_SINGLE_CACHELINE) {
16578 val |= (DMA_RWCTRL_READ_BNDRY_128 |
16579 DMA_RWCTRL_WRITE_BNDRY_128);
16580 break;
16581 }
16582 /* fallthrough */
16583 case 256:
16584 val |= (DMA_RWCTRL_READ_BNDRY_256 |
16585 DMA_RWCTRL_WRITE_BNDRY_256);
16586 break;
16587 case 512:
16588 val |= (DMA_RWCTRL_READ_BNDRY_512 |
16589 DMA_RWCTRL_WRITE_BNDRY_512);
16590 break;
16591 case 1024:
16592 default:
16593 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
16594 DMA_RWCTRL_WRITE_BNDRY_1024);
16595 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070016596 }
David S. Miller59e6b432005-05-18 22:50:10 -070016597 }
16598
16599out:
16600 return val;
16601}
16602
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016603static int tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma,
Joe Perches953c96e2013-04-09 10:18:14 +000016604 int size, bool to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016605{
16606 struct tg3_internal_buffer_desc test_desc;
16607 u32 sram_dma_descs;
16608 int i, ret;
16609
16610 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
16611
16612 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
16613 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
16614 tw32(RDMAC_STATUS, 0);
16615 tw32(WDMAC_STATUS, 0);
16616
16617 tw32(BUFMGR_MODE, 0);
16618 tw32(FTQ_RESET, 0);
16619
16620 test_desc.addr_hi = ((u64) buf_dma) >> 32;
16621 test_desc.addr_lo = buf_dma & 0xffffffff;
16622 test_desc.nic_mbuf = 0x00002100;
16623 test_desc.len = size;
16624
16625 /*
16626 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
16627 * the *second* time the tg3 driver was getting loaded after an
16628 * initial scan.
16629 *
16630 * Broadcom tells me:
16631 * ...the DMA engine is connected to the GRC block and a DMA
16632 * reset may affect the GRC block in some unpredictable way...
16633 * The behavior of resets to individual blocks has not been tested.
16634 *
16635 * Broadcom noted the GRC reset will also reset all sub-components.
16636 */
16637 if (to_device) {
16638 test_desc.cqid_sqid = (13 << 8) | 2;
16639
16640 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
16641 udelay(40);
16642 } else {
16643 test_desc.cqid_sqid = (16 << 8) | 7;
16644
16645 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
16646 udelay(40);
16647 }
16648 test_desc.flags = 0x00000005;
16649
16650 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
16651 u32 val;
16652
16653 val = *(((u32 *)&test_desc) + i);
16654 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
16655 sram_dma_descs + (i * sizeof(u32)));
16656 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
16657 }
16658 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
16659
Matt Carlson859a588792010-04-05 10:19:28 +000016660 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016661 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000016662 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070016663 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016664
16665 ret = -ENODEV;
16666 for (i = 0; i < 40; i++) {
16667 u32 val;
16668
16669 if (to_device)
16670 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
16671 else
16672 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
16673 if ((val & 0xffff) == sram_dma_descs) {
16674 ret = 0;
16675 break;
16676 }
16677
16678 udelay(100);
16679 }
16680
16681 return ret;
16682}
16683
David S. Millerded73402005-05-23 13:59:47 -070016684#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070016685
Matt Carlson41434702011-03-09 16:58:22 +000016686static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080016687 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
16688 { },
16689};
16690
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016691static int tg3_test_dma(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016692{
16693 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070016694 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016695 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016696
Matt Carlson4bae65c2010-11-24 08:31:52 +000016697 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
16698 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016699 if (!buf) {
16700 ret = -ENOMEM;
16701 goto out_nofree;
16702 }
16703
16704 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
16705 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
16706
David S. Miller59e6b432005-05-18 22:50:10 -070016707 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016708
Joe Perches63c3a662011-04-26 08:12:10 +000016709 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000016710 goto out;
16711
Joe Perches63c3a662011-04-26 08:12:10 +000016712 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016713 /* DMA read watermark not used on PCIE */
16714 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000016715 } else if (!tg3_flag(tp, PCIX_MODE)) {
Joe Perches41535772013-02-16 11:20:04 +000016716 if (tg3_asic_rev(tp) == ASIC_REV_5705 ||
16717 tg3_asic_rev(tp) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016718 tp->dma_rwctrl |= 0x003f0000;
16719 else
16720 tp->dma_rwctrl |= 0x003f000f;
16721 } else {
Joe Perches41535772013-02-16 11:20:04 +000016722 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16723 tg3_asic_rev(tp) == ASIC_REV_5704) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016724 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080016725 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016726
Michael Chan4a29cc22006-03-19 13:21:12 -080016727 /* If the 5704 is behind the EPB bridge, we can
16728 * do the less restrictive ONE_DMA workaround for
16729 * better performance.
16730 */
Joe Perches63c3a662011-04-26 08:12:10 +000016731 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Joe Perches41535772013-02-16 11:20:04 +000016732 tg3_asic_rev(tp) == ASIC_REV_5704)
Michael Chan4a29cc22006-03-19 13:21:12 -080016733 tp->dma_rwctrl |= 0x8000;
16734 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016735 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
16736
Joe Perches41535772013-02-16 11:20:04 +000016737 if (tg3_asic_rev(tp) == ASIC_REV_5703)
Michael Chan49afdeb2007-02-13 12:17:03 -080016738 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070016739 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080016740 tp->dma_rwctrl |=
16741 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
16742 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
16743 (1 << 23);
Joe Perches41535772013-02-16 11:20:04 +000016744 } else if (tg3_asic_rev(tp) == ASIC_REV_5780) {
Michael Chan4cf78e42005-07-25 12:29:19 -070016745 /* 5780 always in PCIX mode */
16746 tp->dma_rwctrl |= 0x00144000;
Joe Perches41535772013-02-16 11:20:04 +000016747 } else if (tg3_asic_rev(tp) == ASIC_REV_5714) {
Michael Chana4e2b342005-10-26 15:46:52 -070016748 /* 5714 always in PCIX mode */
16749 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016750 } else {
16751 tp->dma_rwctrl |= 0x001b000f;
16752 }
16753 }
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000016754 if (tg3_flag(tp, ONE_DMA_AT_ONCE))
16755 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016756
Joe Perches41535772013-02-16 11:20:04 +000016757 if (tg3_asic_rev(tp) == ASIC_REV_5703 ||
16758 tg3_asic_rev(tp) == ASIC_REV_5704)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016759 tp->dma_rwctrl &= 0xfffffff0;
16760
Joe Perches41535772013-02-16 11:20:04 +000016761 if (tg3_asic_rev(tp) == ASIC_REV_5700 ||
16762 tg3_asic_rev(tp) == ASIC_REV_5701) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070016763 /* Remove this if it causes problems for some boards. */
16764 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
16765
16766 /* On 5700/5701 chips, we need to set this bit.
16767 * Otherwise the chip will issue cacheline transactions
16768 * to streamable DMA memory with not all the byte
16769 * enables turned on. This is an error on several
16770 * RISC PCI controllers, in particular sparc64.
16771 *
16772 * On 5703/5704 chips, this bit has been reassigned
16773 * a different meaning. In particular, it is used
16774 * on those chips to enable a PCI-X workaround.
16775 */
16776 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
16777 }
16778
16779 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16780
16781#if 0
16782 /* Unneeded, already done by tg3_get_invariants. */
16783 tg3_switch_clocks(tp);
16784#endif
16785
Joe Perches41535772013-02-16 11:20:04 +000016786 if (tg3_asic_rev(tp) != ASIC_REV_5700 &&
16787 tg3_asic_rev(tp) != ASIC_REV_5701)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016788 goto out;
16789
David S. Miller59e6b432005-05-18 22:50:10 -070016790 /* It is best to perform DMA test with maximum write burst size
16791 * to expose the 5700/5701 write DMA bug.
16792 */
16793 saved_dma_rwctrl = tp->dma_rwctrl;
16794 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16795 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16796
Linus Torvalds1da177e2005-04-16 15:20:36 -070016797 while (1) {
16798 u32 *p = buf, i;
16799
16800 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
16801 p[i] = i;
16802
16803 /* Send the buffer to the chip. */
Joe Perches953c96e2013-04-09 10:18:14 +000016804 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016805 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000016806 dev_err(&tp->pdev->dev,
16807 "%s: Buffer write failed. err = %d\n",
16808 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016809 break;
16810 }
16811
16812#if 0
16813 /* validate data reached card RAM correctly. */
16814 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16815 u32 val;
16816 tg3_read_mem(tp, 0x2100 + (i*4), &val);
16817 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000016818 dev_err(&tp->pdev->dev,
16819 "%s: Buffer corrupted on device! "
16820 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016821 /* ret = -ENODEV here? */
16822 }
16823 p[i] = 0;
16824 }
16825#endif
16826 /* Now read it back. */
Joe Perches953c96e2013-04-09 10:18:14 +000016827 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016828 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000016829 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
16830 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016831 break;
16832 }
16833
16834 /* Verify it. */
16835 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
16836 if (p[i] == i)
16837 continue;
16838
David S. Miller59e6b432005-05-18 22:50:10 -070016839 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16840 DMA_RWCTRL_WRITE_BNDRY_16) {
16841 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016842 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
16843 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16844 break;
16845 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000016846 dev_err(&tp->pdev->dev,
16847 "%s: Buffer corrupted on read back! "
16848 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016849 ret = -ENODEV;
16850 goto out;
16851 }
16852 }
16853
16854 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
16855 /* Success. */
16856 ret = 0;
16857 break;
16858 }
16859 }
David S. Miller59e6b432005-05-18 22:50:10 -070016860 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
16861 DMA_RWCTRL_WRITE_BNDRY_16) {
16862 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070016863 * now look for chipsets that are known to expose the
16864 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070016865 */
Matt Carlson41434702011-03-09 16:58:22 +000016866 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016867 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
16868 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000016869 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070016870 /* Safe to use the calculated DMA boundary. */
16871 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000016872 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070016873
David S. Miller59e6b432005-05-18 22:50:10 -070016874 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
16875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016876
16877out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000016878 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016879out_nofree:
16880 return ret;
16881}
16882
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016883static void tg3_init_bufmgr_config(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016884{
Joe Perches63c3a662011-04-26 08:12:10 +000016885 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000016886 tp->bufmgr_config.mbuf_read_dma_low_water =
16887 DEFAULT_MB_RDMA_LOW_WATER_5705;
16888 tp->bufmgr_config.mbuf_mac_rx_low_water =
16889 DEFAULT_MB_MACRX_LOW_WATER_57765;
16890 tp->bufmgr_config.mbuf_high_water =
16891 DEFAULT_MB_HIGH_WATER_57765;
16892
16893 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16894 DEFAULT_MB_RDMA_LOW_WATER_5705;
16895 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16896 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
16897 tp->bufmgr_config.mbuf_high_water_jumbo =
16898 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000016899 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070016900 tp->bufmgr_config.mbuf_read_dma_low_water =
16901 DEFAULT_MB_RDMA_LOW_WATER_5705;
16902 tp->bufmgr_config.mbuf_mac_rx_low_water =
16903 DEFAULT_MB_MACRX_LOW_WATER_5705;
16904 tp->bufmgr_config.mbuf_high_water =
16905 DEFAULT_MB_HIGH_WATER_5705;
Joe Perches41535772013-02-16 11:20:04 +000016906 if (tg3_asic_rev(tp) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070016907 tp->bufmgr_config.mbuf_mac_rx_low_water =
16908 DEFAULT_MB_MACRX_LOW_WATER_5906;
16909 tp->bufmgr_config.mbuf_high_water =
16910 DEFAULT_MB_HIGH_WATER_5906;
16911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016912
Michael Chanfdfec1722005-07-25 12:31:48 -070016913 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16914 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
16915 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16916 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
16917 tp->bufmgr_config.mbuf_high_water_jumbo =
16918 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
16919 } else {
16920 tp->bufmgr_config.mbuf_read_dma_low_water =
16921 DEFAULT_MB_RDMA_LOW_WATER;
16922 tp->bufmgr_config.mbuf_mac_rx_low_water =
16923 DEFAULT_MB_MACRX_LOW_WATER;
16924 tp->bufmgr_config.mbuf_high_water =
16925 DEFAULT_MB_HIGH_WATER;
16926
16927 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
16928 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
16929 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
16930 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
16931 tp->bufmgr_config.mbuf_high_water_jumbo =
16932 DEFAULT_MB_HIGH_WATER_JUMBO;
16933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016934
16935 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
16936 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
16937}
16938
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016939static char *tg3_phy_string(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016940{
Matt Carlson79eb6902010-02-17 15:17:03 +000016941 switch (tp->phy_id & TG3_PHY_ID_MASK) {
16942 case TG3_PHY_ID_BCM5400: return "5400";
16943 case TG3_PHY_ID_BCM5401: return "5401";
16944 case TG3_PHY_ID_BCM5411: return "5411";
16945 case TG3_PHY_ID_BCM5701: return "5701";
16946 case TG3_PHY_ID_BCM5703: return "5703";
16947 case TG3_PHY_ID_BCM5704: return "5704";
16948 case TG3_PHY_ID_BCM5705: return "5705";
16949 case TG3_PHY_ID_BCM5750: return "5750";
16950 case TG3_PHY_ID_BCM5752: return "5752";
16951 case TG3_PHY_ID_BCM5714: return "5714";
16952 case TG3_PHY_ID_BCM5780: return "5780";
16953 case TG3_PHY_ID_BCM5755: return "5755";
16954 case TG3_PHY_ID_BCM5787: return "5787";
16955 case TG3_PHY_ID_BCM5784: return "5784";
16956 case TG3_PHY_ID_BCM5756: return "5722/5756";
16957 case TG3_PHY_ID_BCM5906: return "5906";
16958 case TG3_PHY_ID_BCM5761: return "5761";
16959 case TG3_PHY_ID_BCM5718C: return "5718C";
16960 case TG3_PHY_ID_BCM5718S: return "5718S";
16961 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000016962 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000016963 case TG3_PHY_ID_BCM5720C: return "5720C";
Michael Chanc65a17f2013-01-06 12:51:07 +000016964 case TG3_PHY_ID_BCM5762: return "5762C";
Matt Carlson79eb6902010-02-17 15:17:03 +000016965 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070016966 case 0: return "serdes";
16967 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070016968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070016969}
16970
Bill Pemberton229b1ad2012-12-03 09:22:59 -050016971static char *tg3_bus_string(struct tg3 *tp, char *str)
Michael Chanf9804dd2005-09-27 12:13:10 -070016972{
Joe Perches63c3a662011-04-26 08:12:10 +000016973 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016974 strcpy(str, "PCI Express");
16975 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000016976 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070016977 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
16978
16979 strcpy(str, "PCIX:");
16980
16981 if ((clock_ctrl == 7) ||
16982 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
16983 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
16984 strcat(str, "133MHz");
16985 else if (clock_ctrl == 0)
16986 strcat(str, "33MHz");
16987 else if (clock_ctrl == 2)
16988 strcat(str, "50MHz");
16989 else if (clock_ctrl == 4)
16990 strcat(str, "66MHz");
16991 else if (clock_ctrl == 6)
16992 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070016993 } else {
16994 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000016995 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070016996 strcat(str, "66MHz");
16997 else
16998 strcat(str, "33MHz");
16999 }
Joe Perches63c3a662011-04-26 08:12:10 +000017000 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070017001 strcat(str, ":32-bit");
17002 else
17003 strcat(str, ":64-bit");
17004 return str;
17005}
17006
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017007static void tg3_init_coal(struct tg3 *tp)
David S. Miller15f98502005-05-18 22:49:26 -070017008{
17009 struct ethtool_coalesce *ec = &tp->coal;
17010
17011 memset(ec, 0, sizeof(*ec));
17012 ec->cmd = ETHTOOL_GCOALESCE;
17013 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
17014 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
17015 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
17016 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
17017 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
17018 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
17019 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
17020 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
17021 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
17022
17023 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
17024 HOSTCC_MODE_CLRTICK_TXBD)) {
17025 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
17026 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
17027 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
17028 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
17029 }
Michael Chand244c892005-07-05 14:42:33 -070017030
Joe Perches63c3a662011-04-26 08:12:10 +000017031 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070017032 ec->rx_coalesce_usecs_irq = 0;
17033 ec->tx_coalesce_usecs_irq = 0;
17034 ec->stats_block_coalesce_usecs = 0;
17035 }
David S. Miller15f98502005-05-18 22:49:26 -070017036}
17037
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017038static int tg3_init_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017039 const struct pci_device_id *ent)
17040{
Linus Torvalds1da177e2005-04-16 15:20:36 -070017041 struct net_device *dev;
17042 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000017043 int i, err, pm_cap;
17044 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070017045 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080017046 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000017047 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017048
Joe Perches05dbe002010-02-17 19:44:19 +000017049 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017050
17051 err = pci_enable_device(pdev);
17052 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017053 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017054 return err;
17055 }
17056
Linus Torvalds1da177e2005-04-16 15:20:36 -070017057 err = pci_request_regions(pdev, DRV_MODULE_NAME);
17058 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000017059 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017060 goto err_out_disable_pdev;
17061 }
17062
17063 pci_set_master(pdev);
17064
17065 /* Find power-management capability. */
17066 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
17067 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000017068 dev_err(&pdev->dev,
17069 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017070 err = -EIO;
17071 goto err_out_free_res;
17072 }
17073
Matt Carlson16821282011-07-13 09:27:28 +000017074 err = pci_set_power_state(pdev, PCI_D0);
17075 if (err) {
17076 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
17077 goto err_out_free_res;
17078 }
17079
Matt Carlsonfe5f5782009-09-01 13:09:39 +000017080 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017081 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017082 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000017083 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017084 }
17085
Linus Torvalds1da177e2005-04-16 15:20:36 -070017086 SET_NETDEV_DEV(dev, &pdev->dev);
17087
Linus Torvalds1da177e2005-04-16 15:20:36 -070017088 tp = netdev_priv(dev);
17089 tp->pdev = pdev;
17090 tp->dev = dev;
17091 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017092 tp->rx_mode = TG3_DEF_RX_MODE;
17093 tp->tx_mode = TG3_DEF_TX_MODE;
Nithin Nayak Sujir9c13cb82013-01-14 17:10:59 +000017094 tp->irq_sync = 1;
Matt Carlson8ef21422008-05-02 16:47:53 -070017095
Linus Torvalds1da177e2005-04-16 15:20:36 -070017096 if (tg3_debug > 0)
17097 tp->msg_enable = tg3_debug;
17098 else
17099 tp->msg_enable = TG3_DEF_MSG_ENABLE;
17100
Hauke Mehrtens7e6c63f2013-02-07 05:37:39 +000017101 if (pdev_is_ssb_gige_core(pdev)) {
17102 tg3_flag_set(tp, IS_SSB_CORE);
17103 if (ssb_gige_must_flush_posted_writes(pdev))
17104 tg3_flag_set(tp, FLUSH_POSTED_WRITES);
17105 if (ssb_gige_one_dma_at_once(pdev))
17106 tg3_flag_set(tp, ONE_DMA_AT_ONCE);
17107 if (ssb_gige_have_roboswitch(pdev))
17108 tg3_flag_set(tp, ROBOSWITCH);
17109 if (ssb_gige_is_rgmii(pdev))
17110 tg3_flag_set(tp, RGMII_MODE);
17111 }
17112
Linus Torvalds1da177e2005-04-16 15:20:36 -070017113 /* The word/byte swap controls here control register access byte
17114 * swapping. DMA data byte swapping is controlled in the GRC_MODE
17115 * setting below.
17116 */
17117 tp->misc_host_ctrl =
17118 MISC_HOST_CTRL_MASK_PCI_INT |
17119 MISC_HOST_CTRL_WORD_SWAP |
17120 MISC_HOST_CTRL_INDIR_ACCESS |
17121 MISC_HOST_CTRL_PCISTATE_RW;
17122
17123 /* The NONFRM (non-frame) byte/word swap controls take effect
17124 * on descriptor entries, anything which isn't packet data.
17125 *
17126 * The StrongARM chips on the board (one for tx, one for rx)
17127 * are running in big-endian mode.
17128 */
17129 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
17130 GRC_MODE_WSWAP_NONFRM_DATA);
17131#ifdef __BIG_ENDIAN
17132 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
17133#endif
17134 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017135 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000017136 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017137
Matt Carlsond5fe4882008-11-21 17:20:32 -080017138 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010017139 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017140 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070017141 err = -ENOMEM;
17142 goto err_out_free_dev;
17143 }
17144
Matt Carlsonc9cab242011-07-13 09:27:27 +000017145 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
17146 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
17147 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
17148 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
17149 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
Michael Chan79d49692012-11-05 14:26:29 +000017150 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717_C ||
Matt Carlsonc9cab242011-07-13 09:27:27 +000017151 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
17152 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
Michael Chanc65a17f2013-01-06 12:51:07 +000017153 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720 ||
17154 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5762 ||
17155 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5725 ||
17156 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5727) {
Matt Carlsonc9cab242011-07-13 09:27:27 +000017157 tg3_flag_set(tp, ENABLE_APE);
17158 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
17159 if (!tp->aperegs) {
17160 dev_err(&pdev->dev,
17161 "Cannot map APE registers, aborting\n");
17162 err = -ENOMEM;
17163 goto err_out_iounmap;
17164 }
17165 }
17166
Linus Torvalds1da177e2005-04-16 15:20:36 -070017167 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
17168 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017169
Linus Torvalds1da177e2005-04-16 15:20:36 -070017170 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017171 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000017172 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017173 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017174
Nithin Nayak Sujir3d567e02012-11-14 14:44:26 +000017175 err = tg3_get_invariants(tp, ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017176 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017177 dev_err(&pdev->dev,
17178 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017179 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017180 }
17181
Michael Chan4a29cc22006-03-19 13:21:12 -080017182 /* The EPB bridge inside 5714, 5715, and 5780 and any
17183 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080017184 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
17185 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
17186 * do DMA address check in tg3_start_xmit().
17187 */
Joe Perches63c3a662011-04-26 08:12:10 +000017188 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070017189 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000017190 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070017191 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080017192#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070017193 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017194#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080017195 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070017196 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080017197
17198 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070017199 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080017200 err = pci_set_dma_mask(pdev, dma_mask);
17201 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000017202 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080017203 err = pci_set_consistent_dma_mask(pdev,
17204 persist_dma_mask);
17205 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017206 dev_err(&pdev->dev, "Unable to obtain 64 bit "
17207 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017208 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017209 }
17210 }
17211 }
Yang Hongyang284901a2009-04-06 19:01:15 -070017212 if (err || dma_mask == DMA_BIT_MASK(32)) {
17213 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080017214 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017215 dev_err(&pdev->dev,
17216 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017217 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080017218 }
17219 }
17220
Michael Chanfdfec1722005-07-25 12:31:48 -070017221 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017222
Patrick McHardyf6469682013-04-19 02:04:27 +000017223 features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Matt Carlson0da06062011-05-19 12:12:53 +000017224
17225 /* 5700 B0 chips do not support checksumming correctly due
17226 * to hardware bugs.
17227 */
Joe Perches41535772013-02-16 11:20:04 +000017228 if (tg3_chip_rev_id(tp) != CHIPREV_ID_5700_B0) {
Matt Carlson0da06062011-05-19 12:12:53 +000017229 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
17230
17231 if (tg3_flag(tp, 5755_PLUS))
17232 features |= NETIF_F_IPV6_CSUM;
17233 }
17234
Michael Chan4e3a7aa2006-03-20 17:47:44 -080017235 /* TSO is on by default on chips that support hardware TSO.
17236 * Firmware TSO on older chips gives lower performance, so it
17237 * is off by default, but can be enabled using ethtool.
17238 */
Joe Perches63c3a662011-04-26 08:12:10 +000017239 if ((tg3_flag(tp, HW_TSO_1) ||
17240 tg3_flag(tp, HW_TSO_2) ||
17241 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000017242 (features & NETIF_F_IP_CSUM))
17243 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000017244 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000017245 if (features & NETIF_F_IPV6_CSUM)
17246 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000017247 if (tg3_flag(tp, HW_TSO_3) ||
Joe Perches41535772013-02-16 11:20:04 +000017248 tg3_asic_rev(tp) == ASIC_REV_5761 ||
17249 (tg3_asic_rev(tp) == ASIC_REV_5784 &&
17250 tg3_chip_rev(tp) != CHIPREV_5784_AX) ||
17251 tg3_asic_rev(tp) == ASIC_REV_5785 ||
17252 tg3_asic_rev(tp) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000017253 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070017254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017255
Matt Carlsond542fe22011-05-19 16:02:43 +000017256 dev->features |= features;
17257 dev->vlan_features |= features;
17258
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017259 /*
17260 * Add loopback capability only for a subset of devices that support
17261 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
17262 * loopback for the remaining devices.
17263 */
Joe Perches41535772013-02-16 11:20:04 +000017264 if (tg3_asic_rev(tp) != ASIC_REV_5780 &&
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017265 !tg3_flag(tp, CPMU_PRESENT))
17266 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000017267 features |= NETIF_F_LOOPBACK;
17268
Matt Carlson0da06062011-05-19 12:12:53 +000017269 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000017270
Joe Perches41535772013-02-16 11:20:04 +000017271 if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000017272 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070017273 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000017274 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017275 tp->rx_pending = 63;
17276 }
17277
Linus Torvalds1da177e2005-04-16 15:20:36 -070017278 err = tg3_get_device_address(tp);
17279 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017280 dev_err(&pdev->dev,
17281 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000017282 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070017283 }
17284
Matt Carlsonc88864d2007-11-12 21:07:01 -080017285 /*
17286 * Reset chip in case UNDI or EFI driver did not shutdown
17287 * DMA self test will enable WDMAC and we'll see (spurious)
17288 * pending DMA on the PCI bus at that point.
17289 */
17290 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
17291 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
17292 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
17293 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
17294 }
17295
17296 err = tg3_test_dma(tp);
17297 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017298 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080017299 goto err_out_apeunmap;
17300 }
17301
Matt Carlson78f90dc2009-11-13 13:03:42 +000017302 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
17303 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
17304 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000017305 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000017306 struct tg3_napi *tnapi = &tp->napi[i];
17307
17308 tnapi->tp = tp;
17309 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
17310
17311 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000017312 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017313 intmbx += 0x8;
17314 else
17315 intmbx += 0x4;
17316
17317 tnapi->consmbox = rcvmbx;
17318 tnapi->prodmbox = sndmbx;
17319
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017320 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000017321 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000017322 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000017323 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000017324
Joe Perches63c3a662011-04-26 08:12:10 +000017325 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000017326 break;
17327
17328 /*
17329 * If we support MSIX, we'll be using RSS. If we're using
17330 * RSS, the first vector only handles link interrupts and the
17331 * remaining vectors handle rx and tx interrupts. Reuse the
17332 * mailbox values for the next iteration. The values we setup
17333 * above are still useful for the single vectored mode.
17334 */
17335 if (!i)
17336 continue;
17337
17338 rcvmbx += 0x8;
17339
17340 if (sndmbx & 0x4)
17341 sndmbx -= 0x4;
17342 else
17343 sndmbx += 0xc;
17344 }
17345
Matt Carlsonc88864d2007-11-12 21:07:01 -080017346 tg3_init_coal(tp);
17347
Michael Chanc49a1562006-12-17 17:07:29 -080017348 pci_set_drvdata(pdev, dev);
17349
Joe Perches41535772013-02-16 11:20:04 +000017350 if (tg3_asic_rev(tp) == ASIC_REV_5719 ||
17351 tg3_asic_rev(tp) == ASIC_REV_5720 ||
17352 tg3_asic_rev(tp) == ASIC_REV_5762)
Matt Carlsonfb4ce8a2012-12-03 19:37:00 +000017353 tg3_flag_set(tp, PTP_CAPABLE);
17354
Matt Carlsoncd0d7222011-07-13 09:27:33 +000017355 if (tg3_flag(tp, 5717_PLUS)) {
17356 /* Resume a low-power mode */
17357 tg3_frob_aux_power(tp, false);
17358 }
17359
Matt Carlson21f76382012-02-22 12:35:21 +000017360 tg3_timer_init(tp);
17361
Michael Chan402e1392013-02-14 12:13:41 +000017362 tg3_carrier_off(tp);
17363
Linus Torvalds1da177e2005-04-16 15:20:36 -070017364 err = register_netdev(dev);
17365 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000017366 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070017367 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017368 }
17369
Joe Perches05dbe002010-02-17 19:44:19 +000017370 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
17371 tp->board_part_number,
Joe Perches41535772013-02-16 11:20:04 +000017372 tg3_chip_rev_id(tp),
Joe Perches05dbe002010-02-17 19:44:19 +000017373 tg3_bus_string(tp, str),
17374 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017375
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017376 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000017377 struct phy_device *phydev;
17378 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000017379 netdev_info(dev,
17380 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000017381 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017382 } else {
17383 char *ethtype;
17384
17385 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
17386 ethtype = "10/100Base-TX";
17387 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
17388 ethtype = "1000Base-SX";
17389 else
17390 ethtype = "10/100/1000Base-T";
17391
Matt Carlson5129c3a2010-04-05 10:19:23 +000017392 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000017393 "(WireSpeed[%d], EEE[%d])\n",
17394 tg3_phy_string(tp), ethtype,
17395 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
17396 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017397 }
Matt Carlsondf59c942008-11-03 16:52:56 -080017398
Joe Perches05dbe002010-02-17 19:44:19 +000017399 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000017400 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017401 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000017402 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000017403 tg3_flag(tp, ENABLE_ASF) != 0,
17404 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000017405 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
17406 tp->dma_rwctrl,
17407 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
17408 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017409
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017410 pci_save_state(pdev);
17411
Linus Torvalds1da177e2005-04-16 15:20:36 -070017412 return 0;
17413
Matt Carlson0d3031d2007-10-10 18:02:43 -070017414err_out_apeunmap:
17415 if (tp->aperegs) {
17416 iounmap(tp->aperegs);
17417 tp->aperegs = NULL;
17418 }
17419
Linus Torvalds1da177e2005-04-16 15:20:36 -070017420err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070017421 if (tp->regs) {
17422 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017423 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017425
17426err_out_free_dev:
17427 free_netdev(dev);
17428
Matt Carlson16821282011-07-13 09:27:28 +000017429err_out_power_down:
17430 pci_set_power_state(pdev, PCI_D3hot);
17431
Linus Torvalds1da177e2005-04-16 15:20:36 -070017432err_out_free_res:
17433 pci_release_regions(pdev);
17434
17435err_out_disable_pdev:
17436 pci_disable_device(pdev);
17437 pci_set_drvdata(pdev, NULL);
17438 return err;
17439}
17440
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017441static void tg3_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017442{
17443 struct net_device *dev = pci_get_drvdata(pdev);
17444
17445 if (dev) {
17446 struct tg3 *tp = netdev_priv(dev);
17447
Jesper Juhle3c55302012-04-09 22:50:15 +020017448 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080017449
Matt Carlsondb219972011-11-04 09:15:03 +000017450 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017451
David S. Miller1805b2f2011-10-24 18:18:09 -040017452 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017453 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070017454 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017455 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070017456
Linus Torvalds1da177e2005-04-16 15:20:36 -070017457 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070017458 if (tp->aperegs) {
17459 iounmap(tp->aperegs);
17460 tp->aperegs = NULL;
17461 }
Michael Chan68929142005-08-09 20:17:14 -070017462 if (tp->regs) {
17463 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070017464 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070017465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070017466 free_netdev(dev);
17467 pci_release_regions(pdev);
17468 pci_disable_device(pdev);
17469 pci_set_drvdata(pdev, NULL);
17470 }
17471}
17472
Eric Dumazetaa6027c2011-01-01 05:22:46 +000017473#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017474static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017475{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017476 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017477 struct net_device *dev = pci_get_drvdata(pdev);
17478 struct tg3 *tp = netdev_priv(dev);
17479 int err;
17480
17481 if (!netif_running(dev))
17482 return 0;
17483
Matt Carlsondb219972011-11-04 09:15:03 +000017484 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017485 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017486 tg3_netif_stop(tp);
17487
Matt Carlson21f76382012-02-22 12:35:21 +000017488 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017489
David S. Millerf47c11e2005-06-24 20:18:35 -070017490 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017491 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070017492 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017493
17494 netif_device_detach(dev);
17495
David S. Millerf47c11e2005-06-24 20:18:35 -070017496 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070017497 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000017498 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070017499 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017500
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017501 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017502 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017503 int err2;
17504
David S. Millerf47c11e2005-06-24 20:18:35 -070017505 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017506
Joe Perches63c3a662011-04-26 08:12:10 +000017507 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017508 err2 = tg3_restart_hw(tp, true);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017509 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070017510 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017511
Matt Carlson21f76382012-02-22 12:35:21 +000017512 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017513
17514 netif_device_attach(dev);
17515 tg3_netif_start(tp);
17516
Michael Chanb9ec6c12006-07-25 16:37:27 -070017517out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017518 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017519
17520 if (!err2)
17521 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017522 }
17523
17524 return err;
17525}
17526
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017527static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017528{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017529 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017530 struct net_device *dev = pci_get_drvdata(pdev);
17531 struct tg3 *tp = netdev_priv(dev);
17532 int err;
17533
17534 if (!netif_running(dev))
17535 return 0;
17536
Linus Torvalds1da177e2005-04-16 15:20:36 -070017537 netif_device_attach(dev);
17538
David S. Millerf47c11e2005-06-24 20:18:35 -070017539 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017540
Joe Perches63c3a662011-04-26 08:12:10 +000017541 tg3_flag_set(tp, INIT_COMPLETE);
Nithin Sujir942d1af2013-04-09 08:48:07 +000017542 err = tg3_restart_hw(tp,
17543 !(tp->phy_flags & TG3_PHYFLG_KEEP_LINK_ON_PWRDN));
Michael Chanb9ec6c12006-07-25 16:37:27 -070017544 if (err)
17545 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017546
Matt Carlson21f76382012-02-22 12:35:21 +000017547 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017548
Linus Torvalds1da177e2005-04-16 15:20:36 -070017549 tg3_netif_start(tp);
17550
Michael Chanb9ec6c12006-07-25 16:37:27 -070017551out:
David S. Millerf47c11e2005-06-24 20:18:35 -070017552 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017553
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070017554 if (!err)
17555 tg3_phy_start(tp);
17556
Michael Chanb9ec6c12006-07-25 16:37:27 -070017557 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017558}
Fabio Estevam42df36a2013-04-16 09:28:29 +000017559#endif /* CONFIG_PM_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017560
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000017561static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
17562
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017563/**
17564 * tg3_io_error_detected - called when PCI error is detected
17565 * @pdev: Pointer to PCI device
17566 * @state: The current pci connection state
17567 *
17568 * This function is called after a PCI bus error affecting
17569 * this device has been detected.
17570 */
17571static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
17572 pci_channel_state_t state)
17573{
17574 struct net_device *netdev = pci_get_drvdata(pdev);
17575 struct tg3 *tp = netdev_priv(netdev);
17576 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
17577
17578 netdev_info(netdev, "PCI I/O error detected\n");
17579
17580 rtnl_lock();
17581
17582 if (!netif_running(netdev))
17583 goto done;
17584
17585 tg3_phy_stop(tp);
17586
17587 tg3_netif_stop(tp);
17588
Matt Carlson21f76382012-02-22 12:35:21 +000017589 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017590
17591 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000017592 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017593
17594 netif_device_detach(netdev);
17595
17596 /* Clean up software state, even if MMIO is blocked */
17597 tg3_full_lock(tp, 0);
17598 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
17599 tg3_full_unlock(tp);
17600
17601done:
17602 if (state == pci_channel_io_perm_failure)
17603 err = PCI_ERS_RESULT_DISCONNECT;
17604 else
17605 pci_disable_device(pdev);
17606
17607 rtnl_unlock();
17608
17609 return err;
17610}
17611
17612/**
17613 * tg3_io_slot_reset - called after the pci bus has been reset.
17614 * @pdev: Pointer to PCI device
17615 *
17616 * Restart the card from scratch, as if from a cold-boot.
17617 * At this point, the card has exprienced a hard reset,
17618 * followed by fixups by BIOS, and has its config space
17619 * set up identically to what it was at cold boot.
17620 */
17621static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
17622{
17623 struct net_device *netdev = pci_get_drvdata(pdev);
17624 struct tg3 *tp = netdev_priv(netdev);
17625 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
17626 int err;
17627
17628 rtnl_lock();
17629
17630 if (pci_enable_device(pdev)) {
17631 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
17632 goto done;
17633 }
17634
17635 pci_set_master(pdev);
17636 pci_restore_state(pdev);
17637 pci_save_state(pdev);
17638
17639 if (!netif_running(netdev)) {
17640 rc = PCI_ERS_RESULT_RECOVERED;
17641 goto done;
17642 }
17643
17644 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000017645 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017646 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017647
17648 rc = PCI_ERS_RESULT_RECOVERED;
17649
17650done:
17651 rtnl_unlock();
17652
17653 return rc;
17654}
17655
17656/**
17657 * tg3_io_resume - called when traffic can start flowing again.
17658 * @pdev: Pointer to PCI device
17659 *
17660 * This callback is called when the error recovery driver tells
17661 * us that its OK to resume normal operation.
17662 */
17663static void tg3_io_resume(struct pci_dev *pdev)
17664{
17665 struct net_device *netdev = pci_get_drvdata(pdev);
17666 struct tg3 *tp = netdev_priv(netdev);
17667 int err;
17668
17669 rtnl_lock();
17670
17671 if (!netif_running(netdev))
17672 goto done;
17673
17674 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000017675 tg3_flag_set(tp, INIT_COMPLETE);
Joe Perches953c96e2013-04-09 10:18:14 +000017676 err = tg3_restart_hw(tp, true);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017677 if (err) {
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017678 tg3_full_unlock(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017679 netdev_err(netdev, "Cannot restart hardware after reset.\n");
17680 goto done;
17681 }
17682
17683 netif_device_attach(netdev);
17684
Matt Carlson21f76382012-02-22 12:35:21 +000017685 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017686
17687 tg3_netif_start(tp);
17688
Nithin Nayak Sujir35763062012-12-03 19:36:56 +000017689 tg3_full_unlock(tp);
17690
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017691 tg3_phy_start(tp);
17692
17693done:
17694 rtnl_unlock();
17695}
17696
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070017697static const struct pci_error_handlers tg3_err_handler = {
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017698 .error_detected = tg3_io_error_detected,
17699 .slot_reset = tg3_io_slot_reset,
17700 .resume = tg3_io_resume
17701};
17702
Linus Torvalds1da177e2005-04-16 15:20:36 -070017703static struct pci_driver tg3_driver = {
17704 .name = DRV_MODULE_NAME,
17705 .id_table = tg3_pci_tbl,
17706 .probe = tg3_init_one,
Bill Pemberton229b1ad2012-12-03 09:22:59 -050017707 .remove = tg3_remove_one,
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000017708 .err_handler = &tg3_err_handler,
Fabio Estevam42df36a2013-04-16 09:28:29 +000017709 .driver.pm = &tg3_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017710};
17711
17712static int __init tg3_init(void)
17713{
Jeff Garzik29917622006-08-19 17:48:59 -040017714 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017715}
17716
17717static void __exit tg3_cleanup(void)
17718{
17719 pci_unregister_driver(&tg3_driver);
17720}
17721
17722module_init(tg3_init);
17723module_exit(tg3_cleanup);