blob: ac9091f9d42b44751cd739e94696bdf2ece60484 [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.
Matt Carlson9e056c02012-02-13 15:20:17 +00007 * Copyright (C) 2005-2012 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030049#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000051#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000053#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
David S. Miller49b6e95f2007-03-29 01:38:42 -070055#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070057#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
Matt Carlson63532392008-11-03 16:49:57 -080060#define BAR_0 0
61#define BAR_2 2
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include "tg3.h"
64
Joe Perches63c3a662011-04-26 08:12:10 +000065/* Functions & macros to verify TG3_FLAGS types */
66
67static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
68{
69 return test_bit(flag, bits);
70}
71
72static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
73{
74 set_bit(flag, bits);
75}
76
77static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
78{
79 clear_bit(flag, bits);
80}
81
82#define tg3_flag(tp, flag) \
83 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
84#define tg3_flag_set(tp, flag) \
85 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
86#define tg3_flag_clear(tp, flag) \
87 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000090#define TG3_MAJ_NUM 3
Michael Chan7ae52892012-03-21 15:38:33 +000091#define TG3_MIN_NUM 123
Matt Carlson6867c842010-07-11 09:31:44 +000092#define DRV_MODULE_VERSION \
93 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Michael Chan7ae52892012-03-21 15:38:33 +000094#define DRV_MODULE_RELDATE "March 21, 2012"
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Matt Carlsonfd6d3f02011-08-31 11:44:52 +000096#define RESET_KIND_SHUTDOWN 0
97#define RESET_KIND_INIT 1
98#define RESET_KIND_SUSPEND 2
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define TG3_DEF_RX_MODE 0
101#define TG3_DEF_TX_MODE 0
102#define TG3_DEF_MSG_ENABLE \
103 (NETIF_MSG_DRV | \
104 NETIF_MSG_PROBE | \
105 NETIF_MSG_LINK | \
106 NETIF_MSG_TIMER | \
107 NETIF_MSG_IFDOWN | \
108 NETIF_MSG_IFUP | \
109 NETIF_MSG_RX_ERR | \
110 NETIF_MSG_TX_ERR)
111
Matt Carlson520b2752011-06-13 13:39:02 +0000112#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* length of time before we decide the hardware is borked,
115 * and dev->tx_timeout() should be called to fix the problem
116 */
Joe Perches63c3a662011-04-26 08:12:10 +0000117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define TG3_TX_TIMEOUT (5 * HZ)
119
120/* hardware minimum and maximum for a single frame's data payload */
121#define TG3_MIN_MTU 60
122#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000123 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/* These numbers seem to be hard coded in the NIC firmware somehow.
126 * You can't change the ring sizes, but you can change where you place
127 * them in the NIC onboard memory.
128 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000129#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000130 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000131 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000133#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000134 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000135 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define TG3_DEF_RX_JUMBO_RING_PENDING 100
137
138/* Do not place this n-ring entries value into the tp struct itself,
139 * we really want to expose these constants to GCC so that modulo et
140 * al. operations are done with shifts and masks instead of with
141 * hw multiply/modulo instructions. Another solution would be to
142 * replace things like '% foo' with '& (foo - 1)'.
143 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145#define TG3_TX_RING_SIZE 512
146#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
147
Matt Carlson2c49a442010-09-30 10:34:35 +0000148#define TG3_RX_STD_RING_BYTES(tp) \
149 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
150#define TG3_RX_JMB_RING_BYTES(tp) \
151 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
152#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000153 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
155 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
157
Matt Carlson287be122009-08-28 13:58:46 +0000158#define TG3_DMA_BYTE_ENAB 64
159
160#define TG3_RX_STD_DMA_SZ 1536
161#define TG3_RX_JMB_DMA_SZ 9046
162
163#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
164
165#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
166#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Matt Carlson2c49a442010-09-30 10:34:35 +0000168#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
169 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000170
Matt Carlson2c49a442010-09-30 10:34:35 +0000171#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
172 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000173
Matt Carlsond2757fc2010-04-12 06:58:27 +0000174/* Due to a hardware bug, the 5701 can only DMA to memory addresses
175 * that are at least dword aligned when used in PCIX mode. The driver
176 * works around this bug by double copying the packet. This workaround
177 * is built into the normal double copy length check for efficiency.
178 *
179 * However, the double copy is only necessary on those architectures
180 * where unaligned memory accesses are inefficient. For those architectures
181 * where unaligned memory accesses incur little penalty, we can reintegrate
182 * the 5701 in the normal rx path. Doing so saves a device structure
183 * dereference by hardcoding the double copy threshold in place.
184 */
185#define TG3_RX_COPY_THRESHOLD 256
186#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
187 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
188#else
189 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
190#endif
191
Matt Carlson81389f52011-08-31 11:44:49 +0000192#if (NET_IP_ALIGN != 0)
193#define TG3_RX_OFFSET(tp) ((tp)->rx_offset)
194#else
Eric Dumazet9205fd92011-11-18 06:47:01 +0000195#define TG3_RX_OFFSET(tp) (NET_SKB_PAD)
Matt Carlson81389f52011-08-31 11:44:49 +0000196#endif
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000199#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlson55086ad2011-12-14 11:09:59 +0000200#define TG3_TX_BD_DMA_MAX_2K 2048
Matt Carlsona4cb4282011-12-14 11:09:58 +0000201#define TG3_TX_BD_DMA_MAX_4K 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Matt Carlsonad829262008-11-21 17:16:16 -0800203#define TG3_RAW_IP_ALIGN 2
204
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000205#define TG3_FW_UPDATE_TIMEOUT_SEC 5
Matt Carlson21f76382012-02-22 12:35:21 +0000206#define TG3_FW_UPDATE_FREQ_SEC (TG3_FW_UPDATE_TIMEOUT_SEC / 2)
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000207
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800208#define FIRMWARE_TG3 "tigon/tg3.bin"
209#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
210#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000213 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
216MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
217MODULE_LICENSE("GPL");
218MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800219MODULE_FIRMWARE(FIRMWARE_TG3);
220MODULE_FIRMWARE(FIRMWARE_TG3TSO);
221MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
224module_param(tg3_debug, int, 0);
225MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
226
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000227static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
289 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000291 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
292 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000293 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
294 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
295 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
296 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
297 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
298 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000299 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000300 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Greg KH02eca3f2012-07-12 15:39:44 +0000301 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57762)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700302 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
303 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
304 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
305 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
306 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
307 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
308 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000309 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700310 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
313MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
314
Andreas Mohr50da8592006-08-14 23:54:30 -0700315static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000317} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 { "rx_octets" },
319 { "rx_fragments" },
320 { "rx_ucast_packets" },
321 { "rx_mcast_packets" },
322 { "rx_bcast_packets" },
323 { "rx_fcs_errors" },
324 { "rx_align_errors" },
325 { "rx_xon_pause_rcvd" },
326 { "rx_xoff_pause_rcvd" },
327 { "rx_mac_ctrl_rcvd" },
328 { "rx_xoff_entered" },
329 { "rx_frame_too_long_errors" },
330 { "rx_jabbers" },
331 { "rx_undersize_packets" },
332 { "rx_in_length_errors" },
333 { "rx_out_length_errors" },
334 { "rx_64_or_less_octet_packets" },
335 { "rx_65_to_127_octet_packets" },
336 { "rx_128_to_255_octet_packets" },
337 { "rx_256_to_511_octet_packets" },
338 { "rx_512_to_1023_octet_packets" },
339 { "rx_1024_to_1522_octet_packets" },
340 { "rx_1523_to_2047_octet_packets" },
341 { "rx_2048_to_4095_octet_packets" },
342 { "rx_4096_to_8191_octet_packets" },
343 { "rx_8192_to_9022_octet_packets" },
344
345 { "tx_octets" },
346 { "tx_collisions" },
347
348 { "tx_xon_sent" },
349 { "tx_xoff_sent" },
350 { "tx_flow_control" },
351 { "tx_mac_errors" },
352 { "tx_single_collisions" },
353 { "tx_mult_collisions" },
354 { "tx_deferred" },
355 { "tx_excessive_collisions" },
356 { "tx_late_collisions" },
357 { "tx_collide_2times" },
358 { "tx_collide_3times" },
359 { "tx_collide_4times" },
360 { "tx_collide_5times" },
361 { "tx_collide_6times" },
362 { "tx_collide_7times" },
363 { "tx_collide_8times" },
364 { "tx_collide_9times" },
365 { "tx_collide_10times" },
366 { "tx_collide_11times" },
367 { "tx_collide_12times" },
368 { "tx_collide_13times" },
369 { "tx_collide_14times" },
370 { "tx_collide_15times" },
371 { "tx_ucast_packets" },
372 { "tx_mcast_packets" },
373 { "tx_bcast_packets" },
374 { "tx_carrier_sense_errors" },
375 { "tx_discards" },
376 { "tx_errors" },
377
378 { "dma_writeq_full" },
379 { "dma_write_prioq_full" },
380 { "rxbds_empty" },
381 { "rx_discards" },
382 { "rx_errors" },
383 { "rx_threshold_hit" },
384
385 { "dma_readq_full" },
386 { "dma_read_prioq_full" },
387 { "tx_comp_queue_full" },
388
389 { "ring_set_send_prod_index" },
390 { "ring_status_update" },
391 { "nic_irqs" },
392 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000393 { "nic_tx_threshold_hit" },
394
395 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396};
397
Matt Carlson48fa55a2011-04-13 11:05:06 +0000398#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
399
400
Andreas Mohr50da8592006-08-14 23:54:30 -0700401static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700402 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000403} ethtool_test_keys[] = {
Matt Carlson28a45952011-08-19 13:58:22 +0000404 { "nvram test (online) " },
405 { "link test (online) " },
406 { "register test (offline)" },
407 { "memory test (offline)" },
408 { "mac loopback test (offline)" },
409 { "phy loopback test (offline)" },
Matt Carlson941ec902011-08-19 13:58:23 +0000410 { "ext loopback test (offline)" },
Matt Carlson28a45952011-08-19 13:58:22 +0000411 { "interrupt test (offline)" },
Michael Chan4cafd3f2005-05-29 14:56:34 -0700412};
413
Matt Carlson48fa55a2011-04-13 11:05:06 +0000414#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
415
416
Michael Chanb401e9e2005-12-19 16:27:04 -0800417static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
418{
419 writel(val, tp->regs + off);
420}
421
422static u32 tg3_read32(struct tg3 *tp, u32 off)
423{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000424 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800425}
426
Matt Carlson0d3031d2007-10-10 18:02:43 -0700427static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
428{
429 writel(val, tp->aperegs + off);
430}
431
432static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
433{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000434 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
438{
Michael Chan68929142005-08-09 20:17:14 -0700439 unsigned long flags;
440
441 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700442 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
443 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700444 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700445}
446
447static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
448{
449 writel(val, tp->regs + off);
450 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Michael Chan68929142005-08-09 20:17:14 -0700453static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
454{
455 unsigned long flags;
456 u32 val;
457
458 spin_lock_irqsave(&tp->indirect_lock, flags);
459 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
460 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
461 spin_unlock_irqrestore(&tp->indirect_lock, flags);
462 return val;
463}
464
465static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
466{
467 unsigned long flags;
468
469 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
470 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
471 TG3_64BIT_REG_LOW, val);
472 return;
473 }
Matt Carlson66711e662009-11-13 13:03:49 +0000474 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700475 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
476 TG3_64BIT_REG_LOW, val);
477 return;
478 }
479
480 spin_lock_irqsave(&tp->indirect_lock, flags);
481 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
482 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
483 spin_unlock_irqrestore(&tp->indirect_lock, flags);
484
485 /* In indirect mode when disabling interrupts, we also need
486 * to clear the interrupt bit in the GRC local ctrl register.
487 */
488 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
489 (val == 0x1)) {
490 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
491 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
492 }
493}
494
495static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
496{
497 unsigned long flags;
498 u32 val;
499
500 spin_lock_irqsave(&tp->indirect_lock, flags);
501 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
502 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
503 spin_unlock_irqrestore(&tp->indirect_lock, flags);
504 return val;
505}
506
Michael Chanb401e9e2005-12-19 16:27:04 -0800507/* usec_wait specifies the wait time in usec when writing to certain registers
508 * where it is unsafe to read back the register without some delay.
509 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
510 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
511 */
512static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Joe Perches63c3a662011-04-26 08:12:10 +0000514 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800515 /* Non-posted methods */
516 tp->write32(tp, off, val);
517 else {
518 /* Posted method */
519 tg3_write32(tp, off, val);
520 if (usec_wait)
521 udelay(usec_wait);
522 tp->read32(tp, off);
523 }
524 /* Wait again after the read for the posted method to guarantee that
525 * the wait time is met.
526 */
527 if (usec_wait)
528 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Michael Chan09ee9292005-08-09 20:17:00 -0700531static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
532{
533 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000534 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700535 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700536}
537
Michael Chan20094932005-08-09 20:16:32 -0700538static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 void __iomem *mbox = tp->regs + off;
541 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000542 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000544 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 readl(mbox);
546}
547
Michael Chanb5d37722006-09-27 16:06:21 -0700548static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
549{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000550 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700551}
552
553static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
554{
555 writel(val, tp->regs + off + GRCMBOX_BASE);
556}
557
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000558#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700559#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000560#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
561#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
562#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700563
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000564#define tw32(reg, val) tp->write32(tp, reg, val)
565#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
566#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
567#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
570{
Michael Chan68929142005-08-09 20:17:14 -0700571 unsigned long flags;
572
Matt Carlson6ff6f812011-05-19 12:12:54 +0000573 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700574 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
575 return;
576
Michael Chan68929142005-08-09 20:17:14 -0700577 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000578 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700579 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
580 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Michael Chanbbadf502006-04-06 21:46:34 -0700582 /* Always leave this as zero. */
583 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
584 } else {
585 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
586 tw32_f(TG3PCI_MEM_WIN_DATA, val);
587
588 /* Always leave this as zero. */
589 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
590 }
Michael Chan68929142005-08-09 20:17:14 -0700591 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
595{
Michael Chan68929142005-08-09 20:17:14 -0700596 unsigned long flags;
597
Matt Carlson6ff6f812011-05-19 12:12:54 +0000598 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700599 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
600 *val = 0;
601 return;
602 }
603
Michael Chan68929142005-08-09 20:17:14 -0700604 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000605 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700606 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
607 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Michael Chanbbadf502006-04-06 21:46:34 -0700609 /* Always leave this as zero. */
610 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
611 } else {
612 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
613 *val = tr32(TG3PCI_MEM_WIN_DATA);
614
615 /* Always leave this as zero. */
616 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
617 }
Michael Chan68929142005-08-09 20:17:14 -0700618 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
Matt Carlson0d3031d2007-10-10 18:02:43 -0700621static void tg3_ape_lock_init(struct tg3 *tp)
622{
623 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000624 u32 regbase, bit;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000625
626 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
627 regbase = TG3_APE_LOCK_GRANT;
628 else
629 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700630
631 /* Make sure the driver hasn't any stale locks. */
Matt Carlson78f94dc2011-11-04 09:14:58 +0000632 for (i = TG3_APE_LOCK_PHY0; i <= TG3_APE_LOCK_GPIO; i++) {
633 switch (i) {
634 case TG3_APE_LOCK_PHY0:
635 case TG3_APE_LOCK_PHY1:
636 case TG3_APE_LOCK_PHY2:
637 case TG3_APE_LOCK_PHY3:
638 bit = APE_LOCK_GRANT_DRIVER;
639 break;
640 default:
641 if (!tp->pci_fn)
642 bit = APE_LOCK_GRANT_DRIVER;
643 else
644 bit = 1 << tp->pci_fn;
645 }
646 tg3_ape_write32(tp, regbase + 4 * i, bit);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000647 }
648
Matt Carlson0d3031d2007-10-10 18:02:43 -0700649}
650
651static int tg3_ape_lock(struct tg3 *tp, int locknum)
652{
653 int i, off;
654 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000655 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700656
Joe Perches63c3a662011-04-26 08:12:10 +0000657 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700658 return 0;
659
660 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000661 case TG3_APE_LOCK_GPIO:
662 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
663 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000664 case TG3_APE_LOCK_GRC:
665 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000666 if (!tp->pci_fn)
667 bit = APE_LOCK_REQ_DRIVER;
668 else
669 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000670 break;
671 default:
672 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700673 }
674
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000675 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
676 req = TG3_APE_LOCK_REQ;
677 gnt = TG3_APE_LOCK_GRANT;
678 } else {
679 req = TG3_APE_PER_LOCK_REQ;
680 gnt = TG3_APE_PER_LOCK_GRANT;
681 }
682
Matt Carlson0d3031d2007-10-10 18:02:43 -0700683 off = 4 * locknum;
684
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000685 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700686
687 /* Wait for up to 1 millisecond to acquire lock. */
688 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000689 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000690 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700691 break;
692 udelay(10);
693 }
694
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000695 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700696 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000697 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700698 ret = -EBUSY;
699 }
700
701 return ret;
702}
703
704static void tg3_ape_unlock(struct tg3 *tp, int locknum)
705{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000706 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700707
Joe Perches63c3a662011-04-26 08:12:10 +0000708 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700709 return;
710
711 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000712 case TG3_APE_LOCK_GPIO:
713 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
714 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000715 case TG3_APE_LOCK_GRC:
716 case TG3_APE_LOCK_MEM:
Matt Carlson78f94dc2011-11-04 09:14:58 +0000717 if (!tp->pci_fn)
718 bit = APE_LOCK_GRANT_DRIVER;
719 else
720 bit = 1 << tp->pci_fn;
Matt Carlson33f401a2010-04-05 10:19:27 +0000721 break;
722 default:
723 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700724 }
725
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000726 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
727 gnt = TG3_APE_LOCK_GRANT;
728 else
729 gnt = TG3_APE_PER_LOCK_GRANT;
730
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000731 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700732}
733
Matt Carlsonfd6d3f02011-08-31 11:44:52 +0000734static void tg3_ape_send_event(struct tg3 *tp, u32 event)
735{
736 int i;
737 u32 apedata;
738
739 /* NCSI does not support APE events */
740 if (tg3_flag(tp, APE_HAS_NCSI))
741 return;
742
743 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
744 if (apedata != APE_SEG_SIG_MAGIC)
745 return;
746
747 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
748 if (!(apedata & APE_FW_STATUS_READY))
749 return;
750
751 /* Wait for up to 1 millisecond for APE to service previous event. */
752 for (i = 0; i < 10; i++) {
753 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
754 return;
755
756 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
757
758 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
759 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
760 event | APE_EVENT_STATUS_EVENT_PENDING);
761
762 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
763
764 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
765 break;
766
767 udelay(100);
768 }
769
770 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
771 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
772}
773
774static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
775{
776 u32 event;
777 u32 apedata;
778
779 if (!tg3_flag(tp, ENABLE_APE))
780 return;
781
782 switch (kind) {
783 case RESET_KIND_INIT:
784 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
785 APE_HOST_SEG_SIG_MAGIC);
786 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
787 APE_HOST_SEG_LEN_MAGIC);
788 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
789 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
790 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
791 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
792 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
793 APE_HOST_BEHAV_NO_PHYLOCK);
794 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
795 TG3_APE_HOST_DRVR_STATE_START);
796
797 event = APE_EVENT_STATUS_STATE_START;
798 break;
799 case RESET_KIND_SHUTDOWN:
800 /* With the interface we are currently using,
801 * APE does not track driver state. Wiping
802 * out the HOST SEGMENT SIGNATURE forces
803 * the APE to assume OS absent status.
804 */
805 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
806
807 if (device_may_wakeup(&tp->pdev->dev) &&
808 tg3_flag(tp, WOL_ENABLE)) {
809 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
810 TG3_APE_HOST_WOL_SPEED_AUTO);
811 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
812 } else
813 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
814
815 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
816
817 event = APE_EVENT_STATUS_STATE_UNLOAD;
818 break;
819 case RESET_KIND_SUSPEND:
820 event = APE_EVENT_STATUS_STATE_SUSPEND;
821 break;
822 default:
823 return;
824 }
825
826 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
827
828 tg3_ape_send_event(tp, event);
829}
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831static void tg3_disable_ints(struct tg3 *tp)
832{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000833 int i;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 tw32(TG3PCI_MISC_HOST_CTRL,
836 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000837 for (i = 0; i < tp->irq_max; i++)
838 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841static void tg3_enable_ints(struct tg3 *tp)
842{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000843 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000844
Michael Chanbbe832c2005-06-24 20:20:04 -0700845 tp->irq_sync = 0;
846 wmb();
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 tw32(TG3PCI_MISC_HOST_CTRL,
849 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000850
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000851 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000852 for (i = 0; i < tp->irq_cnt; i++) {
853 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000854
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000855 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000856 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000857 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
858
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000859 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000860 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000861
862 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000863 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000864 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
865 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
866 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000867 tw32(HOSTCC_MODE, tp->coal_now);
868
869 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Matt Carlson17375d22009-08-28 14:02:18 +0000872static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700873{
Matt Carlson17375d22009-08-28 14:02:18 +0000874 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000875 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700876 unsigned int work_exists = 0;
877
878 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000879 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700880 if (sblk->status & SD_STATUS_LINK_CHG)
881 work_exists = 1;
882 }
Matt Carlsonf891ea12012-04-24 13:37:01 +0000883
884 /* check for TX work to do */
885 if (sblk->idx[0].tx_consumer != tnapi->tx_cons)
886 work_exists = 1;
887
888 /* check for RX work to do */
889 if (tnapi->rx_rcb_prod_idx &&
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000890 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700891 work_exists = 1;
892
893 return work_exists;
894}
895
Matt Carlson17375d22009-08-28 14:02:18 +0000896/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700897 * similar to tg3_enable_ints, but it accurately determines whether there
898 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400899 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 */
Matt Carlson17375d22009-08-28 14:02:18 +0000901static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Matt Carlson17375d22009-08-28 14:02:18 +0000903 struct tg3 *tp = tnapi->tp;
904
Matt Carlson898a56f2009-08-28 14:02:40 +0000905 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 mmiowb();
907
David S. Millerfac9b832005-05-18 22:46:34 -0700908 /* When doing tagged status, this work check is unnecessary.
909 * The last_tag we write above tells the chip which piece of
910 * work we've completed.
911 */
Joe Perches63c3a662011-04-26 08:12:10 +0000912 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700913 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000914 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917static void tg3_switch_clocks(struct tg3 *tp)
918{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000919 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 u32 orig_clock_ctrl;
921
Joe Perches63c3a662011-04-26 08:12:10 +0000922 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700923 return;
924
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000925 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 orig_clock_ctrl = clock_ctrl;
928 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
929 CLOCK_CTRL_CLKRUN_OENABLE |
930 0x1f);
931 tp->pci_clock_ctrl = clock_ctrl;
932
Joe Perches63c3a662011-04-26 08:12:10 +0000933 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800935 tw32_wait_f(TG3PCI_CLOCK_CTRL,
936 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
938 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800939 tw32_wait_f(TG3PCI_CLOCK_CTRL,
940 clock_ctrl |
941 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
942 40);
943 tw32_wait_f(TG3PCI_CLOCK_CTRL,
944 clock_ctrl | (CLOCK_CTRL_ALTCLK),
945 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800947 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
950#define PHY_BUSY_LOOPS 5000
951
952static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
953{
954 u32 frame_val;
955 unsigned int loops;
956 int ret;
957
958 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
959 tw32_f(MAC_MI_MODE,
960 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
961 udelay(80);
962 }
963
964 *val = 0x0;
965
Matt Carlson882e9792009-09-01 13:21:36 +0000966 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 MI_COM_PHY_ADDR_MASK);
968 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
969 MI_COM_REG_ADDR_MASK);
970 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 tw32_f(MAC_MI_COM, frame_val);
973
974 loops = PHY_BUSY_LOOPS;
975 while (loops != 0) {
976 udelay(10);
977 frame_val = tr32(MAC_MI_COM);
978
979 if ((frame_val & MI_COM_BUSY) == 0) {
980 udelay(5);
981 frame_val = tr32(MAC_MI_COM);
982 break;
983 }
984 loops -= 1;
985 }
986
987 ret = -EBUSY;
988 if (loops != 0) {
989 *val = frame_val & MI_COM_DATA_MASK;
990 ret = 0;
991 }
992
993 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
994 tw32_f(MAC_MI_MODE, tp->mi_mode);
995 udelay(80);
996 }
997
998 return ret;
999}
1000
1001static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
1002{
1003 u32 frame_val;
1004 unsigned int loops;
1005 int ret;
1006
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001007 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +00001008 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -07001009 return 0;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1012 tw32_f(MAC_MI_MODE,
1013 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
1014 udelay(80);
1015 }
1016
Matt Carlson882e9792009-09-01 13:21:36 +00001017 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 MI_COM_PHY_ADDR_MASK);
1019 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
1020 MI_COM_REG_ADDR_MASK);
1021 frame_val |= (val & MI_COM_DATA_MASK);
1022 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 tw32_f(MAC_MI_COM, frame_val);
1025
1026 loops = PHY_BUSY_LOOPS;
1027 while (loops != 0) {
1028 udelay(10);
1029 frame_val = tr32(MAC_MI_COM);
1030 if ((frame_val & MI_COM_BUSY) == 0) {
1031 udelay(5);
1032 frame_val = tr32(MAC_MI_COM);
1033 break;
1034 }
1035 loops -= 1;
1036 }
1037
1038 ret = -EBUSY;
1039 if (loops != 0)
1040 ret = 0;
1041
1042 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
1043 tw32_f(MAC_MI_MODE, tp->mi_mode);
1044 udelay(80);
1045 }
1046
1047 return ret;
1048}
1049
Matt Carlsonb0988c12011-04-20 07:57:39 +00001050static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
1051{
1052 int err;
1053
1054 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1055 if (err)
1056 goto done;
1057
1058 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1059 if (err)
1060 goto done;
1061
1062 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1063 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1064 if (err)
1065 goto done;
1066
1067 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
1068
1069done:
1070 return err;
1071}
1072
1073static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
1074{
1075 int err;
1076
1077 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
1078 if (err)
1079 goto done;
1080
1081 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
1082 if (err)
1083 goto done;
1084
1085 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
1086 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
1087 if (err)
1088 goto done;
1089
1090 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
1091
1092done:
1093 return err;
1094}
1095
1096static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
1097{
1098 int err;
1099
1100 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1101 if (!err)
1102 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
1103
1104 return err;
1105}
1106
1107static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
1108{
1109 int err;
1110
1111 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
1112 if (!err)
1113 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
1114
1115 return err;
1116}
1117
Matt Carlson15ee95c2011-04-20 07:57:40 +00001118static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1119{
1120 int err;
1121
1122 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1123 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1124 MII_TG3_AUXCTL_SHDWSEL_MISC);
1125 if (!err)
1126 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1127
1128 return err;
1129}
1130
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001131static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1132{
1133 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1134 set |= MII_TG3_AUXCTL_MISC_WREN;
1135
1136 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1137}
1138
Matt Carlson1d36ba42011-04-20 07:57:42 +00001139#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
1140 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1141 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
1142 MII_TG3_AUXCTL_ACTL_TX_6DB)
1143
1144#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
1145 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1146 MII_TG3_AUXCTL_ACTL_TX_6DB);
1147
Matt Carlson95e28692008-05-25 23:44:14 -07001148static int tg3_bmcr_reset(struct tg3 *tp)
1149{
1150 u32 phy_control;
1151 int limit, err;
1152
1153 /* OK, reset it, and poll the BMCR_RESET bit until it
1154 * clears or we time out.
1155 */
1156 phy_control = BMCR_RESET;
1157 err = tg3_writephy(tp, MII_BMCR, phy_control);
1158 if (err != 0)
1159 return -EBUSY;
1160
1161 limit = 5000;
1162 while (limit--) {
1163 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1164 if (err != 0)
1165 return -EBUSY;
1166
1167 if ((phy_control & BMCR_RESET) == 0) {
1168 udelay(40);
1169 break;
1170 }
1171 udelay(10);
1172 }
Roel Kluind4675b52009-02-12 16:33:27 -08001173 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001174 return -EBUSY;
1175
1176 return 0;
1177}
1178
Matt Carlson158d7ab2008-05-29 01:37:54 -07001179static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1180{
Francois Romieu3d165432009-01-19 16:56:50 -08001181 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001182 u32 val;
1183
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001184 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001185
1186 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001187 val = -EIO;
1188
1189 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001190
1191 return val;
1192}
1193
1194static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1195{
Francois Romieu3d165432009-01-19 16:56:50 -08001196 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001197 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001198
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001199 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001200
1201 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001202 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001203
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001204 spin_unlock_bh(&tp->lock);
1205
1206 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001207}
1208
1209static int tg3_mdio_reset(struct mii_bus *bp)
1210{
1211 return 0;
1212}
1213
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001214static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001215{
1216 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001217 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001218
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001219 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001220 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001221 case PHY_ID_BCM50610:
1222 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001223 val = MAC_PHYCFG2_50610_LED_MODES;
1224 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001225 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001226 val = MAC_PHYCFG2_AC131_LED_MODES;
1227 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001228 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001229 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1230 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001231 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001232 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1233 break;
1234 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001235 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001236 }
1237
1238 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1239 tw32(MAC_PHYCFG2, val);
1240
1241 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001242 val &= ~(MAC_PHYCFG1_RGMII_INT |
1243 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1244 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001245 tw32(MAC_PHYCFG1, val);
1246
1247 return;
1248 }
1249
Joe Perches63c3a662011-04-26 08:12:10 +00001250 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001251 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1252 MAC_PHYCFG2_FMODE_MASK_MASK |
1253 MAC_PHYCFG2_GMODE_MASK_MASK |
1254 MAC_PHYCFG2_ACT_MASK_MASK |
1255 MAC_PHYCFG2_QUAL_MASK_MASK |
1256 MAC_PHYCFG2_INBAND_ENABLE;
1257
1258 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001259
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001260 val = tr32(MAC_PHYCFG1);
1261 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1262 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001263 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1264 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001265 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001266 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001267 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1268 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001269 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1270 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1271 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001272
Matt Carlsona9daf362008-05-25 23:49:44 -07001273 val = tr32(MAC_EXT_RGMII_MODE);
1274 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1275 MAC_RGMII_MODE_RX_QUALITY |
1276 MAC_RGMII_MODE_RX_ACTIVITY |
1277 MAC_RGMII_MODE_RX_ENG_DET |
1278 MAC_RGMII_MODE_TX_ENABLE |
1279 MAC_RGMII_MODE_TX_LOWPWR |
1280 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001281 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1282 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001283 val |= MAC_RGMII_MODE_RX_INT_B |
1284 MAC_RGMII_MODE_RX_QUALITY |
1285 MAC_RGMII_MODE_RX_ACTIVITY |
1286 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001287 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001288 val |= MAC_RGMII_MODE_TX_ENABLE |
1289 MAC_RGMII_MODE_TX_LOWPWR |
1290 MAC_RGMII_MODE_TX_RESET;
1291 }
1292 tw32(MAC_EXT_RGMII_MODE, val);
1293}
1294
Matt Carlson158d7ab2008-05-29 01:37:54 -07001295static void tg3_mdio_start(struct tg3 *tp)
1296{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001297 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1298 tw32_f(MAC_MI_MODE, tp->mi_mode);
1299 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001300
Joe Perches63c3a662011-04-26 08:12:10 +00001301 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001302 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1303 tg3_mdio_config_5785(tp);
1304}
1305
1306static int tg3_mdio_init(struct tg3 *tp)
1307{
1308 int i;
1309 u32 reg;
1310 struct phy_device *phydev;
1311
Joe Perches63c3a662011-04-26 08:12:10 +00001312 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001313 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001314
Matt Carlson69f11c92011-07-13 09:27:30 +00001315 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001316
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001317 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1318 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1319 else
1320 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1321 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001322 if (is_serdes)
1323 tp->phy_addr += 7;
1324 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001325 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001326
Matt Carlson158d7ab2008-05-29 01:37:54 -07001327 tg3_mdio_start(tp);
1328
Joe Perches63c3a662011-04-26 08:12:10 +00001329 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001330 return 0;
1331
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001332 tp->mdio_bus = mdiobus_alloc();
1333 if (tp->mdio_bus == NULL)
1334 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001335
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001336 tp->mdio_bus->name = "tg3 mdio bus";
1337 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001338 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001339 tp->mdio_bus->priv = tp;
1340 tp->mdio_bus->parent = &tp->pdev->dev;
1341 tp->mdio_bus->read = &tg3_mdio_read;
1342 tp->mdio_bus->write = &tg3_mdio_write;
1343 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001344 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001345 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001346
1347 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001348 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001349
1350 /* The bus registration will look for all the PHYs on the mdio bus.
1351 * Unfortunately, it does not ensure the PHY is powered up before
1352 * accessing the PHY ID registers. A chip reset is the
1353 * quickest way to bring the device back to an operational state..
1354 */
1355 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1356 tg3_bmcr_reset(tp);
1357
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001358 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001359 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001360 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001361 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001362 return i;
1363 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001364
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001365 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001366
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001367 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001368 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001369 mdiobus_unregister(tp->mdio_bus);
1370 mdiobus_free(tp->mdio_bus);
1371 return -ENODEV;
1372 }
1373
1374 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001375 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001376 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001377 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001378 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001379 case PHY_ID_BCM50610:
1380 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001381 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001382 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001383 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001384 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001385 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001386 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001387 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001388 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001389 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001390 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001391 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001392 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001393 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001394 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001395 case PHY_ID_RTL8201E:
1396 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001397 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001398 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001399 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001400 break;
1401 }
1402
Joe Perches63c3a662011-04-26 08:12:10 +00001403 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001404
1405 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1406 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001407
1408 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001409}
1410
1411static void tg3_mdio_fini(struct tg3 *tp)
1412{
Joe Perches63c3a662011-04-26 08:12:10 +00001413 if (tg3_flag(tp, MDIOBUS_INITED)) {
1414 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001415 mdiobus_unregister(tp->mdio_bus);
1416 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001417 }
1418}
1419
Matt Carlson95e28692008-05-25 23:44:14 -07001420/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001421static inline void tg3_generate_fw_event(struct tg3 *tp)
1422{
1423 u32 val;
1424
1425 val = tr32(GRC_RX_CPU_EVENT);
1426 val |= GRC_RX_CPU_DRIVER_EVENT;
1427 tw32_f(GRC_RX_CPU_EVENT, val);
1428
1429 tp->last_event_jiffies = jiffies;
1430}
1431
1432#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1433
1434/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001435static void tg3_wait_for_event_ack(struct tg3 *tp)
1436{
1437 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001438 unsigned int delay_cnt;
1439 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001440
Matt Carlson4ba526c2008-08-15 14:10:04 -07001441 /* If enough time has passed, no wait is necessary. */
1442 time_remain = (long)(tp->last_event_jiffies + 1 +
1443 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1444 (long)jiffies;
1445 if (time_remain < 0)
1446 return;
1447
1448 /* Check if we can shorten the wait time. */
1449 delay_cnt = jiffies_to_usecs(time_remain);
1450 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1451 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1452 delay_cnt = (delay_cnt >> 3) + 1;
1453
1454 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001455 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1456 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001457 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001458 }
1459}
1460
1461/* tp->lock is held. */
Matt Carlsonb28f3892012-02-13 15:20:12 +00001462static void tg3_phy_gather_ump_data(struct tg3 *tp, u32 *data)
Matt Carlson95e28692008-05-25 23:44:14 -07001463{
Matt Carlsonb28f3892012-02-13 15:20:12 +00001464 u32 reg, val;
Matt Carlson95e28692008-05-25 23:44:14 -07001465
1466 val = 0;
1467 if (!tg3_readphy(tp, MII_BMCR, &reg))
1468 val = reg << 16;
1469 if (!tg3_readphy(tp, MII_BMSR, &reg))
1470 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001471 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001472
1473 val = 0;
1474 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1475 val = reg << 16;
1476 if (!tg3_readphy(tp, MII_LPA, &reg))
1477 val |= (reg & 0xffff);
Matt Carlsonb28f3892012-02-13 15:20:12 +00001478 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001479
1480 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001481 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001482 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1483 val = reg << 16;
1484 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1485 val |= (reg & 0xffff);
1486 }
Matt Carlsonb28f3892012-02-13 15:20:12 +00001487 *data++ = val;
Matt Carlson95e28692008-05-25 23:44:14 -07001488
1489 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1490 val = reg << 16;
1491 else
1492 val = 0;
Matt Carlsonb28f3892012-02-13 15:20:12 +00001493 *data++ = val;
1494}
1495
1496/* tp->lock is held. */
1497static void tg3_ump_link_report(struct tg3 *tp)
1498{
1499 u32 data[4];
1500
1501 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
1502 return;
1503
1504 tg3_phy_gather_ump_data(tp, data);
1505
1506 tg3_wait_for_event_ack(tp);
1507
1508 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1509 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1510 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x0, data[0]);
1511 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x4, data[1]);
1512 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0x8, data[2]);
1513 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 0xc, data[3]);
Matt Carlson95e28692008-05-25 23:44:14 -07001514
Matt Carlson4ba526c2008-08-15 14:10:04 -07001515 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001516}
1517
Matt Carlson8d5a89b2011-08-31 11:44:51 +00001518/* tp->lock is held. */
1519static void tg3_stop_fw(struct tg3 *tp)
1520{
1521 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
1522 /* Wait for RX cpu to ACK the previous event. */
1523 tg3_wait_for_event_ack(tp);
1524
1525 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
1526
1527 tg3_generate_fw_event(tp);
1528
1529 /* Wait for RX cpu to ACK this event. */
1530 tg3_wait_for_event_ack(tp);
1531 }
1532}
1533
Matt Carlsonfd6d3f02011-08-31 11:44:52 +00001534/* tp->lock is held. */
1535static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
1536{
1537 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
1538 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
1539
1540 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1541 switch (kind) {
1542 case RESET_KIND_INIT:
1543 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1544 DRV_STATE_START);
1545 break;
1546
1547 case RESET_KIND_SHUTDOWN:
1548 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1549 DRV_STATE_UNLOAD);
1550 break;
1551
1552 case RESET_KIND_SUSPEND:
1553 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1554 DRV_STATE_SUSPEND);
1555 break;
1556
1557 default:
1558 break;
1559 }
1560 }
1561
1562 if (kind == RESET_KIND_INIT ||
1563 kind == RESET_KIND_SUSPEND)
1564 tg3_ape_driver_state_change(tp, kind);
1565}
1566
1567/* tp->lock is held. */
1568static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
1569{
1570 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
1571 switch (kind) {
1572 case RESET_KIND_INIT:
1573 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1574 DRV_STATE_START_DONE);
1575 break;
1576
1577 case RESET_KIND_SHUTDOWN:
1578 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1579 DRV_STATE_UNLOAD_DONE);
1580 break;
1581
1582 default:
1583 break;
1584 }
1585 }
1586
1587 if (kind == RESET_KIND_SHUTDOWN)
1588 tg3_ape_driver_state_change(tp, kind);
1589}
1590
1591/* tp->lock is held. */
1592static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
1593{
1594 if (tg3_flag(tp, ENABLE_ASF)) {
1595 switch (kind) {
1596 case RESET_KIND_INIT:
1597 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1598 DRV_STATE_START);
1599 break;
1600
1601 case RESET_KIND_SHUTDOWN:
1602 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1603 DRV_STATE_UNLOAD);
1604 break;
1605
1606 case RESET_KIND_SUSPEND:
1607 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
1608 DRV_STATE_SUSPEND);
1609 break;
1610
1611 default:
1612 break;
1613 }
1614 }
1615}
1616
1617static int tg3_poll_fw(struct tg3 *tp)
1618{
1619 int i;
1620 u32 val;
1621
1622 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
1623 /* Wait up to 20ms for init done. */
1624 for (i = 0; i < 200; i++) {
1625 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
1626 return 0;
1627 udelay(100);
1628 }
1629 return -ENODEV;
1630 }
1631
1632 /* Wait for firmware initialization to complete. */
1633 for (i = 0; i < 100000; i++) {
1634 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
1635 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
1636 break;
1637 udelay(10);
1638 }
1639
1640 /* Chip might not be fitted with firmware. Some Sun onboard
1641 * parts are configured like that. So don't signal the timeout
1642 * of the above loop as an error, but do report the lack of
1643 * running firmware once.
1644 */
1645 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
1646 tg3_flag_set(tp, NO_FWARE_REPORTED);
1647
1648 netdev_info(tp->dev, "No firmware running\n");
1649 }
1650
1651 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
1652 /* The 57765 A0 needs a little more
1653 * time to do some important work.
1654 */
1655 mdelay(10);
1656 }
1657
1658 return 0;
1659}
1660
Matt Carlson95e28692008-05-25 23:44:14 -07001661static void tg3_link_report(struct tg3 *tp)
1662{
1663 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001664 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001665 tg3_ump_link_report(tp);
1666 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001667 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1668 (tp->link_config.active_speed == SPEED_1000 ?
1669 1000 :
1670 (tp->link_config.active_speed == SPEED_100 ?
1671 100 : 10)),
1672 (tp->link_config.active_duplex == DUPLEX_FULL ?
1673 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001674
Joe Perches05dbe002010-02-17 19:44:19 +00001675 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1676 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1677 "on" : "off",
1678 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1679 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001680
1681 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1682 netdev_info(tp->dev, "EEE is %s\n",
1683 tp->setlpicnt ? "enabled" : "disabled");
1684
Matt Carlson95e28692008-05-25 23:44:14 -07001685 tg3_ump_link_report(tp);
1686 }
1687}
1688
Matt Carlson95e28692008-05-25 23:44:14 -07001689static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1690{
1691 u16 miireg;
1692
Steve Glendinninge18ce342008-12-16 02:00:00 -08001693 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001694 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001695 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001696 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001697 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001698 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1699 else
1700 miireg = 0;
1701
1702 return miireg;
1703}
1704
Matt Carlson95e28692008-05-25 23:44:14 -07001705static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1706{
1707 u8 cap = 0;
1708
Matt Carlsonf3791cd2011-11-21 15:01:17 +00001709 if (lcladv & rmtadv & ADVERTISE_1000XPAUSE) {
1710 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
1711 } else if (lcladv & rmtadv & ADVERTISE_1000XPSE_ASYM) {
1712 if (lcladv & ADVERTISE_1000XPAUSE)
1713 cap = FLOW_CTRL_RX;
1714 if (rmtadv & ADVERTISE_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001715 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001716 }
1717
1718 return cap;
1719}
1720
Matt Carlsonf51f3562008-05-25 23:45:08 -07001721static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001722{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001723 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001724 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001725 u32 old_rx_mode = tp->rx_mode;
1726 u32 old_tx_mode = tp->tx_mode;
1727
Joe Perches63c3a662011-04-26 08:12:10 +00001728 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001729 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001730 else
1731 autoneg = tp->link_config.autoneg;
1732
Joe Perches63c3a662011-04-26 08:12:10 +00001733 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001734 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001735 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001736 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001737 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001738 } else
1739 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001740
Matt Carlsonf51f3562008-05-25 23:45:08 -07001741 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001742
Steve Glendinninge18ce342008-12-16 02:00:00 -08001743 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001744 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1745 else
1746 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1747
Matt Carlsonf51f3562008-05-25 23:45:08 -07001748 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001749 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001750
Steve Glendinninge18ce342008-12-16 02:00:00 -08001751 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001752 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1753 else
1754 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1755
Matt Carlsonf51f3562008-05-25 23:45:08 -07001756 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001757 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001758}
1759
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001760static void tg3_adjust_link(struct net_device *dev)
1761{
1762 u8 oldflowctrl, linkmesg = 0;
1763 u32 mac_mode, lcl_adv, rmt_adv;
1764 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001765 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001766
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001767 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001768
1769 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1770 MAC_MODE_HALF_DUPLEX);
1771
1772 oldflowctrl = tp->link_config.active_flowctrl;
1773
1774 if (phydev->link) {
1775 lcl_adv = 0;
1776 rmt_adv = 0;
1777
1778 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1779 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001780 else if (phydev->speed == SPEED_1000 ||
1781 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001782 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001783 else
1784 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001785
1786 if (phydev->duplex == DUPLEX_HALF)
1787 mac_mode |= MAC_MODE_HALF_DUPLEX;
1788 else {
Matt Carlsonf88788f2011-12-14 11:10:00 +00001789 lcl_adv = mii_advertise_flowctrl(
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001790 tp->link_config.flowctrl);
1791
1792 if (phydev->pause)
1793 rmt_adv = LPA_PAUSE_CAP;
1794 if (phydev->asym_pause)
1795 rmt_adv |= LPA_PAUSE_ASYM;
1796 }
1797
1798 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1799 } else
1800 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1801
1802 if (mac_mode != tp->mac_mode) {
1803 tp->mac_mode = mac_mode;
1804 tw32_f(MAC_MODE, tp->mac_mode);
1805 udelay(40);
1806 }
1807
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001808 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1809 if (phydev->speed == SPEED_10)
1810 tw32(MAC_MI_STAT,
1811 MAC_MI_STAT_10MBPS_MODE |
1812 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1813 else
1814 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1815 }
1816
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001817 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1818 tw32(MAC_TX_LENGTHS,
1819 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1820 (6 << TX_LENGTHS_IPG_SHIFT) |
1821 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1822 else
1823 tw32(MAC_TX_LENGTHS,
1824 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1825 (6 << TX_LENGTHS_IPG_SHIFT) |
1826 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1827
Matt Carlson34655ad2012-02-22 12:35:18 +00001828 if (phydev->link != tp->old_link ||
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001829 phydev->speed != tp->link_config.active_speed ||
1830 phydev->duplex != tp->link_config.active_duplex ||
1831 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001832 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001833
Matt Carlson34655ad2012-02-22 12:35:18 +00001834 tp->old_link = phydev->link;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001835 tp->link_config.active_speed = phydev->speed;
1836 tp->link_config.active_duplex = phydev->duplex;
1837
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001838 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001839
1840 if (linkmesg)
1841 tg3_link_report(tp);
1842}
1843
1844static int tg3_phy_init(struct tg3 *tp)
1845{
1846 struct phy_device *phydev;
1847
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001848 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001849 return 0;
1850
1851 /* Bring the PHY back to a known state. */
1852 tg3_bmcr_reset(tp);
1853
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001854 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001855
1856 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001857 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001858 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001859 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001860 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001861 return PTR_ERR(phydev);
1862 }
1863
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001864 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001865 switch (phydev->interface) {
1866 case PHY_INTERFACE_MODE_GMII:
1867 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001868 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001869 phydev->supported &= (PHY_GBIT_FEATURES |
1870 SUPPORTED_Pause |
1871 SUPPORTED_Asym_Pause);
1872 break;
1873 }
1874 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001875 case PHY_INTERFACE_MODE_MII:
1876 phydev->supported &= (PHY_BASIC_FEATURES |
1877 SUPPORTED_Pause |
1878 SUPPORTED_Asym_Pause);
1879 break;
1880 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001881 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001882 return -EINVAL;
1883 }
1884
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001885 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001886
1887 phydev->advertising = phydev->supported;
1888
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001889 return 0;
1890}
1891
1892static void tg3_phy_start(struct tg3 *tp)
1893{
1894 struct phy_device *phydev;
1895
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001896 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001897 return;
1898
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001899 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001900
Matt Carlson80096062010-08-02 11:26:06 +00001901 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1902 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonc6700ce2012-02-13 15:20:15 +00001903 phydev->speed = tp->link_config.speed;
1904 phydev->duplex = tp->link_config.duplex;
1905 phydev->autoneg = tp->link_config.autoneg;
1906 phydev->advertising = tp->link_config.advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001907 }
1908
1909 phy_start(phydev);
1910
1911 phy_start_aneg(phydev);
1912}
1913
1914static void tg3_phy_stop(struct tg3 *tp)
1915{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001916 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001917 return;
1918
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001919 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001920}
1921
1922static void tg3_phy_fini(struct tg3 *tp)
1923{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001924 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001925 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001926 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001927 }
1928}
1929
Matt Carlson941ec902011-08-19 13:58:23 +00001930static int tg3_phy_set_extloopbk(struct tg3 *tp)
1931{
1932 int err;
1933 u32 val;
1934
1935 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
1936 return 0;
1937
1938 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
1939 /* Cannot do read-modify-write on 5401 */
1940 err = tg3_phy_auxctl_write(tp,
1941 MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
1942 MII_TG3_AUXCTL_ACTL_EXTLOOPBK |
1943 0x4c20);
1944 goto done;
1945 }
1946
1947 err = tg3_phy_auxctl_read(tp,
1948 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
1949 if (err)
1950 return err;
1951
1952 val |= MII_TG3_AUXCTL_ACTL_EXTLOOPBK;
1953 err = tg3_phy_auxctl_write(tp,
1954 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, val);
1955
1956done:
1957 return err;
1958}
1959
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001960static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1961{
1962 u32 phytest;
1963
1964 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1965 u32 phy;
1966
1967 tg3_writephy(tp, MII_TG3_FET_TEST,
1968 phytest | MII_TG3_FET_SHADOW_EN);
1969 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1970 if (enable)
1971 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1972 else
1973 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1974 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1975 }
1976 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1977 }
1978}
1979
Matt Carlson6833c042008-11-21 17:18:59 -08001980static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1981{
1982 u32 reg;
1983
Joe Perches63c3a662011-04-26 08:12:10 +00001984 if (!tg3_flag(tp, 5705_PLUS) ||
1985 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001986 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001987 return;
1988
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001989 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001990 tg3_phy_fet_toggle_apd(tp, enable);
1991 return;
1992 }
1993
Matt Carlson6833c042008-11-21 17:18:59 -08001994 reg = MII_TG3_MISC_SHDW_WREN |
1995 MII_TG3_MISC_SHDW_SCR5_SEL |
1996 MII_TG3_MISC_SHDW_SCR5_LPED |
1997 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1998 MII_TG3_MISC_SHDW_SCR5_SDTL |
1999 MII_TG3_MISC_SHDW_SCR5_C125OE;
2000 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
2001 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
2002
2003 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2004
2005
2006 reg = MII_TG3_MISC_SHDW_WREN |
2007 MII_TG3_MISC_SHDW_APD_SEL |
2008 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
2009 if (enable)
2010 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
2011
2012 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
2013}
2014
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002015static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
2016{
2017 u32 phy;
2018
Joe Perches63c3a662011-04-26 08:12:10 +00002019 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002020 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002021 return;
2022
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002023 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002024 u32 ephy;
2025
Matt Carlson535ef6e2009-08-25 10:09:36 +00002026 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
2027 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
2028
2029 tg3_writephy(tp, MII_TG3_FET_TEST,
2030 ephy | MII_TG3_FET_SHADOW_EN);
2031 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002032 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00002033 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002034 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00002035 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
2036 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002037 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00002038 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002039 }
2040 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00002041 int ret;
2042
2043 ret = tg3_phy_auxctl_read(tp,
2044 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
2045 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002046 if (enable)
2047 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
2048 else
2049 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002050 tg3_phy_auxctl_write(tp,
2051 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002052 }
2053 }
2054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056static void tg3_phy_set_wirespeed(struct tg3 *tp)
2057{
Matt Carlson15ee95c2011-04-20 07:57:40 +00002058 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 u32 val;
2060
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002061 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 return;
2063
Matt Carlson15ee95c2011-04-20 07:57:40 +00002064 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
2065 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002066 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
2067 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002070static void tg3_phy_apply_otp(struct tg3 *tp)
2071{
2072 u32 otp, phy;
2073
2074 if (!tp->phy_otp)
2075 return;
2076
2077 otp = tp->phy_otp;
2078
Matt Carlson1d36ba42011-04-20 07:57:42 +00002079 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
2080 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002081
2082 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
2083 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
2084 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
2085
2086 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
2087 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
2088 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
2089
2090 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
2091 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
2092 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
2093
2094 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
2095 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
2096
2097 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
2098 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
2099
2100 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
2101 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
2102 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
2103
Matt Carlson1d36ba42011-04-20 07:57:42 +00002104 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002105}
2106
Matt Carlson52b02d02010-10-14 10:37:41 +00002107static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
2108{
2109 u32 val;
2110
2111 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
2112 return;
2113
2114 tp->setlpicnt = 0;
2115
2116 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
2117 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00002118 tp->link_config.active_duplex == DUPLEX_FULL &&
2119 (tp->link_config.active_speed == SPEED_100 ||
2120 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00002121 u32 eeectl;
2122
2123 if (tp->link_config.active_speed == SPEED_1000)
2124 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
2125 else
2126 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
2127
2128 tw32(TG3_CPMU_EEE_CTRL, eeectl);
2129
Matt Carlson3110f5f52010-12-06 08:28:50 +00002130 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
2131 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00002132
Matt Carlsonb0c59432011-05-19 12:12:48 +00002133 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
2134 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00002135 tp->setlpicnt = 2;
2136 }
2137
2138 if (!tp->setlpicnt) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002139 if (current_link_up == 1 &&
2140 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2141 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
2142 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2143 }
2144
Matt Carlson52b02d02010-10-14 10:37:41 +00002145 val = tr32(TG3_CPMU_EEE_MODE);
2146 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
2147 }
2148}
2149
Matt Carlsonb0c59432011-05-19 12:12:48 +00002150static void tg3_phy_eee_enable(struct tg3 *tp)
2151{
2152 u32 val;
2153
2154 if (tp->link_config.active_speed == SPEED_1000 &&
2155 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2156 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00002157 tg3_flag(tp, 57765_CLASS)) &&
Matt Carlsonb0c59432011-05-19 12:12:48 +00002158 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00002159 val = MII_TG3_DSP_TAP26_ALNOKO |
2160 MII_TG3_DSP_TAP26_RMRXSTO;
2161 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Matt Carlsonb0c59432011-05-19 12:12:48 +00002162 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2163 }
2164
2165 val = tr32(TG3_CPMU_EEE_MODE);
2166 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
2167}
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169static int tg3_wait_macro_done(struct tg3 *tp)
2170{
2171 int limit = 100;
2172
2173 while (limit--) {
2174 u32 tmp32;
2175
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002176 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if ((tmp32 & 0x1000) == 0)
2178 break;
2179 }
2180 }
Roel Kluind4675b52009-02-12 16:33:27 -08002181 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return -EBUSY;
2183
2184 return 0;
2185}
2186
2187static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
2188{
2189 static const u32 test_pat[4][6] = {
2190 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
2191 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
2192 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
2193 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
2194 };
2195 int chan;
2196
2197 for (chan = 0; chan < 4; chan++) {
2198 int i;
2199
2200 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2201 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002202 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 for (i = 0; i < 6; i++)
2205 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
2206 test_pat[chan][i]);
2207
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002208 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 if (tg3_wait_macro_done(tp)) {
2210 *resetp = 1;
2211 return -EBUSY;
2212 }
2213
2214 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2215 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002216 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 if (tg3_wait_macro_done(tp)) {
2218 *resetp = 1;
2219 return -EBUSY;
2220 }
2221
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002222 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (tg3_wait_macro_done(tp)) {
2224 *resetp = 1;
2225 return -EBUSY;
2226 }
2227
2228 for (i = 0; i < 6; i += 2) {
2229 u32 low, high;
2230
2231 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
2232 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
2233 tg3_wait_macro_done(tp)) {
2234 *resetp = 1;
2235 return -EBUSY;
2236 }
2237 low &= 0x7fff;
2238 high &= 0x000f;
2239 if (low != test_pat[chan][i] ||
2240 high != test_pat[chan][i+1]) {
2241 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
2242 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
2243 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
2244
2245 return -EBUSY;
2246 }
2247 }
2248 }
2249
2250 return 0;
2251}
2252
2253static int tg3_phy_reset_chanpat(struct tg3 *tp)
2254{
2255 int chan;
2256
2257 for (chan = 0; chan < 4; chan++) {
2258 int i;
2259
2260 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
2261 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002262 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 for (i = 0; i < 6; i++)
2264 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002265 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 if (tg3_wait_macro_done(tp))
2267 return -EBUSY;
2268 }
2269
2270 return 0;
2271}
2272
2273static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
2274{
2275 u32 reg32, phy9_orig;
2276 int retries, do_phy_reset, err;
2277
2278 retries = 10;
2279 do_phy_reset = 1;
2280 do {
2281 if (do_phy_reset) {
2282 err = tg3_bmcr_reset(tp);
2283 if (err)
2284 return err;
2285 do_phy_reset = 0;
2286 }
2287
2288 /* Disable transmitter and interrupt. */
2289 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2290 continue;
2291
2292 reg32 |= 0x3000;
2293 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2294
2295 /* Set full-duplex, 1000 mbps. */
2296 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002297 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002300 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 continue;
2302
Matt Carlson221c5632011-06-13 13:39:01 +00002303 tg3_writephy(tp, MII_CTRL1000,
2304 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Matt Carlson1d36ba42011-04-20 07:57:42 +00002306 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2307 if (err)
2308 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
2310 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002311 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
2313 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2314 if (!err)
2315 break;
2316 } while (--retries);
2317
2318 err = tg3_phy_reset_chanpat(tp);
2319 if (err)
2320 return err;
2321
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002322 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002325 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Matt Carlson1d36ba42011-04-20 07:57:42 +00002327 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Matt Carlson221c5632011-06-13 13:39:01 +00002329 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
2331 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2332 reg32 &= ~0x3000;
2333 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2334 } else if (!err)
2335 err = -EBUSY;
2336
2337 return err;
2338}
2339
2340/* This will reset the tigon3 PHY if there is no valid
2341 * link unless the FORCE argument is non-zero.
2342 */
2343static int tg3_phy_reset(struct tg3 *tp)
2344{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002345 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 int err;
2347
Michael Chan60189dd2006-12-17 17:08:07 -08002348 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002349 val = tr32(GRC_MISC_CFG);
2350 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2351 udelay(40);
2352 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002353 err = tg3_readphy(tp, MII_BMSR, &val);
2354 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (err != 0)
2356 return -EBUSY;
2357
Michael Chanc8e1e822006-04-29 18:55:17 -07002358 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2359 netif_carrier_off(tp->dev);
2360 tg3_link_report(tp);
2361 }
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2364 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2365 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2366 err = tg3_phy_reset_5703_4_5(tp);
2367 if (err)
2368 return err;
2369 goto out;
2370 }
2371
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002372 cpmuctrl = 0;
2373 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2374 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2375 cpmuctrl = tr32(TG3_CPMU_CTRL);
2376 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2377 tw32(TG3_CPMU_CTRL,
2378 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2379 }
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 err = tg3_bmcr_reset(tp);
2382 if (err)
2383 return err;
2384
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002385 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002386 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2387 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002388
2389 tw32(TG3_CPMU_CTRL, cpmuctrl);
2390 }
2391
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002392 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2393 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002394 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2395 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2396 CPMU_LSPD_1000MB_MACCLK_12_5) {
2397 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2398 udelay(40);
2399 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2400 }
2401 }
2402
Joe Perches63c3a662011-04-26 08:12:10 +00002403 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002404 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002405 return 0;
2406
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002407 tg3_phy_apply_otp(tp);
2408
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002409 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002410 tg3_phy_toggle_apd(tp, true);
2411 else
2412 tg3_phy_toggle_apd(tp, false);
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002415 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2416 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002417 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2418 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002419 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002421
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002422 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002423 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2424 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002426
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002427 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002428 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2429 tg3_phydsp_write(tp, 0x000a, 0x310b);
2430 tg3_phydsp_write(tp, 0x201f, 0x9506);
2431 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2432 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2433 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002434 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002435 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2436 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2437 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2438 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2439 tg3_writephy(tp, MII_TG3_TEST1,
2440 MII_TG3_TEST1_TRIM_EN | 0x4);
2441 } else
2442 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2443
2444 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2445 }
Michael Chanc424cb22006-04-29 18:56:34 -07002446 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002447
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 /* Set Extended packet length bit (bit 14) on all chips that */
2449 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002450 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002452 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002453 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002455 err = tg3_phy_auxctl_read(tp,
2456 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2457 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002458 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2459 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
2461
2462 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2463 * jumbo frames transmission.
2464 */
Joe Perches63c3a662011-04-26 08:12:10 +00002465 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002466 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002467 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002468 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
2470
Michael Chan715116a2006-09-27 16:09:25 -07002471 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002472 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002473 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002474 }
2475
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002476 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 tg3_phy_set_wirespeed(tp);
2478 return 0;
2479}
2480
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002481#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2482#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2483#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2484 TG3_GPIO_MSG_NEED_VAUX)
2485#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2486 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2487 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2488 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2489 (TG3_GPIO_MSG_DRVR_PRES << 12))
2490
2491#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2492 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2493 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2494 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2495 (TG3_GPIO_MSG_NEED_VAUX << 12))
2496
2497static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2498{
2499 u32 status, shift;
2500
2501 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2502 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2503 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2504 else
2505 status = tr32(TG3_CPMU_DRV_STATUS);
2506
2507 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2508 status &= ~(TG3_GPIO_MSG_MASK << shift);
2509 status |= (newstat << shift);
2510
2511 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2512 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2513 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2514 else
2515 tw32(TG3_CPMU_DRV_STATUS, status);
2516
2517 return status >> TG3_APE_GPIO_MSG_SHIFT;
2518}
2519
Matt Carlson520b2752011-06-13 13:39:02 +00002520static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2521{
2522 if (!tg3_flag(tp, IS_NIC))
2523 return 0;
2524
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002525 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2526 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2527 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
2528 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2529 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002530
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002531 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2532
2533 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2534 TG3_GRC_LCLCTL_PWRSW_DELAY);
2535
2536 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2537 } else {
2538 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2539 TG3_GRC_LCLCTL_PWRSW_DELAY);
2540 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002541
Matt Carlson520b2752011-06-13 13:39:02 +00002542 return 0;
2543}
2544
2545static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2546{
2547 u32 grc_local_ctrl;
2548
2549 if (!tg3_flag(tp, IS_NIC) ||
2550 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2551 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)
2552 return;
2553
2554 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2555
2556 tw32_wait_f(GRC_LOCAL_CTRL,
2557 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2558 TG3_GRC_LCLCTL_PWRSW_DELAY);
2559
2560 tw32_wait_f(GRC_LOCAL_CTRL,
2561 grc_local_ctrl,
2562 TG3_GRC_LCLCTL_PWRSW_DELAY);
2563
2564 tw32_wait_f(GRC_LOCAL_CTRL,
2565 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2566 TG3_GRC_LCLCTL_PWRSW_DELAY);
2567}
2568
2569static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2570{
2571 if (!tg3_flag(tp, IS_NIC))
2572 return;
2573
2574 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2575 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2576 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2577 (GRC_LCLCTRL_GPIO_OE0 |
2578 GRC_LCLCTRL_GPIO_OE1 |
2579 GRC_LCLCTRL_GPIO_OE2 |
2580 GRC_LCLCTRL_GPIO_OUTPUT0 |
2581 GRC_LCLCTRL_GPIO_OUTPUT1),
2582 TG3_GRC_LCLCTL_PWRSW_DELAY);
2583 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2584 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2585 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2586 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2587 GRC_LCLCTRL_GPIO_OE1 |
2588 GRC_LCLCTRL_GPIO_OE2 |
2589 GRC_LCLCTRL_GPIO_OUTPUT0 |
2590 GRC_LCLCTRL_GPIO_OUTPUT1 |
2591 tp->grc_local_ctrl;
2592 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2593 TG3_GRC_LCLCTL_PWRSW_DELAY);
2594
2595 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2596 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2597 TG3_GRC_LCLCTL_PWRSW_DELAY);
2598
2599 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2600 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2601 TG3_GRC_LCLCTL_PWRSW_DELAY);
2602 } else {
2603 u32 no_gpio2;
2604 u32 grc_local_ctrl = 0;
2605
2606 /* Workaround to prevent overdrawing Amps. */
2607 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2608 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2609 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2610 grc_local_ctrl,
2611 TG3_GRC_LCLCTL_PWRSW_DELAY);
2612 }
2613
2614 /* On 5753 and variants, GPIO2 cannot be used. */
2615 no_gpio2 = tp->nic_sram_data_cfg &
2616 NIC_SRAM_DATA_CFG_NO_GPIO2;
2617
2618 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2619 GRC_LCLCTRL_GPIO_OE1 |
2620 GRC_LCLCTRL_GPIO_OE2 |
2621 GRC_LCLCTRL_GPIO_OUTPUT1 |
2622 GRC_LCLCTRL_GPIO_OUTPUT2;
2623 if (no_gpio2) {
2624 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2625 GRC_LCLCTRL_GPIO_OUTPUT2);
2626 }
2627 tw32_wait_f(GRC_LOCAL_CTRL,
2628 tp->grc_local_ctrl | grc_local_ctrl,
2629 TG3_GRC_LCLCTL_PWRSW_DELAY);
2630
2631 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2632
2633 tw32_wait_f(GRC_LOCAL_CTRL,
2634 tp->grc_local_ctrl | grc_local_ctrl,
2635 TG3_GRC_LCLCTL_PWRSW_DELAY);
2636
2637 if (!no_gpio2) {
2638 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2639 tw32_wait_f(GRC_LOCAL_CTRL,
2640 tp->grc_local_ctrl | grc_local_ctrl,
2641 TG3_GRC_LCLCTL_PWRSW_DELAY);
2642 }
2643 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002644}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002645
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002646static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002647{
2648 u32 msg = 0;
2649
2650 /* Serialize power state transitions */
2651 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2652 return;
2653
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002654 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002655 msg = TG3_GPIO_MSG_NEED_VAUX;
2656
2657 msg = tg3_set_function_status(tp, msg);
2658
2659 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2660 goto done;
2661
2662 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2663 tg3_pwrsrc_switch_to_vaux(tp);
2664 else
2665 tg3_pwrsrc_die_with_vmain(tp);
2666
2667done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002668 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002669}
2670
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002671static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Matt Carlson683644b2011-03-09 16:58:23 +00002673 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Matt Carlson334355a2010-01-20 16:58:10 +00002675 /* The GPIOs do something completely different on 57765. */
Matt Carlson55086ad2011-12-14 11:09:59 +00002676 if (!tg3_flag(tp, IS_NIC) || tg3_flag(tp, 57765_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 return;
2678
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002679 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2680 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2681 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002682 tg3_frob_aux_power_5717(tp, include_wol ?
2683 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002684 return;
2685 }
2686
2687 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002688 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002690 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002691
Michael Chanbc1c7562006-03-20 17:48:03 -08002692 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002693 if (dev_peer) {
2694 struct tg3 *tp_peer = netdev_priv(dev_peer);
2695
Joe Perches63c3a662011-04-26 08:12:10 +00002696 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002697 return;
2698
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002699 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002700 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002701 need_vaux = true;
2702 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002705 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2706 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002707 need_vaux = true;
2708
Matt Carlson520b2752011-06-13 13:39:02 +00002709 if (need_vaux)
2710 tg3_pwrsrc_switch_to_vaux(tp);
2711 else
2712 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
2714
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002715static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2716{
2717 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2718 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002719 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002720 if (speed != SPEED_10)
2721 return 1;
2722 } else if (speed == SPEED_10)
2723 return 1;
2724
2725 return 0;
2726}
2727
Matt Carlson0a459aa2008-11-03 16:54:15 -08002728static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002729{
Matt Carlsonce057f02007-11-12 21:08:03 -08002730 u32 val;
2731
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002732 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002733 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2734 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2735 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2736
2737 sg_dig_ctrl |=
2738 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2739 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2740 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2741 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002742 return;
Michael Chan51297242007-02-13 12:17:57 -08002743 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002744
Michael Chan60189dd2006-12-17 17:08:07 -08002745 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002746 tg3_bmcr_reset(tp);
2747 val = tr32(GRC_MISC_CFG);
2748 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2749 udelay(40);
2750 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002751 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002752 u32 phytest;
2753 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2754 u32 phy;
2755
2756 tg3_writephy(tp, MII_ADVERTISE, 0);
2757 tg3_writephy(tp, MII_BMCR,
2758 BMCR_ANENABLE | BMCR_ANRESTART);
2759
2760 tg3_writephy(tp, MII_TG3_FET_TEST,
2761 phytest | MII_TG3_FET_SHADOW_EN);
2762 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2763 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2764 tg3_writephy(tp,
2765 MII_TG3_FET_SHDW_AUXMODE4,
2766 phy);
2767 }
2768 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2769 }
2770 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002771 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002772 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2773 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002774
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002775 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2776 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2777 MII_TG3_AUXCTL_PCTL_VREG_11V;
2778 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002779 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002780
Michael Chan15c3b692006-03-22 01:06:52 -08002781 /* The PHY should not be powered down on some chips because
2782 * of bugs.
2783 */
2784 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2785 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2786 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlson085f1af2012-04-02 09:01:40 +00002787 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)) ||
2788 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 &&
2789 !tp->pci_fn))
Michael Chan15c3b692006-03-22 01:06:52 -08002790 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002791
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002792 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2793 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002794 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2795 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2796 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2797 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2798 }
2799
Michael Chan15c3b692006-03-22 01:06:52 -08002800 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2801}
2802
Matt Carlson3f007892008-11-03 16:51:36 -08002803/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002804static int tg3_nvram_lock(struct tg3 *tp)
2805{
Joe Perches63c3a662011-04-26 08:12:10 +00002806 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002807 int i;
2808
2809 if (tp->nvram_lock_cnt == 0) {
2810 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2811 for (i = 0; i < 8000; i++) {
2812 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2813 break;
2814 udelay(20);
2815 }
2816 if (i == 8000) {
2817 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2818 return -ENODEV;
2819 }
2820 }
2821 tp->nvram_lock_cnt++;
2822 }
2823 return 0;
2824}
2825
2826/* tp->lock is held. */
2827static void tg3_nvram_unlock(struct tg3 *tp)
2828{
Joe Perches63c3a662011-04-26 08:12:10 +00002829 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002830 if (tp->nvram_lock_cnt > 0)
2831 tp->nvram_lock_cnt--;
2832 if (tp->nvram_lock_cnt == 0)
2833 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2834 }
2835}
2836
2837/* tp->lock is held. */
2838static void tg3_enable_nvram_access(struct tg3 *tp)
2839{
Joe Perches63c3a662011-04-26 08:12:10 +00002840 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002841 u32 nvaccess = tr32(NVRAM_ACCESS);
2842
2843 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2844 }
2845}
2846
2847/* tp->lock is held. */
2848static void tg3_disable_nvram_access(struct tg3 *tp)
2849{
Joe Perches63c3a662011-04-26 08:12:10 +00002850 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002851 u32 nvaccess = tr32(NVRAM_ACCESS);
2852
2853 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2854 }
2855}
2856
2857static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2858 u32 offset, u32 *val)
2859{
2860 u32 tmp;
2861 int i;
2862
2863 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2864 return -EINVAL;
2865
2866 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2867 EEPROM_ADDR_DEVID_MASK |
2868 EEPROM_ADDR_READ);
2869 tw32(GRC_EEPROM_ADDR,
2870 tmp |
2871 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2872 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2873 EEPROM_ADDR_ADDR_MASK) |
2874 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2875
2876 for (i = 0; i < 1000; i++) {
2877 tmp = tr32(GRC_EEPROM_ADDR);
2878
2879 if (tmp & EEPROM_ADDR_COMPLETE)
2880 break;
2881 msleep(1);
2882 }
2883 if (!(tmp & EEPROM_ADDR_COMPLETE))
2884 return -EBUSY;
2885
Matt Carlson62cedd12009-04-20 14:52:29 -07002886 tmp = tr32(GRC_EEPROM_DATA);
2887
2888 /*
2889 * The data will always be opposite the native endian
2890 * format. Perform a blind byteswap to compensate.
2891 */
2892 *val = swab32(tmp);
2893
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002894 return 0;
2895}
2896
2897#define NVRAM_CMD_TIMEOUT 10000
2898
2899static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2900{
2901 int i;
2902
2903 tw32(NVRAM_CMD, nvram_cmd);
2904 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2905 udelay(10);
2906 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2907 udelay(10);
2908 break;
2909 }
2910 }
2911
2912 if (i == NVRAM_CMD_TIMEOUT)
2913 return -EBUSY;
2914
2915 return 0;
2916}
2917
2918static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2919{
Joe Perches63c3a662011-04-26 08:12:10 +00002920 if (tg3_flag(tp, NVRAM) &&
2921 tg3_flag(tp, NVRAM_BUFFERED) &&
2922 tg3_flag(tp, FLASH) &&
2923 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002924 (tp->nvram_jedecnum == JEDEC_ATMEL))
2925
2926 addr = ((addr / tp->nvram_pagesize) <<
2927 ATMEL_AT45DB0X1B_PAGE_POS) +
2928 (addr % tp->nvram_pagesize);
2929
2930 return addr;
2931}
2932
2933static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2934{
Joe Perches63c3a662011-04-26 08:12:10 +00002935 if (tg3_flag(tp, NVRAM) &&
2936 tg3_flag(tp, NVRAM_BUFFERED) &&
2937 tg3_flag(tp, FLASH) &&
2938 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002939 (tp->nvram_jedecnum == JEDEC_ATMEL))
2940
2941 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2942 tp->nvram_pagesize) +
2943 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2944
2945 return addr;
2946}
2947
Matt Carlsone4f34112009-02-25 14:25:00 +00002948/* NOTE: Data read in from NVRAM is byteswapped according to
2949 * the byteswapping settings for all other register accesses.
2950 * tg3 devices are BE devices, so on a BE machine, the data
2951 * returned will be exactly as it is seen in NVRAM. On a LE
2952 * machine, the 32-bit value will be byteswapped.
2953 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002954static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2955{
2956 int ret;
2957
Joe Perches63c3a662011-04-26 08:12:10 +00002958 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002959 return tg3_nvram_read_using_eeprom(tp, offset, val);
2960
2961 offset = tg3_nvram_phys_addr(tp, offset);
2962
2963 if (offset > NVRAM_ADDR_MSK)
2964 return -EINVAL;
2965
2966 ret = tg3_nvram_lock(tp);
2967 if (ret)
2968 return ret;
2969
2970 tg3_enable_nvram_access(tp);
2971
2972 tw32(NVRAM_ADDR, offset);
2973 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2974 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2975
2976 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002977 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002978
2979 tg3_disable_nvram_access(tp);
2980
2981 tg3_nvram_unlock(tp);
2982
2983 return ret;
2984}
2985
Matt Carlsona9dc5292009-02-25 14:25:30 +00002986/* Ensures NVRAM data is in bytestream format. */
2987static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002988{
2989 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002990 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002991 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002992 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002993 return res;
2994}
2995
Matt Carlsondbe9b922012-02-13 10:20:09 +00002996static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
2997 u32 offset, u32 len, u8 *buf)
2998{
2999 int i, j, rc = 0;
3000 u32 val;
3001
3002 for (i = 0; i < len; i += 4) {
3003 u32 addr;
3004 __be32 data;
3005
3006 addr = offset + i;
3007
3008 memcpy(&data, buf + i, 4);
3009
3010 /*
3011 * The SEEPROM interface expects the data to always be opposite
3012 * the native endian format. We accomplish this by reversing
3013 * all the operations that would have been performed on the
3014 * data from a call to tg3_nvram_read_be32().
3015 */
3016 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
3017
3018 val = tr32(GRC_EEPROM_ADDR);
3019 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
3020
3021 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
3022 EEPROM_ADDR_READ);
3023 tw32(GRC_EEPROM_ADDR, val |
3024 (0 << EEPROM_ADDR_DEVID_SHIFT) |
3025 (addr & EEPROM_ADDR_ADDR_MASK) |
3026 EEPROM_ADDR_START |
3027 EEPROM_ADDR_WRITE);
3028
3029 for (j = 0; j < 1000; j++) {
3030 val = tr32(GRC_EEPROM_ADDR);
3031
3032 if (val & EEPROM_ADDR_COMPLETE)
3033 break;
3034 msleep(1);
3035 }
3036 if (!(val & EEPROM_ADDR_COMPLETE)) {
3037 rc = -EBUSY;
3038 break;
3039 }
3040 }
3041
3042 return rc;
3043}
3044
3045/* offset and length are dword aligned */
3046static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
3047 u8 *buf)
3048{
3049 int ret = 0;
3050 u32 pagesize = tp->nvram_pagesize;
3051 u32 pagemask = pagesize - 1;
3052 u32 nvram_cmd;
3053 u8 *tmp;
3054
3055 tmp = kmalloc(pagesize, GFP_KERNEL);
3056 if (tmp == NULL)
3057 return -ENOMEM;
3058
3059 while (len) {
3060 int j;
3061 u32 phy_addr, page_off, size;
3062
3063 phy_addr = offset & ~pagemask;
3064
3065 for (j = 0; j < pagesize; j += 4) {
3066 ret = tg3_nvram_read_be32(tp, phy_addr + j,
3067 (__be32 *) (tmp + j));
3068 if (ret)
3069 break;
3070 }
3071 if (ret)
3072 break;
3073
3074 page_off = offset & pagemask;
3075 size = pagesize;
3076 if (len < size)
3077 size = len;
3078
3079 len -= size;
3080
3081 memcpy(tmp + page_off, buf, size);
3082
3083 offset = offset + (pagesize - page_off);
3084
3085 tg3_enable_nvram_access(tp);
3086
3087 /*
3088 * Before we can erase the flash page, we need
3089 * to issue a special "write enable" command.
3090 */
3091 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3092
3093 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3094 break;
3095
3096 /* Erase the target page */
3097 tw32(NVRAM_ADDR, phy_addr);
3098
3099 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
3100 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
3101
3102 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3103 break;
3104
3105 /* Issue another write enable to start the write. */
3106 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3107
3108 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
3109 break;
3110
3111 for (j = 0; j < pagesize; j += 4) {
3112 __be32 data;
3113
3114 data = *((__be32 *) (tmp + j));
3115
3116 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3117
3118 tw32(NVRAM_ADDR, phy_addr + j);
3119
3120 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
3121 NVRAM_CMD_WR;
3122
3123 if (j == 0)
3124 nvram_cmd |= NVRAM_CMD_FIRST;
3125 else if (j == (pagesize - 4))
3126 nvram_cmd |= NVRAM_CMD_LAST;
3127
3128 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3129 if (ret)
3130 break;
3131 }
3132 if (ret)
3133 break;
3134 }
3135
3136 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3137 tg3_nvram_exec_cmd(tp, nvram_cmd);
3138
3139 kfree(tmp);
3140
3141 return ret;
3142}
3143
3144/* offset and length are dword aligned */
3145static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
3146 u8 *buf)
3147{
3148 int i, ret = 0;
3149
3150 for (i = 0; i < len; i += 4, offset += 4) {
3151 u32 page_off, phy_addr, nvram_cmd;
3152 __be32 data;
3153
3154 memcpy(&data, buf + i, 4);
3155 tw32(NVRAM_WRDATA, be32_to_cpu(data));
3156
3157 page_off = offset % tp->nvram_pagesize;
3158
3159 phy_addr = tg3_nvram_phys_addr(tp, offset);
3160
Matt Carlsondbe9b922012-02-13 10:20:09 +00003161 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
3162
3163 if (page_off == 0 || i == 0)
3164 nvram_cmd |= NVRAM_CMD_FIRST;
3165 if (page_off == (tp->nvram_pagesize - 4))
3166 nvram_cmd |= NVRAM_CMD_LAST;
3167
3168 if (i == (len - 4))
3169 nvram_cmd |= NVRAM_CMD_LAST;
3170
Matt Carlson42278222012-02-13 15:20:11 +00003171 if ((nvram_cmd & NVRAM_CMD_FIRST) ||
3172 !tg3_flag(tp, FLASH) ||
3173 !tg3_flag(tp, 57765_PLUS))
3174 tw32(NVRAM_ADDR, phy_addr);
3175
Matt Carlsondbe9b922012-02-13 10:20:09 +00003176 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
3177 !tg3_flag(tp, 5755_PLUS) &&
3178 (tp->nvram_jedecnum == JEDEC_ST) &&
3179 (nvram_cmd & NVRAM_CMD_FIRST)) {
3180 u32 cmd;
3181
3182 cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
3183 ret = tg3_nvram_exec_cmd(tp, cmd);
3184 if (ret)
3185 break;
3186 }
3187 if (!tg3_flag(tp, FLASH)) {
3188 /* We always do complete word writes to eeprom. */
3189 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
3190 }
3191
3192 ret = tg3_nvram_exec_cmd(tp, nvram_cmd);
3193 if (ret)
3194 break;
3195 }
3196 return ret;
3197}
3198
3199/* offset and length are dword aligned */
3200static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
3201{
3202 int ret;
3203
3204 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3205 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
3206 ~GRC_LCLCTRL_GPIO_OUTPUT1);
3207 udelay(40);
3208 }
3209
3210 if (!tg3_flag(tp, NVRAM)) {
3211 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
3212 } else {
3213 u32 grc_mode;
3214
3215 ret = tg3_nvram_lock(tp);
3216 if (ret)
3217 return ret;
3218
3219 tg3_enable_nvram_access(tp);
3220 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
3221 tw32(NVRAM_WRITE1, 0x406);
3222
3223 grc_mode = tr32(GRC_MODE);
3224 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
3225
3226 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
3227 ret = tg3_nvram_write_block_buffered(tp, offset, len,
3228 buf);
3229 } else {
3230 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
3231 buf);
3232 }
3233
3234 grc_mode = tr32(GRC_MODE);
3235 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
3236
3237 tg3_disable_nvram_access(tp);
3238 tg3_nvram_unlock(tp);
3239 }
3240
3241 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
3242 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
3243 udelay(40);
3244 }
3245
3246 return ret;
3247}
3248
Matt Carlson997b4f12011-08-31 11:44:53 +00003249#define RX_CPU_SCRATCH_BASE 0x30000
3250#define RX_CPU_SCRATCH_SIZE 0x04000
3251#define TX_CPU_SCRATCH_BASE 0x34000
3252#define TX_CPU_SCRATCH_SIZE 0x04000
3253
3254/* tp->lock is held. */
3255static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
3256{
3257 int i;
3258
3259 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
3260
3261 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3262 u32 val = tr32(GRC_VCPU_EXT_CTRL);
3263
3264 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
3265 return 0;
3266 }
3267 if (offset == RX_CPU_BASE) {
3268 for (i = 0; i < 10000; i++) {
3269 tw32(offset + CPU_STATE, 0xffffffff);
3270 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3271 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3272 break;
3273 }
3274
3275 tw32(offset + CPU_STATE, 0xffffffff);
3276 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
3277 udelay(10);
3278 } else {
3279 for (i = 0; i < 10000; i++) {
3280 tw32(offset + CPU_STATE, 0xffffffff);
3281 tw32(offset + CPU_MODE, CPU_MODE_HALT);
3282 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
3283 break;
3284 }
3285 }
3286
3287 if (i >= 10000) {
3288 netdev_err(tp->dev, "%s timed out, %s CPU\n",
3289 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
3290 return -ENODEV;
3291 }
3292
3293 /* Clear firmware's nvram arbitration. */
3294 if (tg3_flag(tp, NVRAM))
3295 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
3296 return 0;
3297}
3298
3299struct fw_info {
3300 unsigned int fw_base;
3301 unsigned int fw_len;
3302 const __be32 *fw_data;
3303};
3304
3305/* tp->lock is held. */
3306static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base,
3307 u32 cpu_scratch_base, int cpu_scratch_size,
3308 struct fw_info *info)
3309{
3310 int err, lock_err, i;
3311 void (*write_op)(struct tg3 *, u32, u32);
3312
3313 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
3314 netdev_err(tp->dev,
3315 "%s: Trying to load TX cpu firmware which is 5705\n",
3316 __func__);
3317 return -EINVAL;
3318 }
3319
3320 if (tg3_flag(tp, 5705_PLUS))
3321 write_op = tg3_write_mem;
3322 else
3323 write_op = tg3_write_indirect_reg32;
3324
3325 /* It is possible that bootcode is still loading at this point.
3326 * Get the nvram lock first before halting the cpu.
3327 */
3328 lock_err = tg3_nvram_lock(tp);
3329 err = tg3_halt_cpu(tp, cpu_base);
3330 if (!lock_err)
3331 tg3_nvram_unlock(tp);
3332 if (err)
3333 goto out;
3334
3335 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
3336 write_op(tp, cpu_scratch_base + i, 0);
3337 tw32(cpu_base + CPU_STATE, 0xffffffff);
3338 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
3339 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
3340 write_op(tp, (cpu_scratch_base +
3341 (info->fw_base & 0xffff) +
3342 (i * sizeof(u32))),
3343 be32_to_cpu(info->fw_data[i]));
3344
3345 err = 0;
3346
3347out:
3348 return err;
3349}
3350
3351/* tp->lock is held. */
3352static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
3353{
3354 struct fw_info info;
3355 const __be32 *fw_data;
3356 int err, i;
3357
3358 fw_data = (void *)tp->fw->data;
3359
3360 /* Firmware blob starts with version numbers, followed by
3361 start address and length. We are setting complete length.
3362 length = end_address_of_bss - start_address_of_text.
3363 Remainder is the blob to be loaded contiguously
3364 from start address. */
3365
3366 info.fw_base = be32_to_cpu(fw_data[1]);
3367 info.fw_len = tp->fw->size - 12;
3368 info.fw_data = &fw_data[3];
3369
3370 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
3371 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
3372 &info);
3373 if (err)
3374 return err;
3375
3376 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
3377 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
3378 &info);
3379 if (err)
3380 return err;
3381
3382 /* Now startup only the RX cpu. */
3383 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3384 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3385
3386 for (i = 0; i < 5; i++) {
3387 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
3388 break;
3389 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3390 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
3391 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
3392 udelay(1000);
3393 }
3394 if (i >= 5) {
3395 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
3396 "should be %08x\n", __func__,
3397 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
3398 return -ENODEV;
3399 }
3400 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
3401 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
3402
3403 return 0;
3404}
3405
3406/* tp->lock is held. */
3407static int tg3_load_tso_firmware(struct tg3 *tp)
3408{
3409 struct fw_info info;
3410 const __be32 *fw_data;
3411 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
3412 int err, i;
3413
3414 if (tg3_flag(tp, HW_TSO_1) ||
3415 tg3_flag(tp, HW_TSO_2) ||
3416 tg3_flag(tp, HW_TSO_3))
3417 return 0;
3418
3419 fw_data = (void *)tp->fw->data;
3420
3421 /* Firmware blob starts with version numbers, followed by
3422 start address and length. We are setting complete length.
3423 length = end_address_of_bss - start_address_of_text.
3424 Remainder is the blob to be loaded contiguously
3425 from start address. */
3426
3427 info.fw_base = be32_to_cpu(fw_data[1]);
3428 cpu_scratch_size = tp->fw_len;
3429 info.fw_len = tp->fw->size - 12;
3430 info.fw_data = &fw_data[3];
3431
3432 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
3433 cpu_base = RX_CPU_BASE;
3434 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
3435 } else {
3436 cpu_base = TX_CPU_BASE;
3437 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
3438 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
3439 }
3440
3441 err = tg3_load_firmware_cpu(tp, cpu_base,
3442 cpu_scratch_base, cpu_scratch_size,
3443 &info);
3444 if (err)
3445 return err;
3446
3447 /* Now startup the cpu. */
3448 tw32(cpu_base + CPU_STATE, 0xffffffff);
3449 tw32_f(cpu_base + CPU_PC, info.fw_base);
3450
3451 for (i = 0; i < 5; i++) {
3452 if (tr32(cpu_base + CPU_PC) == info.fw_base)
3453 break;
3454 tw32(cpu_base + CPU_STATE, 0xffffffff);
3455 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
3456 tw32_f(cpu_base + CPU_PC, info.fw_base);
3457 udelay(1000);
3458 }
3459 if (i >= 5) {
3460 netdev_err(tp->dev,
3461 "%s fails to set CPU PC, is %08x should be %08x\n",
3462 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
3463 return -ENODEV;
3464 }
3465 tw32(cpu_base + CPU_STATE, 0xffffffff);
3466 tw32_f(cpu_base + CPU_MODE, 0x00000000);
3467 return 0;
3468}
3469
3470
Matt Carlsonffbcfed2009-02-25 14:24:28 +00003471/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08003472static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
3473{
3474 u32 addr_high, addr_low;
3475 int i;
3476
3477 addr_high = ((tp->dev->dev_addr[0] << 8) |
3478 tp->dev->dev_addr[1]);
3479 addr_low = ((tp->dev->dev_addr[2] << 24) |
3480 (tp->dev->dev_addr[3] << 16) |
3481 (tp->dev->dev_addr[4] << 8) |
3482 (tp->dev->dev_addr[5] << 0));
3483 for (i = 0; i < 4; i++) {
3484 if (i == 1 && skip_mac_1)
3485 continue;
3486 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
3487 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
3488 }
3489
3490 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3491 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
3492 for (i = 0; i < 12; i++) {
3493 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
3494 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
3495 }
3496 }
3497
3498 addr_high = (tp->dev->dev_addr[0] +
3499 tp->dev->dev_addr[1] +
3500 tp->dev->dev_addr[2] +
3501 tp->dev->dev_addr[3] +
3502 tp->dev->dev_addr[4] +
3503 tp->dev->dev_addr[5]) &
3504 TX_BACKOFF_SEED_MASK;
3505 tw32(MAC_TX_BACKOFF_SEED, addr_high);
3506}
3507
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003508static void tg3_enable_register_access(struct tg3 *tp)
3509{
3510 /*
3511 * Make sure register accesses (indirect or otherwise) will function
3512 * correctly.
3513 */
3514 pci_write_config_dword(tp->pdev,
3515 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
3516}
3517
3518static int tg3_power_up(struct tg3 *tp)
3519{
Matt Carlsonbed98292011-07-13 09:27:29 +00003520 int err;
3521
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003522 tg3_enable_register_access(tp);
3523
Matt Carlsonbed98292011-07-13 09:27:29 +00003524 err = pci_set_power_state(tp->pdev, PCI_D0);
3525 if (!err) {
3526 /* Switch out of Vaux if it is a NIC */
3527 tg3_pwrsrc_switch_to_vmain(tp);
3528 } else {
3529 netdev_err(tp->dev, "Transition to D0 failed\n");
3530 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003531
Matt Carlsonbed98292011-07-13 09:27:29 +00003532 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003533}
3534
Matt Carlson4b409522012-02-13 10:20:11 +00003535static int tg3_setup_phy(struct tg3 *, int);
3536
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003537static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538{
3539 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003540 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003542 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003543
3544 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00003545 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003546 u16 lnkctl;
3547
3548 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003549 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003550 &lnkctl);
3551 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
3552 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003553 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003554 lnkctl);
3555 }
3556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
3558 tw32(TG3PCI_MISC_HOST_CTRL,
3559 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
3560
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003561 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00003562 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003563
Joe Perches63c3a662011-04-26 08:12:10 +00003564 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08003565 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003566 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00003567 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003568 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003569 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003570
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00003571 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003572
Matt Carlson80096062010-08-02 11:26:06 +00003573 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003574
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003575 tp->link_config.speed = phydev->speed;
3576 tp->link_config.duplex = phydev->duplex;
3577 tp->link_config.autoneg = phydev->autoneg;
3578 tp->link_config.advertising = phydev->advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003579
3580 advertising = ADVERTISED_TP |
3581 ADVERTISED_Pause |
3582 ADVERTISED_Autoneg |
3583 ADVERTISED_10baseT_Half;
3584
Joe Perches63c3a662011-04-26 08:12:10 +00003585 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
3586 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003587 advertising |=
3588 ADVERTISED_100baseT_Half |
3589 ADVERTISED_100baseT_Full |
3590 ADVERTISED_10baseT_Full;
3591 else
3592 advertising |= ADVERTISED_10baseT_Full;
3593 }
3594
3595 phydev->advertising = advertising;
3596
3597 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08003598
3599 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00003600 if (phyid != PHY_ID_BCMAC131) {
3601 phyid &= PHY_BCM_OUI_MASK;
3602 if (phyid == PHY_BCM_OUI_1 ||
3603 phyid == PHY_BCM_OUI_2 ||
3604 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08003605 do_low_power = true;
3606 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07003607 }
Matt Carlsondd477002008-05-25 23:45:58 -07003608 } else {
Matt Carlson20232762008-12-21 20:18:56 -08003609 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08003610
Matt Carlsonc6700ce2012-02-13 15:20:15 +00003611 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER))
Matt Carlson80096062010-08-02 11:26:06 +00003612 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Matt Carlson2855b9f2012-02-13 15:20:14 +00003614 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlsondd477002008-05-25 23:45:58 -07003615 tg3_setup_phy(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 }
3617
Michael Chanb5d37722006-09-27 16:06:21 -07003618 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
3619 u32 val;
3620
3621 val = tr32(GRC_VCPU_EXT_CTRL);
3622 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00003623 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08003624 int i;
3625 u32 val;
3626
3627 for (i = 0; i < 200; i++) {
3628 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
3629 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
3630 break;
3631 msleep(1);
3632 }
3633 }
Joe Perches63c3a662011-04-26 08:12:10 +00003634 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07003635 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
3636 WOL_DRV_STATE_SHUTDOWN |
3637 WOL_DRV_WOL |
3638 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08003639
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003640 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 u32 mac_mode;
3642
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003643 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003644 if (do_low_power &&
3645 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
3646 tg3_phy_auxctl_write(tp,
3647 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
3648 MII_TG3_AUXCTL_PCTL_WOL_EN |
3649 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
3650 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07003651 udelay(40);
3652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003654 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07003655 mac_mode = MAC_MODE_PORT_MODE_GMII;
3656 else
3657 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003659 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
3660 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
3661 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00003662 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003663 SPEED_100 : SPEED_10;
3664 if (tg3_5700_link_polarity(tp, speed))
3665 mac_mode |= MAC_MODE_LINK_POLARITY;
3666 else
3667 mac_mode &= ~MAC_MODE_LINK_POLARITY;
3668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 } else {
3670 mac_mode = MAC_MODE_PORT_MODE_TBI;
3671 }
3672
Joe Perches63c3a662011-04-26 08:12:10 +00003673 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 tw32(MAC_LED_CTRL, tp->led_ctrl);
3675
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003676 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00003677 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
3678 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08003679 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Joe Perches63c3a662011-04-26 08:12:10 +00003681 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00003682 mac_mode |= MAC_MODE_APE_TX_EN |
3683 MAC_MODE_APE_RX_EN |
3684 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07003685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 tw32_f(MAC_MODE, mac_mode);
3687 udelay(100);
3688
3689 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
3690 udelay(10);
3691 }
3692
Joe Perches63c3a662011-04-26 08:12:10 +00003693 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3695 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
3696 u32 base_val;
3697
3698 base_val = tp->pci_clock_ctrl;
3699 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
3700 CLOCK_CTRL_TXCLK_DISABLE);
3701
Michael Chanb401e9e2005-12-19 16:27:04 -08003702 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
3703 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00003704 } else if (tg3_flag(tp, 5780_CLASS) ||
3705 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00003706 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07003707 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00003708 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 u32 newbits1, newbits2;
3710
3711 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3712 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3713 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
3714 CLOCK_CTRL_TXCLK_DISABLE |
3715 CLOCK_CTRL_ALTCLK);
3716 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00003717 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 newbits1 = CLOCK_CTRL_625_CORE;
3719 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
3720 } else {
3721 newbits1 = CLOCK_CTRL_ALTCLK;
3722 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
3723 }
3724
Michael Chanb401e9e2005-12-19 16:27:04 -08003725 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
3726 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Michael Chanb401e9e2005-12-19 16:27:04 -08003728 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
3729 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
Joe Perches63c3a662011-04-26 08:12:10 +00003731 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 u32 newbits3;
3733
3734 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3735 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3736 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
3737 CLOCK_CTRL_TXCLK_DISABLE |
3738 CLOCK_CTRL_44MHZ_CORE);
3739 } else {
3740 newbits3 = CLOCK_CTRL_44MHZ_CORE;
3741 }
3742
Michael Chanb401e9e2005-12-19 16:27:04 -08003743 tw32_wait_f(TG3PCI_CLOCK_CTRL,
3744 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 }
3746 }
3747
Joe Perches63c3a662011-04-26 08:12:10 +00003748 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003749 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003750
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003751 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
3753 /* Workaround for unstable PLL clock */
3754 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3755 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3756 u32 val = tr32(0x7d00);
3757
3758 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3759 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003760 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003761 int err;
3762
3763 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003765 if (!err)
3766 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 }
3769
Michael Chanbbadf502006-04-06 21:46:34 -07003770 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 return 0;
3773}
3774
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003775static void tg3_power_down(struct tg3 *tp)
3776{
3777 tg3_power_down_prepare(tp);
3778
Joe Perches63c3a662011-04-26 08:12:10 +00003779 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003780 pci_set_power_state(tp->pdev, PCI_D3hot);
3781}
3782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3784{
3785 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3786 case MII_TG3_AUX_STAT_10HALF:
3787 *speed = SPEED_10;
3788 *duplex = DUPLEX_HALF;
3789 break;
3790
3791 case MII_TG3_AUX_STAT_10FULL:
3792 *speed = SPEED_10;
3793 *duplex = DUPLEX_FULL;
3794 break;
3795
3796 case MII_TG3_AUX_STAT_100HALF:
3797 *speed = SPEED_100;
3798 *duplex = DUPLEX_HALF;
3799 break;
3800
3801 case MII_TG3_AUX_STAT_100FULL:
3802 *speed = SPEED_100;
3803 *duplex = DUPLEX_FULL;
3804 break;
3805
3806 case MII_TG3_AUX_STAT_1000HALF:
3807 *speed = SPEED_1000;
3808 *duplex = DUPLEX_HALF;
3809 break;
3810
3811 case MII_TG3_AUX_STAT_1000FULL:
3812 *speed = SPEED_1000;
3813 *duplex = DUPLEX_FULL;
3814 break;
3815
3816 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003817 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003818 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3819 SPEED_10;
3820 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3821 DUPLEX_HALF;
3822 break;
3823 }
Matt Carlsone7405222012-02-13 15:20:16 +00003824 *speed = SPEED_UNKNOWN;
3825 *duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828}
3829
Matt Carlson42b64a42011-05-19 12:12:49 +00003830static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831{
Matt Carlson42b64a42011-05-19 12:12:49 +00003832 int err = 0;
3833 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Matt Carlson42b64a42011-05-19 12:12:49 +00003835 new_adv = ADVERTISE_CSMA;
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +00003836 new_adv |= ethtool_adv_to_mii_adv_t(advertise) & ADVERTISE_ALL;
Matt Carlsonf88788f2011-12-14 11:10:00 +00003837 new_adv |= mii_advertise_flowctrl(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Matt Carlson42b64a42011-05-19 12:12:49 +00003839 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3840 if (err)
3841 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
Matt Carlson4f272092011-12-14 11:09:57 +00003843 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
3844 new_adv = ethtool_adv_to_mii_ctrl1000_t(advertise);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003845
Matt Carlson4f272092011-12-14 11:09:57 +00003846 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3847 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
3848 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003849
Matt Carlson4f272092011-12-14 11:09:57 +00003850 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
3851 if (err)
3852 goto done;
3853 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003854
Matt Carlson42b64a42011-05-19 12:12:49 +00003855 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3856 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
Matt Carlson42b64a42011-05-19 12:12:49 +00003858 tw32(TG3_CPMU_EEE_MODE,
3859 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003860
Matt Carlson42b64a42011-05-19 12:12:49 +00003861 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3862 if (!err) {
3863 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003864
Matt Carlsona6b68da2010-12-06 08:28:52 +00003865 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003866 /* Advertise 100-BaseTX EEE ability */
3867 if (advertise & ADVERTISED_100baseT_Full)
3868 val |= MDIO_AN_EEE_ADV_100TX;
3869 /* Advertise 1000-BaseT EEE ability */
3870 if (advertise & ADVERTISED_1000baseT_Full)
3871 val |= MDIO_AN_EEE_ADV_1000T;
3872 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00003873 if (err)
3874 val = 0;
3875
3876 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3877 case ASIC_REV_5717:
3878 case ASIC_REV_57765:
Matt Carlson55086ad2011-12-14 11:09:59 +00003879 case ASIC_REV_57766:
Matt Carlsonb715ce92011-07-20 10:20:52 +00003880 case ASIC_REV_5719:
3881 /* If we advertised any eee advertisements above... */
3882 if (val)
3883 val = MII_TG3_DSP_TAP26_ALNOKO |
3884 MII_TG3_DSP_TAP26_RMRXSTO |
3885 MII_TG3_DSP_TAP26_OPCSINPT;
3886 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3887 /* Fall through */
3888 case ASIC_REV_5720:
3889 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3890 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3891 MII_TG3_DSP_CH34TP2_HIBW01);
3892 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003893
Matt Carlson42b64a42011-05-19 12:12:49 +00003894 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3895 if (!err)
3896 err = err2;
3897 }
3898
3899done:
3900 return err;
3901}
3902
3903static void tg3_phy_copper_begin(struct tg3 *tp)
3904{
Matt Carlsond13ba512012-02-22 12:35:19 +00003905 if (tp->link_config.autoneg == AUTONEG_ENABLE ||
3906 (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
3907 u32 adv, fc;
Matt Carlson42b64a42011-05-19 12:12:49 +00003908
Matt Carlsond13ba512012-02-22 12:35:19 +00003909 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
3910 adv = ADVERTISED_10baseT_Half |
3911 ADVERTISED_10baseT_Full;
3912 if (tg3_flag(tp, WOL_SPEED_100MB))
3913 adv |= ADVERTISED_100baseT_Half |
3914 ADVERTISED_100baseT_Full;
Matt Carlson42b64a42011-05-19 12:12:49 +00003915
Matt Carlsond13ba512012-02-22 12:35:19 +00003916 fc = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson42b64a42011-05-19 12:12:49 +00003917 } else {
Matt Carlsond13ba512012-02-22 12:35:19 +00003918 adv = tp->link_config.advertising;
3919 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3920 adv &= ~(ADVERTISED_1000baseT_Half |
3921 ADVERTISED_1000baseT_Full);
3922
3923 fc = tp->link_config.flowctrl;
Matt Carlson42b64a42011-05-19 12:12:49 +00003924 }
3925
Matt Carlsond13ba512012-02-22 12:35:19 +00003926 tg3_phy_autoneg_cfg(tp, adv, fc);
Matt Carlson52b02d02010-10-14 10:37:41 +00003927
Matt Carlsond13ba512012-02-22 12:35:19 +00003928 tg3_writephy(tp, MII_BMCR,
3929 BMCR_ANENABLE | BMCR_ANRESTART);
3930 } else {
3931 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 u32 bmcr, orig_bmcr;
3933
3934 tp->link_config.active_speed = tp->link_config.speed;
3935 tp->link_config.active_duplex = tp->link_config.duplex;
3936
3937 bmcr = 0;
3938 switch (tp->link_config.speed) {
3939 default:
3940 case SPEED_10:
3941 break;
3942
3943 case SPEED_100:
3944 bmcr |= BMCR_SPEED100;
3945 break;
3946
3947 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00003948 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 if (tp->link_config.duplex == DUPLEX_FULL)
3953 bmcr |= BMCR_FULLDPLX;
3954
3955 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3956 (bmcr != orig_bmcr)) {
3957 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3958 for (i = 0; i < 1500; i++) {
3959 u32 tmp;
3960
3961 udelay(10);
3962 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3963 tg3_readphy(tp, MII_BMSR, &tmp))
3964 continue;
3965 if (!(tmp & BMSR_LSTATUS)) {
3966 udelay(40);
3967 break;
3968 }
3969 }
3970 tg3_writephy(tp, MII_BMCR, bmcr);
3971 udelay(40);
3972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 }
3974}
3975
3976static int tg3_init_5401phy_dsp(struct tg3 *tp)
3977{
3978 int err;
3979
3980 /* Turn off tap power management. */
3981 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003982 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003984 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3985 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3986 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3987 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3988 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
3990 udelay(40);
3991
3992 return err;
3993}
3994
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003995static bool tg3_phy_copper_an_config_ok(struct tg3 *tp, u32 *lcladv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996{
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003997 u32 advmsk, tgtadv, advertising;
Michael Chan3600d912006-12-07 00:21:48 -08003998
Matt Carlsone2bf73e2011-12-08 14:40:15 +00003999 advertising = tp->link_config.advertising;
4000 tgtadv = ethtool_adv_to_mii_adv_t(advertising) & ADVERTISE_ALL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004002 advmsk = ADVERTISE_ALL;
4003 if (tp->link_config.active_duplex == DUPLEX_FULL) {
Matt Carlsonf88788f2011-12-14 11:10:00 +00004004 tgtadv |= mii_advertise_flowctrl(tp->link_config.flowctrl);
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004005 advmsk |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
4006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004008 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
4009 return false;
4010
4011 if ((*lcladv & advmsk) != tgtadv)
4012 return false;
Matt Carlsonb99d2a52011-08-31 11:44:47 +00004013
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004014 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 u32 tg3_ctrl;
4016
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004017 tgtadv = ethtool_adv_to_mii_ctrl1000_t(advertising);
Michael Chan3600d912006-12-07 00:21:48 -08004018
Matt Carlson221c5632011-06-13 13:39:01 +00004019 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004020 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021
Matt Carlson3198e072012-02-13 15:20:10 +00004022 if (tgtadv &&
4023 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4024 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)) {
4025 tgtadv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
4026 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL |
4027 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
4028 } else {
4029 tg3_ctrl &= (ADVERTISE_1000HALF | ADVERTISE_1000FULL);
4030 }
4031
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004032 if (tg3_ctrl != tgtadv)
4033 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 }
Matt Carlson93a700a2011-08-31 11:44:54 +00004035
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004036 return true;
Matt Carlsonef167e22007-12-20 20:10:01 -08004037}
4038
Matt Carlson859edb22011-12-08 14:40:16 +00004039static bool tg3_phy_copper_fetch_rmtadv(struct tg3 *tp, u32 *rmtadv)
4040{
4041 u32 lpeth = 0;
4042
4043 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
4044 u32 val;
4045
4046 if (tg3_readphy(tp, MII_STAT1000, &val))
4047 return false;
4048
4049 lpeth = mii_stat1000_to_ethtool_lpa_t(val);
4050 }
4051
4052 if (tg3_readphy(tp, MII_LPA, rmtadv))
4053 return false;
4054
4055 lpeth |= mii_lpa_to_ethtool_lpa_t(*rmtadv);
4056 tp->link_config.rmt_adv = lpeth;
4057
4058 return true;
4059}
4060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
4062{
4063 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004064 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08004065 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 u16 current_speed;
4067 u8 current_duplex;
4068 int i, err;
4069
4070 tw32(MAC_EVENT, 0);
4071
4072 tw32_f(MAC_STATUS,
4073 (MAC_STATUS_SYNC_CHANGED |
4074 MAC_STATUS_CFG_CHANGED |
4075 MAC_STATUS_MI_COMPLETION |
4076 MAC_STATUS_LNKSTATE_CHANGED));
4077 udelay(40);
4078
Matt Carlson8ef21422008-05-02 16:47:53 -07004079 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
4080 tw32_f(MAC_MI_MODE,
4081 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
4082 udelay(80);
4083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004085 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
4087 /* Some third-party PHYs need to be reset on link going
4088 * down.
4089 */
4090 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
4091 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
4092 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
4093 netif_carrier_ok(tp->dev)) {
4094 tg3_readphy(tp, MII_BMSR, &bmsr);
4095 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4096 !(bmsr & BMSR_LSTATUS))
4097 force_reset = 1;
4098 }
4099 if (force_reset)
4100 tg3_phy_reset(tp);
4101
Matt Carlson79eb6902010-02-17 15:17:03 +00004102 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 tg3_readphy(tp, MII_BMSR, &bmsr);
4104 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00004105 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 bmsr = 0;
4107
4108 if (!(bmsr & BMSR_LSTATUS)) {
4109 err = tg3_init_5401phy_dsp(tp);
4110 if (err)
4111 return err;
4112
4113 tg3_readphy(tp, MII_BMSR, &bmsr);
4114 for (i = 0; i < 1000; i++) {
4115 udelay(10);
4116 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4117 (bmsr & BMSR_LSTATUS)) {
4118 udelay(40);
4119 break;
4120 }
4121 }
4122
Matt Carlson79eb6902010-02-17 15:17:03 +00004123 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
4124 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 !(bmsr & BMSR_LSTATUS) &&
4126 tp->link_config.active_speed == SPEED_1000) {
4127 err = tg3_phy_reset(tp);
4128 if (!err)
4129 err = tg3_init_5401phy_dsp(tp);
4130 if (err)
4131 return err;
4132 }
4133 }
4134 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
4135 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
4136 /* 5701 {A0,B0} CRC bug workaround */
4137 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004138 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
4139 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
4140 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 }
4142
4143 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004144 tg3_readphy(tp, MII_TG3_ISTAT, &val);
4145 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004147 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004149 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 tg3_writephy(tp, MII_TG3_IMASK, ~0);
4151
4152 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
4153 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
4154 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
4155 tg3_writephy(tp, MII_TG3_EXT_CTRL,
4156 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
4157 else
4158 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
4159 }
4160
4161 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00004162 current_speed = SPEED_UNKNOWN;
4163 current_duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +00004164 tp->phy_flags &= ~TG3_PHYFLG_MDIX_STATE;
Matt Carlson859edb22011-12-08 14:40:16 +00004165 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004167 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00004168 err = tg3_phy_auxctl_read(tp,
4169 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4170 &val);
4171 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00004172 tg3_phy_auxctl_write(tp,
4173 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
4174 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 goto relink;
4176 }
4177 }
4178
4179 bmsr = 0;
4180 for (i = 0; i < 100; i++) {
4181 tg3_readphy(tp, MII_BMSR, &bmsr);
4182 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
4183 (bmsr & BMSR_LSTATUS))
4184 break;
4185 udelay(40);
4186 }
4187
4188 if (bmsr & BMSR_LSTATUS) {
4189 u32 aux_stat, bmcr;
4190
4191 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
4192 for (i = 0; i < 2000; i++) {
4193 udelay(10);
4194 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
4195 aux_stat)
4196 break;
4197 }
4198
4199 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
4200 &current_speed,
4201 &current_duplex);
4202
4203 bmcr = 0;
4204 for (i = 0; i < 200; i++) {
4205 tg3_readphy(tp, MII_BMCR, &bmcr);
4206 if (tg3_readphy(tp, MII_BMCR, &bmcr))
4207 continue;
4208 if (bmcr && bmcr != 0x7fff)
4209 break;
4210 udelay(10);
4211 }
4212
Matt Carlsonef167e22007-12-20 20:10:01 -08004213 lcl_adv = 0;
4214 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
Matt Carlsonef167e22007-12-20 20:10:01 -08004216 tp->link_config.active_speed = current_speed;
4217 tp->link_config.active_duplex = current_duplex;
4218
4219 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4220 if ((bmcr & BMCR_ANENABLE) &&
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004221 tg3_phy_copper_an_config_ok(tp, &lcl_adv) &&
Matt Carlson859edb22011-12-08 14:40:16 +00004222 tg3_phy_copper_fetch_rmtadv(tp, &rmt_adv))
Matt Carlsone2bf73e2011-12-08 14:40:15 +00004223 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 } else {
4225 if (!(bmcr & BMCR_ANENABLE) &&
4226 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08004227 tp->link_config.duplex == current_duplex &&
4228 tp->link_config.flowctrl ==
4229 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 }
4232 }
4233
Matt Carlsonef167e22007-12-20 20:10:01 -08004234 if (current_link_up == 1 &&
Matt Carlsone348c5e2011-11-21 15:01:20 +00004235 tp->link_config.active_duplex == DUPLEX_FULL) {
4236 u32 reg, bit;
4237
4238 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
4239 reg = MII_TG3_FET_GEN_STAT;
4240 bit = MII_TG3_FET_GEN_STAT_MDIXSTAT;
4241 } else {
4242 reg = MII_TG3_EXT_STAT;
4243 bit = MII_TG3_EXT_STAT_MDIX;
4244 }
4245
4246 if (!tg3_readphy(tp, reg, &val) && (val & bit))
4247 tp->phy_flags |= TG3_PHYFLG_MDIX_STATE;
4248
Matt Carlsonef167e22007-12-20 20:10:01 -08004249 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Matt Carlsone348c5e2011-11-21 15:01:20 +00004250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 }
4252
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253relink:
Matt Carlson80096062010-08-02 11:26:06 +00004254 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 tg3_phy_copper_begin(tp);
4256
Matt Carlsonf833c4c2010-09-15 09:00:01 +00004257 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00004258 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
4259 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 current_link_up = 1;
4261 }
4262
4263 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
4264 if (current_link_up == 1) {
4265 if (tp->link_config.active_speed == SPEED_100 ||
4266 tp->link_config.active_speed == SPEED_10)
4267 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4268 else
4269 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004270 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00004271 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
4272 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4274
4275 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4276 if (tp->link_config.active_duplex == DUPLEX_HALF)
4277 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4278
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004280 if (current_link_up == 1 &&
4281 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004283 else
4284 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 }
4286
4287 /* ??? Without this setting Netgear GA302T PHY does not
4288 * ??? send/receive packets...
4289 */
Matt Carlson79eb6902010-02-17 15:17:03 +00004290 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
4292 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
4293 tw32_f(MAC_MI_MODE, tp->mi_mode);
4294 udelay(80);
4295 }
4296
4297 tw32_f(MAC_MODE, tp->mac_mode);
4298 udelay(40);
4299
Matt Carlson52b02d02010-10-14 10:37:41 +00004300 tg3_phy_eee_adjust(tp, current_link_up);
4301
Joe Perches63c3a662011-04-26 08:12:10 +00004302 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 /* Polled via timer. */
4304 tw32_f(MAC_EVENT, 0);
4305 } else {
4306 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4307 }
4308 udelay(40);
4309
4310 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
4311 current_link_up == 1 &&
4312 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00004313 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 udelay(120);
4315 tw32_f(MAC_STATUS,
4316 (MAC_STATUS_SYNC_CHANGED |
4317 MAC_STATUS_CFG_CHANGED));
4318 udelay(40);
4319 tg3_write_mem(tp,
4320 NIC_SRAM_FIRMWARE_MBOX,
4321 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
4322 }
4323
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004324 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00004325 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004326 u16 oldlnkctl, newlnkctl;
4327
4328 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00004329 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004330 &oldlnkctl);
4331 if (tp->link_config.active_speed == SPEED_100 ||
4332 tp->link_config.active_speed == SPEED_10)
4333 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
4334 else
4335 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
4336 if (newlnkctl != oldlnkctl)
4337 pci_write_config_word(tp->pdev,
Matt Carlson93a700a2011-08-31 11:44:54 +00004338 pci_pcie_cap(tp->pdev) +
4339 PCI_EXP_LNKCTL, newlnkctl);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08004340 }
4341
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 if (current_link_up != netif_carrier_ok(tp->dev)) {
4343 if (current_link_up)
4344 netif_carrier_on(tp->dev);
4345 else
4346 netif_carrier_off(tp->dev);
4347 tg3_link_report(tp);
4348 }
4349
4350 return 0;
4351}
4352
4353struct tg3_fiber_aneginfo {
4354 int state;
4355#define ANEG_STATE_UNKNOWN 0
4356#define ANEG_STATE_AN_ENABLE 1
4357#define ANEG_STATE_RESTART_INIT 2
4358#define ANEG_STATE_RESTART 3
4359#define ANEG_STATE_DISABLE_LINK_OK 4
4360#define ANEG_STATE_ABILITY_DETECT_INIT 5
4361#define ANEG_STATE_ABILITY_DETECT 6
4362#define ANEG_STATE_ACK_DETECT_INIT 7
4363#define ANEG_STATE_ACK_DETECT 8
4364#define ANEG_STATE_COMPLETE_ACK_INIT 9
4365#define ANEG_STATE_COMPLETE_ACK 10
4366#define ANEG_STATE_IDLE_DETECT_INIT 11
4367#define ANEG_STATE_IDLE_DETECT 12
4368#define ANEG_STATE_LINK_OK 13
4369#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
4370#define ANEG_STATE_NEXT_PAGE_WAIT 15
4371
4372 u32 flags;
4373#define MR_AN_ENABLE 0x00000001
4374#define MR_RESTART_AN 0x00000002
4375#define MR_AN_COMPLETE 0x00000004
4376#define MR_PAGE_RX 0x00000008
4377#define MR_NP_LOADED 0x00000010
4378#define MR_TOGGLE_TX 0x00000020
4379#define MR_LP_ADV_FULL_DUPLEX 0x00000040
4380#define MR_LP_ADV_HALF_DUPLEX 0x00000080
4381#define MR_LP_ADV_SYM_PAUSE 0x00000100
4382#define MR_LP_ADV_ASYM_PAUSE 0x00000200
4383#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
4384#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
4385#define MR_LP_ADV_NEXT_PAGE 0x00001000
4386#define MR_TOGGLE_RX 0x00002000
4387#define MR_NP_RX 0x00004000
4388
4389#define MR_LINK_OK 0x80000000
4390
4391 unsigned long link_time, cur_time;
4392
4393 u32 ability_match_cfg;
4394 int ability_match_count;
4395
4396 char ability_match, idle_match, ack_match;
4397
4398 u32 txconfig, rxconfig;
4399#define ANEG_CFG_NP 0x00000080
4400#define ANEG_CFG_ACK 0x00000040
4401#define ANEG_CFG_RF2 0x00000020
4402#define ANEG_CFG_RF1 0x00000010
4403#define ANEG_CFG_PS2 0x00000001
4404#define ANEG_CFG_PS1 0x00008000
4405#define ANEG_CFG_HD 0x00004000
4406#define ANEG_CFG_FD 0x00002000
4407#define ANEG_CFG_INVAL 0x00001f06
4408
4409};
4410#define ANEG_OK 0
4411#define ANEG_DONE 1
4412#define ANEG_TIMER_ENAB 2
4413#define ANEG_FAILED -1
4414
4415#define ANEG_STATE_SETTLE_TIME 10000
4416
4417static int tg3_fiber_aneg_smachine(struct tg3 *tp,
4418 struct tg3_fiber_aneginfo *ap)
4419{
Matt Carlson5be73b42007-12-20 20:09:29 -08004420 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 unsigned long delta;
4422 u32 rx_cfg_reg;
4423 int ret;
4424
4425 if (ap->state == ANEG_STATE_UNKNOWN) {
4426 ap->rxconfig = 0;
4427 ap->link_time = 0;
4428 ap->cur_time = 0;
4429 ap->ability_match_cfg = 0;
4430 ap->ability_match_count = 0;
4431 ap->ability_match = 0;
4432 ap->idle_match = 0;
4433 ap->ack_match = 0;
4434 }
4435 ap->cur_time++;
4436
4437 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
4438 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
4439
4440 if (rx_cfg_reg != ap->ability_match_cfg) {
4441 ap->ability_match_cfg = rx_cfg_reg;
4442 ap->ability_match = 0;
4443 ap->ability_match_count = 0;
4444 } else {
4445 if (++ap->ability_match_count > 1) {
4446 ap->ability_match = 1;
4447 ap->ability_match_cfg = rx_cfg_reg;
4448 }
4449 }
4450 if (rx_cfg_reg & ANEG_CFG_ACK)
4451 ap->ack_match = 1;
4452 else
4453 ap->ack_match = 0;
4454
4455 ap->idle_match = 0;
4456 } else {
4457 ap->idle_match = 1;
4458 ap->ability_match_cfg = 0;
4459 ap->ability_match_count = 0;
4460 ap->ability_match = 0;
4461 ap->ack_match = 0;
4462
4463 rx_cfg_reg = 0;
4464 }
4465
4466 ap->rxconfig = rx_cfg_reg;
4467 ret = ANEG_OK;
4468
Matt Carlson33f401a2010-04-05 10:19:27 +00004469 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 case ANEG_STATE_UNKNOWN:
4471 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
4472 ap->state = ANEG_STATE_AN_ENABLE;
4473
4474 /* fallthru */
4475 case ANEG_STATE_AN_ENABLE:
4476 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
4477 if (ap->flags & MR_AN_ENABLE) {
4478 ap->link_time = 0;
4479 ap->cur_time = 0;
4480 ap->ability_match_cfg = 0;
4481 ap->ability_match_count = 0;
4482 ap->ability_match = 0;
4483 ap->idle_match = 0;
4484 ap->ack_match = 0;
4485
4486 ap->state = ANEG_STATE_RESTART_INIT;
4487 } else {
4488 ap->state = ANEG_STATE_DISABLE_LINK_OK;
4489 }
4490 break;
4491
4492 case ANEG_STATE_RESTART_INIT:
4493 ap->link_time = ap->cur_time;
4494 ap->flags &= ~(MR_NP_LOADED);
4495 ap->txconfig = 0;
4496 tw32(MAC_TX_AUTO_NEG, 0);
4497 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4498 tw32_f(MAC_MODE, tp->mac_mode);
4499 udelay(40);
4500
4501 ret = ANEG_TIMER_ENAB;
4502 ap->state = ANEG_STATE_RESTART;
4503
4504 /* fallthru */
4505 case ANEG_STATE_RESTART:
4506 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00004507 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00004509 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 break;
4512
4513 case ANEG_STATE_DISABLE_LINK_OK:
4514 ret = ANEG_DONE;
4515 break;
4516
4517 case ANEG_STATE_ABILITY_DETECT_INIT:
4518 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08004519 ap->txconfig = ANEG_CFG_FD;
4520 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4521 if (flowctrl & ADVERTISE_1000XPAUSE)
4522 ap->txconfig |= ANEG_CFG_PS1;
4523 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4524 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4526 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4527 tw32_f(MAC_MODE, tp->mac_mode);
4528 udelay(40);
4529
4530 ap->state = ANEG_STATE_ABILITY_DETECT;
4531 break;
4532
4533 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00004534 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 break;
4537
4538 case ANEG_STATE_ACK_DETECT_INIT:
4539 ap->txconfig |= ANEG_CFG_ACK;
4540 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
4541 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
4542 tw32_f(MAC_MODE, tp->mac_mode);
4543 udelay(40);
4544
4545 ap->state = ANEG_STATE_ACK_DETECT;
4546
4547 /* fallthru */
4548 case ANEG_STATE_ACK_DETECT:
4549 if (ap->ack_match != 0) {
4550 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
4551 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
4552 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
4553 } else {
4554 ap->state = ANEG_STATE_AN_ENABLE;
4555 }
4556 } else if (ap->ability_match != 0 &&
4557 ap->rxconfig == 0) {
4558 ap->state = ANEG_STATE_AN_ENABLE;
4559 }
4560 break;
4561
4562 case ANEG_STATE_COMPLETE_ACK_INIT:
4563 if (ap->rxconfig & ANEG_CFG_INVAL) {
4564 ret = ANEG_FAILED;
4565 break;
4566 }
4567 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
4568 MR_LP_ADV_HALF_DUPLEX |
4569 MR_LP_ADV_SYM_PAUSE |
4570 MR_LP_ADV_ASYM_PAUSE |
4571 MR_LP_ADV_REMOTE_FAULT1 |
4572 MR_LP_ADV_REMOTE_FAULT2 |
4573 MR_LP_ADV_NEXT_PAGE |
4574 MR_TOGGLE_RX |
4575 MR_NP_RX);
4576 if (ap->rxconfig & ANEG_CFG_FD)
4577 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
4578 if (ap->rxconfig & ANEG_CFG_HD)
4579 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
4580 if (ap->rxconfig & ANEG_CFG_PS1)
4581 ap->flags |= MR_LP_ADV_SYM_PAUSE;
4582 if (ap->rxconfig & ANEG_CFG_PS2)
4583 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
4584 if (ap->rxconfig & ANEG_CFG_RF1)
4585 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
4586 if (ap->rxconfig & ANEG_CFG_RF2)
4587 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
4588 if (ap->rxconfig & ANEG_CFG_NP)
4589 ap->flags |= MR_LP_ADV_NEXT_PAGE;
4590
4591 ap->link_time = ap->cur_time;
4592
4593 ap->flags ^= (MR_TOGGLE_TX);
4594 if (ap->rxconfig & 0x0008)
4595 ap->flags |= MR_TOGGLE_RX;
4596 if (ap->rxconfig & ANEG_CFG_NP)
4597 ap->flags |= MR_NP_RX;
4598 ap->flags |= MR_PAGE_RX;
4599
4600 ap->state = ANEG_STATE_COMPLETE_ACK;
4601 ret = ANEG_TIMER_ENAB;
4602 break;
4603
4604 case ANEG_STATE_COMPLETE_ACK:
4605 if (ap->ability_match != 0 &&
4606 ap->rxconfig == 0) {
4607 ap->state = ANEG_STATE_AN_ENABLE;
4608 break;
4609 }
4610 delta = ap->cur_time - ap->link_time;
4611 if (delta > ANEG_STATE_SETTLE_TIME) {
4612 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
4613 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4614 } else {
4615 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
4616 !(ap->flags & MR_NP_RX)) {
4617 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
4618 } else {
4619 ret = ANEG_FAILED;
4620 }
4621 }
4622 }
4623 break;
4624
4625 case ANEG_STATE_IDLE_DETECT_INIT:
4626 ap->link_time = ap->cur_time;
4627 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4628 tw32_f(MAC_MODE, tp->mac_mode);
4629 udelay(40);
4630
4631 ap->state = ANEG_STATE_IDLE_DETECT;
4632 ret = ANEG_TIMER_ENAB;
4633 break;
4634
4635 case ANEG_STATE_IDLE_DETECT:
4636 if (ap->ability_match != 0 &&
4637 ap->rxconfig == 0) {
4638 ap->state = ANEG_STATE_AN_ENABLE;
4639 break;
4640 }
4641 delta = ap->cur_time - ap->link_time;
4642 if (delta > ANEG_STATE_SETTLE_TIME) {
4643 /* XXX another gem from the Broadcom driver :( */
4644 ap->state = ANEG_STATE_LINK_OK;
4645 }
4646 break;
4647
4648 case ANEG_STATE_LINK_OK:
4649 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
4650 ret = ANEG_DONE;
4651 break;
4652
4653 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
4654 /* ??? unimplemented */
4655 break;
4656
4657 case ANEG_STATE_NEXT_PAGE_WAIT:
4658 /* ??? unimplemented */
4659 break;
4660
4661 default:
4662 ret = ANEG_FAILED;
4663 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
4666 return ret;
4667}
4668
Matt Carlson5be73b42007-12-20 20:09:29 -08004669static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670{
4671 int res = 0;
4672 struct tg3_fiber_aneginfo aninfo;
4673 int status = ANEG_FAILED;
4674 unsigned int tick;
4675 u32 tmp;
4676
4677 tw32_f(MAC_TX_AUTO_NEG, 0);
4678
4679 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
4680 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
4681 udelay(40);
4682
4683 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
4684 udelay(40);
4685
4686 memset(&aninfo, 0, sizeof(aninfo));
4687 aninfo.flags |= MR_AN_ENABLE;
4688 aninfo.state = ANEG_STATE_UNKNOWN;
4689 aninfo.cur_time = 0;
4690 tick = 0;
4691 while (++tick < 195000) {
4692 status = tg3_fiber_aneg_smachine(tp, &aninfo);
4693 if (status == ANEG_DONE || status == ANEG_FAILED)
4694 break;
4695
4696 udelay(1);
4697 }
4698
4699 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
4700 tw32_f(MAC_MODE, tp->mac_mode);
4701 udelay(40);
4702
Matt Carlson5be73b42007-12-20 20:09:29 -08004703 *txflags = aninfo.txconfig;
4704 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
4706 if (status == ANEG_DONE &&
4707 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
4708 MR_LP_ADV_FULL_DUPLEX)))
4709 res = 1;
4710
4711 return res;
4712}
4713
4714static void tg3_init_bcm8002(struct tg3 *tp)
4715{
4716 u32 mac_status = tr32(MAC_STATUS);
4717 int i;
4718
4719 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00004720 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 !(mac_status & MAC_STATUS_PCS_SYNCED))
4722 return;
4723
4724 /* Set PLL lock range. */
4725 tg3_writephy(tp, 0x16, 0x8007);
4726
4727 /* SW reset */
4728 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4729
4730 /* Wait for reset to complete. */
4731 /* XXX schedule_timeout() ... */
4732 for (i = 0; i < 500; i++)
4733 udelay(10);
4734
4735 /* Config mode; select PMA/Ch 1 regs. */
4736 tg3_writephy(tp, 0x10, 0x8411);
4737
4738 /* Enable auto-lock and comdet, select txclk for tx. */
4739 tg3_writephy(tp, 0x11, 0x0a10);
4740
4741 tg3_writephy(tp, 0x18, 0x00a0);
4742 tg3_writephy(tp, 0x16, 0x41ff);
4743
4744 /* Assert and deassert POR. */
4745 tg3_writephy(tp, 0x13, 0x0400);
4746 udelay(40);
4747 tg3_writephy(tp, 0x13, 0x0000);
4748
4749 tg3_writephy(tp, 0x11, 0x0a50);
4750 udelay(40);
4751 tg3_writephy(tp, 0x11, 0x0a10);
4752
4753 /* Wait for signal to stabilize */
4754 /* XXX schedule_timeout() ... */
4755 for (i = 0; i < 15000; i++)
4756 udelay(10);
4757
4758 /* Deselect the channel register so we can read the PHYID
4759 * later.
4760 */
4761 tg3_writephy(tp, 0x10, 0x8011);
4762}
4763
4764static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4765{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004766 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 u32 sg_dig_ctrl, sg_dig_status;
4768 u32 serdes_cfg, expected_sg_dig_ctrl;
4769 int workaround, port_a;
4770 int current_link_up;
4771
4772 serdes_cfg = 0;
4773 expected_sg_dig_ctrl = 0;
4774 workaround = 0;
4775 port_a = 1;
4776 current_link_up = 0;
4777
4778 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4779 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4780 workaround = 1;
4781 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4782 port_a = 0;
4783
4784 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4785 /* preserve bits 20-23 for voltage regulator */
4786 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4787 }
4788
4789 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4790
4791 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004792 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 if (workaround) {
4794 u32 val = serdes_cfg;
4795
4796 if (port_a)
4797 val |= 0xc010000;
4798 else
4799 val |= 0x4010000;
4800 tw32_f(MAC_SERDES_CFG, val);
4801 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004802
4803 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 }
4805 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4806 tg3_setup_flow_control(tp, 0, 0);
4807 current_link_up = 1;
4808 }
4809 goto out;
4810 }
4811
4812 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004813 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
Matt Carlson82cd3d12007-12-20 20:09:00 -08004815 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4816 if (flowctrl & ADVERTISE_1000XPAUSE)
4817 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4818 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4819 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820
4821 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004822 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004823 tp->serdes_counter &&
4824 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4825 MAC_STATUS_RCVD_CFG)) ==
4826 MAC_STATUS_PCS_SYNCED)) {
4827 tp->serdes_counter--;
4828 current_link_up = 1;
4829 goto out;
4830 }
4831restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 if (workaround)
4833 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004834 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 udelay(5);
4836 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4837
Michael Chan3d3ebe72006-09-27 15:59:15 -07004838 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004839 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4841 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004842 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 mac_status = tr32(MAC_STATUS);
4844
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004845 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004847 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Matt Carlson82cd3d12007-12-20 20:09:00 -08004849 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4850 local_adv |= ADVERTISE_1000XPAUSE;
4851 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4852 local_adv |= ADVERTISE_1000XPSE_ASYM;
4853
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004854 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004855 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004856 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004857 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
Matt Carlson859edb22011-12-08 14:40:16 +00004859 tp->link_config.rmt_adv =
4860 mii_adv_to_ethtool_adv_x(remote_adv);
4861
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 tg3_setup_flow_control(tp, local_adv, remote_adv);
4863 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004864 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004865 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004866 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004867 if (tp->serdes_counter)
4868 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 else {
4870 if (workaround) {
4871 u32 val = serdes_cfg;
4872
4873 if (port_a)
4874 val |= 0xc010000;
4875 else
4876 val |= 0x4010000;
4877
4878 tw32_f(MAC_SERDES_CFG, val);
4879 }
4880
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004881 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 udelay(40);
4883
4884 /* Link parallel detection - link is up */
4885 /* only if we have PCS_SYNC and not */
4886 /* receiving config code words */
4887 mac_status = tr32(MAC_STATUS);
4888 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4889 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4890 tg3_setup_flow_control(tp, 0, 0);
4891 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004892 tp->phy_flags |=
4893 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004894 tp->serdes_counter =
4895 SERDES_PARALLEL_DET_TIMEOUT;
4896 } else
4897 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 }
4899 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004900 } else {
4901 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004902 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 }
4904
4905out:
4906 return current_link_up;
4907}
4908
4909static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4910{
4911 int current_link_up = 0;
4912
Michael Chan5cf64b8a2007-05-05 12:11:21 -07004913 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
4916 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004917 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004919
Matt Carlson5be73b42007-12-20 20:09:29 -08004920 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4921 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
Matt Carlson5be73b42007-12-20 20:09:29 -08004923 if (txflags & ANEG_CFG_PS1)
4924 local_adv |= ADVERTISE_1000XPAUSE;
4925 if (txflags & ANEG_CFG_PS2)
4926 local_adv |= ADVERTISE_1000XPSE_ASYM;
4927
4928 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4929 remote_adv |= LPA_1000XPAUSE;
4930 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4931 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
Matt Carlson859edb22011-12-08 14:40:16 +00004933 tp->link_config.rmt_adv =
4934 mii_adv_to_ethtool_adv_x(remote_adv);
4935
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936 tg3_setup_flow_control(tp, local_adv, remote_adv);
4937
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938 current_link_up = 1;
4939 }
4940 for (i = 0; i < 30; i++) {
4941 udelay(20);
4942 tw32_f(MAC_STATUS,
4943 (MAC_STATUS_SYNC_CHANGED |
4944 MAC_STATUS_CFG_CHANGED));
4945 udelay(40);
4946 if ((tr32(MAC_STATUS) &
4947 (MAC_STATUS_SYNC_CHANGED |
4948 MAC_STATUS_CFG_CHANGED)) == 0)
4949 break;
4950 }
4951
4952 mac_status = tr32(MAC_STATUS);
4953 if (current_link_up == 0 &&
4954 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4955 !(mac_status & MAC_STATUS_RCVD_CFG))
4956 current_link_up = 1;
4957 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004958 tg3_setup_flow_control(tp, 0, 0);
4959
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 /* Forcing 1000FD link up. */
4961 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
4963 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4964 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004965
4966 tw32_f(MAC_MODE, tp->mac_mode);
4967 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 }
4969
4970out:
4971 return current_link_up;
4972}
4973
4974static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4975{
4976 u32 orig_pause_cfg;
4977 u16 orig_active_speed;
4978 u8 orig_active_duplex;
4979 u32 mac_status;
4980 int current_link_up;
4981 int i;
4982
Matt Carlson8d018622007-12-20 20:05:44 -08004983 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 orig_active_speed = tp->link_config.active_speed;
4985 orig_active_duplex = tp->link_config.active_duplex;
4986
Joe Perches63c3a662011-04-26 08:12:10 +00004987 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004989 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 mac_status = tr32(MAC_STATUS);
4991 mac_status &= (MAC_STATUS_PCS_SYNCED |
4992 MAC_STATUS_SIGNAL_DET |
4993 MAC_STATUS_CFG_CHANGED |
4994 MAC_STATUS_RCVD_CFG);
4995 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4996 MAC_STATUS_SIGNAL_DET)) {
4997 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4998 MAC_STATUS_CFG_CHANGED));
4999 return 0;
5000 }
5001 }
5002
5003 tw32_f(MAC_TX_AUTO_NEG, 0);
5004
5005 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
5006 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
5007 tw32_f(MAC_MODE, tp->mac_mode);
5008 udelay(40);
5009
Matt Carlson79eb6902010-02-17 15:17:03 +00005010 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 tg3_init_bcm8002(tp);
5012
5013 /* Enable link change event even when serdes polling. */
5014 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5015 udelay(40);
5016
5017 current_link_up = 0;
Matt Carlson859edb22011-12-08 14:40:16 +00005018 tp->link_config.rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 mac_status = tr32(MAC_STATUS);
5020
Joe Perches63c3a662011-04-26 08:12:10 +00005021 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
5023 else
5024 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
5025
Matt Carlson898a56f2009-08-28 14:02:40 +00005026 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00005028 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029
5030 for (i = 0; i < 100; i++) {
5031 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
5032 MAC_STATUS_CFG_CHANGED));
5033 udelay(5);
5034 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07005035 MAC_STATUS_CFG_CHANGED |
5036 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 break;
5038 }
5039
5040 mac_status = tr32(MAC_STATUS);
5041 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
5042 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07005043 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
5044 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 tw32_f(MAC_MODE, (tp->mac_mode |
5046 MAC_MODE_SEND_CONFIGS));
5047 udelay(1);
5048 tw32_f(MAC_MODE, tp->mac_mode);
5049 }
5050 }
5051
5052 if (current_link_up == 1) {
5053 tp->link_config.active_speed = SPEED_1000;
5054 tp->link_config.active_duplex = DUPLEX_FULL;
5055 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5056 LED_CTRL_LNKLED_OVERRIDE |
5057 LED_CTRL_1000MBPS_ON));
5058 } else {
Matt Carlsone7405222012-02-13 15:20:16 +00005059 tp->link_config.active_speed = SPEED_UNKNOWN;
5060 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 tw32(MAC_LED_CTRL, (tp->led_ctrl |
5062 LED_CTRL_LNKLED_OVERRIDE |
5063 LED_CTRL_TRAFFIC_OVERRIDE));
5064 }
5065
5066 if (current_link_up != netif_carrier_ok(tp->dev)) {
5067 if (current_link_up)
5068 netif_carrier_on(tp->dev);
5069 else
5070 netif_carrier_off(tp->dev);
5071 tg3_link_report(tp);
5072 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08005073 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 if (orig_pause_cfg != now_pause_cfg ||
5075 orig_active_speed != tp->link_config.active_speed ||
5076 orig_active_duplex != tp->link_config.active_duplex)
5077 tg3_link_report(tp);
5078 }
5079
5080 return 0;
5081}
5082
Michael Chan747e8f82005-07-25 12:33:22 -07005083static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
5084{
5085 int current_link_up, err = 0;
5086 u32 bmsr, bmcr;
5087 u16 current_speed;
5088 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08005089 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07005090
5091 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
5092 tw32_f(MAC_MODE, tp->mac_mode);
5093 udelay(40);
5094
5095 tw32(MAC_EVENT, 0);
5096
5097 tw32_f(MAC_STATUS,
5098 (MAC_STATUS_SYNC_CHANGED |
5099 MAC_STATUS_CFG_CHANGED |
5100 MAC_STATUS_MI_COMPLETION |
5101 MAC_STATUS_LNKSTATE_CHANGED));
5102 udelay(40);
5103
5104 if (force_reset)
5105 tg3_phy_reset(tp);
5106
5107 current_link_up = 0;
Matt Carlsone7405222012-02-13 15:20:16 +00005108 current_speed = SPEED_UNKNOWN;
5109 current_duplex = DUPLEX_UNKNOWN;
Matt Carlson859edb22011-12-08 14:40:16 +00005110 tp->link_config.rmt_adv = 0;
Michael Chan747e8f82005-07-25 12:33:22 -07005111
5112 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5113 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005114 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
5115 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5116 bmsr |= BMSR_LSTATUS;
5117 else
5118 bmsr &= ~BMSR_LSTATUS;
5119 }
Michael Chan747e8f82005-07-25 12:33:22 -07005120
5121 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
5122
5123 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005124 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005125 /* do nothing, just check for link up at the end */
5126 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson28011cf2011-11-16 18:36:59 -05005127 u32 adv, newadv;
Michael Chan747e8f82005-07-25 12:33:22 -07005128
5129 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
Matt Carlson28011cf2011-11-16 18:36:59 -05005130 newadv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
5131 ADVERTISE_1000XPAUSE |
5132 ADVERTISE_1000XPSE_ASYM |
5133 ADVERTISE_SLCT);
Michael Chan747e8f82005-07-25 12:33:22 -07005134
Matt Carlson28011cf2011-11-16 18:36:59 -05005135 newadv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Matt Carlson37f07022011-11-17 14:30:55 +00005136 newadv |= ethtool_adv_to_mii_adv_x(tp->link_config.advertising);
Michael Chan747e8f82005-07-25 12:33:22 -07005137
Matt Carlson28011cf2011-11-16 18:36:59 -05005138 if ((newadv != adv) || !(bmcr & BMCR_ANENABLE)) {
5139 tg3_writephy(tp, MII_ADVERTISE, newadv);
Michael Chan747e8f82005-07-25 12:33:22 -07005140 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
5141 tg3_writephy(tp, MII_BMCR, bmcr);
5142
5143 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07005144 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005145 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005146
5147 return err;
5148 }
5149 } else {
5150 u32 new_bmcr;
5151
5152 bmcr &= ~BMCR_SPEED1000;
5153 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
5154
5155 if (tp->link_config.duplex == DUPLEX_FULL)
5156 new_bmcr |= BMCR_FULLDPLX;
5157
5158 if (new_bmcr != bmcr) {
5159 /* BMCR_SPEED1000 is a reserved bit that needs
5160 * to be set on write.
5161 */
5162 new_bmcr |= BMCR_SPEED1000;
5163
5164 /* Force a linkdown */
5165 if (netif_carrier_ok(tp->dev)) {
5166 u32 adv;
5167
5168 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
5169 adv &= ~(ADVERTISE_1000XFULL |
5170 ADVERTISE_1000XHALF |
5171 ADVERTISE_SLCT);
5172 tg3_writephy(tp, MII_ADVERTISE, adv);
5173 tg3_writephy(tp, MII_BMCR, bmcr |
5174 BMCR_ANRESTART |
5175 BMCR_ANENABLE);
5176 udelay(10);
5177 netif_carrier_off(tp->dev);
5178 }
5179 tg3_writephy(tp, MII_BMCR, new_bmcr);
5180 bmcr = new_bmcr;
5181 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
5182 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08005183 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
5184 ASIC_REV_5714) {
5185 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
5186 bmsr |= BMSR_LSTATUS;
5187 else
5188 bmsr &= ~BMSR_LSTATUS;
5189 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005190 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005191 }
5192 }
5193
5194 if (bmsr & BMSR_LSTATUS) {
5195 current_speed = SPEED_1000;
5196 current_link_up = 1;
5197 if (bmcr & BMCR_FULLDPLX)
5198 current_duplex = DUPLEX_FULL;
5199 else
5200 current_duplex = DUPLEX_HALF;
5201
Matt Carlsonef167e22007-12-20 20:10:01 -08005202 local_adv = 0;
5203 remote_adv = 0;
5204
Michael Chan747e8f82005-07-25 12:33:22 -07005205 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08005206 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07005207
5208 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
5209 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
5210 common = local_adv & remote_adv;
5211 if (common & (ADVERTISE_1000XHALF |
5212 ADVERTISE_1000XFULL)) {
5213 if (common & ADVERTISE_1000XFULL)
5214 current_duplex = DUPLEX_FULL;
5215 else
5216 current_duplex = DUPLEX_HALF;
Matt Carlson859edb22011-12-08 14:40:16 +00005217
5218 tp->link_config.rmt_adv =
5219 mii_adv_to_ethtool_adv_x(remote_adv);
Joe Perches63c3a662011-04-26 08:12:10 +00005220 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00005221 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00005222 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07005223 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00005224 }
Michael Chan747e8f82005-07-25 12:33:22 -07005225 }
5226 }
5227
Matt Carlsonef167e22007-12-20 20:10:01 -08005228 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
5229 tg3_setup_flow_control(tp, local_adv, remote_adv);
5230
Michael Chan747e8f82005-07-25 12:33:22 -07005231 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
5232 if (tp->link_config.active_duplex == DUPLEX_HALF)
5233 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
5234
5235 tw32_f(MAC_MODE, tp->mac_mode);
5236 udelay(40);
5237
5238 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
5239
5240 tp->link_config.active_speed = current_speed;
5241 tp->link_config.active_duplex = current_duplex;
5242
5243 if (current_link_up != netif_carrier_ok(tp->dev)) {
5244 if (current_link_up)
5245 netif_carrier_on(tp->dev);
5246 else {
5247 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005248 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005249 }
5250 tg3_link_report(tp);
5251 }
5252 return err;
5253}
5254
5255static void tg3_serdes_parallel_detect(struct tg3 *tp)
5256{
Michael Chan3d3ebe72006-09-27 15:59:15 -07005257 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07005258 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07005259 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07005260 return;
5261 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005262
Michael Chan747e8f82005-07-25 12:33:22 -07005263 if (!netif_carrier_ok(tp->dev) &&
5264 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
5265 u32 bmcr;
5266
5267 tg3_readphy(tp, MII_BMCR, &bmcr);
5268 if (bmcr & BMCR_ANENABLE) {
5269 u32 phy1, phy2;
5270
5271 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005272 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
5273 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07005274
5275 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005276 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5277 MII_TG3_DSP_EXP1_INT_STAT);
5278 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
5279 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005280
5281 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
5282 /* We have signal detect and not receiving
5283 * config code words, link is up by parallel
5284 * detection.
5285 */
5286
5287 bmcr &= ~BMCR_ANENABLE;
5288 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
5289 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005290 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005291 }
5292 }
Matt Carlson859a588792010-04-05 10:19:28 +00005293 } else if (netif_carrier_ok(tp->dev) &&
5294 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005295 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07005296 u32 phy2;
5297
5298 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00005299 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
5300 MII_TG3_DSP_EXP1_INT_STAT);
5301 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07005302 if (phy2 & 0x20) {
5303 u32 bmcr;
5304
5305 /* Config code words received, turn on autoneg. */
5306 tg3_readphy(tp, MII_BMCR, &bmcr);
5307 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
5308
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005309 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07005310
5311 }
5312 }
5313}
5314
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315static int tg3_setup_phy(struct tg3 *tp, int force_reset)
5316{
Matt Carlsonf2096f92011-04-05 14:22:48 +00005317 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 int err;
5319
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005320 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00005322 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07005323 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00005324 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326
Matt Carlsonbcb37f62008-11-03 16:52:09 -08005327 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005328 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08005329
5330 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
5331 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
5332 scale = 65;
5333 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
5334 scale = 6;
5335 else
5336 scale = 12;
5337
5338 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
5339 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
5340 tw32(GRC_MISC_CFG, val);
5341 }
5342
Matt Carlsonf2096f92011-04-05 14:22:48 +00005343 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
5344 (6 << TX_LENGTHS_IPG_SHIFT);
5345 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
5346 val |= tr32(MAC_TX_LENGTHS) &
5347 (TX_LENGTHS_JMB_FRM_LEN_MSK |
5348 TX_LENGTHS_CNT_DWN_VAL_MSK);
5349
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 if (tp->link_config.active_speed == SPEED_1000 &&
5351 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00005352 tw32(MAC_TX_LENGTHS, val |
5353 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00005355 tw32(MAC_TX_LENGTHS, val |
5356 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
Joe Perches63c3a662011-04-26 08:12:10 +00005358 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 if (netif_carrier_ok(tp->dev)) {
5360 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07005361 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 } else {
5363 tw32(HOSTCC_STAT_COAL_TICKS, 0);
5364 }
5365 }
5366
Joe Perches63c3a662011-04-26 08:12:10 +00005367 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00005368 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07005369 if (!netif_carrier_ok(tp->dev))
5370 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
5371 tp->pwrmgmt_thresh;
5372 else
5373 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
5374 tw32(PCIE_PWR_MGMT_THRESH, val);
5375 }
5376
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 return err;
5378}
5379
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005380static inline int tg3_irq_sync(struct tg3 *tp)
5381{
5382 return tp->irq_sync;
5383}
5384
Matt Carlson97bd8e42011-04-13 11:05:04 +00005385static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
5386{
5387 int i;
5388
5389 dst = (u32 *)((u8 *)dst + off);
5390 for (i = 0; i < len; i += sizeof(u32))
5391 *dst++ = tr32(off + i);
5392}
5393
5394static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
5395{
5396 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
5397 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
5398 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
5399 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
5400 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
5401 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
5402 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
5403 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
5404 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
5405 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
5406 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
5407 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
5408 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
5409 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
5410 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
5411 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
5412 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
5413 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
5414 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
5415
Joe Perches63c3a662011-04-26 08:12:10 +00005416 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005417 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
5418
5419 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
5420 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
5421 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
5422 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
5423 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
5424 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
5425 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
5426 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
5427
Joe Perches63c3a662011-04-26 08:12:10 +00005428 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005429 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
5430 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
5431 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
5432 }
5433
5434 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
5435 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
5436 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
5437 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
5438 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
5439
Joe Perches63c3a662011-04-26 08:12:10 +00005440 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00005441 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
5442}
5443
5444static void tg3_dump_state(struct tg3 *tp)
5445{
5446 int i;
5447 u32 *regs;
5448
5449 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
5450 if (!regs) {
5451 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
5452 return;
5453 }
5454
Joe Perches63c3a662011-04-26 08:12:10 +00005455 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00005456 /* Read up to but not including private PCI registers */
5457 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
5458 regs[i / sizeof(u32)] = tr32(i);
5459 } else
5460 tg3_dump_legacy_regs(tp, regs);
5461
5462 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
5463 if (!regs[i + 0] && !regs[i + 1] &&
5464 !regs[i + 2] && !regs[i + 3])
5465 continue;
5466
5467 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
5468 i * 4,
5469 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
5470 }
5471
5472 kfree(regs);
5473
5474 for (i = 0; i < tp->irq_cnt; i++) {
5475 struct tg3_napi *tnapi = &tp->napi[i];
5476
5477 /* SW status block */
5478 netdev_err(tp->dev,
5479 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
5480 i,
5481 tnapi->hw_status->status,
5482 tnapi->hw_status->status_tag,
5483 tnapi->hw_status->rx_jumbo_consumer,
5484 tnapi->hw_status->rx_consumer,
5485 tnapi->hw_status->rx_mini_consumer,
5486 tnapi->hw_status->idx[0].rx_producer,
5487 tnapi->hw_status->idx[0].tx_consumer);
5488
5489 netdev_err(tp->dev,
5490 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
5491 i,
5492 tnapi->last_tag, tnapi->last_irq_tag,
5493 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
5494 tnapi->rx_rcb_ptr,
5495 tnapi->prodring.rx_std_prod_idx,
5496 tnapi->prodring.rx_std_cons_idx,
5497 tnapi->prodring.rx_jmb_prod_idx,
5498 tnapi->prodring.rx_jmb_cons_idx);
5499 }
5500}
5501
Michael Chandf3e6542006-05-26 17:48:07 -07005502/* This is called whenever we suspect that the system chipset is re-
5503 * ordering the sequence of MMIO to the tx send mailbox. The symptom
5504 * is bogus tx completions. We try to recover by setting the
5505 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
5506 * in the workqueue.
5507 */
5508static void tg3_tx_recover(struct tg3 *tp)
5509{
Joe Perches63c3a662011-04-26 08:12:10 +00005510 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07005511 tp->write32_tx_mbox == tg3_write_indirect_mbox);
5512
Matt Carlson5129c3a2010-04-05 10:19:23 +00005513 netdev_warn(tp->dev,
5514 "The system may be re-ordering memory-mapped I/O "
5515 "cycles to the network device, attempting to recover. "
5516 "Please report the problem to the driver maintainer "
5517 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07005518
5519 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005520 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005521 spin_unlock(&tp->lock);
5522}
5523
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005524static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07005525{
Matt Carlsonf65aac12010-08-02 11:26:03 +00005526 /* Tell compiler to fetch tx indices from memory. */
5527 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005528 return tnapi->tx_pending -
5529 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07005530}
5531
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532/* Tigon3 never reports partial packet sends. So we do not
5533 * need special logic to handle SKBs that have not had all
5534 * of their frags sent yet, like SunGEM does.
5535 */
Matt Carlson17375d22009-08-28 14:02:18 +00005536static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537{
Matt Carlson17375d22009-08-28 14:02:18 +00005538 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005539 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005540 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005541 struct netdev_queue *txq;
5542 int index = tnapi - tp->napi;
Tom Herbert298376d2011-11-28 16:33:30 +00005543 unsigned int pkts_compl = 0, bytes_compl = 0;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005544
Joe Perches63c3a662011-04-26 08:12:10 +00005545 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005546 index--;
5547
5548 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549
5550 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00005551 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07005553 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554
Michael Chandf3e6542006-05-26 17:48:07 -07005555 if (unlikely(skb == NULL)) {
5556 tg3_tx_recover(tp);
5557 return;
5558 }
5559
Alexander Duyckf4188d82009-12-02 16:48:38 +00005560 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005561 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005562 skb_headlen(skb),
5563 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564
5565 ri->skb = NULL;
5566
Matt Carlsone01ee142011-07-27 14:20:50 +00005567 while (ri->fragmented) {
5568 ri->fragmented = false;
5569 sw_idx = NEXT_TX(sw_idx);
5570 ri = &tnapi->tx_buffers[sw_idx];
5571 }
5572
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573 sw_idx = NEXT_TX(sw_idx);
5574
5575 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005576 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07005577 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
5578 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005579
5580 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005581 dma_unmap_addr(ri, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00005582 skb_frag_size(&skb_shinfo(skb)->frags[i]),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005583 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00005584
5585 while (ri->fragmented) {
5586 ri->fragmented = false;
5587 sw_idx = NEXT_TX(sw_idx);
5588 ri = &tnapi->tx_buffers[sw_idx];
5589 }
5590
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591 sw_idx = NEXT_TX(sw_idx);
5592 }
5593
Tom Herbert298376d2011-11-28 16:33:30 +00005594 pkts_compl++;
5595 bytes_compl += skb->len;
5596
David S. Millerf47c11e2005-06-24 20:18:35 -07005597 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07005598
5599 if (unlikely(tx_bug)) {
5600 tg3_tx_recover(tp);
5601 return;
5602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 }
5604
Tom Herbert5cb917b2012-03-05 19:53:50 +00005605 netdev_tx_completed_queue(txq, pkts_compl, bytes_compl);
Tom Herbert298376d2011-11-28 16:33:30 +00005606
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005607 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Michael Chan1b2a7202006-08-07 21:46:02 -07005609 /* Need to make the tx_cons update visible to tg3_start_xmit()
5610 * before checking for netif_queue_stopped(). Without the
5611 * memory barrier, there is a small possibility that tg3_start_xmit()
5612 * will miss it and cause the queue to be stopped forever.
5613 */
5614 smp_mb();
5615
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005616 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005617 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005618 __netif_tx_lock(txq, smp_processor_id());
5619 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005620 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005621 netif_tx_wake_queue(txq);
5622 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07005623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624}
5625
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005626static void tg3_frag_free(bool is_frag, void *data)
5627{
5628 if (is_frag)
5629 put_page(virt_to_head_page(data));
5630 else
5631 kfree(data);
5632}
5633
Eric Dumazet9205fd92011-11-18 06:47:01 +00005634static void tg3_rx_data_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005635{
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005636 unsigned int skb_size = SKB_DATA_ALIGN(map_sz + TG3_RX_OFFSET(tp)) +
5637 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
5638
Eric Dumazet9205fd92011-11-18 06:47:01 +00005639 if (!ri->data)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005640 return;
5641
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005642 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005643 map_sz, PCI_DMA_FROMDEVICE);
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005644 tg3_frag_free(skb_size <= PAGE_SIZE, ri->data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005645 ri->data = NULL;
Matt Carlson2b2cdb62009-11-13 13:03:48 +00005646}
5647
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005648
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649/* Returns size of skb allocated or < 0 on error.
5650 *
5651 * We only need to fill in the address because the other members
5652 * of the RX descriptor are invariant, see tg3_init_rings.
5653 *
5654 * Note the purposeful assymetry of cpu vs. chip accesses. For
5655 * posting buffers we only dirty the first cache line of the RX
5656 * descriptor (containing the address). Whereas for the RX status
5657 * buffers the cpu only reads the last cacheline of the RX descriptor
5658 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
5659 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005660static int tg3_alloc_rx_data(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005661 u32 opaque_key, u32 dest_idx_unmasked,
5662 unsigned int *frag_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663{
5664 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00005665 struct ring_info *map;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005666 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 dma_addr_t mapping;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005668 int skb_size, data_size, dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670 switch (opaque_key) {
5671 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005672 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00005673 desc = &tpr->rx_std[dest_idx];
5674 map = &tpr->rx_std_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005675 data_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676 break;
5677
5678 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005679 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00005680 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00005681 map = &tpr->rx_jmb_buffers[dest_idx];
Eric Dumazet9205fd92011-11-18 06:47:01 +00005682 data_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 break;
5684
5685 default:
5686 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
5689 /* Do not overwrite any of the map or rp information
5690 * until we are sure we can commit to a new buffer.
5691 *
5692 * Callers depend upon this behavior and assume that
5693 * we leave everything unchanged if we fail.
5694 */
Eric Dumazet9205fd92011-11-18 06:47:01 +00005695 skb_size = SKB_DATA_ALIGN(data_size + TG3_RX_OFFSET(tp)) +
5696 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005697 if (skb_size <= PAGE_SIZE) {
5698 data = netdev_alloc_frag(skb_size);
5699 *frag_size = skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005700 } else {
5701 data = kmalloc(skb_size, GFP_ATOMIC);
5702 *frag_size = 0;
5703 }
Eric Dumazet9205fd92011-11-18 06:47:01 +00005704 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 return -ENOMEM;
5706
Eric Dumazet9205fd92011-11-18 06:47:01 +00005707 mapping = pci_map_single(tp->pdev,
5708 data + TG3_RX_OFFSET(tp),
5709 data_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 PCI_DMA_FROMDEVICE);
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005711 if (unlikely(pci_dma_mapping_error(tp->pdev, mapping))) {
Eric Dumazeta1e8b3072012-05-18 21:33:39 +00005712 tg3_frag_free(skb_size <= PAGE_SIZE, data);
Matt Carlsona21771d2009-11-02 14:25:31 +00005713 return -EIO;
5714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715
Eric Dumazet9205fd92011-11-18 06:47:01 +00005716 map->data = data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005717 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 desc->addr_hi = ((u64)mapping >> 32);
5720 desc->addr_lo = ((u64)mapping & 0xffffffff);
5721
Eric Dumazet9205fd92011-11-18 06:47:01 +00005722 return data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723}
5724
5725/* We only need to move over in the address because the other
5726 * members of the RX descriptor are invariant. See notes above
Eric Dumazet9205fd92011-11-18 06:47:01 +00005727 * tg3_alloc_rx_data for full details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728 */
Matt Carlsona3896162009-11-13 13:03:44 +00005729static void tg3_recycle_rx(struct tg3_napi *tnapi,
5730 struct tg3_rx_prodring_set *dpr,
5731 u32 opaque_key, int src_idx,
5732 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733{
Matt Carlson17375d22009-08-28 14:02:18 +00005734 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
5736 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005737 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005738 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
5740 switch (opaque_key) {
5741 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00005742 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005743 dest_desc = &dpr->rx_std[dest_idx];
5744 dest_map = &dpr->rx_std_buffers[dest_idx];
5745 src_desc = &spr->rx_std[src_idx];
5746 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 break;
5748
5749 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005750 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005751 dest_desc = &dpr->rx_jmb[dest_idx].std;
5752 dest_map = &dpr->rx_jmb_buffers[dest_idx];
5753 src_desc = &spr->rx_jmb[src_idx].std;
5754 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 break;
5756
5757 default:
5758 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Eric Dumazet9205fd92011-11-18 06:47:01 +00005761 dest_map->data = src_map->data;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005762 dma_unmap_addr_set(dest_map, mapping,
5763 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 dest_desc->addr_hi = src_desc->addr_hi;
5765 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00005766
5767 /* Ensure that the update to the skb happens after the physical
5768 * addresses have been transferred to the new BD location.
5769 */
5770 smp_wmb();
5771
Eric Dumazet9205fd92011-11-18 06:47:01 +00005772 src_map->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773}
5774
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775/* The RX ring scheme is composed of multiple rings which post fresh
5776 * buffers to the chip, and one special ring the chip uses to report
5777 * status back to the host.
5778 *
5779 * The special ring reports the status of received packets to the
5780 * host. The chip does not write into the original descriptor the
5781 * RX buffer was obtained from. The chip simply takes the original
5782 * descriptor as provided by the host, updates the status and length
5783 * field, then writes this into the next status ring entry.
5784 *
5785 * Each ring the host uses to post buffers to the chip is described
5786 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5787 * it is first placed into the on-chip ram. When the packet's length
5788 * is known, it walks down the TG3_BDINFO entries to select the ring.
5789 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5790 * which is within the range of the new packet's length is chosen.
5791 *
5792 * The "separate ring for rx status" scheme may sound queer, but it makes
5793 * sense from a cache coherency perspective. If only the host writes
5794 * to the buffer post rings, and only the chip writes to the rx status
5795 * rings, then cache lines never move beyond shared-modified state.
5796 * If both the host and chip were to write into the same ring, cache line
5797 * eviction could occur since both entities want it in an exclusive state.
5798 */
Matt Carlson17375d22009-08-28 14:02:18 +00005799static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800{
Matt Carlson17375d22009-08-28 14:02:18 +00005801 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005802 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005803 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005804 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005805 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005807 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005809 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 /*
5811 * We need to order the read of hw_idx and the read of
5812 * the opaque cookie.
5813 */
5814 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 work_mask = 0;
5816 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005817 std_prod_idx = tpr->rx_std_prod_idx;
5818 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005820 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005821 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 unsigned int len;
5823 struct sk_buff *skb;
5824 dma_addr_t dma_addr;
5825 u32 opaque_key, desc_idx, *post_ptr;
Eric Dumazet9205fd92011-11-18 06:47:01 +00005826 u8 *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827
5828 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5829 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5830 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005831 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005832 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005833 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005834 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005835 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005837 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005838 dma_addr = dma_unmap_addr(ri, mapping);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005839 data = ri->data;
Matt Carlson43619352009-11-13 13:03:47 +00005840 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005841 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
5844 work_mask |= opaque_key;
5845
5846 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5847 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5848 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005849 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 desc_idx, *post_ptr);
5851 drop_it_no_recycle:
5852 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005853 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 goto next_pkt;
5855 }
5856
Eric Dumazet9205fd92011-11-18 06:47:01 +00005857 prefetch(data + TG3_RX_OFFSET(tp));
Matt Carlsonad829262008-11-21 17:16:16 -08005858 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5859 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Matt Carlsond2757fc2010-04-12 06:58:27 +00005861 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 int skb_size;
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005863 unsigned int frag_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864
Eric Dumazet9205fd92011-11-18 06:47:01 +00005865 skb_size = tg3_alloc_rx_data(tp, tpr, opaque_key,
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005866 *post_ptr, &frag_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 if (skb_size < 0)
5868 goto drop_it;
5869
Matt Carlson287be122009-08-28 13:58:46 +00005870 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871 PCI_DMA_FROMDEVICE);
5872
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005873 skb = build_skb(data, frag_size);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005874 if (!skb) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00005875 tg3_frag_free(frag_size != 0, data);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005876 goto drop_it_no_recycle;
5877 }
5878 skb_reserve(skb, TG3_RX_OFFSET(tp));
5879 /* Ensure that the update to the data happens
Matt Carlson61e800c2010-02-17 15:16:54 +00005880 * after the usage of the old DMA mapping.
5881 */
5882 smp_wmb();
5883
Eric Dumazet9205fd92011-11-18 06:47:01 +00005884 ri->data = NULL;
Matt Carlson61e800c2010-02-17 15:16:54 +00005885
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 } else {
Matt Carlsona3896162009-11-13 13:03:44 +00005887 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 desc_idx, *post_ptr);
5889
Eric Dumazet9205fd92011-11-18 06:47:01 +00005890 skb = netdev_alloc_skb(tp->dev,
5891 len + TG3_RAW_IP_ALIGN);
5892 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 goto drop_it_no_recycle;
5894
Eric Dumazet9205fd92011-11-18 06:47:01 +00005895 skb_reserve(skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Eric Dumazet9205fd92011-11-18 06:47:01 +00005897 memcpy(skb->data,
5898 data + TG3_RX_OFFSET(tp),
5899 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 }
5902
Eric Dumazet9205fd92011-11-18 06:47:01 +00005903 skb_put(skb, len);
Michał Mirosławdc668912011-04-07 03:35:07 +00005904 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
5906 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
5907 >> RXD_TCPCSUM_SHIFT) == 0xffff))
5908 skb->ip_summed = CHECKSUM_UNNECESSARY;
5909 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005910 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911
5912 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005913
5914 if (len > (tp->dev->mtu + ETH_HLEN) &&
5915 skb->protocol != htons(ETH_P_8021Q)) {
5916 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00005917 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005918 }
5919
Matt Carlson9dc7a112010-04-12 06:58:28 +00005920 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00005921 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
5922 __vlan_hwaccel_put_tag(skb,
5923 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00005924
Matt Carlsonbf933c82011-01-25 15:58:49 +00005925 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 received++;
5928 budget--;
5929
5930next_pkt:
5931 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07005932
5933 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005934 tpr->rx_std_prod_idx = std_prod_idx &
5935 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005936 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5937 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005938 work_mask &= ~RXD_OPAQUE_RING_STD;
5939 rx_std_posted = 0;
5940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005942 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005943 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005944
5945 /* Refresh hw_idx to see if there is new work */
5946 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005947 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005948 rmb();
5949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950 }
5951
5952 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005953 tnapi->rx_rcb_ptr = sw_idx;
5954 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955
5956 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005957 if (!tg3_flag(tp, ENABLE_RSS)) {
Michael Chan6541b802012-03-04 14:48:14 +00005958 /* Sync BD data before updating mailbox */
5959 wmb();
5960
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005961 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005962 tpr->rx_std_prod_idx = std_prod_idx &
5963 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005964 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5965 tpr->rx_std_prod_idx);
5966 }
5967 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005968 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5969 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005970 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5971 tpr->rx_jmb_prod_idx);
5972 }
5973 mmiowb();
5974 } else if (work_mask) {
5975 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5976 * updated before the producer indices can be updated.
5977 */
5978 smp_wmb();
5979
Matt Carlson2c49a442010-09-30 10:34:35 +00005980 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5981 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005982
Michael Chan7ae52892012-03-21 15:38:33 +00005983 if (tnapi != &tp->napi[1]) {
5984 tp->rx_refill = true;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005985 napi_schedule(&tp->napi[1].napi);
Michael Chan7ae52892012-03-21 15:38:33 +00005986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
5989 return received;
5990}
5991
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005992static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005995 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005996 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5997
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 if (sblk->status & SD_STATUS_LINK_CHG) {
5999 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006000 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07006001 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00006002 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07006003 tw32_f(MAC_STATUS,
6004 (MAC_STATUS_SYNC_CHANGED |
6005 MAC_STATUS_CFG_CHANGED |
6006 MAC_STATUS_MI_COMPLETION |
6007 MAC_STATUS_LNKSTATE_CHANGED));
6008 udelay(40);
6009 } else
6010 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07006011 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 }
6013 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006014}
6015
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006016static int tg3_rx_prodring_xfer(struct tg3 *tp,
6017 struct tg3_rx_prodring_set *dpr,
6018 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006019{
6020 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006021 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006022
6023 while (1) {
6024 src_prod_idx = spr->rx_std_prod_idx;
6025
6026 /* Make sure updates to the rx_std_buffers[] entries and the
6027 * standard producer index are seen in the correct order.
6028 */
6029 smp_rmb();
6030
6031 if (spr->rx_std_cons_idx == src_prod_idx)
6032 break;
6033
6034 if (spr->rx_std_cons_idx < src_prod_idx)
6035 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
6036 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006037 cpycnt = tp->rx_std_ring_mask + 1 -
6038 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006039
Matt Carlson2c49a442010-09-30 10:34:35 +00006040 cpycnt = min(cpycnt,
6041 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006042
6043 si = spr->rx_std_cons_idx;
6044 di = dpr->rx_std_prod_idx;
6045
Matt Carlsone92967b2010-02-12 14:47:06 +00006046 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006047 if (dpr->rx_std_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006048 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006049 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006050 break;
6051 }
6052 }
6053
6054 if (!cpycnt)
6055 break;
6056
6057 /* Ensure that updates to the rx_std_buffers ring and the
6058 * shadowed hardware producer ring from tg3_recycle_skb() are
6059 * ordered correctly WRT the skb check above.
6060 */
6061 smp_rmb();
6062
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006063 memcpy(&dpr->rx_std_buffers[di],
6064 &spr->rx_std_buffers[si],
6065 cpycnt * sizeof(struct ring_info));
6066
6067 for (i = 0; i < cpycnt; i++, di++, si++) {
6068 struct tg3_rx_buffer_desc *sbd, *dbd;
6069 sbd = &spr->rx_std[si];
6070 dbd = &dpr->rx_std[di];
6071 dbd->addr_hi = sbd->addr_hi;
6072 dbd->addr_lo = sbd->addr_lo;
6073 }
6074
Matt Carlson2c49a442010-09-30 10:34:35 +00006075 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
6076 tp->rx_std_ring_mask;
6077 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
6078 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006079 }
6080
6081 while (1) {
6082 src_prod_idx = spr->rx_jmb_prod_idx;
6083
6084 /* Make sure updates to the rx_jmb_buffers[] entries and
6085 * the jumbo producer index are seen in the correct order.
6086 */
6087 smp_rmb();
6088
6089 if (spr->rx_jmb_cons_idx == src_prod_idx)
6090 break;
6091
6092 if (spr->rx_jmb_cons_idx < src_prod_idx)
6093 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
6094 else
Matt Carlson2c49a442010-09-30 10:34:35 +00006095 cpycnt = tp->rx_jmb_ring_mask + 1 -
6096 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006097
6098 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00006099 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006100
6101 si = spr->rx_jmb_cons_idx;
6102 di = dpr->rx_jmb_prod_idx;
6103
Matt Carlsone92967b2010-02-12 14:47:06 +00006104 for (i = di; i < di + cpycnt; i++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00006105 if (dpr->rx_jmb_buffers[i].data) {
Matt Carlsone92967b2010-02-12 14:47:06 +00006106 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006107 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00006108 break;
6109 }
6110 }
6111
6112 if (!cpycnt)
6113 break;
6114
6115 /* Ensure that updates to the rx_jmb_buffers ring and the
6116 * shadowed hardware producer ring from tg3_recycle_skb() are
6117 * ordered correctly WRT the skb check above.
6118 */
6119 smp_rmb();
6120
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006121 memcpy(&dpr->rx_jmb_buffers[di],
6122 &spr->rx_jmb_buffers[si],
6123 cpycnt * sizeof(struct ring_info));
6124
6125 for (i = 0; i < cpycnt; i++, di++, si++) {
6126 struct tg3_rx_buffer_desc *sbd, *dbd;
6127 sbd = &spr->rx_jmb[si].std;
6128 dbd = &dpr->rx_jmb[di].std;
6129 dbd->addr_hi = sbd->addr_hi;
6130 dbd->addr_lo = sbd->addr_lo;
6131 }
6132
Matt Carlson2c49a442010-09-30 10:34:35 +00006133 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
6134 tp->rx_jmb_ring_mask;
6135 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
6136 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006137 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006138
6139 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006140}
6141
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006142static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
6143{
6144 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
6146 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006147 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00006148 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00006149 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07006150 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151 }
6152
Matt Carlsonf891ea12012-04-24 13:37:01 +00006153 if (!tnapi->rx_rcb_prod_idx)
6154 return work_done;
6155
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 /* run RX thread, within the bounds set by NAPI.
6157 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006158 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006160 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00006161 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162
Joe Perches63c3a662011-04-26 08:12:10 +00006163 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00006164 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006165 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006166 u32 std_prod_idx = dpr->rx_std_prod_idx;
6167 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006168
Michael Chan7ae52892012-03-21 15:38:33 +00006169 tp->rx_refill = false;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006170 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006171 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00006172 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006173
6174 wmb();
6175
Matt Carlsone4af1af2010-02-12 14:47:05 +00006176 if (std_prod_idx != dpr->rx_std_prod_idx)
6177 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
6178 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006179
Matt Carlsone4af1af2010-02-12 14:47:05 +00006180 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
6181 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
6182 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006183
6184 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00006185
6186 if (err)
6187 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006188 }
6189
David S. Miller6f535762007-10-11 18:08:29 -07006190 return work_done;
6191}
David S. Millerf7383c22005-05-18 22:50:53 -07006192
Matt Carlsondb219972011-11-04 09:15:03 +00006193static inline void tg3_reset_task_schedule(struct tg3 *tp)
6194{
6195 if (!test_and_set_bit(TG3_FLAG_RESET_TASK_PENDING, tp->tg3_flags))
6196 schedule_work(&tp->reset_task);
6197}
6198
6199static inline void tg3_reset_task_cancel(struct tg3 *tp)
6200{
6201 cancel_work_sync(&tp->reset_task);
6202 tg3_flag_clear(tp, RESET_TASK_PENDING);
Matt Carlsonc7101352012-02-22 12:35:20 +00006203 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Matt Carlsondb219972011-11-04 09:15:03 +00006204}
6205
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006206static int tg3_poll_msix(struct napi_struct *napi, int budget)
6207{
6208 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6209 struct tg3 *tp = tnapi->tp;
6210 int work_done = 0;
6211 struct tg3_hw_status *sblk = tnapi->hw_status;
6212
6213 while (1) {
6214 work_done = tg3_poll_work(tnapi, work_done, budget);
6215
Joe Perches63c3a662011-04-26 08:12:10 +00006216 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006217 goto tx_recovery;
6218
6219 if (unlikely(work_done >= budget))
6220 break;
6221
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006222 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006223 * to tell the hw how much work has been processed,
6224 * so we must read it before checking for more work.
6225 */
6226 tnapi->last_tag = sblk->status_tag;
6227 tnapi->last_irq_tag = tnapi->last_tag;
6228 rmb();
6229
6230 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00006231 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
6232 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Michael Chan7ae52892012-03-21 15:38:33 +00006233
6234 /* This test here is not race free, but will reduce
6235 * the number of interrupts by looping again.
6236 */
6237 if (tnapi == &tp->napi[1] && tp->rx_refill)
6238 continue;
6239
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006240 napi_complete(napi);
6241 /* Reenable interrupts. */
6242 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Michael Chan7ae52892012-03-21 15:38:33 +00006243
6244 /* This test here is synchronized by napi_schedule()
6245 * and napi_complete() to close the race condition.
6246 */
6247 if (unlikely(tnapi == &tp->napi[1] && tp->rx_refill)) {
6248 tw32(HOSTCC_MODE, tp->coalesce_mode |
6249 HOSTCC_MODE_ENABLE |
6250 tnapi->coal_now);
6251 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006252 mmiowb();
6253 break;
6254 }
6255 }
6256
6257 return work_done;
6258
6259tx_recovery:
6260 /* work_done is guaranteed to be less than budget. */
6261 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006262 tg3_reset_task_schedule(tp);
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006263 return work_done;
6264}
6265
Matt Carlsone64de4e2011-04-13 11:05:05 +00006266static void tg3_process_error(struct tg3 *tp)
6267{
6268 u32 val;
6269 bool real_error = false;
6270
Joe Perches63c3a662011-04-26 08:12:10 +00006271 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00006272 return;
6273
6274 /* Check Flow Attention register */
6275 val = tr32(HOSTCC_FLOW_ATTN);
6276 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
6277 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
6278 real_error = true;
6279 }
6280
6281 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
6282 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
6283 real_error = true;
6284 }
6285
6286 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
6287 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
6288 real_error = true;
6289 }
6290
6291 if (!real_error)
6292 return;
6293
6294 tg3_dump_state(tp);
6295
Joe Perches63c3a662011-04-26 08:12:10 +00006296 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsondb219972011-11-04 09:15:03 +00006297 tg3_reset_task_schedule(tp);
Matt Carlsone64de4e2011-04-13 11:05:05 +00006298}
6299
David S. Miller6f535762007-10-11 18:08:29 -07006300static int tg3_poll(struct napi_struct *napi, int budget)
6301{
Matt Carlson8ef04422009-08-28 14:01:37 +00006302 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
6303 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07006304 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00006305 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07006306
6307 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00006308 if (sblk->status & SD_STATUS_ERROR)
6309 tg3_process_error(tp);
6310
Matt Carlson35f2d7d2009-11-13 13:03:41 +00006311 tg3_poll_link(tp);
6312
Matt Carlson17375d22009-08-28 14:02:18 +00006313 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07006314
Joe Perches63c3a662011-04-26 08:12:10 +00006315 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07006316 goto tx_recovery;
6317
6318 if (unlikely(work_done >= budget))
6319 break;
6320
Joe Perches63c3a662011-04-26 08:12:10 +00006321 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00006322 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07006323 * to tell the hw how much work has been processed,
6324 * so we must read it before checking for more work.
6325 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006326 tnapi->last_tag = sblk->status_tag;
6327 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07006328 rmb();
6329 } else
6330 sblk->status &= ~SD_STATUS_UPDATED;
6331
Matt Carlson17375d22009-08-28 14:02:18 +00006332 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08006333 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00006334 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07006335 break;
6336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337 }
6338
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006339 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07006340
6341tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07006342 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08006343 napi_complete(napi);
Matt Carlsondb219972011-11-04 09:15:03 +00006344 tg3_reset_task_schedule(tp);
Michael Chan4fd7ab52007-10-12 01:39:50 -07006345 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346}
6347
Matt Carlson66cfd1b2010-09-30 10:34:30 +00006348static void tg3_napi_disable(struct tg3 *tp)
6349{
6350 int i;
6351
6352 for (i = tp->irq_cnt - 1; i >= 0; i--)
6353 napi_disable(&tp->napi[i].napi);
6354}
6355
6356static void tg3_napi_enable(struct tg3 *tp)
6357{
6358 int i;
6359
6360 for (i = 0; i < tp->irq_cnt; i++)
6361 napi_enable(&tp->napi[i].napi);
6362}
6363
6364static void tg3_napi_init(struct tg3 *tp)
6365{
6366 int i;
6367
6368 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
6369 for (i = 1; i < tp->irq_cnt; i++)
6370 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
6371}
6372
6373static void tg3_napi_fini(struct tg3 *tp)
6374{
6375 int i;
6376
6377 for (i = 0; i < tp->irq_cnt; i++)
6378 netif_napi_del(&tp->napi[i].napi);
6379}
6380
6381static inline void tg3_netif_stop(struct tg3 *tp)
6382{
6383 tp->dev->trans_start = jiffies; /* prevent tx timeout */
6384 tg3_napi_disable(tp);
6385 netif_tx_disable(tp->dev);
6386}
6387
6388static inline void tg3_netif_start(struct tg3 *tp)
6389{
6390 /* NOTE: unconditional netif_tx_wake_all_queues is only
6391 * appropriate so long as all callers are assured to
6392 * have free tx slots (such as after tg3_init_hw)
6393 */
6394 netif_tx_wake_all_queues(tp->dev);
6395
6396 tg3_napi_enable(tp);
6397 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
6398 tg3_enable_ints(tp);
6399}
6400
David S. Millerf47c11e2005-06-24 20:18:35 -07006401static void tg3_irq_quiesce(struct tg3 *tp)
6402{
Matt Carlson4f125f42009-09-01 12:55:02 +00006403 int i;
6404
David S. Millerf47c11e2005-06-24 20:18:35 -07006405 BUG_ON(tp->irq_sync);
6406
6407 tp->irq_sync = 1;
6408 smp_mb();
6409
Matt Carlson4f125f42009-09-01 12:55:02 +00006410 for (i = 0; i < tp->irq_cnt; i++)
6411 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07006412}
6413
David S. Millerf47c11e2005-06-24 20:18:35 -07006414/* Fully shutdown all tg3 driver activity elsewhere in the system.
6415 * If irq_sync is non-zero, then the IRQ handler must be synchronized
6416 * with as well. Most of the time, this is not necessary except when
6417 * shutting down the device.
6418 */
6419static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
6420{
Michael Chan46966542007-07-11 19:47:19 -07006421 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07006422 if (irq_sync)
6423 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006424}
6425
6426static inline void tg3_full_unlock(struct tg3 *tp)
6427{
David S. Millerf47c11e2005-06-24 20:18:35 -07006428 spin_unlock_bh(&tp->lock);
6429}
6430
Michael Chanfcfa0a32006-03-20 22:28:41 -08006431/* One-shot MSI handler - Chip automatically disables interrupt
6432 * after sending MSI so driver doesn't have to do it.
6433 */
David Howells7d12e782006-10-05 14:55:46 +01006434static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08006435{
Matt Carlson09943a12009-08-28 14:01:57 +00006436 struct tg3_napi *tnapi = dev_id;
6437 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08006438
Matt Carlson898a56f2009-08-28 14:02:40 +00006439 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006440 if (tnapi->rx_rcb)
6441 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006442
6443 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006444 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08006445
6446 return IRQ_HANDLED;
6447}
6448
Michael Chan88b06bc22005-04-21 17:13:25 -07006449/* MSI ISR - No need to check for interrupt sharing and no need to
6450 * flush status block and interrupt mailbox. PCI ordering rules
6451 * guarantee that MSI will arrive after the status block.
6452 */
David Howells7d12e782006-10-05 14:55:46 +01006453static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07006454{
Matt Carlson09943a12009-08-28 14:01:57 +00006455 struct tg3_napi *tnapi = dev_id;
6456 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07006457
Matt Carlson898a56f2009-08-28 14:02:40 +00006458 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006459 if (tnapi->rx_rcb)
6460 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07006461 /*
David S. Millerfac9b832005-05-18 22:46:34 -07006462 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07006463 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07006464 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07006465 * NIC to stop sending us irqs, engaging "in-intr-handler"
6466 * event coalescing.
6467 */
Matt Carlson5b39de92011-08-31 11:44:50 +00006468 tw32_mailbox(tnapi->int_mbox, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07006469 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00006470 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07006471
Michael Chan88b06bc22005-04-21 17:13:25 -07006472 return IRQ_RETVAL(1);
6473}
6474
David Howells7d12e782006-10-05 14:55:46 +01006475static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476{
Matt Carlson09943a12009-08-28 14:01:57 +00006477 struct tg3_napi *tnapi = dev_id;
6478 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006479 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480 unsigned int handled = 1;
6481
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482 /* In INTx mode, it is possible for the interrupt to arrive at
6483 * the CPU before the status block posted prior to the interrupt.
6484 * Reading the PCI State register will confirm whether the
6485 * interrupt is ours and will flush the status block.
6486 */
Michael Chand18edcb2007-03-24 20:57:11 -07006487 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00006488 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006489 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6490 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006491 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07006492 }
Michael Chand18edcb2007-03-24 20:57:11 -07006493 }
6494
6495 /*
6496 * Writing any value to intr-mbox-0 clears PCI INTA# and
6497 * chip-internal interrupt pending events.
6498 * Writing non-zero to intr-mbox-0 additional tells the
6499 * NIC to stop sending us irqs, engaging "in-intr-handler"
6500 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006501 *
6502 * Flush the mailbox to de-assert the IRQ immediately to prevent
6503 * spurious interrupts. The flush impacts performance but
6504 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006505 */
Michael Chanc04cb342007-05-07 00:26:15 -07006506 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07006507 if (tg3_irq_sync(tp))
6508 goto out;
6509 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00006510 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00006511 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00006512 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07006513 } else {
6514 /* No work, shared interrupt perhaps? re-enable
6515 * interrupts, and flush that PCI write
6516 */
6517 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
6518 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07006519 }
David S. Millerf47c11e2005-06-24 20:18:35 -07006520out:
David S. Millerfac9b832005-05-18 22:46:34 -07006521 return IRQ_RETVAL(handled);
6522}
6523
David Howells7d12e782006-10-05 14:55:46 +01006524static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07006525{
Matt Carlson09943a12009-08-28 14:01:57 +00006526 struct tg3_napi *tnapi = dev_id;
6527 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006528 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07006529 unsigned int handled = 1;
6530
David S. Millerfac9b832005-05-18 22:46:34 -07006531 /* In INTx mode, it is possible for the interrupt to arrive at
6532 * the CPU before the status block posted prior to the interrupt.
6533 * Reading the PCI State register will confirm whether the
6534 * interrupt is ours and will flush the status block.
6535 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006536 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00006537 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07006538 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
6539 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07006540 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 }
Michael Chand18edcb2007-03-24 20:57:11 -07006542 }
6543
6544 /*
6545 * writing any value to intr-mbox-0 clears PCI INTA# and
6546 * chip-internal interrupt pending events.
6547 * writing non-zero to intr-mbox-0 additional tells the
6548 * NIC to stop sending us irqs, engaging "in-intr-handler"
6549 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07006550 *
6551 * Flush the mailbox to de-assert the IRQ immediately to prevent
6552 * spurious interrupts. The flush impacts performance but
6553 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07006554 */
Michael Chanc04cb342007-05-07 00:26:15 -07006555 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00006556
6557 /*
6558 * In a shared interrupt configuration, sometimes other devices'
6559 * interrupts will scream. We record the current status tag here
6560 * so that the above check can report that the screaming interrupts
6561 * are unhandled. Eventually they will be silenced.
6562 */
Matt Carlson898a56f2009-08-28 14:02:40 +00006563 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00006564
Michael Chand18edcb2007-03-24 20:57:11 -07006565 if (tg3_irq_sync(tp))
6566 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00006567
Matt Carlson72334482009-08-28 14:03:01 +00006568 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00006569
Matt Carlson09943a12009-08-28 14:01:57 +00006570 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00006571
David S. Millerf47c11e2005-06-24 20:18:35 -07006572out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573 return IRQ_RETVAL(handled);
6574}
6575
Michael Chan79381092005-04-21 17:13:59 -07006576/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01006577static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07006578{
Matt Carlson09943a12009-08-28 14:01:57 +00006579 struct tg3_napi *tnapi = dev_id;
6580 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00006581 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07006582
Michael Chanf9804dd2005-09-27 12:13:10 -07006583 if ((sblk->status & SD_STATUS_UPDATED) ||
6584 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07006585 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07006586 return IRQ_RETVAL(1);
6587 }
6588 return IRQ_RETVAL(0);
6589}
6590
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591#ifdef CONFIG_NET_POLL_CONTROLLER
6592static void tg3_poll_controller(struct net_device *dev)
6593{
Matt Carlson4f125f42009-09-01 12:55:02 +00006594 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07006595 struct tg3 *tp = netdev_priv(dev);
6596
Matt Carlson4f125f42009-09-01 12:55:02 +00006597 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00006598 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599}
6600#endif
6601
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602static void tg3_tx_timeout(struct net_device *dev)
6603{
6604 struct tg3 *tp = netdev_priv(dev);
6605
Michael Chanb0408752007-02-13 12:18:30 -08006606 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00006607 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00006608 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08006609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610
Matt Carlsondb219972011-11-04 09:15:03 +00006611 tg3_reset_task_schedule(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612}
6613
Michael Chanc58ec932005-09-17 00:46:27 -07006614/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
6615static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
6616{
6617 u32 base = (u32) mapping & 0xffffffff;
6618
Eric Dumazet807540b2010-09-23 05:40:09 +00006619 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07006620}
6621
Michael Chan72f2afb2006-03-06 19:28:35 -08006622/* Test for DMA addresses > 40-bit */
6623static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
6624 int len)
6625{
6626#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00006627 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00006628 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08006629 return 0;
6630#else
6631 return 0;
6632#endif
6633}
6634
Matt Carlsond1a3b732011-07-27 14:20:51 +00006635static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006636 dma_addr_t mapping, u32 len, u32 flags,
6637 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00006638{
Matt Carlson92cd3a12011-07-27 14:20:47 +00006639 txbd->addr_hi = ((u64) mapping >> 32);
6640 txbd->addr_lo = ((u64) mapping & 0xffffffff);
6641 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
6642 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00006643}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644
Matt Carlson84b67b22011-07-27 14:20:52 +00006645static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006646 dma_addr_t map, u32 len, u32 flags,
6647 u32 mss, u32 vlan)
6648{
6649 struct tg3 *tp = tnapi->tp;
6650 bool hwbug = false;
6651
6652 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Rusty Russell3db1cd52011-12-19 13:56:45 +00006653 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006654
6655 if (tg3_4g_overflow_test(map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006656 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006657
6658 if (tg3_40bit_overflow_test(tp, map, len))
Rusty Russell3db1cd52011-12-19 13:56:45 +00006659 hwbug = true;
Matt Carlsond1a3b732011-07-27 14:20:51 +00006660
Matt Carlsona4cb4282011-12-14 11:09:58 +00006661 if (tp->dma_limit) {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006662 u32 prvidx = *entry;
Matt Carlsone31aa982011-07-27 14:20:53 +00006663 u32 tmp_flag = flags & ~TXD_FLAG_END;
Matt Carlsona4cb4282011-12-14 11:09:58 +00006664 while (len > tp->dma_limit && *budget) {
6665 u32 frag_len = tp->dma_limit;
6666 len -= tp->dma_limit;
Matt Carlsone31aa982011-07-27 14:20:53 +00006667
Matt Carlsonb9e45482011-11-04 09:14:59 +00006668 /* Avoid the 8byte DMA problem */
6669 if (len <= 8) {
Matt Carlsona4cb4282011-12-14 11:09:58 +00006670 len += tp->dma_limit / 2;
6671 frag_len = tp->dma_limit / 2;
Matt Carlsone31aa982011-07-27 14:20:53 +00006672 }
6673
Matt Carlsonb9e45482011-11-04 09:14:59 +00006674 tnapi->tx_buffers[*entry].fragmented = true;
6675
6676 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6677 frag_len, tmp_flag, mss, vlan);
6678 *budget -= 1;
6679 prvidx = *entry;
6680 *entry = NEXT_TX(*entry);
6681
Matt Carlsone31aa982011-07-27 14:20:53 +00006682 map += frag_len;
6683 }
6684
6685 if (len) {
6686 if (*budget) {
6687 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6688 len, flags, mss, vlan);
Matt Carlsonb9e45482011-11-04 09:14:59 +00006689 *budget -= 1;
Matt Carlsone31aa982011-07-27 14:20:53 +00006690 *entry = NEXT_TX(*entry);
6691 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00006692 hwbug = true;
Matt Carlsonb9e45482011-11-04 09:14:59 +00006693 tnapi->tx_buffers[prvidx].fragmented = false;
Matt Carlsone31aa982011-07-27 14:20:53 +00006694 }
6695 }
6696 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00006697 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
6698 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00006699 *entry = NEXT_TX(*entry);
6700 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00006701
6702 return hwbug;
6703}
6704
Matt Carlson0d681b22011-07-27 14:20:49 +00006705static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00006706{
6707 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00006708 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00006709 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006710
Matt Carlson0d681b22011-07-27 14:20:49 +00006711 skb = txb->skb;
6712 txb->skb = NULL;
6713
Matt Carlson432aa7e2011-05-19 12:12:45 +00006714 pci_unmap_single(tnapi->tp->pdev,
6715 dma_unmap_addr(txb, mapping),
6716 skb_headlen(skb),
6717 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006718
6719 while (txb->fragmented) {
6720 txb->fragmented = false;
6721 entry = NEXT_TX(entry);
6722 txb = &tnapi->tx_buffers[entry];
6723 }
6724
Matt Carlsonba1142e2011-11-04 09:15:00 +00006725 for (i = 0; i <= last; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00006726 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Matt Carlson432aa7e2011-05-19 12:12:45 +00006727
6728 entry = NEXT_TX(entry);
6729 txb = &tnapi->tx_buffers[entry];
6730
6731 pci_unmap_page(tnapi->tp->pdev,
6732 dma_unmap_addr(txb, mapping),
Eric Dumazet9e903e02011-10-18 21:00:24 +00006733 skb_frag_size(frag), PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006734
6735 while (txb->fragmented) {
6736 txb->fragmented = false;
6737 entry = NEXT_TX(entry);
6738 txb = &tnapi->tx_buffers[entry];
6739 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00006740 }
6741}
6742
Michael Chan72f2afb2006-03-06 19:28:35 -08006743/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006744static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
David S. Miller1805b2f2011-10-24 18:18:09 -04006745 struct sk_buff **pskb,
Matt Carlson84b67b22011-07-27 14:20:52 +00006746 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006747 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748{
Matt Carlson24f4efd2009-11-13 13:03:35 +00006749 struct tg3 *tp = tnapi->tp;
David S. Miller1805b2f2011-10-24 18:18:09 -04006750 struct sk_buff *new_skb, *skb = *pskb;
Michael Chanc58ec932005-09-17 00:46:27 -07006751 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006752 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753
Matt Carlson41588ba2008-04-19 18:12:33 -07006754 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
6755 new_skb = skb_copy(skb, GFP_ATOMIC);
6756 else {
6757 int more_headroom = 4 - ((unsigned long)skb->data & 3);
6758
6759 new_skb = skb_copy_expand(skb,
6760 skb_headroom(skb) + more_headroom,
6761 skb_tailroom(skb), GFP_ATOMIC);
6762 }
6763
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07006765 ret = -1;
6766 } else {
6767 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00006768 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
6769 PCI_DMA_TODEVICE);
6770 /* Make sure the mapping succeeded */
6771 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006772 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07006773 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07006774 } else {
Matt Carlsonb9e45482011-11-04 09:14:59 +00006775 u32 save_entry = *entry;
6776
Matt Carlson92cd3a12011-07-27 14:20:47 +00006777 base_flags |= TXD_FLAG_END;
6778
Matt Carlson84b67b22011-07-27 14:20:52 +00006779 tnapi->tx_buffers[*entry].skb = new_skb;
6780 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00006781 mapping, new_addr);
6782
Matt Carlson84b67b22011-07-27 14:20:52 +00006783 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006784 new_skb->len, base_flags,
6785 mss, vlan)) {
Matt Carlsonba1142e2011-11-04 09:15:00 +00006786 tg3_tx_skb_unmap(tnapi, save_entry, -1);
Matt Carlsond1a3b732011-07-27 14:20:51 +00006787 dev_kfree_skb(new_skb);
6788 ret = -1;
6789 }
Michael Chanc58ec932005-09-17 00:46:27 -07006790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791 }
6792
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 dev_kfree_skb(skb);
David S. Miller1805b2f2011-10-24 18:18:09 -04006794 *pskb = new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07006795 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796}
6797
Matt Carlson2ffcc982011-05-19 12:12:44 +00006798static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006799
6800/* Use GSO to workaround a rare TSO bug that may be triggered when the
6801 * TSO header is greater than 80 bytes.
6802 */
6803static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6804{
6805 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006806 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006807
6808 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006809 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006810 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006811
6812 /* netif_tx_stop_queue() must be done before checking
6813 * checking tx index in tg3_tx_avail() below, because in
6814 * tg3_tx(), we update tx index before checking for
6815 * netif_tx_queue_stopped().
6816 */
6817 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006818 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006819 return NETDEV_TX_BUSY;
6820
6821 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006822 }
6823
6824 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006825 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006826 goto tg3_tso_bug_end;
6827
6828 do {
6829 nskb = segs;
6830 segs = segs->next;
6831 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006832 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006833 } while (segs);
6834
6835tg3_tso_bug_end:
6836 dev_kfree_skb(skb);
6837
6838 return NETDEV_TX_OK;
6839}
Michael Chan52c0fd82006-06-29 20:15:54 -07006840
Michael Chan5a6f3072006-03-20 22:28:05 -08006841/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006842 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006843 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006844static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006845{
6846 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00006847 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00006848 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006849 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006850 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006851 struct tg3_napi *tnapi;
6852 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006853 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006854
Matt Carlson24f4efd2009-11-13 13:03:35 +00006855 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6856 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006857 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006858 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859
Matt Carlson84b67b22011-07-27 14:20:52 +00006860 budget = tg3_tx_avail(tnapi);
6861
Michael Chan00b70502006-06-17 21:58:45 -07006862 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006863 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006864 * interrupt. Furthermore, IRQ processing runs lockless so we have
6865 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006867 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006868 if (!netif_tx_queue_stopped(txq)) {
6869 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006870
6871 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006872 netdev_err(dev,
6873 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 return NETDEV_TX_BUSY;
6876 }
6877
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006878 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006880 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006882
Matt Carlsonbe98da62010-07-11 09:31:46 +00006883 mss = skb_shinfo(skb)->gso_size;
6884 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006885 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006886 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006887
6888 if (skb_header_cloned(skb) &&
Eric Dumazet48855432011-10-24 07:53:03 +00006889 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6890 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006891
Matt Carlson34195c32010-07-11 09:31:42 +00006892 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006893 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894
Eric Dumazeta5a11952012-01-23 01:22:09 +00006895 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb) - ETH_HLEN;
Matt Carlson34195c32010-07-11 09:31:42 +00006896
Eric Dumazeta5a11952012-01-23 01:22:09 +00006897 if (!skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006898 iph->check = 0;
6899 iph->tot_len = htons(mss + hdr_len);
6900 }
6901
Michael Chan52c0fd82006-06-29 20:15:54 -07006902 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006903 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00006904 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07006905
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
6907 TXD_FLAG_CPU_POST_DMA);
6908
Joe Perches63c3a662011-04-26 08:12:10 +00006909 if (tg3_flag(tp, HW_TSO_1) ||
6910 tg3_flag(tp, HW_TSO_2) ||
6911 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006912 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006914 } else
6915 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6916 iph->daddr, 0,
6917 IPPROTO_TCP,
6918 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919
Joe Perches63c3a662011-04-26 08:12:10 +00006920 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00006921 mss |= (hdr_len & 0xc) << 12;
6922 if (hdr_len & 0x10)
6923 base_flags |= 0x00000010;
6924 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00006925 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006926 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00006927 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006928 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006929 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930 int tsflags;
6931
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006932 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933 mss |= (tsflags << 11);
6934 }
6935 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006936 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937 int tsflags;
6938
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006939 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940 base_flags |= tsflags << 12;
6941 }
6942 }
6943 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00006944
Matt Carlson93a700a2011-08-31 11:44:54 +00006945 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
6946 !mss && skb->len > VLAN_ETH_FRAME_LEN)
6947 base_flags |= TXD_FLAG_JMB_PKT;
6948
Matt Carlson92cd3a12011-07-27 14:20:47 +00006949 if (vlan_tx_tag_present(skb)) {
6950 base_flags |= TXD_FLAG_VLAN;
6951 vlan = vlan_tx_tag_get(skb);
6952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953
Alexander Duyckf4188d82009-12-02 16:48:38 +00006954 len = skb_headlen(skb);
6955
6956 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
Eric Dumazet48855432011-10-24 07:53:03 +00006957 if (pci_dma_mapping_error(tp->pdev, mapping))
6958 goto drop;
6959
David S. Miller90079ce2008-09-11 04:52:51 -07006960
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006961 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006962 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963
6964 would_hit_hwbug = 0;
6965
Joe Perches63c3a662011-04-26 08:12:10 +00006966 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006967 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968
Matt Carlson84b67b22011-07-27 14:20:52 +00006969 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00006970 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
Matt Carlsonba1142e2011-11-04 09:15:00 +00006971 mss, vlan)) {
Matt Carlsond1a3b732011-07-27 14:20:51 +00006972 would_hit_hwbug = 1;
Matt Carlsonba1142e2011-11-04 09:15:00 +00006973 } else if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00006974 u32 tmp_mss = mss;
6975
6976 if (!tg3_flag(tp, HW_TSO_1) &&
6977 !tg3_flag(tp, HW_TSO_2) &&
6978 !tg3_flag(tp, HW_TSO_3))
6979 tmp_mss = 0;
6980
Matt Carlsonc5665a52012-02-13 10:20:12 +00006981 /* Now loop through additional data
6982 * fragments, and queue them.
6983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984 last = skb_shinfo(skb)->nr_frags - 1;
6985 for (i = 0; i <= last; i++) {
6986 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6987
Eric Dumazet9e903e02011-10-18 21:00:24 +00006988 len = skb_frag_size(frag);
Ian Campbelldc234d02011-08-24 22:28:11 +00006989 mapping = skb_frag_dma_map(&tp->pdev->dev, frag, 0,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006990 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006992 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006993 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006994 mapping);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +01006995 if (dma_mapping_error(&tp->pdev->dev, mapping))
Alexander Duyckf4188d82009-12-02 16:48:38 +00006996 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997
Matt Carlsonb9e45482011-11-04 09:14:59 +00006998 if (!budget ||
6999 tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
Matt Carlson84b67b22011-07-27 14:20:52 +00007000 len, base_flags |
7001 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsonb9e45482011-11-04 09:14:59 +00007002 tmp_mss, vlan)) {
Matt Carlson92c6b8d2009-11-02 14:23:27 +00007003 would_hit_hwbug = 1;
Matt Carlsonb9e45482011-11-04 09:14:59 +00007004 break;
7005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006 }
7007 }
7008
7009 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00007010 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011
7012 /* If the workaround fails due to memory/mapping
7013 * failure, silently drop this packet.
7014 */
Matt Carlson84b67b22011-07-27 14:20:52 +00007015 entry = tnapi->tx_prod;
7016 budget = tg3_tx_avail(tnapi);
David S. Miller1805b2f2011-10-24 18:18:09 -04007017 if (tigon3_dma_hwbug_workaround(tnapi, &skb, &entry, &budget,
Matt Carlson84b67b22011-07-27 14:20:52 +00007018 base_flags, mss, vlan))
Eric Dumazet48855432011-10-24 07:53:03 +00007019 goto drop_nofree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020 }
7021
Richard Cochrand515b452011-06-19 03:31:41 +00007022 skb_tx_timestamp(skb);
Tom Herbert5cb917b2012-03-05 19:53:50 +00007023 netdev_tx_sent_queue(txq, skb->len);
Richard Cochrand515b452011-06-19 03:31:41 +00007024
Michael Chan6541b802012-03-04 14:48:14 +00007025 /* Sync BD data before updating mailbox */
7026 wmb();
7027
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00007029 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007031 tnapi->tx_prod = entry;
7032 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00007033 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00007034
7035 /* netif_tx_stop_queue() must be done before checking
7036 * checking tx index in tg3_tx_avail() below, because in
7037 * tg3_tx(), we update tx index before checking for
7038 * netif_tx_queue_stopped().
7039 */
7040 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00007041 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00007042 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07007043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044
Eric Dumazetcdd0db02009-05-28 00:00:41 +00007045 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007047
7048dma_error:
Matt Carlsonba1142e2011-11-04 09:15:00 +00007049 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, --i);
Matt Carlson432aa7e2011-05-19 12:12:45 +00007050 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Eric Dumazet48855432011-10-24 07:53:03 +00007051drop:
7052 dev_kfree_skb(skb);
7053drop_nofree:
7054 tp->tx_dropped++;
Alexander Duyckf4188d82009-12-02 16:48:38 +00007055 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056}
7057
Matt Carlson6e01b202011-08-19 13:58:20 +00007058static void tg3_mac_loopback(struct tg3 *tp, bool enable)
7059{
7060 if (enable) {
7061 tp->mac_mode &= ~(MAC_MODE_HALF_DUPLEX |
7062 MAC_MODE_PORT_MODE_MASK);
7063
7064 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
7065
7066 if (!tg3_flag(tp, 5705_PLUS))
7067 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
7068
7069 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
7070 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
7071 else
7072 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7073 } else {
7074 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
7075
7076 if (tg3_flag(tp, 5705_PLUS) ||
7077 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) ||
7078 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
7079 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
7080 }
7081
7082 tw32(MAC_MODE, tp->mac_mode);
7083 udelay(40);
7084}
7085
Matt Carlson941ec902011-08-19 13:58:23 +00007086static int tg3_phy_lpbk_set(struct tg3 *tp, u32 speed, bool extlpbk)
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007087{
Matt Carlson941ec902011-08-19 13:58:23 +00007088 u32 val, bmcr, mac_mode, ptest = 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007089
7090 tg3_phy_toggle_apd(tp, false);
7091 tg3_phy_toggle_automdix(tp, 0);
7092
Matt Carlson941ec902011-08-19 13:58:23 +00007093 if (extlpbk && tg3_phy_set_extloopbk(tp))
7094 return -EIO;
7095
7096 bmcr = BMCR_FULLDPLX;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007097 switch (speed) {
7098 case SPEED_10:
7099 break;
7100 case SPEED_100:
7101 bmcr |= BMCR_SPEED100;
7102 break;
7103 case SPEED_1000:
7104 default:
7105 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
7106 speed = SPEED_100;
7107 bmcr |= BMCR_SPEED100;
7108 } else {
7109 speed = SPEED_1000;
7110 bmcr |= BMCR_SPEED1000;
7111 }
7112 }
7113
Matt Carlson941ec902011-08-19 13:58:23 +00007114 if (extlpbk) {
7115 if (!(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
7116 tg3_readphy(tp, MII_CTRL1000, &val);
7117 val |= CTL1000_AS_MASTER |
7118 CTL1000_ENABLE_MASTER;
7119 tg3_writephy(tp, MII_CTRL1000, val);
7120 } else {
7121 ptest = MII_TG3_FET_PTEST_TRIM_SEL |
7122 MII_TG3_FET_PTEST_TRIM_2;
7123 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest);
7124 }
7125 } else
7126 bmcr |= BMCR_LOOPBACK;
7127
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007128 tg3_writephy(tp, MII_BMCR, bmcr);
7129
7130 /* The write needs to be flushed for the FETs */
7131 if (tp->phy_flags & TG3_PHYFLG_IS_FET)
7132 tg3_readphy(tp, MII_BMCR, &bmcr);
7133
7134 udelay(40);
7135
7136 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
7137 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Matt Carlson941ec902011-08-19 13:58:23 +00007138 tg3_writephy(tp, MII_TG3_FET_PTEST, ptest |
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007139 MII_TG3_FET_PTEST_FRC_TX_LINK |
7140 MII_TG3_FET_PTEST_FRC_TX_LOCK);
7141
7142 /* The write needs to be flushed for the AC131 */
7143 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
7144 }
7145
7146 /* Reset to prevent losing 1st rx packet intermittently */
7147 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
7148 tg3_flag(tp, 5780_CLASS)) {
7149 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
7150 udelay(10);
7151 tw32_f(MAC_RX_MODE, tp->rx_mode);
7152 }
7153
7154 mac_mode = tp->mac_mode &
7155 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
7156 if (speed == SPEED_1000)
7157 mac_mode |= MAC_MODE_PORT_MODE_GMII;
7158 else
7159 mac_mode |= MAC_MODE_PORT_MODE_MII;
7160
7161 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
7162 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
7163
7164 if (masked_phy_id == TG3_PHY_ID_BCM5401)
7165 mac_mode &= ~MAC_MODE_LINK_POLARITY;
7166 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
7167 mac_mode |= MAC_MODE_LINK_POLARITY;
7168
7169 tg3_writephy(tp, MII_TG3_EXT_CTRL,
7170 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
7171 }
7172
7173 tw32(MAC_MODE, mac_mode);
7174 udelay(40);
Matt Carlson941ec902011-08-19 13:58:23 +00007175
7176 return 0;
Matt Carlson5e5a7f32011-08-19 13:58:21 +00007177}
7178
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007179static void tg3_set_loopback(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007180{
7181 struct tg3 *tp = netdev_priv(dev);
7182
7183 if (features & NETIF_F_LOOPBACK) {
7184 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
7185 return;
7186
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007187 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007188 tg3_mac_loopback(tp, true);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007189 netif_carrier_on(tp->dev);
7190 spin_unlock_bh(&tp->lock);
7191 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
7192 } else {
7193 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
7194 return;
7195
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007196 spin_lock_bh(&tp->lock);
Matt Carlson6e01b202011-08-19 13:58:20 +00007197 tg3_mac_loopback(tp, false);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007198 /* Force link status check */
7199 tg3_setup_phy(tp, 1);
7200 spin_unlock_bh(&tp->lock);
7201 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
7202 }
7203}
7204
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007205static netdev_features_t tg3_fix_features(struct net_device *dev,
7206 netdev_features_t features)
Michał Mirosławdc668912011-04-07 03:35:07 +00007207{
7208 struct tg3 *tp = netdev_priv(dev);
7209
Joe Perches63c3a662011-04-26 08:12:10 +00007210 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00007211 features &= ~NETIF_F_ALL_TSO;
7212
7213 return features;
7214}
7215
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007216static int tg3_set_features(struct net_device *dev, netdev_features_t features)
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007217{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007218 netdev_features_t changed = dev->features ^ features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00007219
7220 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
7221 tg3_set_loopback(dev, features);
7222
7223 return 0;
7224}
7225
Matt Carlson21f581a2009-08-28 14:00:25 +00007226static void tg3_rx_prodring_free(struct tg3 *tp,
7227 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229 int i;
7230
Matt Carlson8fea32b2010-09-15 08:59:58 +00007231 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007232 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007233 i = (i + 1) & tp->rx_std_ring_mask)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007234 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007235 tp->rx_pkt_map_sz);
7236
Joe Perches63c3a662011-04-26 08:12:10 +00007237 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007238 for (i = tpr->rx_jmb_cons_idx;
7239 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00007240 i = (i + 1) & tp->rx_jmb_ring_mask) {
Eric Dumazet9205fd92011-11-18 06:47:01 +00007241 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007242 TG3_RX_JMB_MAP_SZ);
7243 }
7244 }
7245
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007246 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007248
Matt Carlson2c49a442010-09-30 10:34:35 +00007249 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007250 tg3_rx_data_free(tp, &tpr->rx_std_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007251 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252
Joe Perches63c3a662011-04-26 08:12:10 +00007253 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007254 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Eric Dumazet9205fd92011-11-18 06:47:01 +00007255 tg3_rx_data_free(tp, &tpr->rx_jmb_buffers[i],
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007256 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257 }
7258}
7259
Matt Carlsonc6cdf432010-04-05 10:19:26 +00007260/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261 *
7262 * The chip has been shut down and the driver detached from
7263 * the networking, so no interrupts or new tx packets will
7264 * end up in the driver. tp->{tx,}lock are held and thus
7265 * we may not sleep.
7266 */
Matt Carlson21f581a2009-08-28 14:00:25 +00007267static int tg3_rx_prodring_alloc(struct tg3 *tp,
7268 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007269{
Matt Carlson287be122009-08-28 13:58:46 +00007270 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007271
Matt Carlsonb196c7e2009-11-13 13:03:50 +00007272 tpr->rx_std_cons_idx = 0;
7273 tpr->rx_std_prod_idx = 0;
7274 tpr->rx_jmb_cons_idx = 0;
7275 tpr->rx_jmb_prod_idx = 0;
7276
Matt Carlson8fea32b2010-09-15 08:59:58 +00007277 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007278 memset(&tpr->rx_std_buffers[0], 0,
7279 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00007280 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007281 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00007282 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007283 goto done;
7284 }
7285
Linus Torvalds1da177e2005-04-16 15:20:36 -07007286 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00007287 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288
Matt Carlson287be122009-08-28 13:58:46 +00007289 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00007290 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00007291 tp->dev->mtu > ETH_DATA_LEN)
7292 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
7293 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07007294
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295 /* Initialize invariants of the rings, we only set this
7296 * stuff once. This works because the card does not
7297 * write into the rx buffer posting rings.
7298 */
Matt Carlson2c49a442010-09-30 10:34:35 +00007299 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300 struct tg3_rx_buffer_desc *rxd;
7301
Matt Carlson21f581a2009-08-28 14:00:25 +00007302 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00007303 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
7305 rxd->opaque = (RXD_OPAQUE_RING_STD |
7306 (i << RXD_OPAQUE_INDEX_SHIFT));
7307 }
7308
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007309 /* Now allocate fresh SKBs for each rx ring. */
7310 for (i = 0; i < tp->rx_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007311 unsigned int frag_size;
7312
7313 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_STD, i,
7314 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007315 netdev_warn(tp->dev,
7316 "Using a smaller RX standard ring. Only "
7317 "%d out of %d buffers were allocated "
7318 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007319 if (i == 0)
7320 goto initfail;
7321 tp->rx_pending = i;
7322 break;
7323 }
7324 }
7325
Joe Perches63c3a662011-04-26 08:12:10 +00007326 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007327 goto done;
7328
Matt Carlson2c49a442010-09-30 10:34:35 +00007329 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007330
Joe Perches63c3a662011-04-26 08:12:10 +00007331 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00007332 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333
Matt Carlson2c49a442010-09-30 10:34:35 +00007334 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00007335 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336
Matt Carlson0d86df82010-02-17 15:17:00 +00007337 rxd = &tpr->rx_jmb[i].std;
7338 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
7339 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
7340 RXD_FLAG_JUMBO;
7341 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
7342 (i << RXD_OPAQUE_INDEX_SHIFT));
7343 }
7344
7345 for (i = 0; i < tp->rx_jumbo_pending; i++) {
Eric Dumazet8d4057a2012-04-27 00:34:49 +00007346 unsigned int frag_size;
7347
7348 if (tg3_alloc_rx_data(tp, tpr, RXD_OPAQUE_RING_JUMBO, i,
7349 &frag_size) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007350 netdev_warn(tp->dev,
7351 "Using a smaller RX jumbo ring. Only %d "
7352 "out of %d buffers were allocated "
7353 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00007354 if (i == 0)
7355 goto initfail;
7356 tp->rx_jumbo_pending = i;
7357 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358 }
7359 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007360
7361done:
Michael Chan32d8c572006-07-25 16:38:29 -07007362 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007363
7364initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00007365 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007366 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367}
7368
Matt Carlson21f581a2009-08-28 14:00:25 +00007369static void tg3_rx_prodring_fini(struct tg3 *tp,
7370 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371{
Matt Carlson21f581a2009-08-28 14:00:25 +00007372 kfree(tpr->rx_std_buffers);
7373 tpr->rx_std_buffers = NULL;
7374 kfree(tpr->rx_jmb_buffers);
7375 tpr->rx_jmb_buffers = NULL;
7376 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007377 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
7378 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007379 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380 }
Matt Carlson21f581a2009-08-28 14:00:25 +00007381 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007382 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
7383 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00007384 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007386}
7387
Matt Carlson21f581a2009-08-28 14:00:25 +00007388static int tg3_rx_prodring_init(struct tg3 *tp,
7389 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007390{
Matt Carlson2c49a442010-09-30 10:34:35 +00007391 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
7392 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007393 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007394 return -ENOMEM;
7395
Matt Carlson4bae65c2010-11-24 08:31:52 +00007396 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
7397 TG3_RX_STD_RING_BYTES(tp),
7398 &tpr->rx_std_mapping,
7399 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007400 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007401 goto err_out;
7402
Joe Perches63c3a662011-04-26 08:12:10 +00007403 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00007404 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00007405 GFP_KERNEL);
7406 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007407 goto err_out;
7408
Matt Carlson4bae65c2010-11-24 08:31:52 +00007409 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
7410 TG3_RX_JMB_RING_BYTES(tp),
7411 &tpr->rx_jmb_mapping,
7412 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00007413 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007414 goto err_out;
7415 }
7416
7417 return 0;
7418
7419err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00007420 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007421 return -ENOMEM;
7422}
7423
7424/* Free up pending packets in all rx/tx rings.
7425 *
7426 * The chip has been shut down and the driver detached from
7427 * the networking, so no interrupts or new tx packets will
7428 * end up in the driver. tp->{tx,}lock is not held and we are not
7429 * in an interrupt context and thus may sleep.
7430 */
7431static void tg3_free_rings(struct tg3 *tp)
7432{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007433 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007434
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007435 for (j = 0; j < tp->irq_cnt; j++) {
7436 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007437
Matt Carlson8fea32b2010-09-15 08:59:58 +00007438 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00007439
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007440 if (!tnapi->tx_buffers)
7441 continue;
7442
Matt Carlson0d681b22011-07-27 14:20:49 +00007443 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
7444 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007445
Matt Carlson0d681b22011-07-27 14:20:49 +00007446 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007447 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007448
Matt Carlsonba1142e2011-11-04 09:15:00 +00007449 tg3_tx_skb_unmap(tnapi, i,
7450 skb_shinfo(skb)->nr_frags - 1);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007451
7452 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007453 }
Tom Herbert5cb917b2012-03-05 19:53:50 +00007454 netdev_tx_reset_queue(netdev_get_tx_queue(tp->dev, j));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007455 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007456}
7457
7458/* Initialize tx/rx rings for packet processing.
7459 *
7460 * The chip has been shut down and the driver detached from
7461 * the networking, so no interrupts or new tx packets will
7462 * end up in the driver. tp->{tx,}lock are held and thus
7463 * we may not sleep.
7464 */
7465static int tg3_init_rings(struct tg3 *tp)
7466{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007467 int i;
Matt Carlson72334482009-08-28 14:03:01 +00007468
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007469 /* Free up all the SKBs. */
7470 tg3_free_rings(tp);
7471
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007472 for (i = 0; i < tp->irq_cnt; i++) {
7473 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007474
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007475 tnapi->last_tag = 0;
7476 tnapi->last_irq_tag = 0;
7477 tnapi->hw_status->status = 0;
7478 tnapi->hw_status->status_tag = 0;
7479 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7480
7481 tnapi->tx_prod = 0;
7482 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007483 if (tnapi->tx_ring)
7484 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007485
7486 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007487 if (tnapi->rx_rcb)
7488 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007489
Matt Carlson8fea32b2010-09-15 08:59:58 +00007490 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00007491 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007492 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00007493 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007494 }
Matt Carlson72334482009-08-28 14:03:01 +00007495
Matt Carlson2b2cdb62009-11-13 13:03:48 +00007496 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00007497}
7498
7499/*
7500 * Must not be invoked with interrupt sources disabled and
7501 * the hardware shutdown down.
7502 */
7503static void tg3_free_consistent(struct tg3 *tp)
7504{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007505 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007506
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007507 for (i = 0; i < tp->irq_cnt; i++) {
7508 struct tg3_napi *tnapi = &tp->napi[i];
7509
7510 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007511 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007512 tnapi->tx_ring, tnapi->tx_desc_mapping);
7513 tnapi->tx_ring = NULL;
7514 }
7515
7516 kfree(tnapi->tx_buffers);
7517 tnapi->tx_buffers = NULL;
7518
7519 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007520 dma_free_coherent(&tp->pdev->dev,
7521 TG3_RX_RCB_RING_BYTES(tp),
7522 tnapi->rx_rcb,
7523 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007524 tnapi->rx_rcb = NULL;
7525 }
7526
Matt Carlson8fea32b2010-09-15 08:59:58 +00007527 tg3_rx_prodring_fini(tp, &tnapi->prodring);
7528
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007529 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007530 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
7531 tnapi->hw_status,
7532 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007533 tnapi->hw_status = NULL;
7534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007536
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00007538 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
7539 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540 tp->hw_stats = NULL;
7541 }
7542}
7543
7544/*
7545 * Must not be invoked with interrupt sources disabled and
7546 * the hardware shutdown down. Can sleep.
7547 */
7548static int tg3_alloc_consistent(struct tg3 *tp)
7549{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007550 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00007551
Matt Carlson4bae65c2010-11-24 08:31:52 +00007552 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
7553 sizeof(struct tg3_hw_stats),
7554 &tp->stats_mapping,
7555 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556 if (!tp->hw_stats)
7557 goto err_out;
7558
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
7560
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007561 for (i = 0; i < tp->irq_cnt; i++) {
7562 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007563 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007564
Matt Carlson4bae65c2010-11-24 08:31:52 +00007565 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
7566 TG3_HW_STATUS_SIZE,
7567 &tnapi->status_mapping,
7568 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007569 if (!tnapi->hw_status)
7570 goto err_out;
7571
7572 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007573 sblk = tnapi->hw_status;
7574
Matt Carlson8fea32b2010-09-15 08:59:58 +00007575 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
7576 goto err_out;
7577
Matt Carlson19cfaec2009-12-03 08:36:20 +00007578 /* If multivector TSS is enabled, vector 0 does not handle
7579 * tx interrupts. Don't allocate any resources for it.
7580 */
Joe Perches63c3a662011-04-26 08:12:10 +00007581 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
7582 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00007583 tnapi->tx_buffers = kzalloc(
7584 sizeof(struct tg3_tx_ring_info) *
7585 TG3_TX_RING_SIZE, GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007586 if (!tnapi->tx_buffers)
7587 goto err_out;
7588
Matt Carlson4bae65c2010-11-24 08:31:52 +00007589 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
7590 TG3_TX_RING_BYTES,
7591 &tnapi->tx_desc_mapping,
7592 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007593 if (!tnapi->tx_ring)
7594 goto err_out;
7595 }
7596
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007597 /*
7598 * When RSS is enabled, the status block format changes
7599 * slightly. The "rx_jumbo_consumer", "reserved",
7600 * and "rx_mini_consumer" members get mapped to the
7601 * other three rx return ring producer indexes.
7602 */
7603 switch (i) {
7604 default:
Matt Carlsonf891ea12012-04-24 13:37:01 +00007605 if (tg3_flag(tp, ENABLE_RSS)) {
7606 tnapi->rx_rcb_prod_idx = NULL;
7607 break;
7608 }
7609 /* Fall through */
7610 case 1:
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00007611 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
7612 break;
7613 case 2:
7614 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
7615 break;
7616 case 3:
7617 tnapi->rx_rcb_prod_idx = &sblk->reserved;
7618 break;
7619 case 4:
7620 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
7621 break;
7622 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007623
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007624 /*
7625 * If multivector RSS is enabled, vector 0 does not handle
7626 * rx or tx interrupts. Don't allocate any resources for it.
7627 */
Joe Perches63c3a662011-04-26 08:12:10 +00007628 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00007629 continue;
7630
Matt Carlson4bae65c2010-11-24 08:31:52 +00007631 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
7632 TG3_RX_RCB_RING_BYTES(tp),
7633 &tnapi->rx_rcb_mapping,
7634 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007635 if (!tnapi->rx_rcb)
7636 goto err_out;
7637
7638 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007639 }
7640
Linus Torvalds1da177e2005-04-16 15:20:36 -07007641 return 0;
7642
7643err_out:
7644 tg3_free_consistent(tp);
7645 return -ENOMEM;
7646}
7647
7648#define MAX_WAIT_CNT 1000
7649
7650/* To stop a block, clear the enable bit and poll till it
7651 * clears. tp->lock is held.
7652 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007653static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654{
7655 unsigned int i;
7656 u32 val;
7657
Joe Perches63c3a662011-04-26 08:12:10 +00007658 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659 switch (ofs) {
7660 case RCVLSC_MODE:
7661 case DMAC_MODE:
7662 case MBFREE_MODE:
7663 case BUFMGR_MODE:
7664 case MEMARB_MODE:
7665 /* We can't enable/disable these bits of the
7666 * 5705/5750, just say success.
7667 */
7668 return 0;
7669
7670 default:
7671 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673 }
7674
7675 val = tr32(ofs);
7676 val &= ~enable_bit;
7677 tw32_f(ofs, val);
7678
7679 for (i = 0; i < MAX_WAIT_CNT; i++) {
7680 udelay(100);
7681 val = tr32(ofs);
7682 if ((val & enable_bit) == 0)
7683 break;
7684 }
7685
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007686 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00007687 dev_err(&tp->pdev->dev,
7688 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
7689 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690 return -ENODEV;
7691 }
7692
7693 return 0;
7694}
7695
7696/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007697static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698{
7699 int i, err;
7700
7701 tg3_disable_ints(tp);
7702
7703 tp->rx_mode &= ~RX_MODE_ENABLE;
7704 tw32_f(MAC_RX_MODE, tp->rx_mode);
7705 udelay(10);
7706
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007707 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
7708 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
7709 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
7710 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
7711 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
7712 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007714 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
7715 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
7716 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
7717 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
7718 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
7719 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
7720 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721
7722 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
7723 tw32_f(MAC_MODE, tp->mac_mode);
7724 udelay(40);
7725
7726 tp->tx_mode &= ~TX_MODE_ENABLE;
7727 tw32_f(MAC_TX_MODE, tp->tx_mode);
7728
7729 for (i = 0; i < MAX_WAIT_CNT; i++) {
7730 udelay(100);
7731 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
7732 break;
7733 }
7734 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00007735 dev_err(&tp->pdev->dev,
7736 "%s timed out, TX_MODE_ENABLE will not clear "
7737 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07007738 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739 }
7740
Michael Chane6de8ad2005-05-05 14:42:41 -07007741 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007742 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
7743 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744
7745 tw32(FTQ_RESET, 0xffffffff);
7746 tw32(FTQ_RESET, 0x00000000);
7747
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007748 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
7749 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007751 for (i = 0; i < tp->irq_cnt; i++) {
7752 struct tg3_napi *tnapi = &tp->napi[i];
7753 if (tnapi->hw_status)
7754 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007756
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757 return err;
7758}
7759
Michael Chanee6a99b2007-07-18 21:49:10 -07007760/* Save PCI command register before chip reset */
7761static void tg3_save_pci_state(struct tg3 *tp)
7762{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007763 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007764}
7765
7766/* Restore PCI state after chip reset */
7767static void tg3_restore_pci_state(struct tg3 *tp)
7768{
7769 u32 val;
7770
7771 /* Re-enable indirect register accesses. */
7772 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7773 tp->misc_host_ctrl);
7774
7775 /* Set MAX PCI retry to zero. */
7776 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7777 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007778 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007779 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007780 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007781 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007782 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007783 PCISTATE_ALLOW_APE_SHMEM_WR |
7784 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007785 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7786
Matt Carlson8a6eac92007-10-21 16:17:55 -07007787 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007788
Matt Carlson2c55a3d2011-11-28 09:41:04 +00007789 if (!tg3_flag(tp, PCI_EXPRESS)) {
7790 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7791 tp->pci_cacheline_sz);
7792 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7793 tp->pci_lat_timer);
Michael Chan114342f2007-10-15 02:12:26 -07007794 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007795
Michael Chanee6a99b2007-07-18 21:49:10 -07007796 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007797 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007798 u16 pcix_cmd;
7799
7800 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7801 &pcix_cmd);
7802 pcix_cmd &= ~PCI_X_CMD_ERO;
7803 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7804 pcix_cmd);
7805 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007806
Joe Perches63c3a662011-04-26 08:12:10 +00007807 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007808
7809 /* Chip reset on 5780 will reset MSI enable bit,
7810 * so need to restore it.
7811 */
Joe Perches63c3a662011-04-26 08:12:10 +00007812 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007813 u16 ctrl;
7814
7815 pci_read_config_word(tp->pdev,
7816 tp->msi_cap + PCI_MSI_FLAGS,
7817 &ctrl);
7818 pci_write_config_word(tp->pdev,
7819 tp->msi_cap + PCI_MSI_FLAGS,
7820 ctrl | PCI_MSI_FLAGS_ENABLE);
7821 val = tr32(MSGINT_MODE);
7822 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7823 }
7824 }
7825}
7826
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827/* tp->lock is held. */
7828static int tg3_chip_reset(struct tg3 *tp)
7829{
7830 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007831 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007832 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833
David S. Millerf49639e2006-06-09 11:58:36 -07007834 tg3_nvram_lock(tp);
7835
Matt Carlson77b483f2008-08-15 14:07:24 -07007836 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7837
David S. Millerf49639e2006-06-09 11:58:36 -07007838 /* No matching tg3_nvram_unlock() after this because
7839 * chip reset below will undo the nvram lock.
7840 */
7841 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842
Michael Chanee6a99b2007-07-18 21:49:10 -07007843 /* GRC_MISC_CFG core clock reset will clear the memory
7844 * enable bit in PCI register 4 and the MSI enable bit
7845 * on some chips, so we save relevant registers here.
7846 */
7847 tg3_save_pci_state(tp);
7848
Michael Chand9ab5ad12006-03-20 22:27:35 -08007849 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007850 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08007851 tw32(GRC_FASTBOOT_PC, 0);
7852
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853 /*
7854 * We must avoid the readl() that normally takes place.
7855 * It locks machines, causes machine checks, and other
7856 * fun things. So, temporarily disable the 5701
7857 * hardware workaround, while we do the reset.
7858 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007859 write_op = tp->write32;
7860 if (write_op == tg3_write_flush_reg32)
7861 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862
Michael Chand18edcb2007-03-24 20:57:11 -07007863 /* Prevent the irq handler from reading or writing PCI registers
7864 * during chip reset when the memory enable bit in the PCI command
7865 * register may be cleared. The chip does not generate interrupt
7866 * at this time, but the irq handler may still be called due to irq
7867 * sharing or irqpoll.
7868 */
Joe Perches63c3a662011-04-26 08:12:10 +00007869 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007870 for (i = 0; i < tp->irq_cnt; i++) {
7871 struct tg3_napi *tnapi = &tp->napi[i];
7872 if (tnapi->hw_status) {
7873 tnapi->hw_status->status = 0;
7874 tnapi->hw_status->status_tag = 0;
7875 }
7876 tnapi->last_tag = 0;
7877 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007878 }
Michael Chand18edcb2007-03-24 20:57:11 -07007879 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007880
7881 for (i = 0; i < tp->irq_cnt; i++)
7882 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007883
Matt Carlson255ca312009-08-25 10:07:27 +00007884 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7885 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7886 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7887 }
7888
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889 /* do the reset */
7890 val = GRC_MISC_CFG_CORECLK_RESET;
7891
Joe Perches63c3a662011-04-26 08:12:10 +00007892 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007893 /* Force PCIe 1.0a mode */
7894 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007895 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007896 tr32(TG3_PCIE_PHY_TSTCTL) ==
7897 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7898 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7899
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7901 tw32(GRC_MISC_CFG, (1 << 29));
7902 val |= (1 << 29);
7903 }
7904 }
7905
Michael Chanb5d37722006-09-27 16:06:21 -07007906 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7907 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7908 tw32(GRC_VCPU_EXT_CTRL,
7909 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7910 }
7911
Matt Carlsonf37500d2010-08-02 11:25:59 +00007912 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007913 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007915
Linus Torvalds1da177e2005-04-16 15:20:36 -07007916 tw32(GRC_MISC_CFG, val);
7917
Michael Chan1ee582d2005-08-09 20:16:46 -07007918 /* restore 5701 hardware bug workaround write method */
7919 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920
7921 /* Unfortunately, we have to delay before the PCI read back.
7922 * Some 575X chips even will not respond to a PCI cfg access
7923 * when the reset command is given to the chip.
7924 *
7925 * How do these hardware designers expect things to work
7926 * properly if the PCI write is posted for a long period
7927 * of time? It is always necessary to have some method by
7928 * which a register read back can occur to push the write
7929 * out which does the reset.
7930 *
7931 * For most tg3 variants the trick below was working.
7932 * Ho hum...
7933 */
7934 udelay(120);
7935
7936 /* Flush PCI posted writes. The normal MMIO registers
7937 * are inaccessible at this time so this is the only
7938 * way to make this reliably (actually, this is no longer
7939 * the case, see above). I tried to use indirect
7940 * register read/write but this upset some 5701 variants.
7941 */
7942 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7943
7944 udelay(120);
7945
Jon Mason708ebb3a2011-06-27 12:56:50 +00007946 if (tg3_flag(tp, PCI_EXPRESS) && pci_pcie_cap(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00007947 u16 val16;
7948
Linus Torvalds1da177e2005-04-16 15:20:36 -07007949 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7950 int i;
7951 u32 cfg_val;
7952
7953 /* Wait for link training to complete. */
7954 for (i = 0; i < 5000; i++)
7955 udelay(100);
7956
7957 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7958 pci_write_config_dword(tp->pdev, 0xc4,
7959 cfg_val | (1 << 15));
7960 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007961
Matt Carlsone7126992009-08-25 10:08:16 +00007962 /* Clear the "no snoop" and "relaxed ordering" bits. */
7963 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007964 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007965 &val16);
7966 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7967 PCI_EXP_DEVCTL_NOSNOOP_EN);
7968 /*
7969 * Older PCIe devices only support the 128 byte
7970 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007971 */
Joe Perches63c3a662011-04-26 08:12:10 +00007972 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007973 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007974 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007975 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007976 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007977
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007978 /* Clear error status */
7979 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007980 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007981 PCI_EXP_DEVSTA_CED |
7982 PCI_EXP_DEVSTA_NFED |
7983 PCI_EXP_DEVSTA_FED |
7984 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985 }
7986
Michael Chanee6a99b2007-07-18 21:49:10 -07007987 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007988
Joe Perches63c3a662011-04-26 08:12:10 +00007989 tg3_flag_clear(tp, CHIP_RESETTING);
7990 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007991
Michael Chanee6a99b2007-07-18 21:49:10 -07007992 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007993 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007994 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007995 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996
7997 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7998 tg3_stop_fw(tp);
7999 tw32(0x5000, 0x400);
8000 }
8001
8002 tw32(GRC_MODE, tp->grc_mode);
8003
8004 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008005 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006
8007 tw32(0xc4, val | (1 << 15));
8008 }
8009
8010 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
8011 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
8012 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
8013 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
8014 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
8015 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8016 }
8017
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008018 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008019 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008020 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008021 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00008022 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008023 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008025 val = 0;
8026
8027 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 udelay(40);
8029
Matt Carlson77b483f2008-08-15 14:07:24 -07008030 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
8031
Michael Chan7a6f4362006-09-27 16:03:31 -07008032 err = tg3_poll_fw(tp);
8033 if (err)
8034 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035
Matt Carlson0a9140c2009-08-28 12:27:50 +00008036 tg3_mdio_start(tp);
8037
Joe Perches63c3a662011-04-26 08:12:10 +00008038 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008039 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
8040 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008041 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01008042 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043
8044 tw32(0x7c00, val | (1 << 25));
8045 }
8046
Matt Carlsond78b59f2011-04-05 14:22:46 +00008047 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8048 val = tr32(TG3_CPMU_CLCK_ORIDE);
8049 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
8050 }
8051
Linus Torvalds1da177e2005-04-16 15:20:36 -07008052 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00008053 tg3_flag_clear(tp, ENABLE_ASF);
8054 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
8056 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
8057 u32 nic_cfg;
8058
8059 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
8060 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00008061 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008062 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00008063 if (tg3_flag(tp, 5750_PLUS))
8064 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065 }
8066 }
8067
8068 return 0;
8069}
8070
Matt Carlson65ec6982012-02-28 23:33:37 +00008071static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
8072static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
Matt Carlson92feeab2011-12-08 14:40:14 +00008073
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07008075static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008076{
8077 int err;
8078
8079 tg3_stop_fw(tp);
8080
Michael Chan944d9802005-05-29 14:57:48 -07008081 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008082
David S. Millerb3b7d6b2005-05-05 14:40:20 -07008083 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084 err = tg3_chip_reset(tp);
8085
Matt Carlsondaba2a62009-04-20 06:58:52 +00008086 __tg3_set_mac_addr(tp, 0);
8087
Michael Chan944d9802005-05-29 14:57:48 -07008088 tg3_write_sig_legacy(tp, kind);
8089 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090
Matt Carlson92feeab2011-12-08 14:40:14 +00008091 if (tp->hw_stats) {
8092 /* Save the stats across chip resets... */
David S. Millerb4017c52012-03-01 17:57:40 -05008093 tg3_get_nstats(tp, &tp->net_stats_prev);
Matt Carlson92feeab2011-12-08 14:40:14 +00008094 tg3_get_estats(tp, &tp->estats_prev);
8095
8096 /* And make sure the next sample is new data */
8097 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
8098 }
8099
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100 if (err)
8101 return err;
8102
8103 return 0;
8104}
8105
Linus Torvalds1da177e2005-04-16 15:20:36 -07008106static int tg3_set_mac_addr(struct net_device *dev, void *p)
8107{
8108 struct tg3 *tp = netdev_priv(dev);
8109 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07008110 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111
Michael Chanf9804dd2005-09-27 12:13:10 -07008112 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00008113 return -EADDRNOTAVAIL;
Michael Chanf9804dd2005-09-27 12:13:10 -07008114
Linus Torvalds1da177e2005-04-16 15:20:36 -07008115 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
8116
Michael Chane75f7c92006-03-20 21:33:26 -08008117 if (!netif_running(dev))
8118 return 0;
8119
Joe Perches63c3a662011-04-26 08:12:10 +00008120 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07008121 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07008122
Michael Chan986e0ae2007-05-05 12:10:20 -07008123 addr0_high = tr32(MAC_ADDR_0_HIGH);
8124 addr0_low = tr32(MAC_ADDR_0_LOW);
8125 addr1_high = tr32(MAC_ADDR_1_HIGH);
8126 addr1_low = tr32(MAC_ADDR_1_LOW);
8127
8128 /* Skip MAC addr 1 if ASF is using it. */
8129 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
8130 !(addr1_high == 0 && addr1_low == 0))
8131 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07008132 }
Michael Chan986e0ae2007-05-05 12:10:20 -07008133 spin_lock_bh(&tp->lock);
8134 __tg3_set_mac_addr(tp, skip_mac_1);
8135 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136
Michael Chanb9ec6c12006-07-25 16:37:27 -07008137 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138}
8139
8140/* tp->lock is held. */
8141static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
8142 dma_addr_t mapping, u32 maxlen_flags,
8143 u32 nic_addr)
8144{
8145 tg3_write_mem(tp,
8146 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
8147 ((u64) mapping >> 32));
8148 tg3_write_mem(tp,
8149 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
8150 ((u64) mapping & 0xffffffff));
8151 tg3_write_mem(tp,
8152 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
8153 maxlen_flags);
8154
Joe Perches63c3a662011-04-26 08:12:10 +00008155 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008156 tg3_write_mem(tp,
8157 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
8158 nic_addr);
8159}
8160
Michael Chand244c892005-07-05 14:42:33 -07008161static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07008162{
Matt Carlsonb6080e12009-09-01 13:12:00 +00008163 int i;
8164
Joe Perches63c3a662011-04-26 08:12:10 +00008165 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008166 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
8167 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
8168 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008169 } else {
8170 tw32(HOSTCC_TXCOL_TICKS, 0);
8171 tw32(HOSTCC_TXMAX_FRAMES, 0);
8172 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008173 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008174
Joe Perches63c3a662011-04-26 08:12:10 +00008175 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008176 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
8177 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
8178 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
8179 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00008180 tw32(HOSTCC_RXCOL_TICKS, 0);
8181 tw32(HOSTCC_RXMAX_FRAMES, 0);
8182 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07008183 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008184
Joe Perches63c3a662011-04-26 08:12:10 +00008185 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07008186 u32 val = ec->stats_block_coalesce_usecs;
8187
Matt Carlsonb6080e12009-09-01 13:12:00 +00008188 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
8189 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
8190
David S. Miller15f98502005-05-18 22:49:26 -07008191 if (!netif_carrier_ok(tp->dev))
8192 val = 0;
8193
8194 tw32(HOSTCC_STAT_COAL_TICKS, val);
8195 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008196
8197 for (i = 0; i < tp->irq_cnt - 1; i++) {
8198 u32 reg;
8199
8200 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
8201 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008202 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
8203 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008204 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
8205 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008206
Joe Perches63c3a662011-04-26 08:12:10 +00008207 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008208 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
8209 tw32(reg, ec->tx_coalesce_usecs);
8210 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
8211 tw32(reg, ec->tx_max_coalesced_frames);
8212 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
8213 tw32(reg, ec->tx_max_coalesced_frames_irq);
8214 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008215 }
8216
8217 for (; i < tp->irq_max - 1; i++) {
8218 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008219 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00008220 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00008221
Joe Perches63c3a662011-04-26 08:12:10 +00008222 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00008223 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
8224 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
8225 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
8226 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00008227 }
David S. Miller15f98502005-05-18 22:49:26 -07008228}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008229
8230/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00008231static void tg3_rings_reset(struct tg3 *tp)
8232{
8233 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008234 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008235 struct tg3_napi *tnapi = &tp->napi[0];
8236
8237 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008238 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008239 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008240 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00008241 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlson55086ad2011-12-14 11:09:59 +00008242 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlsonb703df62009-12-03 08:36:21 +00008243 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008244 else
8245 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8246
8247 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
8248 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
8249 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
8250 BDINFO_FLAGS_DISABLED);
8251
8252
8253 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00008254 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008255 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00008256 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008257 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00008258 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008259 tg3_flag(tp, 57765_CLASS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00008260 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
8261 else
8262 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8263
8264 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
8265 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
8266 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
8267 BDINFO_FLAGS_DISABLED);
8268
8269 /* Disable interrupts */
8270 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008271 tp->napi[0].chk_msi_cnt = 0;
8272 tp->napi[0].last_rx_cons = 0;
8273 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00008274
8275 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00008276 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00008277 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008278 tp->napi[i].tx_prod = 0;
8279 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00008280 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008281 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008282 tw32_rx_mbox(tp->napi[i].consmbox, 0);
8283 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson7f230732011-08-31 11:44:48 +00008284 tp->napi[i].chk_msi_cnt = 0;
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008285 tp->napi[i].last_rx_cons = 0;
8286 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008287 }
Joe Perches63c3a662011-04-26 08:12:10 +00008288 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00008289 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008290 } else {
8291 tp->napi[0].tx_prod = 0;
8292 tp->napi[0].tx_cons = 0;
8293 tw32_mailbox(tp->napi[0].prodmbox, 0);
8294 tw32_rx_mbox(tp->napi[0].consmbox, 0);
8295 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008296
8297 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00008298 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00008299 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
8300 for (i = 0; i < 16; i++)
8301 tw32_tx_mbox(mbox + i * 8, 0);
8302 }
8303
8304 txrcb = NIC_SRAM_SEND_RCB;
8305 rxrcb = NIC_SRAM_RCV_RET_RCB;
8306
8307 /* Clear status block in ram. */
8308 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8309
8310 /* Set status block DMA address */
8311 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8312 ((u64) tnapi->status_mapping >> 32));
8313 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8314 ((u64) tnapi->status_mapping & 0xffffffff));
8315
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008316 if (tnapi->tx_ring) {
8317 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8318 (TG3_TX_RING_SIZE <<
8319 BDINFO_FLAGS_MAXLEN_SHIFT),
8320 NIC_SRAM_TX_BUFFER_DESC);
8321 txrcb += TG3_BDINFO_SIZE;
8322 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008323
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008324 if (tnapi->rx_rcb) {
8325 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008326 (tp->rx_ret_ring_mask + 1) <<
8327 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008328 rxrcb += TG3_BDINFO_SIZE;
8329 }
8330
8331 stblk = HOSTCC_STATBLCK_RING1;
8332
8333 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
8334 u64 mapping = (u64)tnapi->status_mapping;
8335 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
8336 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
8337
8338 /* Clear status block in ram. */
8339 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8340
Matt Carlson19cfaec2009-12-03 08:36:20 +00008341 if (tnapi->tx_ring) {
8342 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8343 (TG3_TX_RING_SIZE <<
8344 BDINFO_FLAGS_MAXLEN_SHIFT),
8345 NIC_SRAM_TX_BUFFER_DESC);
8346 txrcb += TG3_BDINFO_SIZE;
8347 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008348
8349 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008350 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008351 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
8352
8353 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008354 rxrcb += TG3_BDINFO_SIZE;
8355 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008356}
8357
Matt Carlsoneb07a942011-04-20 07:57:36 +00008358static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
8359{
8360 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
8361
Joe Perches63c3a662011-04-26 08:12:10 +00008362 if (!tg3_flag(tp, 5750_PLUS) ||
8363 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00008364 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Matt Carlson513aa6e2011-11-21 15:01:18 +00008365 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
8366 tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008367 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
8368 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8369 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
8370 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
8371 else
8372 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
8373
8374 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
8375 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
8376
8377 val = min(nic_rep_thresh, host_rep_thresh);
8378 tw32(RCVBDI_STD_THRESH, val);
8379
Joe Perches63c3a662011-04-26 08:12:10 +00008380 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008381 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8382
Joe Perches63c3a662011-04-26 08:12:10 +00008383 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008384 return;
8385
Matt Carlson513aa6e2011-11-21 15:01:18 +00008386 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
Matt Carlsoneb07a942011-04-20 07:57:36 +00008387
8388 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8389
8390 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8391 tw32(RCVBDI_JUMBO_THRESH, val);
8392
Joe Perches63c3a662011-04-26 08:12:10 +00008393 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008394 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8395}
8396
Matt Carlsonccd5ba92012-02-13 10:20:08 +00008397static inline u32 calc_crc(unsigned char *buf, int len)
8398{
8399 u32 reg;
8400 u32 tmp;
8401 int j, k;
8402
8403 reg = 0xffffffff;
8404
8405 for (j = 0; j < len; j++) {
8406 reg ^= buf[j];
8407
8408 for (k = 0; k < 8; k++) {
8409 tmp = reg & 0x01;
8410
8411 reg >>= 1;
8412
8413 if (tmp)
8414 reg ^= 0xedb88320;
8415 }
8416 }
8417
8418 return ~reg;
8419}
8420
8421static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
8422{
8423 /* accept or reject all multicast frames */
8424 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
8425 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
8426 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
8427 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
8428}
8429
8430static void __tg3_set_rx_mode(struct net_device *dev)
8431{
8432 struct tg3 *tp = netdev_priv(dev);
8433 u32 rx_mode;
8434
8435 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
8436 RX_MODE_KEEP_VLAN_TAG);
8437
8438#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
8439 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
8440 * flag clear.
8441 */
8442 if (!tg3_flag(tp, ENABLE_ASF))
8443 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
8444#endif
8445
8446 if (dev->flags & IFF_PROMISC) {
8447 /* Promiscuous mode. */
8448 rx_mode |= RX_MODE_PROMISC;
8449 } else if (dev->flags & IFF_ALLMULTI) {
8450 /* Accept all multicast. */
8451 tg3_set_multi(tp, 1);
8452 } else if (netdev_mc_empty(dev)) {
8453 /* Reject all multicast. */
8454 tg3_set_multi(tp, 0);
8455 } else {
8456 /* Accept one or more multicast(s). */
8457 struct netdev_hw_addr *ha;
8458 u32 mc_filter[4] = { 0, };
8459 u32 regidx;
8460 u32 bit;
8461 u32 crc;
8462
8463 netdev_for_each_mc_addr(ha, dev) {
8464 crc = calc_crc(ha->addr, ETH_ALEN);
8465 bit = ~crc & 0x7f;
8466 regidx = (bit & 0x60) >> 5;
8467 bit &= 0x1f;
8468 mc_filter[regidx] |= (1 << bit);
8469 }
8470
8471 tw32(MAC_HASH_REG_0, mc_filter[0]);
8472 tw32(MAC_HASH_REG_1, mc_filter[1]);
8473 tw32(MAC_HASH_REG_2, mc_filter[2]);
8474 tw32(MAC_HASH_REG_3, mc_filter[3]);
8475 }
8476
8477 if (rx_mode != tp->rx_mode) {
8478 tp->rx_mode = rx_mode;
8479 tw32_f(MAC_RX_MODE, rx_mode);
8480 udelay(10);
8481 }
8482}
8483
Matt Carlson90415472011-12-16 13:33:23 +00008484static void tg3_rss_init_dflt_indir_tbl(struct tg3 *tp)
8485{
8486 int i;
8487
8488 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
8489 tp->rss_ind_tbl[i] =
8490 ethtool_rxfh_indir_default(i, tp->irq_cnt - 1);
8491}
8492
8493static void tg3_rss_check_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008494{
8495 int i;
8496
8497 if (!tg3_flag(tp, SUPPORT_MSIX))
8498 return;
8499
Matt Carlson90415472011-12-16 13:33:23 +00008500 if (tp->irq_cnt <= 2) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008501 memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
Matt Carlson90415472011-12-16 13:33:23 +00008502 return;
8503 }
8504
8505 /* Validate table against current IRQ count */
8506 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8507 if (tp->rss_ind_tbl[i] >= tp->irq_cnt - 1)
8508 break;
8509 }
8510
8511 if (i != TG3_RSS_INDIR_TBL_SIZE)
8512 tg3_rss_init_dflt_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008513}
8514
Matt Carlson90415472011-12-16 13:33:23 +00008515static void tg3_rss_write_indir_tbl(struct tg3 *tp)
Matt Carlsonbcebcc42011-12-14 11:10:01 +00008516{
8517 int i = 0;
8518 u32 reg = MAC_RSS_INDIR_TBL_0;
8519
8520 while (i < TG3_RSS_INDIR_TBL_SIZE) {
8521 u32 val = tp->rss_ind_tbl[i];
8522 i++;
8523 for (; i % 8; i++) {
8524 val <<= 4;
8525 val |= tp->rss_ind_tbl[i];
8526 }
8527 tw32(reg, val);
8528 reg += 4;
8529 }
8530}
8531
Matt Carlson2d31eca2009-09-01 12:53:31 +00008532/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008533static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534{
8535 u32 val, rdmac_mode;
8536 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008537 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008538
8539 tg3_disable_ints(tp);
8540
8541 tg3_stop_fw(tp);
8542
8543 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8544
Joe Perches63c3a662011-04-26 08:12:10 +00008545 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008546 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008547
Matt Carlson699c0192010-12-06 08:28:51 +00008548 /* Enable MAC control of LPI */
8549 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8550 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8551 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8552 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8553
8554 tw32_f(TG3_CPMU_EEE_CTRL,
8555 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8556
Matt Carlsona386b902010-12-06 08:28:53 +00008557 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8558 TG3_CPMU_EEEMD_LPI_IN_TX |
8559 TG3_CPMU_EEEMD_LPI_IN_RX |
8560 TG3_CPMU_EEEMD_EEE_ENABLE;
8561
8562 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8563 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8564
Joe Perches63c3a662011-04-26 08:12:10 +00008565 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008566 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8567
8568 tw32_f(TG3_CPMU_EEE_MODE, val);
8569
8570 tw32_f(TG3_CPMU_EEE_DBTMR1,
8571 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8572 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8573
8574 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008575 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008576 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008577 }
8578
Matt Carlson603f1172010-02-12 14:47:10 +00008579 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008580 tg3_phy_reset(tp);
8581
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582 err = tg3_chip_reset(tp);
8583 if (err)
8584 return err;
8585
8586 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8587
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008588 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008589 val = tr32(TG3_CPMU_CTRL);
8590 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8591 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008592
8593 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8594 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8595 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8596 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8597
8598 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8599 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8600 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8601 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8602
8603 val = tr32(TG3_CPMU_HST_ACC);
8604 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8605 val |= CPMU_HST_ACC_MACCLK_6_25;
8606 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008607 }
8608
Matt Carlson33466d932009-04-20 06:57:41 +00008609 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8610 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8611 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8612 PCIE_PWR_MGMT_L1_THRESH_4MS;
8613 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008614
8615 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8616 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8617
8618 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d932009-04-20 06:57:41 +00008619
Matt Carlsonf40386c2009-11-02 14:24:02 +00008620 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8621 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008622 }
8623
Joe Perches63c3a662011-04-26 08:12:10 +00008624 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00008625 u32 grc_mode = tr32(GRC_MODE);
8626
8627 /* Access the lower 1K of PL PCIE block registers. */
8628 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8629 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8630
8631 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8632 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8633 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8634
8635 tw32(GRC_MODE, grc_mode);
8636 }
8637
Matt Carlson55086ad2011-12-14 11:09:59 +00008638 if (tg3_flag(tp, 57765_CLASS)) {
Matt Carlson5093eed2010-11-24 08:31:45 +00008639 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8640 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008641
Matt Carlson5093eed2010-11-24 08:31:45 +00008642 /* Access the lower 1K of PL PCIE block registers. */
8643 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8644 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008645
Matt Carlson5093eed2010-11-24 08:31:45 +00008646 val = tr32(TG3_PCIE_TLDLPL_PORT +
8647 TG3_PCIE_PL_LO_PHYCTL5);
8648 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8649 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008650
Matt Carlson5093eed2010-11-24 08:31:45 +00008651 tw32(GRC_MODE, grc_mode);
8652 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008653
Matt Carlson1ff30a52011-05-19 12:12:46 +00008654 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8655 u32 grc_mode = tr32(GRC_MODE);
8656
8657 /* Access the lower 1K of DL PCIE block registers. */
8658 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8659 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8660
8661 val = tr32(TG3_PCIE_TLDLPL_PORT +
8662 TG3_PCIE_DL_LO_FTSMAX);
8663 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8664 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8665 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8666
8667 tw32(GRC_MODE, grc_mode);
8668 }
8669
Matt Carlsona977dbe2010-04-12 06:58:26 +00008670 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8671 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8672 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8673 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008674 }
8675
Linus Torvalds1da177e2005-04-16 15:20:36 -07008676 /* This works around an issue with Athlon chipsets on
8677 * B3 tigon3 silicon. This bit has no effect on any
8678 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008679 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008680 */
Joe Perches63c3a662011-04-26 08:12:10 +00008681 if (!tg3_flag(tp, CPMU_PRESENT)) {
8682 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008683 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8684 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686
8687 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008688 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689 val = tr32(TG3PCI_PCISTATE);
8690 val |= PCISTATE_RETRY_SAME_DMA;
8691 tw32(TG3PCI_PCISTATE, val);
8692 }
8693
Joe Perches63c3a662011-04-26 08:12:10 +00008694 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008695 /* Allow reads and writes to the
8696 * APE register and memory space.
8697 */
8698 val = tr32(TG3PCI_PCISTATE);
8699 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008700 PCISTATE_ALLOW_APE_SHMEM_WR |
8701 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008702 tw32(TG3PCI_PCISTATE, val);
8703 }
8704
Linus Torvalds1da177e2005-04-16 15:20:36 -07008705 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8706 /* Enable some hw fixes. */
8707 val = tr32(TG3PCI_MSI_DATA);
8708 val |= (1 << 26) | (1 << 28) | (1 << 29);
8709 tw32(TG3PCI_MSI_DATA, val);
8710 }
8711
8712 /* Descriptor ring init may make accesses to the
8713 * NIC SRAM area to setup the TX descriptors, so we
8714 * can only do this after the hardware has been
8715 * successfully reset.
8716 */
Michael Chan32d8c572006-07-25 16:38:29 -07008717 err = tg3_init_rings(tp);
8718 if (err)
8719 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008720
Joe Perches63c3a662011-04-26 08:12:10 +00008721 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008722 val = tr32(TG3PCI_DMA_RW_CTRL) &
8723 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008724 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8725 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson55086ad2011-12-14 11:09:59 +00008726 if (!tg3_flag(tp, 57765_CLASS) &&
Matt Carlson0aebff42011-04-25 12:42:45 +00008727 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8728 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008729 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8730 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8731 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008732 /* This value is determined during the probe time DMA
8733 * engine test, tg3_test_dma.
8734 */
8735 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008737
8738 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8739 GRC_MODE_4X_NIC_SEND_RINGS |
8740 GRC_MODE_NO_TX_PHDR_CSUM |
8741 GRC_MODE_NO_RX_PHDR_CSUM);
8742 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008743
8744 /* Pseudo-header checksum is done by hardware logic and not
8745 * the offload processers, so make the chip do the pseudo-
8746 * header checksums on receive. For transmit it is more
8747 * convenient to do the pseudo-header checksum in software
8748 * as Linux does that on transmit for us in all cases.
8749 */
8750 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751
8752 tw32(GRC_MODE,
8753 tp->grc_mode |
8754 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8755
8756 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8757 val = tr32(GRC_MISC_CFG);
8758 val &= ~0xff;
8759 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8760 tw32(GRC_MISC_CFG, val);
8761
8762 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008763 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008764 /* Do nothing. */
8765 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8766 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8767 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8768 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8769 else
8770 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8771 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8772 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008773 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008774 int fw_len;
8775
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008776 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008777 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8778 tw32(BUFMGR_MB_POOL_ADDR,
8779 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8780 tw32(BUFMGR_MB_POOL_SIZE,
8781 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008783
Michael Chan0f893dc2005-07-25 12:30:38 -07008784 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008785 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8786 tp->bufmgr_config.mbuf_read_dma_low_water);
8787 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8788 tp->bufmgr_config.mbuf_mac_rx_low_water);
8789 tw32(BUFMGR_MB_HIGH_WATER,
8790 tp->bufmgr_config.mbuf_high_water);
8791 } else {
8792 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8793 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8794 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8795 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8796 tw32(BUFMGR_MB_HIGH_WATER,
8797 tp->bufmgr_config.mbuf_high_water_jumbo);
8798 }
8799 tw32(BUFMGR_DMA_LOW_WATER,
8800 tp->bufmgr_config.dma_low_water);
8801 tw32(BUFMGR_DMA_HIGH_WATER,
8802 tp->bufmgr_config.dma_high_water);
8803
Matt Carlsond309a462010-09-30 10:34:31 +00008804 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8805 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8806 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008807 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8808 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8809 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8810 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008811 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008812 for (i = 0; i < 2000; i++) {
8813 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8814 break;
8815 udelay(10);
8816 }
8817 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008818 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819 return -ENODEV;
8820 }
8821
Matt Carlsoneb07a942011-04-20 07:57:36 +00008822 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8823 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008824
Matt Carlsoneb07a942011-04-20 07:57:36 +00008825 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008826
8827 /* Initialize TG3_BDINFO's at:
8828 * RCVDBDI_STD_BD: standard eth size rx ring
8829 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8830 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8831 *
8832 * like so:
8833 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8834 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8835 * ring attribute flags
8836 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8837 *
8838 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8839 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8840 *
8841 * The size of each ring is fixed in the firmware, but the location is
8842 * configurable.
8843 */
8844 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008845 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008846 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008847 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008848 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008849 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8850 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008851
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008852 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008853 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008854 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8855 BDINFO_FLAGS_DISABLED);
8856
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008857 /* Program the jumbo buffer descriptor ring control
8858 * blocks on those devices that have them.
8859 */
Matt Carlsona0512942011-07-27 14:20:54 +00008860 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008861 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008862
Joe Perches63c3a662011-04-26 08:12:10 +00008863 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008865 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008866 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008867 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008868 val = TG3_RX_JMB_RING_SIZE(tp) <<
8869 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008870 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008871 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008872 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlson55086ad2011-12-14 11:09:59 +00008873 tg3_flag(tp, 57765_CLASS))
Matt Carlson87668d32009-11-13 13:03:34 +00008874 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8875 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876 } else {
8877 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8878 BDINFO_FLAGS_DISABLED);
8879 }
8880
Joe Perches63c3a662011-04-26 08:12:10 +00008881 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +00008882 val = TG3_RX_STD_RING_SIZE(tp);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008883 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8884 val |= (TG3_RX_STD_DMA_SZ << 2);
8885 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008886 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008887 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008888 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008889
8890 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008891
Matt Carlson411da642009-11-13 13:03:46 +00008892 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e662009-11-13 13:03:49 +00008893 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008894
Joe Perches63c3a662011-04-26 08:12:10 +00008895 tpr->rx_jmb_prod_idx =
8896 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e662009-11-13 13:03:49 +00008897 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008898
Matt Carlson2d31eca2009-09-01 12:53:31 +00008899 tg3_rings_reset(tp);
8900
Linus Torvalds1da177e2005-04-16 15:20:36 -07008901 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008902 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008903
8904 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008905 tw32(MAC_RX_MTU_SIZE,
8906 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008907
8908 /* The slot time is changed by tg3_setup_phy if we
8909 * run at gigabit with half duplex.
8910 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008911 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8912 (6 << TX_LENGTHS_IPG_SHIFT) |
8913 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8914
8915 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8916 val |= tr32(MAC_TX_LENGTHS) &
8917 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8918 TX_LENGTHS_CNT_DWN_VAL_MSK);
8919
8920 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008921
8922 /* Receive rules. */
8923 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8924 tw32(RCVLPC_CONFIG, 0x0181);
8925
8926 /* Calculate RDMAC_MODE setting early, we need it to determine
8927 * the RCVLPC_STATE_ENABLE mask.
8928 */
8929 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8930 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8931 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8932 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8933 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008934
Matt Carlsondeabaac2010-11-24 08:31:50 +00008935 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008936 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8937
Matt Carlson57e69832008-05-25 23:48:31 -07008938 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008939 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8940 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008941 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8942 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8943 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8944
Matt Carlsonc5908932011-03-09 16:58:25 +00008945 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8946 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008947 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008948 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008949 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8950 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008951 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8953 }
8954 }
8955
Joe Perches63c3a662011-04-26 08:12:10 +00008956 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008957 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8958
Joe Perches63c3a662011-04-26 08:12:10 +00008959 if (tg3_flag(tp, HW_TSO_1) ||
8960 tg3_flag(tp, HW_TSO_2) ||
8961 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008962 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8963
Matt Carlson108a6c12011-05-19 12:12:47 +00008964 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008965 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008966 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8967 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008968
Matt Carlsonf2096f92011-04-05 14:22:48 +00008969 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8970 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8971
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008972 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8973 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8974 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8975 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008976 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008977 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008978 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8979 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008980 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8981 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8982 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8983 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8984 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8985 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008986 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008987 tw32(TG3_RDMA_RSRVCTRL_REG,
8988 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8989 }
8990
Matt Carlsond78b59f2011-04-05 14:22:46 +00008991 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8992 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008993 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8994 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8995 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8996 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8997 }
8998
Linus Torvalds1da177e2005-04-16 15:20:36 -07008999 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00009000 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07009001 val = tr32(RCVLPC_STATS_ENABLE);
9002 val &= ~RCVLPC_STATSENAB_DACK_FIX;
9003 tw32(RCVLPC_STATS_ENABLE, val);
9004 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009005 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009006 val = tr32(RCVLPC_STATS_ENABLE);
9007 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
9008 tw32(RCVLPC_STATS_ENABLE, val);
9009 } else {
9010 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
9011 }
9012 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
9013 tw32(SNDDATAI_STATSENAB, 0xffffff);
9014 tw32(SNDDATAI_STATSCTRL,
9015 (SNDDATAI_SCTRL_ENABLE |
9016 SNDDATAI_SCTRL_FASTUPD));
9017
9018 /* Setup host coalescing engine. */
9019 tw32(HOSTCC_MODE, 0);
9020 for (i = 0; i < 2000; i++) {
9021 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
9022 break;
9023 udelay(10);
9024 }
9025
Michael Chand244c892005-07-05 14:42:33 -07009026 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009027
Joe Perches63c3a662011-04-26 08:12:10 +00009028 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009029 /* Status/statistics block address. See tg3_timer,
9030 * the tg3_periodic_fetch_stats call there, and
9031 * tg3_get_stats to see how this works for 5705/5750 chips.
9032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009033 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
9034 ((u64) tp->stats_mapping >> 32));
9035 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
9036 ((u64) tp->stats_mapping & 0xffffffff));
9037 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009038
Linus Torvalds1da177e2005-04-16 15:20:36 -07009039 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00009040
9041 /* Clear statistics and status block memory areas */
9042 for (i = NIC_SRAM_STATS_BLK;
9043 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
9044 i += sizeof(u32)) {
9045 tg3_write_mem(tp, i, 0);
9046 udelay(40);
9047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009048 }
9049
9050 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
9051
9052 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
9053 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009054 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009055 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
9056
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009057 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
9058 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07009059 /* reset to prevent losing 1st rx packet intermittently */
9060 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9061 udelay(10);
9062 }
9063
Matt Carlson3bda1252008-08-15 14:08:22 -07009064 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00009065 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
9066 MAC_MODE_FHDE_ENABLE;
9067 if (tg3_flag(tp, ENABLE_APE))
9068 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00009069 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009070 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07009071 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
9072 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009073 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
9074 udelay(40);
9075
Michael Chan314fba32005-04-21 17:07:04 -07009076 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00009077 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07009078 * register to preserve the GPIO settings for LOMs. The GPIOs,
9079 * whether used as inputs or outputs, are set by boot code after
9080 * reset.
9081 */
Joe Perches63c3a662011-04-26 08:12:10 +00009082 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07009083 u32 gpio_mask;
9084
Michael Chan9d26e212006-12-07 00:21:14 -08009085 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
9086 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
9087 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07009088
9089 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
9090 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
9091 GRC_LCLCTRL_GPIO_OUTPUT3;
9092
Michael Chanaf36e6b2006-03-23 01:28:06 -08009093 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
9094 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
9095
Gary Zambranoaaf84462007-05-05 11:51:45 -07009096 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07009097 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
9098
9099 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00009100 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08009101 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
9102 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07009103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009104 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9105 udelay(100);
9106
Matt Carlsonc3b50032012-01-17 15:27:23 +00009107 if (tg3_flag(tp, USING_MSIX)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009108 val = tr32(MSGINT_MODE);
Matt Carlsonc3b50032012-01-17 15:27:23 +00009109 val |= MSGINT_MODE_ENABLE;
9110 if (tp->irq_cnt > 1)
9111 val |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009112 if (!tg3_flag(tp, 1SHOT_MSI))
9113 val |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009114 tw32(MSGINT_MODE, val);
9115 }
9116
Joe Perches63c3a662011-04-26 08:12:10 +00009117 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009118 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
9119 udelay(40);
9120 }
9121
9122 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
9123 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
9124 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
9125 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
9126 WDMAC_MODE_LNGREAD_ENAB);
9127
Matt Carlsonc5908932011-03-09 16:58:25 +00009128 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
9129 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00009130 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009131 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
9132 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
9133 /* nothing */
9134 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009135 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009136 val |= WDMAC_MODE_RX_ACCEL;
9137 }
9138 }
9139
Michael Chand9ab5ad12006-03-20 22:27:35 -08009140 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00009141 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07009142 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08009143
Matt Carlson788a0352009-11-02 14:26:03 +00009144 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
9145 val |= WDMAC_MODE_BURST_ALL_DATA;
9146
Linus Torvalds1da177e2005-04-16 15:20:36 -07009147 tw32_f(WDMAC_MODE, val);
9148 udelay(40);
9149
Joe Perches63c3a662011-04-26 08:12:10 +00009150 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07009151 u16 pcix_cmd;
9152
9153 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9154 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009155 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07009156 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
9157 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009158 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07009159 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
9160 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009161 }
Matt Carlson9974a352007-10-07 23:27:28 -07009162 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
9163 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009164 }
9165
9166 tw32_f(RDMAC_MODE, rdmac_mode);
9167 udelay(40);
9168
9169 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009170 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009171 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07009172
9173 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
9174 tw32(SNDDATAC_MODE,
9175 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
9176 else
9177 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
9178
Linus Torvalds1da177e2005-04-16 15:20:36 -07009179 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
9180 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009181 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00009182 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00009183 val |= RCVDBDI_MODE_LRG_RING_SZ;
9184 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009185 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00009186 if (tg3_flag(tp, HW_TSO_1) ||
9187 tg3_flag(tp, HW_TSO_2) ||
9188 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009189 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009190 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009191 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009192 val |= SNDBDI_MODE_MULTI_TXQ_EN;
9193 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009194 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
9195
9196 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9197 err = tg3_load_5701_a0_firmware_fix(tp);
9198 if (err)
9199 return err;
9200 }
9201
Joe Perches63c3a662011-04-26 08:12:10 +00009202 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009203 err = tg3_load_tso_firmware(tp);
9204 if (err)
9205 return err;
9206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009207
9208 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009209
Joe Perches63c3a662011-04-26 08:12:10 +00009210 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00009211 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
9212 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00009213
9214 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
9215 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
9216 tp->tx_mode &= ~val;
9217 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
9218 }
9219
Linus Torvalds1da177e2005-04-16 15:20:36 -07009220 tw32_f(MAC_TX_MODE, tp->tx_mode);
9221 udelay(100);
9222
Joe Perches63c3a662011-04-26 08:12:10 +00009223 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbcebcc42011-12-14 11:10:01 +00009224 tg3_rss_write_indir_tbl(tp);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009225
9226 /* Setup the "secret" hash key. */
9227 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
9228 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
9229 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
9230 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
9231 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
9232 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
9233 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
9234 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
9235 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
9236 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
9237 }
9238
Linus Torvalds1da177e2005-04-16 15:20:36 -07009239 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00009240 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08009241 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
9242
Joe Perches63c3a662011-04-26 08:12:10 +00009243 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009244 tp->rx_mode |= RX_MODE_RSS_ENABLE |
9245 RX_MODE_RSS_ITBL_HASH_BITS_7 |
9246 RX_MODE_RSS_IPV6_HASH_EN |
9247 RX_MODE_RSS_TCP_IPV6_HASH_EN |
9248 RX_MODE_RSS_IPV4_HASH_EN |
9249 RX_MODE_RSS_TCP_IPV4_HASH_EN;
9250
Linus Torvalds1da177e2005-04-16 15:20:36 -07009251 tw32_f(MAC_RX_MODE, tp->rx_mode);
9252 udelay(10);
9253
Linus Torvalds1da177e2005-04-16 15:20:36 -07009254 tw32(MAC_LED_CTRL, tp->led_ctrl);
9255
9256 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009257 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009258 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
9259 udelay(10);
9260 }
9261 tw32_f(MAC_RX_MODE, tp->rx_mode);
9262 udelay(10);
9263
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009264 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009265 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009266 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009267 /* Set drive transmission level to 1.2V */
9268 /* only if the signal pre-emphasis bit is not set */
9269 val = tr32(MAC_SERDES_CFG);
9270 val &= 0xfffff000;
9271 val |= 0x880;
9272 tw32(MAC_SERDES_CFG, val);
9273 }
9274 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
9275 tw32(MAC_SERDES_CFG, 0x616000);
9276 }
9277
9278 /* Prevent chip from dropping frames when flow control
9279 * is enabled.
9280 */
Matt Carlson55086ad2011-12-14 11:09:59 +00009281 if (tg3_flag(tp, 57765_CLASS))
Matt Carlson666bc832010-01-20 16:58:03 +00009282 val = 1;
9283 else
9284 val = 2;
9285 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009286
9287 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009288 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009289 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00009290 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009291 }
9292
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009293 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00009294 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08009295 u32 tmp;
9296
9297 tmp = tr32(SERDES_RX_CTRL);
9298 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
9299 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
9300 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
9301 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
9302 }
9303
Joe Perches63c3a662011-04-26 08:12:10 +00009304 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonc6700ce2012-02-13 15:20:15 +00009305 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Matt Carlson80096062010-08-02 11:26:06 +00009306 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009307
Matt Carlsondd477002008-05-25 23:45:58 -07009308 err = tg3_setup_phy(tp, 0);
9309 if (err)
9310 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009311
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009312 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
9313 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07009314 u32 tmp;
9315
9316 /* Clear CRC stats. */
9317 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
9318 tg3_writephy(tp, MII_TG3_TEST1,
9319 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009320 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07009321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009322 }
9323 }
9324
9325 __tg3_set_rx_mode(tp->dev);
9326
9327 /* Initialize receive rules. */
9328 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
9329 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
9330 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
9331 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
9332
Joe Perches63c3a662011-04-26 08:12:10 +00009333 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009334 limit = 8;
9335 else
9336 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00009337 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009338 limit -= 4;
9339 switch (limit) {
9340 case 16:
9341 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
9342 case 15:
9343 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
9344 case 14:
9345 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
9346 case 13:
9347 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
9348 case 12:
9349 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
9350 case 11:
9351 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
9352 case 10:
9353 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
9354 case 9:
9355 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
9356 case 8:
9357 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
9358 case 7:
9359 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
9360 case 6:
9361 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
9362 case 5:
9363 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
9364 case 4:
9365 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
9366 case 3:
9367 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
9368 case 2:
9369 case 1:
9370
9371 default:
9372 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07009373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009374
Joe Perches63c3a662011-04-26 08:12:10 +00009375 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07009376 /* Write our heartbeat update interval to APE. */
9377 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
9378 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07009379
Linus Torvalds1da177e2005-04-16 15:20:36 -07009380 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
9381
Linus Torvalds1da177e2005-04-16 15:20:36 -07009382 return 0;
9383}
9384
9385/* Called at device open time to get the chip ready for
9386 * packet processing. Invoked with tp->lock held.
9387 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009388static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009389{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009390 tg3_switch_clocks(tp);
9391
9392 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
9393
Matt Carlson2f751b62008-08-04 23:17:34 -07009394 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009395}
9396
9397#define TG3_STAT_ADD32(PSTAT, REG) \
9398do { u32 __val = tr32(REG); \
9399 (PSTAT)->low += __val; \
9400 if ((PSTAT)->low < __val) \
9401 (PSTAT)->high += 1; \
9402} while (0)
9403
9404static void tg3_periodic_fetch_stats(struct tg3 *tp)
9405{
9406 struct tg3_hw_stats *sp = tp->hw_stats;
9407
9408 if (!netif_carrier_ok(tp->dev))
9409 return;
9410
9411 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
9412 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
9413 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
9414 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
9415 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
9416 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
9417 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
9418 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
9419 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
9420 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
9421 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
9422 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
9423 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
9424
9425 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
9426 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
9427 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
9428 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
9429 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
9430 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
9431 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
9432 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
9433 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
9434 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
9435 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
9436 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
9437 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
9438 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07009439
9440 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00009441 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9442 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
9443 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00009444 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
9445 } else {
9446 u32 val = tr32(HOSTCC_FLOW_ATTN);
9447 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
9448 if (val) {
9449 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
9450 sp->rx_discards.low += val;
9451 if (sp->rx_discards.low < val)
9452 sp->rx_discards.high += 1;
9453 }
9454 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
9455 }
Michael Chan463d3052006-05-22 16:36:27 -07009456 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009457}
9458
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009459static void tg3_chk_missed_msi(struct tg3 *tp)
9460{
9461 u32 i;
9462
9463 for (i = 0; i < tp->irq_cnt; i++) {
9464 struct tg3_napi *tnapi = &tp->napi[i];
9465
9466 if (tg3_has_work(tnapi)) {
9467 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
9468 tnapi->last_tx_cons == tnapi->tx_cons) {
9469 if (tnapi->chk_msi_cnt < 1) {
9470 tnapi->chk_msi_cnt++;
9471 return;
9472 }
Matt Carlson7f230732011-08-31 11:44:48 +00009473 tg3_msi(0, tnapi);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009474 }
9475 }
9476 tnapi->chk_msi_cnt = 0;
9477 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
9478 tnapi->last_tx_cons = tnapi->tx_cons;
9479 }
9480}
9481
Linus Torvalds1da177e2005-04-16 15:20:36 -07009482static void tg3_timer(unsigned long __opaque)
9483{
9484 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009485
Matt Carlson5b190622011-11-04 09:15:04 +00009486 if (tp->irq_sync || tg3_flag(tp, RESET_TASK_PENDING))
Michael Chanf475f162006-03-27 23:20:14 -08009487 goto restart_timer;
9488
David S. Millerf47c11e2005-06-24 20:18:35 -07009489 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009490
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009491 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlson55086ad2011-12-14 11:09:59 +00009492 tg3_flag(tp, 57765_CLASS))
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009493 tg3_chk_missed_msi(tp);
9494
Joe Perches63c3a662011-04-26 08:12:10 +00009495 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009496 /* All of this garbage is because when using non-tagged
9497 * IRQ status the mailbox/status_block protocol the chip
9498 * uses with the cpu is race prone.
9499 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009500 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009501 tw32(GRC_LOCAL_CTRL,
9502 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9503 } else {
9504 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009505 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009507
David S. Millerfac9b832005-05-18 22:46:34 -07009508 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009509 spin_unlock(&tp->lock);
Matt Carlsondb219972011-11-04 09:15:03 +00009510 tg3_reset_task_schedule(tp);
Matt Carlson5b190622011-11-04 09:15:04 +00009511 goto restart_timer;
David S. Millerfac9b832005-05-18 22:46:34 -07009512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009513 }
9514
Linus Torvalds1da177e2005-04-16 15:20:36 -07009515 /* This part only runs once per second. */
9516 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009517 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009518 tg3_periodic_fetch_stats(tp);
9519
Matt Carlsonb0c59432011-05-19 12:12:48 +00009520 if (tp->setlpicnt && !--tp->setlpicnt)
9521 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009522
Joe Perches63c3a662011-04-26 08:12:10 +00009523 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009524 u32 mac_stat;
9525 int phy_event;
9526
9527 mac_stat = tr32(MAC_STATUS);
9528
9529 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009530 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009531 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9532 phy_event = 1;
9533 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9534 phy_event = 1;
9535
9536 if (phy_event)
9537 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009538 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009539 u32 mac_stat = tr32(MAC_STATUS);
9540 int need_setup = 0;
9541
9542 if (netif_carrier_ok(tp->dev) &&
9543 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9544 need_setup = 1;
9545 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009546 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009547 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9548 MAC_STATUS_SIGNAL_DET))) {
9549 need_setup = 1;
9550 }
9551 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009552 if (!tp->serdes_counter) {
9553 tw32_f(MAC_MODE,
9554 (tp->mac_mode &
9555 ~MAC_MODE_PORT_MODE_MASK));
9556 udelay(40);
9557 tw32_f(MAC_MODE, tp->mac_mode);
9558 udelay(40);
9559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009560 tg3_setup_phy(tp, 0);
9561 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009562 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009563 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009564 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009566
9567 tp->timer_counter = tp->timer_multiplier;
9568 }
9569
Michael Chan130b8e42006-09-27 16:00:40 -07009570 /* Heartbeat is only sent once every 2 seconds.
9571 *
9572 * The heartbeat is to tell the ASF firmware that the host
9573 * driver is still alive. In the event that the OS crashes,
9574 * ASF needs to reset the hardware to free up the FIFO space
9575 * that may be filled with rx packets destined for the host.
9576 * If the FIFO is full, ASF will no longer function properly.
9577 *
9578 * Unintended resets have been reported on real time kernels
9579 * where the timer doesn't run on time. Netpoll will also have
9580 * same problem.
9581 *
9582 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9583 * to check the ring condition when the heartbeat is expiring
9584 * before doing the reset. This will prevent most unintended
9585 * resets.
9586 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009587 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009588 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009589 tg3_wait_for_event_ack(tp);
9590
Michael Chanbbadf502006-04-06 21:46:34 -07009591 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009592 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009593 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009594 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9595 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009596
9597 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009598 }
9599 tp->asf_counter = tp->asf_multiplier;
9600 }
9601
David S. Millerf47c11e2005-06-24 20:18:35 -07009602 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009603
Michael Chanf475f162006-03-27 23:20:14 -08009604restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009605 tp->timer.expires = jiffies + tp->timer_offset;
9606 add_timer(&tp->timer);
9607}
9608
Matt Carlson21f76382012-02-22 12:35:21 +00009609static void __devinit tg3_timer_init(struct tg3 *tp)
9610{
9611 if (tg3_flag(tp, TAGGED_STATUS) &&
9612 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9613 !tg3_flag(tp, 57765_CLASS))
9614 tp->timer_offset = HZ;
9615 else
9616 tp->timer_offset = HZ / 10;
9617
9618 BUG_ON(tp->timer_offset > HZ);
9619
9620 tp->timer_multiplier = (HZ / tp->timer_offset);
9621 tp->asf_multiplier = (HZ / tp->timer_offset) *
9622 TG3_FW_UPDATE_FREQ_SEC;
9623
9624 init_timer(&tp->timer);
9625 tp->timer.data = (unsigned long) tp;
9626 tp->timer.function = tg3_timer;
9627}
9628
9629static void tg3_timer_start(struct tg3 *tp)
9630{
9631 tp->asf_counter = tp->asf_multiplier;
9632 tp->timer_counter = tp->timer_multiplier;
9633
9634 tp->timer.expires = jiffies + tp->timer_offset;
9635 add_timer(&tp->timer);
9636}
9637
9638static void tg3_timer_stop(struct tg3 *tp)
9639{
9640 del_timer_sync(&tp->timer);
9641}
9642
9643/* Restart hardware after configuration changes, self-test, etc.
9644 * Invoked with tp->lock held.
9645 */
9646static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
9647 __releases(tp->lock)
9648 __acquires(tp->lock)
9649{
9650 int err;
9651
9652 err = tg3_init_hw(tp, reset_phy);
9653 if (err) {
9654 netdev_err(tp->dev,
9655 "Failed to re-initialize device, aborting\n");
9656 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
9657 tg3_full_unlock(tp);
9658 tg3_timer_stop(tp);
9659 tp->irq_sync = 0;
9660 tg3_napi_enable(tp);
9661 dev_close(tp->dev);
9662 tg3_full_lock(tp, 0);
9663 }
9664 return err;
9665}
9666
9667static void tg3_reset_task(struct work_struct *work)
9668{
9669 struct tg3 *tp = container_of(work, struct tg3, reset_task);
9670 int err;
9671
9672 tg3_full_lock(tp, 0);
9673
9674 if (!netif_running(tp->dev)) {
9675 tg3_flag_clear(tp, RESET_TASK_PENDING);
9676 tg3_full_unlock(tp);
9677 return;
9678 }
9679
9680 tg3_full_unlock(tp);
9681
9682 tg3_phy_stop(tp);
9683
9684 tg3_netif_stop(tp);
9685
9686 tg3_full_lock(tp, 1);
9687
9688 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
9689 tp->write32_tx_mbox = tg3_write32_tx_mbox;
9690 tp->write32_rx_mbox = tg3_write_flush_reg32;
9691 tg3_flag_set(tp, MBOX_WRITE_REORDER);
9692 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
9693 }
9694
9695 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
9696 err = tg3_init_hw(tp, 1);
9697 if (err)
9698 goto out;
9699
9700 tg3_netif_start(tp);
9701
9702out:
9703 tg3_full_unlock(tp);
9704
9705 if (!err)
9706 tg3_phy_start(tp);
9707
9708 tg3_flag_clear(tp, RESET_TASK_PENDING);
9709}
9710
Matt Carlson4f125f42009-09-01 12:55:02 +00009711static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009712{
David Howells7d12e782006-10-05 14:55:46 +01009713 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009714 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00009715 char *name;
9716 struct tg3_napi *tnapi = &tp->napi[irq_num];
9717
9718 if (tp->irq_cnt == 1)
9719 name = tp->dev->name;
9720 else {
9721 name = &tnapi->irq_lbl[0];
9722 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
9723 name[IFNAMSIZ-1] = 0;
9724 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009725
Joe Perches63c3a662011-04-26 08:12:10 +00009726 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08009727 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00009728 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009729 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009730 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009731 } else {
9732 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00009733 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009734 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009735 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009736 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009737
9738 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009739}
9740
Michael Chan79381092005-04-21 17:13:59 -07009741static int tg3_test_interrupt(struct tg3 *tp)
9742{
Matt Carlson09943a12009-08-28 14:01:57 +00009743 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009744 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009745 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009746 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009747
Michael Chand4bc3922005-05-29 14:59:20 -07009748 if (!netif_running(dev))
9749 return -ENODEV;
9750
Michael Chan79381092005-04-21 17:13:59 -07009751 tg3_disable_ints(tp);
9752
Matt Carlson4f125f42009-09-01 12:55:02 +00009753 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009754
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009755 /*
9756 * Turn off MSI one shot mode. Otherwise this test has no
9757 * observable way to know whether the interrupt was delivered.
9758 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009759 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009760 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9761 tw32(MSGINT_MODE, val);
9762 }
9763
Matt Carlson4f125f42009-09-01 12:55:02 +00009764 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Davidlohr Buesof274fd92012-02-22 03:06:54 +00009765 IRQF_SHARED, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009766 if (err)
9767 return err;
9768
Matt Carlson898a56f2009-08-28 14:02:40 +00009769 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009770 tg3_enable_ints(tp);
9771
9772 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009773 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009774
9775 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009776 u32 int_mbox, misc_host_ctrl;
9777
Matt Carlson898a56f2009-08-28 14:02:40 +00009778 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009779 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9780
9781 if ((int_mbox != 0) ||
9782 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9783 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009784 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009785 }
9786
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009787 if (tg3_flag(tp, 57765_PLUS) &&
9788 tnapi->hw_status->status_tag != tnapi->last_tag)
9789 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
9790
Michael Chan79381092005-04-21 17:13:59 -07009791 msleep(10);
9792 }
9793
9794 tg3_disable_ints(tp);
9795
Matt Carlson4f125f42009-09-01 12:55:02 +00009796 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009797
Matt Carlson4f125f42009-09-01 12:55:02 +00009798 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009799
9800 if (err)
9801 return err;
9802
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009803 if (intr_ok) {
9804 /* Reenable MSI one shot mode. */
Matt Carlson5b39de92011-08-31 11:44:50 +00009805 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, 1SHOT_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009806 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9807 tw32(MSGINT_MODE, val);
9808 }
Michael Chan79381092005-04-21 17:13:59 -07009809 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009810 }
Michael Chan79381092005-04-21 17:13:59 -07009811
9812 return -EIO;
9813}
9814
9815/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9816 * successfully restored
9817 */
9818static int tg3_test_msi(struct tg3 *tp)
9819{
Michael Chan79381092005-04-21 17:13:59 -07009820 int err;
9821 u16 pci_cmd;
9822
Joe Perches63c3a662011-04-26 08:12:10 +00009823 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009824 return 0;
9825
9826 /* Turn off SERR reporting in case MSI terminates with Master
9827 * Abort.
9828 */
9829 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9830 pci_write_config_word(tp->pdev, PCI_COMMAND,
9831 pci_cmd & ~PCI_COMMAND_SERR);
9832
9833 err = tg3_test_interrupt(tp);
9834
9835 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9836
9837 if (!err)
9838 return 0;
9839
9840 /* other failures */
9841 if (err != -EIO)
9842 return err;
9843
9844 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009845 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9846 "to INTx mode. Please report this failure to the PCI "
9847 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009848
Matt Carlson4f125f42009-09-01 12:55:02 +00009849 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009850
Michael Chan79381092005-04-21 17:13:59 -07009851 pci_disable_msi(tp->pdev);
9852
Joe Perches63c3a662011-04-26 08:12:10 +00009853 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009854 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009855
Matt Carlson4f125f42009-09-01 12:55:02 +00009856 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009857 if (err)
9858 return err;
9859
9860 /* Need to reset the chip because the MSI cycle may have terminated
9861 * with Master Abort.
9862 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009863 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009864
Michael Chan944d9802005-05-29 14:57:48 -07009865 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009866 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009867
David S. Millerf47c11e2005-06-24 20:18:35 -07009868 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009869
9870 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009871 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009872
9873 return err;
9874}
9875
Matt Carlson9e9fd122009-01-19 16:57:45 -08009876static int tg3_request_firmware(struct tg3 *tp)
9877{
9878 const __be32 *fw_data;
9879
9880 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009881 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9882 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009883 return -ENOENT;
9884 }
9885
9886 fw_data = (void *)tp->fw->data;
9887
9888 /* Firmware blob starts with version numbers, followed by
9889 * start address and _full_ length including BSS sections
9890 * (which must be longer than the actual data, of course
9891 */
9892
9893 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9894 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009895 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9896 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009897 release_firmware(tp->fw);
9898 tp->fw = NULL;
9899 return -EINVAL;
9900 }
9901
9902 /* We no longer need firmware; we have it. */
9903 tp->fw_needed = NULL;
9904 return 0;
9905}
9906
Matt Carlson679563f2009-09-01 12:55:46 +00009907static bool tg3_enable_msix(struct tg3 *tp)
9908{
Matt Carlsonc3b50032012-01-17 15:27:23 +00009909 int i, rc;
Matt Carlson679563f2009-09-01 12:55:46 +00009910 struct msix_entry msix_ent[tp->irq_max];
9911
Yuval Mintz11800872012-07-01 03:18:57 +00009912 tp->irq_cnt = netif_get_num_default_rss_queues();
Matt Carlsonc3b50032012-01-17 15:27:23 +00009913 if (tp->irq_cnt > 1) {
9914 /* We want as many rx rings enabled as there are cpus.
9915 * In multiqueue MSI-X mode, the first MSI-X vector
9916 * only deals with link interrupts, etc, so we add
9917 * one to the number of vectors we are requesting.
9918 */
9919 tp->irq_cnt = min_t(unsigned, tp->irq_cnt + 1, tp->irq_max);
9920 }
Matt Carlson679563f2009-09-01 12:55:46 +00009921
9922 for (i = 0; i < tp->irq_max; i++) {
9923 msix_ent[i].entry = i;
9924 msix_ent[i].vector = 0;
9925 }
9926
9927 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009928 if (rc < 0) {
9929 return false;
9930 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009931 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9932 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009933 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9934 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009935 tp->irq_cnt = rc;
9936 }
9937
9938 for (i = 0; i < tp->irq_max; i++)
9939 tp->napi[i].irq_vec = msix_ent[i].vector;
9940
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009941 netif_set_real_num_tx_queues(tp->dev, 1);
9942 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9943 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9944 pci_disable_msix(tp->pdev);
9945 return false;
9946 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009947
9948 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009949 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009950
9951 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9952 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009953 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009954 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9955 }
9956 }
Matt Carlson2430b032010-06-05 17:24:34 +00009957
Matt Carlson679563f2009-09-01 12:55:46 +00009958 return true;
9959}
9960
Matt Carlson07b01732009-08-28 14:01:15 +00009961static void tg3_ints_init(struct tg3 *tp)
9962{
Joe Perches63c3a662011-04-26 08:12:10 +00009963 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9964 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009965 /* All MSI supporting chips should support tagged
9966 * status. Assert that this is the case.
9967 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009968 netdev_warn(tp->dev,
9969 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009970 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009971 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009972
Joe Perches63c3a662011-04-26 08:12:10 +00009973 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9974 tg3_flag_set(tp, USING_MSIX);
9975 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9976 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009977
Joe Perches63c3a662011-04-26 08:12:10 +00009978 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009979 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009980 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009981 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson5b39de92011-08-31 11:44:50 +00009982 if (!tg3_flag(tp, 1SHOT_MSI))
9983 msi_mode |= MSGINT_MODE_ONE_SHOT_DISABLE;
Matt Carlson679563f2009-09-01 12:55:46 +00009984 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9985 }
9986defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009987 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009988 tp->irq_cnt = 1;
9989 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009990 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009991 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009992 }
Matt Carlson07b01732009-08-28 14:01:15 +00009993}
9994
9995static void tg3_ints_fini(struct tg3 *tp)
9996{
Joe Perches63c3a662011-04-26 08:12:10 +00009997 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009998 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009999 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +000010000 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +000010001 tg3_flag_clear(tp, USING_MSI);
10002 tg3_flag_clear(tp, USING_MSIX);
10003 tg3_flag_clear(tp, ENABLE_RSS);
10004 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +000010005}
10006
Linus Torvalds1da177e2005-04-16 15:20:36 -070010007static int tg3_open(struct net_device *dev)
10008{
10009 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +000010010 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010011
Matt Carlson9e9fd122009-01-19 16:57:45 -080010012 if (tp->fw_needed) {
10013 err = tg3_request_firmware(tp);
10014 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
10015 if (err)
10016 return err;
10017 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +000010018 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +000010019 tg3_flag_clear(tp, TSO_CAPABLE);
10020 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +000010021 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +000010022 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -080010023 }
10024 }
10025
Michael Chanc49a1562006-12-17 17:07:29 -080010026 netif_carrier_off(tp->dev);
10027
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000010028 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -070010029 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -080010030 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -070010031
10032 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -080010033
Linus Torvalds1da177e2005-04-16 15:20:36 -070010034 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010035 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010036
David S. Millerf47c11e2005-06-24 20:18:35 -070010037 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010038
Matt Carlson679563f2009-09-01 12:55:46 +000010039 /*
10040 * Setup interrupts first so we know how
10041 * many NAPI resources to allocate
10042 */
10043 tg3_ints_init(tp);
10044
Matt Carlson90415472011-12-16 13:33:23 +000010045 tg3_rss_check_indir_tbl(tp);
Matt Carlsonbcebcc42011-12-14 11:10:01 +000010046
Linus Torvalds1da177e2005-04-16 15:20:36 -070010047 /* The placement of this call is tied
10048 * to the setup and use of Host TX descriptors.
10049 */
10050 err = tg3_alloc_consistent(tp);
10051 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010052 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010053
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010054 tg3_napi_init(tp);
10055
Matt Carlsonfed97812009-09-01 13:10:19 +000010056 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -070010057
Matt Carlson4f125f42009-09-01 12:55:02 +000010058 for (i = 0; i < tp->irq_cnt; i++) {
10059 struct tg3_napi *tnapi = &tp->napi[i];
10060 err = tg3_request_irq(tp, i);
10061 if (err) {
Matt Carlson5bc09182011-11-04 09:15:01 +000010062 for (i--; i >= 0; i--) {
10063 tnapi = &tp->napi[i];
Matt Carlson4f125f42009-09-01 12:55:02 +000010064 free_irq(tnapi->irq_vec, tnapi);
Matt Carlson5bc09182011-11-04 09:15:01 +000010065 }
10066 goto err_out2;
Matt Carlson4f125f42009-09-01 12:55:02 +000010067 }
10068 }
Matt Carlson07b01732009-08-28 14:01:15 +000010069
David S. Millerf47c11e2005-06-24 20:18:35 -070010070 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010071
Gary Zambrano8e7a22e2006-04-29 18:59:13 -070010072 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010073 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -070010074 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010075 tg3_free_rings(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010076 }
10077
David S. Millerf47c11e2005-06-24 20:18:35 -070010078 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010079
Matt Carlson07b01732009-08-28 14:01:15 +000010080 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +000010081 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010082
Joe Perches63c3a662011-04-26 08:12:10 +000010083 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -070010084 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -070010085
Michael Chan79381092005-04-21 17:13:59 -070010086 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -070010087 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070010088 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -070010089 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070010090 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -070010091
Matt Carlson679563f2009-09-01 12:55:46 +000010092 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -070010093 }
Michael Chanfcfa0a32006-03-20 22:28:41 -080010094
Joe Perches63c3a662011-04-26 08:12:10 +000010095 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010096 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010097
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000010098 tw32(PCIE_TRANSACTION_CFG,
10099 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -080010100 }
Michael Chan79381092005-04-21 17:13:59 -070010101 }
10102
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010103 tg3_phy_start(tp);
10104
David S. Millerf47c11e2005-06-24 20:18:35 -070010105 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010106
Matt Carlson21f76382012-02-22 12:35:21 +000010107 tg3_timer_start(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010108 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010109 tg3_enable_ints(tp);
10110
David S. Millerf47c11e2005-06-24 20:18:35 -070010111 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010112
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010113 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010114
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000010115 /*
10116 * Reset loopback feature if it was turned on while the device was down
10117 * make sure that it's installed properly now.
10118 */
10119 if (dev->features & NETIF_F_LOOPBACK)
10120 tg3_set_loopback(dev, dev->features);
10121
Linus Torvalds1da177e2005-04-16 15:20:36 -070010122 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +000010123
Matt Carlson679563f2009-09-01 12:55:46 +000010124err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +000010125 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10126 struct tg3_napi *tnapi = &tp->napi[i];
10127 free_irq(tnapi->irq_vec, tnapi);
10128 }
Matt Carlson07b01732009-08-28 14:01:15 +000010129
Matt Carlson679563f2009-09-01 12:55:46 +000010130err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +000010131 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010132 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +000010133 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +000010134
10135err_out1:
10136 tg3_ints_fini(tp);
Matt Carlsoncd0d7222011-07-13 09:27:33 +000010137 tg3_frob_aux_power(tp, false);
10138 pci_set_power_state(tp->pdev, PCI_D3hot);
Matt Carlson07b01732009-08-28 14:01:15 +000010139 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010140}
10141
Linus Torvalds1da177e2005-04-16 15:20:36 -070010142static int tg3_close(struct net_device *dev)
10143{
Matt Carlson4f125f42009-09-01 12:55:02 +000010144 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145 struct tg3 *tp = netdev_priv(dev);
10146
Matt Carlsonfed97812009-09-01 13:10:19 +000010147 tg3_napi_disable(tp);
Matt Carlsondb219972011-11-04 09:15:03 +000010148 tg3_reset_task_cancel(tp);
Michael Chan7faa0062006-02-02 17:29:28 -080010149
Matt Carlsonfe5f5782009-09-01 13:09:39 +000010150 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010151
Matt Carlson21f76382012-02-22 12:35:21 +000010152 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010153
Matt Carlson24bb4fb2009-10-05 17:55:29 +000010154 tg3_phy_stop(tp);
10155
David S. Millerf47c11e2005-06-24 20:18:35 -070010156 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010157
10158 tg3_disable_ints(tp);
10159
Michael Chan944d9802005-05-29 14:57:48 -070010160 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010161 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000010162 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010163
David S. Millerf47c11e2005-06-24 20:18:35 -070010164 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010165
Matt Carlson4f125f42009-09-01 12:55:02 +000010166 for (i = tp->irq_cnt - 1; i >= 0; i--) {
10167 struct tg3_napi *tnapi = &tp->napi[i];
10168 free_irq(tnapi->irq_vec, tnapi);
10169 }
Matt Carlson07b01732009-08-28 14:01:15 +000010170
10171 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010172
Matt Carlson92feeab2011-12-08 14:40:14 +000010173 /* Clear stats across close / open calls */
10174 memset(&tp->net_stats_prev, 0, sizeof(tp->net_stats_prev));
10175 memset(&tp->estats_prev, 0, sizeof(tp->estats_prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010176
Matt Carlson66cfd1b2010-09-30 10:34:30 +000010177 tg3_napi_fini(tp);
10178
Linus Torvalds1da177e2005-04-16 15:20:36 -070010179 tg3_free_consistent(tp);
10180
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000010181 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080010182
10183 netif_carrier_off(tp->dev);
10184
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185 return 0;
10186}
10187
Eric Dumazet511d2222010-07-07 20:44:24 +000010188static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -070010189{
10190 return ((u64)val->high << 32) | ((u64)val->low);
10191}
10192
Matt Carlson65ec6982012-02-28 23:33:37 +000010193static u64 tg3_calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010194{
10195 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10196
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010197 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010198 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
10199 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010200 u32 val;
10201
Michael Chan569a5df2007-02-13 12:18:15 -080010202 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
10203 tg3_writephy(tp, MII_TG3_TEST1,
10204 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +000010205 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010206 } else
10207 val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010208
10209 tp->phy_crc_errors += val;
10210
10211 return tp->phy_crc_errors;
10212 }
10213
10214 return get_stat64(&hw_stats->rx_fcs_errors);
10215}
10216
10217#define ESTAT_ADD(member) \
10218 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +000010219 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010220
Matt Carlson65ec6982012-02-28 23:33:37 +000010221static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010223 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
10224 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10225
Linus Torvalds1da177e2005-04-16 15:20:36 -070010226 ESTAT_ADD(rx_octets);
10227 ESTAT_ADD(rx_fragments);
10228 ESTAT_ADD(rx_ucast_packets);
10229 ESTAT_ADD(rx_mcast_packets);
10230 ESTAT_ADD(rx_bcast_packets);
10231 ESTAT_ADD(rx_fcs_errors);
10232 ESTAT_ADD(rx_align_errors);
10233 ESTAT_ADD(rx_xon_pause_rcvd);
10234 ESTAT_ADD(rx_xoff_pause_rcvd);
10235 ESTAT_ADD(rx_mac_ctrl_rcvd);
10236 ESTAT_ADD(rx_xoff_entered);
10237 ESTAT_ADD(rx_frame_too_long_errors);
10238 ESTAT_ADD(rx_jabbers);
10239 ESTAT_ADD(rx_undersize_packets);
10240 ESTAT_ADD(rx_in_length_errors);
10241 ESTAT_ADD(rx_out_length_errors);
10242 ESTAT_ADD(rx_64_or_less_octet_packets);
10243 ESTAT_ADD(rx_65_to_127_octet_packets);
10244 ESTAT_ADD(rx_128_to_255_octet_packets);
10245 ESTAT_ADD(rx_256_to_511_octet_packets);
10246 ESTAT_ADD(rx_512_to_1023_octet_packets);
10247 ESTAT_ADD(rx_1024_to_1522_octet_packets);
10248 ESTAT_ADD(rx_1523_to_2047_octet_packets);
10249 ESTAT_ADD(rx_2048_to_4095_octet_packets);
10250 ESTAT_ADD(rx_4096_to_8191_octet_packets);
10251 ESTAT_ADD(rx_8192_to_9022_octet_packets);
10252
10253 ESTAT_ADD(tx_octets);
10254 ESTAT_ADD(tx_collisions);
10255 ESTAT_ADD(tx_xon_sent);
10256 ESTAT_ADD(tx_xoff_sent);
10257 ESTAT_ADD(tx_flow_control);
10258 ESTAT_ADD(tx_mac_errors);
10259 ESTAT_ADD(tx_single_collisions);
10260 ESTAT_ADD(tx_mult_collisions);
10261 ESTAT_ADD(tx_deferred);
10262 ESTAT_ADD(tx_excessive_collisions);
10263 ESTAT_ADD(tx_late_collisions);
10264 ESTAT_ADD(tx_collide_2times);
10265 ESTAT_ADD(tx_collide_3times);
10266 ESTAT_ADD(tx_collide_4times);
10267 ESTAT_ADD(tx_collide_5times);
10268 ESTAT_ADD(tx_collide_6times);
10269 ESTAT_ADD(tx_collide_7times);
10270 ESTAT_ADD(tx_collide_8times);
10271 ESTAT_ADD(tx_collide_9times);
10272 ESTAT_ADD(tx_collide_10times);
10273 ESTAT_ADD(tx_collide_11times);
10274 ESTAT_ADD(tx_collide_12times);
10275 ESTAT_ADD(tx_collide_13times);
10276 ESTAT_ADD(tx_collide_14times);
10277 ESTAT_ADD(tx_collide_15times);
10278 ESTAT_ADD(tx_ucast_packets);
10279 ESTAT_ADD(tx_mcast_packets);
10280 ESTAT_ADD(tx_bcast_packets);
10281 ESTAT_ADD(tx_carrier_sense_errors);
10282 ESTAT_ADD(tx_discards);
10283 ESTAT_ADD(tx_errors);
10284
10285 ESTAT_ADD(dma_writeq_full);
10286 ESTAT_ADD(dma_write_prioq_full);
10287 ESTAT_ADD(rxbds_empty);
10288 ESTAT_ADD(rx_discards);
10289 ESTAT_ADD(rx_errors);
10290 ESTAT_ADD(rx_threshold_hit);
10291
10292 ESTAT_ADD(dma_readq_full);
10293 ESTAT_ADD(dma_read_prioq_full);
10294 ESTAT_ADD(tx_comp_queue_full);
10295
10296 ESTAT_ADD(ring_set_send_prod_index);
10297 ESTAT_ADD(ring_status_update);
10298 ESTAT_ADD(nic_irqs);
10299 ESTAT_ADD(nic_avoided_irqs);
10300 ESTAT_ADD(nic_tx_threshold_hit);
10301
Matt Carlson4452d092011-05-19 12:12:51 +000010302 ESTAT_ADD(mbuf_lwm_thresh_hit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010303}
10304
Matt Carlson65ec6982012-02-28 23:33:37 +000010305static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010306{
Eric Dumazet511d2222010-07-07 20:44:24 +000010307 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010308 struct tg3_hw_stats *hw_stats = tp->hw_stats;
10309
Linus Torvalds1da177e2005-04-16 15:20:36 -070010310 stats->rx_packets = old_stats->rx_packets +
10311 get_stat64(&hw_stats->rx_ucast_packets) +
10312 get_stat64(&hw_stats->rx_mcast_packets) +
10313 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010314
Linus Torvalds1da177e2005-04-16 15:20:36 -070010315 stats->tx_packets = old_stats->tx_packets +
10316 get_stat64(&hw_stats->tx_ucast_packets) +
10317 get_stat64(&hw_stats->tx_mcast_packets) +
10318 get_stat64(&hw_stats->tx_bcast_packets);
10319
10320 stats->rx_bytes = old_stats->rx_bytes +
10321 get_stat64(&hw_stats->rx_octets);
10322 stats->tx_bytes = old_stats->tx_bytes +
10323 get_stat64(&hw_stats->tx_octets);
10324
10325 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -070010326 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010327 stats->tx_errors = old_stats->tx_errors +
10328 get_stat64(&hw_stats->tx_errors) +
10329 get_stat64(&hw_stats->tx_mac_errors) +
10330 get_stat64(&hw_stats->tx_carrier_sense_errors) +
10331 get_stat64(&hw_stats->tx_discards);
10332
10333 stats->multicast = old_stats->multicast +
10334 get_stat64(&hw_stats->rx_mcast_packets);
10335 stats->collisions = old_stats->collisions +
10336 get_stat64(&hw_stats->tx_collisions);
10337
10338 stats->rx_length_errors = old_stats->rx_length_errors +
10339 get_stat64(&hw_stats->rx_frame_too_long_errors) +
10340 get_stat64(&hw_stats->rx_undersize_packets);
10341
10342 stats->rx_over_errors = old_stats->rx_over_errors +
10343 get_stat64(&hw_stats->rxbds_empty);
10344 stats->rx_frame_errors = old_stats->rx_frame_errors +
10345 get_stat64(&hw_stats->rx_align_errors);
10346 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
10347 get_stat64(&hw_stats->tx_discards);
10348 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
10349 get_stat64(&hw_stats->tx_carrier_sense_errors);
10350
10351 stats->rx_crc_errors = old_stats->rx_crc_errors +
Matt Carlson65ec6982012-02-28 23:33:37 +000010352 tg3_calc_crc_errors(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010353
John W. Linville4f63b872005-09-12 14:43:18 -070010354 stats->rx_missed_errors = old_stats->rx_missed_errors +
10355 get_stat64(&hw_stats->rx_discards);
10356
Eric Dumazetb0057c52010-10-10 19:55:52 +000010357 stats->rx_dropped = tp->rx_dropped;
Eric Dumazet48855432011-10-24 07:53:03 +000010358 stats->tx_dropped = tp->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010359}
10360
Linus Torvalds1da177e2005-04-16 15:20:36 -070010361static int tg3_get_regs_len(struct net_device *dev)
10362{
Matt Carlson97bd8e42011-04-13 11:05:04 +000010363 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010364}
10365
10366static void tg3_get_regs(struct net_device *dev,
10367 struct ethtool_regs *regs, void *_p)
10368{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010369 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010370
10371 regs->version = 0;
10372
Matt Carlson97bd8e42011-04-13 11:05:04 +000010373 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010374
Matt Carlson80096062010-08-02 11:26:06 +000010375 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010376 return;
10377
David S. Millerf47c11e2005-06-24 20:18:35 -070010378 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010379
Matt Carlson97bd8e42011-04-13 11:05:04 +000010380 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010381
David S. Millerf47c11e2005-06-24 20:18:35 -070010382 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010383}
10384
10385static int tg3_get_eeprom_len(struct net_device *dev)
10386{
10387 struct tg3 *tp = netdev_priv(dev);
10388
10389 return tp->nvram_size;
10390}
10391
Linus Torvalds1da177e2005-04-16 15:20:36 -070010392static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10393{
10394 struct tg3 *tp = netdev_priv(dev);
10395 int ret;
10396 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080010397 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010398 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010399
Joe Perches63c3a662011-04-26 08:12:10 +000010400 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010401 return -EINVAL;
10402
Matt Carlson80096062010-08-02 11:26:06 +000010403 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010404 return -EAGAIN;
10405
Linus Torvalds1da177e2005-04-16 15:20:36 -070010406 offset = eeprom->offset;
10407 len = eeprom->len;
10408 eeprom->len = 0;
10409
10410 eeprom->magic = TG3_EEPROM_MAGIC;
10411
10412 if (offset & 3) {
10413 /* adjustments to start on required 4 byte boundary */
10414 b_offset = offset & 3;
10415 b_count = 4 - b_offset;
10416 if (b_count > len) {
10417 /* i.e. offset=1 len=2 */
10418 b_count = len;
10419 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000010420 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010421 if (ret)
10422 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000010423 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010424 len -= b_count;
10425 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010426 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010427 }
10428
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010429 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010430 pd = &data[eeprom->len];
10431 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010432 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010433 if (ret) {
10434 eeprom->len += i;
10435 return ret;
10436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010437 memcpy(pd + i, &val, 4);
10438 }
10439 eeprom->len += i;
10440
10441 if (len & 3) {
10442 /* read last bytes not ending on 4 byte boundary */
10443 pd = &data[eeprom->len];
10444 b_count = len & 3;
10445 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010446 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010447 if (ret)
10448 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010449 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010450 eeprom->len += b_count;
10451 }
10452 return 0;
10453}
10454
Linus Torvalds1da177e2005-04-16 15:20:36 -070010455static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10456{
10457 struct tg3 *tp = netdev_priv(dev);
10458 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010459 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010460 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010461 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010462
Matt Carlson80096062010-08-02 11:26:06 +000010463 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010464 return -EAGAIN;
10465
Joe Perches63c3a662011-04-26 08:12:10 +000010466 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010467 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010468 return -EINVAL;
10469
10470 offset = eeprom->offset;
10471 len = eeprom->len;
10472
10473 if ((b_offset = (offset & 3))) {
10474 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010475 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010476 if (ret)
10477 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010478 len += b_offset;
10479 offset &= ~3;
Michael Chan1c8594b42005-04-21 17:12:46 -070010480 if (len < 4)
10481 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010482 }
10483
10484 odd_len = 0;
Michael Chan1c8594b42005-04-21 17:12:46 -070010485 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010486 /* adjustments to end on required 4 byte boundary */
10487 odd_len = 1;
10488 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010489 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010490 if (ret)
10491 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010492 }
10493
10494 buf = data;
10495 if (b_offset || odd_len) {
10496 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010497 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010498 return -ENOMEM;
10499 if (b_offset)
10500 memcpy(buf, &start, 4);
10501 if (odd_len)
10502 memcpy(buf+len-4, &end, 4);
10503 memcpy(buf + b_offset, data, eeprom->len);
10504 }
10505
10506 ret = tg3_nvram_write_block(tp, offset, len, buf);
10507
10508 if (buf != data)
10509 kfree(buf);
10510
10511 return ret;
10512}
10513
10514static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10515{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010516 struct tg3 *tp = netdev_priv(dev);
10517
Joe Perches63c3a662011-04-26 08:12:10 +000010518 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010519 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010520 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010521 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010522 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10523 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010524 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010525
Linus Torvalds1da177e2005-04-16 15:20:36 -070010526 cmd->supported = (SUPPORTED_Autoneg);
10527
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010528 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010529 cmd->supported |= (SUPPORTED_1000baseT_Half |
10530 SUPPORTED_1000baseT_Full);
10531
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010532 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010533 cmd->supported |= (SUPPORTED_100baseT_Half |
10534 SUPPORTED_100baseT_Full |
10535 SUPPORTED_10baseT_Half |
10536 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010537 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010538 cmd->port = PORT_TP;
10539 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010540 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010541 cmd->port = PORT_FIBRE;
10542 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010543
Linus Torvalds1da177e2005-04-16 15:20:36 -070010544 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010545 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10546 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10547 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10548 cmd->advertising |= ADVERTISED_Pause;
10549 } else {
10550 cmd->advertising |= ADVERTISED_Pause |
10551 ADVERTISED_Asym_Pause;
10552 }
10553 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10554 cmd->advertising |= ADVERTISED_Asym_Pause;
10555 }
10556 }
Matt Carlson859edb22011-12-08 14:40:16 +000010557 if (netif_running(dev) && netif_carrier_ok(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010558 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010559 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson859edb22011-12-08 14:40:16 +000010560 cmd->lp_advertising = tp->link_config.rmt_adv;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010561 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
10562 if (tp->phy_flags & TG3_PHYFLG_MDIX_STATE)
10563 cmd->eth_tp_mdix = ETH_TP_MDI_X;
10564 else
10565 cmd->eth_tp_mdix = ETH_TP_MDI;
10566 }
Matt Carlson64c22182010-10-14 10:37:44 +000010567 } else {
Matt Carlsone7405222012-02-13 15:20:16 +000010568 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
10569 cmd->duplex = DUPLEX_UNKNOWN;
Matt Carlsone348c5e2011-11-21 15:01:20 +000010570 cmd->eth_tp_mdix = ETH_TP_MDI_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010571 }
Matt Carlson882e9792009-09-01 13:21:36 +000010572 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010573 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574 cmd->autoneg = tp->link_config.autoneg;
10575 cmd->maxtxpkt = 0;
10576 cmd->maxrxpkt = 0;
10577 return 0;
10578}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010579
Linus Torvalds1da177e2005-04-16 15:20:36 -070010580static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10581{
10582 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010583 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010584
Joe Perches63c3a662011-04-26 08:12:10 +000010585 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010586 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010587 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010588 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010589 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10590 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010591 }
10592
Matt Carlson7e5856b2009-02-25 14:23:01 +000010593 if (cmd->autoneg != AUTONEG_ENABLE &&
10594 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010595 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010596
10597 if (cmd->autoneg == AUTONEG_DISABLE &&
10598 cmd->duplex != DUPLEX_FULL &&
10599 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010600 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010601
Matt Carlson7e5856b2009-02-25 14:23:01 +000010602 if (cmd->autoneg == AUTONEG_ENABLE) {
10603 u32 mask = ADVERTISED_Autoneg |
10604 ADVERTISED_Pause |
10605 ADVERTISED_Asym_Pause;
10606
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010607 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010608 mask |= ADVERTISED_1000baseT_Half |
10609 ADVERTISED_1000baseT_Full;
10610
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010611 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010612 mask |= ADVERTISED_100baseT_Half |
10613 ADVERTISED_100baseT_Full |
10614 ADVERTISED_10baseT_Half |
10615 ADVERTISED_10baseT_Full |
10616 ADVERTISED_TP;
10617 else
10618 mask |= ADVERTISED_FIBRE;
10619
10620 if (cmd->advertising & ~mask)
10621 return -EINVAL;
10622
10623 mask &= (ADVERTISED_1000baseT_Half |
10624 ADVERTISED_1000baseT_Full |
10625 ADVERTISED_100baseT_Half |
10626 ADVERTISED_100baseT_Full |
10627 ADVERTISED_10baseT_Half |
10628 ADVERTISED_10baseT_Full);
10629
10630 cmd->advertising &= mask;
10631 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010632 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010633 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010634 return -EINVAL;
10635
10636 if (cmd->duplex != DUPLEX_FULL)
10637 return -EINVAL;
10638 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010639 if (speed != SPEED_100 &&
10640 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010641 return -EINVAL;
10642 }
10643 }
10644
David S. Millerf47c11e2005-06-24 20:18:35 -070010645 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010646
10647 tp->link_config.autoneg = cmd->autoneg;
10648 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010649 tp->link_config.advertising = (cmd->advertising |
10650 ADVERTISED_Autoneg);
Matt Carlsone7405222012-02-13 15:20:16 +000010651 tp->link_config.speed = SPEED_UNKNOWN;
10652 tp->link_config.duplex = DUPLEX_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010653 } else {
10654 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010655 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010656 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010657 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010658
Linus Torvalds1da177e2005-04-16 15:20:36 -070010659 if (netif_running(dev))
10660 tg3_setup_phy(tp, 1);
10661
David S. Millerf47c11e2005-06-24 20:18:35 -070010662 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010663
Linus Torvalds1da177e2005-04-16 15:20:36 -070010664 return 0;
10665}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010666
Linus Torvalds1da177e2005-04-16 15:20:36 -070010667static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10668{
10669 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010670
Rick Jones68aad782011-11-07 13:29:27 +000010671 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
10672 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
10673 strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version));
10674 strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010675}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010676
Linus Torvalds1da177e2005-04-16 15:20:36 -070010677static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10678{
10679 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010680
Joe Perches63c3a662011-04-26 08:12:10 +000010681 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010682 wol->supported = WAKE_MAGIC;
10683 else
10684 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010685 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010686 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010687 wol->wolopts = WAKE_MAGIC;
10688 memset(&wol->sopass, 0, sizeof(wol->sopass));
10689}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010690
Linus Torvalds1da177e2005-04-16 15:20:36 -070010691static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10692{
10693 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010694 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010695
Linus Torvalds1da177e2005-04-16 15:20:36 -070010696 if (wol->wolopts & ~WAKE_MAGIC)
10697 return -EINVAL;
10698 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010699 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010700 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010701
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010702 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10703
David S. Millerf47c11e2005-06-24 20:18:35 -070010704 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010705 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010706 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010707 else
Joe Perches63c3a662011-04-26 08:12:10 +000010708 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010709 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010710
Linus Torvalds1da177e2005-04-16 15:20:36 -070010711 return 0;
10712}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010713
Linus Torvalds1da177e2005-04-16 15:20:36 -070010714static u32 tg3_get_msglevel(struct net_device *dev)
10715{
10716 struct tg3 *tp = netdev_priv(dev);
10717 return tp->msg_enable;
10718}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010719
Linus Torvalds1da177e2005-04-16 15:20:36 -070010720static void tg3_set_msglevel(struct net_device *dev, u32 value)
10721{
10722 struct tg3 *tp = netdev_priv(dev);
10723 tp->msg_enable = value;
10724}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010725
Linus Torvalds1da177e2005-04-16 15:20:36 -070010726static int tg3_nway_reset(struct net_device *dev)
10727{
10728 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010729 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010730
Linus Torvalds1da177e2005-04-16 15:20:36 -070010731 if (!netif_running(dev))
10732 return -EAGAIN;
10733
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010734 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010735 return -EINVAL;
10736
Joe Perches63c3a662011-04-26 08:12:10 +000010737 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010738 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010739 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010740 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010741 } else {
10742 u32 bmcr;
10743
10744 spin_lock_bh(&tp->lock);
10745 r = -EINVAL;
10746 tg3_readphy(tp, MII_BMCR, &bmcr);
10747 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10748 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010749 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010750 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10751 BMCR_ANENABLE);
10752 r = 0;
10753 }
10754 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010755 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010756
Linus Torvalds1da177e2005-04-16 15:20:36 -070010757 return r;
10758}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010759
Linus Torvalds1da177e2005-04-16 15:20:36 -070010760static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10761{
10762 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010763
Matt Carlson2c49a442010-09-30 10:34:35 +000010764 ering->rx_max_pending = tp->rx_std_ring_mask;
Joe Perches63c3a662011-04-26 08:12:10 +000010765 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010766 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010767 else
10768 ering->rx_jumbo_max_pending = 0;
10769
10770 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010771
10772 ering->rx_pending = tp->rx_pending;
Joe Perches63c3a662011-04-26 08:12:10 +000010773 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010774 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10775 else
10776 ering->rx_jumbo_pending = 0;
10777
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010778 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010779}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010780
Linus Torvalds1da177e2005-04-16 15:20:36 -070010781static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10782{
10783 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010784 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010785
Matt Carlson2c49a442010-09-30 10:34:35 +000010786 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10787 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010788 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10789 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010790 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010791 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010792 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010793
Michael Chanbbe832c2005-06-24 20:20:04 -070010794 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010795 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010796 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010797 irq_sync = 1;
10798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010799
Michael Chanbbe832c2005-06-24 20:20:04 -070010800 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010801
Linus Torvalds1da177e2005-04-16 15:20:36 -070010802 tp->rx_pending = ering->rx_pending;
10803
Joe Perches63c3a662011-04-26 08:12:10 +000010804 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010805 tp->rx_pending > 63)
10806 tp->rx_pending = 63;
10807 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010808
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010809 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010810 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010811
10812 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010813 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010814 err = tg3_restart_hw(tp, 1);
10815 if (!err)
10816 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010817 }
10818
David S. Millerf47c11e2005-06-24 20:18:35 -070010819 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010820
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010821 if (irq_sync && !err)
10822 tg3_phy_start(tp);
10823
Michael Chanb9ec6c12006-07-25 16:37:27 -070010824 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010825}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010826
Linus Torvalds1da177e2005-04-16 15:20:36 -070010827static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10828{
10829 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010830
Joe Perches63c3a662011-04-26 08:12:10 +000010831 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010832
Matt Carlson4a2db502011-12-08 14:40:17 +000010833 if (tp->link_config.flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010834 epause->rx_pause = 1;
10835 else
10836 epause->rx_pause = 0;
10837
Matt Carlson4a2db502011-12-08 14:40:17 +000010838 if (tp->link_config.flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010839 epause->tx_pause = 1;
10840 else
10841 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010842}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010843
Linus Torvalds1da177e2005-04-16 15:20:36 -070010844static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10845{
10846 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010847 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010848
Joe Perches63c3a662011-04-26 08:12:10 +000010849 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010850 u32 newadv;
10851 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010852
Matt Carlson27121682010-02-17 15:16:57 +000010853 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010854
Matt Carlson27121682010-02-17 15:16:57 +000010855 if (!(phydev->supported & SUPPORTED_Pause) ||
10856 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010857 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010858 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010859
Matt Carlson27121682010-02-17 15:16:57 +000010860 tp->link_config.flowctrl = 0;
10861 if (epause->rx_pause) {
10862 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010863
Matt Carlson27121682010-02-17 15:16:57 +000010864 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010865 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010866 newadv = ADVERTISED_Pause;
10867 } else
10868 newadv = ADVERTISED_Pause |
10869 ADVERTISED_Asym_Pause;
10870 } else if (epause->tx_pause) {
10871 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10872 newadv = ADVERTISED_Asym_Pause;
10873 } else
10874 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010875
Matt Carlson27121682010-02-17 15:16:57 +000010876 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010877 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010878 else
Joe Perches63c3a662011-04-26 08:12:10 +000010879 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010880
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010881 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010882 u32 oldadv = phydev->advertising &
10883 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10884 if (oldadv != newadv) {
10885 phydev->advertising &=
10886 ~(ADVERTISED_Pause |
10887 ADVERTISED_Asym_Pause);
10888 phydev->advertising |= newadv;
10889 if (phydev->autoneg) {
10890 /*
10891 * Always renegotiate the link to
10892 * inform our link partner of our
10893 * flow control settings, even if the
10894 * flow control is forced. Let
10895 * tg3_adjust_link() do the final
10896 * flow control setup.
10897 */
10898 return phy_start_aneg(phydev);
10899 }
10900 }
10901
10902 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010903 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010904 } else {
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010905 tp->link_config.advertising &=
Matt Carlson27121682010-02-17 15:16:57 +000010906 ~(ADVERTISED_Pause |
10907 ADVERTISED_Asym_Pause);
Matt Carlsonc6700ce2012-02-13 15:20:15 +000010908 tp->link_config.advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010909 }
10910 } else {
10911 int irq_sync = 0;
10912
10913 if (netif_running(dev)) {
10914 tg3_netif_stop(tp);
10915 irq_sync = 1;
10916 }
10917
10918 tg3_full_lock(tp, irq_sync);
10919
10920 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010921 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010922 else
Joe Perches63c3a662011-04-26 08:12:10 +000010923 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010924 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010925 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010926 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010927 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010928 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010929 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010930 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010931 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010932
10933 if (netif_running(dev)) {
10934 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10935 err = tg3_restart_hw(tp, 1);
10936 if (!err)
10937 tg3_netif_start(tp);
10938 }
10939
10940 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010942
Michael Chanb9ec6c12006-07-25 16:37:27 -070010943 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010944}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010945
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010946static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010947{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010948 switch (sset) {
10949 case ETH_SS_TEST:
10950 return TG3_NUM_TEST;
10951 case ETH_SS_STATS:
10952 return TG3_NUM_STATS;
10953 default:
10954 return -EOPNOTSUPP;
10955 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010956}
10957
Matt Carlson90415472011-12-16 13:33:23 +000010958static int tg3_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
10959 u32 *rules __always_unused)
10960{
10961 struct tg3 *tp = netdev_priv(dev);
10962
10963 if (!tg3_flag(tp, SUPPORT_MSIX))
10964 return -EOPNOTSUPP;
10965
10966 switch (info->cmd) {
10967 case ETHTOOL_GRXRINGS:
10968 if (netif_running(tp->dev))
10969 info->data = tp->irq_cnt;
10970 else {
10971 info->data = num_online_cpus();
10972 if (info->data > TG3_IRQ_MAX_VECS_RSS)
10973 info->data = TG3_IRQ_MAX_VECS_RSS;
10974 }
10975
10976 /* The first interrupt vector only
10977 * handles link interrupts.
10978 */
10979 info->data -= 1;
10980 return 0;
10981
10982 default:
10983 return -EOPNOTSUPP;
10984 }
10985}
10986
10987static u32 tg3_get_rxfh_indir_size(struct net_device *dev)
10988{
10989 u32 size = 0;
10990 struct tg3 *tp = netdev_priv(dev);
10991
10992 if (tg3_flag(tp, SUPPORT_MSIX))
10993 size = TG3_RSS_INDIR_TBL_SIZE;
10994
10995 return size;
10996}
10997
10998static int tg3_get_rxfh_indir(struct net_device *dev, u32 *indir)
10999{
11000 struct tg3 *tp = netdev_priv(dev);
11001 int i;
11002
11003 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11004 indir[i] = tp->rss_ind_tbl[i];
11005
11006 return 0;
11007}
11008
11009static int tg3_set_rxfh_indir(struct net_device *dev, const u32 *indir)
11010{
11011 struct tg3 *tp = netdev_priv(dev);
11012 size_t i;
11013
11014 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++)
11015 tp->rss_ind_tbl[i] = indir[i];
11016
11017 if (!netif_running(dev) || !tg3_flag(tp, ENABLE_RSS))
11018 return 0;
11019
11020 /* It is legal to write the indirection
11021 * table while the device is running.
11022 */
11023 tg3_full_lock(tp, 0);
11024 tg3_rss_write_indir_tbl(tp);
11025 tg3_full_unlock(tp);
11026
11027 return 0;
11028}
11029
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011030static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011031{
11032 switch (stringset) {
11033 case ETH_SS_STATS:
11034 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
11035 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070011036 case ETH_SS_TEST:
11037 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
11038 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011039 default:
11040 WARN_ON(1); /* we need a WARN() */
11041 break;
11042 }
11043}
11044
stephen hemminger81b87092011-04-04 08:43:50 +000011045static int tg3_set_phys_id(struct net_device *dev,
11046 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070011047{
11048 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070011049
11050 if (!netif_running(tp->dev))
11051 return -EAGAIN;
11052
stephen hemminger81b87092011-04-04 08:43:50 +000011053 switch (state) {
11054 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000011055 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070011056
stephen hemminger81b87092011-04-04 08:43:50 +000011057 case ETHTOOL_ID_ON:
11058 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11059 LED_CTRL_1000MBPS_ON |
11060 LED_CTRL_100MBPS_ON |
11061 LED_CTRL_10MBPS_ON |
11062 LED_CTRL_TRAFFIC_OVERRIDE |
11063 LED_CTRL_TRAFFIC_BLINK |
11064 LED_CTRL_TRAFFIC_LED);
11065 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011066
stephen hemminger81b87092011-04-04 08:43:50 +000011067 case ETHTOOL_ID_OFF:
11068 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
11069 LED_CTRL_TRAFFIC_OVERRIDE);
11070 break;
Michael Chan4009a932005-09-05 17:52:54 -070011071
stephen hemminger81b87092011-04-04 08:43:50 +000011072 case ETHTOOL_ID_INACTIVE:
11073 tw32(MAC_LED_CTRL, tp->led_ctrl);
11074 break;
Michael Chan4009a932005-09-05 17:52:54 -070011075 }
stephen hemminger81b87092011-04-04 08:43:50 +000011076
Michael Chan4009a932005-09-05 17:52:54 -070011077 return 0;
11078}
11079
Matt Carlsonde6f31e2010-04-12 06:58:30 +000011080static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011081 struct ethtool_stats *estats, u64 *tmp_stats)
11082{
11083 struct tg3 *tp = netdev_priv(dev);
Matt Carlson0e6c9da2011-12-08 14:40:13 +000011084
Matt Carlsonb546e462012-02-13 15:20:09 +000011085 if (tp->hw_stats)
11086 tg3_get_estats(tp, (struct tg3_ethtool_stats *)tmp_stats);
11087 else
11088 memset(tmp_stats, 0, sizeof(struct tg3_ethtool_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011089}
11090
Matt Carlson535a4902011-07-20 10:20:56 +000011091static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000011092{
11093 int i;
11094 __be32 *buf;
11095 u32 offset = 0, len = 0;
11096 u32 magic, val;
11097
Joe Perches63c3a662011-04-26 08:12:10 +000011098 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000011099 return NULL;
11100
11101 if (magic == TG3_EEPROM_MAGIC) {
11102 for (offset = TG3_NVM_DIR_START;
11103 offset < TG3_NVM_DIR_END;
11104 offset += TG3_NVM_DIRENT_SIZE) {
11105 if (tg3_nvram_read(tp, offset, &val))
11106 return NULL;
11107
11108 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
11109 TG3_NVM_DIRTYPE_EXTVPD)
11110 break;
11111 }
11112
11113 if (offset != TG3_NVM_DIR_END) {
11114 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
11115 if (tg3_nvram_read(tp, offset + 4, &offset))
11116 return NULL;
11117
11118 offset = tg3_nvram_logical_addr(tp, offset);
11119 }
11120 }
11121
11122 if (!offset || !len) {
11123 offset = TG3_NVM_VPD_OFF;
11124 len = TG3_NVM_VPD_LEN;
11125 }
11126
11127 buf = kmalloc(len, GFP_KERNEL);
11128 if (buf == NULL)
11129 return NULL;
11130
11131 if (magic == TG3_EEPROM_MAGIC) {
11132 for (i = 0; i < len; i += 4) {
11133 /* The data is in little-endian format in NVRAM.
11134 * Use the big-endian read routines to preserve
11135 * the byte order as it exists in NVRAM.
11136 */
11137 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
11138 goto error;
11139 }
11140 } else {
11141 u8 *ptr;
11142 ssize_t cnt;
11143 unsigned int pos = 0;
11144
11145 ptr = (u8 *)&buf[0];
11146 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
11147 cnt = pci_read_vpd(tp->pdev, pos,
11148 len - pos, ptr);
11149 if (cnt == -ETIMEDOUT || cnt == -EINTR)
11150 cnt = 0;
11151 else if (cnt < 0)
11152 goto error;
11153 }
11154 if (pos != len)
11155 goto error;
11156 }
11157
Matt Carlson535a4902011-07-20 10:20:56 +000011158 *vpdlen = len;
11159
Matt Carlsonc3e94502011-04-13 11:05:08 +000011160 return buf;
11161
11162error:
11163 kfree(buf);
11164 return NULL;
11165}
11166
Michael Chan566f86a2005-05-29 14:56:58 -070011167#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080011168#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
11169#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
11170#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000011171#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
11172#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000011173#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070011174#define NVRAM_SELFBOOT_HW_SIZE 0x20
11175#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070011176
11177static int tg3_test_nvram(struct tg3 *tp)
11178{
Matt Carlson535a4902011-07-20 10:20:56 +000011179 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000011180 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010011181 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070011182
Joe Perches63c3a662011-04-26 08:12:10 +000011183 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000011184 return 0;
11185
Matt Carlsone4f34112009-02-25 14:25:00 +000011186 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011187 return -EIO;
11188
Michael Chan1b277772006-03-20 22:27:48 -080011189 if (magic == TG3_EEPROM_MAGIC)
11190 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070011191 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080011192 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
11193 TG3_EEPROM_SB_FORMAT_1) {
11194 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
11195 case TG3_EEPROM_SB_REVISION_0:
11196 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
11197 break;
11198 case TG3_EEPROM_SB_REVISION_2:
11199 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
11200 break;
11201 case TG3_EEPROM_SB_REVISION_3:
11202 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
11203 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000011204 case TG3_EEPROM_SB_REVISION_4:
11205 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
11206 break;
11207 case TG3_EEPROM_SB_REVISION_5:
11208 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
11209 break;
11210 case TG3_EEPROM_SB_REVISION_6:
11211 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
11212 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080011213 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000011214 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080011215 }
11216 } else
Michael Chan1b277772006-03-20 22:27:48 -080011217 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070011218 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
11219 size = NVRAM_SELFBOOT_HW_SIZE;
11220 else
Michael Chan1b277772006-03-20 22:27:48 -080011221 return -EIO;
11222
11223 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070011224 if (buf == NULL)
11225 return -ENOMEM;
11226
Michael Chan1b277772006-03-20 22:27:48 -080011227 err = -EIO;
11228 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000011229 err = tg3_nvram_read_be32(tp, i, &buf[j]);
11230 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070011231 break;
Michael Chan566f86a2005-05-29 14:56:58 -070011232 }
Michael Chan1b277772006-03-20 22:27:48 -080011233 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070011234 goto out;
11235
Michael Chan1b277772006-03-20 22:27:48 -080011236 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000011237 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080011238 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011239 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080011240 u8 *buf8 = (u8 *) buf, csum8 = 0;
11241
Al Virob9fc7dc2007-12-17 22:59:57 -080011242 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080011243 TG3_EEPROM_SB_REVISION_2) {
11244 /* For rev 2, the csum doesn't include the MBA. */
11245 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
11246 csum8 += buf8[i];
11247 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
11248 csum8 += buf8[i];
11249 } else {
11250 for (i = 0; i < size; i++)
11251 csum8 += buf8[i];
11252 }
Michael Chan1b277772006-03-20 22:27:48 -080011253
Adrian Bunkad96b482006-04-05 22:21:04 -070011254 if (csum8 == 0) {
11255 err = 0;
11256 goto out;
11257 }
11258
11259 err = -EIO;
11260 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080011261 }
Michael Chan566f86a2005-05-29 14:56:58 -070011262
Al Virob9fc7dc2007-12-17 22:59:57 -080011263 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070011264 TG3_EEPROM_MAGIC_HW) {
11265 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000011266 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070011267 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070011268
11269 /* Separate the parity bits and the data bytes. */
11270 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
11271 if ((i == 0) || (i == 8)) {
11272 int l;
11273 u8 msk;
11274
11275 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
11276 parity[k++] = buf8[i] & msk;
11277 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000011278 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070011279 int l;
11280 u8 msk;
11281
11282 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
11283 parity[k++] = buf8[i] & msk;
11284 i++;
11285
11286 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
11287 parity[k++] = buf8[i] & msk;
11288 i++;
11289 }
11290 data[j++] = buf8[i];
11291 }
11292
11293 err = -EIO;
11294 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
11295 u8 hw8 = hweight8(data[i]);
11296
11297 if ((hw8 & 0x1) && parity[i])
11298 goto out;
11299 else if (!(hw8 & 0x1) && !parity[i])
11300 goto out;
11301 }
11302 err = 0;
11303 goto out;
11304 }
11305
Matt Carlson01c3a392011-03-09 16:58:20 +000011306 err = -EIO;
11307
Michael Chan566f86a2005-05-29 14:56:58 -070011308 /* Bootstrap checksum at offset 0x10 */
11309 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000011310 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070011311 goto out;
11312
11313 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
11314 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000011315 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000011316 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070011317
Matt Carlsonc3e94502011-04-13 11:05:08 +000011318 kfree(buf);
11319
Matt Carlson535a4902011-07-20 10:20:56 +000011320 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000011321 if (!buf)
11322 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000011323
Matt Carlson535a4902011-07-20 10:20:56 +000011324 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000011325 if (i > 0) {
11326 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
11327 if (j < 0)
11328 goto out;
11329
Matt Carlson535a4902011-07-20 10:20:56 +000011330 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000011331 goto out;
11332
11333 i += PCI_VPD_LRDT_TAG_SIZE;
11334 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
11335 PCI_VPD_RO_KEYWORD_CHKSUM);
11336 if (j > 0) {
11337 u8 csum8 = 0;
11338
11339 j += PCI_VPD_INFO_FLD_HDR_SIZE;
11340
11341 for (i = 0; i <= j; i++)
11342 csum8 += ((u8 *)buf)[i];
11343
11344 if (csum8)
11345 goto out;
11346 }
11347 }
11348
Michael Chan566f86a2005-05-29 14:56:58 -070011349 err = 0;
11350
11351out:
11352 kfree(buf);
11353 return err;
11354}
11355
Michael Chanca430072005-05-29 14:57:23 -070011356#define TG3_SERDES_TIMEOUT_SEC 2
11357#define TG3_COPPER_TIMEOUT_SEC 6
11358
11359static int tg3_test_link(struct tg3 *tp)
11360{
11361 int i, max;
11362
11363 if (!netif_running(tp->dev))
11364 return -ENODEV;
11365
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011366 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070011367 max = TG3_SERDES_TIMEOUT_SEC;
11368 else
11369 max = TG3_COPPER_TIMEOUT_SEC;
11370
11371 for (i = 0; i < max; i++) {
11372 if (netif_carrier_ok(tp->dev))
11373 return 0;
11374
11375 if (msleep_interruptible(1000))
11376 break;
11377 }
11378
11379 return -EIO;
11380}
11381
Michael Chana71116d2005-05-29 14:58:11 -070011382/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080011383static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070011384{
Michael Chanb16250e2006-09-27 16:10:14 -070011385 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070011386 u32 offset, read_mask, write_mask, val, save_val, read_val;
11387 static struct {
11388 u16 offset;
11389 u16 flags;
11390#define TG3_FL_5705 0x1
11391#define TG3_FL_NOT_5705 0x2
11392#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070011393#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070011394 u32 read_mask;
11395 u32 write_mask;
11396 } reg_tbl[] = {
11397 /* MAC Control Registers */
11398 { MAC_MODE, TG3_FL_NOT_5705,
11399 0x00000000, 0x00ef6f8c },
11400 { MAC_MODE, TG3_FL_5705,
11401 0x00000000, 0x01ef6b8c },
11402 { MAC_STATUS, TG3_FL_NOT_5705,
11403 0x03800107, 0x00000000 },
11404 { MAC_STATUS, TG3_FL_5705,
11405 0x03800100, 0x00000000 },
11406 { MAC_ADDR_0_HIGH, 0x0000,
11407 0x00000000, 0x0000ffff },
11408 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000011409 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070011410 { MAC_RX_MTU_SIZE, 0x0000,
11411 0x00000000, 0x0000ffff },
11412 { MAC_TX_MODE, 0x0000,
11413 0x00000000, 0x00000070 },
11414 { MAC_TX_LENGTHS, 0x0000,
11415 0x00000000, 0x00003fff },
11416 { MAC_RX_MODE, TG3_FL_NOT_5705,
11417 0x00000000, 0x000007fc },
11418 { MAC_RX_MODE, TG3_FL_5705,
11419 0x00000000, 0x000007dc },
11420 { MAC_HASH_REG_0, 0x0000,
11421 0x00000000, 0xffffffff },
11422 { MAC_HASH_REG_1, 0x0000,
11423 0x00000000, 0xffffffff },
11424 { MAC_HASH_REG_2, 0x0000,
11425 0x00000000, 0xffffffff },
11426 { MAC_HASH_REG_3, 0x0000,
11427 0x00000000, 0xffffffff },
11428
11429 /* Receive Data and Receive BD Initiator Control Registers. */
11430 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
11431 0x00000000, 0xffffffff },
11432 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
11433 0x00000000, 0xffffffff },
11434 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
11435 0x00000000, 0x00000003 },
11436 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
11437 0x00000000, 0xffffffff },
11438 { RCVDBDI_STD_BD+0, 0x0000,
11439 0x00000000, 0xffffffff },
11440 { RCVDBDI_STD_BD+4, 0x0000,
11441 0x00000000, 0xffffffff },
11442 { RCVDBDI_STD_BD+8, 0x0000,
11443 0x00000000, 0xffff0002 },
11444 { RCVDBDI_STD_BD+0xc, 0x0000,
11445 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011446
Michael Chana71116d2005-05-29 14:58:11 -070011447 /* Receive BD Initiator Control Registers. */
11448 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
11449 0x00000000, 0xffffffff },
11450 { RCVBDI_STD_THRESH, TG3_FL_5705,
11451 0x00000000, 0x000003ff },
11452 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
11453 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011454
Michael Chana71116d2005-05-29 14:58:11 -070011455 /* Host Coalescing Control Registers. */
11456 { HOSTCC_MODE, TG3_FL_NOT_5705,
11457 0x00000000, 0x00000004 },
11458 { HOSTCC_MODE, TG3_FL_5705,
11459 0x00000000, 0x000000f6 },
11460 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
11461 0x00000000, 0xffffffff },
11462 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
11463 0x00000000, 0x000003ff },
11464 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
11465 0x00000000, 0xffffffff },
11466 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
11467 0x00000000, 0x000003ff },
11468 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
11469 0x00000000, 0xffffffff },
11470 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11471 0x00000000, 0x000000ff },
11472 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
11473 0x00000000, 0xffffffff },
11474 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11475 0x00000000, 0x000000ff },
11476 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
11477 0x00000000, 0xffffffff },
11478 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
11479 0x00000000, 0xffffffff },
11480 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11481 0x00000000, 0xffffffff },
11482 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11483 0x00000000, 0x000000ff },
11484 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11485 0x00000000, 0xffffffff },
11486 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11487 0x00000000, 0x000000ff },
11488 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
11489 0x00000000, 0xffffffff },
11490 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
11491 0x00000000, 0xffffffff },
11492 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
11493 0x00000000, 0xffffffff },
11494 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
11495 0x00000000, 0xffffffff },
11496 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
11497 0x00000000, 0xffffffff },
11498 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
11499 0xffffffff, 0x00000000 },
11500 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
11501 0xffffffff, 0x00000000 },
11502
11503 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070011504 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011505 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070011506 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011507 0x00000000, 0x007fffff },
11508 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
11509 0x00000000, 0x0000003f },
11510 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
11511 0x00000000, 0x000001ff },
11512 { BUFMGR_MB_HIGH_WATER, 0x0000,
11513 0x00000000, 0x000001ff },
11514 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
11515 0xffffffff, 0x00000000 },
11516 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
11517 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011518
Michael Chana71116d2005-05-29 14:58:11 -070011519 /* Mailbox Registers */
11520 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
11521 0x00000000, 0x000001ff },
11522 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
11523 0x00000000, 0x000001ff },
11524 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
11525 0x00000000, 0x000007ff },
11526 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
11527 0x00000000, 0x000001ff },
11528
11529 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
11530 };
11531
Michael Chanb16250e2006-09-27 16:10:14 -070011532 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011533 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070011534 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000011535 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070011536 is_5750 = 1;
11537 }
Michael Chana71116d2005-05-29 14:58:11 -070011538
11539 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
11540 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
11541 continue;
11542
11543 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11544 continue;
11545
Joe Perches63c3a662011-04-26 08:12:10 +000011546 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011547 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11548 continue;
11549
Michael Chanb16250e2006-09-27 16:10:14 -070011550 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11551 continue;
11552
Michael Chana71116d2005-05-29 14:58:11 -070011553 offset = (u32) reg_tbl[i].offset;
11554 read_mask = reg_tbl[i].read_mask;
11555 write_mask = reg_tbl[i].write_mask;
11556
11557 /* Save the original register content */
11558 save_val = tr32(offset);
11559
11560 /* Determine the read-only value. */
11561 read_val = save_val & read_mask;
11562
11563 /* Write zero to the register, then make sure the read-only bits
11564 * are not changed and the read/write bits are all zeros.
11565 */
11566 tw32(offset, 0);
11567
11568 val = tr32(offset);
11569
11570 /* Test the read-only and read/write bits. */
11571 if (((val & read_mask) != read_val) || (val & write_mask))
11572 goto out;
11573
11574 /* Write ones to all the bits defined by RdMask and WrMask, then
11575 * make sure the read-only bits are not changed and the
11576 * read/write bits are all ones.
11577 */
11578 tw32(offset, read_mask | write_mask);
11579
11580 val = tr32(offset);
11581
11582 /* Test the read-only bits. */
11583 if ((val & read_mask) != read_val)
11584 goto out;
11585
11586 /* Test the read/write bits. */
11587 if ((val & write_mask) != write_mask)
11588 goto out;
11589
11590 tw32(offset, save_val);
11591 }
11592
11593 return 0;
11594
11595out:
Michael Chan9f88f292006-12-07 00:22:54 -080011596 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011597 netdev_err(tp->dev,
11598 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011599 tw32(offset, save_val);
11600 return -EIO;
11601}
11602
Michael Chan7942e1d2005-05-29 14:58:36 -070011603static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11604{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011605 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011606 int i;
11607 u32 j;
11608
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011609 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011610 for (j = 0; j < len; j += 4) {
11611 u32 val;
11612
11613 tg3_write_mem(tp, offset + j, test_pattern[i]);
11614 tg3_read_mem(tp, offset + j, &val);
11615 if (val != test_pattern[i])
11616 return -EIO;
11617 }
11618 }
11619 return 0;
11620}
11621
11622static int tg3_test_memory(struct tg3 *tp)
11623{
11624 static struct mem_entry {
11625 u32 offset;
11626 u32 len;
11627 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011628 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011629 { 0x00002000, 0x1c000},
11630 { 0xffffffff, 0x00000}
11631 }, mem_tbl_5705[] = {
11632 { 0x00000100, 0x0000c},
11633 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011634 { 0x00004000, 0x00800},
11635 { 0x00006000, 0x01000},
11636 { 0x00008000, 0x02000},
11637 { 0x00010000, 0x0e000},
11638 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011639 }, mem_tbl_5755[] = {
11640 { 0x00000200, 0x00008},
11641 { 0x00004000, 0x00800},
11642 { 0x00006000, 0x00800},
11643 { 0x00008000, 0x02000},
11644 { 0x00010000, 0x0c000},
11645 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011646 }, mem_tbl_5906[] = {
11647 { 0x00000200, 0x00008},
11648 { 0x00004000, 0x00400},
11649 { 0x00006000, 0x00400},
11650 { 0x00008000, 0x01000},
11651 { 0x00010000, 0x01000},
11652 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011653 }, mem_tbl_5717[] = {
11654 { 0x00000200, 0x00008},
11655 { 0x00010000, 0x0a000},
11656 { 0x00020000, 0x13c00},
11657 { 0xffffffff, 0x00000}
11658 }, mem_tbl_57765[] = {
11659 { 0x00000200, 0x00008},
11660 { 0x00004000, 0x00800},
11661 { 0x00006000, 0x09800},
11662 { 0x00010000, 0x0a000},
11663 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070011664 };
11665 struct mem_entry *mem_tbl;
11666 int err = 0;
11667 int i;
11668
Joe Perches63c3a662011-04-26 08:12:10 +000011669 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011670 mem_tbl = mem_tbl_5717;
Matt Carlson55086ad2011-12-14 11:09:59 +000011671 else if (tg3_flag(tp, 57765_CLASS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011672 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000011673 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011674 mem_tbl = mem_tbl_5755;
11675 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11676 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000011677 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011678 mem_tbl = mem_tbl_5705;
11679 else
Michael Chan7942e1d2005-05-29 14:58:36 -070011680 mem_tbl = mem_tbl_570x;
11681
11682 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000011683 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
11684 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011685 break;
11686 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011687
Michael Chan7942e1d2005-05-29 14:58:36 -070011688 return err;
11689}
11690
Matt Carlsonbb158d62011-04-25 12:42:47 +000011691#define TG3_TSO_MSS 500
11692
11693#define TG3_TSO_IP_HDR_LEN 20
11694#define TG3_TSO_TCP_HDR_LEN 20
11695#define TG3_TSO_TCP_OPT_LEN 12
11696
11697static const u8 tg3_tso_header[] = {
116980x08, 0x00,
116990x45, 0x00, 0x00, 0x00,
117000x00, 0x00, 0x40, 0x00,
117010x40, 0x06, 0x00, 0x00,
117020x0a, 0x00, 0x00, 0x01,
117030x0a, 0x00, 0x00, 0x02,
117040x0d, 0x00, 0xe0, 0x00,
117050x00, 0x00, 0x01, 0x00,
117060x00, 0x00, 0x02, 0x00,
117070x80, 0x10, 0x10, 0x00,
117080x14, 0x09, 0x00, 0x00,
117090x01, 0x01, 0x08, 0x0a,
117100x11, 0x11, 0x11, 0x11,
117110x11, 0x11, 0x11, 0x11,
11712};
Michael Chan9f40dea2005-09-05 17:53:06 -070011713
Matt Carlson28a45952011-08-19 13:58:22 +000011714static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, bool tso_loopback)
Michael Chanc76949a2005-05-29 14:58:59 -070011715{
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011716 u32 rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011717 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000011718 u32 budget;
Eric Dumazet9205fd92011-11-18 06:47:01 +000011719 struct sk_buff *skb;
11720 u8 *tx_data, *rx_data;
Michael Chanc76949a2005-05-29 14:58:59 -070011721 dma_addr_t map;
11722 int num_pkts, tx_len, rx_len, i, err;
11723 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011724 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011725 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011726
Matt Carlsonc8873402010-02-12 14:47:11 +000011727 tnapi = &tp->napi[0];
11728 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011729 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011730 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011731 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011732 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011733 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011734 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011735 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011736
Michael Chanc76949a2005-05-29 14:58:59 -070011737 err = -EIO;
11738
Matt Carlson4852a862011-04-13 11:05:07 +000011739 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011740 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011741 if (!skb)
11742 return -ENOMEM;
11743
Michael Chanc76949a2005-05-29 14:58:59 -070011744 tx_data = skb_put(skb, tx_len);
11745 memcpy(tx_data, tp->dev->dev_addr, 6);
11746 memset(tx_data + 6, 0x0, 8);
11747
Matt Carlson4852a862011-04-13 11:05:07 +000011748 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011749
Matt Carlson28a45952011-08-19 13:58:22 +000011750 if (tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011751 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11752
11753 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11754 TG3_TSO_TCP_OPT_LEN;
11755
11756 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11757 sizeof(tg3_tso_header));
11758 mss = TG3_TSO_MSS;
11759
11760 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11761 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11762
11763 /* Set the total length field in the IP header */
11764 iph->tot_len = htons((u16)(mss + hdr_len));
11765
11766 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11767 TXD_FLAG_CPU_POST_DMA);
11768
Joe Perches63c3a662011-04-26 08:12:10 +000011769 if (tg3_flag(tp, HW_TSO_1) ||
11770 tg3_flag(tp, HW_TSO_2) ||
11771 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011772 struct tcphdr *th;
11773 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11774 th = (struct tcphdr *)&tx_data[val];
11775 th->check = 0;
11776 } else
11777 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11778
Joe Perches63c3a662011-04-26 08:12:10 +000011779 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011780 mss |= (hdr_len & 0xc) << 12;
11781 if (hdr_len & 0x10)
11782 base_flags |= 0x00000010;
11783 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011784 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011785 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011786 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011787 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11788 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11789 } else {
11790 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11791 }
11792
11793 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11794 } else {
11795 num_pkts = 1;
11796 data_off = ETH_HLEN;
Michael Chanc441b452012-03-04 14:48:13 +000011797
11798 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
11799 tx_len > VLAN_ETH_FRAME_LEN)
11800 base_flags |= TXD_FLAG_JMB_PKT;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011801 }
11802
11803 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011804 tx_data[i] = (u8) (i & 0xff);
11805
Alexander Duyckf4188d82009-12-02 16:48:38 +000011806 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11807 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011808 dev_kfree_skb(skb);
11809 return -EIO;
11810 }
Michael Chanc76949a2005-05-29 14:58:59 -070011811
Matt Carlson0d681b22011-07-27 14:20:49 +000011812 val = tnapi->tx_prod;
11813 tnapi->tx_buffers[val].skb = skb;
11814 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
11815
Michael Chanc76949a2005-05-29 14:58:59 -070011816 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011817 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011818
11819 udelay(10);
11820
Matt Carlson898a56f2009-08-28 14:02:40 +000011821 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011822
Matt Carlson84b67b22011-07-27 14:20:52 +000011823 budget = tg3_tx_avail(tnapi);
11824 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000011825 base_flags | TXD_FLAG_END, mss, 0)) {
11826 tnapi->tx_buffers[val].skb = NULL;
11827 dev_kfree_skb(skb);
11828 return -EIO;
11829 }
Michael Chanc76949a2005-05-29 14:58:59 -070011830
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011831 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011832
Michael Chan6541b802012-03-04 14:48:14 +000011833 /* Sync BD data before updating mailbox */
11834 wmb();
11835
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011836 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11837 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011838
11839 udelay(10);
11840
Matt Carlson303fc922009-11-02 14:27:34 +000011841 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11842 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011843 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011844 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011845
11846 udelay(10);
11847
Matt Carlson898a56f2009-08-28 14:02:40 +000011848 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11849 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011850 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011851 (rx_idx == (rx_start_idx + num_pkts)))
11852 break;
11853 }
11854
Matt Carlsonba1142e2011-11-04 09:15:00 +000011855 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, -1);
Michael Chanc76949a2005-05-29 14:58:59 -070011856 dev_kfree_skb(skb);
11857
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011858 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011859 goto out;
11860
11861 if (rx_idx != rx_start_idx + num_pkts)
11862 goto out;
11863
Matt Carlsonbb158d62011-04-25 12:42:47 +000011864 val = data_off;
11865 while (rx_idx != rx_start_idx) {
11866 desc = &rnapi->rx_rcb[rx_start_idx++];
11867 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11868 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011869
Matt Carlsonbb158d62011-04-25 12:42:47 +000011870 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11871 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011872 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011873
Matt Carlsonbb158d62011-04-25 12:42:47 +000011874 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11875 - ETH_FCS_LEN;
11876
Matt Carlson28a45952011-08-19 13:58:22 +000011877 if (!tso_loopback) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011878 if (rx_len != tx_len)
11879 goto out;
11880
11881 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11882 if (opaque_key != RXD_OPAQUE_RING_STD)
11883 goto out;
11884 } else {
11885 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11886 goto out;
11887 }
11888 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11889 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000011890 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011891 goto out;
11892 }
11893
11894 if (opaque_key == RXD_OPAQUE_RING_STD) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011895 rx_data = tpr->rx_std_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011896 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11897 mapping);
11898 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011899 rx_data = tpr->rx_jmb_buffers[desc_idx].data;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011900 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11901 mapping);
11902 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011903 goto out;
11904
Matt Carlsonbb158d62011-04-25 12:42:47 +000011905 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11906 PCI_DMA_FROMDEVICE);
11907
Eric Dumazet9205fd92011-11-18 06:47:01 +000011908 rx_data += TG3_RX_OFFSET(tp);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011909 for (i = data_off; i < rx_len; i++, val++) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000011910 if (*(rx_data + i) != (u8) (val & 0xff))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011911 goto out;
11912 }
Matt Carlson4852a862011-04-13 11:05:07 +000011913 }
11914
Michael Chanc76949a2005-05-29 14:58:59 -070011915 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011916
Eric Dumazet9205fd92011-11-18 06:47:01 +000011917 /* tg3_free_rings will unmap and free the rx_data */
Michael Chanc76949a2005-05-29 14:58:59 -070011918out:
11919 return err;
11920}
11921
Matt Carlson00c266b2011-04-25 12:42:46 +000011922#define TG3_STD_LOOPBACK_FAILED 1
11923#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011924#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson28a45952011-08-19 13:58:22 +000011925#define TG3_LOOPBACK_FAILED \
11926 (TG3_STD_LOOPBACK_FAILED | \
11927 TG3_JMB_LOOPBACK_FAILED | \
11928 TG3_TSO_LOOPBACK_FAILED)
Matt Carlson00c266b2011-04-25 12:42:46 +000011929
Matt Carlson941ec902011-08-19 13:58:23 +000011930static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
Michael Chan9f40dea2005-09-05 17:53:06 -070011931{
Matt Carlson28a45952011-08-19 13:58:22 +000011932 int err = -EIO;
Matt Carlson2215e242011-08-19 13:58:19 +000011933 u32 eee_cap;
Michael Chanc441b452012-03-04 14:48:13 +000011934 u32 jmb_pkt_sz = 9000;
11935
11936 if (tp->dma_limit)
11937 jmb_pkt_sz = tp->dma_limit - ETH_HLEN;
Michael Chan9f40dea2005-09-05 17:53:06 -070011938
Matt Carlsonab789042011-01-25 15:58:54 +000011939 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11940 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11941
Matt Carlson28a45952011-08-19 13:58:22 +000011942 if (!netif_running(tp->dev)) {
11943 data[0] = TG3_LOOPBACK_FAILED;
11944 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011945 if (do_extlpbk)
11946 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlson28a45952011-08-19 13:58:22 +000011947 goto done;
11948 }
11949
Michael Chanb9ec6c12006-07-25 16:37:27 -070011950 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011951 if (err) {
Matt Carlson28a45952011-08-19 13:58:22 +000011952 data[0] = TG3_LOOPBACK_FAILED;
11953 data[1] = TG3_LOOPBACK_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000011954 if (do_extlpbk)
11955 data[2] = TG3_LOOPBACK_FAILED;
Matt Carlsonab789042011-01-25 15:58:54 +000011956 goto done;
11957 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011958
Joe Perches63c3a662011-04-26 08:12:10 +000011959 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011960 int i;
11961
11962 /* Reroute all rx packets to the 1st queue */
11963 for (i = MAC_RSS_INDIR_TBL_0;
11964 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11965 tw32(i, 0x0);
11966 }
11967
Matt Carlson6e01b202011-08-19 13:58:20 +000011968 /* HW errata - mac loopback fails in some cases on 5780.
11969 * Normal traffic and PHY loopback are not affected by
11970 * errata. Also, the MAC loopback test is deprecated for
11971 * all newer ASIC revisions.
11972 */
11973 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
11974 !tg3_flag(tp, CPMU_PRESENT)) {
11975 tg3_mac_loopback(tp, true);
Matt Carlson9936bcf2007-10-10 18:03:07 -070011976
Matt Carlson28a45952011-08-19 13:58:22 +000011977 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
11978 data[0] |= TG3_STD_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011979
11980 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000011981 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000011982 data[0] |= TG3_JMB_LOOPBACK_FAILED;
Matt Carlson6e01b202011-08-19 13:58:20 +000011983
11984 tg3_mac_loopback(tp, false);
11985 }
Matt Carlson4852a862011-04-13 11:05:07 +000011986
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011987 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011988 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011989 int i;
11990
Matt Carlson941ec902011-08-19 13:58:23 +000011991 tg3_phy_lpbk_set(tp, 0, false);
Matt Carlson5e5a7f32011-08-19 13:58:21 +000011992
11993 /* Wait for link */
11994 for (i = 0; i < 100; i++) {
11995 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11996 break;
11997 mdelay(1);
11998 }
11999
Matt Carlson28a45952011-08-19 13:58:22 +000012000 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12001 data[1] |= TG3_STD_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012002 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlson28a45952011-08-19 13:58:22 +000012003 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
12004 data[1] |= TG3_TSO_LOOPBACK_FAILED;
Joe Perches63c3a662011-04-26 08:12:10 +000012005 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012006 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson28a45952011-08-19 13:58:22 +000012007 data[1] |= TG3_JMB_LOOPBACK_FAILED;
Michael Chan9f40dea2005-09-05 17:53:06 -070012008
Matt Carlson941ec902011-08-19 13:58:23 +000012009 if (do_extlpbk) {
12010 tg3_phy_lpbk_set(tp, 0, true);
12011
12012 /* All link indications report up, but the hardware
12013 * isn't really ready for about 20 msec. Double it
12014 * to be sure.
12015 */
12016 mdelay(40);
12017
12018 if (tg3_run_loopback(tp, ETH_FRAME_LEN, false))
12019 data[2] |= TG3_STD_LOOPBACK_FAILED;
12020 if (tg3_flag(tp, TSO_CAPABLE) &&
12021 tg3_run_loopback(tp, ETH_FRAME_LEN, true))
12022 data[2] |= TG3_TSO_LOOPBACK_FAILED;
12023 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Michael Chanc441b452012-03-04 14:48:13 +000012024 tg3_run_loopback(tp, jmb_pkt_sz + ETH_HLEN, false))
Matt Carlson941ec902011-08-19 13:58:23 +000012025 data[2] |= TG3_JMB_LOOPBACK_FAILED;
12026 }
12027
Matt Carlson5e5a7f32011-08-19 13:58:21 +000012028 /* Re-enable gphy autopowerdown. */
12029 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
12030 tg3_phy_toggle_apd(tp, true);
12031 }
Matt Carlson6833c042008-11-21 17:18:59 -080012032
Matt Carlson941ec902011-08-19 13:58:23 +000012033 err = (data[0] | data[1] | data[2]) ? -EIO : 0;
Matt Carlson28a45952011-08-19 13:58:22 +000012034
Matt Carlsonab789042011-01-25 15:58:54 +000012035done:
12036 tp->phy_flags |= eee_cap;
12037
Michael Chan9f40dea2005-09-05 17:53:06 -070012038 return err;
12039}
12040
Michael Chan4cafd3f2005-05-29 14:56:34 -070012041static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
12042 u64 *data)
12043{
Michael Chan566f86a2005-05-29 14:56:58 -070012044 struct tg3 *tp = netdev_priv(dev);
Matt Carlson941ec902011-08-19 13:58:23 +000012045 bool doextlpbk = etest->flags & ETH_TEST_FL_EXTERNAL_LB;
Michael Chan566f86a2005-05-29 14:56:58 -070012046
Matt Carlsonbed98292011-07-13 09:27:29 +000012047 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
12048 tg3_power_up(tp)) {
12049 etest->flags |= ETH_TEST_FL_FAILED;
12050 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
12051 return;
12052 }
Michael Chanbc1c7562006-03-20 17:48:03 -080012053
Michael Chan566f86a2005-05-29 14:56:58 -070012054 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
12055
12056 if (tg3_test_nvram(tp) != 0) {
12057 etest->flags |= ETH_TEST_FL_FAILED;
12058 data[0] = 1;
12059 }
Matt Carlson941ec902011-08-19 13:58:23 +000012060 if (!doextlpbk && tg3_test_link(tp)) {
Michael Chanca430072005-05-29 14:57:23 -070012061 etest->flags |= ETH_TEST_FL_FAILED;
12062 data[1] = 1;
12063 }
Michael Chana71116d2005-05-29 14:58:11 -070012064 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012065 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070012066
Michael Chanbbe832c2005-06-24 20:20:04 -070012067 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012068 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070012069 tg3_netif_stop(tp);
12070 irq_sync = 1;
12071 }
12072
12073 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070012074
12075 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080012076 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012077 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000012078 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070012079 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080012080 if (!err)
12081 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012082
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012083 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080012084 tg3_phy_reset(tp);
12085
Michael Chana71116d2005-05-29 14:58:11 -070012086 if (tg3_test_registers(tp) != 0) {
12087 etest->flags |= ETH_TEST_FL_FAILED;
12088 data[2] = 1;
12089 }
Matt Carlson28a45952011-08-19 13:58:22 +000012090
Michael Chan7942e1d2005-05-29 14:58:36 -070012091 if (tg3_test_memory(tp) != 0) {
12092 etest->flags |= ETH_TEST_FL_FAILED;
12093 data[3] = 1;
12094 }
Matt Carlson28a45952011-08-19 13:58:22 +000012095
Matt Carlson941ec902011-08-19 13:58:23 +000012096 if (doextlpbk)
12097 etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
12098
12099 if (tg3_test_loopback(tp, &data[4], doextlpbk))
Michael Chanc76949a2005-05-29 14:58:59 -070012100 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070012101
David S. Millerf47c11e2005-06-24 20:18:35 -070012102 tg3_full_unlock(tp);
12103
Michael Chand4bc3922005-05-29 14:59:20 -070012104 if (tg3_test_interrupt(tp) != 0) {
12105 etest->flags |= ETH_TEST_FL_FAILED;
Matt Carlson941ec902011-08-19 13:58:23 +000012106 data[7] = 1;
Michael Chand4bc3922005-05-29 14:59:20 -070012107 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012108
12109 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070012110
Michael Chana71116d2005-05-29 14:58:11 -070012111 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12112 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012113 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012114 err2 = tg3_restart_hw(tp, 1);
12115 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070012116 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012117 }
David S. Millerf47c11e2005-06-24 20:18:35 -070012118
12119 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012120
12121 if (irq_sync && !err2)
12122 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070012123 }
Matt Carlson80096062010-08-02 11:26:06 +000012124 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000012125 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080012126
Michael Chan4cafd3f2005-05-29 14:56:34 -070012127}
12128
Linus Torvalds1da177e2005-04-16 15:20:36 -070012129static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
12130{
12131 struct mii_ioctl_data *data = if_mii(ifr);
12132 struct tg3 *tp = netdev_priv(dev);
12133 int err;
12134
Joe Perches63c3a662011-04-26 08:12:10 +000012135 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012136 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012137 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012138 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000012139 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000012140 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012141 }
12142
Matt Carlson33f401a2010-04-05 10:19:27 +000012143 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012144 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000012145 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012146
12147 /* fallthru */
12148 case SIOCGMIIREG: {
12149 u32 mii_regval;
12150
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012151 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012152 break; /* We have no PHY */
12153
Matt Carlson34eea5a2011-04-20 07:57:38 +000012154 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012155 return -EAGAIN;
12156
David S. Millerf47c11e2005-06-24 20:18:35 -070012157 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012158 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070012159 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012160
12161 data->val_out = mii_regval;
12162
12163 return err;
12164 }
12165
12166 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012167 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012168 break; /* We have no PHY */
12169
Matt Carlson34eea5a2011-04-20 07:57:38 +000012170 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080012171 return -EAGAIN;
12172
David S. Millerf47c11e2005-06-24 20:18:35 -070012173 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012174 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070012175 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012176
12177 return err;
12178
12179 default:
12180 /* do nothing */
12181 break;
12182 }
12183 return -EOPNOTSUPP;
12184}
12185
David S. Miller15f98502005-05-18 22:49:26 -070012186static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12187{
12188 struct tg3 *tp = netdev_priv(dev);
12189
12190 memcpy(ec, &tp->coal, sizeof(*ec));
12191 return 0;
12192}
12193
Michael Chand244c892005-07-05 14:42:33 -070012194static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
12195{
12196 struct tg3 *tp = netdev_priv(dev);
12197 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
12198 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
12199
Joe Perches63c3a662011-04-26 08:12:10 +000012200 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070012201 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
12202 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
12203 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
12204 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
12205 }
12206
12207 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
12208 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
12209 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
12210 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
12211 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
12212 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
12213 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
12214 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
12215 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
12216 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
12217 return -EINVAL;
12218
12219 /* No rx interrupts will be generated if both are zero */
12220 if ((ec->rx_coalesce_usecs == 0) &&
12221 (ec->rx_max_coalesced_frames == 0))
12222 return -EINVAL;
12223
12224 /* No tx interrupts will be generated if both are zero */
12225 if ((ec->tx_coalesce_usecs == 0) &&
12226 (ec->tx_max_coalesced_frames == 0))
12227 return -EINVAL;
12228
12229 /* Only copy relevant parameters, ignore all others. */
12230 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
12231 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
12232 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
12233 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
12234 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
12235 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
12236 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
12237 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
12238 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
12239
12240 if (netif_running(dev)) {
12241 tg3_full_lock(tp, 0);
12242 __tg3_set_coalesce(tp, &tp->coal);
12243 tg3_full_unlock(tp);
12244 }
12245 return 0;
12246}
12247
Jeff Garzik7282d492006-09-13 14:30:00 -040012248static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012249 .get_settings = tg3_get_settings,
12250 .set_settings = tg3_set_settings,
12251 .get_drvinfo = tg3_get_drvinfo,
12252 .get_regs_len = tg3_get_regs_len,
12253 .get_regs = tg3_get_regs,
12254 .get_wol = tg3_get_wol,
12255 .set_wol = tg3_set_wol,
12256 .get_msglevel = tg3_get_msglevel,
12257 .set_msglevel = tg3_set_msglevel,
12258 .nway_reset = tg3_nway_reset,
12259 .get_link = ethtool_op_get_link,
12260 .get_eeprom_len = tg3_get_eeprom_len,
12261 .get_eeprom = tg3_get_eeprom,
12262 .set_eeprom = tg3_set_eeprom,
12263 .get_ringparam = tg3_get_ringparam,
12264 .set_ringparam = tg3_set_ringparam,
12265 .get_pauseparam = tg3_get_pauseparam,
12266 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070012267 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012268 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000012269 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012270 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070012271 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070012272 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070012273 .get_sset_count = tg3_get_sset_count,
Matt Carlson90415472011-12-16 13:33:23 +000012274 .get_rxnfc = tg3_get_rxnfc,
12275 .get_rxfh_indir_size = tg3_get_rxfh_indir_size,
12276 .get_rxfh_indir = tg3_get_rxfh_indir,
12277 .set_rxfh_indir = tg3_set_rxfh_indir,
Richard Cochran3f847492012-04-03 22:59:39 +000012278 .get_ts_info = ethtool_op_get_ts_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070012279};
12280
David S. Millerb4017c52012-03-01 17:57:40 -050012281static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
12282 struct rtnl_link_stats64 *stats)
12283{
12284 struct tg3 *tp = netdev_priv(dev);
12285
12286 if (!tp->hw_stats)
12287 return &tp->net_stats_prev;
12288
12289 spin_lock_bh(&tp->lock);
12290 tg3_get_nstats(tp, stats);
12291 spin_unlock_bh(&tp->lock);
12292
12293 return stats;
12294}
12295
Matt Carlsonccd5ba92012-02-13 10:20:08 +000012296static void tg3_set_rx_mode(struct net_device *dev)
12297{
12298 struct tg3 *tp = netdev_priv(dev);
12299
12300 if (!netif_running(dev))
12301 return;
12302
12303 tg3_full_lock(tp, 0);
12304 __tg3_set_rx_mode(dev);
12305 tg3_full_unlock(tp);
12306}
12307
Matt Carlsonfaf16272012-02-13 10:20:07 +000012308static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
12309 int new_mtu)
12310{
12311 dev->mtu = new_mtu;
12312
12313 if (new_mtu > ETH_DATA_LEN) {
12314 if (tg3_flag(tp, 5780_CLASS)) {
12315 netdev_update_features(dev);
12316 tg3_flag_clear(tp, TSO_CAPABLE);
12317 } else {
12318 tg3_flag_set(tp, JUMBO_RING_ENABLE);
12319 }
12320 } else {
12321 if (tg3_flag(tp, 5780_CLASS)) {
12322 tg3_flag_set(tp, TSO_CAPABLE);
12323 netdev_update_features(dev);
12324 }
12325 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
12326 }
12327}
12328
12329static int tg3_change_mtu(struct net_device *dev, int new_mtu)
12330{
12331 struct tg3 *tp = netdev_priv(dev);
Michael Chan2fae5e32012-03-04 14:48:15 +000012332 int err, reset_phy = 0;
Matt Carlsonfaf16272012-02-13 10:20:07 +000012333
12334 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
12335 return -EINVAL;
12336
12337 if (!netif_running(dev)) {
12338 /* We'll just catch it later when the
12339 * device is up'd.
12340 */
12341 tg3_set_mtu(dev, tp, new_mtu);
12342 return 0;
12343 }
12344
12345 tg3_phy_stop(tp);
12346
12347 tg3_netif_stop(tp);
12348
12349 tg3_full_lock(tp, 1);
12350
12351 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
12352
12353 tg3_set_mtu(dev, tp, new_mtu);
12354
Michael Chan2fae5e32012-03-04 14:48:15 +000012355 /* Reset PHY, otherwise the read DMA engine will be in a mode that
12356 * breaks all requests to 256 bytes.
12357 */
12358 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
12359 reset_phy = 1;
12360
12361 err = tg3_restart_hw(tp, reset_phy);
Matt Carlsonfaf16272012-02-13 10:20:07 +000012362
12363 if (!err)
12364 tg3_netif_start(tp);
12365
12366 tg3_full_unlock(tp);
12367
12368 if (!err)
12369 tg3_phy_start(tp);
12370
12371 return err;
12372}
12373
12374static const struct net_device_ops tg3_netdev_ops = {
12375 .ndo_open = tg3_open,
12376 .ndo_stop = tg3_close,
12377 .ndo_start_xmit = tg3_start_xmit,
12378 .ndo_get_stats64 = tg3_get_stats64,
12379 .ndo_validate_addr = eth_validate_addr,
12380 .ndo_set_rx_mode = tg3_set_rx_mode,
12381 .ndo_set_mac_address = tg3_set_mac_addr,
12382 .ndo_do_ioctl = tg3_ioctl,
12383 .ndo_tx_timeout = tg3_tx_timeout,
12384 .ndo_change_mtu = tg3_change_mtu,
12385 .ndo_fix_features = tg3_fix_features,
12386 .ndo_set_features = tg3_set_features,
12387#ifdef CONFIG_NET_POLL_CONTROLLER
12388 .ndo_poll_controller = tg3_poll_controller,
12389#endif
12390};
12391
Linus Torvalds1da177e2005-04-16 15:20:36 -070012392static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
12393{
Michael Chan1b277772006-03-20 22:27:48 -080012394 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012395
12396 tp->nvram_size = EEPROM_CHIP_SIZE;
12397
Matt Carlsone4f34112009-02-25 14:25:00 +000012398 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012399 return;
12400
Michael Chanb16250e2006-09-27 16:10:14 -070012401 if ((magic != TG3_EEPROM_MAGIC) &&
12402 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
12403 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012404 return;
12405
12406 /*
12407 * Size the chip by reading offsets at increasing powers of two.
12408 * When we encounter our validation signature, we know the addressing
12409 * has wrapped around, and thus have our chip size.
12410 */
Michael Chan1b277772006-03-20 22:27:48 -080012411 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012412
12413 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000012414 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012415 return;
12416
Michael Chan18201802006-03-20 22:29:15 -080012417 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012418 break;
12419
12420 cursize <<= 1;
12421 }
12422
12423 tp->nvram_size = cursize;
12424}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012425
Linus Torvalds1da177e2005-04-16 15:20:36 -070012426static void __devinit tg3_get_nvram_size(struct tg3 *tp)
12427{
12428 u32 val;
12429
Joe Perches63c3a662011-04-26 08:12:10 +000012430 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080012431 return;
12432
12433 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080012434 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080012435 tg3_get_eeprom_size(tp);
12436 return;
12437 }
12438
Matt Carlson6d348f22009-02-25 14:25:52 +000012439 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012440 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000012441 /* This is confusing. We want to operate on the
12442 * 16-bit value at offset 0xf2. The tg3_nvram_read()
12443 * call will read from NVRAM and byteswap the data
12444 * according to the byteswapping settings for all
12445 * other register accesses. This ensures the data we
12446 * want will always reside in the lower 16-bits.
12447 * However, the data in NVRAM is in LE format, which
12448 * means the data from the NVRAM read will always be
12449 * opposite the endianness of the CPU. The 16-bit
12450 * byteswap then brings the data to CPU endianness.
12451 */
12452 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012453 return;
12454 }
12455 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070012456 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012457}
12458
12459static void __devinit tg3_get_nvram_info(struct tg3 *tp)
12460{
12461 u32 nvcfg1;
12462
12463 nvcfg1 = tr32(NVRAM_CFG1);
12464 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000012465 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012466 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012467 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12468 tw32(NVRAM_CFG1, nvcfg1);
12469 }
12470
Matt Carlson6ff6f812011-05-19 12:12:54 +000012471 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000012472 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012473 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012474 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
12475 tp->nvram_jedecnum = JEDEC_ATMEL;
12476 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012477 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012478 break;
12479 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
12480 tp->nvram_jedecnum = JEDEC_ATMEL;
12481 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
12482 break;
12483 case FLASH_VENDOR_ATMEL_EEPROM:
12484 tp->nvram_jedecnum = JEDEC_ATMEL;
12485 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012486 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012487 break;
12488 case FLASH_VENDOR_ST:
12489 tp->nvram_jedecnum = JEDEC_ST;
12490 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012491 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012492 break;
12493 case FLASH_VENDOR_SAIFUN:
12494 tp->nvram_jedecnum = JEDEC_SAIFUN;
12495 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
12496 break;
12497 case FLASH_VENDOR_SST_SMALL:
12498 case FLASH_VENDOR_SST_LARGE:
12499 tp->nvram_jedecnum = JEDEC_SST;
12500 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
12501 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012502 }
Matt Carlson8590a602009-08-28 12:29:16 +000012503 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012504 tp->nvram_jedecnum = JEDEC_ATMEL;
12505 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000012506 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012507 }
12508}
12509
Matt Carlsona1b950d2009-09-01 13:20:17 +000012510static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
12511{
12512 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
12513 case FLASH_5752PAGE_SIZE_256:
12514 tp->nvram_pagesize = 256;
12515 break;
12516 case FLASH_5752PAGE_SIZE_512:
12517 tp->nvram_pagesize = 512;
12518 break;
12519 case FLASH_5752PAGE_SIZE_1K:
12520 tp->nvram_pagesize = 1024;
12521 break;
12522 case FLASH_5752PAGE_SIZE_2K:
12523 tp->nvram_pagesize = 2048;
12524 break;
12525 case FLASH_5752PAGE_SIZE_4K:
12526 tp->nvram_pagesize = 4096;
12527 break;
12528 case FLASH_5752PAGE_SIZE_264:
12529 tp->nvram_pagesize = 264;
12530 break;
12531 case FLASH_5752PAGE_SIZE_528:
12532 tp->nvram_pagesize = 528;
12533 break;
12534 }
12535}
12536
Michael Chan361b4ac2005-04-21 17:11:21 -070012537static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
12538{
12539 u32 nvcfg1;
12540
12541 nvcfg1 = tr32(NVRAM_CFG1);
12542
Michael Chane6af3012005-04-21 17:12:05 -070012543 /* NVRAM protection for TPM */
12544 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000012545 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070012546
Michael Chan361b4ac2005-04-21 17:11:21 -070012547 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012548 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
12549 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
12550 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012551 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012552 break;
12553 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12554 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012555 tg3_flag_set(tp, NVRAM_BUFFERED);
12556 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012557 break;
12558 case FLASH_5752VENDOR_ST_M45PE10:
12559 case FLASH_5752VENDOR_ST_M45PE20:
12560 case FLASH_5752VENDOR_ST_M45PE40:
12561 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012562 tg3_flag_set(tp, NVRAM_BUFFERED);
12563 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012564 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070012565 }
12566
Joe Perches63c3a662011-04-26 08:12:10 +000012567 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000012568 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000012569 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070012570 /* For eeprom, set pagesize to maximum eeprom size */
12571 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12572
12573 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12574 tw32(NVRAM_CFG1, nvcfg1);
12575 }
12576}
12577
Michael Chand3c7b882006-03-23 01:28:25 -080012578static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
12579{
Matt Carlson989a9d22007-05-05 11:51:05 -070012580 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080012581
12582 nvcfg1 = tr32(NVRAM_CFG1);
12583
12584 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070012585 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012586 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070012587 protect = 1;
12588 }
Michael Chand3c7b882006-03-23 01:28:25 -080012589
Matt Carlson989a9d22007-05-05 11:51:05 -070012590 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12591 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012592 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12593 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12594 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12595 case FLASH_5755VENDOR_ATMEL_FLASH_5:
12596 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012597 tg3_flag_set(tp, NVRAM_BUFFERED);
12598 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012599 tp->nvram_pagesize = 264;
12600 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
12601 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
12602 tp->nvram_size = (protect ? 0x3e200 :
12603 TG3_NVRAM_SIZE_512KB);
12604 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
12605 tp->nvram_size = (protect ? 0x1f200 :
12606 TG3_NVRAM_SIZE_256KB);
12607 else
12608 tp->nvram_size = (protect ? 0x1f200 :
12609 TG3_NVRAM_SIZE_128KB);
12610 break;
12611 case FLASH_5752VENDOR_ST_M45PE10:
12612 case FLASH_5752VENDOR_ST_M45PE20:
12613 case FLASH_5752VENDOR_ST_M45PE40:
12614 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012615 tg3_flag_set(tp, NVRAM_BUFFERED);
12616 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012617 tp->nvram_pagesize = 256;
12618 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
12619 tp->nvram_size = (protect ?
12620 TG3_NVRAM_SIZE_64KB :
12621 TG3_NVRAM_SIZE_128KB);
12622 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
12623 tp->nvram_size = (protect ?
12624 TG3_NVRAM_SIZE_64KB :
12625 TG3_NVRAM_SIZE_256KB);
12626 else
12627 tp->nvram_size = (protect ?
12628 TG3_NVRAM_SIZE_128KB :
12629 TG3_NVRAM_SIZE_512KB);
12630 break;
Michael Chand3c7b882006-03-23 01:28:25 -080012631 }
12632}
12633
Michael Chan1b277772006-03-20 22:27:48 -080012634static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
12635{
12636 u32 nvcfg1;
12637
12638 nvcfg1 = tr32(NVRAM_CFG1);
12639
12640 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012641 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
12642 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12643 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
12644 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12645 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012646 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012647 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080012648
Matt Carlson8590a602009-08-28 12:29:16 +000012649 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12650 tw32(NVRAM_CFG1, nvcfg1);
12651 break;
12652 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12653 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12654 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12655 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12656 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012657 tg3_flag_set(tp, NVRAM_BUFFERED);
12658 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012659 tp->nvram_pagesize = 264;
12660 break;
12661 case FLASH_5752VENDOR_ST_M45PE10:
12662 case FLASH_5752VENDOR_ST_M45PE20:
12663 case FLASH_5752VENDOR_ST_M45PE40:
12664 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012665 tg3_flag_set(tp, NVRAM_BUFFERED);
12666 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012667 tp->nvram_pagesize = 256;
12668 break;
Michael Chan1b277772006-03-20 22:27:48 -080012669 }
12670}
12671
Matt Carlson6b91fa02007-10-10 18:01:09 -070012672static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
12673{
12674 u32 nvcfg1, protect = 0;
12675
12676 nvcfg1 = tr32(NVRAM_CFG1);
12677
12678 /* NVRAM protection for TPM */
12679 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012680 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012681 protect = 1;
12682 }
12683
12684 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12685 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012686 case FLASH_5761VENDOR_ATMEL_ADB021D:
12687 case FLASH_5761VENDOR_ATMEL_ADB041D:
12688 case FLASH_5761VENDOR_ATMEL_ADB081D:
12689 case FLASH_5761VENDOR_ATMEL_ADB161D:
12690 case FLASH_5761VENDOR_ATMEL_MDB021D:
12691 case FLASH_5761VENDOR_ATMEL_MDB041D:
12692 case FLASH_5761VENDOR_ATMEL_MDB081D:
12693 case FLASH_5761VENDOR_ATMEL_MDB161D:
12694 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012695 tg3_flag_set(tp, NVRAM_BUFFERED);
12696 tg3_flag_set(tp, FLASH);
12697 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000012698 tp->nvram_pagesize = 256;
12699 break;
12700 case FLASH_5761VENDOR_ST_A_M45PE20:
12701 case FLASH_5761VENDOR_ST_A_M45PE40:
12702 case FLASH_5761VENDOR_ST_A_M45PE80:
12703 case FLASH_5761VENDOR_ST_A_M45PE16:
12704 case FLASH_5761VENDOR_ST_M_M45PE20:
12705 case FLASH_5761VENDOR_ST_M_M45PE40:
12706 case FLASH_5761VENDOR_ST_M_M45PE80:
12707 case FLASH_5761VENDOR_ST_M_M45PE16:
12708 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012709 tg3_flag_set(tp, NVRAM_BUFFERED);
12710 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012711 tp->nvram_pagesize = 256;
12712 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012713 }
12714
12715 if (protect) {
12716 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
12717 } else {
12718 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012719 case FLASH_5761VENDOR_ATMEL_ADB161D:
12720 case FLASH_5761VENDOR_ATMEL_MDB161D:
12721 case FLASH_5761VENDOR_ST_A_M45PE16:
12722 case FLASH_5761VENDOR_ST_M_M45PE16:
12723 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
12724 break;
12725 case FLASH_5761VENDOR_ATMEL_ADB081D:
12726 case FLASH_5761VENDOR_ATMEL_MDB081D:
12727 case FLASH_5761VENDOR_ST_A_M45PE80:
12728 case FLASH_5761VENDOR_ST_M_M45PE80:
12729 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12730 break;
12731 case FLASH_5761VENDOR_ATMEL_ADB041D:
12732 case FLASH_5761VENDOR_ATMEL_MDB041D:
12733 case FLASH_5761VENDOR_ST_A_M45PE40:
12734 case FLASH_5761VENDOR_ST_M_M45PE40:
12735 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12736 break;
12737 case FLASH_5761VENDOR_ATMEL_ADB021D:
12738 case FLASH_5761VENDOR_ATMEL_MDB021D:
12739 case FLASH_5761VENDOR_ST_A_M45PE20:
12740 case FLASH_5761VENDOR_ST_M_M45PE20:
12741 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12742 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012743 }
12744 }
12745}
12746
Michael Chanb5d37722006-09-27 16:06:21 -070012747static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
12748{
12749 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012750 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070012751 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12752}
12753
Matt Carlson321d32a2008-11-21 17:22:19 -080012754static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
12755{
12756 u32 nvcfg1;
12757
12758 nvcfg1 = tr32(NVRAM_CFG1);
12759
12760 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12761 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12762 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12763 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012764 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080012765 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12766
12767 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12768 tw32(NVRAM_CFG1, nvcfg1);
12769 return;
12770 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12771 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12772 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12773 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12774 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12775 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12776 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12777 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012778 tg3_flag_set(tp, NVRAM_BUFFERED);
12779 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012780
12781 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12782 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12783 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12784 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12785 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12786 break;
12787 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12788 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12789 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12790 break;
12791 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12792 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12793 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12794 break;
12795 }
12796 break;
12797 case FLASH_5752VENDOR_ST_M45PE10:
12798 case FLASH_5752VENDOR_ST_M45PE20:
12799 case FLASH_5752VENDOR_ST_M45PE40:
12800 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012801 tg3_flag_set(tp, NVRAM_BUFFERED);
12802 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012803
12804 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12805 case FLASH_5752VENDOR_ST_M45PE10:
12806 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12807 break;
12808 case FLASH_5752VENDOR_ST_M45PE20:
12809 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12810 break;
12811 case FLASH_5752VENDOR_ST_M45PE40:
12812 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12813 break;
12814 }
12815 break;
12816 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012817 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012818 return;
12819 }
12820
Matt Carlsona1b950d2009-09-01 13:20:17 +000012821 tg3_nvram_get_pagesize(tp, nvcfg1);
12822 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012823 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012824}
12825
12826
12827static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12828{
12829 u32 nvcfg1;
12830
12831 nvcfg1 = tr32(NVRAM_CFG1);
12832
12833 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12834 case FLASH_5717VENDOR_ATMEL_EEPROM:
12835 case FLASH_5717VENDOR_MICRO_EEPROM:
12836 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012837 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012838 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12839
12840 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12841 tw32(NVRAM_CFG1, nvcfg1);
12842 return;
12843 case FLASH_5717VENDOR_ATMEL_MDB011D:
12844 case FLASH_5717VENDOR_ATMEL_ADB011B:
12845 case FLASH_5717VENDOR_ATMEL_ADB011D:
12846 case FLASH_5717VENDOR_ATMEL_MDB021D:
12847 case FLASH_5717VENDOR_ATMEL_ADB021B:
12848 case FLASH_5717VENDOR_ATMEL_ADB021D:
12849 case FLASH_5717VENDOR_ATMEL_45USPT:
12850 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012851 tg3_flag_set(tp, NVRAM_BUFFERED);
12852 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012853
12854 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12855 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012856 /* Detect size with tg3_nvram_get_size() */
12857 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012858 case FLASH_5717VENDOR_ATMEL_ADB021B:
12859 case FLASH_5717VENDOR_ATMEL_ADB021D:
12860 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12861 break;
12862 default:
12863 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12864 break;
12865 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012866 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012867 case FLASH_5717VENDOR_ST_M_M25PE10:
12868 case FLASH_5717VENDOR_ST_A_M25PE10:
12869 case FLASH_5717VENDOR_ST_M_M45PE10:
12870 case FLASH_5717VENDOR_ST_A_M45PE10:
12871 case FLASH_5717VENDOR_ST_M_M25PE20:
12872 case FLASH_5717VENDOR_ST_A_M25PE20:
12873 case FLASH_5717VENDOR_ST_M_M45PE20:
12874 case FLASH_5717VENDOR_ST_A_M45PE20:
12875 case FLASH_5717VENDOR_ST_25USPT:
12876 case FLASH_5717VENDOR_ST_45USPT:
12877 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012878 tg3_flag_set(tp, NVRAM_BUFFERED);
12879 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012880
12881 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12882 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012883 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012884 /* Detect size with tg3_nvram_get_size() */
12885 break;
12886 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012887 case FLASH_5717VENDOR_ST_A_M45PE20:
12888 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12889 break;
12890 default:
12891 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12892 break;
12893 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012894 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012895 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012896 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012897 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012898 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012899
12900 tg3_nvram_get_pagesize(tp, nvcfg1);
12901 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012902 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012903}
12904
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012905static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12906{
12907 u32 nvcfg1, nvmpinstrp;
12908
12909 nvcfg1 = tr32(NVRAM_CFG1);
12910 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12911
12912 switch (nvmpinstrp) {
12913 case FLASH_5720_EEPROM_HD:
12914 case FLASH_5720_EEPROM_LD:
12915 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012916 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012917
12918 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12919 tw32(NVRAM_CFG1, nvcfg1);
12920 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12921 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12922 else
12923 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12924 return;
12925 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12926 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12927 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12928 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12929 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12930 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12931 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12932 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12933 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12934 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12935 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12936 case FLASH_5720VENDOR_ATMEL_45USPT:
12937 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012938 tg3_flag_set(tp, NVRAM_BUFFERED);
12939 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012940
12941 switch (nvmpinstrp) {
12942 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12943 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12944 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12945 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12946 break;
12947 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12948 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12949 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12950 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12951 break;
12952 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12953 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12954 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12955 break;
12956 default:
12957 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12958 break;
12959 }
12960 break;
12961 case FLASH_5720VENDOR_M_ST_M25PE10:
12962 case FLASH_5720VENDOR_M_ST_M45PE10:
12963 case FLASH_5720VENDOR_A_ST_M25PE10:
12964 case FLASH_5720VENDOR_A_ST_M45PE10:
12965 case FLASH_5720VENDOR_M_ST_M25PE20:
12966 case FLASH_5720VENDOR_M_ST_M45PE20:
12967 case FLASH_5720VENDOR_A_ST_M25PE20:
12968 case FLASH_5720VENDOR_A_ST_M45PE20:
12969 case FLASH_5720VENDOR_M_ST_M25PE40:
12970 case FLASH_5720VENDOR_M_ST_M45PE40:
12971 case FLASH_5720VENDOR_A_ST_M25PE40:
12972 case FLASH_5720VENDOR_A_ST_M45PE40:
12973 case FLASH_5720VENDOR_M_ST_M25PE80:
12974 case FLASH_5720VENDOR_M_ST_M45PE80:
12975 case FLASH_5720VENDOR_A_ST_M25PE80:
12976 case FLASH_5720VENDOR_A_ST_M45PE80:
12977 case FLASH_5720VENDOR_ST_25USPT:
12978 case FLASH_5720VENDOR_ST_45USPT:
12979 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012980 tg3_flag_set(tp, NVRAM_BUFFERED);
12981 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012982
12983 switch (nvmpinstrp) {
12984 case FLASH_5720VENDOR_M_ST_M25PE20:
12985 case FLASH_5720VENDOR_M_ST_M45PE20:
12986 case FLASH_5720VENDOR_A_ST_M25PE20:
12987 case FLASH_5720VENDOR_A_ST_M45PE20:
12988 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12989 break;
12990 case FLASH_5720VENDOR_M_ST_M25PE40:
12991 case FLASH_5720VENDOR_M_ST_M45PE40:
12992 case FLASH_5720VENDOR_A_ST_M25PE40:
12993 case FLASH_5720VENDOR_A_ST_M45PE40:
12994 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12995 break;
12996 case FLASH_5720VENDOR_M_ST_M25PE80:
12997 case FLASH_5720VENDOR_M_ST_M45PE80:
12998 case FLASH_5720VENDOR_A_ST_M25PE80:
12999 case FLASH_5720VENDOR_A_ST_M45PE80:
13000 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
13001 break;
13002 default:
13003 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
13004 break;
13005 }
13006 break;
13007 default:
Joe Perches63c3a662011-04-26 08:12:10 +000013008 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013009 return;
13010 }
13011
13012 tg3_nvram_get_pagesize(tp, nvcfg1);
13013 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000013014 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013015}
13016
Linus Torvalds1da177e2005-04-16 15:20:36 -070013017/* Chips other than 5700/5701 use the NVRAM for fetching info. */
13018static void __devinit tg3_nvram_init(struct tg3 *tp)
13019{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013020 tw32_f(GRC_EEPROM_ADDR,
13021 (EEPROM_ADDR_FSM_RESET |
13022 (EEPROM_DEFAULT_CLOCK_PERIOD <<
13023 EEPROM_ADDR_CLKPERD_SHIFT)));
13024
Michael Chan9d57f012006-12-07 00:23:25 -080013025 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013026
13027 /* Enable seeprom accesses. */
13028 tw32_f(GRC_LOCAL_CTRL,
13029 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
13030 udelay(100);
13031
13032 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13033 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000013034 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013035
Michael Chanec41c7d2006-01-17 02:40:55 -080013036 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000013037 netdev_warn(tp->dev,
13038 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000013039 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080013040 return;
13041 }
Michael Chane6af3012005-04-21 17:12:05 -070013042 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013043
Matt Carlson989a9d22007-05-05 11:51:05 -070013044 tp->nvram_size = 0;
13045
Michael Chan361b4ac2005-04-21 17:11:21 -070013046 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13047 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080013048 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
13049 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070013050 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013051 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13052 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080013053 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070013054 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
13055 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070013056 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
13057 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000013058 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000013059 tg3_flag(tp, 57765_CLASS))
Matt Carlson321d32a2008-11-21 17:22:19 -080013060 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013061 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13062 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000013063 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000013064 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
13065 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070013066 else
13067 tg3_get_nvram_info(tp);
13068
Matt Carlson989a9d22007-05-05 11:51:05 -070013069 if (tp->nvram_size == 0)
13070 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013071
Michael Chane6af3012005-04-21 17:12:05 -070013072 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080013073 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013074
13075 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013076 tg3_flag_clear(tp, NVRAM);
13077 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013078
13079 tg3_get_eeprom_size(tp);
13080 }
13081}
13082
Linus Torvalds1da177e2005-04-16 15:20:36 -070013083struct subsys_tbl_ent {
13084 u16 subsys_vendor, subsys_devid;
13085 u32 phy_id;
13086};
13087
Matt Carlson24daf2b2010-02-17 15:17:02 +000013088static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013089 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013090 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013091 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013092 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013093 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013094 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013095 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013096 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13097 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
13098 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013099 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013100 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013101 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013102 { TG3PCI_SUBVENDOR_ID_BROADCOM,
13103 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
13104 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013105 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013106 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013107 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013108 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013109 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013110 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013111 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013112
13113 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013114 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013115 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013116 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013117 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013118 { TG3PCI_SUBVENDOR_ID_3COM,
13119 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
13120 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013121 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013122 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000013123 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013124
13125 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013126 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013127 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013128 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013129 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013130 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013131 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013132 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000013133 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013134
13135 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013136 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013137 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013138 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013139 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013140 { TG3PCI_SUBVENDOR_ID_COMPAQ,
13141 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
13142 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013143 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000013144 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000013145 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070013146
13147 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013148 { TG3PCI_SUBVENDOR_ID_IBM,
13149 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013150};
13151
Matt Carlson24daf2b2010-02-17 15:17:02 +000013152static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013153{
13154 int i;
13155
13156 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
13157 if ((subsys_id_to_phy_id[i].subsys_vendor ==
13158 tp->pdev->subsystem_vendor) &&
13159 (subsys_id_to_phy_id[i].subsys_devid ==
13160 tp->pdev->subsystem_device))
13161 return &subsys_id_to_phy_id[i];
13162 }
13163 return NULL;
13164}
13165
Michael Chan7d0c41e2005-04-21 17:06:20 -070013166static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013167{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013168 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070013169
Matt Carlson79eb6902010-02-17 15:17:03 +000013170 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013171 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13172
Gary Zambranoa85feb82007-05-05 11:52:19 -070013173 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000013174 tg3_flag_set(tp, EEPROM_WRITE_PROT);
13175 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080013176
Michael Chanb5d37722006-09-27 16:06:21 -070013177 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080013178 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013179 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13180 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013181 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013182 val = tr32(VCPU_CFGSHDW);
13183 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000013184 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070013185 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013186 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013187 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013188 device_set_wakeup_enable(&tp->pdev->dev, true);
13189 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013190 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070013191 }
13192
Linus Torvalds1da177e2005-04-16 15:20:36 -070013193 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
13194 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
13195 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070013196 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070013197 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013198
13199 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
13200 tp->nic_sram_data_cfg = nic_cfg;
13201
13202 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
13203 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000013204 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13205 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13206 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070013207 (ver > 0) && (ver < 0x100))
13208 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
13209
Matt Carlsona9daf362008-05-25 23:49:44 -070013210 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
13211 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
13212
Linus Torvalds1da177e2005-04-16 15:20:36 -070013213 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
13214 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
13215 eeprom_phy_serdes = 1;
13216
13217 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
13218 if (nic_phy_id != 0) {
13219 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
13220 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
13221
13222 eeprom_phy_id = (id1 >> 16) << 10;
13223 eeprom_phy_id |= (id2 & 0xfc00) << 16;
13224 eeprom_phy_id |= (id2 & 0x03ff) << 0;
13225 } else
13226 eeprom_phy_id = 0;
13227
Michael Chan7d0c41e2005-04-21 17:06:20 -070013228 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070013229 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000013230 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013231 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000013232 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013233 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070013234 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070013235
Joe Perches63c3a662011-04-26 08:12:10 +000013236 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013237 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
13238 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070013239 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070013240 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
13241
13242 switch (led_cfg) {
13243 default:
13244 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
13245 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13246 break;
13247
13248 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
13249 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13250 break;
13251
13252 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
13253 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070013254
13255 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
13256 * read on some older 5700/5701 bootcode.
13257 */
13258 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13259 ASIC_REV_5700 ||
13260 GET_ASIC_REV(tp->pci_chip_rev_id) ==
13261 ASIC_REV_5701)
13262 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
13263
Linus Torvalds1da177e2005-04-16 15:20:36 -070013264 break;
13265
13266 case SHASTA_EXT_LED_SHARED:
13267 tp->led_ctrl = LED_CTRL_MODE_SHARED;
13268 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
13269 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
13270 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13271 LED_CTRL_MODE_PHY_2);
13272 break;
13273
13274 case SHASTA_EXT_LED_MAC:
13275 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
13276 break;
13277
13278 case SHASTA_EXT_LED_COMBO:
13279 tp->led_ctrl = LED_CTRL_MODE_COMBO;
13280 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
13281 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
13282 LED_CTRL_MODE_PHY_2);
13283 break;
13284
Stephen Hemminger855e1112008-04-16 16:37:28 -070013285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013286
13287 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13288 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
13289 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
13290 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
13291
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013292 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
13293 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080013294
Michael Chan9d26e212006-12-07 00:21:14 -080013295 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000013296 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013297 if ((tp->pdev->subsystem_vendor ==
13298 PCI_VENDOR_ID_ARIMA) &&
13299 (tp->pdev->subsystem_device == 0x205a ||
13300 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000013301 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013302 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013303 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13304 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013306
13307 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000013308 tg3_flag_set(tp, ENABLE_ASF);
13309 if (tg3_flag(tp, 5750_PLUS))
13310 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013311 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013312
13313 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013314 tg3_flag(tp, 5750_PLUS))
13315 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013316
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013317 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070013318 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000013319 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013320
Joe Perches63c3a662011-04-26 08:12:10 +000013321 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013322 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013323 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013324 device_set_wakeup_enable(&tp->pdev->dev, true);
13325 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013326
Linus Torvalds1da177e2005-04-16 15:20:36 -070013327 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013328 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013329
13330 /* serdes signal pre-emphasis in register 0x590 set by */
13331 /* bootcode if bit 18 is set */
13332 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013333 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070013334
Joe Perches63c3a662011-04-26 08:12:10 +000013335 if ((tg3_flag(tp, 57765_PLUS) ||
13336 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13337 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080013338 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013339 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080013340
Joe Perches63c3a662011-04-26 08:12:10 +000013341 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000013342 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013343 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070013344 u32 cfg3;
13345
13346 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
13347 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000013348 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070013349 }
Matt Carlsona9daf362008-05-25 23:49:44 -070013350
Matt Carlson14417062010-02-17 15:16:59 +000013351 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000013352 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070013353 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013354 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070013355 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013356 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013357 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013358done:
Joe Perches63c3a662011-04-26 08:12:10 +000013359 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013360 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000013361 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013362 else
13363 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070013364}
13365
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013366static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
13367{
13368 int i;
13369 u32 val;
13370
13371 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
13372 tw32(OTP_CTRL, cmd);
13373
13374 /* Wait for up to 1 ms for command to execute. */
13375 for (i = 0; i < 100; i++) {
13376 val = tr32(OTP_STATUS);
13377 if (val & OTP_STATUS_CMD_DONE)
13378 break;
13379 udelay(10);
13380 }
13381
13382 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13383}
13384
13385/* Read the gphy configuration from the OTP region of the chip. The gphy
13386 * configuration is a 32-bit value that straddles the alignment boundary.
13387 * We do two 32-bit reads and then shift and merge the results.
13388 */
13389static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13390{
13391 u32 bhalf_otp, thalf_otp;
13392
13393 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13394
13395 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13396 return 0;
13397
13398 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13399
13400 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13401 return 0;
13402
13403 thalf_otp = tr32(OTP_READ_DATA);
13404
13405 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13406
13407 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13408 return 0;
13409
13410 bhalf_otp = tr32(OTP_READ_DATA);
13411
13412 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13413}
13414
Matt Carlsone256f8a2011-03-09 16:58:24 +000013415static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13416{
Hiroaki SHIMODA202ff1c2011-11-22 04:05:41 +000013417 u32 adv = ADVERTISED_Autoneg;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013418
13419 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13420 adv |= ADVERTISED_1000baseT_Half |
13421 ADVERTISED_1000baseT_Full;
13422
13423 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13424 adv |= ADVERTISED_100baseT_Half |
13425 ADVERTISED_100baseT_Full |
13426 ADVERTISED_10baseT_Half |
13427 ADVERTISED_10baseT_Full |
13428 ADVERTISED_TP;
13429 else
13430 adv |= ADVERTISED_FIBRE;
13431
13432 tp->link_config.advertising = adv;
Matt Carlsone7405222012-02-13 15:20:16 +000013433 tp->link_config.speed = SPEED_UNKNOWN;
13434 tp->link_config.duplex = DUPLEX_UNKNOWN;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013435 tp->link_config.autoneg = AUTONEG_ENABLE;
Matt Carlsone7405222012-02-13 15:20:16 +000013436 tp->link_config.active_speed = SPEED_UNKNOWN;
13437 tp->link_config.active_duplex = DUPLEX_UNKNOWN;
Matt Carlson34655ad2012-02-22 12:35:18 +000013438
13439 tp->old_link = -1;
Matt Carlsone256f8a2011-03-09 16:58:24 +000013440}
13441
Michael Chan7d0c41e2005-04-21 17:06:20 -070013442static int __devinit tg3_phy_probe(struct tg3 *tp)
13443{
13444 u32 hw_phy_id_1, hw_phy_id_2;
13445 u32 hw_phy_id, hw_phy_id_masked;
13446 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013447
Matt Carlsone256f8a2011-03-09 16:58:24 +000013448 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013449 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013450 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13451
Joe Perches63c3a662011-04-26 08:12:10 +000013452 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013453 return tg3_phy_init(tp);
13454
Linus Torvalds1da177e2005-04-16 15:20:36 -070013455 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013456 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013457 */
13458 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013459 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013460 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013461 } else {
13462 /* Now read the physical PHY_ID from the chip and verify
13463 * that it is sane. If it doesn't look good, we fall back
13464 * to either the hard-coded table based PHY_ID and failing
13465 * that the value found in the eeprom area.
13466 */
13467 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13468 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13469
13470 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13471 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13472 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13473
Matt Carlson79eb6902010-02-17 15:17:03 +000013474 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013475 }
13476
Matt Carlson79eb6902010-02-17 15:17:03 +000013477 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013478 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013479 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013480 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013481 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013482 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013483 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013484 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013485 /* Do nothing, phy ID already set up in
13486 * tg3_get_eeprom_hw_cfg().
13487 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013488 } else {
13489 struct subsys_tbl_ent *p;
13490
13491 /* No eeprom signature? Try the hardcoded
13492 * subsys device table.
13493 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013494 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013495 if (!p)
13496 return -ENODEV;
13497
13498 tp->phy_id = p->phy_id;
13499 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013500 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013501 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013502 }
13503 }
13504
Matt Carlsona6b68da2010-12-06 08:28:52 +000013505 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Matt Carlson5baa5e92011-07-20 10:20:53 +000013506 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13507 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720 ||
13508 (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +000013509 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13510 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13511 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013512 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13513
Matt Carlsone256f8a2011-03-09 16:58:24 +000013514 tg3_phy_init_link_config(tp);
13515
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013516 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013517 !tg3_flag(tp, ENABLE_APE) &&
13518 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013519 u32 bmsr, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013520
13521 tg3_readphy(tp, MII_BMSR, &bmsr);
13522 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13523 (bmsr & BMSR_LSTATUS))
13524 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013525
Linus Torvalds1da177e2005-04-16 15:20:36 -070013526 err = tg3_phy_reset(tp);
13527 if (err)
13528 return err;
13529
Matt Carlson42b64a42011-05-19 12:12:49 +000013530 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013531
Matt Carlsone2bf73e2011-12-08 14:40:15 +000013532 if (!tg3_phy_copper_an_config_ok(tp, &dummy)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013533 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13534 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013535
13536 tg3_writephy(tp, MII_BMCR,
13537 BMCR_ANENABLE | BMCR_ANRESTART);
13538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013539 }
13540
13541skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013542 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013543 err = tg3_init_5401phy_dsp(tp);
13544 if (err)
13545 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013546
Linus Torvalds1da177e2005-04-16 15:20:36 -070013547 err = tg3_init_5401phy_dsp(tp);
13548 }
13549
Linus Torvalds1da177e2005-04-16 15:20:36 -070013550 return err;
13551}
13552
Matt Carlson184b8902010-04-05 10:19:25 +000013553static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013554{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013555 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013556 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000013557 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000013558 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013559
Matt Carlson535a4902011-07-20 10:20:56 +000013560 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013561 if (!vpd_data)
13562 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013563
Matt Carlson535a4902011-07-20 10:20:56 +000013564 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000013565 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013566 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013567
13568 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13569 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13570 i += PCI_VPD_LRDT_TAG_SIZE;
13571
Matt Carlson535a4902011-07-20 10:20:56 +000013572 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013573 goto out_not_found;
13574
Matt Carlson184b8902010-04-05 10:19:25 +000013575 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13576 PCI_VPD_RO_KEYWORD_MFR_ID);
13577 if (j > 0) {
13578 len = pci_vpd_info_field_size(&vpd_data[j]);
13579
13580 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13581 if (j + len > block_end || len != 4 ||
13582 memcmp(&vpd_data[j], "1028", 4))
13583 goto partno;
13584
13585 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13586 PCI_VPD_RO_KEYWORD_VENDOR0);
13587 if (j < 0)
13588 goto partno;
13589
13590 len = pci_vpd_info_field_size(&vpd_data[j]);
13591
13592 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13593 if (j + len > block_end)
13594 goto partno;
13595
13596 memcpy(tp->fw_ver, &vpd_data[j], len);
Matt Carlson535a4902011-07-20 10:20:56 +000013597 strncat(tp->fw_ver, " bc ", vpdlen - len - 1);
Matt Carlson184b8902010-04-05 10:19:25 +000013598 }
13599
13600partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013601 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13602 PCI_VPD_RO_KEYWORD_PARTNO);
13603 if (i < 0)
13604 goto out_not_found;
13605
13606 len = pci_vpd_info_field_size(&vpd_data[i]);
13607
13608 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13609 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000013610 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013611 goto out_not_found;
13612
13613 memcpy(tp->board_part_number, &vpd_data[i], len);
13614
Linus Torvalds1da177e2005-04-16 15:20:36 -070013615out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013616 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013617 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013618 return;
13619
13620out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013621 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13622 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13623 strcpy(tp->board_part_number, "BCM5717");
13624 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13625 strcpy(tp->board_part_number, "BCM5718");
13626 else
13627 goto nomatch;
13628 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13629 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13630 strcpy(tp->board_part_number, "BCM57780");
13631 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13632 strcpy(tp->board_part_number, "BCM57760");
13633 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13634 strcpy(tp->board_part_number, "BCM57790");
13635 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13636 strcpy(tp->board_part_number, "BCM57788");
13637 else
13638 goto nomatch;
13639 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13640 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13641 strcpy(tp->board_part_number, "BCM57761");
13642 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13643 strcpy(tp->board_part_number, "BCM57765");
13644 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13645 strcpy(tp->board_part_number, "BCM57781");
13646 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13647 strcpy(tp->board_part_number, "BCM57785");
13648 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13649 strcpy(tp->board_part_number, "BCM57791");
13650 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13651 strcpy(tp->board_part_number, "BCM57795");
13652 else
13653 goto nomatch;
Matt Carlson55086ad2011-12-14 11:09:59 +000013654 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766) {
13655 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762)
13656 strcpy(tp->board_part_number, "BCM57762");
13657 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766)
13658 strcpy(tp->board_part_number, "BCM57766");
13659 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782)
13660 strcpy(tp->board_part_number, "BCM57782");
13661 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
13662 strcpy(tp->board_part_number, "BCM57786");
13663 else
13664 goto nomatch;
Matt Carlson37a949c2010-09-30 10:34:33 +000013665 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013666 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013667 } else {
13668nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013669 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013671}
13672
Matt Carlson9c8a6202007-10-21 16:16:08 -070013673static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13674{
13675 u32 val;
13676
Matt Carlsone4f34112009-02-25 14:25:00 +000013677 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013678 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013679 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013680 val != 0)
13681 return 0;
13682
13683 return 1;
13684}
13685
Matt Carlsonacd9c112009-02-25 14:26:33 +000013686static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13687{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013688 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013689 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013690 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013691
13692 if (tg3_nvram_read(tp, 0xc, &offset) ||
13693 tg3_nvram_read(tp, 0x4, &start))
13694 return;
13695
13696 offset = tg3_nvram_logical_addr(tp, offset);
13697
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013698 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013699 return;
13700
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013701 if ((val & 0xfc000000) == 0x0c000000) {
13702 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013703 return;
13704
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013705 if (val == 0)
13706 newver = true;
13707 }
13708
Matt Carlson75f99362010-04-05 10:19:24 +000013709 dst_off = strlen(tp->fw_ver);
13710
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013711 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013712 if (TG3_VER_SIZE - dst_off < 16 ||
13713 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013714 return;
13715
13716 offset = offset + ver_offset - start;
13717 for (i = 0; i < 16; i += 4) {
13718 __be32 v;
13719 if (tg3_nvram_read_be32(tp, offset + i, &v))
13720 return;
13721
Matt Carlson75f99362010-04-05 10:19:24 +000013722 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013723 }
13724 } else {
13725 u32 major, minor;
13726
13727 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13728 return;
13729
13730 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13731 TG3_NVM_BCVER_MAJSFT;
13732 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013733 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13734 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013735 }
13736}
13737
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013738static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13739{
13740 u32 val, major, minor;
13741
13742 /* Use native endian representation */
13743 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13744 return;
13745
13746 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13747 TG3_NVM_HWSB_CFG1_MAJSFT;
13748 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13749 TG3_NVM_HWSB_CFG1_MINSFT;
13750
13751 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13752}
13753
Matt Carlsondfe00d72008-11-21 17:19:41 -080013754static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13755{
13756 u32 offset, major, minor, build;
13757
Matt Carlson75f99362010-04-05 10:19:24 +000013758 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013759
13760 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13761 return;
13762
13763 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13764 case TG3_EEPROM_SB_REVISION_0:
13765 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13766 break;
13767 case TG3_EEPROM_SB_REVISION_2:
13768 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13769 break;
13770 case TG3_EEPROM_SB_REVISION_3:
13771 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13772 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013773 case TG3_EEPROM_SB_REVISION_4:
13774 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13775 break;
13776 case TG3_EEPROM_SB_REVISION_5:
13777 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13778 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013779 case TG3_EEPROM_SB_REVISION_6:
13780 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13781 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013782 default:
13783 return;
13784 }
13785
Matt Carlsone4f34112009-02-25 14:25:00 +000013786 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013787 return;
13788
13789 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13790 TG3_EEPROM_SB_EDH_BLD_SHFT;
13791 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13792 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13793 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13794
13795 if (minor > 99 || build > 26)
13796 return;
13797
Matt Carlson75f99362010-04-05 10:19:24 +000013798 offset = strlen(tp->fw_ver);
13799 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13800 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013801
13802 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013803 offset = strlen(tp->fw_ver);
13804 if (offset < TG3_VER_SIZE - 1)
13805 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013806 }
13807}
13808
Matt Carlsonacd9c112009-02-25 14:26:33 +000013809static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013810{
13811 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013812 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013813
13814 for (offset = TG3_NVM_DIR_START;
13815 offset < TG3_NVM_DIR_END;
13816 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013817 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013818 return;
13819
13820 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13821 break;
13822 }
13823
13824 if (offset == TG3_NVM_DIR_END)
13825 return;
13826
Joe Perches63c3a662011-04-26 08:12:10 +000013827 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013828 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013829 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013830 return;
13831
Matt Carlsone4f34112009-02-25 14:25:00 +000013832 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013833 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013834 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013835 return;
13836
13837 offset += val - start;
13838
Matt Carlsonacd9c112009-02-25 14:26:33 +000013839 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013840
Matt Carlsonacd9c112009-02-25 14:26:33 +000013841 tp->fw_ver[vlen++] = ',';
13842 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013843
13844 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013845 __be32 v;
13846 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013847 return;
13848
Al Virob9fc7dc2007-12-17 22:59:57 -080013849 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013850
Matt Carlsonacd9c112009-02-25 14:26:33 +000013851 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13852 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013853 break;
13854 }
13855
Matt Carlsonacd9c112009-02-25 14:26:33 +000013856 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13857 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013858 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013859}
13860
Matt Carlson7fd76442009-02-25 14:27:20 +000013861static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13862{
13863 int vlen;
13864 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013865 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013866
Joe Perches63c3a662011-04-26 08:12:10 +000013867 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013868 return;
13869
13870 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13871 if (apedata != APE_SEG_SIG_MAGIC)
13872 return;
13873
13874 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13875 if (!(apedata & APE_FW_STATUS_READY))
13876 return;
13877
13878 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13879
Matt Carlsondc6d0742010-09-15 08:59:55 +000013880 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013881 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013882 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013883 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013884 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013885 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013886
Matt Carlson7fd76442009-02-25 14:27:20 +000013887 vlen = strlen(tp->fw_ver);
13888
Matt Carlsonecc79642010-08-02 11:26:01 +000013889 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13890 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013891 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13892 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13893 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13894 (apedata & APE_FW_VERSION_BLDMSK));
13895}
13896
Matt Carlsonacd9c112009-02-25 14:26:33 +000013897static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13898{
13899 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013900 bool vpd_vers = false;
13901
13902 if (tp->fw_ver[0] != 0)
13903 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013904
Joe Perches63c3a662011-04-26 08:12:10 +000013905 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013906 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013907 return;
13908 }
13909
Matt Carlsonacd9c112009-02-25 14:26:33 +000013910 if (tg3_nvram_read(tp, 0, &val))
13911 return;
13912
13913 if (val == TG3_EEPROM_MAGIC)
13914 tg3_read_bc_ver(tp);
13915 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13916 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013917 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13918 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013919 else
13920 return;
13921
Matt Carlsonc9cab242011-07-13 09:27:27 +000013922 if (vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013923 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013924
Matt Carlsonc9cab242011-07-13 09:27:27 +000013925 if (tg3_flag(tp, ENABLE_APE)) {
13926 if (tg3_flag(tp, ENABLE_ASF))
13927 tg3_read_dash_ver(tp);
13928 } else if (tg3_flag(tp, ENABLE_ASF)) {
13929 tg3_read_mgmtfw_ver(tp);
13930 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070013931
Matt Carlson75f99362010-04-05 10:19:24 +000013932done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013933 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013934}
13935
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013936static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13937{
Joe Perches63c3a662011-04-26 08:12:10 +000013938 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013939 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013940 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013941 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013942 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013943 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013944}
13945
Matt Carlson41434702011-03-09 16:58:22 +000013946static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013947 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13948 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13949 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13950 { },
13951};
13952
Matt Carlson16c7fa72012-02-13 10:20:10 +000013953static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
13954{
13955 struct pci_dev *peer;
13956 unsigned int func, devnr = tp->pdev->devfn & ~7;
13957
13958 for (func = 0; func < 8; func++) {
13959 peer = pci_get_slot(tp->pdev->bus, devnr | func);
13960 if (peer && peer != tp->pdev)
13961 break;
13962 pci_dev_put(peer);
13963 }
13964 /* 5704 can be configured in single-port mode, set peer to
13965 * tp->pdev in that case.
13966 */
13967 if (!peer) {
13968 peer = tp->pdev;
13969 return peer;
13970 }
13971
13972 /*
13973 * We don't need to keep the refcount elevated; there's no way
13974 * to remove one half of this device without removing the other
13975 */
13976 pci_dev_put(peer);
13977
13978 return peer;
13979}
13980
Matt Carlson42b123b2012-02-13 15:20:13 +000013981static void __devinit tg3_detect_asic_rev(struct tg3 *tp, u32 misc_ctrl_reg)
13982{
13983 tp->pci_chip_rev_id = misc_ctrl_reg >> MISC_HOST_CTRL_CHIPREV_SHIFT;
13984 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13985 u32 reg;
13986
13987 /* All devices that use the alternate
13988 * ASIC REV location have a CPMU.
13989 */
13990 tg3_flag_set(tp, CPMU_PRESENT);
13991
13992 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13993 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
13994 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13995 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
13996 reg = TG3PCI_GEN2_PRODID_ASICREV;
13997 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13998 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13999 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
14000 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
14001 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14002 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
14003 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57762 ||
14004 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57766 ||
14005 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57782 ||
14006 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57786)
14007 reg = TG3PCI_GEN15_PRODID_ASICREV;
14008 else
14009 reg = TG3PCI_PRODID_ASICREV;
14010
14011 pci_read_config_dword(tp->pdev, reg, &tp->pci_chip_rev_id);
14012 }
14013
14014 /* Wrong chip ID in 5752 A0. This code can be removed later
14015 * as A0 is not in production.
14016 */
14017 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
14018 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
14019
14020 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14021 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14022 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14023 tg3_flag_set(tp, 5717_PLUS);
14024
14025 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
14026 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57766)
14027 tg3_flag_set(tp, 57765_CLASS);
14028
14029 if (tg3_flag(tp, 57765_CLASS) || tg3_flag(tp, 5717_PLUS))
14030 tg3_flag_set(tp, 57765_PLUS);
14031
14032 /* Intentionally exclude ASIC_REV_5906 */
14033 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
14034 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
14035 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14036 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
14037 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14038 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14039 tg3_flag(tp, 57765_PLUS))
14040 tg3_flag_set(tp, 5755_PLUS);
14041
14042 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
14043 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
14044 tg3_flag_set(tp, 5780_CLASS);
14045
14046 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14047 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14048 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
14049 tg3_flag(tp, 5755_PLUS) ||
14050 tg3_flag(tp, 5780_CLASS))
14051 tg3_flag_set(tp, 5750_PLUS);
14052
14053 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14054 tg3_flag(tp, 5750_PLUS))
14055 tg3_flag_set(tp, 5705_PLUS);
14056}
14057
Linus Torvalds1da177e2005-04-16 15:20:36 -070014058static int __devinit tg3_get_invariants(struct tg3 *tp)
14059{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014060 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014061 u32 pci_state_reg, grc_misc_cfg;
14062 u32 val;
14063 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014064 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014065
Linus Torvalds1da177e2005-04-16 15:20:36 -070014066 /* Force memory write invalidate off. If we leave it on,
14067 * then on 5700_BX chips we have to enable a workaround.
14068 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
14069 * to match the cacheline size. The Broadcom driver have this
14070 * workaround but turns MWI off all the times so never uses
14071 * it. This seems to suggest that the workaround is insufficient.
14072 */
14073 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14074 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
14075 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14076
Matt Carlson16821282011-07-13 09:27:28 +000014077 /* Important! -- Make sure register accesses are byteswapped
14078 * correctly. Also, for those chips that require it, make
14079 * sure that indirect register accesses are enabled before
14080 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014081 */
14082 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14083 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000014084 tp->misc_host_ctrl |= (misc_ctrl_reg &
14085 MISC_HOST_CTRL_CHIPREV);
14086 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14087 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014088
Matt Carlson42b123b2012-02-13 15:20:13 +000014089 tg3_detect_asic_rev(tp, misc_ctrl_reg);
Michael Chanff645be2005-04-21 17:09:53 -070014090
Michael Chan68929142005-08-09 20:17:14 -070014091 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
14092 * we need to disable memory and use config. cycles
14093 * only to access all registers. The 5702/03 chips
14094 * can mistakenly decode the special cycles from the
14095 * ICH chipsets as memory write cycles, causing corruption
14096 * of register and memory space. Only certain ICH bridges
14097 * will drive special cycles with non-zero data during the
14098 * address phase which can fall within the 5703's address
14099 * range. This is not an ICH bug as the PCI spec allows
14100 * non-zero address during special cycles. However, only
14101 * these ICH bridges are known to drive non-zero addresses
14102 * during special cycles.
14103 *
14104 * Since special cycles do not cross PCI bridges, we only
14105 * enable this workaround if the 5703 is on the secondary
14106 * bus of these ICH bridges.
14107 */
14108 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
14109 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
14110 static struct tg3_dev_id {
14111 u32 vendor;
14112 u32 device;
14113 u32 rev;
14114 } ich_chipsets[] = {
14115 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
14116 PCI_ANY_ID },
14117 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
14118 PCI_ANY_ID },
14119 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
14120 0xa },
14121 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
14122 PCI_ANY_ID },
14123 { },
14124 };
14125 struct tg3_dev_id *pci_id = &ich_chipsets[0];
14126 struct pci_dev *bridge = NULL;
14127
14128 while (pci_id->vendor != 0) {
14129 bridge = pci_get_device(pci_id->vendor, pci_id->device,
14130 bridge);
14131 if (!bridge) {
14132 pci_id++;
14133 continue;
14134 }
14135 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070014136 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070014137 continue;
14138 }
14139 if (bridge->subordinate &&
14140 (bridge->subordinate->number ==
14141 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014142 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070014143 pci_dev_put(bridge);
14144 break;
14145 }
14146 }
14147 }
14148
Matt Carlson6ff6f812011-05-19 12:12:54 +000014149 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070014150 static struct tg3_dev_id {
14151 u32 vendor;
14152 u32 device;
14153 } bridge_chipsets[] = {
14154 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
14155 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
14156 { },
14157 };
14158 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
14159 struct pci_dev *bridge = NULL;
14160
14161 while (pci_id->vendor != 0) {
14162 bridge = pci_get_device(pci_id->vendor,
14163 pci_id->device,
14164 bridge);
14165 if (!bridge) {
14166 pci_id++;
14167 continue;
14168 }
14169 if (bridge->subordinate &&
14170 (bridge->subordinate->number <=
14171 tp->pdev->bus->number) &&
14172 (bridge->subordinate->subordinate >=
14173 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014174 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070014175 pci_dev_put(bridge);
14176 break;
14177 }
14178 }
14179 }
14180
Michael Chan4a29cc22006-03-19 13:21:12 -080014181 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
14182 * DMA addresses > 40-bit. This bridge may have other additional
14183 * 57xx devices behind it in some 4-port NIC designs for example.
14184 * Any tg3 device found behind the bridge will also need the 40-bit
14185 * DMA workaround.
14186 */
Matt Carlson42b123b2012-02-13 15:20:13 +000014187 if (tg3_flag(tp, 5780_CLASS)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014188 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070014189 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000014190 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080014191 struct pci_dev *bridge = NULL;
14192
14193 do {
14194 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
14195 PCI_DEVICE_ID_SERVERWORKS_EPB,
14196 bridge);
14197 if (bridge && bridge->subordinate &&
14198 (bridge->subordinate->number <=
14199 tp->pdev->bus->number) &&
14200 (bridge->subordinate->subordinate >=
14201 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000014202 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080014203 pci_dev_put(bridge);
14204 break;
14205 }
14206 } while (bridge);
14207 }
Michael Chan4cf78e42005-07-25 12:29:19 -070014208
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014209 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000014210 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070014211 tp->pdev_peer = tg3_find_peer(tp);
14212
Matt Carlson507399f2009-11-13 13:03:37 +000014213 /* Determine TSO capabilities */
Matt Carlsona0512942011-07-27 14:20:54 +000014214 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000014215 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000014216 else if (tg3_flag(tp, 57765_PLUS))
14217 tg3_flag_set(tp, HW_TSO_3);
14218 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000014219 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014220 tg3_flag_set(tp, HW_TSO_2);
14221 else if (tg3_flag(tp, 5750_PLUS)) {
14222 tg3_flag_set(tp, HW_TSO_1);
14223 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014224 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
14225 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000014226 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014227 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14228 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
14229 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014230 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000014231 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
14232 tp->fw_needed = FIRMWARE_TG3TSO5;
14233 else
14234 tp->fw_needed = FIRMWARE_TG3TSO;
14235 }
14236
Matt Carlsondabc5c62011-05-19 12:12:52 +000014237 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014238 if (tg3_flag(tp, HW_TSO_1) ||
14239 tg3_flag(tp, HW_TSO_2) ||
14240 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014241 tp->fw_needed) {
14242 /* For firmware TSO, assume ASF is disabled.
14243 * We'll disable TSO later if we discover ASF
14244 * is enabled in tg3_get_eeprom_hw_cfg().
14245 */
Matt Carlsondabc5c62011-05-19 12:12:52 +000014246 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014247 } else {
Matt Carlsondabc5c62011-05-19 12:12:52 +000014248 tg3_flag_clear(tp, TSO_CAPABLE);
14249 tg3_flag_clear(tp, TSO_BUG);
14250 tp->fw_needed = NULL;
14251 }
14252
14253 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
14254 tp->fw_needed = FIRMWARE_TG3;
14255
Matt Carlson507399f2009-11-13 13:03:37 +000014256 tp->irq_max = 1;
14257
Joe Perches63c3a662011-04-26 08:12:10 +000014258 if (tg3_flag(tp, 5750_PLUS)) {
14259 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014260 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
14261 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
14262 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
14263 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
14264 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000014265 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070014266
Joe Perches63c3a662011-04-26 08:12:10 +000014267 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070014268 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014269 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070014270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014271
Joe Perches63c3a662011-04-26 08:12:10 +000014272 if (tg3_flag(tp, 57765_PLUS)) {
14273 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000014274 tp->irq_max = TG3_IRQ_MAX_VECS;
Matt Carlson90415472011-12-16 13:33:23 +000014275 tg3_rss_init_dflt_indir_tbl(tp);
Matt Carlson507399f2009-11-13 13:03:37 +000014276 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014277 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000014278
Matt Carlsonb7abee62012-06-07 12:56:54 +000014279 if (tg3_flag(tp, 5755_PLUS) ||
14280 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000014281 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014282
Matt Carlsone31aa982011-07-27 14:20:53 +000014283 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona4cb4282011-12-14 11:09:58 +000014284 tp->dma_limit = TG3_TX_BD_DMA_MAX_4K;
Matt Carlsone31aa982011-07-27 14:20:53 +000014285
Matt Carlsonfa6b2aa2011-11-21 15:01:19 +000014286 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14287 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14288 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000014289 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000014290
Joe Perches63c3a662011-04-26 08:12:10 +000014291 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlsona0512942011-07-27 14:20:54 +000014292 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000014293 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000014294
Joe Perches63c3a662011-04-26 08:12:10 +000014295 if (!tg3_flag(tp, 5705_PLUS) ||
14296 tg3_flag(tp, 5780_CLASS) ||
14297 tg3_flag(tp, USE_JUMBO_BDFLAG))
14298 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070014299
Matt Carlson52f44902008-11-21 17:17:04 -080014300 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14301 &pci_state_reg);
14302
Jon Mason708ebb3a2011-06-27 12:56:50 +000014303 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014304 u16 lnkctl;
14305
Joe Perches63c3a662011-04-26 08:12:10 +000014306 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080014307
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014308 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +000014309 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014310 &lnkctl);
14311 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000014312 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
14313 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000014314 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000014315 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000014316 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080014317 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014318 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000014319 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
14320 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000014321 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000014322 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000014323 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080014324 }
Matt Carlson52f44902008-11-21 17:17:04 -080014325 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000014326 /* BCM5785 devices are effectively PCIe devices, and should
14327 * follow PCIe codepaths, but do not have a PCIe capabilities
14328 * section.
Matt Carlson93a700a2011-08-31 11:44:54 +000014329 */
Joe Perches63c3a662011-04-26 08:12:10 +000014330 tg3_flag_set(tp, PCI_EXPRESS);
14331 } else if (!tg3_flag(tp, 5705_PLUS) ||
14332 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080014333 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
14334 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000014335 dev_err(&tp->pdev->dev,
14336 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080014337 return -EIO;
14338 }
14339
14340 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000014341 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080014342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014343
Michael Chan399de502005-10-03 14:02:39 -070014344 /* If we have an AMD 762 or VIA K8T800 chipset, write
14345 * reordering to the mailbox registers done by the host
14346 * controller can cause major troubles. We read back from
14347 * every mailbox register write to force the writes to be
14348 * posted to the chip in order.
14349 */
Matt Carlson41434702011-03-09 16:58:22 +000014350 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014351 !tg3_flag(tp, PCI_EXPRESS))
14352 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070014353
Matt Carlson69fc4052008-12-21 20:19:57 -080014354 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
14355 &tp->pci_cacheline_sz);
14356 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14357 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014358 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14359 tp->pci_lat_timer < 64) {
14360 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080014361 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14362 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014363 }
14364
Matt Carlson16821282011-07-13 09:27:28 +000014365 /* Important! -- It is critical that the PCI-X hw workaround
14366 * situation is decided before the first MMIO register access.
14367 */
Matt Carlson52f44902008-11-21 17:17:04 -080014368 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
14369 /* 5700 BX chips need to have their TX producer index
14370 * mailboxes written twice to workaround a bug.
14371 */
Joe Perches63c3a662011-04-26 08:12:10 +000014372 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070014373
Matt Carlson52f44902008-11-21 17:17:04 -080014374 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014375 *
14376 * The workaround is to use indirect register accesses
14377 * for all chip writes not to mailbox registers.
14378 */
Joe Perches63c3a662011-04-26 08:12:10 +000014379 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014380 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014381
Joe Perches63c3a662011-04-26 08:12:10 +000014382 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014383
14384 /* The chip can have it's power management PCI config
14385 * space registers clobbered due to this bug.
14386 * So explicitly force the chip into D0 here.
14387 */
Matt Carlson9974a352007-10-07 23:27:28 -070014388 pci_read_config_dword(tp->pdev,
14389 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014390 &pm_reg);
14391 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
14392 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070014393 pci_write_config_dword(tp->pdev,
14394 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014395 pm_reg);
14396
14397 /* Also, force SERR#/PERR# in PCI command. */
14398 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14399 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
14400 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14401 }
14402 }
14403
Linus Torvalds1da177e2005-04-16 15:20:36 -070014404 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014405 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014406 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014407 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014408
14409 /* Chip-specific fixup from Broadcom driver */
14410 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
14411 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
14412 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
14413 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
14414 }
14415
Michael Chan1ee582d2005-08-09 20:16:46 -070014416 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070014417 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014418 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070014419 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070014420 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014421 tp->write32_tx_mbox = tg3_write32;
14422 tp->write32_rx_mbox = tg3_write32;
14423
14424 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000014425 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070014426 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014427 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014428 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014429 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14430 /*
14431 * Back to back register writes can cause problems on these
14432 * chips, the workaround is to read back all reg writes
14433 * except those to mailbox regs.
14434 *
14435 * See tg3_write_indirect_reg32().
14436 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014437 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014438 }
14439
Joe Perches63c3a662011-04-26 08:12:10 +000014440 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014441 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014442 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014443 tp->write32_rx_mbox = tg3_write_flush_reg32;
14444 }
Michael Chan20094932005-08-09 20:16:32 -070014445
Joe Perches63c3a662011-04-26 08:12:10 +000014446 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014447 tp->read32 = tg3_read_indirect_reg32;
14448 tp->write32 = tg3_write_indirect_reg32;
14449 tp->read32_mbox = tg3_read_indirect_mbox;
14450 tp->write32_mbox = tg3_write_indirect_mbox;
14451 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14452 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14453
14454 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014455 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014456
14457 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14458 pci_cmd &= ~PCI_COMMAND_MEMORY;
14459 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14460 }
Michael Chanb5d37722006-09-27 16:06:21 -070014461 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14462 tp->read32_mbox = tg3_read32_mbox_5906;
14463 tp->write32_mbox = tg3_write32_mbox_5906;
14464 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14465 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14466 }
Michael Chan68929142005-08-09 20:17:14 -070014467
Michael Chanbbadf502006-04-06 21:46:34 -070014468 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014469 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014470 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014471 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014472 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014473
Matt Carlson16821282011-07-13 09:27:28 +000014474 /* The memory arbiter has to be enabled in order for SRAM accesses
14475 * to succeed. Normally on powerup the tg3 chip firmware will make
14476 * sure it is enabled, but other entities such as system netboot
14477 * code might disable it.
14478 */
14479 val = tr32(MEMARB_MODE);
14480 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14481
Matt Carlson9dc5e342011-11-04 09:15:02 +000014482 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14483 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
14484 tg3_flag(tp, 5780_CLASS)) {
14485 if (tg3_flag(tp, PCIX_MODE)) {
14486 pci_read_config_dword(tp->pdev,
14487 tp->pcix_cap + PCI_X_STATUS,
14488 &val);
14489 tp->pci_fn = val & 0x7;
14490 }
14491 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
14492 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14493 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14494 NIC_SRAM_CPMUSTAT_SIG) {
14495 tp->pci_fn = val & TG3_CPMU_STATUS_FMSK_5717;
14496 tp->pci_fn = tp->pci_fn ? 1 : 0;
14497 }
14498 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
14499 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
14500 tg3_read_mem(tp, NIC_SRAM_CPMU_STATUS, &val);
14501 if ((val & NIC_SRAM_CPMUSTAT_SIG_MSK) ==
14502 NIC_SRAM_CPMUSTAT_SIG) {
14503 tp->pci_fn = (val & TG3_CPMU_STATUS_FMSK_5719) >>
14504 TG3_CPMU_STATUS_FSHFT_5719;
14505 }
Matt Carlson69f11c92011-07-13 09:27:30 +000014506 }
14507
Michael Chan7d0c41e2005-04-21 17:06:20 -070014508 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014509 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014510 * determined before calling tg3_set_power_state() so that
14511 * we know whether or not to switch out of Vaux power.
14512 * When the flag is set, it means that GPIO1 is used for eeprom
14513 * write protect and also implies that it is a LOM where GPIOs
14514 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014515 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014516 tg3_get_eeprom_hw_cfg(tp);
14517
Matt Carlsoncf9ecf42011-11-28 09:41:03 +000014518 if (tp->fw_needed && tg3_flag(tp, ENABLE_ASF)) {
14519 tg3_flag_clear(tp, TSO_CAPABLE);
14520 tg3_flag_clear(tp, TSO_BUG);
14521 tp->fw_needed = NULL;
14522 }
14523
Joe Perches63c3a662011-04-26 08:12:10 +000014524 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014525 /* Allow reads and writes to the
14526 * APE register and memory space.
14527 */
14528 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000014529 PCISTATE_ALLOW_APE_SHMEM_WR |
14530 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014531 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14532 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014533
14534 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014535 }
14536
Matt Carlson16821282011-07-13 09:27:28 +000014537 /* Set up tp->grc_local_ctrl before calling
14538 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14539 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014540 * It is also used as eeprom write protect on LOMs.
14541 */
14542 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014543 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014544 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014545 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14546 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014547 /* Unused GPIO3 must be driven as output on 5752 because there
14548 * are no pull-up resistors on unused GPIO pins.
14549 */
14550 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14551 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014552
Matt Carlson321d32a2008-11-21 17:22:19 -080014553 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014554 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Matt Carlson55086ad2011-12-14 11:09:59 +000014555 tg3_flag(tp, 57765_CLASS))
Michael Chanaf36e6b2006-03-23 01:28:06 -080014556 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14557
Matt Carlson8d519ab2009-04-20 06:58:01 +000014558 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14559 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014560 /* Turn off the debug UART. */
14561 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014562 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014563 /* Keep VMain power. */
14564 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14565 GRC_LCLCTRL_GPIO_OUTPUT0;
14566 }
14567
Matt Carlson16821282011-07-13 09:27:28 +000014568 /* Switch out of Vaux if it is a NIC */
14569 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014570
Linus Torvalds1da177e2005-04-16 15:20:36 -070014571 /* Derive initial jumbo mode from MTU assigned in
14572 * ether_setup() via the alloc_etherdev() call
14573 */
Joe Perches63c3a662011-04-26 08:12:10 +000014574 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14575 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014576
14577 /* Determine WakeOnLan speed to use. */
14578 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14579 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14580 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14581 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014582 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014583 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014584 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014585 }
14586
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014587 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014588 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014589
Linus Torvalds1da177e2005-04-16 15:20:36 -070014590 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014591 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14592 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014593 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014594 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014595 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14596 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14597 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014598
14599 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14600 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014601 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014602 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014603 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014604
Joe Perches63c3a662011-04-26 08:12:10 +000014605 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014606 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014607 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014608 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014609 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014610 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014611 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014612 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14613 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014614 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14615 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014616 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014617 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014618 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014619 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014620 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014622
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014623 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14624 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14625 tp->phy_otp = tg3_read_otp_phycfg(tp);
14626 if (tp->phy_otp == 0)
14627 tp->phy_otp = TG3_OTP_DEFAULT;
14628 }
14629
Joe Perches63c3a662011-04-26 08:12:10 +000014630 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014631 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14632 else
14633 tp->mi_mode = MAC_MI_MODE_BASE;
14634
Linus Torvalds1da177e2005-04-16 15:20:36 -070014635 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014636 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14637 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14638 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14639
Matt Carlson4d958472011-04-20 07:57:35 +000014640 /* Set these bits to enable statistics workaround. */
14641 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14642 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14643 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14644 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14645 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14646 }
14647
Matt Carlson321d32a2008-11-21 17:22:19 -080014648 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14649 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014650 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014651
Matt Carlson158d7ab2008-05-29 01:37:54 -070014652 err = tg3_mdio_init(tp);
14653 if (err)
14654 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014655
14656 /* Initialize data/descriptor byte/word swapping. */
14657 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014658 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14659 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14660 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14661 GRC_MODE_B2HRX_ENABLE |
14662 GRC_MODE_HTX2B_ENABLE |
14663 GRC_MODE_HOST_STACKUP);
14664 else
14665 val &= GRC_MODE_HOST_STACKUP;
14666
Linus Torvalds1da177e2005-04-16 15:20:36 -070014667 tw32(GRC_MODE, val | tp->grc_mode);
14668
14669 tg3_switch_clocks(tp);
14670
14671 /* Clear this out for sanity. */
14672 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14673
14674 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14675 &pci_state_reg);
14676 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014677 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014678 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14679
14680 if (chiprevid == CHIPREV_ID_5701_A0 ||
14681 chiprevid == CHIPREV_ID_5701_B0 ||
14682 chiprevid == CHIPREV_ID_5701_B2 ||
14683 chiprevid == CHIPREV_ID_5701_B5) {
14684 void __iomem *sram_base;
14685
14686 /* Write some dummy words into the SRAM status block
14687 * area, see if it reads back correctly. If the return
14688 * value is bad, force enable the PCIX workaround.
14689 */
14690 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14691
14692 writel(0x00000000, sram_base);
14693 writel(0x00000000, sram_base + 4);
14694 writel(0xffffffff, sram_base + 4);
14695 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014696 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014697 }
14698 }
14699
14700 udelay(50);
14701 tg3_nvram_init(tp);
14702
14703 grc_misc_cfg = tr32(GRC_MISC_CFG);
14704 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14705
Linus Torvalds1da177e2005-04-16 15:20:36 -070014706 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14707 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14708 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014709 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014710
Joe Perches63c3a662011-04-26 08:12:10 +000014711 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000014712 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014713 tg3_flag_set(tp, TAGGED_STATUS);
14714 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014715 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14716 HOSTCC_MODE_CLRTICK_TXBD);
14717
14718 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14719 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14720 tp->misc_host_ctrl);
14721 }
14722
Matt Carlson3bda1252008-08-15 14:08:22 -070014723 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014724 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014725 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014726 else
Matt Carlson6e01b202011-08-19 13:58:20 +000014727 tp->mac_mode = 0;
Matt Carlson3bda1252008-08-15 14:08:22 -070014728
Linus Torvalds1da177e2005-04-16 15:20:36 -070014729 /* these are limited to 10/100 only */
14730 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14731 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14732 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14733 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14734 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14735 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14736 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14737 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14738 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014739 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14740 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014741 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014742 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14743 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014744 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14745 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014746
14747 err = tg3_phy_probe(tp);
14748 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014749 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014750 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014751 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014752 }
14753
Matt Carlson184b8902010-04-05 10:19:25 +000014754 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014755 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014756
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014757 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14758 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014759 } else {
14760 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014761 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014762 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014763 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014764 }
14765
14766 /* 5700 {AX,BX} chips have a broken status block link
14767 * change bit implementation, so we must use the
14768 * status register in those cases.
14769 */
14770 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014771 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014772 else
Joe Perches63c3a662011-04-26 08:12:10 +000014773 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014774
14775 /* The led_ctrl is set during tg3_phy_probe, here we might
14776 * have to force the link status polling mechanism based
14777 * upon subsystem IDs.
14778 */
14779 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014780 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014781 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14782 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014783 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014784 }
14785
14786 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014787 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014788 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014789 else
Joe Perches63c3a662011-04-26 08:12:10 +000014790 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014791
Eric Dumazet9205fd92011-11-18 06:47:01 +000014792 tp->rx_offset = NET_SKB_PAD + NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014793 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014794 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014795 tg3_flag(tp, PCIX_MODE)) {
Eric Dumazet9205fd92011-11-18 06:47:01 +000014796 tp->rx_offset = NET_SKB_PAD;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014797#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014798 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014799#endif
14800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014801
Matt Carlson2c49a442010-09-30 10:34:35 +000014802 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14803 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014804 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14805
Matt Carlson2c49a442010-09-30 10:34:35 +000014806 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014807
14808 /* Increment the rx prod index on the rx std ring by at most
14809 * 8 for these chips to workaround hw errata.
14810 */
14811 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14812 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14813 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14814 tp->rx_std_max_post = 8;
14815
Joe Perches63c3a662011-04-26 08:12:10 +000014816 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014817 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14818 PCIE_PWR_MGMT_L1_THRESH_MSK;
14819
Linus Torvalds1da177e2005-04-16 15:20:36 -070014820 return err;
14821}
14822
David S. Miller49b6e95f2007-03-29 01:38:42 -070014823#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014824static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14825{
14826 struct net_device *dev = tp->dev;
14827 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014828 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014829 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014830 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014831
David S. Miller49b6e95f2007-03-29 01:38:42 -070014832 addr = of_get_property(dp, "local-mac-address", &len);
14833 if (addr && len == 6) {
14834 memcpy(dev->dev_addr, addr, 6);
14835 memcpy(dev->perm_addr, dev->dev_addr, 6);
14836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014837 }
14838 return -ENODEV;
14839}
14840
14841static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14842{
14843 struct net_device *dev = tp->dev;
14844
14845 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014846 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014847 return 0;
14848}
14849#endif
14850
14851static int __devinit tg3_get_device_address(struct tg3 *tp)
14852{
14853 struct net_device *dev = tp->dev;
14854 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014855 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014856
David S. Miller49b6e95f2007-03-29 01:38:42 -070014857#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014858 if (!tg3_get_macaddr_sparc(tp))
14859 return 0;
14860#endif
14861
14862 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014863 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014864 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014865 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14866 mac_offset = 0xcc;
14867 if (tg3_nvram_lock(tp))
14868 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14869 else
14870 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014871 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000014872 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014873 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000014874 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000014875 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014876 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014877 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014878
14879 /* First try to get it from MAC address mailbox. */
14880 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14881 if ((hi >> 16) == 0x484b) {
14882 dev->dev_addr[0] = (hi >> 8) & 0xff;
14883 dev->dev_addr[1] = (hi >> 0) & 0xff;
14884
14885 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14886 dev->dev_addr[2] = (lo >> 24) & 0xff;
14887 dev->dev_addr[3] = (lo >> 16) & 0xff;
14888 dev->dev_addr[4] = (lo >> 8) & 0xff;
14889 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014890
Michael Chan008652b2006-03-27 23:14:53 -080014891 /* Some old bootcode may report a 0 MAC address in SRAM */
14892 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14893 }
14894 if (!addr_ok) {
14895 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014896 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014897 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014898 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014899 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14900 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014901 }
14902 /* Finally just fetch it out of the MAC control regs. */
14903 else {
14904 hi = tr32(MAC_ADDR_0_HIGH);
14905 lo = tr32(MAC_ADDR_0_LOW);
14906
14907 dev->dev_addr[5] = lo & 0xff;
14908 dev->dev_addr[4] = (lo >> 8) & 0xff;
14909 dev->dev_addr[3] = (lo >> 16) & 0xff;
14910 dev->dev_addr[2] = (lo >> 24) & 0xff;
14911 dev->dev_addr[1] = hi & 0xff;
14912 dev->dev_addr[0] = (hi >> 8) & 0xff;
14913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014914 }
14915
14916 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014917#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014918 if (!tg3_get_default_macaddr_sparc(tp))
14919 return 0;
14920#endif
14921 return -EINVAL;
14922 }
John W. Linville2ff43692005-09-12 14:44:20 -070014923 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014924 return 0;
14925}
14926
David S. Miller59e6b432005-05-18 22:50:10 -070014927#define BOUNDARY_SINGLE_CACHELINE 1
14928#define BOUNDARY_MULTI_CACHELINE 2
14929
14930static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14931{
14932 int cacheline_size;
14933 u8 byte;
14934 int goal;
14935
14936 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14937 if (byte == 0)
14938 cacheline_size = 1024;
14939 else
14940 cacheline_size = (int) byte * 4;
14941
14942 /* On 5703 and later chips, the boundary bits have no
14943 * effect.
14944 */
14945 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14946 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014947 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014948 goto out;
14949
14950#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14951 goal = BOUNDARY_MULTI_CACHELINE;
14952#else
14953#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14954 goal = BOUNDARY_SINGLE_CACHELINE;
14955#else
14956 goal = 0;
14957#endif
14958#endif
14959
Joe Perches63c3a662011-04-26 08:12:10 +000014960 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014961 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14962 goto out;
14963 }
14964
David S. Miller59e6b432005-05-18 22:50:10 -070014965 if (!goal)
14966 goto out;
14967
14968 /* PCI controllers on most RISC systems tend to disconnect
14969 * when a device tries to burst across a cache-line boundary.
14970 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14971 *
14972 * Unfortunately, for PCI-E there are only limited
14973 * write-side controls for this, and thus for reads
14974 * we will still get the disconnects. We'll also waste
14975 * these PCI cycles for both read and write for chips
14976 * other than 5700 and 5701 which do not implement the
14977 * boundary bits.
14978 */
Joe Perches63c3a662011-04-26 08:12:10 +000014979 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014980 switch (cacheline_size) {
14981 case 16:
14982 case 32:
14983 case 64:
14984 case 128:
14985 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14986 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14987 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14988 } else {
14989 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14990 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14991 }
14992 break;
14993
14994 case 256:
14995 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14996 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14997 break;
14998
14999 default:
15000 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
15001 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
15002 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015003 }
Joe Perches63c3a662011-04-26 08:12:10 +000015004 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070015005 switch (cacheline_size) {
15006 case 16:
15007 case 32:
15008 case 64:
15009 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15010 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
15011 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
15012 break;
15013 }
15014 /* fallthrough */
15015 case 128:
15016 default:
15017 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
15018 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
15019 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015020 }
David S. Miller59e6b432005-05-18 22:50:10 -070015021 } else {
15022 switch (cacheline_size) {
15023 case 16:
15024 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15025 val |= (DMA_RWCTRL_READ_BNDRY_16 |
15026 DMA_RWCTRL_WRITE_BNDRY_16);
15027 break;
15028 }
15029 /* fallthrough */
15030 case 32:
15031 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15032 val |= (DMA_RWCTRL_READ_BNDRY_32 |
15033 DMA_RWCTRL_WRITE_BNDRY_32);
15034 break;
15035 }
15036 /* fallthrough */
15037 case 64:
15038 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15039 val |= (DMA_RWCTRL_READ_BNDRY_64 |
15040 DMA_RWCTRL_WRITE_BNDRY_64);
15041 break;
15042 }
15043 /* fallthrough */
15044 case 128:
15045 if (goal == BOUNDARY_SINGLE_CACHELINE) {
15046 val |= (DMA_RWCTRL_READ_BNDRY_128 |
15047 DMA_RWCTRL_WRITE_BNDRY_128);
15048 break;
15049 }
15050 /* fallthrough */
15051 case 256:
15052 val |= (DMA_RWCTRL_READ_BNDRY_256 |
15053 DMA_RWCTRL_WRITE_BNDRY_256);
15054 break;
15055 case 512:
15056 val |= (DMA_RWCTRL_READ_BNDRY_512 |
15057 DMA_RWCTRL_WRITE_BNDRY_512);
15058 break;
15059 case 1024:
15060 default:
15061 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
15062 DMA_RWCTRL_WRITE_BNDRY_1024);
15063 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070015064 }
David S. Miller59e6b432005-05-18 22:50:10 -070015065 }
15066
15067out:
15068 return val;
15069}
15070
Linus Torvalds1da177e2005-04-16 15:20:36 -070015071static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
15072{
15073 struct tg3_internal_buffer_desc test_desc;
15074 u32 sram_dma_descs;
15075 int i, ret;
15076
15077 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
15078
15079 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
15080 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
15081 tw32(RDMAC_STATUS, 0);
15082 tw32(WDMAC_STATUS, 0);
15083
15084 tw32(BUFMGR_MODE, 0);
15085 tw32(FTQ_RESET, 0);
15086
15087 test_desc.addr_hi = ((u64) buf_dma) >> 32;
15088 test_desc.addr_lo = buf_dma & 0xffffffff;
15089 test_desc.nic_mbuf = 0x00002100;
15090 test_desc.len = size;
15091
15092 /*
15093 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
15094 * the *second* time the tg3 driver was getting loaded after an
15095 * initial scan.
15096 *
15097 * Broadcom tells me:
15098 * ...the DMA engine is connected to the GRC block and a DMA
15099 * reset may affect the GRC block in some unpredictable way...
15100 * The behavior of resets to individual blocks has not been tested.
15101 *
15102 * Broadcom noted the GRC reset will also reset all sub-components.
15103 */
15104 if (to_device) {
15105 test_desc.cqid_sqid = (13 << 8) | 2;
15106
15107 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
15108 udelay(40);
15109 } else {
15110 test_desc.cqid_sqid = (16 << 8) | 7;
15111
15112 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
15113 udelay(40);
15114 }
15115 test_desc.flags = 0x00000005;
15116
15117 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
15118 u32 val;
15119
15120 val = *(((u32 *)&test_desc) + i);
15121 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
15122 sram_dma_descs + (i * sizeof(u32)));
15123 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
15124 }
15125 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
15126
Matt Carlson859a588792010-04-05 10:19:28 +000015127 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015128 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000015129 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070015130 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015131
15132 ret = -ENODEV;
15133 for (i = 0; i < 40; i++) {
15134 u32 val;
15135
15136 if (to_device)
15137 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
15138 else
15139 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
15140 if ((val & 0xffff) == sram_dma_descs) {
15141 ret = 0;
15142 break;
15143 }
15144
15145 udelay(100);
15146 }
15147
15148 return ret;
15149}
15150
David S. Millerded73402005-05-23 13:59:47 -070015151#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070015152
Matt Carlson41434702011-03-09 16:58:22 +000015153static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080015154 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
15155 { },
15156};
15157
Linus Torvalds1da177e2005-04-16 15:20:36 -070015158static int __devinit tg3_test_dma(struct tg3 *tp)
15159{
15160 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070015161 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015162 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015163
Matt Carlson4bae65c2010-11-24 08:31:52 +000015164 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
15165 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015166 if (!buf) {
15167 ret = -ENOMEM;
15168 goto out_nofree;
15169 }
15170
15171 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
15172 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
15173
David S. Miller59e6b432005-05-18 22:50:10 -070015174 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015175
Joe Perches63c3a662011-04-26 08:12:10 +000015176 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000015177 goto out;
15178
Joe Perches63c3a662011-04-26 08:12:10 +000015179 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015180 /* DMA read watermark not used on PCIE */
15181 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000015182 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070015183 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
15184 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015185 tp->dma_rwctrl |= 0x003f0000;
15186 else
15187 tp->dma_rwctrl |= 0x003f000f;
15188 } else {
15189 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15190 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
15191 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080015192 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015193
Michael Chan4a29cc22006-03-19 13:21:12 -080015194 /* If the 5704 is behind the EPB bridge, we can
15195 * do the less restrictive ONE_DMA workaround for
15196 * better performance.
15197 */
Joe Perches63c3a662011-04-26 08:12:10 +000015198 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080015199 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15200 tp->dma_rwctrl |= 0x8000;
15201 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015202 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
15203
Michael Chan49afdeb2007-02-13 12:17:03 -080015204 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
15205 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070015206 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080015207 tp->dma_rwctrl |=
15208 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
15209 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
15210 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070015211 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
15212 /* 5780 always in PCIX mode */
15213 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070015214 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
15215 /* 5714 always in PCIX mode */
15216 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015217 } else {
15218 tp->dma_rwctrl |= 0x001b000f;
15219 }
15220 }
15221
15222 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
15223 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
15224 tp->dma_rwctrl &= 0xfffffff0;
15225
15226 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
15227 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
15228 /* Remove this if it causes problems for some boards. */
15229 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
15230
15231 /* On 5700/5701 chips, we need to set this bit.
15232 * Otherwise the chip will issue cacheline transactions
15233 * to streamable DMA memory with not all the byte
15234 * enables turned on. This is an error on several
15235 * RISC PCI controllers, in particular sparc64.
15236 *
15237 * On 5703/5704 chips, this bit has been reassigned
15238 * a different meaning. In particular, it is used
15239 * on those chips to enable a PCI-X workaround.
15240 */
15241 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
15242 }
15243
15244 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15245
15246#if 0
15247 /* Unneeded, already done by tg3_get_invariants. */
15248 tg3_switch_clocks(tp);
15249#endif
15250
Linus Torvalds1da177e2005-04-16 15:20:36 -070015251 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
15252 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
15253 goto out;
15254
David S. Miller59e6b432005-05-18 22:50:10 -070015255 /* It is best to perform DMA test with maximum write burst size
15256 * to expose the 5700/5701 write DMA bug.
15257 */
15258 saved_dma_rwctrl = tp->dma_rwctrl;
15259 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15260 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15261
Linus Torvalds1da177e2005-04-16 15:20:36 -070015262 while (1) {
15263 u32 *p = buf, i;
15264
15265 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
15266 p[i] = i;
15267
15268 /* Send the buffer to the chip. */
15269 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
15270 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000015271 dev_err(&tp->pdev->dev,
15272 "%s: Buffer write failed. err = %d\n",
15273 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015274 break;
15275 }
15276
15277#if 0
15278 /* validate data reached card RAM correctly. */
15279 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15280 u32 val;
15281 tg3_read_mem(tp, 0x2100 + (i*4), &val);
15282 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000015283 dev_err(&tp->pdev->dev,
15284 "%s: Buffer corrupted on device! "
15285 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015286 /* ret = -ENODEV here? */
15287 }
15288 p[i] = 0;
15289 }
15290#endif
15291 /* Now read it back. */
15292 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
15293 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000015294 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
15295 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015296 break;
15297 }
15298
15299 /* Verify it. */
15300 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
15301 if (p[i] == i)
15302 continue;
15303
David S. Miller59e6b432005-05-18 22:50:10 -070015304 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15305 DMA_RWCTRL_WRITE_BNDRY_16) {
15306 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015307 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
15308 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15309 break;
15310 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000015311 dev_err(&tp->pdev->dev,
15312 "%s: Buffer corrupted on read back! "
15313 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015314 ret = -ENODEV;
15315 goto out;
15316 }
15317 }
15318
15319 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
15320 /* Success. */
15321 ret = 0;
15322 break;
15323 }
15324 }
David S. Miller59e6b432005-05-18 22:50:10 -070015325 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
15326 DMA_RWCTRL_WRITE_BNDRY_16) {
15327 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070015328 * now look for chipsets that are known to expose the
15329 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070015330 */
Matt Carlson41434702011-03-09 16:58:22 +000015331 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015332 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
15333 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000015334 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070015335 /* Safe to use the calculated DMA boundary. */
15336 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000015337 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070015338
David S. Miller59e6b432005-05-18 22:50:10 -070015339 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
15340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015341
15342out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000015343 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015344out_nofree:
15345 return ret;
15346}
15347
Linus Torvalds1da177e2005-04-16 15:20:36 -070015348static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
15349{
Joe Perches63c3a662011-04-26 08:12:10 +000015350 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000015351 tp->bufmgr_config.mbuf_read_dma_low_water =
15352 DEFAULT_MB_RDMA_LOW_WATER_5705;
15353 tp->bufmgr_config.mbuf_mac_rx_low_water =
15354 DEFAULT_MB_MACRX_LOW_WATER_57765;
15355 tp->bufmgr_config.mbuf_high_water =
15356 DEFAULT_MB_HIGH_WATER_57765;
15357
15358 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15359 DEFAULT_MB_RDMA_LOW_WATER_5705;
15360 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15361 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
15362 tp->bufmgr_config.mbuf_high_water_jumbo =
15363 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000015364 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070015365 tp->bufmgr_config.mbuf_read_dma_low_water =
15366 DEFAULT_MB_RDMA_LOW_WATER_5705;
15367 tp->bufmgr_config.mbuf_mac_rx_low_water =
15368 DEFAULT_MB_MACRX_LOW_WATER_5705;
15369 tp->bufmgr_config.mbuf_high_water =
15370 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070015371 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
15372 tp->bufmgr_config.mbuf_mac_rx_low_water =
15373 DEFAULT_MB_MACRX_LOW_WATER_5906;
15374 tp->bufmgr_config.mbuf_high_water =
15375 DEFAULT_MB_HIGH_WATER_5906;
15376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015377
Michael Chanfdfec1722005-07-25 12:31:48 -070015378 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15379 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
15380 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15381 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
15382 tp->bufmgr_config.mbuf_high_water_jumbo =
15383 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
15384 } else {
15385 tp->bufmgr_config.mbuf_read_dma_low_water =
15386 DEFAULT_MB_RDMA_LOW_WATER;
15387 tp->bufmgr_config.mbuf_mac_rx_low_water =
15388 DEFAULT_MB_MACRX_LOW_WATER;
15389 tp->bufmgr_config.mbuf_high_water =
15390 DEFAULT_MB_HIGH_WATER;
15391
15392 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15393 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
15394 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15395 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
15396 tp->bufmgr_config.mbuf_high_water_jumbo =
15397 DEFAULT_MB_HIGH_WATER_JUMBO;
15398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015399
15400 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
15401 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
15402}
15403
15404static char * __devinit tg3_phy_string(struct tg3 *tp)
15405{
Matt Carlson79eb6902010-02-17 15:17:03 +000015406 switch (tp->phy_id & TG3_PHY_ID_MASK) {
15407 case TG3_PHY_ID_BCM5400: return "5400";
15408 case TG3_PHY_ID_BCM5401: return "5401";
15409 case TG3_PHY_ID_BCM5411: return "5411";
15410 case TG3_PHY_ID_BCM5701: return "5701";
15411 case TG3_PHY_ID_BCM5703: return "5703";
15412 case TG3_PHY_ID_BCM5704: return "5704";
15413 case TG3_PHY_ID_BCM5705: return "5705";
15414 case TG3_PHY_ID_BCM5750: return "5750";
15415 case TG3_PHY_ID_BCM5752: return "5752";
15416 case TG3_PHY_ID_BCM5714: return "5714";
15417 case TG3_PHY_ID_BCM5780: return "5780";
15418 case TG3_PHY_ID_BCM5755: return "5755";
15419 case TG3_PHY_ID_BCM5787: return "5787";
15420 case TG3_PHY_ID_BCM5784: return "5784";
15421 case TG3_PHY_ID_BCM5756: return "5722/5756";
15422 case TG3_PHY_ID_BCM5906: return "5906";
15423 case TG3_PHY_ID_BCM5761: return "5761";
15424 case TG3_PHY_ID_BCM5718C: return "5718C";
15425 case TG3_PHY_ID_BCM5718S: return "5718S";
15426 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000015427 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000015428 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000015429 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070015430 case 0: return "serdes";
15431 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070015432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015433}
15434
Michael Chanf9804dd2005-09-27 12:13:10 -070015435static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
15436{
Joe Perches63c3a662011-04-26 08:12:10 +000015437 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015438 strcpy(str, "PCI Express");
15439 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000015440 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015441 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
15442
15443 strcpy(str, "PCIX:");
15444
15445 if ((clock_ctrl == 7) ||
15446 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15447 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15448 strcat(str, "133MHz");
15449 else if (clock_ctrl == 0)
15450 strcat(str, "33MHz");
15451 else if (clock_ctrl == 2)
15452 strcat(str, "50MHz");
15453 else if (clock_ctrl == 4)
15454 strcat(str, "66MHz");
15455 else if (clock_ctrl == 6)
15456 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015457 } else {
15458 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015459 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015460 strcat(str, "66MHz");
15461 else
15462 strcat(str, "33MHz");
15463 }
Joe Perches63c3a662011-04-26 08:12:10 +000015464 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015465 strcat(str, ":32-bit");
15466 else
15467 strcat(str, ":64-bit");
15468 return str;
15469}
15470
David S. Miller15f98502005-05-18 22:49:26 -070015471static void __devinit tg3_init_coal(struct tg3 *tp)
15472{
15473 struct ethtool_coalesce *ec = &tp->coal;
15474
15475 memset(ec, 0, sizeof(*ec));
15476 ec->cmd = ETHTOOL_GCOALESCE;
15477 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15478 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15479 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15480 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15481 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15482 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15483 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15484 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15485 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15486
15487 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15488 HOSTCC_MODE_CLRTICK_TXBD)) {
15489 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15490 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15491 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15492 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15493 }
Michael Chand244c892005-07-05 14:42:33 -070015494
Joe Perches63c3a662011-04-26 08:12:10 +000015495 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015496 ec->rx_coalesce_usecs_irq = 0;
15497 ec->tx_coalesce_usecs_irq = 0;
15498 ec->stats_block_coalesce_usecs = 0;
15499 }
David S. Miller15f98502005-05-18 22:49:26 -070015500}
15501
Linus Torvalds1da177e2005-04-16 15:20:36 -070015502static int __devinit tg3_init_one(struct pci_dev *pdev,
15503 const struct pci_device_id *ent)
15504{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015505 struct net_device *dev;
15506 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015507 int i, err, pm_cap;
15508 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015509 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015510 u64 dma_mask, persist_dma_mask;
Michał Mirosławc8f44af2011-11-15 15:29:55 +000015511 netdev_features_t features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015512
Joe Perches05dbe002010-02-17 19:44:19 +000015513 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015514
15515 err = pci_enable_device(pdev);
15516 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015517 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015518 return err;
15519 }
15520
Linus Torvalds1da177e2005-04-16 15:20:36 -070015521 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15522 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015523 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015524 goto err_out_disable_pdev;
15525 }
15526
15527 pci_set_master(pdev);
15528
15529 /* Find power-management capability. */
15530 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15531 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015532 dev_err(&pdev->dev,
15533 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015534 err = -EIO;
15535 goto err_out_free_res;
15536 }
15537
Matt Carlson16821282011-07-13 09:27:28 +000015538 err = pci_set_power_state(pdev, PCI_D0);
15539 if (err) {
15540 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15541 goto err_out_free_res;
15542 }
15543
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015544 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015545 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070015546 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015547 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015548 }
15549
Linus Torvalds1da177e2005-04-16 15:20:36 -070015550 SET_NETDEV_DEV(dev, &pdev->dev);
15551
Linus Torvalds1da177e2005-04-16 15:20:36 -070015552 tp = netdev_priv(dev);
15553 tp->pdev = pdev;
15554 tp->dev = dev;
15555 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015556 tp->rx_mode = TG3_DEF_RX_MODE;
15557 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015558
Linus Torvalds1da177e2005-04-16 15:20:36 -070015559 if (tg3_debug > 0)
15560 tp->msg_enable = tg3_debug;
15561 else
15562 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15563
15564 /* The word/byte swap controls here control register access byte
15565 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15566 * setting below.
15567 */
15568 tp->misc_host_ctrl =
15569 MISC_HOST_CTRL_MASK_PCI_INT |
15570 MISC_HOST_CTRL_WORD_SWAP |
15571 MISC_HOST_CTRL_INDIR_ACCESS |
15572 MISC_HOST_CTRL_PCISTATE_RW;
15573
15574 /* The NONFRM (non-frame) byte/word swap controls take effect
15575 * on descriptor entries, anything which isn't packet data.
15576 *
15577 * The StrongARM chips on the board (one for tx, one for rx)
15578 * are running in big-endian mode.
15579 */
15580 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15581 GRC_MODE_WSWAP_NONFRM_DATA);
15582#ifdef __BIG_ENDIAN
15583 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15584#endif
15585 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015586 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015587 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015588
Matt Carlsond5fe4882008-11-21 17:20:32 -080015589 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015590 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015591 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015592 err = -ENOMEM;
15593 goto err_out_free_dev;
15594 }
15595
Matt Carlsonc9cab242011-07-13 09:27:27 +000015596 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15597 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
15598 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
15599 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
15600 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15601 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15602 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
15603 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
15604 tg3_flag_set(tp, ENABLE_APE);
15605 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
15606 if (!tp->aperegs) {
15607 dev_err(&pdev->dev,
15608 "Cannot map APE registers, aborting\n");
15609 err = -ENOMEM;
15610 goto err_out_iounmap;
15611 }
15612 }
15613
Linus Torvalds1da177e2005-04-16 15:20:36 -070015614 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15615 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015616
Linus Torvalds1da177e2005-04-16 15:20:36 -070015617 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015618 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015619 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015620 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015621
15622 err = tg3_get_invariants(tp);
15623 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015624 dev_err(&pdev->dev,
15625 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015626 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015627 }
15628
Michael Chan4a29cc22006-03-19 13:21:12 -080015629 /* The EPB bridge inside 5714, 5715, and 5780 and any
15630 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015631 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15632 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15633 * do DMA address check in tg3_start_xmit().
15634 */
Joe Perches63c3a662011-04-26 08:12:10 +000015635 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015636 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015637 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015638 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015639#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015640 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015641#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015642 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015643 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015644
15645 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015646 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015647 err = pci_set_dma_mask(pdev, dma_mask);
15648 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000015649 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080015650 err = pci_set_consistent_dma_mask(pdev,
15651 persist_dma_mask);
15652 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015653 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15654 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015655 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015656 }
15657 }
15658 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015659 if (err || dma_mask == DMA_BIT_MASK(32)) {
15660 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015661 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015662 dev_err(&pdev->dev,
15663 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015664 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015665 }
15666 }
15667
Michael Chanfdfec1722005-07-25 12:31:48 -070015668 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015669
Matt Carlson0da06062011-05-19 12:12:53 +000015670 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
15671
15672 /* 5700 B0 chips do not support checksumming correctly due
15673 * to hardware bugs.
15674 */
15675 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
15676 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
15677
15678 if (tg3_flag(tp, 5755_PLUS))
15679 features |= NETIF_F_IPV6_CSUM;
15680 }
15681
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015682 /* TSO is on by default on chips that support hardware TSO.
15683 * Firmware TSO on older chips gives lower performance, so it
15684 * is off by default, but can be enabled using ethtool.
15685 */
Joe Perches63c3a662011-04-26 08:12:10 +000015686 if ((tg3_flag(tp, HW_TSO_1) ||
15687 tg3_flag(tp, HW_TSO_2) ||
15688 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000015689 (features & NETIF_F_IP_CSUM))
15690 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015691 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000015692 if (features & NETIF_F_IPV6_CSUM)
15693 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015694 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015695 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015696 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15697 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015698 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015699 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000015700 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015702
Matt Carlsond542fe22011-05-19 16:02:43 +000015703 dev->features |= features;
15704 dev->vlan_features |= features;
15705
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015706 /*
15707 * Add loopback capability only for a subset of devices that support
15708 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15709 * loopback for the remaining devices.
15710 */
15711 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15712 !tg3_flag(tp, CPMU_PRESENT))
15713 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000015714 features |= NETIF_F_LOOPBACK;
15715
Matt Carlson0da06062011-05-19 12:12:53 +000015716 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015717
Linus Torvalds1da177e2005-04-16 15:20:36 -070015718 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015719 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015720 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015721 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015722 tp->rx_pending = 63;
15723 }
15724
Linus Torvalds1da177e2005-04-16 15:20:36 -070015725 err = tg3_get_device_address(tp);
15726 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015727 dev_err(&pdev->dev,
15728 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015729 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015730 }
15731
Matt Carlsonc88864d2007-11-12 21:07:01 -080015732 /*
15733 * Reset chip in case UNDI or EFI driver did not shutdown
15734 * DMA self test will enable WDMAC and we'll see (spurious)
15735 * pending DMA on the PCI bus at that point.
15736 */
15737 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15738 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15739 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15740 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15741 }
15742
15743 err = tg3_test_dma(tp);
15744 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015745 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015746 goto err_out_apeunmap;
15747 }
15748
Matt Carlson78f90dc2009-11-13 13:03:42 +000015749 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15750 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15751 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015752 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015753 struct tg3_napi *tnapi = &tp->napi[i];
15754
15755 tnapi->tp = tp;
15756 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15757
15758 tnapi->int_mbox = intmbx;
Matt Carlson93a700a2011-08-31 11:44:54 +000015759 if (i <= 4)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015760 intmbx += 0x8;
15761 else
15762 intmbx += 0x4;
15763
15764 tnapi->consmbox = rcvmbx;
15765 tnapi->prodmbox = sndmbx;
15766
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015767 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015768 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015769 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015770 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015771
Joe Perches63c3a662011-04-26 08:12:10 +000015772 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015773 break;
15774
15775 /*
15776 * If we support MSIX, we'll be using RSS. If we're using
15777 * RSS, the first vector only handles link interrupts and the
15778 * remaining vectors handle rx and tx interrupts. Reuse the
15779 * mailbox values for the next iteration. The values we setup
15780 * above are still useful for the single vectored mode.
15781 */
15782 if (!i)
15783 continue;
15784
15785 rcvmbx += 0x8;
15786
15787 if (sndmbx & 0x4)
15788 sndmbx -= 0x4;
15789 else
15790 sndmbx += 0xc;
15791 }
15792
Matt Carlsonc88864d2007-11-12 21:07:01 -080015793 tg3_init_coal(tp);
15794
Michael Chanc49a1562006-12-17 17:07:29 -080015795 pci_set_drvdata(pdev, dev);
15796
Matt Carlsoncd0d7222011-07-13 09:27:33 +000015797 if (tg3_flag(tp, 5717_PLUS)) {
15798 /* Resume a low-power mode */
15799 tg3_frob_aux_power(tp, false);
15800 }
15801
Matt Carlson21f76382012-02-22 12:35:21 +000015802 tg3_timer_init(tp);
15803
Linus Torvalds1da177e2005-04-16 15:20:36 -070015804 err = register_netdev(dev);
15805 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015806 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015807 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015808 }
15809
Joe Perches05dbe002010-02-17 19:44:19 +000015810 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15811 tp->board_part_number,
15812 tp->pci_chip_rev_id,
15813 tg3_bus_string(tp, str),
15814 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015815
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015816 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015817 struct phy_device *phydev;
15818 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015819 netdev_info(dev,
15820 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015821 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015822 } else {
15823 char *ethtype;
15824
15825 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15826 ethtype = "10/100Base-TX";
15827 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15828 ethtype = "1000Base-SX";
15829 else
15830 ethtype = "10/100/1000Base-T";
15831
Matt Carlson5129c3a2010-04-05 10:19:23 +000015832 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015833 "(WireSpeed[%d], EEE[%d])\n",
15834 tg3_phy_string(tp), ethtype,
15835 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15836 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015837 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015838
Joe Perches05dbe002010-02-17 19:44:19 +000015839 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015840 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015841 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015842 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015843 tg3_flag(tp, ENABLE_ASF) != 0,
15844 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015845 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15846 tp->dma_rwctrl,
15847 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15848 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015849
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015850 pci_save_state(pdev);
15851
Linus Torvalds1da177e2005-04-16 15:20:36 -070015852 return 0;
15853
Matt Carlson0d3031d2007-10-10 18:02:43 -070015854err_out_apeunmap:
15855 if (tp->aperegs) {
15856 iounmap(tp->aperegs);
15857 tp->aperegs = NULL;
15858 }
15859
Linus Torvalds1da177e2005-04-16 15:20:36 -070015860err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015861 if (tp->regs) {
15862 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015863 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015865
15866err_out_free_dev:
15867 free_netdev(dev);
15868
Matt Carlson16821282011-07-13 09:27:28 +000015869err_out_power_down:
15870 pci_set_power_state(pdev, PCI_D3hot);
15871
Linus Torvalds1da177e2005-04-16 15:20:36 -070015872err_out_free_res:
15873 pci_release_regions(pdev);
15874
15875err_out_disable_pdev:
15876 pci_disable_device(pdev);
15877 pci_set_drvdata(pdev, NULL);
15878 return err;
15879}
15880
15881static void __devexit tg3_remove_one(struct pci_dev *pdev)
15882{
15883 struct net_device *dev = pci_get_drvdata(pdev);
15884
15885 if (dev) {
15886 struct tg3 *tp = netdev_priv(dev);
15887
Jesper Juhle3c55302012-04-09 22:50:15 +020015888 release_firmware(tp->fw);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015889
Matt Carlsondb219972011-11-04 09:15:03 +000015890 tg3_reset_task_cancel(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015891
David S. Miller1805b2f2011-10-24 18:18:09 -040015892 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015893 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015894 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015895 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015896
Linus Torvalds1da177e2005-04-16 15:20:36 -070015897 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015898 if (tp->aperegs) {
15899 iounmap(tp->aperegs);
15900 tp->aperegs = NULL;
15901 }
Michael Chan68929142005-08-09 20:17:14 -070015902 if (tp->regs) {
15903 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015904 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015906 free_netdev(dev);
15907 pci_release_regions(pdev);
15908 pci_disable_device(pdev);
15909 pci_set_drvdata(pdev, NULL);
15910 }
15911}
15912
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015913#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015914static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015915{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015916 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015917 struct net_device *dev = pci_get_drvdata(pdev);
15918 struct tg3 *tp = netdev_priv(dev);
15919 int err;
15920
15921 if (!netif_running(dev))
15922 return 0;
15923
Matt Carlsondb219972011-11-04 09:15:03 +000015924 tg3_reset_task_cancel(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015925 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015926 tg3_netif_stop(tp);
15927
Matt Carlson21f76382012-02-22 12:35:21 +000015928 tg3_timer_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015929
David S. Millerf47c11e2005-06-24 20:18:35 -070015930 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015931 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015932 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015933
15934 netif_device_detach(dev);
15935
David S. Millerf47c11e2005-06-24 20:18:35 -070015936 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015937 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015938 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015939 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015940
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015941 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015942 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015943 int err2;
15944
David S. Millerf47c11e2005-06-24 20:18:35 -070015945 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015946
Joe Perches63c3a662011-04-26 08:12:10 +000015947 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015948 err2 = tg3_restart_hw(tp, 1);
15949 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015950 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015951
Matt Carlson21f76382012-02-22 12:35:21 +000015952 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015953
15954 netif_device_attach(dev);
15955 tg3_netif_start(tp);
15956
Michael Chanb9ec6c12006-07-25 16:37:27 -070015957out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015958 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015959
15960 if (!err2)
15961 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015962 }
15963
15964 return err;
15965}
15966
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015967static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015968{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015969 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015970 struct net_device *dev = pci_get_drvdata(pdev);
15971 struct tg3 *tp = netdev_priv(dev);
15972 int err;
15973
15974 if (!netif_running(dev))
15975 return 0;
15976
Linus Torvalds1da177e2005-04-16 15:20:36 -070015977 netif_device_attach(dev);
15978
David S. Millerf47c11e2005-06-24 20:18:35 -070015979 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015980
Joe Perches63c3a662011-04-26 08:12:10 +000015981 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015982 err = tg3_restart_hw(tp, 1);
15983 if (err)
15984 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015985
Matt Carlson21f76382012-02-22 12:35:21 +000015986 tg3_timer_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015987
Linus Torvalds1da177e2005-04-16 15:20:36 -070015988 tg3_netif_start(tp);
15989
Michael Chanb9ec6c12006-07-25 16:37:27 -070015990out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015991 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015992
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015993 if (!err)
15994 tg3_phy_start(tp);
15995
Michael Chanb9ec6c12006-07-25 16:37:27 -070015996 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015997}
15998
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015999static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016000#define TG3_PM_OPS (&tg3_pm_ops)
16001
16002#else
16003
16004#define TG3_PM_OPS NULL
16005
16006#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000016007
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016008/**
16009 * tg3_io_error_detected - called when PCI error is detected
16010 * @pdev: Pointer to PCI device
16011 * @state: The current pci connection state
16012 *
16013 * This function is called after a PCI bus error affecting
16014 * this device has been detected.
16015 */
16016static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
16017 pci_channel_state_t state)
16018{
16019 struct net_device *netdev = pci_get_drvdata(pdev);
16020 struct tg3 *tp = netdev_priv(netdev);
16021 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
16022
16023 netdev_info(netdev, "PCI I/O error detected\n");
16024
16025 rtnl_lock();
16026
16027 if (!netif_running(netdev))
16028 goto done;
16029
16030 tg3_phy_stop(tp);
16031
16032 tg3_netif_stop(tp);
16033
Matt Carlson21f76382012-02-22 12:35:21 +000016034 tg3_timer_stop(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016035
16036 /* Want to make sure that the reset task doesn't run */
Matt Carlsondb219972011-11-04 09:15:03 +000016037 tg3_reset_task_cancel(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016038
16039 netif_device_detach(netdev);
16040
16041 /* Clean up software state, even if MMIO is blocked */
16042 tg3_full_lock(tp, 0);
16043 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
16044 tg3_full_unlock(tp);
16045
16046done:
16047 if (state == pci_channel_io_perm_failure)
16048 err = PCI_ERS_RESULT_DISCONNECT;
16049 else
16050 pci_disable_device(pdev);
16051
16052 rtnl_unlock();
16053
16054 return err;
16055}
16056
16057/**
16058 * tg3_io_slot_reset - called after the pci bus has been reset.
16059 * @pdev: Pointer to PCI device
16060 *
16061 * Restart the card from scratch, as if from a cold-boot.
16062 * At this point, the card has exprienced a hard reset,
16063 * followed by fixups by BIOS, and has its config space
16064 * set up identically to what it was at cold boot.
16065 */
16066static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
16067{
16068 struct net_device *netdev = pci_get_drvdata(pdev);
16069 struct tg3 *tp = netdev_priv(netdev);
16070 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
16071 int err;
16072
16073 rtnl_lock();
16074
16075 if (pci_enable_device(pdev)) {
16076 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
16077 goto done;
16078 }
16079
16080 pci_set_master(pdev);
16081 pci_restore_state(pdev);
16082 pci_save_state(pdev);
16083
16084 if (!netif_running(netdev)) {
16085 rc = PCI_ERS_RESULT_RECOVERED;
16086 goto done;
16087 }
16088
16089 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000016090 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016091 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016092
16093 rc = PCI_ERS_RESULT_RECOVERED;
16094
16095done:
16096 rtnl_unlock();
16097
16098 return rc;
16099}
16100
16101/**
16102 * tg3_io_resume - called when traffic can start flowing again.
16103 * @pdev: Pointer to PCI device
16104 *
16105 * This callback is called when the error recovery driver tells
16106 * us that its OK to resume normal operation.
16107 */
16108static void tg3_io_resume(struct pci_dev *pdev)
16109{
16110 struct net_device *netdev = pci_get_drvdata(pdev);
16111 struct tg3 *tp = netdev_priv(netdev);
16112 int err;
16113
16114 rtnl_lock();
16115
16116 if (!netif_running(netdev))
16117 goto done;
16118
16119 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000016120 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016121 err = tg3_restart_hw(tp, 1);
16122 tg3_full_unlock(tp);
16123 if (err) {
16124 netdev_err(netdev, "Cannot restart hardware after reset.\n");
16125 goto done;
16126 }
16127
16128 netif_device_attach(netdev);
16129
Matt Carlson21f76382012-02-22 12:35:21 +000016130 tg3_timer_start(tp);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016131
16132 tg3_netif_start(tp);
16133
16134 tg3_phy_start(tp);
16135
16136done:
16137 rtnl_unlock();
16138}
16139
16140static struct pci_error_handlers tg3_err_handler = {
16141 .error_detected = tg3_io_error_detected,
16142 .slot_reset = tg3_io_slot_reset,
16143 .resume = tg3_io_resume
16144};
16145
Linus Torvalds1da177e2005-04-16 15:20:36 -070016146static struct pci_driver tg3_driver = {
16147 .name = DRV_MODULE_NAME,
16148 .id_table = tg3_pci_tbl,
16149 .probe = tg3_init_one,
16150 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000016151 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000016152 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016153};
16154
16155static int __init tg3_init(void)
16156{
Jeff Garzik29917622006-08-19 17:48:59 -040016157 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016158}
16159
16160static void __exit tg3_cleanup(void)
16161{
16162 pci_unregister_driver(&tg3_driver);
16163}
16164
16165module_init(tg3_init);
16166module_exit(tg3_cleanup);