blob: fa57e3d699deef083e5b036b0f99682c46e25fd1 [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 Carlsonb86fb2c2011-01-25 15:58:57 +00007 * Copyright (C) 2005-2011 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>
29#include <linux/ioport.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/etherdevice.h>
33#include <linux/skbuff.h>
34#include <linux/ethtool.h>
Matt Carlson3110f5f52010-12-06 08:28:50 +000035#include <linux/mdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070037#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070038#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/if_vlan.h>
40#include <linux/ip.h>
41#include <linux/tcp.h>
42#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070043#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020044#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080045#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030048#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <asm/system.h>
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
Matt Carlson64cad2a2011-04-25 12:42:50 +000091#define TG3_MIN_NUM 118
Matt Carlson6867c842010-07-11 09:31:44 +000092#define DRV_MODULE_VERSION \
93 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Matt Carlson64cad2a2011-04-25 12:42:50 +000094#define DRV_MODULE_RELDATE "April 22, 2011"
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#define TG3_DEF_MAC_MODE 0
97#define TG3_DEF_RX_MODE 0
98#define TG3_DEF_TX_MODE 0
99#define TG3_DEF_MSG_ENABLE \
100 (NETIF_MSG_DRV | \
101 NETIF_MSG_PROBE | \
102 NETIF_MSG_LINK | \
103 NETIF_MSG_TIMER | \
104 NETIF_MSG_IFDOWN | \
105 NETIF_MSG_IFUP | \
106 NETIF_MSG_RX_ERR | \
107 NETIF_MSG_TX_ERR)
108
109/* length of time before we decide the hardware is borked,
110 * and dev->tx_timeout() should be called to fix the problem
111 */
Joe Perches63c3a662011-04-26 08:12:10 +0000112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define TG3_TX_TIMEOUT (5 * HZ)
114
115/* hardware minimum and maximum for a single frame's data payload */
116#define TG3_MIN_MTU 60
117#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000118 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/* These numbers seem to be hard coded in the NIC firmware somehow.
121 * You can't change the ring sizes, but you can change where you place
122 * them in the NIC onboard memory.
123 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000124#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000125 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000126 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000128#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000129 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000130 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#define TG3_DEF_RX_JUMBO_RING_PENDING 100
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000132#define TG3_RSS_INDIR_TBL_SIZE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134/* Do not place this n-ring entries value into the tp struct itself,
135 * we really want to expose these constants to GCC so that modulo et
136 * al. operations are done with shifts and masks instead of with
137 * hw multiply/modulo instructions. Another solution would be to
138 * replace things like '% foo' with '& (foo - 1)'.
139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141#define TG3_TX_RING_SIZE 512
142#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
143
Matt Carlson2c49a442010-09-30 10:34:35 +0000144#define TG3_RX_STD_RING_BYTES(tp) \
145 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
146#define TG3_RX_JMB_RING_BYTES(tp) \
147 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
148#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000149 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
151 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
153
Matt Carlson287be122009-08-28 13:58:46 +0000154#define TG3_DMA_BYTE_ENAB 64
155
156#define TG3_RX_STD_DMA_SZ 1536
157#define TG3_RX_JMB_DMA_SZ 9046
158
159#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
160
161#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
162#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Matt Carlson2c49a442010-09-30 10:34:35 +0000164#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
165 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000166
Matt Carlson2c49a442010-09-30 10:34:35 +0000167#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
168 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000169
Matt Carlsond2757fc2010-04-12 06:58:27 +0000170/* Due to a hardware bug, the 5701 can only DMA to memory addresses
171 * that are at least dword aligned when used in PCIX mode. The driver
172 * works around this bug by double copying the packet. This workaround
173 * is built into the normal double copy length check for efficiency.
174 *
175 * However, the double copy is only necessary on those architectures
176 * where unaligned memory accesses are inefficient. For those architectures
177 * where unaligned memory accesses incur little penalty, we can reintegrate
178 * the 5701 in the normal rx path. Doing so saves a device structure
179 * dereference by hardcoding the double copy threshold in place.
180 */
181#define TG3_RX_COPY_THRESHOLD 256
182#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
183 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
184#else
185 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
186#endif
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000189#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Matt Carlsonad829262008-11-21 17:16:16 -0800191#define TG3_RAW_IP_ALIGN 2
192
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000193#define TG3_FW_UPDATE_TIMEOUT_SEC 5
194
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800195#define FIRMWARE_TG3 "tigon/tg3.bin"
196#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
197#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000200 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
203MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
204MODULE_LICENSE("GPL");
205MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800206MODULE_FIRMWARE(FIRMWARE_TG3);
207MODULE_FIRMWARE(FIRMWARE_TG3TSO);
208MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
211module_param(tg3_debug, int, 0);
212MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
213
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000214static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700215 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
216 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
217 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
218 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
219 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
220 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
221 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
222 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
223 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
224 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
225 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
226 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
227 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700288 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
289 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
290 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
291 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
292 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
293 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
294 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
295 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296};
297
298MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
299
Andreas Mohr50da8592006-08-14 23:54:30 -0700300static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000302} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 { "rx_octets" },
304 { "rx_fragments" },
305 { "rx_ucast_packets" },
306 { "rx_mcast_packets" },
307 { "rx_bcast_packets" },
308 { "rx_fcs_errors" },
309 { "rx_align_errors" },
310 { "rx_xon_pause_rcvd" },
311 { "rx_xoff_pause_rcvd" },
312 { "rx_mac_ctrl_rcvd" },
313 { "rx_xoff_entered" },
314 { "rx_frame_too_long_errors" },
315 { "rx_jabbers" },
316 { "rx_undersize_packets" },
317 { "rx_in_length_errors" },
318 { "rx_out_length_errors" },
319 { "rx_64_or_less_octet_packets" },
320 { "rx_65_to_127_octet_packets" },
321 { "rx_128_to_255_octet_packets" },
322 { "rx_256_to_511_octet_packets" },
323 { "rx_512_to_1023_octet_packets" },
324 { "rx_1024_to_1522_octet_packets" },
325 { "rx_1523_to_2047_octet_packets" },
326 { "rx_2048_to_4095_octet_packets" },
327 { "rx_4096_to_8191_octet_packets" },
328 { "rx_8192_to_9022_octet_packets" },
329
330 { "tx_octets" },
331 { "tx_collisions" },
332
333 { "tx_xon_sent" },
334 { "tx_xoff_sent" },
335 { "tx_flow_control" },
336 { "tx_mac_errors" },
337 { "tx_single_collisions" },
338 { "tx_mult_collisions" },
339 { "tx_deferred" },
340 { "tx_excessive_collisions" },
341 { "tx_late_collisions" },
342 { "tx_collide_2times" },
343 { "tx_collide_3times" },
344 { "tx_collide_4times" },
345 { "tx_collide_5times" },
346 { "tx_collide_6times" },
347 { "tx_collide_7times" },
348 { "tx_collide_8times" },
349 { "tx_collide_9times" },
350 { "tx_collide_10times" },
351 { "tx_collide_11times" },
352 { "tx_collide_12times" },
353 { "tx_collide_13times" },
354 { "tx_collide_14times" },
355 { "tx_collide_15times" },
356 { "tx_ucast_packets" },
357 { "tx_mcast_packets" },
358 { "tx_bcast_packets" },
359 { "tx_carrier_sense_errors" },
360 { "tx_discards" },
361 { "tx_errors" },
362
363 { "dma_writeq_full" },
364 { "dma_write_prioq_full" },
365 { "rxbds_empty" },
366 { "rx_discards" },
Matt Carlson4d958472011-04-20 07:57:35 +0000367 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 { "rx_errors" },
369 { "rx_threshold_hit" },
370
371 { "dma_readq_full" },
372 { "dma_read_prioq_full" },
373 { "tx_comp_queue_full" },
374
375 { "ring_set_send_prod_index" },
376 { "ring_status_update" },
377 { "nic_irqs" },
378 { "nic_avoided_irqs" },
379 { "nic_tx_threshold_hit" }
380};
381
Matt Carlson48fa55a2011-04-13 11:05:06 +0000382#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
383
384
Andreas Mohr50da8592006-08-14 23:54:30 -0700385static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700386 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000387} ethtool_test_keys[] = {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700388 { "nvram test (online) " },
389 { "link test (online) " },
390 { "register test (offline)" },
391 { "memory test (offline)" },
392 { "loopback test (offline)" },
393 { "interrupt test (offline)" },
394};
395
Matt Carlson48fa55a2011-04-13 11:05:06 +0000396#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
397
398
Michael Chanb401e9e2005-12-19 16:27:04 -0800399static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
400{
401 writel(val, tp->regs + off);
402}
403
404static u32 tg3_read32(struct tg3 *tp, u32 off)
405{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000406 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800407}
408
Matt Carlson0d3031d2007-10-10 18:02:43 -0700409static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
410{
411 writel(val, tp->aperegs + off);
412}
413
414static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
415{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000416 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
420{
Michael Chan68929142005-08-09 20:17:14 -0700421 unsigned long flags;
422
423 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700424 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
425 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700426 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700427}
428
429static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
430{
431 writel(val, tp->regs + off);
432 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Michael Chan68929142005-08-09 20:17:14 -0700435static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
436{
437 unsigned long flags;
438 u32 val;
439
440 spin_lock_irqsave(&tp->indirect_lock, flags);
441 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
442 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
443 spin_unlock_irqrestore(&tp->indirect_lock, flags);
444 return val;
445}
446
447static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
448{
449 unsigned long flags;
450
451 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
452 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
453 TG3_64BIT_REG_LOW, val);
454 return;
455 }
Matt Carlson66711e62009-11-13 13:03:49 +0000456 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700457 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
458 TG3_64BIT_REG_LOW, val);
459 return;
460 }
461
462 spin_lock_irqsave(&tp->indirect_lock, flags);
463 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
464 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
465 spin_unlock_irqrestore(&tp->indirect_lock, flags);
466
467 /* In indirect mode when disabling interrupts, we also need
468 * to clear the interrupt bit in the GRC local ctrl register.
469 */
470 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
471 (val == 0x1)) {
472 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
473 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
474 }
475}
476
477static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
478{
479 unsigned long flags;
480 u32 val;
481
482 spin_lock_irqsave(&tp->indirect_lock, flags);
483 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
484 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
485 spin_unlock_irqrestore(&tp->indirect_lock, flags);
486 return val;
487}
488
Michael Chanb401e9e2005-12-19 16:27:04 -0800489/* usec_wait specifies the wait time in usec when writing to certain registers
490 * where it is unsafe to read back the register without some delay.
491 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
492 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
493 */
494static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Joe Perches63c3a662011-04-26 08:12:10 +0000496 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800497 /* Non-posted methods */
498 tp->write32(tp, off, val);
499 else {
500 /* Posted method */
501 tg3_write32(tp, off, val);
502 if (usec_wait)
503 udelay(usec_wait);
504 tp->read32(tp, off);
505 }
506 /* Wait again after the read for the posted method to guarantee that
507 * the wait time is met.
508 */
509 if (usec_wait)
510 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Michael Chan09ee9292005-08-09 20:17:00 -0700513static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
514{
515 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000516 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700517 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700518}
519
Michael Chan20094932005-08-09 20:16:32 -0700520static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 void __iomem *mbox = tp->regs + off;
523 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000524 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000526 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 readl(mbox);
528}
529
Michael Chanb5d37722006-09-27 16:06:21 -0700530static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
531{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000532 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700533}
534
535static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
536{
537 writel(val, tp->regs + off + GRCMBOX_BASE);
538}
539
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000540#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700541#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000542#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
543#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
544#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700545
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000546#define tw32(reg, val) tp->write32(tp, reg, val)
547#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
548#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
549#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
552{
Michael Chan68929142005-08-09 20:17:14 -0700553 unsigned long flags;
554
Michael Chanb5d37722006-09-27 16:06:21 -0700555 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
556 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
557 return;
558
Michael Chan68929142005-08-09 20:17:14 -0700559 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000560 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700561 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
562 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Michael Chanbbadf502006-04-06 21:46:34 -0700564 /* Always leave this as zero. */
565 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
566 } else {
567 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
568 tw32_f(TG3PCI_MEM_WIN_DATA, val);
569
570 /* Always leave this as zero. */
571 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
572 }
Michael Chan68929142005-08-09 20:17:14 -0700573 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
576static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
577{
Michael Chan68929142005-08-09 20:17:14 -0700578 unsigned long flags;
579
Michael Chanb5d37722006-09-27 16:06:21 -0700580 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
581 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
582 *val = 0;
583 return;
584 }
585
Michael Chan68929142005-08-09 20:17:14 -0700586 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000587 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700588 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
589 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Michael Chanbbadf502006-04-06 21:46:34 -0700591 /* Always leave this as zero. */
592 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
593 } else {
594 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
595 *val = tr32(TG3PCI_MEM_WIN_DATA);
596
597 /* Always leave this as zero. */
598 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
599 }
Michael Chan68929142005-08-09 20:17:14 -0700600 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Matt Carlson0d3031d2007-10-10 18:02:43 -0700603static void tg3_ape_lock_init(struct tg3 *tp)
604{
605 int i;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000606 u32 regbase;
607
608 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
609 regbase = TG3_APE_LOCK_GRANT;
610 else
611 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700612
613 /* Make sure the driver hasn't any stale locks. */
614 for (i = 0; i < 8; i++)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000615 tg3_ape_write32(tp, regbase + 4 * i, APE_LOCK_GRANT_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700616}
617
618static int tg3_ape_lock(struct tg3 *tp, int locknum)
619{
620 int i, off;
621 int ret = 0;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000622 u32 status, req, gnt;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700623
Joe Perches63c3a662011-04-26 08:12:10 +0000624 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700625 return 0;
626
627 switch (locknum) {
Matt Carlson33f401a2010-04-05 10:19:27 +0000628 case TG3_APE_LOCK_GRC:
629 case TG3_APE_LOCK_MEM:
630 break;
631 default:
632 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700633 }
634
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000635 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
636 req = TG3_APE_LOCK_REQ;
637 gnt = TG3_APE_LOCK_GRANT;
638 } else {
639 req = TG3_APE_PER_LOCK_REQ;
640 gnt = TG3_APE_PER_LOCK_GRANT;
641 }
642
Matt Carlson0d3031d2007-10-10 18:02:43 -0700643 off = 4 * locknum;
644
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000645 tg3_ape_write32(tp, req + off, APE_LOCK_REQ_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700646
647 /* Wait for up to 1 millisecond to acquire lock. */
648 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000649 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700650 if (status == APE_LOCK_GRANT_DRIVER)
651 break;
652 udelay(10);
653 }
654
655 if (status != APE_LOCK_GRANT_DRIVER) {
656 /* Revoke the lock request. */
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000657 tg3_ape_write32(tp, gnt + off,
Matt Carlson0d3031d2007-10-10 18:02:43 -0700658 APE_LOCK_GRANT_DRIVER);
659
660 ret = -EBUSY;
661 }
662
663 return ret;
664}
665
666static void tg3_ape_unlock(struct tg3 *tp, int locknum)
667{
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000668 u32 gnt;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700669
Joe Perches63c3a662011-04-26 08:12:10 +0000670 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700671 return;
672
673 switch (locknum) {
Matt Carlson33f401a2010-04-05 10:19:27 +0000674 case TG3_APE_LOCK_GRC:
675 case TG3_APE_LOCK_MEM:
676 break;
677 default:
678 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700679 }
680
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000681 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
682 gnt = TG3_APE_LOCK_GRANT;
683 else
684 gnt = TG3_APE_PER_LOCK_GRANT;
685
686 tg3_ape_write32(tp, gnt + 4 * locknum, APE_LOCK_GRANT_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689static void tg3_disable_ints(struct tg3 *tp)
690{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000691 int i;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 tw32(TG3PCI_MISC_HOST_CTRL,
694 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000695 for (i = 0; i < tp->irq_max; i++)
696 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699static void tg3_enable_ints(struct tg3 *tp)
700{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000701 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000702
Michael Chanbbe832c2005-06-24 20:20:04 -0700703 tp->irq_sync = 0;
704 wmb();
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 tw32(TG3PCI_MISC_HOST_CTRL,
707 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000708
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000709 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000710 for (i = 0; i < tp->irq_cnt; i++) {
711 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000712
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000713 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000714 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000715 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
716
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000717 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000718 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000719
720 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000721 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000722 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
723 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
724 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000725 tw32(HOSTCC_MODE, tp->coal_now);
726
727 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Matt Carlson17375d22009-08-28 14:02:18 +0000730static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700731{
Matt Carlson17375d22009-08-28 14:02:18 +0000732 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000733 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700734 unsigned int work_exists = 0;
735
736 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000737 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700738 if (sblk->status & SD_STATUS_LINK_CHG)
739 work_exists = 1;
740 }
741 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000742 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000743 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700744 work_exists = 1;
745
746 return work_exists;
747}
748
Matt Carlson17375d22009-08-28 14:02:18 +0000749/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700750 * similar to tg3_enable_ints, but it accurately determines whether there
751 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400752 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 */
Matt Carlson17375d22009-08-28 14:02:18 +0000754static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Matt Carlson17375d22009-08-28 14:02:18 +0000756 struct tg3 *tp = tnapi->tp;
757
Matt Carlson898a56f2009-08-28 14:02:40 +0000758 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 mmiowb();
760
David S. Millerfac9b832005-05-18 22:46:34 -0700761 /* When doing tagged status, this work check is unnecessary.
762 * The last_tag we write above tells the chip which piece of
763 * work we've completed.
764 */
Joe Perches63c3a662011-04-26 08:12:10 +0000765 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700766 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000767 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770static void tg3_switch_clocks(struct tg3 *tp)
771{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000772 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 u32 orig_clock_ctrl;
774
Joe Perches63c3a662011-04-26 08:12:10 +0000775 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700776 return;
777
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000778 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 orig_clock_ctrl = clock_ctrl;
781 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
782 CLOCK_CTRL_CLKRUN_OENABLE |
783 0x1f);
784 tp->pci_clock_ctrl = clock_ctrl;
785
Joe Perches63c3a662011-04-26 08:12:10 +0000786 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800788 tw32_wait_f(TG3PCI_CLOCK_CTRL,
789 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800792 tw32_wait_f(TG3PCI_CLOCK_CTRL,
793 clock_ctrl |
794 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
795 40);
796 tw32_wait_f(TG3PCI_CLOCK_CTRL,
797 clock_ctrl | (CLOCK_CTRL_ALTCLK),
798 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800800 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803#define PHY_BUSY_LOOPS 5000
804
805static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
806{
807 u32 frame_val;
808 unsigned int loops;
809 int ret;
810
811 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
812 tw32_f(MAC_MI_MODE,
813 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
814 udelay(80);
815 }
816
817 *val = 0x0;
818
Matt Carlson882e9792009-09-01 13:21:36 +0000819 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 MI_COM_PHY_ADDR_MASK);
821 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
822 MI_COM_REG_ADDR_MASK);
823 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 tw32_f(MAC_MI_COM, frame_val);
826
827 loops = PHY_BUSY_LOOPS;
828 while (loops != 0) {
829 udelay(10);
830 frame_val = tr32(MAC_MI_COM);
831
832 if ((frame_val & MI_COM_BUSY) == 0) {
833 udelay(5);
834 frame_val = tr32(MAC_MI_COM);
835 break;
836 }
837 loops -= 1;
838 }
839
840 ret = -EBUSY;
841 if (loops != 0) {
842 *val = frame_val & MI_COM_DATA_MASK;
843 ret = 0;
844 }
845
846 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
847 tw32_f(MAC_MI_MODE, tp->mi_mode);
848 udelay(80);
849 }
850
851 return ret;
852}
853
854static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
855{
856 u32 frame_val;
857 unsigned int loops;
858 int ret;
859
Matt Carlsonf07e9af2010-08-02 11:26:07 +0000860 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Michael Chanb5d37722006-09-27 16:06:21 -0700861 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
862 return 0;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
865 tw32_f(MAC_MI_MODE,
866 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
867 udelay(80);
868 }
869
Matt Carlson882e9792009-09-01 13:21:36 +0000870 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 MI_COM_PHY_ADDR_MASK);
872 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
873 MI_COM_REG_ADDR_MASK);
874 frame_val |= (val & MI_COM_DATA_MASK);
875 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 tw32_f(MAC_MI_COM, frame_val);
878
879 loops = PHY_BUSY_LOOPS;
880 while (loops != 0) {
881 udelay(10);
882 frame_val = tr32(MAC_MI_COM);
883 if ((frame_val & MI_COM_BUSY) == 0) {
884 udelay(5);
885 frame_val = tr32(MAC_MI_COM);
886 break;
887 }
888 loops -= 1;
889 }
890
891 ret = -EBUSY;
892 if (loops != 0)
893 ret = 0;
894
895 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
896 tw32_f(MAC_MI_MODE, tp->mi_mode);
897 udelay(80);
898 }
899
900 return ret;
901}
902
Matt Carlsonb0988c12011-04-20 07:57:39 +0000903static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
904{
905 int err;
906
907 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
908 if (err)
909 goto done;
910
911 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
912 if (err)
913 goto done;
914
915 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
916 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
917 if (err)
918 goto done;
919
920 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
921
922done:
923 return err;
924}
925
926static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
927{
928 int err;
929
930 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
931 if (err)
932 goto done;
933
934 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
935 if (err)
936 goto done;
937
938 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
939 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
940 if (err)
941 goto done;
942
943 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
944
945done:
946 return err;
947}
948
949static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
950{
951 int err;
952
953 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
954 if (!err)
955 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
956
957 return err;
958}
959
960static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
961{
962 int err;
963
964 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
965 if (!err)
966 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
967
968 return err;
969}
970
Matt Carlson15ee95c2011-04-20 07:57:40 +0000971static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
972{
973 int err;
974
975 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
976 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
977 MII_TG3_AUXCTL_SHDWSEL_MISC);
978 if (!err)
979 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
980
981 return err;
982}
983
Matt Carlsonb4bd2922011-04-20 07:57:41 +0000984static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
985{
986 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
987 set |= MII_TG3_AUXCTL_MISC_WREN;
988
989 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
990}
991
Matt Carlson1d36ba42011-04-20 07:57:42 +0000992#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
993 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
994 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
995 MII_TG3_AUXCTL_ACTL_TX_6DB)
996
997#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
998 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
999 MII_TG3_AUXCTL_ACTL_TX_6DB);
1000
Matt Carlson95e28692008-05-25 23:44:14 -07001001static int tg3_bmcr_reset(struct tg3 *tp)
1002{
1003 u32 phy_control;
1004 int limit, err;
1005
1006 /* OK, reset it, and poll the BMCR_RESET bit until it
1007 * clears or we time out.
1008 */
1009 phy_control = BMCR_RESET;
1010 err = tg3_writephy(tp, MII_BMCR, phy_control);
1011 if (err != 0)
1012 return -EBUSY;
1013
1014 limit = 5000;
1015 while (limit--) {
1016 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1017 if (err != 0)
1018 return -EBUSY;
1019
1020 if ((phy_control & BMCR_RESET) == 0) {
1021 udelay(40);
1022 break;
1023 }
1024 udelay(10);
1025 }
Roel Kluind4675b52009-02-12 16:33:27 -08001026 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001027 return -EBUSY;
1028
1029 return 0;
1030}
1031
Matt Carlson158d7ab2008-05-29 01:37:54 -07001032static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1033{
Francois Romieu3d165432009-01-19 16:56:50 -08001034 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001035 u32 val;
1036
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001037 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001038
1039 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001040 val = -EIO;
1041
1042 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001043
1044 return val;
1045}
1046
1047static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1048{
Francois Romieu3d165432009-01-19 16:56:50 -08001049 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001050 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001051
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001052 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001053
1054 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001055 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001056
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001057 spin_unlock_bh(&tp->lock);
1058
1059 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001060}
1061
1062static int tg3_mdio_reset(struct mii_bus *bp)
1063{
1064 return 0;
1065}
1066
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001067static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001068{
1069 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001070 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001071
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001072 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001073 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001074 case PHY_ID_BCM50610:
1075 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001076 val = MAC_PHYCFG2_50610_LED_MODES;
1077 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001078 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001079 val = MAC_PHYCFG2_AC131_LED_MODES;
1080 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001081 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001082 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1083 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001084 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001085 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1086 break;
1087 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001088 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001089 }
1090
1091 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1092 tw32(MAC_PHYCFG2, val);
1093
1094 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001095 val &= ~(MAC_PHYCFG1_RGMII_INT |
1096 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1097 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001098 tw32(MAC_PHYCFG1, val);
1099
1100 return;
1101 }
1102
Joe Perches63c3a662011-04-26 08:12:10 +00001103 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001104 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1105 MAC_PHYCFG2_FMODE_MASK_MASK |
1106 MAC_PHYCFG2_GMODE_MASK_MASK |
1107 MAC_PHYCFG2_ACT_MASK_MASK |
1108 MAC_PHYCFG2_QUAL_MASK_MASK |
1109 MAC_PHYCFG2_INBAND_ENABLE;
1110
1111 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001112
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001113 val = tr32(MAC_PHYCFG1);
1114 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1115 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001116 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1117 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001118 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001119 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001120 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1121 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001122 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1123 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1124 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001125
Matt Carlsona9daf362008-05-25 23:49:44 -07001126 val = tr32(MAC_EXT_RGMII_MODE);
1127 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1128 MAC_RGMII_MODE_RX_QUALITY |
1129 MAC_RGMII_MODE_RX_ACTIVITY |
1130 MAC_RGMII_MODE_RX_ENG_DET |
1131 MAC_RGMII_MODE_TX_ENABLE |
1132 MAC_RGMII_MODE_TX_LOWPWR |
1133 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001134 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1135 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001136 val |= MAC_RGMII_MODE_RX_INT_B |
1137 MAC_RGMII_MODE_RX_QUALITY |
1138 MAC_RGMII_MODE_RX_ACTIVITY |
1139 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001140 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001141 val |= MAC_RGMII_MODE_TX_ENABLE |
1142 MAC_RGMII_MODE_TX_LOWPWR |
1143 MAC_RGMII_MODE_TX_RESET;
1144 }
1145 tw32(MAC_EXT_RGMII_MODE, val);
1146}
1147
Matt Carlson158d7ab2008-05-29 01:37:54 -07001148static void tg3_mdio_start(struct tg3 *tp)
1149{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001150 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1151 tw32_f(MAC_MI_MODE, tp->mi_mode);
1152 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001153
Joe Perches63c3a662011-04-26 08:12:10 +00001154 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001155 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1156 tg3_mdio_config_5785(tp);
1157}
1158
1159static int tg3_mdio_init(struct tg3 *tp)
1160{
1161 int i;
1162 u32 reg;
1163 struct phy_device *phydev;
1164
Joe Perches63c3a662011-04-26 08:12:10 +00001165 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001166 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001167
Matt Carlson9c7df912010-06-05 17:24:36 +00001168 tp->phy_addr = PCI_FUNC(tp->pdev->devfn) + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001169
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001170 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1171 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1172 else
1173 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1174 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001175 if (is_serdes)
1176 tp->phy_addr += 7;
1177 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001178 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001179
Matt Carlson158d7ab2008-05-29 01:37:54 -07001180 tg3_mdio_start(tp);
1181
Joe Perches63c3a662011-04-26 08:12:10 +00001182 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001183 return 0;
1184
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001185 tp->mdio_bus = mdiobus_alloc();
1186 if (tp->mdio_bus == NULL)
1187 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001188
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001189 tp->mdio_bus->name = "tg3 mdio bus";
1190 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001191 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001192 tp->mdio_bus->priv = tp;
1193 tp->mdio_bus->parent = &tp->pdev->dev;
1194 tp->mdio_bus->read = &tg3_mdio_read;
1195 tp->mdio_bus->write = &tg3_mdio_write;
1196 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001197 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001198 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001199
1200 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001201 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001202
1203 /* The bus registration will look for all the PHYs on the mdio bus.
1204 * Unfortunately, it does not ensure the PHY is powered up before
1205 * accessing the PHY ID registers. A chip reset is the
1206 * quickest way to bring the device back to an operational state..
1207 */
1208 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1209 tg3_bmcr_reset(tp);
1210
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001211 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001212 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001213 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001214 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001215 return i;
1216 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001217
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001218 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001219
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001220 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001221 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001222 mdiobus_unregister(tp->mdio_bus);
1223 mdiobus_free(tp->mdio_bus);
1224 return -ENODEV;
1225 }
1226
1227 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001228 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001229 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001230 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001231 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001232 case PHY_ID_BCM50610:
1233 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001234 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001235 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001236 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001237 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001238 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001239 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001240 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001241 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001242 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001243 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001244 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001245 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001246 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001247 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001248 case PHY_ID_RTL8201E:
1249 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001250 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001251 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001252 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001253 break;
1254 }
1255
Joe Perches63c3a662011-04-26 08:12:10 +00001256 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001257
1258 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1259 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001260
1261 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001262}
1263
1264static void tg3_mdio_fini(struct tg3 *tp)
1265{
Joe Perches63c3a662011-04-26 08:12:10 +00001266 if (tg3_flag(tp, MDIOBUS_INITED)) {
1267 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001268 mdiobus_unregister(tp->mdio_bus);
1269 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001270 }
1271}
1272
Matt Carlson95e28692008-05-25 23:44:14 -07001273/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001274static inline void tg3_generate_fw_event(struct tg3 *tp)
1275{
1276 u32 val;
1277
1278 val = tr32(GRC_RX_CPU_EVENT);
1279 val |= GRC_RX_CPU_DRIVER_EVENT;
1280 tw32_f(GRC_RX_CPU_EVENT, val);
1281
1282 tp->last_event_jiffies = jiffies;
1283}
1284
1285#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1286
1287/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001288static void tg3_wait_for_event_ack(struct tg3 *tp)
1289{
1290 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001291 unsigned int delay_cnt;
1292 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001293
Matt Carlson4ba526c2008-08-15 14:10:04 -07001294 /* If enough time has passed, no wait is necessary. */
1295 time_remain = (long)(tp->last_event_jiffies + 1 +
1296 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1297 (long)jiffies;
1298 if (time_remain < 0)
1299 return;
1300
1301 /* Check if we can shorten the wait time. */
1302 delay_cnt = jiffies_to_usecs(time_remain);
1303 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1304 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1305 delay_cnt = (delay_cnt >> 3) + 1;
1306
1307 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001308 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1309 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001310 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001311 }
1312}
1313
1314/* tp->lock is held. */
1315static void tg3_ump_link_report(struct tg3 *tp)
1316{
1317 u32 reg;
1318 u32 val;
1319
Joe Perches63c3a662011-04-26 08:12:10 +00001320 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson95e28692008-05-25 23:44:14 -07001321 return;
1322
1323 tg3_wait_for_event_ack(tp);
1324
1325 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1326
1327 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1328
1329 val = 0;
1330 if (!tg3_readphy(tp, MII_BMCR, &reg))
1331 val = reg << 16;
1332 if (!tg3_readphy(tp, MII_BMSR, &reg))
1333 val |= (reg & 0xffff);
1334 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1335
1336 val = 0;
1337 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1338 val = reg << 16;
1339 if (!tg3_readphy(tp, MII_LPA, &reg))
1340 val |= (reg & 0xffff);
1341 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1342
1343 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001344 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001345 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1346 val = reg << 16;
1347 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1348 val |= (reg & 0xffff);
1349 }
1350 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1351
1352 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1353 val = reg << 16;
1354 else
1355 val = 0;
1356 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1357
Matt Carlson4ba526c2008-08-15 14:10:04 -07001358 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001359}
1360
1361static void tg3_link_report(struct tg3 *tp)
1362{
1363 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001364 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001365 tg3_ump_link_report(tp);
1366 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001367 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1368 (tp->link_config.active_speed == SPEED_1000 ?
1369 1000 :
1370 (tp->link_config.active_speed == SPEED_100 ?
1371 100 : 10)),
1372 (tp->link_config.active_duplex == DUPLEX_FULL ?
1373 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001374
Joe Perches05dbe002010-02-17 19:44:19 +00001375 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1376 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1377 "on" : "off",
1378 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1379 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001380
1381 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1382 netdev_info(tp->dev, "EEE is %s\n",
1383 tp->setlpicnt ? "enabled" : "disabled");
1384
Matt Carlson95e28692008-05-25 23:44:14 -07001385 tg3_ump_link_report(tp);
1386 }
1387}
1388
1389static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1390{
1391 u16 miireg;
1392
Steve Glendinninge18ce342008-12-16 02:00:00 -08001393 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001394 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001395 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001396 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001397 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001398 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1399 else
1400 miireg = 0;
1401
1402 return miireg;
1403}
1404
1405static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1406{
1407 u16 miireg;
1408
Steve Glendinninge18ce342008-12-16 02:00:00 -08001409 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001410 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001411 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001412 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001413 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001414 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1415 else
1416 miireg = 0;
1417
1418 return miireg;
1419}
1420
Matt Carlson95e28692008-05-25 23:44:14 -07001421static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1422{
1423 u8 cap = 0;
1424
1425 if (lcladv & ADVERTISE_1000XPAUSE) {
1426 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1427 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001428 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001429 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001430 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001431 } else {
1432 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001433 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001434 }
1435 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1436 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001437 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001438 }
1439
1440 return cap;
1441}
1442
Matt Carlsonf51f3562008-05-25 23:45:08 -07001443static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001444{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001445 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001446 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001447 u32 old_rx_mode = tp->rx_mode;
1448 u32 old_tx_mode = tp->tx_mode;
1449
Joe Perches63c3a662011-04-26 08:12:10 +00001450 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001451 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001452 else
1453 autoneg = tp->link_config.autoneg;
1454
Joe Perches63c3a662011-04-26 08:12:10 +00001455 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001456 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001457 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001458 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001459 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001460 } else
1461 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001462
Matt Carlsonf51f3562008-05-25 23:45:08 -07001463 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001464
Steve Glendinninge18ce342008-12-16 02:00:00 -08001465 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001466 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1467 else
1468 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1469
Matt Carlsonf51f3562008-05-25 23:45:08 -07001470 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001471 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001472
Steve Glendinninge18ce342008-12-16 02:00:00 -08001473 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001474 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1475 else
1476 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1477
Matt Carlsonf51f3562008-05-25 23:45:08 -07001478 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001479 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001480}
1481
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001482static void tg3_adjust_link(struct net_device *dev)
1483{
1484 u8 oldflowctrl, linkmesg = 0;
1485 u32 mac_mode, lcl_adv, rmt_adv;
1486 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001487 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001488
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001489 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001490
1491 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1492 MAC_MODE_HALF_DUPLEX);
1493
1494 oldflowctrl = tp->link_config.active_flowctrl;
1495
1496 if (phydev->link) {
1497 lcl_adv = 0;
1498 rmt_adv = 0;
1499
1500 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1501 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001502 else if (phydev->speed == SPEED_1000 ||
1503 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001504 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001505 else
1506 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001507
1508 if (phydev->duplex == DUPLEX_HALF)
1509 mac_mode |= MAC_MODE_HALF_DUPLEX;
1510 else {
1511 lcl_adv = tg3_advert_flowctrl_1000T(
1512 tp->link_config.flowctrl);
1513
1514 if (phydev->pause)
1515 rmt_adv = LPA_PAUSE_CAP;
1516 if (phydev->asym_pause)
1517 rmt_adv |= LPA_PAUSE_ASYM;
1518 }
1519
1520 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1521 } else
1522 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1523
1524 if (mac_mode != tp->mac_mode) {
1525 tp->mac_mode = mac_mode;
1526 tw32_f(MAC_MODE, tp->mac_mode);
1527 udelay(40);
1528 }
1529
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001530 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1531 if (phydev->speed == SPEED_10)
1532 tw32(MAC_MI_STAT,
1533 MAC_MI_STAT_10MBPS_MODE |
1534 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1535 else
1536 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1537 }
1538
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001539 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1540 tw32(MAC_TX_LENGTHS,
1541 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1542 (6 << TX_LENGTHS_IPG_SHIFT) |
1543 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1544 else
1545 tw32(MAC_TX_LENGTHS,
1546 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1547 (6 << TX_LENGTHS_IPG_SHIFT) |
1548 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1549
1550 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1551 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1552 phydev->speed != tp->link_config.active_speed ||
1553 phydev->duplex != tp->link_config.active_duplex ||
1554 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001555 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001556
1557 tp->link_config.active_speed = phydev->speed;
1558 tp->link_config.active_duplex = phydev->duplex;
1559
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001560 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001561
1562 if (linkmesg)
1563 tg3_link_report(tp);
1564}
1565
1566static int tg3_phy_init(struct tg3 *tp)
1567{
1568 struct phy_device *phydev;
1569
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001570 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001571 return 0;
1572
1573 /* Bring the PHY back to a known state. */
1574 tg3_bmcr_reset(tp);
1575
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001576 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001577
1578 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad352008-11-10 13:55:14 -08001579 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001580 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001581 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001582 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001583 return PTR_ERR(phydev);
1584 }
1585
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001586 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001587 switch (phydev->interface) {
1588 case PHY_INTERFACE_MODE_GMII:
1589 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001590 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001591 phydev->supported &= (PHY_GBIT_FEATURES |
1592 SUPPORTED_Pause |
1593 SUPPORTED_Asym_Pause);
1594 break;
1595 }
1596 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001597 case PHY_INTERFACE_MODE_MII:
1598 phydev->supported &= (PHY_BASIC_FEATURES |
1599 SUPPORTED_Pause |
1600 SUPPORTED_Asym_Pause);
1601 break;
1602 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001603 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001604 return -EINVAL;
1605 }
1606
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001607 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001608
1609 phydev->advertising = phydev->supported;
1610
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001611 return 0;
1612}
1613
1614static void tg3_phy_start(struct tg3 *tp)
1615{
1616 struct phy_device *phydev;
1617
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001618 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001619 return;
1620
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001621 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001622
Matt Carlson80096062010-08-02 11:26:06 +00001623 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1624 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001625 phydev->speed = tp->link_config.orig_speed;
1626 phydev->duplex = tp->link_config.orig_duplex;
1627 phydev->autoneg = tp->link_config.orig_autoneg;
1628 phydev->advertising = tp->link_config.orig_advertising;
1629 }
1630
1631 phy_start(phydev);
1632
1633 phy_start_aneg(phydev);
1634}
1635
1636static void tg3_phy_stop(struct tg3 *tp)
1637{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001638 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001639 return;
1640
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001641 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001642}
1643
1644static void tg3_phy_fini(struct tg3 *tp)
1645{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001646 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001647 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001648 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001649 }
1650}
1651
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001652static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1653{
1654 u32 phytest;
1655
1656 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1657 u32 phy;
1658
1659 tg3_writephy(tp, MII_TG3_FET_TEST,
1660 phytest | MII_TG3_FET_SHADOW_EN);
1661 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1662 if (enable)
1663 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1664 else
1665 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1666 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1667 }
1668 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1669 }
1670}
1671
Matt Carlson6833c042008-11-21 17:18:59 -08001672static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1673{
1674 u32 reg;
1675
Joe Perches63c3a662011-04-26 08:12:10 +00001676 if (!tg3_flag(tp, 5705_PLUS) ||
1677 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001678 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001679 return;
1680
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001681 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001682 tg3_phy_fet_toggle_apd(tp, enable);
1683 return;
1684 }
1685
Matt Carlson6833c042008-11-21 17:18:59 -08001686 reg = MII_TG3_MISC_SHDW_WREN |
1687 MII_TG3_MISC_SHDW_SCR5_SEL |
1688 MII_TG3_MISC_SHDW_SCR5_LPED |
1689 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1690 MII_TG3_MISC_SHDW_SCR5_SDTL |
1691 MII_TG3_MISC_SHDW_SCR5_C125OE;
1692 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1693 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1694
1695 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1696
1697
1698 reg = MII_TG3_MISC_SHDW_WREN |
1699 MII_TG3_MISC_SHDW_APD_SEL |
1700 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1701 if (enable)
1702 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1703
1704 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1705}
1706
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001707static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1708{
1709 u32 phy;
1710
Joe Perches63c3a662011-04-26 08:12:10 +00001711 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001712 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001713 return;
1714
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001715 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001716 u32 ephy;
1717
Matt Carlson535ef6e2009-08-25 10:09:36 +00001718 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1719 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1720
1721 tg3_writephy(tp, MII_TG3_FET_TEST,
1722 ephy | MII_TG3_FET_SHADOW_EN);
1723 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001724 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001725 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001726 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001727 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1728 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001729 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001730 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001731 }
1732 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00001733 int ret;
1734
1735 ret = tg3_phy_auxctl_read(tp,
1736 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
1737 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001738 if (enable)
1739 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1740 else
1741 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001742 tg3_phy_auxctl_write(tp,
1743 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001744 }
1745 }
1746}
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748static void tg3_phy_set_wirespeed(struct tg3 *tp)
1749{
Matt Carlson15ee95c2011-04-20 07:57:40 +00001750 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 u32 val;
1752
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001753 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return;
1755
Matt Carlson15ee95c2011-04-20 07:57:40 +00001756 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
1757 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001758 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
1759 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001762static void tg3_phy_apply_otp(struct tg3 *tp)
1763{
1764 u32 otp, phy;
1765
1766 if (!tp->phy_otp)
1767 return;
1768
1769 otp = tp->phy_otp;
1770
Matt Carlson1d36ba42011-04-20 07:57:42 +00001771 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
1772 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001773
1774 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1775 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1776 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1777
1778 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1779 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1780 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1781
1782 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1783 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1784 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1785
1786 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1787 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1788
1789 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1790 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1791
1792 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1793 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1794 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1795
Matt Carlson1d36ba42011-04-20 07:57:42 +00001796 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001797}
1798
Matt Carlson52b02d02010-10-14 10:37:41 +00001799static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
1800{
1801 u32 val;
1802
1803 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
1804 return;
1805
1806 tp->setlpicnt = 0;
1807
1808 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
1809 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00001810 tp->link_config.active_duplex == DUPLEX_FULL &&
1811 (tp->link_config.active_speed == SPEED_100 ||
1812 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00001813 u32 eeectl;
1814
1815 if (tp->link_config.active_speed == SPEED_1000)
1816 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
1817 else
1818 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
1819
1820 tw32(TG3_CPMU_EEE_CTRL, eeectl);
1821
Matt Carlson3110f5f52010-12-06 08:28:50 +00001822 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
1823 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00001824
Matt Carlson21a00ab2011-01-25 15:58:55 +00001825 switch (val) {
1826 case TG3_CL45_D7_EEERES_STAT_LP_1000T:
1827 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
1828 case ASIC_REV_5717:
1829 case ASIC_REV_5719:
1830 case ASIC_REV_57765:
Matt Carlson1d36ba42011-04-20 07:57:42 +00001831 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
1832 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26,
1833 0x0000);
1834 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
1835 }
Matt Carlson21a00ab2011-01-25 15:58:55 +00001836 }
1837 /* Fallthrough */
1838 case TG3_CL45_D7_EEERES_STAT_LP_100TX:
Matt Carlson52b02d02010-10-14 10:37:41 +00001839 tp->setlpicnt = 2;
Matt Carlson21a00ab2011-01-25 15:58:55 +00001840 }
Matt Carlson52b02d02010-10-14 10:37:41 +00001841 }
1842
1843 if (!tp->setlpicnt) {
1844 val = tr32(TG3_CPMU_EEE_MODE);
1845 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
1846 }
1847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849static int tg3_wait_macro_done(struct tg3 *tp)
1850{
1851 int limit = 100;
1852
1853 while (limit--) {
1854 u32 tmp32;
1855
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001856 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if ((tmp32 & 0x1000) == 0)
1858 break;
1859 }
1860 }
Roel Kluind4675b52009-02-12 16:33:27 -08001861 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return -EBUSY;
1863
1864 return 0;
1865}
1866
1867static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1868{
1869 static const u32 test_pat[4][6] = {
1870 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1871 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1872 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1873 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1874 };
1875 int chan;
1876
1877 for (chan = 0; chan < 4; chan++) {
1878 int i;
1879
1880 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1881 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001882 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 for (i = 0; i < 6; i++)
1885 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1886 test_pat[chan][i]);
1887
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001888 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (tg3_wait_macro_done(tp)) {
1890 *resetp = 1;
1891 return -EBUSY;
1892 }
1893
1894 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1895 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001896 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (tg3_wait_macro_done(tp)) {
1898 *resetp = 1;
1899 return -EBUSY;
1900 }
1901
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001902 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 if (tg3_wait_macro_done(tp)) {
1904 *resetp = 1;
1905 return -EBUSY;
1906 }
1907
1908 for (i = 0; i < 6; i += 2) {
1909 u32 low, high;
1910
1911 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1912 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1913 tg3_wait_macro_done(tp)) {
1914 *resetp = 1;
1915 return -EBUSY;
1916 }
1917 low &= 0x7fff;
1918 high &= 0x000f;
1919 if (low != test_pat[chan][i] ||
1920 high != test_pat[chan][i+1]) {
1921 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1922 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1923 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1924
1925 return -EBUSY;
1926 }
1927 }
1928 }
1929
1930 return 0;
1931}
1932
1933static int tg3_phy_reset_chanpat(struct tg3 *tp)
1934{
1935 int chan;
1936
1937 for (chan = 0; chan < 4; chan++) {
1938 int i;
1939
1940 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1941 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001942 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 for (i = 0; i < 6; i++)
1944 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001945 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (tg3_wait_macro_done(tp))
1947 return -EBUSY;
1948 }
1949
1950 return 0;
1951}
1952
1953static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1954{
1955 u32 reg32, phy9_orig;
1956 int retries, do_phy_reset, err;
1957
1958 retries = 10;
1959 do_phy_reset = 1;
1960 do {
1961 if (do_phy_reset) {
1962 err = tg3_bmcr_reset(tp);
1963 if (err)
1964 return err;
1965 do_phy_reset = 0;
1966 }
1967
1968 /* Disable transmitter and interrupt. */
1969 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1970 continue;
1971
1972 reg32 |= 0x3000;
1973 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1974
1975 /* Set full-duplex, 1000 mbps. */
1976 tg3_writephy(tp, MII_BMCR,
1977 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1978
1979 /* Set to master mode. */
1980 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1981 continue;
1982
1983 tg3_writephy(tp, MII_TG3_CTRL,
1984 (MII_TG3_CTRL_AS_MASTER |
1985 MII_TG3_CTRL_ENABLE_AS_MASTER));
1986
Matt Carlson1d36ba42011-04-20 07:57:42 +00001987 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
1988 if (err)
1989 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00001992 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
1995 if (!err)
1996 break;
1997 } while (--retries);
1998
1999 err = tg3_phy_reset_chanpat(tp);
2000 if (err)
2001 return err;
2002
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002003 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002006 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Matt Carlson1d36ba42011-04-20 07:57:42 +00002008 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
2011
2012 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2013 reg32 &= ~0x3000;
2014 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2015 } else if (!err)
2016 err = -EBUSY;
2017
2018 return err;
2019}
2020
2021/* This will reset the tigon3 PHY if there is no valid
2022 * link unless the FORCE argument is non-zero.
2023 */
2024static int tg3_phy_reset(struct tg3 *tp)
2025{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002026 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 int err;
2028
Michael Chan60189dd2006-12-17 17:08:07 -08002029 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002030 val = tr32(GRC_MISC_CFG);
2031 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2032 udelay(40);
2033 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002034 err = tg3_readphy(tp, MII_BMSR, &val);
2035 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (err != 0)
2037 return -EBUSY;
2038
Michael Chanc8e1e822006-04-29 18:55:17 -07002039 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2040 netif_carrier_off(tp->dev);
2041 tg3_link_report(tp);
2042 }
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2045 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2046 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2047 err = tg3_phy_reset_5703_4_5(tp);
2048 if (err)
2049 return err;
2050 goto out;
2051 }
2052
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002053 cpmuctrl = 0;
2054 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2055 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2056 cpmuctrl = tr32(TG3_CPMU_CTRL);
2057 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2058 tw32(TG3_CPMU_CTRL,
2059 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2060 }
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 err = tg3_bmcr_reset(tp);
2063 if (err)
2064 return err;
2065
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002066 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002067 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2068 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002069
2070 tw32(TG3_CPMU_CTRL, cpmuctrl);
2071 }
2072
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002073 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2074 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002075 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2076 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2077 CPMU_LSPD_1000MB_MACCLK_12_5) {
2078 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2079 udelay(40);
2080 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2081 }
2082 }
2083
Joe Perches63c3a662011-04-26 08:12:10 +00002084 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002085 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002086 return 0;
2087
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002088 tg3_phy_apply_otp(tp);
2089
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002090 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002091 tg3_phy_toggle_apd(tp, true);
2092 else
2093 tg3_phy_toggle_apd(tp, false);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002096 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2097 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002098 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2099 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002100 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002102
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002103 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002104 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2105 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002107
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002108 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002109 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2110 tg3_phydsp_write(tp, 0x000a, 0x310b);
2111 tg3_phydsp_write(tp, 0x201f, 0x9506);
2112 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2113 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2114 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002115 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002116 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2117 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2118 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2119 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2120 tg3_writephy(tp, MII_TG3_TEST1,
2121 MII_TG3_TEST1_TRIM_EN | 0x4);
2122 } else
2123 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2124
2125 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2126 }
Michael Chanc424cb22006-04-29 18:56:34 -07002127 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 /* Set Extended packet length bit (bit 14) on all chips that */
2130 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002131 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002133 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002134 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002136 err = tg3_phy_auxctl_read(tp,
2137 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2138 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002139 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2140 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
2142
2143 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2144 * jumbo frames transmission.
2145 */
Joe Perches63c3a662011-04-26 08:12:10 +00002146 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002147 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002148 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002149 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
2151
Michael Chan715116a2006-09-27 16:09:25 -07002152 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002153 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002154 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002155 }
2156
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002157 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 tg3_phy_set_wirespeed(tp);
2159 return 0;
2160}
2161
2162static void tg3_frob_aux_power(struct tg3 *tp)
2163{
Matt Carlson683644b2011-03-09 16:58:23 +00002164 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Matt Carlson334355a2010-01-20 16:58:10 +00002166 /* The GPIOs do something completely different on 57765. */
Joe Perches63c3a662011-04-26 08:12:10 +00002167 if (!tg3_flag(tp, IS_NIC) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00002168 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson334355a2010-01-20 16:58:10 +00002169 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return;
2171
Matt Carlson683644b2011-03-09 16:58:23 +00002172 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2173 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +00002174 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2175 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) &&
Matt Carlson683644b2011-03-09 16:58:23 +00002176 tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002177 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002179 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002180
Michael Chanbc1c7562006-03-20 17:48:03 -08002181 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002182 if (dev_peer) {
2183 struct tg3 *tp_peer = netdev_priv(dev_peer);
2184
Joe Perches63c3a662011-04-26 08:12:10 +00002185 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002186 return;
2187
Joe Perches63c3a662011-04-26 08:12:10 +00002188 if (tg3_flag(tp_peer, WOL_ENABLE) ||
2189 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002190 need_vaux = true;
2191 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Joe Perches63c3a662011-04-26 08:12:10 +00002194 if (tg3_flag(tp, WOL_ENABLE) || tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002195 need_vaux = true;
2196
2197 if (need_vaux) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2199 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002200 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2201 (GRC_LCLCTRL_GPIO_OE0 |
2202 GRC_LCLCTRL_GPIO_OE1 |
2203 GRC_LCLCTRL_GPIO_OE2 |
2204 GRC_LCLCTRL_GPIO_OUTPUT0 |
2205 GRC_LCLCTRL_GPIO_OUTPUT1),
2206 100);
Matt Carlson8d519ab2009-04-20 06:58:01 +00002207 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2208 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -07002209 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2210 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2211 GRC_LCLCTRL_GPIO_OE1 |
2212 GRC_LCLCTRL_GPIO_OE2 |
2213 GRC_LCLCTRL_GPIO_OUTPUT0 |
2214 GRC_LCLCTRL_GPIO_OUTPUT1 |
2215 tp->grc_local_ctrl;
2216 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2217
2218 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2219 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2220
2221 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2222 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 } else {
2224 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08002225 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Michael Chandc56b7d2005-12-19 16:26:28 -08002227 /* Workaround to prevent overdrawing Amps. */
2228 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2229 ASIC_REV_5714) {
2230 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08002231 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2232 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08002233 }
2234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 /* On 5753 and variants, GPIO2 cannot be used. */
2236 no_gpio2 = tp->nic_sram_data_cfg &
2237 NIC_SRAM_DATA_CFG_NO_GPIO2;
2238
Michael Chandc56b7d2005-12-19 16:26:28 -08002239 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 GRC_LCLCTRL_GPIO_OE1 |
2241 GRC_LCLCTRL_GPIO_OE2 |
2242 GRC_LCLCTRL_GPIO_OUTPUT1 |
2243 GRC_LCLCTRL_GPIO_OUTPUT2;
2244 if (no_gpio2) {
2245 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2246 GRC_LCLCTRL_GPIO_OUTPUT2);
2247 }
Michael Chanb401e9e2005-12-19 16:27:04 -08002248 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2249 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2252
Michael Chanb401e9e2005-12-19 16:27:04 -08002253 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2254 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 if (!no_gpio2) {
2257 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08002258 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2259 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
2261 }
2262 } else {
2263 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
2264 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002265 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2266 (GRC_LCLCTRL_GPIO_OE1 |
2267 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Michael Chanb401e9e2005-12-19 16:27:04 -08002269 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2270 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Michael Chanb401e9e2005-12-19 16:27:04 -08002272 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2273 (GRC_LCLCTRL_GPIO_OE1 |
2274 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
2276 }
2277}
2278
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002279static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2280{
2281 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2282 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002283 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002284 if (speed != SPEED_10)
2285 return 1;
2286 } else if (speed == SPEED_10)
2287 return 1;
2288
2289 return 0;
2290}
2291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292static int tg3_setup_phy(struct tg3 *, int);
2293
2294#define RESET_KIND_SHUTDOWN 0
2295#define RESET_KIND_INIT 1
2296#define RESET_KIND_SUSPEND 2
2297
2298static void tg3_write_sig_post_reset(struct tg3 *, int);
2299static int tg3_halt_cpu(struct tg3 *, u32);
2300
Matt Carlson0a459aa2008-11-03 16:54:15 -08002301static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002302{
Matt Carlsonce057f02007-11-12 21:08:03 -08002303 u32 val;
2304
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002305 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002306 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2307 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2308 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2309
2310 sg_dig_ctrl |=
2311 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2312 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2313 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2314 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002315 return;
Michael Chan51297242007-02-13 12:17:57 -08002316 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002317
Michael Chan60189dd2006-12-17 17:08:07 -08002318 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002319 tg3_bmcr_reset(tp);
2320 val = tr32(GRC_MISC_CFG);
2321 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2322 udelay(40);
2323 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002324 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002325 u32 phytest;
2326 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2327 u32 phy;
2328
2329 tg3_writephy(tp, MII_ADVERTISE, 0);
2330 tg3_writephy(tp, MII_BMCR,
2331 BMCR_ANENABLE | BMCR_ANRESTART);
2332
2333 tg3_writephy(tp, MII_TG3_FET_TEST,
2334 phytest | MII_TG3_FET_SHADOW_EN);
2335 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2336 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2337 tg3_writephy(tp,
2338 MII_TG3_FET_SHDW_AUXMODE4,
2339 phy);
2340 }
2341 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2342 }
2343 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002344 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002345 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2346 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002347
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002348 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2349 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2350 MII_TG3_AUXCTL_PCTL_VREG_11V;
2351 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002352 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002353
Michael Chan15c3b692006-03-22 01:06:52 -08002354 /* The PHY should not be powered down on some chips because
2355 * of bugs.
2356 */
2357 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2358 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2359 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002360 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Michael Chan15c3b692006-03-22 01:06:52 -08002361 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002362
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002363 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2364 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002365 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2366 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2367 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2368 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2369 }
2370
Michael Chan15c3b692006-03-22 01:06:52 -08002371 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2372}
2373
Matt Carlson3f007892008-11-03 16:51:36 -08002374/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002375static int tg3_nvram_lock(struct tg3 *tp)
2376{
Joe Perches63c3a662011-04-26 08:12:10 +00002377 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002378 int i;
2379
2380 if (tp->nvram_lock_cnt == 0) {
2381 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2382 for (i = 0; i < 8000; i++) {
2383 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2384 break;
2385 udelay(20);
2386 }
2387 if (i == 8000) {
2388 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2389 return -ENODEV;
2390 }
2391 }
2392 tp->nvram_lock_cnt++;
2393 }
2394 return 0;
2395}
2396
2397/* tp->lock is held. */
2398static void tg3_nvram_unlock(struct tg3 *tp)
2399{
Joe Perches63c3a662011-04-26 08:12:10 +00002400 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002401 if (tp->nvram_lock_cnt > 0)
2402 tp->nvram_lock_cnt--;
2403 if (tp->nvram_lock_cnt == 0)
2404 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2405 }
2406}
2407
2408/* tp->lock is held. */
2409static void tg3_enable_nvram_access(struct tg3 *tp)
2410{
Joe Perches63c3a662011-04-26 08:12:10 +00002411 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002412 u32 nvaccess = tr32(NVRAM_ACCESS);
2413
2414 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2415 }
2416}
2417
2418/* tp->lock is held. */
2419static void tg3_disable_nvram_access(struct tg3 *tp)
2420{
Joe Perches63c3a662011-04-26 08:12:10 +00002421 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002422 u32 nvaccess = tr32(NVRAM_ACCESS);
2423
2424 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2425 }
2426}
2427
2428static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2429 u32 offset, u32 *val)
2430{
2431 u32 tmp;
2432 int i;
2433
2434 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2435 return -EINVAL;
2436
2437 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2438 EEPROM_ADDR_DEVID_MASK |
2439 EEPROM_ADDR_READ);
2440 tw32(GRC_EEPROM_ADDR,
2441 tmp |
2442 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2443 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2444 EEPROM_ADDR_ADDR_MASK) |
2445 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2446
2447 for (i = 0; i < 1000; i++) {
2448 tmp = tr32(GRC_EEPROM_ADDR);
2449
2450 if (tmp & EEPROM_ADDR_COMPLETE)
2451 break;
2452 msleep(1);
2453 }
2454 if (!(tmp & EEPROM_ADDR_COMPLETE))
2455 return -EBUSY;
2456
Matt Carlson62cedd12009-04-20 14:52:29 -07002457 tmp = tr32(GRC_EEPROM_DATA);
2458
2459 /*
2460 * The data will always be opposite the native endian
2461 * format. Perform a blind byteswap to compensate.
2462 */
2463 *val = swab32(tmp);
2464
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002465 return 0;
2466}
2467
2468#define NVRAM_CMD_TIMEOUT 10000
2469
2470static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2471{
2472 int i;
2473
2474 tw32(NVRAM_CMD, nvram_cmd);
2475 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2476 udelay(10);
2477 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2478 udelay(10);
2479 break;
2480 }
2481 }
2482
2483 if (i == NVRAM_CMD_TIMEOUT)
2484 return -EBUSY;
2485
2486 return 0;
2487}
2488
2489static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2490{
Joe Perches63c3a662011-04-26 08:12:10 +00002491 if (tg3_flag(tp, NVRAM) &&
2492 tg3_flag(tp, NVRAM_BUFFERED) &&
2493 tg3_flag(tp, FLASH) &&
2494 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002495 (tp->nvram_jedecnum == JEDEC_ATMEL))
2496
2497 addr = ((addr / tp->nvram_pagesize) <<
2498 ATMEL_AT45DB0X1B_PAGE_POS) +
2499 (addr % tp->nvram_pagesize);
2500
2501 return addr;
2502}
2503
2504static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2505{
Joe Perches63c3a662011-04-26 08:12:10 +00002506 if (tg3_flag(tp, NVRAM) &&
2507 tg3_flag(tp, NVRAM_BUFFERED) &&
2508 tg3_flag(tp, FLASH) &&
2509 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002510 (tp->nvram_jedecnum == JEDEC_ATMEL))
2511
2512 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2513 tp->nvram_pagesize) +
2514 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2515
2516 return addr;
2517}
2518
Matt Carlsone4f34112009-02-25 14:25:00 +00002519/* NOTE: Data read in from NVRAM is byteswapped according to
2520 * the byteswapping settings for all other register accesses.
2521 * tg3 devices are BE devices, so on a BE machine, the data
2522 * returned will be exactly as it is seen in NVRAM. On a LE
2523 * machine, the 32-bit value will be byteswapped.
2524 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002525static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2526{
2527 int ret;
2528
Joe Perches63c3a662011-04-26 08:12:10 +00002529 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002530 return tg3_nvram_read_using_eeprom(tp, offset, val);
2531
2532 offset = tg3_nvram_phys_addr(tp, offset);
2533
2534 if (offset > NVRAM_ADDR_MSK)
2535 return -EINVAL;
2536
2537 ret = tg3_nvram_lock(tp);
2538 if (ret)
2539 return ret;
2540
2541 tg3_enable_nvram_access(tp);
2542
2543 tw32(NVRAM_ADDR, offset);
2544 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2545 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2546
2547 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002548 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002549
2550 tg3_disable_nvram_access(tp);
2551
2552 tg3_nvram_unlock(tp);
2553
2554 return ret;
2555}
2556
Matt Carlsona9dc5292009-02-25 14:25:30 +00002557/* Ensures NVRAM data is in bytestream format. */
2558static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002559{
2560 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002561 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002562 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002563 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002564 return res;
2565}
2566
2567/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002568static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2569{
2570 u32 addr_high, addr_low;
2571 int i;
2572
2573 addr_high = ((tp->dev->dev_addr[0] << 8) |
2574 tp->dev->dev_addr[1]);
2575 addr_low = ((tp->dev->dev_addr[2] << 24) |
2576 (tp->dev->dev_addr[3] << 16) |
2577 (tp->dev->dev_addr[4] << 8) |
2578 (tp->dev->dev_addr[5] << 0));
2579 for (i = 0; i < 4; i++) {
2580 if (i == 1 && skip_mac_1)
2581 continue;
2582 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2583 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2584 }
2585
2586 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2587 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2588 for (i = 0; i < 12; i++) {
2589 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2590 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2591 }
2592 }
2593
2594 addr_high = (tp->dev->dev_addr[0] +
2595 tp->dev->dev_addr[1] +
2596 tp->dev->dev_addr[2] +
2597 tp->dev->dev_addr[3] +
2598 tp->dev->dev_addr[4] +
2599 tp->dev->dev_addr[5]) &
2600 TX_BACKOFF_SEED_MASK;
2601 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2602}
2603
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002604static void tg3_enable_register_access(struct tg3 *tp)
2605{
2606 /*
2607 * Make sure register accesses (indirect or otherwise) will function
2608 * correctly.
2609 */
2610 pci_write_config_dword(tp->pdev,
2611 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
2612}
2613
2614static int tg3_power_up(struct tg3 *tp)
2615{
2616 tg3_enable_register_access(tp);
2617
2618 pci_set_power_state(tp->pdev, PCI_D0);
2619
2620 /* Switch out of Vaux if it is a NIC */
Joe Perches63c3a662011-04-26 08:12:10 +00002621 if (tg3_flag(tp, IS_NIC))
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002622 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
2623
2624 return 0;
2625}
2626
2627static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
2629 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002630 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002632 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002633
2634 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00002635 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002636 u16 lnkctl;
2637
2638 pci_read_config_word(tp->pdev,
2639 tp->pcie_cap + PCI_EXP_LNKCTL,
2640 &lnkctl);
2641 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2642 pci_write_config_word(tp->pdev,
2643 tp->pcie_cap + PCI_EXP_LNKCTL,
2644 lnkctl);
2645 }
2646
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2648 tw32(TG3PCI_MISC_HOST_CTRL,
2649 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2650
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002651 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00002652 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002653
Joe Perches63c3a662011-04-26 08:12:10 +00002654 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002655 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002656 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00002657 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002658 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002659 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002660
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002661 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002662
Matt Carlson80096062010-08-02 11:26:06 +00002663 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002664
2665 tp->link_config.orig_speed = phydev->speed;
2666 tp->link_config.orig_duplex = phydev->duplex;
2667 tp->link_config.orig_autoneg = phydev->autoneg;
2668 tp->link_config.orig_advertising = phydev->advertising;
2669
2670 advertising = ADVERTISED_TP |
2671 ADVERTISED_Pause |
2672 ADVERTISED_Autoneg |
2673 ADVERTISED_10baseT_Half;
2674
Joe Perches63c3a662011-04-26 08:12:10 +00002675 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
2676 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002677 advertising |=
2678 ADVERTISED_100baseT_Half |
2679 ADVERTISED_100baseT_Full |
2680 ADVERTISED_10baseT_Full;
2681 else
2682 advertising |= ADVERTISED_10baseT_Full;
2683 }
2684
2685 phydev->advertising = advertising;
2686
2687 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002688
2689 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00002690 if (phyid != PHY_ID_BCMAC131) {
2691 phyid &= PHY_BCM_OUI_MASK;
2692 if (phyid == PHY_BCM_OUI_1 ||
2693 phyid == PHY_BCM_OUI_2 ||
2694 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08002695 do_low_power = true;
2696 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002697 }
Matt Carlsondd477002008-05-25 23:45:58 -07002698 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002699 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002700
Matt Carlson80096062010-08-02 11:26:06 +00002701 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
2702 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07002703 tp->link_config.orig_speed = tp->link_config.speed;
2704 tp->link_config.orig_duplex = tp->link_config.duplex;
2705 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002708 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07002709 tp->link_config.speed = SPEED_10;
2710 tp->link_config.duplex = DUPLEX_HALF;
2711 tp->link_config.autoneg = AUTONEG_ENABLE;
2712 tg3_setup_phy(tp, 0);
2713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 }
2715
Michael Chanb5d37722006-09-27 16:06:21 -07002716 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2717 u32 val;
2718
2719 val = tr32(GRC_VCPU_EXT_CTRL);
2720 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00002721 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002722 int i;
2723 u32 val;
2724
2725 for (i = 0; i < 200; i++) {
2726 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2727 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2728 break;
2729 msleep(1);
2730 }
2731 }
Joe Perches63c3a662011-04-26 08:12:10 +00002732 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07002733 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2734 WOL_DRV_STATE_SHUTDOWN |
2735 WOL_DRV_WOL |
2736 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002737
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002738 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 u32 mac_mode;
2740
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002741 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002742 if (do_low_power &&
2743 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
2744 tg3_phy_auxctl_write(tp,
2745 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
2746 MII_TG3_AUXCTL_PCTL_WOL_EN |
2747 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2748 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07002749 udelay(40);
2750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002752 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07002753 mac_mode = MAC_MODE_PORT_MODE_GMII;
2754 else
2755 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002757 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2758 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2759 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00002760 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002761 SPEED_100 : SPEED_10;
2762 if (tg3_5700_link_polarity(tp, speed))
2763 mac_mode |= MAC_MODE_LINK_POLARITY;
2764 else
2765 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 } else {
2768 mac_mode = MAC_MODE_PORT_MODE_TBI;
2769 }
2770
Joe Perches63c3a662011-04-26 08:12:10 +00002771 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 tw32(MAC_LED_CTRL, tp->led_ctrl);
2773
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002774 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00002775 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
2776 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002777 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
Joe Perches63c3a662011-04-26 08:12:10 +00002779 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00002780 mac_mode |= MAC_MODE_APE_TX_EN |
2781 MAC_MODE_APE_RX_EN |
2782 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07002783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 tw32_f(MAC_MODE, mac_mode);
2785 udelay(100);
2786
2787 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2788 udelay(10);
2789 }
2790
Joe Perches63c3a662011-04-26 08:12:10 +00002791 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2793 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2794 u32 base_val;
2795
2796 base_val = tp->pci_clock_ctrl;
2797 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2798 CLOCK_CTRL_TXCLK_DISABLE);
2799
Michael Chanb401e9e2005-12-19 16:27:04 -08002800 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2801 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00002802 } else if (tg3_flag(tp, 5780_CLASS) ||
2803 tg3_flag(tp, CPMU_PRESENT) ||
Michael Chand7b0a852007-02-13 12:17:38 -08002804 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002805 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00002806 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 u32 newbits1, newbits2;
2808
2809 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2810 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2811 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2812 CLOCK_CTRL_TXCLK_DISABLE |
2813 CLOCK_CTRL_ALTCLK);
2814 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00002815 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 newbits1 = CLOCK_CTRL_625_CORE;
2817 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2818 } else {
2819 newbits1 = CLOCK_CTRL_ALTCLK;
2820 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2821 }
2822
Michael Chanb401e9e2005-12-19 16:27:04 -08002823 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2824 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Michael Chanb401e9e2005-12-19 16:27:04 -08002826 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2827 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Joe Perches63c3a662011-04-26 08:12:10 +00002829 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 u32 newbits3;
2831
2832 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2833 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2834 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2835 CLOCK_CTRL_TXCLK_DISABLE |
2836 CLOCK_CTRL_44MHZ_CORE);
2837 } else {
2838 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2839 }
2840
Michael Chanb401e9e2005-12-19 16:27:04 -08002841 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2842 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
2844 }
2845
Joe Perches63c3a662011-04-26 08:12:10 +00002846 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08002847 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08002848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 tg3_frob_aux_power(tp);
2850
2851 /* Workaround for unstable PLL clock */
2852 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
2853 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
2854 u32 val = tr32(0x7d00);
2855
2856 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
2857 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00002858 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08002859 int err;
2860
2861 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08002863 if (!err)
2864 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867
Michael Chanbbadf502006-04-06 21:46:34 -07002868 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return 0;
2871}
2872
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002873static void tg3_power_down(struct tg3 *tp)
2874{
2875 tg3_power_down_prepare(tp);
2876
Joe Perches63c3a662011-04-26 08:12:10 +00002877 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002878 pci_set_power_state(tp->pdev, PCI_D3hot);
2879}
2880
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
2882{
2883 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
2884 case MII_TG3_AUX_STAT_10HALF:
2885 *speed = SPEED_10;
2886 *duplex = DUPLEX_HALF;
2887 break;
2888
2889 case MII_TG3_AUX_STAT_10FULL:
2890 *speed = SPEED_10;
2891 *duplex = DUPLEX_FULL;
2892 break;
2893
2894 case MII_TG3_AUX_STAT_100HALF:
2895 *speed = SPEED_100;
2896 *duplex = DUPLEX_HALF;
2897 break;
2898
2899 case MII_TG3_AUX_STAT_100FULL:
2900 *speed = SPEED_100;
2901 *duplex = DUPLEX_FULL;
2902 break;
2903
2904 case MII_TG3_AUX_STAT_1000HALF:
2905 *speed = SPEED_1000;
2906 *duplex = DUPLEX_HALF;
2907 break;
2908
2909 case MII_TG3_AUX_STAT_1000FULL:
2910 *speed = SPEED_1000;
2911 *duplex = DUPLEX_FULL;
2912 break;
2913
2914 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002915 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07002916 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
2917 SPEED_10;
2918 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
2919 DUPLEX_HALF;
2920 break;
2921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 *speed = SPEED_INVALID;
2923 *duplex = DUPLEX_INVALID;
2924 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
2928static void tg3_phy_copper_begin(struct tg3 *tp)
2929{
2930 u32 new_adv;
2931 int i;
2932
Matt Carlson80096062010-08-02 11:26:06 +00002933 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 /* Entering low power mode. Disable gigabit and
2935 * 100baseT advertisements.
2936 */
2937 tg3_writephy(tp, MII_TG3_CTRL, 0);
2938
2939 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
2940 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
Joe Perches63c3a662011-04-26 08:12:10 +00002941 if (tg3_flag(tp, WOL_SPEED_100MB))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
2943
2944 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2945 } else if (tp->link_config.speed == SPEED_INVALID) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002946 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 tp->link_config.advertising &=
2948 ~(ADVERTISED_1000baseT_Half |
2949 ADVERTISED_1000baseT_Full);
2950
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002951 new_adv = ADVERTISE_CSMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
2953 new_adv |= ADVERTISE_10HALF;
2954 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
2955 new_adv |= ADVERTISE_10FULL;
2956 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
2957 new_adv |= ADVERTISE_100HALF;
2958 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
2959 new_adv |= ADVERTISE_100FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002960
2961 new_adv |= tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2964
2965 if (tp->link_config.advertising &
2966 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
2967 new_adv = 0;
2968 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
2969 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
2970 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
2971 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002972 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2974 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
2975 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2976 MII_TG3_CTRL_ENABLE_AS_MASTER);
2977 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
2978 } else {
2979 tg3_writephy(tp, MII_TG3_CTRL, 0);
2980 }
2981 } else {
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002982 new_adv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2983 new_adv |= ADVERTISE_CSMA;
2984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 /* Asking for a specific link mode. */
2986 if (tp->link_config.speed == SPEED_1000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2988
2989 if (tp->link_config.duplex == DUPLEX_FULL)
2990 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
2991 else
2992 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
2993 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2994 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
2995 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2996 MII_TG3_CTRL_ENABLE_AS_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 if (tp->link_config.speed == SPEED_100) {
2999 if (tp->link_config.duplex == DUPLEX_FULL)
3000 new_adv |= ADVERTISE_100FULL;
3001 else
3002 new_adv |= ADVERTISE_100HALF;
3003 } else {
3004 if (tp->link_config.duplex == DUPLEX_FULL)
3005 new_adv |= ADVERTISE_10FULL;
3006 else
3007 new_adv |= ADVERTISE_10HALF;
3008 }
3009 tg3_writephy(tp, MII_ADVERTISE, new_adv);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003010
3011 new_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003013
3014 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 }
3016
Matt Carlson52b02d02010-10-14 10:37:41 +00003017 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
Matt Carlsona6b68da2010-12-06 08:28:52 +00003018 u32 val;
Matt Carlson52b02d02010-10-14 10:37:41 +00003019
3020 tw32(TG3_CPMU_EEE_MODE,
3021 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
3022
Matt Carlson1d36ba42011-04-20 07:57:42 +00003023 TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00003024
Matt Carlson21a00ab2011-01-25 15:58:55 +00003025 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3026 case ASIC_REV_5717:
3027 case ASIC_REV_57765:
3028 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3029 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3030 MII_TG3_DSP_CH34TP2_HIBW01);
3031 /* Fall through */
3032 case ASIC_REV_5719:
3033 val = MII_TG3_DSP_TAP26_ALNOKO |
3034 MII_TG3_DSP_TAP26_RMRXSTO |
3035 MII_TG3_DSP_TAP26_OPCSINPT;
3036 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3037 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003038
Matt Carlsona6b68da2010-12-06 08:28:52 +00003039 val = 0;
Matt Carlson52b02d02010-10-14 10:37:41 +00003040 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3041 /* Advertise 100-BaseTX EEE ability */
3042 if (tp->link_config.advertising &
Matt Carlson3110f5f52010-12-06 08:28:50 +00003043 ADVERTISED_100baseT_Full)
3044 val |= MDIO_AN_EEE_ADV_100TX;
Matt Carlson52b02d02010-10-14 10:37:41 +00003045 /* Advertise 1000-BaseT EEE ability */
3046 if (tp->link_config.advertising &
Matt Carlson3110f5f52010-12-06 08:28:50 +00003047 ADVERTISED_1000baseT_Full)
3048 val |= MDIO_AN_EEE_ADV_1000T;
Matt Carlson52b02d02010-10-14 10:37:41 +00003049 }
Matt Carlson3110f5f52010-12-06 08:28:50 +00003050 tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlson52b02d02010-10-14 10:37:41 +00003051
Matt Carlson1d36ba42011-04-20 07:57:42 +00003052 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00003053 }
3054
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
3056 tp->link_config.speed != SPEED_INVALID) {
3057 u32 bmcr, orig_bmcr;
3058
3059 tp->link_config.active_speed = tp->link_config.speed;
3060 tp->link_config.active_duplex = tp->link_config.duplex;
3061
3062 bmcr = 0;
3063 switch (tp->link_config.speed) {
3064 default:
3065 case SPEED_10:
3066 break;
3067
3068 case SPEED_100:
3069 bmcr |= BMCR_SPEED100;
3070 break;
3071
3072 case SPEED_1000:
3073 bmcr |= TG3_BMCR_SPEED1000;
3074 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 if (tp->link_config.duplex == DUPLEX_FULL)
3078 bmcr |= BMCR_FULLDPLX;
3079
3080 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3081 (bmcr != orig_bmcr)) {
3082 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3083 for (i = 0; i < 1500; i++) {
3084 u32 tmp;
3085
3086 udelay(10);
3087 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3088 tg3_readphy(tp, MII_BMSR, &tmp))
3089 continue;
3090 if (!(tmp & BMSR_LSTATUS)) {
3091 udelay(40);
3092 break;
3093 }
3094 }
3095 tg3_writephy(tp, MII_BMCR, bmcr);
3096 udelay(40);
3097 }
3098 } else {
3099 tg3_writephy(tp, MII_BMCR,
3100 BMCR_ANENABLE | BMCR_ANRESTART);
3101 }
3102}
3103
3104static int tg3_init_5401phy_dsp(struct tg3 *tp)
3105{
3106 int err;
3107
3108 /* Turn off tap power management. */
3109 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003110 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003112 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3113 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3114 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3115 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3116 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
3118 udelay(40);
3119
3120 return err;
3121}
3122
Michael Chan3600d912006-12-07 00:21:48 -08003123static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
Michael Chan3600d912006-12-07 00:21:48 -08003125 u32 adv_reg, all_mask = 0;
3126
3127 if (mask & ADVERTISED_10baseT_Half)
3128 all_mask |= ADVERTISE_10HALF;
3129 if (mask & ADVERTISED_10baseT_Full)
3130 all_mask |= ADVERTISE_10FULL;
3131 if (mask & ADVERTISED_100baseT_Half)
3132 all_mask |= ADVERTISE_100HALF;
3133 if (mask & ADVERTISED_100baseT_Full)
3134 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
3136 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
3137 return 0;
3138
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 if ((adv_reg & all_mask) != all_mask)
3140 return 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003141 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 u32 tg3_ctrl;
3143
Michael Chan3600d912006-12-07 00:21:48 -08003144 all_mask = 0;
3145 if (mask & ADVERTISED_1000baseT_Half)
3146 all_mask |= ADVERTISE_1000HALF;
3147 if (mask & ADVERTISED_1000baseT_Full)
3148 all_mask |= ADVERTISE_1000FULL;
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
3151 return 0;
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 if ((tg3_ctrl & all_mask) != all_mask)
3154 return 0;
3155 }
3156 return 1;
3157}
3158
Matt Carlsonef167e22007-12-20 20:10:01 -08003159static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3160{
3161 u32 curadv, reqadv;
3162
3163 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3164 return 1;
3165
3166 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3167 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3168
3169 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3170 if (curadv != reqadv)
3171 return 0;
3172
Joe Perches63c3a662011-04-26 08:12:10 +00003173 if (tg3_flag(tp, PAUSE_AUTONEG))
Matt Carlsonef167e22007-12-20 20:10:01 -08003174 tg3_readphy(tp, MII_LPA, rmtadv);
3175 } else {
3176 /* Reprogram the advertisement register, even if it
3177 * does not affect the current link. If the link
3178 * gets renegotiated in the future, we can save an
3179 * additional renegotiation cycle by advertising
3180 * it correctly in the first place.
3181 */
3182 if (curadv != reqadv) {
3183 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3184 ADVERTISE_PAUSE_ASYM);
3185 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3186 }
3187 }
3188
3189 return 1;
3190}
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3193{
3194 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003195 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08003196 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 u16 current_speed;
3198 u8 current_duplex;
3199 int i, err;
3200
3201 tw32(MAC_EVENT, 0);
3202
3203 tw32_f(MAC_STATUS,
3204 (MAC_STATUS_SYNC_CHANGED |
3205 MAC_STATUS_CFG_CHANGED |
3206 MAC_STATUS_MI_COMPLETION |
3207 MAC_STATUS_LNKSTATE_CHANGED));
3208 udelay(40);
3209
Matt Carlson8ef21422008-05-02 16:47:53 -07003210 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3211 tw32_f(MAC_MI_MODE,
3212 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3213 udelay(80);
3214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003216 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218 /* Some third-party PHYs need to be reset on link going
3219 * down.
3220 */
3221 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3222 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3223 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3224 netif_carrier_ok(tp->dev)) {
3225 tg3_readphy(tp, MII_BMSR, &bmsr);
3226 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3227 !(bmsr & BMSR_LSTATUS))
3228 force_reset = 1;
3229 }
3230 if (force_reset)
3231 tg3_phy_reset(tp);
3232
Matt Carlson79eb6902010-02-17 15:17:03 +00003233 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 tg3_readphy(tp, MII_BMSR, &bmsr);
3235 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00003236 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 bmsr = 0;
3238
3239 if (!(bmsr & BMSR_LSTATUS)) {
3240 err = tg3_init_5401phy_dsp(tp);
3241 if (err)
3242 return err;
3243
3244 tg3_readphy(tp, MII_BMSR, &bmsr);
3245 for (i = 0; i < 1000; i++) {
3246 udelay(10);
3247 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3248 (bmsr & BMSR_LSTATUS)) {
3249 udelay(40);
3250 break;
3251 }
3252 }
3253
Matt Carlson79eb6902010-02-17 15:17:03 +00003254 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3255 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 !(bmsr & BMSR_LSTATUS) &&
3257 tp->link_config.active_speed == SPEED_1000) {
3258 err = tg3_phy_reset(tp);
3259 if (!err)
3260 err = tg3_init_5401phy_dsp(tp);
3261 if (err)
3262 return err;
3263 }
3264 }
3265 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3266 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3267 /* 5701 {A0,B0} CRC bug workaround */
3268 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00003269 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
3270 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
3271 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 }
3273
3274 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003275 tg3_readphy(tp, MII_TG3_ISTAT, &val);
3276 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003278 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003280 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3282
3283 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3284 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3285 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3286 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3287 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3288 else
3289 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3290 }
3291
3292 current_link_up = 0;
3293 current_speed = SPEED_INVALID;
3294 current_duplex = DUPLEX_INVALID;
3295
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003296 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00003297 err = tg3_phy_auxctl_read(tp,
3298 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3299 &val);
3300 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003301 tg3_phy_auxctl_write(tp,
3302 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3303 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 goto relink;
3305 }
3306 }
3307
3308 bmsr = 0;
3309 for (i = 0; i < 100; i++) {
3310 tg3_readphy(tp, MII_BMSR, &bmsr);
3311 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3312 (bmsr & BMSR_LSTATUS))
3313 break;
3314 udelay(40);
3315 }
3316
3317 if (bmsr & BMSR_LSTATUS) {
3318 u32 aux_stat, bmcr;
3319
3320 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3321 for (i = 0; i < 2000; i++) {
3322 udelay(10);
3323 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3324 aux_stat)
3325 break;
3326 }
3327
3328 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3329 &current_speed,
3330 &current_duplex);
3331
3332 bmcr = 0;
3333 for (i = 0; i < 200; i++) {
3334 tg3_readphy(tp, MII_BMCR, &bmcr);
3335 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3336 continue;
3337 if (bmcr && bmcr != 0x7fff)
3338 break;
3339 udelay(10);
3340 }
3341
Matt Carlsonef167e22007-12-20 20:10:01 -08003342 lcl_adv = 0;
3343 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Matt Carlsonef167e22007-12-20 20:10:01 -08003345 tp->link_config.active_speed = current_speed;
3346 tp->link_config.active_duplex = current_duplex;
3347
3348 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3349 if ((bmcr & BMCR_ANENABLE) &&
3350 tg3_copper_is_advertising_all(tp,
3351 tp->link_config.advertising)) {
3352 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3353 &rmt_adv))
3354 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
3356 } else {
3357 if (!(bmcr & BMCR_ANENABLE) &&
3358 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003359 tp->link_config.duplex == current_duplex &&
3360 tp->link_config.flowctrl ==
3361 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 }
3364 }
3365
Matt Carlsonef167e22007-12-20 20:10:01 -08003366 if (current_link_up == 1 &&
3367 tp->link_config.active_duplex == DUPLEX_FULL)
3368 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 }
3370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371relink:
Matt Carlson80096062010-08-02 11:26:06 +00003372 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 tg3_phy_copper_begin(tp);
3374
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003375 tg3_readphy(tp, MII_BMSR, &bmsr);
3376 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3377 (bmsr & BMSR_LSTATUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 current_link_up = 1;
3379 }
3380
3381 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
3382 if (current_link_up == 1) {
3383 if (tp->link_config.active_speed == SPEED_100 ||
3384 tp->link_config.active_speed == SPEED_10)
3385 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3386 else
3387 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003388 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003389 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3390 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3392
3393 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3394 if (tp->link_config.active_duplex == DUPLEX_HALF)
3395 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003398 if (current_link_up == 1 &&
3399 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003401 else
3402 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 }
3404
3405 /* ??? Without this setting Netgear GA302T PHY does not
3406 * ??? send/receive packets...
3407 */
Matt Carlson79eb6902010-02-17 15:17:03 +00003408 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
3410 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
3411 tw32_f(MAC_MI_MODE, tp->mi_mode);
3412 udelay(80);
3413 }
3414
3415 tw32_f(MAC_MODE, tp->mac_mode);
3416 udelay(40);
3417
Matt Carlson52b02d02010-10-14 10:37:41 +00003418 tg3_phy_eee_adjust(tp, current_link_up);
3419
Joe Perches63c3a662011-04-26 08:12:10 +00003420 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 /* Polled via timer. */
3422 tw32_f(MAC_EVENT, 0);
3423 } else {
3424 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3425 }
3426 udelay(40);
3427
3428 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
3429 current_link_up == 1 &&
3430 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00003431 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 udelay(120);
3433 tw32_f(MAC_STATUS,
3434 (MAC_STATUS_SYNC_CHANGED |
3435 MAC_STATUS_CFG_CHANGED));
3436 udelay(40);
3437 tg3_write_mem(tp,
3438 NIC_SRAM_FIRMWARE_MBOX,
3439 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
3440 }
3441
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003442 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00003443 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003444 u16 oldlnkctl, newlnkctl;
3445
3446 pci_read_config_word(tp->pdev,
3447 tp->pcie_cap + PCI_EXP_LNKCTL,
3448 &oldlnkctl);
3449 if (tp->link_config.active_speed == SPEED_100 ||
3450 tp->link_config.active_speed == SPEED_10)
3451 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
3452 else
3453 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
3454 if (newlnkctl != oldlnkctl)
3455 pci_write_config_word(tp->pdev,
3456 tp->pcie_cap + PCI_EXP_LNKCTL,
3457 newlnkctl);
3458 }
3459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 if (current_link_up != netif_carrier_ok(tp->dev)) {
3461 if (current_link_up)
3462 netif_carrier_on(tp->dev);
3463 else
3464 netif_carrier_off(tp->dev);
3465 tg3_link_report(tp);
3466 }
3467
3468 return 0;
3469}
3470
3471struct tg3_fiber_aneginfo {
3472 int state;
3473#define ANEG_STATE_UNKNOWN 0
3474#define ANEG_STATE_AN_ENABLE 1
3475#define ANEG_STATE_RESTART_INIT 2
3476#define ANEG_STATE_RESTART 3
3477#define ANEG_STATE_DISABLE_LINK_OK 4
3478#define ANEG_STATE_ABILITY_DETECT_INIT 5
3479#define ANEG_STATE_ABILITY_DETECT 6
3480#define ANEG_STATE_ACK_DETECT_INIT 7
3481#define ANEG_STATE_ACK_DETECT 8
3482#define ANEG_STATE_COMPLETE_ACK_INIT 9
3483#define ANEG_STATE_COMPLETE_ACK 10
3484#define ANEG_STATE_IDLE_DETECT_INIT 11
3485#define ANEG_STATE_IDLE_DETECT 12
3486#define ANEG_STATE_LINK_OK 13
3487#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
3488#define ANEG_STATE_NEXT_PAGE_WAIT 15
3489
3490 u32 flags;
3491#define MR_AN_ENABLE 0x00000001
3492#define MR_RESTART_AN 0x00000002
3493#define MR_AN_COMPLETE 0x00000004
3494#define MR_PAGE_RX 0x00000008
3495#define MR_NP_LOADED 0x00000010
3496#define MR_TOGGLE_TX 0x00000020
3497#define MR_LP_ADV_FULL_DUPLEX 0x00000040
3498#define MR_LP_ADV_HALF_DUPLEX 0x00000080
3499#define MR_LP_ADV_SYM_PAUSE 0x00000100
3500#define MR_LP_ADV_ASYM_PAUSE 0x00000200
3501#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
3502#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
3503#define MR_LP_ADV_NEXT_PAGE 0x00001000
3504#define MR_TOGGLE_RX 0x00002000
3505#define MR_NP_RX 0x00004000
3506
3507#define MR_LINK_OK 0x80000000
3508
3509 unsigned long link_time, cur_time;
3510
3511 u32 ability_match_cfg;
3512 int ability_match_count;
3513
3514 char ability_match, idle_match, ack_match;
3515
3516 u32 txconfig, rxconfig;
3517#define ANEG_CFG_NP 0x00000080
3518#define ANEG_CFG_ACK 0x00000040
3519#define ANEG_CFG_RF2 0x00000020
3520#define ANEG_CFG_RF1 0x00000010
3521#define ANEG_CFG_PS2 0x00000001
3522#define ANEG_CFG_PS1 0x00008000
3523#define ANEG_CFG_HD 0x00004000
3524#define ANEG_CFG_FD 0x00002000
3525#define ANEG_CFG_INVAL 0x00001f06
3526
3527};
3528#define ANEG_OK 0
3529#define ANEG_DONE 1
3530#define ANEG_TIMER_ENAB 2
3531#define ANEG_FAILED -1
3532
3533#define ANEG_STATE_SETTLE_TIME 10000
3534
3535static int tg3_fiber_aneg_smachine(struct tg3 *tp,
3536 struct tg3_fiber_aneginfo *ap)
3537{
Matt Carlson5be73b42007-12-20 20:09:29 -08003538 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 unsigned long delta;
3540 u32 rx_cfg_reg;
3541 int ret;
3542
3543 if (ap->state == ANEG_STATE_UNKNOWN) {
3544 ap->rxconfig = 0;
3545 ap->link_time = 0;
3546 ap->cur_time = 0;
3547 ap->ability_match_cfg = 0;
3548 ap->ability_match_count = 0;
3549 ap->ability_match = 0;
3550 ap->idle_match = 0;
3551 ap->ack_match = 0;
3552 }
3553 ap->cur_time++;
3554
3555 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
3556 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
3557
3558 if (rx_cfg_reg != ap->ability_match_cfg) {
3559 ap->ability_match_cfg = rx_cfg_reg;
3560 ap->ability_match = 0;
3561 ap->ability_match_count = 0;
3562 } else {
3563 if (++ap->ability_match_count > 1) {
3564 ap->ability_match = 1;
3565 ap->ability_match_cfg = rx_cfg_reg;
3566 }
3567 }
3568 if (rx_cfg_reg & ANEG_CFG_ACK)
3569 ap->ack_match = 1;
3570 else
3571 ap->ack_match = 0;
3572
3573 ap->idle_match = 0;
3574 } else {
3575 ap->idle_match = 1;
3576 ap->ability_match_cfg = 0;
3577 ap->ability_match_count = 0;
3578 ap->ability_match = 0;
3579 ap->ack_match = 0;
3580
3581 rx_cfg_reg = 0;
3582 }
3583
3584 ap->rxconfig = rx_cfg_reg;
3585 ret = ANEG_OK;
3586
Matt Carlson33f401a2010-04-05 10:19:27 +00003587 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 case ANEG_STATE_UNKNOWN:
3589 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
3590 ap->state = ANEG_STATE_AN_ENABLE;
3591
3592 /* fallthru */
3593 case ANEG_STATE_AN_ENABLE:
3594 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
3595 if (ap->flags & MR_AN_ENABLE) {
3596 ap->link_time = 0;
3597 ap->cur_time = 0;
3598 ap->ability_match_cfg = 0;
3599 ap->ability_match_count = 0;
3600 ap->ability_match = 0;
3601 ap->idle_match = 0;
3602 ap->ack_match = 0;
3603
3604 ap->state = ANEG_STATE_RESTART_INIT;
3605 } else {
3606 ap->state = ANEG_STATE_DISABLE_LINK_OK;
3607 }
3608 break;
3609
3610 case ANEG_STATE_RESTART_INIT:
3611 ap->link_time = ap->cur_time;
3612 ap->flags &= ~(MR_NP_LOADED);
3613 ap->txconfig = 0;
3614 tw32(MAC_TX_AUTO_NEG, 0);
3615 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3616 tw32_f(MAC_MODE, tp->mac_mode);
3617 udelay(40);
3618
3619 ret = ANEG_TIMER_ENAB;
3620 ap->state = ANEG_STATE_RESTART;
3621
3622 /* fallthru */
3623 case ANEG_STATE_RESTART:
3624 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00003625 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00003627 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 break;
3630
3631 case ANEG_STATE_DISABLE_LINK_OK:
3632 ret = ANEG_DONE;
3633 break;
3634
3635 case ANEG_STATE_ABILITY_DETECT_INIT:
3636 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08003637 ap->txconfig = ANEG_CFG_FD;
3638 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3639 if (flowctrl & ADVERTISE_1000XPAUSE)
3640 ap->txconfig |= ANEG_CFG_PS1;
3641 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3642 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3644 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3645 tw32_f(MAC_MODE, tp->mac_mode);
3646 udelay(40);
3647
3648 ap->state = ANEG_STATE_ABILITY_DETECT;
3649 break;
3650
3651 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00003652 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 break;
3655
3656 case ANEG_STATE_ACK_DETECT_INIT:
3657 ap->txconfig |= ANEG_CFG_ACK;
3658 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3659 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3660 tw32_f(MAC_MODE, tp->mac_mode);
3661 udelay(40);
3662
3663 ap->state = ANEG_STATE_ACK_DETECT;
3664
3665 /* fallthru */
3666 case ANEG_STATE_ACK_DETECT:
3667 if (ap->ack_match != 0) {
3668 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
3669 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
3670 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
3671 } else {
3672 ap->state = ANEG_STATE_AN_ENABLE;
3673 }
3674 } else if (ap->ability_match != 0 &&
3675 ap->rxconfig == 0) {
3676 ap->state = ANEG_STATE_AN_ENABLE;
3677 }
3678 break;
3679
3680 case ANEG_STATE_COMPLETE_ACK_INIT:
3681 if (ap->rxconfig & ANEG_CFG_INVAL) {
3682 ret = ANEG_FAILED;
3683 break;
3684 }
3685 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
3686 MR_LP_ADV_HALF_DUPLEX |
3687 MR_LP_ADV_SYM_PAUSE |
3688 MR_LP_ADV_ASYM_PAUSE |
3689 MR_LP_ADV_REMOTE_FAULT1 |
3690 MR_LP_ADV_REMOTE_FAULT2 |
3691 MR_LP_ADV_NEXT_PAGE |
3692 MR_TOGGLE_RX |
3693 MR_NP_RX);
3694 if (ap->rxconfig & ANEG_CFG_FD)
3695 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
3696 if (ap->rxconfig & ANEG_CFG_HD)
3697 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
3698 if (ap->rxconfig & ANEG_CFG_PS1)
3699 ap->flags |= MR_LP_ADV_SYM_PAUSE;
3700 if (ap->rxconfig & ANEG_CFG_PS2)
3701 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
3702 if (ap->rxconfig & ANEG_CFG_RF1)
3703 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3704 if (ap->rxconfig & ANEG_CFG_RF2)
3705 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3706 if (ap->rxconfig & ANEG_CFG_NP)
3707 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3708
3709 ap->link_time = ap->cur_time;
3710
3711 ap->flags ^= (MR_TOGGLE_TX);
3712 if (ap->rxconfig & 0x0008)
3713 ap->flags |= MR_TOGGLE_RX;
3714 if (ap->rxconfig & ANEG_CFG_NP)
3715 ap->flags |= MR_NP_RX;
3716 ap->flags |= MR_PAGE_RX;
3717
3718 ap->state = ANEG_STATE_COMPLETE_ACK;
3719 ret = ANEG_TIMER_ENAB;
3720 break;
3721
3722 case ANEG_STATE_COMPLETE_ACK:
3723 if (ap->ability_match != 0 &&
3724 ap->rxconfig == 0) {
3725 ap->state = ANEG_STATE_AN_ENABLE;
3726 break;
3727 }
3728 delta = ap->cur_time - ap->link_time;
3729 if (delta > ANEG_STATE_SETTLE_TIME) {
3730 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3731 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3732 } else {
3733 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3734 !(ap->flags & MR_NP_RX)) {
3735 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3736 } else {
3737 ret = ANEG_FAILED;
3738 }
3739 }
3740 }
3741 break;
3742
3743 case ANEG_STATE_IDLE_DETECT_INIT:
3744 ap->link_time = ap->cur_time;
3745 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3746 tw32_f(MAC_MODE, tp->mac_mode);
3747 udelay(40);
3748
3749 ap->state = ANEG_STATE_IDLE_DETECT;
3750 ret = ANEG_TIMER_ENAB;
3751 break;
3752
3753 case ANEG_STATE_IDLE_DETECT:
3754 if (ap->ability_match != 0 &&
3755 ap->rxconfig == 0) {
3756 ap->state = ANEG_STATE_AN_ENABLE;
3757 break;
3758 }
3759 delta = ap->cur_time - ap->link_time;
3760 if (delta > ANEG_STATE_SETTLE_TIME) {
3761 /* XXX another gem from the Broadcom driver :( */
3762 ap->state = ANEG_STATE_LINK_OK;
3763 }
3764 break;
3765
3766 case ANEG_STATE_LINK_OK:
3767 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3768 ret = ANEG_DONE;
3769 break;
3770
3771 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3772 /* ??? unimplemented */
3773 break;
3774
3775 case ANEG_STATE_NEXT_PAGE_WAIT:
3776 /* ??? unimplemented */
3777 break;
3778
3779 default:
3780 ret = ANEG_FAILED;
3781 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784 return ret;
3785}
3786
Matt Carlson5be73b42007-12-20 20:09:29 -08003787static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788{
3789 int res = 0;
3790 struct tg3_fiber_aneginfo aninfo;
3791 int status = ANEG_FAILED;
3792 unsigned int tick;
3793 u32 tmp;
3794
3795 tw32_f(MAC_TX_AUTO_NEG, 0);
3796
3797 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3798 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3799 udelay(40);
3800
3801 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3802 udelay(40);
3803
3804 memset(&aninfo, 0, sizeof(aninfo));
3805 aninfo.flags |= MR_AN_ENABLE;
3806 aninfo.state = ANEG_STATE_UNKNOWN;
3807 aninfo.cur_time = 0;
3808 tick = 0;
3809 while (++tick < 195000) {
3810 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3811 if (status == ANEG_DONE || status == ANEG_FAILED)
3812 break;
3813
3814 udelay(1);
3815 }
3816
3817 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3818 tw32_f(MAC_MODE, tp->mac_mode);
3819 udelay(40);
3820
Matt Carlson5be73b42007-12-20 20:09:29 -08003821 *txflags = aninfo.txconfig;
3822 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
3824 if (status == ANEG_DONE &&
3825 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3826 MR_LP_ADV_FULL_DUPLEX)))
3827 res = 1;
3828
3829 return res;
3830}
3831
3832static void tg3_init_bcm8002(struct tg3 *tp)
3833{
3834 u32 mac_status = tr32(MAC_STATUS);
3835 int i;
3836
3837 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00003838 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 !(mac_status & MAC_STATUS_PCS_SYNCED))
3840 return;
3841
3842 /* Set PLL lock range. */
3843 tg3_writephy(tp, 0x16, 0x8007);
3844
3845 /* SW reset */
3846 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
3847
3848 /* Wait for reset to complete. */
3849 /* XXX schedule_timeout() ... */
3850 for (i = 0; i < 500; i++)
3851 udelay(10);
3852
3853 /* Config mode; select PMA/Ch 1 regs. */
3854 tg3_writephy(tp, 0x10, 0x8411);
3855
3856 /* Enable auto-lock and comdet, select txclk for tx. */
3857 tg3_writephy(tp, 0x11, 0x0a10);
3858
3859 tg3_writephy(tp, 0x18, 0x00a0);
3860 tg3_writephy(tp, 0x16, 0x41ff);
3861
3862 /* Assert and deassert POR. */
3863 tg3_writephy(tp, 0x13, 0x0400);
3864 udelay(40);
3865 tg3_writephy(tp, 0x13, 0x0000);
3866
3867 tg3_writephy(tp, 0x11, 0x0a50);
3868 udelay(40);
3869 tg3_writephy(tp, 0x11, 0x0a10);
3870
3871 /* Wait for signal to stabilize */
3872 /* XXX schedule_timeout() ... */
3873 for (i = 0; i < 15000; i++)
3874 udelay(10);
3875
3876 /* Deselect the channel register so we can read the PHYID
3877 * later.
3878 */
3879 tg3_writephy(tp, 0x10, 0x8011);
3880}
3881
3882static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
3883{
Matt Carlson82cd3d12007-12-20 20:09:00 -08003884 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 u32 sg_dig_ctrl, sg_dig_status;
3886 u32 serdes_cfg, expected_sg_dig_ctrl;
3887 int workaround, port_a;
3888 int current_link_up;
3889
3890 serdes_cfg = 0;
3891 expected_sg_dig_ctrl = 0;
3892 workaround = 0;
3893 port_a = 1;
3894 current_link_up = 0;
3895
3896 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
3897 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
3898 workaround = 1;
3899 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
3900 port_a = 0;
3901
3902 /* preserve bits 0-11,13,14 for signal pre-emphasis */
3903 /* preserve bits 20-23 for voltage regulator */
3904 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
3905 }
3906
3907 sg_dig_ctrl = tr32(SG_DIG_CTRL);
3908
3909 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003910 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 if (workaround) {
3912 u32 val = serdes_cfg;
3913
3914 if (port_a)
3915 val |= 0xc010000;
3916 else
3917 val |= 0x4010000;
3918 tw32_f(MAC_SERDES_CFG, val);
3919 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003920
3921 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 }
3923 if (mac_status & MAC_STATUS_PCS_SYNCED) {
3924 tg3_setup_flow_control(tp, 0, 0);
3925 current_link_up = 1;
3926 }
3927 goto out;
3928 }
3929
3930 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003931 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Matt Carlson82cd3d12007-12-20 20:09:00 -08003933 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3934 if (flowctrl & ADVERTISE_1000XPAUSE)
3935 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
3936 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3937 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
3939 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003940 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07003941 tp->serdes_counter &&
3942 ((mac_status & (MAC_STATUS_PCS_SYNCED |
3943 MAC_STATUS_RCVD_CFG)) ==
3944 MAC_STATUS_PCS_SYNCED)) {
3945 tp->serdes_counter--;
3946 current_link_up = 1;
3947 goto out;
3948 }
3949restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 if (workaround)
3951 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003952 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 udelay(5);
3954 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
3955
Michael Chan3d3ebe72006-09-27 15:59:15 -07003956 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003957 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
3959 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003960 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 mac_status = tr32(MAC_STATUS);
3962
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003963 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08003965 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Matt Carlson82cd3d12007-12-20 20:09:00 -08003967 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
3968 local_adv |= ADVERTISE_1000XPAUSE;
3969 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
3970 local_adv |= ADVERTISE_1000XPSE_ASYM;
3971
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003972 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003973 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003974 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08003975 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
3977 tg3_setup_flow_control(tp, local_adv, remote_adv);
3978 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07003979 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003980 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003981 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07003982 if (tp->serdes_counter)
3983 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 else {
3985 if (workaround) {
3986 u32 val = serdes_cfg;
3987
3988 if (port_a)
3989 val |= 0xc010000;
3990 else
3991 val |= 0x4010000;
3992
3993 tw32_f(MAC_SERDES_CFG, val);
3994 }
3995
Matt Carlsonc98f6e32007-12-20 20:08:32 -08003996 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 udelay(40);
3998
3999 /* Link parallel detection - link is up */
4000 /* only if we have PCS_SYNC and not */
4001 /* receiving config code words */
4002 mac_status = tr32(MAC_STATUS);
4003 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4004 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4005 tg3_setup_flow_control(tp, 0, 0);
4006 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004007 tp->phy_flags |=
4008 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004009 tp->serdes_counter =
4010 SERDES_PARALLEL_DET_TIMEOUT;
4011 } else
4012 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 }
4014 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004015 } else {
4016 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004017 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 }
4019
4020out:
4021 return current_link_up;
4022}
4023
4024static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4025{
4026 int current_link_up = 0;
4027
Michael Chan5cf64b8a2007-05-05 12:11:21 -07004028 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
4031 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004032 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004034
Matt Carlson5be73b42007-12-20 20:09:29 -08004035 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4036 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037
Matt Carlson5be73b42007-12-20 20:09:29 -08004038 if (txflags & ANEG_CFG_PS1)
4039 local_adv |= ADVERTISE_1000XPAUSE;
4040 if (txflags & ANEG_CFG_PS2)
4041 local_adv |= ADVERTISE_1000XPSE_ASYM;
4042
4043 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4044 remote_adv |= LPA_1000XPAUSE;
4045 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4046 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
4048 tg3_setup_flow_control(tp, local_adv, remote_adv);
4049
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 current_link_up = 1;
4051 }
4052 for (i = 0; i < 30; i++) {
4053 udelay(20);
4054 tw32_f(MAC_STATUS,
4055 (MAC_STATUS_SYNC_CHANGED |
4056 MAC_STATUS_CFG_CHANGED));
4057 udelay(40);
4058 if ((tr32(MAC_STATUS) &
4059 (MAC_STATUS_SYNC_CHANGED |
4060 MAC_STATUS_CFG_CHANGED)) == 0)
4061 break;
4062 }
4063
4064 mac_status = tr32(MAC_STATUS);
4065 if (current_link_up == 0 &&
4066 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4067 !(mac_status & MAC_STATUS_RCVD_CFG))
4068 current_link_up = 1;
4069 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004070 tg3_setup_flow_control(tp, 0, 0);
4071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 /* Forcing 1000FD link up. */
4073 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
4075 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4076 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004077
4078 tw32_f(MAC_MODE, tp->mac_mode);
4079 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 }
4081
4082out:
4083 return current_link_up;
4084}
4085
4086static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4087{
4088 u32 orig_pause_cfg;
4089 u16 orig_active_speed;
4090 u8 orig_active_duplex;
4091 u32 mac_status;
4092 int current_link_up;
4093 int i;
4094
Matt Carlson8d018622007-12-20 20:05:44 -08004095 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 orig_active_speed = tp->link_config.active_speed;
4097 orig_active_duplex = tp->link_config.active_duplex;
4098
Joe Perches63c3a662011-04-26 08:12:10 +00004099 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004101 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 mac_status = tr32(MAC_STATUS);
4103 mac_status &= (MAC_STATUS_PCS_SYNCED |
4104 MAC_STATUS_SIGNAL_DET |
4105 MAC_STATUS_CFG_CHANGED |
4106 MAC_STATUS_RCVD_CFG);
4107 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4108 MAC_STATUS_SIGNAL_DET)) {
4109 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4110 MAC_STATUS_CFG_CHANGED));
4111 return 0;
4112 }
4113 }
4114
4115 tw32_f(MAC_TX_AUTO_NEG, 0);
4116
4117 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
4118 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
4119 tw32_f(MAC_MODE, tp->mac_mode);
4120 udelay(40);
4121
Matt Carlson79eb6902010-02-17 15:17:03 +00004122 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 tg3_init_bcm8002(tp);
4124
4125 /* Enable link change event even when serdes polling. */
4126 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4127 udelay(40);
4128
4129 current_link_up = 0;
4130 mac_status = tr32(MAC_STATUS);
4131
Joe Perches63c3a662011-04-26 08:12:10 +00004132 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
4134 else
4135 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
4136
Matt Carlson898a56f2009-08-28 14:02:40 +00004137 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00004139 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
4141 for (i = 0; i < 100; i++) {
4142 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4143 MAC_STATUS_CFG_CHANGED));
4144 udelay(5);
4145 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07004146 MAC_STATUS_CFG_CHANGED |
4147 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 break;
4149 }
4150
4151 mac_status = tr32(MAC_STATUS);
4152 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
4153 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004154 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
4155 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 tw32_f(MAC_MODE, (tp->mac_mode |
4157 MAC_MODE_SEND_CONFIGS));
4158 udelay(1);
4159 tw32_f(MAC_MODE, tp->mac_mode);
4160 }
4161 }
4162
4163 if (current_link_up == 1) {
4164 tp->link_config.active_speed = SPEED_1000;
4165 tp->link_config.active_duplex = DUPLEX_FULL;
4166 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4167 LED_CTRL_LNKLED_OVERRIDE |
4168 LED_CTRL_1000MBPS_ON));
4169 } else {
4170 tp->link_config.active_speed = SPEED_INVALID;
4171 tp->link_config.active_duplex = DUPLEX_INVALID;
4172 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4173 LED_CTRL_LNKLED_OVERRIDE |
4174 LED_CTRL_TRAFFIC_OVERRIDE));
4175 }
4176
4177 if (current_link_up != netif_carrier_ok(tp->dev)) {
4178 if (current_link_up)
4179 netif_carrier_on(tp->dev);
4180 else
4181 netif_carrier_off(tp->dev);
4182 tg3_link_report(tp);
4183 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004184 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 if (orig_pause_cfg != now_pause_cfg ||
4186 orig_active_speed != tp->link_config.active_speed ||
4187 orig_active_duplex != tp->link_config.active_duplex)
4188 tg3_link_report(tp);
4189 }
4190
4191 return 0;
4192}
4193
Michael Chan747e8f82005-07-25 12:33:22 -07004194static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4195{
4196 int current_link_up, err = 0;
4197 u32 bmsr, bmcr;
4198 u16 current_speed;
4199 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004200 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004201
4202 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4203 tw32_f(MAC_MODE, tp->mac_mode);
4204 udelay(40);
4205
4206 tw32(MAC_EVENT, 0);
4207
4208 tw32_f(MAC_STATUS,
4209 (MAC_STATUS_SYNC_CHANGED |
4210 MAC_STATUS_CFG_CHANGED |
4211 MAC_STATUS_MI_COMPLETION |
4212 MAC_STATUS_LNKSTATE_CHANGED));
4213 udelay(40);
4214
4215 if (force_reset)
4216 tg3_phy_reset(tp);
4217
4218 current_link_up = 0;
4219 current_speed = SPEED_INVALID;
4220 current_duplex = DUPLEX_INVALID;
4221
4222 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4223 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004224 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4225 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4226 bmsr |= BMSR_LSTATUS;
4227 else
4228 bmsr &= ~BMSR_LSTATUS;
4229 }
Michael Chan747e8f82005-07-25 12:33:22 -07004230
4231 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4232
4233 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004234 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004235 /* do nothing, just check for link up at the end */
4236 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4237 u32 adv, new_adv;
4238
4239 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4240 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4241 ADVERTISE_1000XPAUSE |
4242 ADVERTISE_1000XPSE_ASYM |
4243 ADVERTISE_SLCT);
4244
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004245 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004246
4247 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4248 new_adv |= ADVERTISE_1000XHALF;
4249 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4250 new_adv |= ADVERTISE_1000XFULL;
4251
4252 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4253 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4254 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4255 tg3_writephy(tp, MII_BMCR, bmcr);
4256
4257 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004258 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004259 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004260
4261 return err;
4262 }
4263 } else {
4264 u32 new_bmcr;
4265
4266 bmcr &= ~BMCR_SPEED1000;
4267 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4268
4269 if (tp->link_config.duplex == DUPLEX_FULL)
4270 new_bmcr |= BMCR_FULLDPLX;
4271
4272 if (new_bmcr != bmcr) {
4273 /* BMCR_SPEED1000 is a reserved bit that needs
4274 * to be set on write.
4275 */
4276 new_bmcr |= BMCR_SPEED1000;
4277
4278 /* Force a linkdown */
4279 if (netif_carrier_ok(tp->dev)) {
4280 u32 adv;
4281
4282 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4283 adv &= ~(ADVERTISE_1000XFULL |
4284 ADVERTISE_1000XHALF |
4285 ADVERTISE_SLCT);
4286 tg3_writephy(tp, MII_ADVERTISE, adv);
4287 tg3_writephy(tp, MII_BMCR, bmcr |
4288 BMCR_ANRESTART |
4289 BMCR_ANENABLE);
4290 udelay(10);
4291 netif_carrier_off(tp->dev);
4292 }
4293 tg3_writephy(tp, MII_BMCR, new_bmcr);
4294 bmcr = new_bmcr;
4295 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4296 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004297 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4298 ASIC_REV_5714) {
4299 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4300 bmsr |= BMSR_LSTATUS;
4301 else
4302 bmsr &= ~BMSR_LSTATUS;
4303 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004304 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004305 }
4306 }
4307
4308 if (bmsr & BMSR_LSTATUS) {
4309 current_speed = SPEED_1000;
4310 current_link_up = 1;
4311 if (bmcr & BMCR_FULLDPLX)
4312 current_duplex = DUPLEX_FULL;
4313 else
4314 current_duplex = DUPLEX_HALF;
4315
Matt Carlsonef167e22007-12-20 20:10:01 -08004316 local_adv = 0;
4317 remote_adv = 0;
4318
Michael Chan747e8f82005-07-25 12:33:22 -07004319 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004320 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004321
4322 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4323 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4324 common = local_adv & remote_adv;
4325 if (common & (ADVERTISE_1000XHALF |
4326 ADVERTISE_1000XFULL)) {
4327 if (common & ADVERTISE_1000XFULL)
4328 current_duplex = DUPLEX_FULL;
4329 else
4330 current_duplex = DUPLEX_HALF;
Joe Perches63c3a662011-04-26 08:12:10 +00004331 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00004332 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00004333 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07004334 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00004335 }
Michael Chan747e8f82005-07-25 12:33:22 -07004336 }
4337 }
4338
Matt Carlsonef167e22007-12-20 20:10:01 -08004339 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4340 tg3_setup_flow_control(tp, local_adv, remote_adv);
4341
Michael Chan747e8f82005-07-25 12:33:22 -07004342 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4343 if (tp->link_config.active_duplex == DUPLEX_HALF)
4344 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4345
4346 tw32_f(MAC_MODE, tp->mac_mode);
4347 udelay(40);
4348
4349 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4350
4351 tp->link_config.active_speed = current_speed;
4352 tp->link_config.active_duplex = current_duplex;
4353
4354 if (current_link_up != netif_carrier_ok(tp->dev)) {
4355 if (current_link_up)
4356 netif_carrier_on(tp->dev);
4357 else {
4358 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004359 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004360 }
4361 tg3_link_report(tp);
4362 }
4363 return err;
4364}
4365
4366static void tg3_serdes_parallel_detect(struct tg3 *tp)
4367{
Michael Chan3d3ebe72006-09-27 15:59:15 -07004368 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07004369 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07004370 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07004371 return;
4372 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004373
Michael Chan747e8f82005-07-25 12:33:22 -07004374 if (!netif_carrier_ok(tp->dev) &&
4375 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
4376 u32 bmcr;
4377
4378 tg3_readphy(tp, MII_BMCR, &bmcr);
4379 if (bmcr & BMCR_ANENABLE) {
4380 u32 phy1, phy2;
4381
4382 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004383 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
4384 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07004385
4386 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004387 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4388 MII_TG3_DSP_EXP1_INT_STAT);
4389 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
4390 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004391
4392 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
4393 /* We have signal detect and not receiving
4394 * config code words, link is up by parallel
4395 * detection.
4396 */
4397
4398 bmcr &= ~BMCR_ANENABLE;
4399 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
4400 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004401 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004402 }
4403 }
Matt Carlson859a588792010-04-05 10:19:28 +00004404 } else if (netif_carrier_ok(tp->dev) &&
4405 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004406 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004407 u32 phy2;
4408
4409 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004410 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4411 MII_TG3_DSP_EXP1_INT_STAT);
4412 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004413 if (phy2 & 0x20) {
4414 u32 bmcr;
4415
4416 /* Config code words received, turn on autoneg. */
4417 tg3_readphy(tp, MII_BMCR, &bmcr);
4418 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
4419
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004420 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004421
4422 }
4423 }
4424}
4425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426static int tg3_setup_phy(struct tg3 *tp, int force_reset)
4427{
Matt Carlsonf2096f92011-04-05 14:22:48 +00004428 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 int err;
4430
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004431 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004433 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07004434 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00004435 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
Matt Carlsonbcb37f62008-11-03 16:52:09 -08004438 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004439 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08004440
4441 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
4442 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
4443 scale = 65;
4444 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
4445 scale = 6;
4446 else
4447 scale = 12;
4448
4449 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
4450 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
4451 tw32(GRC_MISC_CFG, val);
4452 }
4453
Matt Carlsonf2096f92011-04-05 14:22:48 +00004454 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4455 (6 << TX_LENGTHS_IPG_SHIFT);
4456 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
4457 val |= tr32(MAC_TX_LENGTHS) &
4458 (TX_LENGTHS_JMB_FRM_LEN_MSK |
4459 TX_LENGTHS_CNT_DWN_VAL_MSK);
4460
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 if (tp->link_config.active_speed == SPEED_1000 &&
4462 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00004463 tw32(MAC_TX_LENGTHS, val |
4464 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00004466 tw32(MAC_TX_LENGTHS, val |
4467 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Joe Perches63c3a662011-04-26 08:12:10 +00004469 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 if (netif_carrier_ok(tp->dev)) {
4471 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07004472 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 } else {
4474 tw32(HOSTCC_STAT_COAL_TICKS, 0);
4475 }
4476 }
4477
Joe Perches63c3a662011-04-26 08:12:10 +00004478 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004479 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07004480 if (!netif_carrier_ok(tp->dev))
4481 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
4482 tp->pwrmgmt_thresh;
4483 else
4484 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
4485 tw32(PCIE_PWR_MGMT_THRESH, val);
4486 }
4487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 return err;
4489}
4490
Matt Carlson66cfd1b2010-09-30 10:34:30 +00004491static inline int tg3_irq_sync(struct tg3 *tp)
4492{
4493 return tp->irq_sync;
4494}
4495
Matt Carlson97bd8e42011-04-13 11:05:04 +00004496static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
4497{
4498 int i;
4499
4500 dst = (u32 *)((u8 *)dst + off);
4501 for (i = 0; i < len; i += sizeof(u32))
4502 *dst++ = tr32(off + i);
4503}
4504
4505static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
4506{
4507 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
4508 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
4509 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
4510 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
4511 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
4512 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
4513 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
4514 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
4515 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
4516 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
4517 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
4518 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
4519 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
4520 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
4521 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
4522 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
4523 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
4524 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
4525 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
4526
Joe Perches63c3a662011-04-26 08:12:10 +00004527 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004528 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
4529
4530 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
4531 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
4532 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
4533 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
4534 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
4535 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
4536 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
4537 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
4538
Joe Perches63c3a662011-04-26 08:12:10 +00004539 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004540 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
4541 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
4542 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
4543 }
4544
4545 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
4546 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
4547 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
4548 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
4549 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
4550
Joe Perches63c3a662011-04-26 08:12:10 +00004551 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004552 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
4553}
4554
4555static void tg3_dump_state(struct tg3 *tp)
4556{
4557 int i;
4558 u32 *regs;
4559
4560 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
4561 if (!regs) {
4562 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
4563 return;
4564 }
4565
Joe Perches63c3a662011-04-26 08:12:10 +00004566 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004567 /* Read up to but not including private PCI registers */
4568 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
4569 regs[i / sizeof(u32)] = tr32(i);
4570 } else
4571 tg3_dump_legacy_regs(tp, regs);
4572
4573 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
4574 if (!regs[i + 0] && !regs[i + 1] &&
4575 !regs[i + 2] && !regs[i + 3])
4576 continue;
4577
4578 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
4579 i * 4,
4580 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
4581 }
4582
4583 kfree(regs);
4584
4585 for (i = 0; i < tp->irq_cnt; i++) {
4586 struct tg3_napi *tnapi = &tp->napi[i];
4587
4588 /* SW status block */
4589 netdev_err(tp->dev,
4590 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
4591 i,
4592 tnapi->hw_status->status,
4593 tnapi->hw_status->status_tag,
4594 tnapi->hw_status->rx_jumbo_consumer,
4595 tnapi->hw_status->rx_consumer,
4596 tnapi->hw_status->rx_mini_consumer,
4597 tnapi->hw_status->idx[0].rx_producer,
4598 tnapi->hw_status->idx[0].tx_consumer);
4599
4600 netdev_err(tp->dev,
4601 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
4602 i,
4603 tnapi->last_tag, tnapi->last_irq_tag,
4604 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
4605 tnapi->rx_rcb_ptr,
4606 tnapi->prodring.rx_std_prod_idx,
4607 tnapi->prodring.rx_std_cons_idx,
4608 tnapi->prodring.rx_jmb_prod_idx,
4609 tnapi->prodring.rx_jmb_cons_idx);
4610 }
4611}
4612
Michael Chandf3e6542006-05-26 17:48:07 -07004613/* This is called whenever we suspect that the system chipset is re-
4614 * ordering the sequence of MMIO to the tx send mailbox. The symptom
4615 * is bogus tx completions. We try to recover by setting the
4616 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
4617 * in the workqueue.
4618 */
4619static void tg3_tx_recover(struct tg3 *tp)
4620{
Joe Perches63c3a662011-04-26 08:12:10 +00004621 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07004622 tp->write32_tx_mbox == tg3_write_indirect_mbox);
4623
Matt Carlson5129c3a2010-04-05 10:19:23 +00004624 netdev_warn(tp->dev,
4625 "The system may be re-ordering memory-mapped I/O "
4626 "cycles to the network device, attempting to recover. "
4627 "Please report the problem to the driver maintainer "
4628 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07004629
4630 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00004631 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07004632 spin_unlock(&tp->lock);
4633}
4634
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004635static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07004636{
Matt Carlsonf65aac12010-08-02 11:26:03 +00004637 /* Tell compiler to fetch tx indices from memory. */
4638 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004639 return tnapi->tx_pending -
4640 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07004641}
4642
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643/* Tigon3 never reports partial packet sends. So we do not
4644 * need special logic to handle SKBs that have not had all
4645 * of their frags sent yet, like SunGEM does.
4646 */
Matt Carlson17375d22009-08-28 14:02:18 +00004647static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648{
Matt Carlson17375d22009-08-28 14:02:18 +00004649 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00004650 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004651 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004652 struct netdev_queue *txq;
4653 int index = tnapi - tp->napi;
4654
Joe Perches63c3a662011-04-26 08:12:10 +00004655 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004656 index--;
4657
4658 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
4660 while (sw_idx != hw_idx) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00004661 struct ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07004663 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
Michael Chandf3e6542006-05-26 17:48:07 -07004665 if (unlikely(skb == NULL)) {
4666 tg3_tx_recover(tp);
4667 return;
4668 }
4669
Alexander Duyckf4188d82009-12-02 16:48:38 +00004670 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004671 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004672 skb_headlen(skb),
4673 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674
4675 ri->skb = NULL;
4676
4677 sw_idx = NEXT_TX(sw_idx);
4678
4679 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004680 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07004681 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
4682 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00004683
4684 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004685 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004686 skb_shinfo(skb)->frags[i].size,
4687 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 sw_idx = NEXT_TX(sw_idx);
4689 }
4690
David S. Millerf47c11e2005-06-24 20:18:35 -07004691 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07004692
4693 if (unlikely(tx_bug)) {
4694 tg3_tx_recover(tp);
4695 return;
4696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 }
4698
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004699 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
Michael Chan1b2a7202006-08-07 21:46:02 -07004701 /* Need to make the tx_cons update visible to tg3_start_xmit()
4702 * before checking for netif_queue_stopped(). Without the
4703 * memory barrier, there is a small possibility that tg3_start_xmit()
4704 * will miss it and cause the queue to be stopped forever.
4705 */
4706 smp_mb();
4707
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004708 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004709 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004710 __netif_tx_lock(txq, smp_processor_id());
4711 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004712 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004713 netif_tx_wake_queue(txq);
4714 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07004715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716}
4717
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004718static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
4719{
4720 if (!ri->skb)
4721 return;
4722
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004723 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004724 map_sz, PCI_DMA_FROMDEVICE);
4725 dev_kfree_skb_any(ri->skb);
4726 ri->skb = NULL;
4727}
4728
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729/* Returns size of skb allocated or < 0 on error.
4730 *
4731 * We only need to fill in the address because the other members
4732 * of the RX descriptor are invariant, see tg3_init_rings.
4733 *
4734 * Note the purposeful assymetry of cpu vs. chip accesses. For
4735 * posting buffers we only dirty the first cache line of the RX
4736 * descriptor (containing the address). Whereas for the RX status
4737 * buffers the cpu only reads the last cacheline of the RX descriptor
4738 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
4739 */
Matt Carlson86b21e52009-11-13 13:03:45 +00004740static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00004741 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742{
4743 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00004744 struct ring_info *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 struct sk_buff *skb;
4746 dma_addr_t mapping;
4747 int skb_size, dest_idx;
4748
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 switch (opaque_key) {
4750 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004751 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00004752 desc = &tpr->rx_std[dest_idx];
4753 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004754 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 break;
4756
4757 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00004758 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00004759 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00004760 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004761 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 break;
4763
4764 default:
4765 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
4768 /* Do not overwrite any of the map or rp information
4769 * until we are sure we can commit to a new buffer.
4770 *
4771 * Callers depend upon this behavior and assume that
4772 * we leave everything unchanged if we fail.
4773 */
Matt Carlson287be122009-08-28 13:58:46 +00004774 skb = netdev_alloc_skb(tp->dev, skb_size + tp->rx_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 if (skb == NULL)
4776 return -ENOMEM;
4777
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 skb_reserve(skb, tp->rx_offset);
4779
Matt Carlson287be122009-08-28 13:58:46 +00004780 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00004782 if (pci_dma_mapping_error(tp->pdev, mapping)) {
4783 dev_kfree_skb(skb);
4784 return -EIO;
4785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
4787 map->skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004788 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 desc->addr_hi = ((u64)mapping >> 32);
4791 desc->addr_lo = ((u64)mapping & 0xffffffff);
4792
4793 return skb_size;
4794}
4795
4796/* We only need to move over in the address because the other
4797 * members of the RX descriptor are invariant. See notes above
4798 * tg3_alloc_rx_skb for full details.
4799 */
Matt Carlsona3896162009-11-13 13:03:44 +00004800static void tg3_recycle_rx(struct tg3_napi *tnapi,
4801 struct tg3_rx_prodring_set *dpr,
4802 u32 opaque_key, int src_idx,
4803 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804{
Matt Carlson17375d22009-08-28 14:02:18 +00004805 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
4807 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00004808 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004809 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810
4811 switch (opaque_key) {
4812 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004813 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00004814 dest_desc = &dpr->rx_std[dest_idx];
4815 dest_map = &dpr->rx_std_buffers[dest_idx];
4816 src_desc = &spr->rx_std[src_idx];
4817 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 break;
4819
4820 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00004821 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00004822 dest_desc = &dpr->rx_jmb[dest_idx].std;
4823 dest_map = &dpr->rx_jmb_buffers[dest_idx];
4824 src_desc = &spr->rx_jmb[src_idx].std;
4825 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 break;
4827
4828 default:
4829 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
4832 dest_map->skb = src_map->skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004833 dma_unmap_addr_set(dest_map, mapping,
4834 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 dest_desc->addr_hi = src_desc->addr_hi;
4836 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00004837
4838 /* Ensure that the update to the skb happens after the physical
4839 * addresses have been transferred to the new BD location.
4840 */
4841 smp_wmb();
4842
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 src_map->skb = NULL;
4844}
4845
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846/* The RX ring scheme is composed of multiple rings which post fresh
4847 * buffers to the chip, and one special ring the chip uses to report
4848 * status back to the host.
4849 *
4850 * The special ring reports the status of received packets to the
4851 * host. The chip does not write into the original descriptor the
4852 * RX buffer was obtained from. The chip simply takes the original
4853 * descriptor as provided by the host, updates the status and length
4854 * field, then writes this into the next status ring entry.
4855 *
4856 * Each ring the host uses to post buffers to the chip is described
4857 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
4858 * it is first placed into the on-chip ram. When the packet's length
4859 * is known, it walks down the TG3_BDINFO entries to select the ring.
4860 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
4861 * which is within the range of the new packet's length is chosen.
4862 *
4863 * The "separate ring for rx status" scheme may sound queer, but it makes
4864 * sense from a cache coherency perspective. If only the host writes
4865 * to the buffer post rings, and only the chip writes to the rx status
4866 * rings, then cache lines never move beyond shared-modified state.
4867 * If both the host and chip were to write into the same ring, cache line
4868 * eviction could occur since both entities want it in an exclusive state.
4869 */
Matt Carlson17375d22009-08-28 14:02:18 +00004870static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871{
Matt Carlson17375d22009-08-28 14:02:18 +00004872 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07004873 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004874 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00004875 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07004876 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00004878 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00004880 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 /*
4882 * We need to order the read of hw_idx and the read of
4883 * the opaque cookie.
4884 */
4885 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 work_mask = 0;
4887 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00004888 std_prod_idx = tpr->rx_std_prod_idx;
4889 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00004891 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00004892 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 unsigned int len;
4894 struct sk_buff *skb;
4895 dma_addr_t dma_addr;
4896 u32 opaque_key, desc_idx, *post_ptr;
4897
4898 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
4899 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
4900 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00004901 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004902 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00004903 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004904 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07004905 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00004907 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004908 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00004909 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00004910 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00004911 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913
4914 work_mask |= opaque_key;
4915
4916 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
4917 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
4918 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00004919 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 desc_idx, *post_ptr);
4921 drop_it_no_recycle:
4922 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00004923 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 goto next_pkt;
4925 }
4926
Matt Carlsonad829262008-11-21 17:16:16 -08004927 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
4928 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
Matt Carlsond2757fc2010-04-12 06:58:27 +00004930 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 int skb_size;
4932
Matt Carlson86b21e52009-11-13 13:03:45 +00004933 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00004934 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 if (skb_size < 0)
4936 goto drop_it;
4937
Matt Carlson287be122009-08-28 13:58:46 +00004938 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 PCI_DMA_FROMDEVICE);
4940
Matt Carlson61e800c2010-02-17 15:16:54 +00004941 /* Ensure that the update to the skb happens
4942 * after the usage of the old DMA mapping.
4943 */
4944 smp_wmb();
4945
4946 ri->skb = NULL;
4947
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 skb_put(skb, len);
4949 } else {
4950 struct sk_buff *copy_skb;
4951
Matt Carlsona3896162009-11-13 13:03:44 +00004952 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 desc_idx, *post_ptr);
4954
Matt Carlsonbf933c82011-01-25 15:58:49 +00004955 copy_skb = netdev_alloc_skb(tp->dev, len +
Matt Carlson9dc7a112010-04-12 06:58:28 +00004956 TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 if (copy_skb == NULL)
4958 goto drop_it_no_recycle;
4959
Matt Carlsonbf933c82011-01-25 15:58:49 +00004960 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 skb_put(copy_skb, len);
4962 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03004963 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
4965
4966 /* We'll reuse the original ring buffer. */
4967 skb = copy_skb;
4968 }
4969
Michał Mirosławdc668912011-04-07 03:35:07 +00004970 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
4972 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
4973 >> RXD_TCPCSUM_SHIFT) == 0xffff))
4974 skb->ip_summed = CHECKSUM_UNNECESSARY;
4975 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07004976 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977
4978 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00004979
4980 if (len > (tp->dev->mtu + ETH_HLEN) &&
4981 skb->protocol != htons(ETH_P_8021Q)) {
4982 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00004983 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00004984 }
4985
Matt Carlson9dc7a112010-04-12 06:58:28 +00004986 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00004987 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
4988 __vlan_hwaccel_put_tag(skb,
4989 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00004990
Matt Carlsonbf933c82011-01-25 15:58:49 +00004991 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 received++;
4994 budget--;
4995
4996next_pkt:
4997 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07004998
4999 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005000 tpr->rx_std_prod_idx = std_prod_idx &
5001 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005002 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5003 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005004 work_mask &= ~RXD_OPAQUE_RING_STD;
5005 rx_std_posted = 0;
5006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005008 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005009 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005010
5011 /* Refresh hw_idx to see if there is new work */
5012 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005013 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005014 rmb();
5015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 }
5017
5018 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005019 tnapi->rx_rcb_ptr = sw_idx;
5020 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021
5022 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005023 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005024 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005025 tpr->rx_std_prod_idx = std_prod_idx &
5026 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005027 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5028 tpr->rx_std_prod_idx);
5029 }
5030 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005031 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5032 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005033 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5034 tpr->rx_jmb_prod_idx);
5035 }
5036 mmiowb();
5037 } else if (work_mask) {
5038 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5039 * updated before the producer indices can be updated.
5040 */
5041 smp_wmb();
5042
Matt Carlson2c49a442010-09-30 10:34:35 +00005043 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5044 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005045
Matt Carlsone4af1af2010-02-12 14:47:05 +00005046 if (tnapi != &tp->napi[1])
5047 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
5050 return received;
5051}
5052
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005053static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005056 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005057 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5058
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 if (sblk->status & SD_STATUS_LINK_CHG) {
5060 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005061 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07005062 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005063 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07005064 tw32_f(MAC_STATUS,
5065 (MAC_STATUS_SYNC_CHANGED |
5066 MAC_STATUS_CFG_CHANGED |
5067 MAC_STATUS_MI_COMPLETION |
5068 MAC_STATUS_LNKSTATE_CHANGED));
5069 udelay(40);
5070 } else
5071 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07005072 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 }
5074 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005075}
5076
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005077static int tg3_rx_prodring_xfer(struct tg3 *tp,
5078 struct tg3_rx_prodring_set *dpr,
5079 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005080{
5081 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005082 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005083
5084 while (1) {
5085 src_prod_idx = spr->rx_std_prod_idx;
5086
5087 /* Make sure updates to the rx_std_buffers[] entries and the
5088 * standard producer index are seen in the correct order.
5089 */
5090 smp_rmb();
5091
5092 if (spr->rx_std_cons_idx == src_prod_idx)
5093 break;
5094
5095 if (spr->rx_std_cons_idx < src_prod_idx)
5096 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
5097 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005098 cpycnt = tp->rx_std_ring_mask + 1 -
5099 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005100
Matt Carlson2c49a442010-09-30 10:34:35 +00005101 cpycnt = min(cpycnt,
5102 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005103
5104 si = spr->rx_std_cons_idx;
5105 di = dpr->rx_std_prod_idx;
5106
Matt Carlsone92967b2010-02-12 14:47:06 +00005107 for (i = di; i < di + cpycnt; i++) {
5108 if (dpr->rx_std_buffers[i].skb) {
5109 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005110 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005111 break;
5112 }
5113 }
5114
5115 if (!cpycnt)
5116 break;
5117
5118 /* Ensure that updates to the rx_std_buffers ring and the
5119 * shadowed hardware producer ring from tg3_recycle_skb() are
5120 * ordered correctly WRT the skb check above.
5121 */
5122 smp_rmb();
5123
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005124 memcpy(&dpr->rx_std_buffers[di],
5125 &spr->rx_std_buffers[si],
5126 cpycnt * sizeof(struct ring_info));
5127
5128 for (i = 0; i < cpycnt; i++, di++, si++) {
5129 struct tg3_rx_buffer_desc *sbd, *dbd;
5130 sbd = &spr->rx_std[si];
5131 dbd = &dpr->rx_std[di];
5132 dbd->addr_hi = sbd->addr_hi;
5133 dbd->addr_lo = sbd->addr_lo;
5134 }
5135
Matt Carlson2c49a442010-09-30 10:34:35 +00005136 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
5137 tp->rx_std_ring_mask;
5138 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
5139 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005140 }
5141
5142 while (1) {
5143 src_prod_idx = spr->rx_jmb_prod_idx;
5144
5145 /* Make sure updates to the rx_jmb_buffers[] entries and
5146 * the jumbo producer index are seen in the correct order.
5147 */
5148 smp_rmb();
5149
5150 if (spr->rx_jmb_cons_idx == src_prod_idx)
5151 break;
5152
5153 if (spr->rx_jmb_cons_idx < src_prod_idx)
5154 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
5155 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005156 cpycnt = tp->rx_jmb_ring_mask + 1 -
5157 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005158
5159 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00005160 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005161
5162 si = spr->rx_jmb_cons_idx;
5163 di = dpr->rx_jmb_prod_idx;
5164
Matt Carlsone92967b2010-02-12 14:47:06 +00005165 for (i = di; i < di + cpycnt; i++) {
5166 if (dpr->rx_jmb_buffers[i].skb) {
5167 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005168 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005169 break;
5170 }
5171 }
5172
5173 if (!cpycnt)
5174 break;
5175
5176 /* Ensure that updates to the rx_jmb_buffers ring and the
5177 * shadowed hardware producer ring from tg3_recycle_skb() are
5178 * ordered correctly WRT the skb check above.
5179 */
5180 smp_rmb();
5181
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005182 memcpy(&dpr->rx_jmb_buffers[di],
5183 &spr->rx_jmb_buffers[si],
5184 cpycnt * sizeof(struct ring_info));
5185
5186 for (i = 0; i < cpycnt; i++, di++, si++) {
5187 struct tg3_rx_buffer_desc *sbd, *dbd;
5188 sbd = &spr->rx_jmb[si].std;
5189 dbd = &dpr->rx_jmb[di].std;
5190 dbd->addr_hi = sbd->addr_hi;
5191 dbd->addr_lo = sbd->addr_lo;
5192 }
5193
Matt Carlson2c49a442010-09-30 10:34:35 +00005194 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
5195 tp->rx_jmb_ring_mask;
5196 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
5197 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005198 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005199
5200 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005201}
5202
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005203static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
5204{
5205 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
5207 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005208 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00005209 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00005210 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07005211 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 }
5213
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 /* run RX thread, within the bounds set by NAPI.
5215 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005216 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005218 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00005219 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Joe Perches63c3a662011-04-26 08:12:10 +00005221 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005222 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005223 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005224 u32 std_prod_idx = dpr->rx_std_prod_idx;
5225 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005226
Matt Carlsone4af1af2010-02-12 14:47:05 +00005227 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005228 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00005229 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005230
5231 wmb();
5232
Matt Carlsone4af1af2010-02-12 14:47:05 +00005233 if (std_prod_idx != dpr->rx_std_prod_idx)
5234 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5235 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005236
Matt Carlsone4af1af2010-02-12 14:47:05 +00005237 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
5238 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5239 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005240
5241 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005242
5243 if (err)
5244 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005245 }
5246
David S. Miller6f535762007-10-11 18:08:29 -07005247 return work_done;
5248}
David S. Millerf7383c22005-05-18 22:50:53 -07005249
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005250static int tg3_poll_msix(struct napi_struct *napi, int budget)
5251{
5252 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5253 struct tg3 *tp = tnapi->tp;
5254 int work_done = 0;
5255 struct tg3_hw_status *sblk = tnapi->hw_status;
5256
5257 while (1) {
5258 work_done = tg3_poll_work(tnapi, work_done, budget);
5259
Joe Perches63c3a662011-04-26 08:12:10 +00005260 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005261 goto tx_recovery;
5262
5263 if (unlikely(work_done >= budget))
5264 break;
5265
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005266 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005267 * to tell the hw how much work has been processed,
5268 * so we must read it before checking for more work.
5269 */
5270 tnapi->last_tag = sblk->status_tag;
5271 tnapi->last_irq_tag = tnapi->last_tag;
5272 rmb();
5273
5274 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00005275 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
5276 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005277 napi_complete(napi);
5278 /* Reenable interrupts. */
5279 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5280 mmiowb();
5281 break;
5282 }
5283 }
5284
5285 return work_done;
5286
5287tx_recovery:
5288 /* work_done is guaranteed to be less than budget. */
5289 napi_complete(napi);
5290 schedule_work(&tp->reset_task);
5291 return work_done;
5292}
5293
Matt Carlsone64de4e2011-04-13 11:05:05 +00005294static void tg3_process_error(struct tg3 *tp)
5295{
5296 u32 val;
5297 bool real_error = false;
5298
Joe Perches63c3a662011-04-26 08:12:10 +00005299 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00005300 return;
5301
5302 /* Check Flow Attention register */
5303 val = tr32(HOSTCC_FLOW_ATTN);
5304 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
5305 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
5306 real_error = true;
5307 }
5308
5309 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
5310 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
5311 real_error = true;
5312 }
5313
5314 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
5315 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
5316 real_error = true;
5317 }
5318
5319 if (!real_error)
5320 return;
5321
5322 tg3_dump_state(tp);
5323
Joe Perches63c3a662011-04-26 08:12:10 +00005324 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsone64de4e2011-04-13 11:05:05 +00005325 schedule_work(&tp->reset_task);
5326}
5327
David S. Miller6f535762007-10-11 18:08:29 -07005328static int tg3_poll(struct napi_struct *napi, int budget)
5329{
Matt Carlson8ef04422009-08-28 14:01:37 +00005330 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5331 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07005332 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00005333 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07005334
5335 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00005336 if (sblk->status & SD_STATUS_ERROR)
5337 tg3_process_error(tp);
5338
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005339 tg3_poll_link(tp);
5340
Matt Carlson17375d22009-08-28 14:02:18 +00005341 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07005342
Joe Perches63c3a662011-04-26 08:12:10 +00005343 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07005344 goto tx_recovery;
5345
5346 if (unlikely(work_done >= budget))
5347 break;
5348
Joe Perches63c3a662011-04-26 08:12:10 +00005349 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00005350 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07005351 * to tell the hw how much work has been processed,
5352 * so we must read it before checking for more work.
5353 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005354 tnapi->last_tag = sblk->status_tag;
5355 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07005356 rmb();
5357 } else
5358 sblk->status &= ~SD_STATUS_UPDATED;
5359
Matt Carlson17375d22009-08-28 14:02:18 +00005360 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005361 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00005362 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07005363 break;
5364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365 }
5366
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005367 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07005368
5369tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07005370 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08005371 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07005372 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07005373 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374}
5375
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005376static void tg3_napi_disable(struct tg3 *tp)
5377{
5378 int i;
5379
5380 for (i = tp->irq_cnt - 1; i >= 0; i--)
5381 napi_disable(&tp->napi[i].napi);
5382}
5383
5384static void tg3_napi_enable(struct tg3 *tp)
5385{
5386 int i;
5387
5388 for (i = 0; i < tp->irq_cnt; i++)
5389 napi_enable(&tp->napi[i].napi);
5390}
5391
5392static void tg3_napi_init(struct tg3 *tp)
5393{
5394 int i;
5395
5396 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
5397 for (i = 1; i < tp->irq_cnt; i++)
5398 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
5399}
5400
5401static void tg3_napi_fini(struct tg3 *tp)
5402{
5403 int i;
5404
5405 for (i = 0; i < tp->irq_cnt; i++)
5406 netif_napi_del(&tp->napi[i].napi);
5407}
5408
5409static inline void tg3_netif_stop(struct tg3 *tp)
5410{
5411 tp->dev->trans_start = jiffies; /* prevent tx timeout */
5412 tg3_napi_disable(tp);
5413 netif_tx_disable(tp->dev);
5414}
5415
5416static inline void tg3_netif_start(struct tg3 *tp)
5417{
5418 /* NOTE: unconditional netif_tx_wake_all_queues is only
5419 * appropriate so long as all callers are assured to
5420 * have free tx slots (such as after tg3_init_hw)
5421 */
5422 netif_tx_wake_all_queues(tp->dev);
5423
5424 tg3_napi_enable(tp);
5425 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
5426 tg3_enable_ints(tp);
5427}
5428
David S. Millerf47c11e2005-06-24 20:18:35 -07005429static void tg3_irq_quiesce(struct tg3 *tp)
5430{
Matt Carlson4f125f42009-09-01 12:55:02 +00005431 int i;
5432
David S. Millerf47c11e2005-06-24 20:18:35 -07005433 BUG_ON(tp->irq_sync);
5434
5435 tp->irq_sync = 1;
5436 smp_mb();
5437
Matt Carlson4f125f42009-09-01 12:55:02 +00005438 for (i = 0; i < tp->irq_cnt; i++)
5439 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07005440}
5441
David S. Millerf47c11e2005-06-24 20:18:35 -07005442/* Fully shutdown all tg3 driver activity elsewhere in the system.
5443 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5444 * with as well. Most of the time, this is not necessary except when
5445 * shutting down the device.
5446 */
5447static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5448{
Michael Chan46966542007-07-11 19:47:19 -07005449 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005450 if (irq_sync)
5451 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005452}
5453
5454static inline void tg3_full_unlock(struct tg3 *tp)
5455{
David S. Millerf47c11e2005-06-24 20:18:35 -07005456 spin_unlock_bh(&tp->lock);
5457}
5458
Michael Chanfcfa0a32006-03-20 22:28:41 -08005459/* One-shot MSI handler - Chip automatically disables interrupt
5460 * after sending MSI so driver doesn't have to do it.
5461 */
David Howells7d12e782006-10-05 14:55:46 +01005462static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005463{
Matt Carlson09943a12009-08-28 14:01:57 +00005464 struct tg3_napi *tnapi = dev_id;
5465 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005466
Matt Carlson898a56f2009-08-28 14:02:40 +00005467 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005468 if (tnapi->rx_rcb)
5469 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005470
5471 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005472 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005473
5474 return IRQ_HANDLED;
5475}
5476
Michael Chan88b06bc22005-04-21 17:13:25 -07005477/* MSI ISR - No need to check for interrupt sharing and no need to
5478 * flush status block and interrupt mailbox. PCI ordering rules
5479 * guarantee that MSI will arrive after the status block.
5480 */
David Howells7d12e782006-10-05 14:55:46 +01005481static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07005482{
Matt Carlson09943a12009-08-28 14:01:57 +00005483 struct tg3_napi *tnapi = dev_id;
5484 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07005485
Matt Carlson898a56f2009-08-28 14:02:40 +00005486 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005487 if (tnapi->rx_rcb)
5488 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07005489 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005490 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07005491 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005492 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07005493 * NIC to stop sending us irqs, engaging "in-intr-handler"
5494 * event coalescing.
5495 */
5496 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005497 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005498 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005499
Michael Chan88b06bc22005-04-21 17:13:25 -07005500 return IRQ_RETVAL(1);
5501}
5502
David Howells7d12e782006-10-05 14:55:46 +01005503static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504{
Matt Carlson09943a12009-08-28 14:01:57 +00005505 struct tg3_napi *tnapi = dev_id;
5506 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005507 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 unsigned int handled = 1;
5509
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 /* In INTx mode, it is possible for the interrupt to arrive at
5511 * the CPU before the status block posted prior to the interrupt.
5512 * Reading the PCI State register will confirm whether the
5513 * interrupt is ours and will flush the status block.
5514 */
Michael Chand18edcb2007-03-24 20:57:11 -07005515 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00005516 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005517 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5518 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005519 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005520 }
Michael Chand18edcb2007-03-24 20:57:11 -07005521 }
5522
5523 /*
5524 * Writing any value to intr-mbox-0 clears PCI INTA# and
5525 * chip-internal interrupt pending events.
5526 * Writing non-zero to intr-mbox-0 additional tells the
5527 * NIC to stop sending us irqs, engaging "in-intr-handler"
5528 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005529 *
5530 * Flush the mailbox to de-assert the IRQ immediately to prevent
5531 * spurious interrupts. The flush impacts performance but
5532 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005533 */
Michael Chanc04cb342007-05-07 00:26:15 -07005534 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005535 if (tg3_irq_sync(tp))
5536 goto out;
5537 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005538 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005539 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005540 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005541 } else {
5542 /* No work, shared interrupt perhaps? re-enable
5543 * interrupts, and flush that PCI write
5544 */
5545 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5546 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005547 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005548out:
David S. Millerfac9b832005-05-18 22:46:34 -07005549 return IRQ_RETVAL(handled);
5550}
5551
David Howells7d12e782006-10-05 14:55:46 +01005552static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005553{
Matt Carlson09943a12009-08-28 14:01:57 +00005554 struct tg3_napi *tnapi = dev_id;
5555 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005556 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005557 unsigned int handled = 1;
5558
David S. Millerfac9b832005-05-18 22:46:34 -07005559 /* In INTx mode, it is possible for the interrupt to arrive at
5560 * the CPU before the status block posted prior to the interrupt.
5561 * Reading the PCI State register will confirm whether the
5562 * interrupt is ours and will flush the status block.
5563 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005564 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00005565 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005566 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5567 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005568 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 }
Michael Chand18edcb2007-03-24 20:57:11 -07005570 }
5571
5572 /*
5573 * writing any value to intr-mbox-0 clears PCI INTA# and
5574 * chip-internal interrupt pending events.
5575 * writing non-zero to intr-mbox-0 additional tells the
5576 * NIC to stop sending us irqs, engaging "in-intr-handler"
5577 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005578 *
5579 * Flush the mailbox to de-assert the IRQ immediately to prevent
5580 * spurious interrupts. The flush impacts performance but
5581 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005582 */
Michael Chanc04cb342007-05-07 00:26:15 -07005583 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005584
5585 /*
5586 * In a shared interrupt configuration, sometimes other devices'
5587 * interrupts will scream. We record the current status tag here
5588 * so that the above check can report that the screaming interrupts
5589 * are unhandled. Eventually they will be silenced.
5590 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005591 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005592
Michael Chand18edcb2007-03-24 20:57:11 -07005593 if (tg3_irq_sync(tp))
5594 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005595
Matt Carlson72334482009-08-28 14:03:01 +00005596 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005597
Matt Carlson09943a12009-08-28 14:01:57 +00005598 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005599
David S. Millerf47c11e2005-06-24 20:18:35 -07005600out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 return IRQ_RETVAL(handled);
5602}
5603
Michael Chan79381092005-04-21 17:13:59 -07005604/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005605static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005606{
Matt Carlson09943a12009-08-28 14:01:57 +00005607 struct tg3_napi *tnapi = dev_id;
5608 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005609 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005610
Michael Chanf9804dd2005-09-27 12:13:10 -07005611 if ((sblk->status & SD_STATUS_UPDATED) ||
5612 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005613 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005614 return IRQ_RETVAL(1);
5615 }
5616 return IRQ_RETVAL(0);
5617}
5618
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005619static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005620static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Michael Chanb9ec6c12006-07-25 16:37:27 -07005622/* Restart hardware after configuration changes, self-test, etc.
5623 * Invoked with tp->lock held.
5624 */
5625static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005626 __releases(tp->lock)
5627 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005628{
5629 int err;
5630
5631 err = tg3_init_hw(tp, reset_phy);
5632 if (err) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00005633 netdev_err(tp->dev,
5634 "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07005635 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5636 tg3_full_unlock(tp);
5637 del_timer_sync(&tp->timer);
5638 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005639 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005640 dev_close(tp->dev);
5641 tg3_full_lock(tp, 0);
5642 }
5643 return err;
5644}
5645
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646#ifdef CONFIG_NET_POLL_CONTROLLER
5647static void tg3_poll_controller(struct net_device *dev)
5648{
Matt Carlson4f125f42009-09-01 12:55:02 +00005649 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07005650 struct tg3 *tp = netdev_priv(dev);
5651
Matt Carlson4f125f42009-09-01 12:55:02 +00005652 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00005653 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654}
5655#endif
5656
David Howellsc4028952006-11-22 14:57:56 +00005657static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658{
David Howellsc4028952006-11-22 14:57:56 +00005659 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005660 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 unsigned int restart_timer;
5662
Michael Chan7faa0062006-02-02 17:29:28 -08005663 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005664
5665 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005666 tg3_full_unlock(tp);
5667 return;
5668 }
5669
5670 tg3_full_unlock(tp);
5671
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005672 tg3_phy_stop(tp);
5673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 tg3_netif_stop(tp);
5675
David S. Millerf47c11e2005-06-24 20:18:35 -07005676 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677
Joe Perches63c3a662011-04-26 08:12:10 +00005678 restart_timer = tg3_flag(tp, RESTART_TIMER);
5679 tg3_flag_clear(tp, RESTART_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Joe Perches63c3a662011-04-26 08:12:10 +00005681 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
Michael Chandf3e6542006-05-26 17:48:07 -07005682 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5683 tp->write32_rx_mbox = tg3_write_flush_reg32;
Joe Perches63c3a662011-04-26 08:12:10 +00005684 tg3_flag_set(tp, MBOX_WRITE_REORDER);
5685 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005686 }
5687
Michael Chan944d9802005-05-29 14:57:48 -07005688 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005689 err = tg3_init_hw(tp, 1);
5690 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005691 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692
5693 tg3_netif_start(tp);
5694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695 if (restart_timer)
5696 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005697
Michael Chanb9ec6c12006-07-25 16:37:27 -07005698out:
Michael Chan7faa0062006-02-02 17:29:28 -08005699 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005700
5701 if (!err)
5702 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703}
5704
5705static void tg3_tx_timeout(struct net_device *dev)
5706{
5707 struct tg3 *tp = netdev_priv(dev);
5708
Michael Chanb0408752007-02-13 12:18:30 -08005709 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00005710 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00005711 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08005712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713
5714 schedule_work(&tp->reset_task);
5715}
5716
Michael Chanc58ec932005-09-17 00:46:27 -07005717/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5718static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5719{
5720 u32 base = (u32) mapping & 0xffffffff;
5721
Eric Dumazet807540b2010-09-23 05:40:09 +00005722 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07005723}
5724
Michael Chan72f2afb2006-03-06 19:28:35 -08005725/* Test for DMA addresses > 40-bit */
5726static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5727 int len)
5728{
5729#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00005730 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00005731 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08005732 return 0;
5733#else
5734 return 0;
5735#endif
5736}
5737
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005738static void tg3_set_txd(struct tg3_napi *, int, dma_addr_t, int, u32, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
Michael Chan72f2afb2006-03-06 19:28:35 -08005740/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005741static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
5742 struct sk_buff *skb, u32 last_plus_one,
5743 u32 *start, u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005745 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07005746 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005747 dma_addr_t new_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748 u32 entry = *start;
Michael Chanc58ec932005-09-17 00:46:27 -07005749 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
Matt Carlson41588ba2008-04-19 18:12:33 -07005751 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5752 new_skb = skb_copy(skb, GFP_ATOMIC);
5753 else {
5754 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5755
5756 new_skb = skb_copy_expand(skb,
5757 skb_headroom(skb) + more_headroom,
5758 skb_tailroom(skb), GFP_ATOMIC);
5759 }
5760
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005762 ret = -1;
5763 } else {
5764 /* New SKB is guaranteed to be linear. */
5765 entry = *start;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005766 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
5767 PCI_DMA_TODEVICE);
5768 /* Make sure the mapping succeeded */
5769 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
5770 ret = -1;
5771 dev_kfree_skb(new_skb);
5772 new_skb = NULL;
David S. Miller90079ce2008-09-11 04:52:51 -07005773
Michael Chanc58ec932005-09-17 00:46:27 -07005774 /* Make sure new skb does not cross any 4G boundaries.
5775 * Drop the packet if it does.
5776 */
Joe Perches63c3a662011-04-26 08:12:10 +00005777 } else if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
5778 tg3_4g_overflow_test(new_addr, new_skb->len)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005779 pci_unmap_single(tp->pdev, new_addr, new_skb->len,
5780 PCI_DMA_TODEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005781 ret = -1;
5782 dev_kfree_skb(new_skb);
5783 new_skb = NULL;
5784 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005785 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005786 base_flags, 1 | (mss << 1));
5787 *start = NEXT_TX(entry);
5788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789 }
5790
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791 /* Now clean up the sw ring entries. */
5792 i = 0;
5793 while (entry != last_plus_one) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005794 int len;
5795
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005796 if (i == 0)
Alexander Duyckf4188d82009-12-02 16:48:38 +00005797 len = skb_headlen(skb);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005798 else
Alexander Duyckf4188d82009-12-02 16:48:38 +00005799 len = skb_shinfo(skb)->frags[i-1].size;
5800
5801 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005802 dma_unmap_addr(&tnapi->tx_buffers[entry],
Alexander Duyckf4188d82009-12-02 16:48:38 +00005803 mapping),
5804 len, PCI_DMA_TODEVICE);
5805 if (i == 0) {
5806 tnapi->tx_buffers[entry].skb = new_skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005807 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00005808 new_addr);
5809 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005810 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 entry = NEXT_TX(entry);
5813 i++;
5814 }
5815
5816 dev_kfree_skb(skb);
5817
Michael Chanc58ec932005-09-17 00:46:27 -07005818 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819}
5820
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005821static void tg3_set_txd(struct tg3_napi *tnapi, int entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 dma_addr_t mapping, int len, u32 flags,
5823 u32 mss_and_is_end)
5824{
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005825 struct tg3_tx_buffer_desc *txd = &tnapi->tx_ring[entry];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 int is_end = (mss_and_is_end & 0x1);
5827 u32 mss = (mss_and_is_end >> 1);
5828 u32 vlan_tag = 0;
5829
5830 if (is_end)
5831 flags |= TXD_FLAG_END;
5832 if (flags & TXD_FLAG_VLAN) {
5833 vlan_tag = flags >> 16;
5834 flags &= 0xffff;
5835 }
5836 vlan_tag |= (mss << TXD_MSS_SHIFT);
5837
5838 txd->addr_hi = ((u64) mapping >> 32);
5839 txd->addr_lo = ((u64) mapping & 0xffffffff);
5840 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
5841 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
5842}
5843
Michael Chan5a6f3072006-03-20 22:28:05 -08005844/* hard_start_xmit for devices that don't have any bugs and
Joe Perches63c3a662011-04-26 08:12:10 +00005845 * support TG3_FLAG_HW_TSO_2 and TG3_FLAG_HW_TSO_3 only.
Michael Chan5a6f3072006-03-20 22:28:05 -08005846 */
Stephen Hemminger613573252009-08-31 19:50:58 +00005847static netdev_tx_t tg3_start_xmit(struct sk_buff *skb,
5848 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849{
5850 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851 u32 len, entry, base_flags, mss;
David S. Miller90079ce2008-09-11 04:52:51 -07005852 dma_addr_t mapping;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005853 struct tg3_napi *tnapi;
5854 struct netdev_queue *txq;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005855 unsigned int i, last;
5856
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005857 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5858 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00005859 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005860 tnapi++;
Michael Chan5a6f3072006-03-20 22:28:05 -08005861
Michael Chan00b70502006-06-17 21:58:45 -07005862 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005863 * and TX reclaim runs via tp->napi.poll inside of a software
Michael Chan5a6f3072006-03-20 22:28:05 -08005864 * interrupt. Furthermore, IRQ processing runs lockless so we have
5865 * no IRQ context deadlocks to worry about either. Rejoice!
5866 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005867 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005868 if (!netif_tx_queue_stopped(txq)) {
5869 netif_tx_stop_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005870
5871 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00005872 netdev_err(dev,
5873 "BUG! Tx Ring full when queue awake!\n");
Michael Chan5a6f3072006-03-20 22:28:05 -08005874 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005875 return NETDEV_TX_BUSY;
5876 }
5877
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005878 entry = tnapi->tx_prod;
Michael Chan5a6f3072006-03-20 22:28:05 -08005879 base_flags = 0;
Matt Carlsonbe98da62010-07-11 09:31:46 +00005880 mss = skb_shinfo(skb)->gso_size;
5881 if (mss) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005882 int tcp_opt_len, ip_tcp_len;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005883 u32 hdrlen;
Michael Chan5a6f3072006-03-20 22:28:05 -08005884
5885 if (skb_header_cloned(skb) &&
5886 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5887 dev_kfree_skb(skb);
5888 goto out_unlock;
5889 }
5890
Matt Carlson02e96082010-09-15 08:59:59 +00005891 if (skb_is_gso_v6(skb)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005892 hdrlen = skb_headlen(skb) - ETH_HLEN;
Matt Carlson02e96082010-09-15 08:59:59 +00005893 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005894 struct iphdr *iph = ip_hdr(skb);
5895
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005896 tcp_opt_len = tcp_optlen(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03005897 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
Michael Chanb0026622006-07-03 19:42:14 -07005898
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005899 iph->check = 0;
5900 iph->tot_len = htons(mss + ip_tcp_len + tcp_opt_len);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005901 hdrlen = ip_tcp_len + tcp_opt_len;
Michael Chanb0026622006-07-03 19:42:14 -07005902 }
Michael Chan5a6f3072006-03-20 22:28:05 -08005903
Joe Perches63c3a662011-04-26 08:12:10 +00005904 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005905 mss |= (hdrlen & 0xc) << 12;
5906 if (hdrlen & 0x10)
5907 base_flags |= 0x00000010;
5908 base_flags |= (hdrlen & 0x3e0) << 5;
5909 } else
5910 mss |= hdrlen << 9;
5911
Michael Chan5a6f3072006-03-20 22:28:05 -08005912 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5913 TXD_FLAG_CPU_POST_DMA);
5914
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005915 tcp_hdr(skb)->check = 0;
Michael Chan5a6f3072006-03-20 22:28:05 -08005916
Matt Carlson859a588792010-04-05 10:19:28 +00005917 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005918 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson859a588792010-04-05 10:19:28 +00005919 }
5920
Jesse Grosseab6d182010-10-20 13:56:03 +00005921 if (vlan_tx_tag_present(skb))
Michael Chan5a6f3072006-03-20 22:28:05 -08005922 base_flags |= (TXD_FLAG_VLAN |
5923 (vlan_tx_tag_get(skb) << 16));
Michael Chan5a6f3072006-03-20 22:28:05 -08005924
Alexander Duyckf4188d82009-12-02 16:48:38 +00005925 len = skb_headlen(skb);
5926
5927 /* Queue skb data, a.k.a. the main skb fragment. */
5928 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
5929 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07005930 dev_kfree_skb(skb);
5931 goto out_unlock;
5932 }
5933
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005934 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005935 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005936
Joe Perches63c3a662011-04-26 08:12:10 +00005937 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
Matt Carlson8fc2f992010-12-06 08:28:49 +00005938 !mss && skb->len > VLAN_ETH_FRAME_LEN)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00005939 base_flags |= TXD_FLAG_JMB_PKT;
5940
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005941 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Michael Chan5a6f3072006-03-20 22:28:05 -08005942 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
5943
5944 entry = NEXT_TX(entry);
5945
5946 /* Now loop through additional data fragments, and queue them. */
5947 if (skb_shinfo(skb)->nr_frags > 0) {
Michael Chan5a6f3072006-03-20 22:28:05 -08005948 last = skb_shinfo(skb)->nr_frags - 1;
5949 for (i = 0; i <= last; i++) {
5950 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5951
5952 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005953 mapping = pci_map_page(tp->pdev,
5954 frag->page,
5955 frag->page_offset,
5956 len, PCI_DMA_TODEVICE);
5957 if (pci_dma_mapping_error(tp->pdev, mapping))
5958 goto dma_error;
5959
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005960 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005961 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00005962 mapping);
Michael Chan5a6f3072006-03-20 22:28:05 -08005963
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005964 tg3_set_txd(tnapi, entry, mapping, len,
Michael Chan5a6f3072006-03-20 22:28:05 -08005965 base_flags, (i == last) | (mss << 1));
5966
5967 entry = NEXT_TX(entry);
5968 }
5969 }
5970
5971 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005972 tw32_tx_mbox(tnapi->prodmbox, entry);
Michael Chan5a6f3072006-03-20 22:28:05 -08005973
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005974 tnapi->tx_prod = entry;
5975 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005976 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00005977
5978 /* netif_tx_stop_queue() must be done before checking
5979 * checking tx index in tg3_tx_avail() below, because in
5980 * tg3_tx(), we update tx index before checking for
5981 * netif_tx_queue_stopped().
5982 */
5983 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005984 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00005985 netif_tx_wake_queue(txq);
Michael Chan5a6f3072006-03-20 22:28:05 -08005986 }
5987
5988out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00005989 mmiowb();
Michael Chan5a6f3072006-03-20 22:28:05 -08005990
5991 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005992
5993dma_error:
5994 last = i;
5995 entry = tnapi->tx_prod;
5996 tnapi->tx_buffers[entry].skb = NULL;
5997 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005998 dma_unmap_addr(&tnapi->tx_buffers[entry], mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00005999 skb_headlen(skb),
6000 PCI_DMA_TODEVICE);
6001 for (i = 0; i <= last; i++) {
6002 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6003 entry = NEXT_TX(entry);
6004
6005 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006006 dma_unmap_addr(&tnapi->tx_buffers[entry],
Alexander Duyckf4188d82009-12-02 16:48:38 +00006007 mapping),
6008 frag->size, PCI_DMA_TODEVICE);
6009 }
6010
6011 dev_kfree_skb(skb);
6012 return NETDEV_TX_OK;
Michael Chan5a6f3072006-03-20 22:28:05 -08006013}
6014
Stephen Hemminger613573252009-08-31 19:50:58 +00006015static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *,
6016 struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006017
6018/* Use GSO to workaround a rare TSO bug that may be triggered when the
6019 * TSO header is greater than 80 bytes.
6020 */
6021static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6022{
6023 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006024 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006025
6026 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006027 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006028 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006029
6030 /* netif_tx_stop_queue() must be done before checking
6031 * checking tx index in tg3_tx_avail() below, because in
6032 * tg3_tx(), we update tx index before checking for
6033 * netif_tx_queue_stopped().
6034 */
6035 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006036 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006037 return NETDEV_TX_BUSY;
6038
6039 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006040 }
6041
6042 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006043 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006044 goto tg3_tso_bug_end;
6045
6046 do {
6047 nskb = segs;
6048 segs = segs->next;
6049 nskb->next = NULL;
6050 tg3_start_xmit_dma_bug(nskb, tp->dev);
6051 } while (segs);
6052
6053tg3_tso_bug_end:
6054 dev_kfree_skb(skb);
6055
6056 return NETDEV_TX_OK;
6057}
Michael Chan52c0fd82006-06-29 20:15:54 -07006058
Michael Chan5a6f3072006-03-20 22:28:05 -08006059/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006060 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006061 */
Stephen Hemminger613573252009-08-31 19:50:58 +00006062static netdev_tx_t tg3_start_xmit_dma_bug(struct sk_buff *skb,
6063 struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006064{
6065 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08006066 u32 len, entry, base_flags, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067 int would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006068 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006069 struct tg3_napi *tnapi;
6070 struct netdev_queue *txq;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006071 unsigned int i, last;
6072
Matt Carlson24f4efd2009-11-13 13:03:35 +00006073 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6074 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006075 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006076 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077
Michael Chan00b70502006-06-17 21:58:45 -07006078 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006079 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006080 * interrupt. Furthermore, IRQ processing runs lockless so we have
6081 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006083 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006084 if (!netif_tx_queue_stopped(txq)) {
6085 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006086
6087 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006088 netdev_err(dev,
6089 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091 return NETDEV_TX_BUSY;
6092 }
6093
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006094 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006096 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006098
Matt Carlsonbe98da62010-07-11 09:31:46 +00006099 mss = skb_shinfo(skb)->gso_size;
6100 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006101 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006102 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103
6104 if (skb_header_cloned(skb) &&
6105 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
6106 dev_kfree_skb(skb);
6107 goto out_unlock;
6108 }
6109
Matt Carlson34195c32010-07-11 09:31:42 +00006110 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006111 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112
Matt Carlson02e96082010-09-15 08:59:59 +00006113 if (skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006114 hdr_len = skb_headlen(skb) - ETH_HLEN;
6115 } else {
6116 u32 ip_tcp_len;
6117
6118 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
6119 hdr_len = ip_tcp_len + tcp_opt_len;
6120
6121 iph->check = 0;
6122 iph->tot_len = htons(mss + hdr_len);
6123 }
6124
Michael Chan52c0fd82006-06-29 20:15:54 -07006125 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006126 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00006127 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07006128
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
6130 TXD_FLAG_CPU_POST_DMA);
6131
Joe Perches63c3a662011-04-26 08:12:10 +00006132 if (tg3_flag(tp, HW_TSO_1) ||
6133 tg3_flag(tp, HW_TSO_2) ||
6134 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006135 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006137 } else
6138 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6139 iph->daddr, 0,
6140 IPPROTO_TCP,
6141 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142
Joe Perches63c3a662011-04-26 08:12:10 +00006143 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00006144 mss |= (hdr_len & 0xc) << 12;
6145 if (hdr_len & 0x10)
6146 base_flags |= 0x00000010;
6147 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00006148 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006149 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00006150 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006151 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006152 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153 int tsflags;
6154
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006155 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156 mss |= (tsflags << 11);
6157 }
6158 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006159 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160 int tsflags;
6161
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006162 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 base_flags |= tsflags << 12;
6164 }
6165 }
6166 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00006167
Jesse Grosseab6d182010-10-20 13:56:03 +00006168 if (vlan_tx_tag_present(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169 base_flags |= (TXD_FLAG_VLAN |
6170 (vlan_tx_tag_get(skb) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171
Joe Perches63c3a662011-04-26 08:12:10 +00006172 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
Matt Carlson8fc2f992010-12-06 08:28:49 +00006173 !mss && skb->len > VLAN_ETH_FRAME_LEN)
Matt Carlson615774f2009-11-13 13:03:39 +00006174 base_flags |= TXD_FLAG_JMB_PKT;
6175
Alexander Duyckf4188d82009-12-02 16:48:38 +00006176 len = skb_headlen(skb);
6177
6178 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
6179 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07006180 dev_kfree_skb(skb);
6181 goto out_unlock;
6182 }
6183
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006184 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006185 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186
6187 would_hit_hwbug = 0;
6188
Joe Perches63c3a662011-04-26 08:12:10 +00006189 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006190 would_hit_hwbug = 1;
6191
Joe Perches63c3a662011-04-26 08:12:10 +00006192 if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006193 tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba2008-04-19 18:12:33 -07006194 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00006195
Joe Perches63c3a662011-04-26 08:12:10 +00006196 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006197 tg3_40bit_overflow_test(tp, mapping, len))
6198 would_hit_hwbug = 1;
6199
Joe Perches63c3a662011-04-26 08:12:10 +00006200 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006201 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006203 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
6205
6206 entry = NEXT_TX(entry);
6207
6208 /* Now loop through additional data fragments, and queue them. */
6209 if (skb_shinfo(skb)->nr_frags > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 last = skb_shinfo(skb)->nr_frags - 1;
6211 for (i = 0; i <= last; i++) {
6212 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6213
6214 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006215 mapping = pci_map_page(tp->pdev,
6216 frag->page,
6217 frag->page_offset,
6218 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006220 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006221 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006222 mapping);
6223 if (pci_dma_mapping_error(tp->pdev, mapping))
6224 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
Joe Perches63c3a662011-04-26 08:12:10 +00006226 if (tg3_flag(tp, SHORT_DMA_BUG) &&
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006227 len <= 8)
6228 would_hit_hwbug = 1;
6229
Joe Perches63c3a662011-04-26 08:12:10 +00006230 if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006231 tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07006232 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233
Joe Perches63c3a662011-04-26 08:12:10 +00006234 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006235 tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08006236 would_hit_hwbug = 1;
6237
Joe Perches63c3a662011-04-26 08:12:10 +00006238 if (tg3_flag(tp, HW_TSO_1) ||
6239 tg3_flag(tp, HW_TSO_2) ||
6240 tg3_flag(tp, HW_TSO_3))
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006241 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242 base_flags, (i == last)|(mss << 1));
6243 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006244 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245 base_flags, (i == last));
6246
6247 entry = NEXT_TX(entry);
6248 }
6249 }
6250
6251 if (would_hit_hwbug) {
6252 u32 last_plus_one = entry;
6253 u32 start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254
Michael Chanc58ec932005-09-17 00:46:27 -07006255 start = entry - 1 - skb_shinfo(skb)->nr_frags;
6256 start &= (TG3_TX_RING_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
6258 /* If the workaround fails due to memory/mapping
6259 * failure, silently drop this packet.
6260 */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006261 if (tigon3_dma_hwbug_workaround(tnapi, skb, last_plus_one,
Michael Chanc58ec932005-09-17 00:46:27 -07006262 &start, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263 goto out_unlock;
6264
6265 entry = start;
6266 }
6267
6268 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006269 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006271 tnapi->tx_prod = entry;
6272 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006273 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006274
6275 /* netif_tx_stop_queue() must be done before checking
6276 * checking tx index in tg3_tx_avail() below, because in
6277 * tg3_tx(), we update tx index before checking for
6278 * netif_tx_queue_stopped().
6279 */
6280 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006281 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006282 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
6285out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006286 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
6288 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006289
6290dma_error:
6291 last = i;
6292 entry = tnapi->tx_prod;
6293 tnapi->tx_buffers[entry].skb = NULL;
6294 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006295 dma_unmap_addr(&tnapi->tx_buffers[entry], mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006296 skb_headlen(skb),
6297 PCI_DMA_TODEVICE);
6298 for (i = 0; i <= last; i++) {
6299 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6300 entry = NEXT_TX(entry);
6301
6302 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006303 dma_unmap_addr(&tnapi->tx_buffers[entry],
Alexander Duyckf4188d82009-12-02 16:48:38 +00006304 mapping),
6305 frag->size, PCI_DMA_TODEVICE);
6306 }
6307
6308 dev_kfree_skb(skb);
6309 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310}
6311
Michał Mirosławdc668912011-04-07 03:35:07 +00006312static u32 tg3_fix_features(struct net_device *dev, u32 features)
6313{
6314 struct tg3 *tp = netdev_priv(dev);
6315
Joe Perches63c3a662011-04-26 08:12:10 +00006316 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00006317 features &= ~NETIF_F_ALL_TSO;
6318
6319 return features;
6320}
6321
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
6323 int new_mtu)
6324{
6325 dev->mtu = new_mtu;
6326
Michael Chanef7f5ec2005-07-25 12:32:25 -07006327 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00006328 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00006329 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00006330 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006331 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006332 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006333 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07006334 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006335 if (tg3_flag(tp, 5780_CLASS)) {
6336 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00006337 netdev_update_features(dev);
6338 }
Joe Perches63c3a662011-04-26 08:12:10 +00006339 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07006340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341}
6342
6343static int tg3_change_mtu(struct net_device *dev, int new_mtu)
6344{
6345 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006346 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347
6348 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
6349 return -EINVAL;
6350
6351 if (!netif_running(dev)) {
6352 /* We'll just catch it later when the
6353 * device is up'd.
6354 */
6355 tg3_set_mtu(dev, tp, new_mtu);
6356 return 0;
6357 }
6358
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006359 tg3_phy_stop(tp);
6360
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006362
6363 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364
Michael Chan944d9802005-05-29 14:57:48 -07006365 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366
6367 tg3_set_mtu(dev, tp, new_mtu);
6368
Michael Chanb9ec6c12006-07-25 16:37:27 -07006369 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
Michael Chanb9ec6c12006-07-25 16:37:27 -07006371 if (!err)
6372 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373
David S. Millerf47c11e2005-06-24 20:18:35 -07006374 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006376 if (!err)
6377 tg3_phy_start(tp);
6378
Michael Chanb9ec6c12006-07-25 16:37:27 -07006379 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380}
6381
Matt Carlson21f581a2009-08-28 14:00:25 +00006382static void tg3_rx_prodring_free(struct tg3 *tp,
6383 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385 int i;
6386
Matt Carlson8fea32b2010-09-15 08:59:58 +00006387 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006388 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006389 i = (i + 1) & tp->rx_std_ring_mask)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006390 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6391 tp->rx_pkt_map_sz);
6392
Joe Perches63c3a662011-04-26 08:12:10 +00006393 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006394 for (i = tpr->rx_jmb_cons_idx;
6395 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006396 i = (i + 1) & tp->rx_jmb_ring_mask) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006397 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6398 TG3_RX_JMB_MAP_SZ);
6399 }
6400 }
6401
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006402 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404
Matt Carlson2c49a442010-09-30 10:34:35 +00006405 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006406 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6407 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408
Joe Perches63c3a662011-04-26 08:12:10 +00006409 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006410 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006411 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6412 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413 }
6414}
6415
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006416/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 *
6418 * The chip has been shut down and the driver detached from
6419 * the networking, so no interrupts or new tx packets will
6420 * end up in the driver. tp->{tx,}lock are held and thus
6421 * we may not sleep.
6422 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006423static int tg3_rx_prodring_alloc(struct tg3 *tp,
6424 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425{
Matt Carlson287be122009-08-28 13:58:46 +00006426 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006428 tpr->rx_std_cons_idx = 0;
6429 tpr->rx_std_prod_idx = 0;
6430 tpr->rx_jmb_cons_idx = 0;
6431 tpr->rx_jmb_prod_idx = 0;
6432
Matt Carlson8fea32b2010-09-15 08:59:58 +00006433 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006434 memset(&tpr->rx_std_buffers[0], 0,
6435 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00006436 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006437 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00006438 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006439 goto done;
6440 }
6441
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00006443 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444
Matt Carlson287be122009-08-28 13:58:46 +00006445 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00006446 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006447 tp->dev->mtu > ETH_DATA_LEN)
6448 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6449 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07006450
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451 /* Initialize invariants of the rings, we only set this
6452 * stuff once. This works because the card does not
6453 * write into the rx buffer posting rings.
6454 */
Matt Carlson2c49a442010-09-30 10:34:35 +00006455 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 struct tg3_rx_buffer_desc *rxd;
6457
Matt Carlson21f581a2009-08-28 14:00:25 +00006458 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006459 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6461 rxd->opaque = (RXD_OPAQUE_RING_STD |
6462 (i << RXD_OPAQUE_INDEX_SHIFT));
6463 }
6464
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006465 /* Now allocate fresh SKBs for each rx ring. */
6466 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006467 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006468 netdev_warn(tp->dev,
6469 "Using a smaller RX standard ring. Only "
6470 "%d out of %d buffers were allocated "
6471 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006472 if (i == 0)
6473 goto initfail;
6474 tp->rx_pending = i;
6475 break;
6476 }
6477 }
6478
Joe Perches63c3a662011-04-26 08:12:10 +00006479 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006480 goto done;
6481
Matt Carlson2c49a442010-09-30 10:34:35 +00006482 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006483
Joe Perches63c3a662011-04-26 08:12:10 +00006484 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00006485 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486
Matt Carlson2c49a442010-09-30 10:34:35 +00006487 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00006488 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489
Matt Carlson0d86df82010-02-17 15:17:00 +00006490 rxd = &tpr->rx_jmb[i].std;
6491 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6492 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6493 RXD_FLAG_JUMBO;
6494 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6495 (i << RXD_OPAQUE_INDEX_SHIFT));
6496 }
6497
6498 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6499 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006500 netdev_warn(tp->dev,
6501 "Using a smaller RX jumbo ring. Only %d "
6502 "out of %d buffers were allocated "
6503 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00006504 if (i == 0)
6505 goto initfail;
6506 tp->rx_jumbo_pending = i;
6507 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508 }
6509 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006510
6511done:
Michael Chan32d8c572006-07-25 16:38:29 -07006512 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006513
6514initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006515 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006516 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517}
6518
Matt Carlson21f581a2009-08-28 14:00:25 +00006519static void tg3_rx_prodring_fini(struct tg3 *tp,
6520 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521{
Matt Carlson21f581a2009-08-28 14:00:25 +00006522 kfree(tpr->rx_std_buffers);
6523 tpr->rx_std_buffers = NULL;
6524 kfree(tpr->rx_jmb_buffers);
6525 tpr->rx_jmb_buffers = NULL;
6526 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006527 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
6528 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006529 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006531 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006532 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
6533 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006534 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006536}
6537
Matt Carlson21f581a2009-08-28 14:00:25 +00006538static int tg3_rx_prodring_init(struct tg3 *tp,
6539 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006540{
Matt Carlson2c49a442010-09-30 10:34:35 +00006541 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
6542 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006543 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006544 return -ENOMEM;
6545
Matt Carlson4bae65c2010-11-24 08:31:52 +00006546 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
6547 TG3_RX_STD_RING_BYTES(tp),
6548 &tpr->rx_std_mapping,
6549 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006550 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006551 goto err_out;
6552
Joe Perches63c3a662011-04-26 08:12:10 +00006553 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006554 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00006555 GFP_KERNEL);
6556 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006557 goto err_out;
6558
Matt Carlson4bae65c2010-11-24 08:31:52 +00006559 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
6560 TG3_RX_JMB_RING_BYTES(tp),
6561 &tpr->rx_jmb_mapping,
6562 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006563 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006564 goto err_out;
6565 }
6566
6567 return 0;
6568
6569err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006570 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006571 return -ENOMEM;
6572}
6573
6574/* Free up pending packets in all rx/tx rings.
6575 *
6576 * The chip has been shut down and the driver detached from
6577 * the networking, so no interrupts or new tx packets will
6578 * end up in the driver. tp->{tx,}lock is not held and we are not
6579 * in an interrupt context and thus may sleep.
6580 */
6581static void tg3_free_rings(struct tg3 *tp)
6582{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006583 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006584
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006585 for (j = 0; j < tp->irq_cnt; j++) {
6586 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006587
Matt Carlson8fea32b2010-09-15 08:59:58 +00006588 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00006589
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006590 if (!tnapi->tx_buffers)
6591 continue;
6592
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006593 for (i = 0; i < TG3_TX_RING_SIZE; ) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006594 struct ring_info *txp;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006595 struct sk_buff *skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006596 unsigned int k;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006597
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006598 txp = &tnapi->tx_buffers[i];
6599 skb = txp->skb;
6600
6601 if (skb == NULL) {
6602 i++;
6603 continue;
6604 }
6605
Alexander Duyckf4188d82009-12-02 16:48:38 +00006606 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006607 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006608 skb_headlen(skb),
6609 PCI_DMA_TODEVICE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006610 txp->skb = NULL;
6611
Alexander Duyckf4188d82009-12-02 16:48:38 +00006612 i++;
6613
6614 for (k = 0; k < skb_shinfo(skb)->nr_frags; k++) {
6615 txp = &tnapi->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
6616 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006617 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006618 skb_shinfo(skb)->frags[k].size,
6619 PCI_DMA_TODEVICE);
6620 i++;
6621 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006622
6623 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006624 }
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006625 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006626}
6627
6628/* Initialize tx/rx rings for packet processing.
6629 *
6630 * The chip has been shut down and the driver detached from
6631 * the networking, so no interrupts or new tx packets will
6632 * end up in the driver. tp->{tx,}lock are held and thus
6633 * we may not sleep.
6634 */
6635static int tg3_init_rings(struct tg3 *tp)
6636{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006637 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006638
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006639 /* Free up all the SKBs. */
6640 tg3_free_rings(tp);
6641
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006642 for (i = 0; i < tp->irq_cnt; i++) {
6643 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006644
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006645 tnapi->last_tag = 0;
6646 tnapi->last_irq_tag = 0;
6647 tnapi->hw_status->status = 0;
6648 tnapi->hw_status->status_tag = 0;
6649 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6650
6651 tnapi->tx_prod = 0;
6652 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006653 if (tnapi->tx_ring)
6654 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006655
6656 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006657 if (tnapi->rx_rcb)
6658 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006659
Matt Carlson8fea32b2010-09-15 08:59:58 +00006660 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00006661 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006662 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006663 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006664 }
Matt Carlson72334482009-08-28 14:03:01 +00006665
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006666 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006667}
6668
6669/*
6670 * Must not be invoked with interrupt sources disabled and
6671 * the hardware shutdown down.
6672 */
6673static void tg3_free_consistent(struct tg3 *tp)
6674{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006675 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006676
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006677 for (i = 0; i < tp->irq_cnt; i++) {
6678 struct tg3_napi *tnapi = &tp->napi[i];
6679
6680 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006681 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006682 tnapi->tx_ring, tnapi->tx_desc_mapping);
6683 tnapi->tx_ring = NULL;
6684 }
6685
6686 kfree(tnapi->tx_buffers);
6687 tnapi->tx_buffers = NULL;
6688
6689 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006690 dma_free_coherent(&tp->pdev->dev,
6691 TG3_RX_RCB_RING_BYTES(tp),
6692 tnapi->rx_rcb,
6693 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006694 tnapi->rx_rcb = NULL;
6695 }
6696
Matt Carlson8fea32b2010-09-15 08:59:58 +00006697 tg3_rx_prodring_fini(tp, &tnapi->prodring);
6698
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006699 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006700 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
6701 tnapi->hw_status,
6702 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006703 tnapi->hw_status = NULL;
6704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006706
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006708 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
6709 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710 tp->hw_stats = NULL;
6711 }
6712}
6713
6714/*
6715 * Must not be invoked with interrupt sources disabled and
6716 * the hardware shutdown down. Can sleep.
6717 */
6718static int tg3_alloc_consistent(struct tg3 *tp)
6719{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006720 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006721
Matt Carlson4bae65c2010-11-24 08:31:52 +00006722 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
6723 sizeof(struct tg3_hw_stats),
6724 &tp->stats_mapping,
6725 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726 if (!tp->hw_stats)
6727 goto err_out;
6728
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6730
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006731 for (i = 0; i < tp->irq_cnt; i++) {
6732 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006733 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006734
Matt Carlson4bae65c2010-11-24 08:31:52 +00006735 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
6736 TG3_HW_STATUS_SIZE,
6737 &tnapi->status_mapping,
6738 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006739 if (!tnapi->hw_status)
6740 goto err_out;
6741
6742 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006743 sblk = tnapi->hw_status;
6744
Matt Carlson8fea32b2010-09-15 08:59:58 +00006745 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
6746 goto err_out;
6747
Matt Carlson19cfaec2009-12-03 08:36:20 +00006748 /* If multivector TSS is enabled, vector 0 does not handle
6749 * tx interrupts. Don't allocate any resources for it.
6750 */
Joe Perches63c3a662011-04-26 08:12:10 +00006751 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
6752 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00006753 tnapi->tx_buffers = kzalloc(sizeof(struct ring_info) *
6754 TG3_TX_RING_SIZE,
6755 GFP_KERNEL);
6756 if (!tnapi->tx_buffers)
6757 goto err_out;
6758
Matt Carlson4bae65c2010-11-24 08:31:52 +00006759 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
6760 TG3_TX_RING_BYTES,
6761 &tnapi->tx_desc_mapping,
6762 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00006763 if (!tnapi->tx_ring)
6764 goto err_out;
6765 }
6766
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006767 /*
6768 * When RSS is enabled, the status block format changes
6769 * slightly. The "rx_jumbo_consumer", "reserved",
6770 * and "rx_mini_consumer" members get mapped to the
6771 * other three rx return ring producer indexes.
6772 */
6773 switch (i) {
6774 default:
6775 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6776 break;
6777 case 2:
6778 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6779 break;
6780 case 3:
6781 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6782 break;
6783 case 4:
6784 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6785 break;
6786 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006787
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006788 /*
6789 * If multivector RSS is enabled, vector 0 does not handle
6790 * rx or tx interrupts. Don't allocate any resources for it.
6791 */
Joe Perches63c3a662011-04-26 08:12:10 +00006792 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006793 continue;
6794
Matt Carlson4bae65c2010-11-24 08:31:52 +00006795 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
6796 TG3_RX_RCB_RING_BYTES(tp),
6797 &tnapi->rx_rcb_mapping,
6798 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006799 if (!tnapi->rx_rcb)
6800 goto err_out;
6801
6802 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006803 }
6804
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805 return 0;
6806
6807err_out:
6808 tg3_free_consistent(tp);
6809 return -ENOMEM;
6810}
6811
6812#define MAX_WAIT_CNT 1000
6813
6814/* To stop a block, clear the enable bit and poll till it
6815 * clears. tp->lock is held.
6816 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006817static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818{
6819 unsigned int i;
6820 u32 val;
6821
Joe Perches63c3a662011-04-26 08:12:10 +00006822 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823 switch (ofs) {
6824 case RCVLSC_MODE:
6825 case DMAC_MODE:
6826 case MBFREE_MODE:
6827 case BUFMGR_MODE:
6828 case MEMARB_MODE:
6829 /* We can't enable/disable these bits of the
6830 * 5705/5750, just say success.
6831 */
6832 return 0;
6833
6834 default:
6835 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837 }
6838
6839 val = tr32(ofs);
6840 val &= ~enable_bit;
6841 tw32_f(ofs, val);
6842
6843 for (i = 0; i < MAX_WAIT_CNT; i++) {
6844 udelay(100);
6845 val = tr32(ofs);
6846 if ((val & enable_bit) == 0)
6847 break;
6848 }
6849
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006850 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00006851 dev_err(&tp->pdev->dev,
6852 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
6853 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854 return -ENODEV;
6855 }
6856
6857 return 0;
6858}
6859
6860/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006861static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862{
6863 int i, err;
6864
6865 tg3_disable_ints(tp);
6866
6867 tp->rx_mode &= ~RX_MODE_ENABLE;
6868 tw32_f(MAC_RX_MODE, tp->rx_mode);
6869 udelay(10);
6870
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006871 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6872 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6873 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6874 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6875 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6876 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006878 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6879 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6880 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6881 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6882 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6883 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6884 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885
6886 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6887 tw32_f(MAC_MODE, tp->mac_mode);
6888 udelay(40);
6889
6890 tp->tx_mode &= ~TX_MODE_ENABLE;
6891 tw32_f(MAC_TX_MODE, tp->tx_mode);
6892
6893 for (i = 0; i < MAX_WAIT_CNT; i++) {
6894 udelay(100);
6895 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6896 break;
6897 }
6898 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00006899 dev_err(&tp->pdev->dev,
6900 "%s timed out, TX_MODE_ENABLE will not clear "
6901 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006902 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903 }
6904
Michael Chane6de8ad2005-05-05 14:42:41 -07006905 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006906 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6907 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908
6909 tw32(FTQ_RESET, 0xffffffff);
6910 tw32(FTQ_RESET, 0x00000000);
6911
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006912 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6913 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006915 for (i = 0; i < tp->irq_cnt; i++) {
6916 struct tg3_napi *tnapi = &tp->napi[i];
6917 if (tnapi->hw_status)
6918 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920 if (tp->hw_stats)
6921 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6922
Linus Torvalds1da177e2005-04-16 15:20:36 -07006923 return err;
6924}
6925
Matt Carlson0d3031d2007-10-10 18:02:43 -07006926static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6927{
6928 int i;
6929 u32 apedata;
6930
Matt Carlsondc6d0742010-09-15 08:59:55 +00006931 /* NCSI does not support APE events */
Joe Perches63c3a662011-04-26 08:12:10 +00006932 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsondc6d0742010-09-15 08:59:55 +00006933 return;
6934
Matt Carlson0d3031d2007-10-10 18:02:43 -07006935 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6936 if (apedata != APE_SEG_SIG_MAGIC)
6937 return;
6938
6939 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006940 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006941 return;
6942
6943 /* Wait for up to 1 millisecond for APE to service previous event. */
6944 for (i = 0; i < 10; i++) {
6945 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6946 return;
6947
6948 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6949
6950 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6951 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6952 event | APE_EVENT_STATUS_EVENT_PENDING);
6953
6954 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6955
6956 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6957 break;
6958
6959 udelay(100);
6960 }
6961
6962 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6963 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6964}
6965
6966static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6967{
6968 u32 event;
6969 u32 apedata;
6970
Joe Perches63c3a662011-04-26 08:12:10 +00006971 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006972 return;
6973
6974 switch (kind) {
Matt Carlson33f401a2010-04-05 10:19:27 +00006975 case RESET_KIND_INIT:
6976 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6977 APE_HOST_SEG_SIG_MAGIC);
6978 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6979 APE_HOST_SEG_LEN_MAGIC);
6980 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6981 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6982 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
Matt Carlson6867c842010-07-11 09:31:44 +00006983 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
Matt Carlson33f401a2010-04-05 10:19:27 +00006984 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6985 APE_HOST_BEHAV_NO_PHYLOCK);
Matt Carlsondc6d0742010-09-15 08:59:55 +00006986 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
6987 TG3_APE_HOST_DRVR_STATE_START);
Matt Carlson0d3031d2007-10-10 18:02:43 -07006988
Matt Carlson33f401a2010-04-05 10:19:27 +00006989 event = APE_EVENT_STATUS_STATE_START;
6990 break;
6991 case RESET_KIND_SHUTDOWN:
6992 /* With the interface we are currently using,
6993 * APE does not track driver state. Wiping
6994 * out the HOST SEGMENT SIGNATURE forces
6995 * the APE to assume OS absent status.
6996 */
6997 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
Matt Carlsonb2aee152008-11-03 16:51:11 -08006998
Matt Carlsondc6d0742010-09-15 08:59:55 +00006999 if (device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007000 tg3_flag(tp, WOL_ENABLE)) {
Matt Carlsondc6d0742010-09-15 08:59:55 +00007001 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
7002 TG3_APE_HOST_WOL_SPEED_AUTO);
7003 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
7004 } else
7005 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
7006
7007 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
7008
Matt Carlson33f401a2010-04-05 10:19:27 +00007009 event = APE_EVENT_STATUS_STATE_UNLOAD;
7010 break;
7011 case RESET_KIND_SUSPEND:
7012 event = APE_EVENT_STATUS_STATE_SUSPEND;
7013 break;
7014 default:
7015 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007016 }
7017
7018 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
7019
7020 tg3_ape_send_event(tp, event);
7021}
7022
Michael Chane6af3012005-04-21 17:12:05 -07007023/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
7025{
David S. Millerf49639e2006-06-09 11:58:36 -07007026 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
7027 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028
Joe Perches63c3a662011-04-26 08:12:10 +00007029 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030 switch (kind) {
7031 case RESET_KIND_INIT:
7032 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7033 DRV_STATE_START);
7034 break;
7035
7036 case RESET_KIND_SHUTDOWN:
7037 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7038 DRV_STATE_UNLOAD);
7039 break;
7040
7041 case RESET_KIND_SUSPEND:
7042 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7043 DRV_STATE_SUSPEND);
7044 break;
7045
7046 default:
7047 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07007050
7051 if (kind == RESET_KIND_INIT ||
7052 kind == RESET_KIND_SUSPEND)
7053 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054}
7055
7056/* tp->lock is held. */
7057static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
7058{
Joe Perches63c3a662011-04-26 08:12:10 +00007059 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060 switch (kind) {
7061 case RESET_KIND_INIT:
7062 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7063 DRV_STATE_START_DONE);
7064 break;
7065
7066 case RESET_KIND_SHUTDOWN:
7067 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7068 DRV_STATE_UNLOAD_DONE);
7069 break;
7070
7071 default:
7072 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07007075
7076 if (kind == RESET_KIND_SHUTDOWN)
7077 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078}
7079
7080/* tp->lock is held. */
7081static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
7082{
Joe Perches63c3a662011-04-26 08:12:10 +00007083 if (tg3_flag(tp, ENABLE_ASF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084 switch (kind) {
7085 case RESET_KIND_INIT:
7086 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7087 DRV_STATE_START);
7088 break;
7089
7090 case RESET_KIND_SHUTDOWN:
7091 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7092 DRV_STATE_UNLOAD);
7093 break;
7094
7095 case RESET_KIND_SUSPEND:
7096 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7097 DRV_STATE_SUSPEND);
7098 break;
7099
7100 default:
7101 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103 }
7104}
7105
Michael Chan7a6f4362006-09-27 16:03:31 -07007106static int tg3_poll_fw(struct tg3 *tp)
7107{
7108 int i;
7109 u32 val;
7110
Michael Chanb5d37722006-09-27 16:06:21 -07007111 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08007112 /* Wait up to 20ms for init done. */
7113 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07007114 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
7115 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08007116 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07007117 }
7118 return -ENODEV;
7119 }
7120
Michael Chan7a6f4362006-09-27 16:03:31 -07007121 /* Wait for firmware initialization to complete. */
7122 for (i = 0; i < 100000; i++) {
7123 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
7124 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
7125 break;
7126 udelay(10);
7127 }
7128
7129 /* Chip might not be fitted with firmware. Some Sun onboard
7130 * parts are configured like that. So don't signal the timeout
7131 * of the above loop as an error, but do report the lack of
7132 * running firmware once.
7133 */
Joe Perches63c3a662011-04-26 08:12:10 +00007134 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
7135 tg3_flag_set(tp, NO_FWARE_REPORTED);
Michael Chan7a6f4362006-09-27 16:03:31 -07007136
Joe Perches05dbe002010-02-17 19:44:19 +00007137 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07007138 }
7139
Matt Carlson6b10c162010-02-12 14:47:08 +00007140 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
7141 /* The 57765 A0 needs a little more
7142 * time to do some important work.
7143 */
7144 mdelay(10);
7145 }
7146
Michael Chan7a6f4362006-09-27 16:03:31 -07007147 return 0;
7148}
7149
Michael Chanee6a99b2007-07-18 21:49:10 -07007150/* Save PCI command register before chip reset */
7151static void tg3_save_pci_state(struct tg3 *tp)
7152{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007153 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007154}
7155
7156/* Restore PCI state after chip reset */
7157static void tg3_restore_pci_state(struct tg3 *tp)
7158{
7159 u32 val;
7160
7161 /* Re-enable indirect register accesses. */
7162 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7163 tp->misc_host_ctrl);
7164
7165 /* Set MAX PCI retry to zero. */
7166 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7167 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007168 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007169 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007170 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007171 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007172 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007173 PCISTATE_ALLOW_APE_SHMEM_WR |
7174 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007175 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7176
Matt Carlson8a6eac92007-10-21 16:17:55 -07007177 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007178
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007179 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +00007180 if (tg3_flag(tp, PCI_EXPRESS))
Matt Carlsoncf790032010-11-24 08:31:48 +00007181 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007182 else {
7183 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7184 tp->pci_cacheline_sz);
7185 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7186 tp->pci_lat_timer);
7187 }
Michael Chan114342f2007-10-15 02:12:26 -07007188 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007189
Michael Chanee6a99b2007-07-18 21:49:10 -07007190 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007191 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007192 u16 pcix_cmd;
7193
7194 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7195 &pcix_cmd);
7196 pcix_cmd &= ~PCI_X_CMD_ERO;
7197 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7198 pcix_cmd);
7199 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007200
Joe Perches63c3a662011-04-26 08:12:10 +00007201 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007202
7203 /* Chip reset on 5780 will reset MSI enable bit,
7204 * so need to restore it.
7205 */
Joe Perches63c3a662011-04-26 08:12:10 +00007206 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007207 u16 ctrl;
7208
7209 pci_read_config_word(tp->pdev,
7210 tp->msi_cap + PCI_MSI_FLAGS,
7211 &ctrl);
7212 pci_write_config_word(tp->pdev,
7213 tp->msi_cap + PCI_MSI_FLAGS,
7214 ctrl | PCI_MSI_FLAGS_ENABLE);
7215 val = tr32(MSGINT_MODE);
7216 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7217 }
7218 }
7219}
7220
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221static void tg3_stop_fw(struct tg3 *);
7222
7223/* tp->lock is held. */
7224static int tg3_chip_reset(struct tg3 *tp)
7225{
7226 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007227 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007228 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229
David S. Millerf49639e2006-06-09 11:58:36 -07007230 tg3_nvram_lock(tp);
7231
Matt Carlson77b483f2008-08-15 14:07:24 -07007232 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7233
David S. Millerf49639e2006-06-09 11:58:36 -07007234 /* No matching tg3_nvram_unlock() after this because
7235 * chip reset below will undo the nvram lock.
7236 */
7237 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238
Michael Chanee6a99b2007-07-18 21:49:10 -07007239 /* GRC_MISC_CFG core clock reset will clear the memory
7240 * enable bit in PCI register 4 and the MSI enable bit
7241 * on some chips, so we save relevant registers here.
7242 */
7243 tg3_save_pci_state(tp);
7244
Michael Chand9ab5ad12006-03-20 22:27:35 -08007245 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007246 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08007247 tw32(GRC_FASTBOOT_PC, 0);
7248
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249 /*
7250 * We must avoid the readl() that normally takes place.
7251 * It locks machines, causes machine checks, and other
7252 * fun things. So, temporarily disable the 5701
7253 * hardware workaround, while we do the reset.
7254 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007255 write_op = tp->write32;
7256 if (write_op == tg3_write_flush_reg32)
7257 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007258
Michael Chand18edcb2007-03-24 20:57:11 -07007259 /* Prevent the irq handler from reading or writing PCI registers
7260 * during chip reset when the memory enable bit in the PCI command
7261 * register may be cleared. The chip does not generate interrupt
7262 * at this time, but the irq handler may still be called due to irq
7263 * sharing or irqpoll.
7264 */
Joe Perches63c3a662011-04-26 08:12:10 +00007265 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007266 for (i = 0; i < tp->irq_cnt; i++) {
7267 struct tg3_napi *tnapi = &tp->napi[i];
7268 if (tnapi->hw_status) {
7269 tnapi->hw_status->status = 0;
7270 tnapi->hw_status->status_tag = 0;
7271 }
7272 tnapi->last_tag = 0;
7273 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007274 }
Michael Chand18edcb2007-03-24 20:57:11 -07007275 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007276
7277 for (i = 0; i < tp->irq_cnt; i++)
7278 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007279
Matt Carlson255ca312009-08-25 10:07:27 +00007280 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7281 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7282 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7283 }
7284
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285 /* do the reset */
7286 val = GRC_MISC_CFG_CORECLK_RESET;
7287
Joe Perches63c3a662011-04-26 08:12:10 +00007288 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007289 /* Force PCIe 1.0a mode */
7290 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007291 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007292 tr32(TG3_PCIE_PHY_TSTCTL) ==
7293 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7294 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7295
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7297 tw32(GRC_MISC_CFG, (1 << 29));
7298 val |= (1 << 29);
7299 }
7300 }
7301
Michael Chanb5d37722006-09-27 16:06:21 -07007302 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7303 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7304 tw32(GRC_VCPU_EXT_CTRL,
7305 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7306 }
7307
Matt Carlsonf37500d2010-08-02 11:25:59 +00007308 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007309 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007311
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312 tw32(GRC_MISC_CFG, val);
7313
Michael Chan1ee582d2005-08-09 20:16:46 -07007314 /* restore 5701 hardware bug workaround write method */
7315 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316
7317 /* Unfortunately, we have to delay before the PCI read back.
7318 * Some 575X chips even will not respond to a PCI cfg access
7319 * when the reset command is given to the chip.
7320 *
7321 * How do these hardware designers expect things to work
7322 * properly if the PCI write is posted for a long period
7323 * of time? It is always necessary to have some method by
7324 * which a register read back can occur to push the write
7325 * out which does the reset.
7326 *
7327 * For most tg3 variants the trick below was working.
7328 * Ho hum...
7329 */
7330 udelay(120);
7331
7332 /* Flush PCI posted writes. The normal MMIO registers
7333 * are inaccessible at this time so this is the only
7334 * way to make this reliably (actually, this is no longer
7335 * the case, see above). I tried to use indirect
7336 * register read/write but this upset some 5701 variants.
7337 */
7338 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7339
7340 udelay(120);
7341
Joe Perches63c3a662011-04-26 08:12:10 +00007342 if (tg3_flag(tp, PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00007343 u16 val16;
7344
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7346 int i;
7347 u32 cfg_val;
7348
7349 /* Wait for link training to complete. */
7350 for (i = 0; i < 5000; i++)
7351 udelay(100);
7352
7353 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7354 pci_write_config_dword(tp->pdev, 0xc4,
7355 cfg_val | (1 << 15));
7356 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007357
Matt Carlsone7126992009-08-25 10:08:16 +00007358 /* Clear the "no snoop" and "relaxed ordering" bits. */
7359 pci_read_config_word(tp->pdev,
7360 tp->pcie_cap + PCI_EXP_DEVCTL,
7361 &val16);
7362 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7363 PCI_EXP_DEVCTL_NOSNOOP_EN);
7364 /*
7365 * Older PCIe devices only support the 128 byte
7366 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007367 */
Joe Perches63c3a662011-04-26 08:12:10 +00007368 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007369 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007370 pci_write_config_word(tp->pdev,
7371 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007372 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007373
Matt Carlsoncf790032010-11-24 08:31:48 +00007374 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007375
7376 /* Clear error status */
7377 pci_write_config_word(tp->pdev,
7378 tp->pcie_cap + PCI_EXP_DEVSTA,
7379 PCI_EXP_DEVSTA_CED |
7380 PCI_EXP_DEVSTA_NFED |
7381 PCI_EXP_DEVSTA_FED |
7382 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383 }
7384
Michael Chanee6a99b2007-07-18 21:49:10 -07007385 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386
Joe Perches63c3a662011-04-26 08:12:10 +00007387 tg3_flag_clear(tp, CHIP_RESETTING);
7388 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007389
Michael Chanee6a99b2007-07-18 21:49:10 -07007390 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007391 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007392 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007393 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394
7395 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7396 tg3_stop_fw(tp);
7397 tw32(0x5000, 0x400);
7398 }
7399
7400 tw32(GRC_MODE, tp->grc_mode);
7401
7402 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007403 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404
7405 tw32(0xc4, val | (1 << 15));
7406 }
7407
7408 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7409 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7410 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7411 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7412 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7413 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7414 }
7415
Joe Perches63c3a662011-04-26 08:12:10 +00007416 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007417 tp->mac_mode = MAC_MODE_APE_TX_EN |
7418 MAC_MODE_APE_RX_EN |
7419 MAC_MODE_TDE_ENABLE;
7420
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007421 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007422 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
7423 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007424 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007425 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7426 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007427 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007428 val = 0;
7429
7430 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431 udelay(40);
7432
Matt Carlson77b483f2008-08-15 14:07:24 -07007433 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7434
Michael Chan7a6f4362006-09-27 16:03:31 -07007435 err = tg3_poll_fw(tp);
7436 if (err)
7437 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438
Matt Carlson0a9140c2009-08-28 12:27:50 +00007439 tg3_mdio_start(tp);
7440
Joe Perches63c3a662011-04-26 08:12:10 +00007441 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007442 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7443 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007444 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007445 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446
7447 tw32(0x7c00, val | (1 << 25));
7448 }
7449
Matt Carlsond78b59f2011-04-05 14:22:46 +00007450 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7451 val = tr32(TG3_CPMU_CLCK_ORIDE);
7452 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7453 }
7454
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007456 tg3_flag_clear(tp, ENABLE_ASF);
7457 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7459 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7460 u32 nic_cfg;
7461
7462 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7463 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007464 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007465 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007466 if (tg3_flag(tp, 5750_PLUS))
7467 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468 }
7469 }
7470
7471 return 0;
7472}
7473
7474/* tp->lock is held. */
7475static void tg3_stop_fw(struct tg3 *tp)
7476{
Joe Perches63c3a662011-04-26 08:12:10 +00007477 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007478 /* Wait for RX cpu to ACK the previous event. */
7479 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480
7481 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007482
7483 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484
Matt Carlson7c5026a2008-05-02 16:49:29 -07007485 /* Wait for RX cpu to ACK this event. */
7486 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487 }
7488}
7489
7490/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007491static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492{
7493 int err;
7494
7495 tg3_stop_fw(tp);
7496
Michael Chan944d9802005-05-29 14:57:48 -07007497 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007499 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500 err = tg3_chip_reset(tp);
7501
Matt Carlsondaba2a62009-04-20 06:58:52 +00007502 __tg3_set_mac_addr(tp, 0);
7503
Michael Chan944d9802005-05-29 14:57:48 -07007504 tg3_write_sig_legacy(tp, kind);
7505 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506
7507 if (err)
7508 return err;
7509
7510 return 0;
7511}
7512
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513#define RX_CPU_SCRATCH_BASE 0x30000
7514#define RX_CPU_SCRATCH_SIZE 0x04000
7515#define TX_CPU_SCRATCH_BASE 0x34000
7516#define TX_CPU_SCRATCH_SIZE 0x04000
7517
7518/* tp->lock is held. */
7519static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7520{
7521 int i;
7522
Joe Perches63c3a662011-04-26 08:12:10 +00007523 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524
Michael Chanb5d37722006-09-27 16:06:21 -07007525 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7526 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7527
7528 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7529 return 0;
7530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531 if (offset == RX_CPU_BASE) {
7532 for (i = 0; i < 10000; i++) {
7533 tw32(offset + CPU_STATE, 0xffffffff);
7534 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7535 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7536 break;
7537 }
7538
7539 tw32(offset + CPU_STATE, 0xffffffff);
7540 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7541 udelay(10);
7542 } else {
7543 for (i = 0; i < 10000; i++) {
7544 tw32(offset + CPU_STATE, 0xffffffff);
7545 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7546 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7547 break;
7548 }
7549 }
7550
7551 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007552 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7553 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554 return -ENODEV;
7555 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007556
7557 /* Clear firmware's nvram arbitration. */
Joe Perches63c3a662011-04-26 08:12:10 +00007558 if (tg3_flag(tp, NVRAM))
Michael Chanec41c7d2006-01-17 02:40:55 -08007559 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560 return 0;
7561}
7562
7563struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007564 unsigned int fw_base;
7565 unsigned int fw_len;
7566 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567};
7568
7569/* tp->lock is held. */
7570static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7571 int cpu_scratch_size, struct fw_info *info)
7572{
Michael Chanec41c7d2006-01-17 02:40:55 -08007573 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574 void (*write_op)(struct tg3 *, u32, u32);
7575
Joe Perches63c3a662011-04-26 08:12:10 +00007576 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007577 netdev_err(tp->dev,
7578 "%s: Trying to load TX cpu firmware which is 5705\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007579 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580 return -EINVAL;
7581 }
7582
Joe Perches63c3a662011-04-26 08:12:10 +00007583 if (tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584 write_op = tg3_write_mem;
7585 else
7586 write_op = tg3_write_indirect_reg32;
7587
Michael Chan1b628152005-05-29 14:59:49 -07007588 /* It is possible that bootcode is still loading at this point.
7589 * Get the nvram lock first before halting the cpu.
7590 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007591 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007593 if (!lock_err)
7594 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007595 if (err)
7596 goto out;
7597
7598 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7599 write_op(tp, cpu_scratch_base + i, 0);
7600 tw32(cpu_base + CPU_STATE, 0xffffffff);
7601 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007602 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007604 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007606 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607
7608 err = 0;
7609
7610out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611 return err;
7612}
7613
7614/* tp->lock is held. */
7615static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7616{
7617 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007618 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619 int err, i;
7620
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007621 fw_data = (void *)tp->fw->data;
7622
7623 /* Firmware blob starts with version numbers, followed by
7624 start address and length. We are setting complete length.
7625 length = end_address_of_bss - start_address_of_text.
7626 Remainder is the blob to be loaded contiguously
7627 from start address. */
7628
7629 info.fw_base = be32_to_cpu(fw_data[1]);
7630 info.fw_len = tp->fw->size - 12;
7631 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632
7633 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7634 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7635 &info);
7636 if (err)
7637 return err;
7638
7639 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7640 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7641 &info);
7642 if (err)
7643 return err;
7644
7645 /* Now startup only the RX cpu. */
7646 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007647 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648
7649 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007650 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651 break;
7652 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7653 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007654 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007655 udelay(1000);
7656 }
7657 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007658 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
7659 "should be %08x\n", __func__,
Joe Perches05dbe002010-02-17 19:44:19 +00007660 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661 return -ENODEV;
7662 }
7663 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7664 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7665
7666 return 0;
7667}
7668
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669/* tp->lock is held. */
7670static int tg3_load_tso_firmware(struct tg3 *tp)
7671{
7672 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007673 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7675 int err, i;
7676
Joe Perches63c3a662011-04-26 08:12:10 +00007677 if (tg3_flag(tp, HW_TSO_1) ||
7678 tg3_flag(tp, HW_TSO_2) ||
7679 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680 return 0;
7681
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007682 fw_data = (void *)tp->fw->data;
7683
7684 /* Firmware blob starts with version numbers, followed by
7685 start address and length. We are setting complete length.
7686 length = end_address_of_bss - start_address_of_text.
7687 Remainder is the blob to be loaded contiguously
7688 from start address. */
7689
7690 info.fw_base = be32_to_cpu(fw_data[1]);
7691 cpu_scratch_size = tp->fw_len;
7692 info.fw_len = tp->fw->size - 12;
7693 info.fw_data = &fw_data[3];
7694
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696 cpu_base = RX_CPU_BASE;
7697 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699 cpu_base = TX_CPU_BASE;
7700 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7701 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7702 }
7703
7704 err = tg3_load_firmware_cpu(tp, cpu_base,
7705 cpu_scratch_base, cpu_scratch_size,
7706 &info);
7707 if (err)
7708 return err;
7709
7710 /* Now startup the cpu. */
7711 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007712 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713
7714 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007715 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716 break;
7717 tw32(cpu_base + CPU_STATE, 0xffffffff);
7718 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007719 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720 udelay(1000);
7721 }
7722 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007723 netdev_err(tp->dev,
7724 "%s fails to set CPU PC, is %08x should be %08x\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007725 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007726 return -ENODEV;
7727 }
7728 tw32(cpu_base + CPU_STATE, 0xffffffff);
7729 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7730 return 0;
7731}
7732
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734static int tg3_set_mac_addr(struct net_device *dev, void *p)
7735{
7736 struct tg3 *tp = netdev_priv(dev);
7737 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007738 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739
Michael Chanf9804dd2005-09-27 12:13:10 -07007740 if (!is_valid_ether_addr(addr->sa_data))
7741 return -EINVAL;
7742
Linus Torvalds1da177e2005-04-16 15:20:36 -07007743 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7744
Michael Chane75f7c92006-03-20 21:33:26 -08007745 if (!netif_running(dev))
7746 return 0;
7747
Joe Perches63c3a662011-04-26 08:12:10 +00007748 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007749 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007750
Michael Chan986e0ae2007-05-05 12:10:20 -07007751 addr0_high = tr32(MAC_ADDR_0_HIGH);
7752 addr0_low = tr32(MAC_ADDR_0_LOW);
7753 addr1_high = tr32(MAC_ADDR_1_HIGH);
7754 addr1_low = tr32(MAC_ADDR_1_LOW);
7755
7756 /* Skip MAC addr 1 if ASF is using it. */
7757 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7758 !(addr1_high == 0 && addr1_low == 0))
7759 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007760 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007761 spin_lock_bh(&tp->lock);
7762 __tg3_set_mac_addr(tp, skip_mac_1);
7763 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007764
Michael Chanb9ec6c12006-07-25 16:37:27 -07007765 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766}
7767
7768/* tp->lock is held. */
7769static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7770 dma_addr_t mapping, u32 maxlen_flags,
7771 u32 nic_addr)
7772{
7773 tg3_write_mem(tp,
7774 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7775 ((u64) mapping >> 32));
7776 tg3_write_mem(tp,
7777 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7778 ((u64) mapping & 0xffffffff));
7779 tg3_write_mem(tp,
7780 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7781 maxlen_flags);
7782
Joe Perches63c3a662011-04-26 08:12:10 +00007783 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784 tg3_write_mem(tp,
7785 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7786 nic_addr);
7787}
7788
7789static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007790static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007791{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007792 int i;
7793
Joe Perches63c3a662011-04-26 08:12:10 +00007794 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007795 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7796 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7797 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007798 } else {
7799 tw32(HOSTCC_TXCOL_TICKS, 0);
7800 tw32(HOSTCC_TXMAX_FRAMES, 0);
7801 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007802 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007803
Joe Perches63c3a662011-04-26 08:12:10 +00007804 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007805 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7806 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7807 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7808 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007809 tw32(HOSTCC_RXCOL_TICKS, 0);
7810 tw32(HOSTCC_RXMAX_FRAMES, 0);
7811 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007812 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007813
Joe Perches63c3a662011-04-26 08:12:10 +00007814 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07007815 u32 val = ec->stats_block_coalesce_usecs;
7816
Matt Carlsonb6080e12009-09-01 13:12:00 +00007817 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7818 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7819
David S. Miller15f98502005-05-18 22:49:26 -07007820 if (!netif_carrier_ok(tp->dev))
7821 val = 0;
7822
7823 tw32(HOSTCC_STAT_COAL_TICKS, val);
7824 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007825
7826 for (i = 0; i < tp->irq_cnt - 1; i++) {
7827 u32 reg;
7828
7829 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7830 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007831 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7832 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007833 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7834 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007835
Joe Perches63c3a662011-04-26 08:12:10 +00007836 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007837 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7838 tw32(reg, ec->tx_coalesce_usecs);
7839 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7840 tw32(reg, ec->tx_max_coalesced_frames);
7841 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7842 tw32(reg, ec->tx_max_coalesced_frames_irq);
7843 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007844 }
7845
7846 for (; i < tp->irq_max - 1; i++) {
7847 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007848 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007849 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007850
Joe Perches63c3a662011-04-26 08:12:10 +00007851 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007852 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7853 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7854 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7855 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007856 }
David S. Miller15f98502005-05-18 22:49:26 -07007857}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858
7859/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007860static void tg3_rings_reset(struct tg3 *tp)
7861{
7862 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007863 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007864 struct tg3_napi *tnapi = &tp->napi[0];
7865
7866 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007867 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007868 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00007869 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00007870 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlsonb703df62009-12-03 08:36:21 +00007871 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7872 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007873 else
7874 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7875
7876 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7877 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7878 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7879 BDINFO_FLAGS_DISABLED);
7880
7881
7882 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007883 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007884 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00007885 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007886 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007887 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7888 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007889 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7890 else
7891 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7892
7893 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7894 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7895 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7896 BDINFO_FLAGS_DISABLED);
7897
7898 /* Disable interrupts */
7899 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
7900
7901 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00007902 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00007903 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007904 tp->napi[i].tx_prod = 0;
7905 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007906 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007907 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007908 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7909 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
7910 }
Joe Perches63c3a662011-04-26 08:12:10 +00007911 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007912 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007913 } else {
7914 tp->napi[0].tx_prod = 0;
7915 tp->napi[0].tx_cons = 0;
7916 tw32_mailbox(tp->napi[0].prodmbox, 0);
7917 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7918 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007919
7920 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00007921 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00007922 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7923 for (i = 0; i < 16; i++)
7924 tw32_tx_mbox(mbox + i * 8, 0);
7925 }
7926
7927 txrcb = NIC_SRAM_SEND_RCB;
7928 rxrcb = NIC_SRAM_RCV_RET_RCB;
7929
7930 /* Clear status block in ram. */
7931 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7932
7933 /* Set status block DMA address */
7934 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7935 ((u64) tnapi->status_mapping >> 32));
7936 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7937 ((u64) tnapi->status_mapping & 0xffffffff));
7938
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007939 if (tnapi->tx_ring) {
7940 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7941 (TG3_TX_RING_SIZE <<
7942 BDINFO_FLAGS_MAXLEN_SHIFT),
7943 NIC_SRAM_TX_BUFFER_DESC);
7944 txrcb += TG3_BDINFO_SIZE;
7945 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007946
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007947 if (tnapi->rx_rcb) {
7948 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007949 (tp->rx_ret_ring_mask + 1) <<
7950 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007951 rxrcb += TG3_BDINFO_SIZE;
7952 }
7953
7954 stblk = HOSTCC_STATBLCK_RING1;
7955
7956 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7957 u64 mapping = (u64)tnapi->status_mapping;
7958 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7959 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7960
7961 /* Clear status block in ram. */
7962 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7963
Matt Carlson19cfaec2009-12-03 08:36:20 +00007964 if (tnapi->tx_ring) {
7965 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7966 (TG3_TX_RING_SIZE <<
7967 BDINFO_FLAGS_MAXLEN_SHIFT),
7968 NIC_SRAM_TX_BUFFER_DESC);
7969 txrcb += TG3_BDINFO_SIZE;
7970 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007971
7972 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007973 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007974 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7975
7976 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007977 rxrcb += TG3_BDINFO_SIZE;
7978 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007979}
7980
Matt Carlsoneb07a942011-04-20 07:57:36 +00007981static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
7982{
7983 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
7984
Joe Perches63c3a662011-04-26 08:12:10 +00007985 if (!tg3_flag(tp, 5750_PLUS) ||
7986 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00007987 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
7988 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
7989 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
7990 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7991 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
7992 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
7993 else
7994 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
7995
7996 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
7997 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
7998
7999 val = min(nic_rep_thresh, host_rep_thresh);
8000 tw32(RCVBDI_STD_THRESH, val);
8001
Joe Perches63c3a662011-04-26 08:12:10 +00008002 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008003 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8004
Joe Perches63c3a662011-04-26 08:12:10 +00008005 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008006 return;
8007
Joe Perches63c3a662011-04-26 08:12:10 +00008008 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008009 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
8010 else
8011 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5717;
8012
8013 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8014
8015 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8016 tw32(RCVBDI_JUMBO_THRESH, val);
8017
Joe Perches63c3a662011-04-26 08:12:10 +00008018 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008019 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8020}
8021
Matt Carlson2d31eca2009-09-01 12:53:31 +00008022/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008023static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024{
8025 u32 val, rdmac_mode;
8026 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008027 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028
8029 tg3_disable_ints(tp);
8030
8031 tg3_stop_fw(tp);
8032
8033 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8034
Joe Perches63c3a662011-04-26 08:12:10 +00008035 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008036 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037
Matt Carlson699c0192010-12-06 08:28:51 +00008038 /* Enable MAC control of LPI */
8039 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8040 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8041 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8042 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8043
8044 tw32_f(TG3_CPMU_EEE_CTRL,
8045 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8046
Matt Carlsona386b902010-12-06 08:28:53 +00008047 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8048 TG3_CPMU_EEEMD_LPI_IN_TX |
8049 TG3_CPMU_EEEMD_LPI_IN_RX |
8050 TG3_CPMU_EEEMD_EEE_ENABLE;
8051
8052 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8053 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8054
Joe Perches63c3a662011-04-26 08:12:10 +00008055 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008056 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8057
8058 tw32_f(TG3_CPMU_EEE_MODE, val);
8059
8060 tw32_f(TG3_CPMU_EEE_DBTMR1,
8061 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8062 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8063
8064 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008065 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008066 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008067 }
8068
Matt Carlson603f1172010-02-12 14:47:10 +00008069 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008070 tg3_phy_reset(tp);
8071
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072 err = tg3_chip_reset(tp);
8073 if (err)
8074 return err;
8075
8076 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8077
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008078 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008079 val = tr32(TG3_CPMU_CTRL);
8080 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8081 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008082
8083 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8084 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8085 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8086 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8087
8088 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8089 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8090 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8091 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8092
8093 val = tr32(TG3_CPMU_HST_ACC);
8094 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8095 val |= CPMU_HST_ACC_MACCLK_6_25;
8096 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008097 }
8098
Matt Carlson33466d92009-04-20 06:57:41 +00008099 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8100 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8101 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8102 PCIE_PWR_MGMT_L1_THRESH_4MS;
8103 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008104
8105 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8106 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8107
8108 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00008109
Matt Carlsonf40386c2009-11-02 14:24:02 +00008110 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8111 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008112 }
8113
Joe Perches63c3a662011-04-26 08:12:10 +00008114 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00008115 u32 grc_mode = tr32(GRC_MODE);
8116
8117 /* Access the lower 1K of PL PCIE block registers. */
8118 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8119 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8120
8121 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8122 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8123 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8124
8125 tw32(GRC_MODE, grc_mode);
8126 }
8127
Matt Carlson5093eed2010-11-24 08:31:45 +00008128 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
8129 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8130 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008131
Matt Carlson5093eed2010-11-24 08:31:45 +00008132 /* Access the lower 1K of PL PCIE block registers. */
8133 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8134 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008135
Matt Carlson5093eed2010-11-24 08:31:45 +00008136 val = tr32(TG3_PCIE_TLDLPL_PORT +
8137 TG3_PCIE_PL_LO_PHYCTL5);
8138 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8139 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008140
Matt Carlson5093eed2010-11-24 08:31:45 +00008141 tw32(GRC_MODE, grc_mode);
8142 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008143
8144 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8145 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8146 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8147 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008148 }
8149
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150 /* This works around an issue with Athlon chipsets on
8151 * B3 tigon3 silicon. This bit has no effect on any
8152 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008153 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154 */
Joe Perches63c3a662011-04-26 08:12:10 +00008155 if (!tg3_flag(tp, CPMU_PRESENT)) {
8156 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008157 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8158 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160
8161 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008162 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163 val = tr32(TG3PCI_PCISTATE);
8164 val |= PCISTATE_RETRY_SAME_DMA;
8165 tw32(TG3PCI_PCISTATE, val);
8166 }
8167
Joe Perches63c3a662011-04-26 08:12:10 +00008168 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008169 /* Allow reads and writes to the
8170 * APE register and memory space.
8171 */
8172 val = tr32(TG3PCI_PCISTATE);
8173 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008174 PCISTATE_ALLOW_APE_SHMEM_WR |
8175 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008176 tw32(TG3PCI_PCISTATE, val);
8177 }
8178
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8180 /* Enable some hw fixes. */
8181 val = tr32(TG3PCI_MSI_DATA);
8182 val |= (1 << 26) | (1 << 28) | (1 << 29);
8183 tw32(TG3PCI_MSI_DATA, val);
8184 }
8185
8186 /* Descriptor ring init may make accesses to the
8187 * NIC SRAM area to setup the TX descriptors, so we
8188 * can only do this after the hardware has been
8189 * successfully reset.
8190 */
Michael Chan32d8c572006-07-25 16:38:29 -07008191 err = tg3_init_rings(tp);
8192 if (err)
8193 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194
Joe Perches63c3a662011-04-26 08:12:10 +00008195 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008196 val = tr32(TG3PCI_DMA_RW_CTRL) &
8197 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008198 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8199 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson0aebff42011-04-25 12:42:45 +00008200 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
8201 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8202 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008203 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8204 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8205 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008206 /* This value is determined during the probe time DMA
8207 * engine test, tg3_test_dma.
8208 */
8209 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211
8212 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8213 GRC_MODE_4X_NIC_SEND_RINGS |
8214 GRC_MODE_NO_TX_PHDR_CSUM |
8215 GRC_MODE_NO_RX_PHDR_CSUM);
8216 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008217
8218 /* Pseudo-header checksum is done by hardware logic and not
8219 * the offload processers, so make the chip do the pseudo-
8220 * header checksums on receive. For transmit it is more
8221 * convenient to do the pseudo-header checksum in software
8222 * as Linux does that on transmit for us in all cases.
8223 */
8224 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225
8226 tw32(GRC_MODE,
8227 tp->grc_mode |
8228 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8229
8230 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8231 val = tr32(GRC_MISC_CFG);
8232 val &= ~0xff;
8233 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8234 tw32(GRC_MISC_CFG, val);
8235
8236 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008237 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238 /* Do nothing. */
8239 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8240 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8241 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8242 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8243 else
8244 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8245 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8246 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008247 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248 int fw_len;
8249
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008250 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8252 tw32(BUFMGR_MB_POOL_ADDR,
8253 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8254 tw32(BUFMGR_MB_POOL_SIZE,
8255 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257
Michael Chan0f893dc2005-07-25 12:30:38 -07008258 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8260 tp->bufmgr_config.mbuf_read_dma_low_water);
8261 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8262 tp->bufmgr_config.mbuf_mac_rx_low_water);
8263 tw32(BUFMGR_MB_HIGH_WATER,
8264 tp->bufmgr_config.mbuf_high_water);
8265 } else {
8266 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8267 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8268 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8269 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8270 tw32(BUFMGR_MB_HIGH_WATER,
8271 tp->bufmgr_config.mbuf_high_water_jumbo);
8272 }
8273 tw32(BUFMGR_DMA_LOW_WATER,
8274 tp->bufmgr_config.dma_low_water);
8275 tw32(BUFMGR_DMA_HIGH_WATER,
8276 tp->bufmgr_config.dma_high_water);
8277
Matt Carlsond309a462010-09-30 10:34:31 +00008278 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8279 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8280 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008281 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8282 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8283 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8284 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008285 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286 for (i = 0; i < 2000; i++) {
8287 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8288 break;
8289 udelay(10);
8290 }
8291 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008292 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293 return -ENODEV;
8294 }
8295
Matt Carlsoneb07a942011-04-20 07:57:36 +00008296 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8297 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008298
Matt Carlsoneb07a942011-04-20 07:57:36 +00008299 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300
8301 /* Initialize TG3_BDINFO's at:
8302 * RCVDBDI_STD_BD: standard eth size rx ring
8303 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8304 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8305 *
8306 * like so:
8307 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8308 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8309 * ring attribute flags
8310 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8311 *
8312 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8313 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8314 *
8315 * The size of each ring is fixed in the firmware, but the location is
8316 * configurable.
8317 */
8318 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008319 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008320 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008321 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008322 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008323 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8324 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008326 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008327 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8329 BDINFO_FLAGS_DISABLED);
8330
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008331 /* Program the jumbo buffer descriptor ring control
8332 * blocks on those devices that have them.
8333 */
Matt Carlsonbb18bb92011-03-09 16:58:19 +00008334 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008335 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336
Joe Perches63c3a662011-04-26 08:12:10 +00008337 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008339 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008341 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008342 val = TG3_RX_JMB_RING_SIZE(tp) <<
8343 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008345 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008346 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00008347 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson87668d32009-11-13 13:03:34 +00008348 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8349 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008350 } else {
8351 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8352 BDINFO_FLAGS_DISABLED);
8353 }
8354
Joe Perches63c3a662011-04-26 08:12:10 +00008355 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008356 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonde9f5232011-04-05 14:22:43 +00008357 val = TG3_RX_STD_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008358 else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008359 val = TG3_RX_STD_MAX_SIZE_5717;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008360 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8361 val |= (TG3_RX_STD_DMA_SZ << 2);
8362 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008363 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008364 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008365 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008366
8367 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008368
Matt Carlson411da642009-11-13 13:03:46 +00008369 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008370 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008371
Joe Perches63c3a662011-04-26 08:12:10 +00008372 tpr->rx_jmb_prod_idx =
8373 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008374 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008375
Matt Carlson2d31eca2009-09-01 12:53:31 +00008376 tg3_rings_reset(tp);
8377
Linus Torvalds1da177e2005-04-16 15:20:36 -07008378 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008379 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380
8381 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008382 tw32(MAC_RX_MTU_SIZE,
8383 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384
8385 /* The slot time is changed by tg3_setup_phy if we
8386 * run at gigabit with half duplex.
8387 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008388 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8389 (6 << TX_LENGTHS_IPG_SHIFT) |
8390 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8391
8392 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8393 val |= tr32(MAC_TX_LENGTHS) &
8394 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8395 TX_LENGTHS_CNT_DWN_VAL_MSK);
8396
8397 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398
8399 /* Receive rules. */
8400 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8401 tw32(RCVLPC_CONFIG, 0x0181);
8402
8403 /* Calculate RDMAC_MODE setting early, we need it to determine
8404 * the RCVLPC_STATE_ENABLE mask.
8405 */
8406 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8407 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8408 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8409 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8410 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008411
Matt Carlsondeabaac2010-11-24 08:31:50 +00008412 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008413 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8414
Matt Carlson57e69832008-05-25 23:48:31 -07008415 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008416 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8417 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008418 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8419 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8420 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8421
Matt Carlsonc5908932011-03-09 16:58:25 +00008422 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8423 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008424 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008425 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8427 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008428 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8430 }
8431 }
8432
Joe Perches63c3a662011-04-26 08:12:10 +00008433 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008434 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8435
Joe Perches63c3a662011-04-26 08:12:10 +00008436 if (tg3_flag(tp, HW_TSO_1) ||
8437 tg3_flag(tp, HW_TSO_2) ||
8438 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008439 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8440
Joe Perches63c3a662011-04-26 08:12:10 +00008441 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008442 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008443 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8444 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445
Matt Carlsonf2096f92011-04-05 14:22:48 +00008446 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8447 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8448
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008449 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8450 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8451 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8452 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008453 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008454 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008455 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8456 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008457 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8458 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8459 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8460 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8461 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8462 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008463 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008464 tw32(TG3_RDMA_RSRVCTRL_REG,
8465 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8466 }
8467
Matt Carlsond78b59f2011-04-05 14:22:46 +00008468 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8469 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008470 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8471 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8472 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8473 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8474 }
8475
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008477 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008478 val = tr32(RCVLPC_STATS_ENABLE);
8479 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8480 tw32(RCVLPC_STATS_ENABLE, val);
8481 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008482 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483 val = tr32(RCVLPC_STATS_ENABLE);
8484 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8485 tw32(RCVLPC_STATS_ENABLE, val);
8486 } else {
8487 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8488 }
8489 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8490 tw32(SNDDATAI_STATSENAB, 0xffffff);
8491 tw32(SNDDATAI_STATSCTRL,
8492 (SNDDATAI_SCTRL_ENABLE |
8493 SNDDATAI_SCTRL_FASTUPD));
8494
8495 /* Setup host coalescing engine. */
8496 tw32(HOSTCC_MODE, 0);
8497 for (i = 0; i < 2000; i++) {
8498 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8499 break;
8500 udelay(10);
8501 }
8502
Michael Chand244c892005-07-05 14:42:33 -07008503 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008504
Joe Perches63c3a662011-04-26 08:12:10 +00008505 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506 /* Status/statistics block address. See tg3_timer,
8507 * the tg3_periodic_fetch_stats call there, and
8508 * tg3_get_stats to see how this works for 5705/5750 chips.
8509 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8511 ((u64) tp->stats_mapping >> 32));
8512 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8513 ((u64) tp->stats_mapping & 0xffffffff));
8514 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008515
Linus Torvalds1da177e2005-04-16 15:20:36 -07008516 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008517
8518 /* Clear statistics and status block memory areas */
8519 for (i = NIC_SRAM_STATS_BLK;
8520 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8521 i += sizeof(u32)) {
8522 tg3_write_mem(tp, i, 0);
8523 udelay(40);
8524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008525 }
8526
8527 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8528
8529 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8530 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008531 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8533
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008534 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8535 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008536 /* reset to prevent losing 1st rx packet intermittently */
8537 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8538 udelay(10);
8539 }
8540
Joe Perches63c3a662011-04-26 08:12:10 +00008541 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008542 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -07008543 else
8544 tp->mac_mode = 0;
8545 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008547 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008548 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008549 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8550 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8552 udelay(40);
8553
Michael Chan314fba32005-04-21 17:07:04 -07008554 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008555 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008556 * register to preserve the GPIO settings for LOMs. The GPIOs,
8557 * whether used as inputs or outputs, are set by boot code after
8558 * reset.
8559 */
Joe Perches63c3a662011-04-26 08:12:10 +00008560 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008561 u32 gpio_mask;
8562
Michael Chan9d26e212006-12-07 00:21:14 -08008563 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8564 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8565 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008566
8567 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8568 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8569 GRC_LCLCTRL_GPIO_OUTPUT3;
8570
Michael Chanaf36e6b2006-03-23 01:28:06 -08008571 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8572 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8573
Gary Zambranoaaf84462007-05-05 11:51:45 -07008574 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008575 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8576
8577 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008578 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008579 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8580 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8583 udelay(100);
8584
Joe Perches63c3a662011-04-26 08:12:10 +00008585 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008586 val = tr32(MSGINT_MODE);
8587 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8588 tw32(MSGINT_MODE, val);
8589 }
8590
Joe Perches63c3a662011-04-26 08:12:10 +00008591 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008592 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8593 udelay(40);
8594 }
8595
8596 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8597 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8598 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8599 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8600 WDMAC_MODE_LNGREAD_ENAB);
8601
Matt Carlsonc5908932011-03-09 16:58:25 +00008602 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8603 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008604 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8606 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8607 /* nothing */
8608 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008609 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610 val |= WDMAC_MODE_RX_ACCEL;
8611 }
8612 }
8613
Michael Chand9ab5ad12006-03-20 22:27:35 -08008614 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008615 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008616 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08008617
Matt Carlson788a0352009-11-02 14:26:03 +00008618 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8619 val |= WDMAC_MODE_BURST_ALL_DATA;
8620
Linus Torvalds1da177e2005-04-16 15:20:36 -07008621 tw32_f(WDMAC_MODE, val);
8622 udelay(40);
8623
Joe Perches63c3a662011-04-26 08:12:10 +00008624 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008625 u16 pcix_cmd;
8626
8627 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8628 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008630 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8631 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008633 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8634 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635 }
Matt Carlson9974a352007-10-07 23:27:28 -07008636 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8637 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638 }
8639
8640 tw32_f(RDMAC_MODE, rdmac_mode);
8641 udelay(40);
8642
8643 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008644 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008646
8647 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8648 tw32(SNDDATAC_MODE,
8649 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8650 else
8651 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8652
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8654 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008655 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008656 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008657 val |= RCVDBDI_MODE_LRG_RING_SZ;
8658 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008660 if (tg3_flag(tp, HW_TSO_1) ||
8661 tg3_flag(tp, HW_TSO_2) ||
8662 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008664 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008665 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008666 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8667 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8669
8670 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8671 err = tg3_load_5701_a0_firmware_fix(tp);
8672 if (err)
8673 return err;
8674 }
8675
Joe Perches63c3a662011-04-26 08:12:10 +00008676 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677 err = tg3_load_tso_firmware(tp);
8678 if (err)
8679 return err;
8680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008681
8682 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008683
Joe Perches63c3a662011-04-26 08:12:10 +00008684 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008685 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8686 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008687
8688 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8689 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8690 tp->tx_mode &= ~val;
8691 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8692 }
8693
Linus Torvalds1da177e2005-04-16 15:20:36 -07008694 tw32_f(MAC_TX_MODE, tp->tx_mode);
8695 udelay(100);
8696
Joe Perches63c3a662011-04-26 08:12:10 +00008697 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008698 u32 reg = MAC_RSS_INDIR_TBL_0;
8699 u8 *ent = (u8 *)&val;
8700
8701 /* Setup the indirection table */
8702 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8703 int idx = i % sizeof(val);
8704
Matt Carlson5efeeea2010-07-11 09:31:40 +00008705 ent[idx] = i % (tp->irq_cnt - 1);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008706 if (idx == sizeof(val) - 1) {
8707 tw32(reg, val);
8708 reg += 4;
8709 }
8710 }
8711
8712 /* Setup the "secret" hash key. */
8713 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8714 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8715 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8716 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8717 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8718 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8719 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8720 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8721 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8722 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8723 }
8724
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008726 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008727 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8728
Joe Perches63c3a662011-04-26 08:12:10 +00008729 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008730 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8731 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8732 RX_MODE_RSS_IPV6_HASH_EN |
8733 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8734 RX_MODE_RSS_IPV4_HASH_EN |
8735 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8736
Linus Torvalds1da177e2005-04-16 15:20:36 -07008737 tw32_f(MAC_RX_MODE, tp->rx_mode);
8738 udelay(10);
8739
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740 tw32(MAC_LED_CTRL, tp->led_ctrl);
8741
8742 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008743 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008744 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8745 udelay(10);
8746 }
8747 tw32_f(MAC_RX_MODE, tp->rx_mode);
8748 udelay(10);
8749
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008750 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008752 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008753 /* Set drive transmission level to 1.2V */
8754 /* only if the signal pre-emphasis bit is not set */
8755 val = tr32(MAC_SERDES_CFG);
8756 val &= 0xfffff000;
8757 val |= 0x880;
8758 tw32(MAC_SERDES_CFG, val);
8759 }
8760 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8761 tw32(MAC_SERDES_CFG, 0x616000);
8762 }
8763
8764 /* Prevent chip from dropping frames when flow control
8765 * is enabled.
8766 */
Matt Carlson666bc832010-01-20 16:58:03 +00008767 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8768 val = 1;
8769 else
8770 val = 2;
8771 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008772
8773 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008774 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008775 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00008776 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008777 }
8778
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008779 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Michael Chand4d2c552006-03-20 17:47:20 -08008780 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
8781 u32 tmp;
8782
8783 tmp = tr32(SERDES_RX_CTRL);
8784 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8785 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8786 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8787 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8788 }
8789
Joe Perches63c3a662011-04-26 08:12:10 +00008790 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson80096062010-08-02 11:26:06 +00008791 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
8792 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07008793 tp->link_config.speed = tp->link_config.orig_speed;
8794 tp->link_config.duplex = tp->link_config.orig_duplex;
8795 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008797
Matt Carlsondd477002008-05-25 23:45:58 -07008798 err = tg3_setup_phy(tp, 0);
8799 if (err)
8800 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008801
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008802 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
8803 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008804 u32 tmp;
8805
8806 /* Clear CRC stats. */
8807 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8808 tg3_writephy(tp, MII_TG3_TEST1,
8809 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00008810 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07008811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008812 }
8813 }
8814
8815 __tg3_set_rx_mode(tp->dev);
8816
8817 /* Initialize receive rules. */
8818 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8819 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8820 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8821 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8822
Joe Perches63c3a662011-04-26 08:12:10 +00008823 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824 limit = 8;
8825 else
8826 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008827 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008828 limit -= 4;
8829 switch (limit) {
8830 case 16:
8831 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8832 case 15:
8833 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8834 case 14:
8835 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8836 case 13:
8837 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8838 case 12:
8839 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8840 case 11:
8841 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8842 case 10:
8843 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8844 case 9:
8845 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8846 case 8:
8847 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8848 case 7:
8849 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8850 case 6:
8851 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8852 case 5:
8853 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8854 case 4:
8855 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8856 case 3:
8857 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8858 case 2:
8859 case 1:
8860
8861 default:
8862 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864
Joe Perches63c3a662011-04-26 08:12:10 +00008865 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07008866 /* Write our heartbeat update interval to APE. */
8867 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8868 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008869
Linus Torvalds1da177e2005-04-16 15:20:36 -07008870 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8871
Linus Torvalds1da177e2005-04-16 15:20:36 -07008872 return 0;
8873}
8874
8875/* Called at device open time to get the chip ready for
8876 * packet processing. Invoked with tp->lock held.
8877 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008878static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880 tg3_switch_clocks(tp);
8881
8882 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8883
Matt Carlson2f751b62008-08-04 23:17:34 -07008884 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008885}
8886
8887#define TG3_STAT_ADD32(PSTAT, REG) \
8888do { u32 __val = tr32(REG); \
8889 (PSTAT)->low += __val; \
8890 if ((PSTAT)->low < __val) \
8891 (PSTAT)->high += 1; \
8892} while (0)
8893
8894static void tg3_periodic_fetch_stats(struct tg3 *tp)
8895{
8896 struct tg3_hw_stats *sp = tp->hw_stats;
8897
8898 if (!netif_carrier_ok(tp->dev))
8899 return;
8900
8901 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8902 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8903 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8904 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8905 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8906 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8907 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8908 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8909 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8910 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8911 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8912 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8913 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8914
8915 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8916 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8917 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8918 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8919 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8920 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8921 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8922 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8923 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8924 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8925 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8926 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8927 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8928 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008929
8930 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson4d958472011-04-20 07:57:35 +00008931 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717) {
8932 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8933 } else {
8934 u32 val = tr32(HOSTCC_FLOW_ATTN);
8935 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
8936 if (val) {
8937 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
8938 sp->rx_discards.low += val;
8939 if (sp->rx_discards.low < val)
8940 sp->rx_discards.high += 1;
8941 }
8942 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
8943 }
Michael Chan463d3052006-05-22 16:36:27 -07008944 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008945}
8946
8947static void tg3_timer(unsigned long __opaque)
8948{
8949 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008950
Michael Chanf475f162006-03-27 23:20:14 -08008951 if (tp->irq_sync)
8952 goto restart_timer;
8953
David S. Millerf47c11e2005-06-24 20:18:35 -07008954 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955
Joe Perches63c3a662011-04-26 08:12:10 +00008956 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07008957 /* All of this garbage is because when using non-tagged
8958 * IRQ status the mailbox/status_block protocol the chip
8959 * uses with the cpu is race prone.
8960 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008961 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008962 tw32(GRC_LOCAL_CTRL,
8963 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8964 } else {
8965 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008966 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008968
David S. Millerfac9b832005-05-18 22:46:34 -07008969 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +00008970 tg3_flag_set(tp, RESTART_TIMER);
David S. Millerf47c11e2005-06-24 20:18:35 -07008971 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008972 schedule_work(&tp->reset_task);
8973 return;
8974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975 }
8976
Linus Torvalds1da177e2005-04-16 15:20:36 -07008977 /* This part only runs once per second. */
8978 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00008979 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07008980 tg3_periodic_fetch_stats(tp);
8981
Matt Carlson52b02d02010-10-14 10:37:41 +00008982 if (tp->setlpicnt && !--tp->setlpicnt) {
8983 u32 val = tr32(TG3_CPMU_EEE_MODE);
8984 tw32(TG3_CPMU_EEE_MODE,
8985 val | TG3_CPMU_EEEMD_LPI_ENABLE);
8986 }
8987
Joe Perches63c3a662011-04-26 08:12:10 +00008988 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008989 u32 mac_stat;
8990 int phy_event;
8991
8992 mac_stat = tr32(MAC_STATUS);
8993
8994 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008995 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8997 phy_event = 1;
8998 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8999 phy_event = 1;
9000
9001 if (phy_event)
9002 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009003 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009004 u32 mac_stat = tr32(MAC_STATUS);
9005 int need_setup = 0;
9006
9007 if (netif_carrier_ok(tp->dev) &&
9008 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9009 need_setup = 1;
9010 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009011 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009012 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9013 MAC_STATUS_SIGNAL_DET))) {
9014 need_setup = 1;
9015 }
9016 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009017 if (!tp->serdes_counter) {
9018 tw32_f(MAC_MODE,
9019 (tp->mac_mode &
9020 ~MAC_MODE_PORT_MODE_MASK));
9021 udelay(40);
9022 tw32_f(MAC_MODE, tp->mac_mode);
9023 udelay(40);
9024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009025 tg3_setup_phy(tp, 0);
9026 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009027 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009028 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009029 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009031
9032 tp->timer_counter = tp->timer_multiplier;
9033 }
9034
Michael Chan130b8e42006-09-27 16:00:40 -07009035 /* Heartbeat is only sent once every 2 seconds.
9036 *
9037 * The heartbeat is to tell the ASF firmware that the host
9038 * driver is still alive. In the event that the OS crashes,
9039 * ASF needs to reset the hardware to free up the FIFO space
9040 * that may be filled with rx packets destined for the host.
9041 * If the FIFO is full, ASF will no longer function properly.
9042 *
9043 * Unintended resets have been reported on real time kernels
9044 * where the timer doesn't run on time. Netpoll will also have
9045 * same problem.
9046 *
9047 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9048 * to check the ring condition when the heartbeat is expiring
9049 * before doing the reset. This will prevent most unintended
9050 * resets.
9051 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009052 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009053 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009054 tg3_wait_for_event_ack(tp);
9055
Michael Chanbbadf502006-04-06 21:46:34 -07009056 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009057 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009058 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009059 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9060 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009061
9062 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009063 }
9064 tp->asf_counter = tp->asf_multiplier;
9065 }
9066
David S. Millerf47c11e2005-06-24 20:18:35 -07009067 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009068
Michael Chanf475f162006-03-27 23:20:14 -08009069restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009070 tp->timer.expires = jiffies + tp->timer_offset;
9071 add_timer(&tp->timer);
9072}
9073
Matt Carlson4f125f42009-09-01 12:55:02 +00009074static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009075{
David Howells7d12e782006-10-05 14:55:46 +01009076 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009077 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00009078 char *name;
9079 struct tg3_napi *tnapi = &tp->napi[irq_num];
9080
9081 if (tp->irq_cnt == 1)
9082 name = tp->dev->name;
9083 else {
9084 name = &tnapi->irq_lbl[0];
9085 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
9086 name[IFNAMSIZ-1] = 0;
9087 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009088
Joe Perches63c3a662011-04-26 08:12:10 +00009089 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08009090 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00009091 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009092 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009093 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009094 } else {
9095 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00009096 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009097 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009098 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009099 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009100
9101 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009102}
9103
Michael Chan79381092005-04-21 17:13:59 -07009104static int tg3_test_interrupt(struct tg3 *tp)
9105{
Matt Carlson09943a12009-08-28 14:01:57 +00009106 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009107 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009108 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009109 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009110
Michael Chand4bc3922005-05-29 14:59:20 -07009111 if (!netif_running(dev))
9112 return -ENODEV;
9113
Michael Chan79381092005-04-21 17:13:59 -07009114 tg3_disable_ints(tp);
9115
Matt Carlson4f125f42009-09-01 12:55:02 +00009116 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009117
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009118 /*
9119 * Turn off MSI one shot mode. Otherwise this test has no
9120 * observable way to know whether the interrupt was delivered.
9121 */
Joe Perches63c3a662011-04-26 08:12:10 +00009122 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009123 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9124 tw32(MSGINT_MODE, val);
9125 }
9126
Matt Carlson4f125f42009-09-01 12:55:02 +00009127 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00009128 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009129 if (err)
9130 return err;
9131
Matt Carlson898a56f2009-08-28 14:02:40 +00009132 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009133 tg3_enable_ints(tp);
9134
9135 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009136 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009137
9138 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009139 u32 int_mbox, misc_host_ctrl;
9140
Matt Carlson898a56f2009-08-28 14:02:40 +00009141 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009142 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9143
9144 if ((int_mbox != 0) ||
9145 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9146 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009147 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009148 }
9149
Michael Chan79381092005-04-21 17:13:59 -07009150 msleep(10);
9151 }
9152
9153 tg3_disable_ints(tp);
9154
Matt Carlson4f125f42009-09-01 12:55:02 +00009155 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009156
Matt Carlson4f125f42009-09-01 12:55:02 +00009157 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009158
9159 if (err)
9160 return err;
9161
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009162 if (intr_ok) {
9163 /* Reenable MSI one shot mode. */
Joe Perches63c3a662011-04-26 08:12:10 +00009164 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009165 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9166 tw32(MSGINT_MODE, val);
9167 }
Michael Chan79381092005-04-21 17:13:59 -07009168 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009169 }
Michael Chan79381092005-04-21 17:13:59 -07009170
9171 return -EIO;
9172}
9173
9174/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9175 * successfully restored
9176 */
9177static int tg3_test_msi(struct tg3 *tp)
9178{
Michael Chan79381092005-04-21 17:13:59 -07009179 int err;
9180 u16 pci_cmd;
9181
Joe Perches63c3a662011-04-26 08:12:10 +00009182 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009183 return 0;
9184
9185 /* Turn off SERR reporting in case MSI terminates with Master
9186 * Abort.
9187 */
9188 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9189 pci_write_config_word(tp->pdev, PCI_COMMAND,
9190 pci_cmd & ~PCI_COMMAND_SERR);
9191
9192 err = tg3_test_interrupt(tp);
9193
9194 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9195
9196 if (!err)
9197 return 0;
9198
9199 /* other failures */
9200 if (err != -EIO)
9201 return err;
9202
9203 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009204 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9205 "to INTx mode. Please report this failure to the PCI "
9206 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009207
Matt Carlson4f125f42009-09-01 12:55:02 +00009208 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009209
Michael Chan79381092005-04-21 17:13:59 -07009210 pci_disable_msi(tp->pdev);
9211
Joe Perches63c3a662011-04-26 08:12:10 +00009212 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009213 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009214
Matt Carlson4f125f42009-09-01 12:55:02 +00009215 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009216 if (err)
9217 return err;
9218
9219 /* Need to reset the chip because the MSI cycle may have terminated
9220 * with Master Abort.
9221 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009222 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009223
Michael Chan944d9802005-05-29 14:57:48 -07009224 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009225 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009226
David S. Millerf47c11e2005-06-24 20:18:35 -07009227 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009228
9229 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009230 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009231
9232 return err;
9233}
9234
Matt Carlson9e9fd122009-01-19 16:57:45 -08009235static int tg3_request_firmware(struct tg3 *tp)
9236{
9237 const __be32 *fw_data;
9238
9239 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009240 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9241 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009242 return -ENOENT;
9243 }
9244
9245 fw_data = (void *)tp->fw->data;
9246
9247 /* Firmware blob starts with version numbers, followed by
9248 * start address and _full_ length including BSS sections
9249 * (which must be longer than the actual data, of course
9250 */
9251
9252 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9253 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009254 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9255 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009256 release_firmware(tp->fw);
9257 tp->fw = NULL;
9258 return -EINVAL;
9259 }
9260
9261 /* We no longer need firmware; we have it. */
9262 tp->fw_needed = NULL;
9263 return 0;
9264}
9265
Matt Carlson679563f2009-09-01 12:55:46 +00009266static bool tg3_enable_msix(struct tg3 *tp)
9267{
9268 int i, rc, cpus = num_online_cpus();
9269 struct msix_entry msix_ent[tp->irq_max];
9270
9271 if (cpus == 1)
9272 /* Just fallback to the simpler MSI mode. */
9273 return false;
9274
9275 /*
9276 * We want as many rx rings enabled as there are cpus.
9277 * The first MSIX vector only deals with link interrupts, etc,
9278 * so we add one to the number of vectors we are requesting.
9279 */
9280 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
9281
9282 for (i = 0; i < tp->irq_max; i++) {
9283 msix_ent[i].entry = i;
9284 msix_ent[i].vector = 0;
9285 }
9286
9287 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009288 if (rc < 0) {
9289 return false;
9290 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009291 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9292 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009293 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9294 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009295 tp->irq_cnt = rc;
9296 }
9297
9298 for (i = 0; i < tp->irq_max; i++)
9299 tp->napi[i].irq_vec = msix_ent[i].vector;
9300
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009301 netif_set_real_num_tx_queues(tp->dev, 1);
9302 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9303 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9304 pci_disable_msix(tp->pdev);
9305 return false;
9306 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009307
9308 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009309 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009310
9311 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9312 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009313 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009314 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9315 }
9316 }
Matt Carlson2430b032010-06-05 17:24:34 +00009317
Matt Carlson679563f2009-09-01 12:55:46 +00009318 return true;
9319}
9320
Matt Carlson07b01732009-08-28 14:01:15 +00009321static void tg3_ints_init(struct tg3 *tp)
9322{
Joe Perches63c3a662011-04-26 08:12:10 +00009323 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9324 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009325 /* All MSI supporting chips should support tagged
9326 * status. Assert that this is the case.
9327 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009328 netdev_warn(tp->dev,
9329 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009330 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009331 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009332
Joe Perches63c3a662011-04-26 08:12:10 +00009333 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9334 tg3_flag_set(tp, USING_MSIX);
9335 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9336 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009337
Joe Perches63c3a662011-04-26 08:12:10 +00009338 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009339 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009340 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009341 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00009342 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9343 }
9344defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009345 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009346 tp->irq_cnt = 1;
9347 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009348 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009349 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009350 }
Matt Carlson07b01732009-08-28 14:01:15 +00009351}
9352
9353static void tg3_ints_fini(struct tg3 *tp)
9354{
Joe Perches63c3a662011-04-26 08:12:10 +00009355 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009356 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009357 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009358 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009359 tg3_flag_clear(tp, USING_MSI);
9360 tg3_flag_clear(tp, USING_MSIX);
9361 tg3_flag_clear(tp, ENABLE_RSS);
9362 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009363}
9364
Linus Torvalds1da177e2005-04-16 15:20:36 -07009365static int tg3_open(struct net_device *dev)
9366{
9367 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009368 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009369
Matt Carlson9e9fd122009-01-19 16:57:45 -08009370 if (tp->fw_needed) {
9371 err = tg3_request_firmware(tp);
9372 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9373 if (err)
9374 return err;
9375 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009376 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009377 tg3_flag_clear(tp, TSO_CAPABLE);
9378 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009379 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009380 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009381 }
9382 }
9383
Michael Chanc49a1562006-12-17 17:07:29 -08009384 netif_carrier_off(tp->dev);
9385
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009386 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009387 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009388 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009389
9390 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009391
Linus Torvalds1da177e2005-04-16 15:20:36 -07009392 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009393 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009394
David S. Millerf47c11e2005-06-24 20:18:35 -07009395 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009396
Matt Carlson679563f2009-09-01 12:55:46 +00009397 /*
9398 * Setup interrupts first so we know how
9399 * many NAPI resources to allocate
9400 */
9401 tg3_ints_init(tp);
9402
Linus Torvalds1da177e2005-04-16 15:20:36 -07009403 /* The placement of this call is tied
9404 * to the setup and use of Host TX descriptors.
9405 */
9406 err = tg3_alloc_consistent(tp);
9407 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009408 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009409
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009410 tg3_napi_init(tp);
9411
Matt Carlsonfed97812009-09-01 13:10:19 +00009412 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009413
Matt Carlson4f125f42009-09-01 12:55:02 +00009414 for (i = 0; i < tp->irq_cnt; i++) {
9415 struct tg3_napi *tnapi = &tp->napi[i];
9416 err = tg3_request_irq(tp, i);
9417 if (err) {
9418 for (i--; i >= 0; i--)
9419 free_irq(tnapi->irq_vec, tnapi);
9420 break;
9421 }
9422 }
Matt Carlson07b01732009-08-28 14:01:15 +00009423
9424 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009425 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00009426
David S. Millerf47c11e2005-06-24 20:18:35 -07009427 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009428
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009429 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009430 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009431 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009432 tg3_free_rings(tp);
9433 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00009434 if (tg3_flag(tp, TAGGED_STATUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009435 tp->timer_offset = HZ;
9436 else
9437 tp->timer_offset = HZ / 10;
9438
9439 BUG_ON(tp->timer_offset > HZ);
9440 tp->timer_counter = tp->timer_multiplier =
9441 (HZ / tp->timer_offset);
9442 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009443 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009444
9445 init_timer(&tp->timer);
9446 tp->timer.expires = jiffies + tp->timer_offset;
9447 tp->timer.data = (unsigned long) tp;
9448 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009449 }
9450
David S. Millerf47c11e2005-06-24 20:18:35 -07009451 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009452
Matt Carlson07b01732009-08-28 14:01:15 +00009453 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009454 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009455
Joe Perches63c3a662011-04-26 08:12:10 +00009456 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009457 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009458
Michael Chan79381092005-04-21 17:13:59 -07009459 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009460 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009461 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009462 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009463 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009464
Matt Carlson679563f2009-09-01 12:55:46 +00009465 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009466 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009467
Joe Perches63c3a662011-04-26 08:12:10 +00009468 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009469 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009470
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009471 tw32(PCIE_TRANSACTION_CFG,
9472 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009473 }
Michael Chan79381092005-04-21 17:13:59 -07009474 }
9475
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009476 tg3_phy_start(tp);
9477
David S. Millerf47c11e2005-06-24 20:18:35 -07009478 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009479
Michael Chan79381092005-04-21 17:13:59 -07009480 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009481 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009482 tg3_enable_ints(tp);
9483
David S. Millerf47c11e2005-06-24 20:18:35 -07009484 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009485
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009486 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009487
9488 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009489
Matt Carlson679563f2009-09-01 12:55:46 +00009490err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009491 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9492 struct tg3_napi *tnapi = &tp->napi[i];
9493 free_irq(tnapi->irq_vec, tnapi);
9494 }
Matt Carlson07b01732009-08-28 14:01:15 +00009495
Matt Carlson679563f2009-09-01 12:55:46 +00009496err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009497 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009498 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009499 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009500
9501err_out1:
9502 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009503 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009504}
9505
Eric Dumazet511d2222010-07-07 20:44:24 +00009506static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
9507 struct rtnl_link_stats64 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009508static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9509
9510static int tg3_close(struct net_device *dev)
9511{
Matt Carlson4f125f42009-09-01 12:55:02 +00009512 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009513 struct tg3 *tp = netdev_priv(dev);
9514
Matt Carlsonfed97812009-09-01 13:10:19 +00009515 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009516 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009517
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009518 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009519
9520 del_timer_sync(&tp->timer);
9521
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009522 tg3_phy_stop(tp);
9523
David S. Millerf47c11e2005-06-24 20:18:35 -07009524 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009525
9526 tg3_disable_ints(tp);
9527
Michael Chan944d9802005-05-29 14:57:48 -07009528 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009529 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009530 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009531
David S. Millerf47c11e2005-06-24 20:18:35 -07009532 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009533
Matt Carlson4f125f42009-09-01 12:55:02 +00009534 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9535 struct tg3_napi *tnapi = &tp->napi[i];
9536 free_irq(tnapi->irq_vec, tnapi);
9537 }
Matt Carlson07b01732009-08-28 14:01:15 +00009538
9539 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009540
Eric Dumazet511d2222010-07-07 20:44:24 +00009541 tg3_get_stats64(tp->dev, &tp->net_stats_prev);
9542
Linus Torvalds1da177e2005-04-16 15:20:36 -07009543 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9544 sizeof(tp->estats_prev));
9545
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009546 tg3_napi_fini(tp);
9547
Linus Torvalds1da177e2005-04-16 15:20:36 -07009548 tg3_free_consistent(tp);
9549
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009550 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009551
9552 netif_carrier_off(tp->dev);
9553
Linus Torvalds1da177e2005-04-16 15:20:36 -07009554 return 0;
9555}
9556
Eric Dumazet511d2222010-07-07 20:44:24 +00009557static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009558{
9559 return ((u64)val->high << 32) | ((u64)val->low);
9560}
9561
Eric Dumazet511d2222010-07-07 20:44:24 +00009562static u64 calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009563{
9564 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9565
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009566 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009567 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9568 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009569 u32 val;
9570
David S. Millerf47c11e2005-06-24 20:18:35 -07009571 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009572 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9573 tg3_writephy(tp, MII_TG3_TEST1,
9574 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009575 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009576 } else
9577 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009578 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009579
9580 tp->phy_crc_errors += val;
9581
9582 return tp->phy_crc_errors;
9583 }
9584
9585 return get_stat64(&hw_stats->rx_fcs_errors);
9586}
9587
9588#define ESTAT_ADD(member) \
9589 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009590 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009591
9592static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9593{
9594 struct tg3_ethtool_stats *estats = &tp->estats;
9595 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9596 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9597
9598 if (!hw_stats)
9599 return old_estats;
9600
9601 ESTAT_ADD(rx_octets);
9602 ESTAT_ADD(rx_fragments);
9603 ESTAT_ADD(rx_ucast_packets);
9604 ESTAT_ADD(rx_mcast_packets);
9605 ESTAT_ADD(rx_bcast_packets);
9606 ESTAT_ADD(rx_fcs_errors);
9607 ESTAT_ADD(rx_align_errors);
9608 ESTAT_ADD(rx_xon_pause_rcvd);
9609 ESTAT_ADD(rx_xoff_pause_rcvd);
9610 ESTAT_ADD(rx_mac_ctrl_rcvd);
9611 ESTAT_ADD(rx_xoff_entered);
9612 ESTAT_ADD(rx_frame_too_long_errors);
9613 ESTAT_ADD(rx_jabbers);
9614 ESTAT_ADD(rx_undersize_packets);
9615 ESTAT_ADD(rx_in_length_errors);
9616 ESTAT_ADD(rx_out_length_errors);
9617 ESTAT_ADD(rx_64_or_less_octet_packets);
9618 ESTAT_ADD(rx_65_to_127_octet_packets);
9619 ESTAT_ADD(rx_128_to_255_octet_packets);
9620 ESTAT_ADD(rx_256_to_511_octet_packets);
9621 ESTAT_ADD(rx_512_to_1023_octet_packets);
9622 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9623 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9624 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9625 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9626 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9627
9628 ESTAT_ADD(tx_octets);
9629 ESTAT_ADD(tx_collisions);
9630 ESTAT_ADD(tx_xon_sent);
9631 ESTAT_ADD(tx_xoff_sent);
9632 ESTAT_ADD(tx_flow_control);
9633 ESTAT_ADD(tx_mac_errors);
9634 ESTAT_ADD(tx_single_collisions);
9635 ESTAT_ADD(tx_mult_collisions);
9636 ESTAT_ADD(tx_deferred);
9637 ESTAT_ADD(tx_excessive_collisions);
9638 ESTAT_ADD(tx_late_collisions);
9639 ESTAT_ADD(tx_collide_2times);
9640 ESTAT_ADD(tx_collide_3times);
9641 ESTAT_ADD(tx_collide_4times);
9642 ESTAT_ADD(tx_collide_5times);
9643 ESTAT_ADD(tx_collide_6times);
9644 ESTAT_ADD(tx_collide_7times);
9645 ESTAT_ADD(tx_collide_8times);
9646 ESTAT_ADD(tx_collide_9times);
9647 ESTAT_ADD(tx_collide_10times);
9648 ESTAT_ADD(tx_collide_11times);
9649 ESTAT_ADD(tx_collide_12times);
9650 ESTAT_ADD(tx_collide_13times);
9651 ESTAT_ADD(tx_collide_14times);
9652 ESTAT_ADD(tx_collide_15times);
9653 ESTAT_ADD(tx_ucast_packets);
9654 ESTAT_ADD(tx_mcast_packets);
9655 ESTAT_ADD(tx_bcast_packets);
9656 ESTAT_ADD(tx_carrier_sense_errors);
9657 ESTAT_ADD(tx_discards);
9658 ESTAT_ADD(tx_errors);
9659
9660 ESTAT_ADD(dma_writeq_full);
9661 ESTAT_ADD(dma_write_prioq_full);
9662 ESTAT_ADD(rxbds_empty);
9663 ESTAT_ADD(rx_discards);
9664 ESTAT_ADD(rx_errors);
9665 ESTAT_ADD(rx_threshold_hit);
9666
9667 ESTAT_ADD(dma_readq_full);
9668 ESTAT_ADD(dma_read_prioq_full);
9669 ESTAT_ADD(tx_comp_queue_full);
9670
9671 ESTAT_ADD(ring_set_send_prod_index);
9672 ESTAT_ADD(ring_status_update);
9673 ESTAT_ADD(nic_irqs);
9674 ESTAT_ADD(nic_avoided_irqs);
9675 ESTAT_ADD(nic_tx_threshold_hit);
9676
9677 return estats;
9678}
9679
Eric Dumazet511d2222010-07-07 20:44:24 +00009680static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
9681 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009682{
9683 struct tg3 *tp = netdev_priv(dev);
Eric Dumazet511d2222010-07-07 20:44:24 +00009684 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009685 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9686
9687 if (!hw_stats)
9688 return old_stats;
9689
9690 stats->rx_packets = old_stats->rx_packets +
9691 get_stat64(&hw_stats->rx_ucast_packets) +
9692 get_stat64(&hw_stats->rx_mcast_packets) +
9693 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009694
Linus Torvalds1da177e2005-04-16 15:20:36 -07009695 stats->tx_packets = old_stats->tx_packets +
9696 get_stat64(&hw_stats->tx_ucast_packets) +
9697 get_stat64(&hw_stats->tx_mcast_packets) +
9698 get_stat64(&hw_stats->tx_bcast_packets);
9699
9700 stats->rx_bytes = old_stats->rx_bytes +
9701 get_stat64(&hw_stats->rx_octets);
9702 stats->tx_bytes = old_stats->tx_bytes +
9703 get_stat64(&hw_stats->tx_octets);
9704
9705 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009706 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009707 stats->tx_errors = old_stats->tx_errors +
9708 get_stat64(&hw_stats->tx_errors) +
9709 get_stat64(&hw_stats->tx_mac_errors) +
9710 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9711 get_stat64(&hw_stats->tx_discards);
9712
9713 stats->multicast = old_stats->multicast +
9714 get_stat64(&hw_stats->rx_mcast_packets);
9715 stats->collisions = old_stats->collisions +
9716 get_stat64(&hw_stats->tx_collisions);
9717
9718 stats->rx_length_errors = old_stats->rx_length_errors +
9719 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9720 get_stat64(&hw_stats->rx_undersize_packets);
9721
9722 stats->rx_over_errors = old_stats->rx_over_errors +
9723 get_stat64(&hw_stats->rxbds_empty);
9724 stats->rx_frame_errors = old_stats->rx_frame_errors +
9725 get_stat64(&hw_stats->rx_align_errors);
9726 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9727 get_stat64(&hw_stats->tx_discards);
9728 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9729 get_stat64(&hw_stats->tx_carrier_sense_errors);
9730
9731 stats->rx_crc_errors = old_stats->rx_crc_errors +
9732 calc_crc_errors(tp);
9733
John W. Linville4f63b872005-09-12 14:43:18 -07009734 stats->rx_missed_errors = old_stats->rx_missed_errors +
9735 get_stat64(&hw_stats->rx_discards);
9736
Eric Dumazetb0057c52010-10-10 19:55:52 +00009737 stats->rx_dropped = tp->rx_dropped;
9738
Linus Torvalds1da177e2005-04-16 15:20:36 -07009739 return stats;
9740}
9741
9742static inline u32 calc_crc(unsigned char *buf, int len)
9743{
9744 u32 reg;
9745 u32 tmp;
9746 int j, k;
9747
9748 reg = 0xffffffff;
9749
9750 for (j = 0; j < len; j++) {
9751 reg ^= buf[j];
9752
9753 for (k = 0; k < 8; k++) {
9754 tmp = reg & 0x01;
9755
9756 reg >>= 1;
9757
Matt Carlson859a588792010-04-05 10:19:28 +00009758 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009759 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009760 }
9761 }
9762
9763 return ~reg;
9764}
9765
9766static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9767{
9768 /* accept or reject all multicast frames */
9769 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9770 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9771 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9772 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9773}
9774
9775static void __tg3_set_rx_mode(struct net_device *dev)
9776{
9777 struct tg3 *tp = netdev_priv(dev);
9778 u32 rx_mode;
9779
9780 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9781 RX_MODE_KEEP_VLAN_TAG);
9782
Matt Carlsonbf933c82011-01-25 15:58:49 +00009783#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009784 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9785 * flag clear.
9786 */
Joe Perches63c3a662011-04-26 08:12:10 +00009787 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009788 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9789#endif
9790
9791 if (dev->flags & IFF_PROMISC) {
9792 /* Promiscuous mode. */
9793 rx_mode |= RX_MODE_PROMISC;
9794 } else if (dev->flags & IFF_ALLMULTI) {
9795 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009796 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009797 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009798 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009799 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009800 } else {
9801 /* Accept one or more multicast(s). */
Jiri Pirko22bedad32010-04-01 21:22:57 +00009802 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009803 u32 mc_filter[4] = { 0, };
9804 u32 regidx;
9805 u32 bit;
9806 u32 crc;
9807
Jiri Pirko22bedad32010-04-01 21:22:57 +00009808 netdev_for_each_mc_addr(ha, dev) {
9809 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009810 bit = ~crc & 0x7f;
9811 regidx = (bit & 0x60) >> 5;
9812 bit &= 0x1f;
9813 mc_filter[regidx] |= (1 << bit);
9814 }
9815
9816 tw32(MAC_HASH_REG_0, mc_filter[0]);
9817 tw32(MAC_HASH_REG_1, mc_filter[1]);
9818 tw32(MAC_HASH_REG_2, mc_filter[2]);
9819 tw32(MAC_HASH_REG_3, mc_filter[3]);
9820 }
9821
9822 if (rx_mode != tp->rx_mode) {
9823 tp->rx_mode = rx_mode;
9824 tw32_f(MAC_RX_MODE, rx_mode);
9825 udelay(10);
9826 }
9827}
9828
9829static void tg3_set_rx_mode(struct net_device *dev)
9830{
9831 struct tg3 *tp = netdev_priv(dev);
9832
Michael Chane75f7c92006-03-20 21:33:26 -08009833 if (!netif_running(dev))
9834 return;
9835
David S. Millerf47c11e2005-06-24 20:18:35 -07009836 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009837 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009838 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009839}
9840
Linus Torvalds1da177e2005-04-16 15:20:36 -07009841static int tg3_get_regs_len(struct net_device *dev)
9842{
Matt Carlson97bd8e42011-04-13 11:05:04 +00009843 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844}
9845
9846static void tg3_get_regs(struct net_device *dev,
9847 struct ethtool_regs *regs, void *_p)
9848{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009849 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009850
9851 regs->version = 0;
9852
Matt Carlson97bd8e42011-04-13 11:05:04 +00009853 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009854
Matt Carlson80096062010-08-02 11:26:06 +00009855 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009856 return;
9857
David S. Millerf47c11e2005-06-24 20:18:35 -07009858 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009859
Matt Carlson97bd8e42011-04-13 11:05:04 +00009860 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009861
David S. Millerf47c11e2005-06-24 20:18:35 -07009862 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009863}
9864
9865static int tg3_get_eeprom_len(struct net_device *dev)
9866{
9867 struct tg3 *tp = netdev_priv(dev);
9868
9869 return tp->nvram_size;
9870}
9871
Linus Torvalds1da177e2005-04-16 15:20:36 -07009872static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9873{
9874 struct tg3 *tp = netdev_priv(dev);
9875 int ret;
9876 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009877 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009878 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009879
Joe Perches63c3a662011-04-26 08:12:10 +00009880 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +00009881 return -EINVAL;
9882
Matt Carlson80096062010-08-02 11:26:06 +00009883 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009884 return -EAGAIN;
9885
Linus Torvalds1da177e2005-04-16 15:20:36 -07009886 offset = eeprom->offset;
9887 len = eeprom->len;
9888 eeprom->len = 0;
9889
9890 eeprom->magic = TG3_EEPROM_MAGIC;
9891
9892 if (offset & 3) {
9893 /* adjustments to start on required 4 byte boundary */
9894 b_offset = offset & 3;
9895 b_count = 4 - b_offset;
9896 if (b_count > len) {
9897 /* i.e. offset=1 len=2 */
9898 b_count = len;
9899 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009900 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009901 if (ret)
9902 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +00009903 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009904 len -= b_count;
9905 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009906 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009907 }
9908
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009909 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009910 pd = &data[eeprom->len];
9911 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009912 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009913 if (ret) {
9914 eeprom->len += i;
9915 return ret;
9916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009917 memcpy(pd + i, &val, 4);
9918 }
9919 eeprom->len += i;
9920
9921 if (len & 3) {
9922 /* read last bytes not ending on 4 byte boundary */
9923 pd = &data[eeprom->len];
9924 b_count = len & 3;
9925 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009926 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009927 if (ret)
9928 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009929 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009930 eeprom->len += b_count;
9931 }
9932 return 0;
9933}
9934
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009935static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009936
9937static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9938{
9939 struct tg3 *tp = netdev_priv(dev);
9940 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009941 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009942 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009943 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009944
Matt Carlson80096062010-08-02 11:26:06 +00009945 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009946 return -EAGAIN;
9947
Joe Perches63c3a662011-04-26 08:12:10 +00009948 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +00009949 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009950 return -EINVAL;
9951
9952 offset = eeprom->offset;
9953 len = eeprom->len;
9954
9955 if ((b_offset = (offset & 3))) {
9956 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009957 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009958 if (ret)
9959 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009960 len += b_offset;
9961 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07009962 if (len < 4)
9963 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964 }
9965
9966 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07009967 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009968 /* adjustments to end on required 4 byte boundary */
9969 odd_len = 1;
9970 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009971 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009972 if (ret)
9973 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009974 }
9975
9976 buf = data;
9977 if (b_offset || odd_len) {
9978 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009979 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009980 return -ENOMEM;
9981 if (b_offset)
9982 memcpy(buf, &start, 4);
9983 if (odd_len)
9984 memcpy(buf+len-4, &end, 4);
9985 memcpy(buf + b_offset, data, eeprom->len);
9986 }
9987
9988 ret = tg3_nvram_write_block(tp, offset, len, buf);
9989
9990 if (buf != data)
9991 kfree(buf);
9992
9993 return ret;
9994}
9995
9996static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9997{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009998 struct tg3 *tp = netdev_priv(dev);
9999
Joe Perches63c3a662011-04-26 08:12:10 +000010000 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010001 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010002 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010003 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010004 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10005 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010006 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010007
Linus Torvalds1da177e2005-04-16 15:20:36 -070010008 cmd->supported = (SUPPORTED_Autoneg);
10009
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010010 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010011 cmd->supported |= (SUPPORTED_1000baseT_Half |
10012 SUPPORTED_1000baseT_Full);
10013
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010014 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010015 cmd->supported |= (SUPPORTED_100baseT_Half |
10016 SUPPORTED_100baseT_Full |
10017 SUPPORTED_10baseT_Half |
10018 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010019 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010020 cmd->port = PORT_TP;
10021 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010022 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010023 cmd->port = PORT_FIBRE;
10024 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010025
Linus Torvalds1da177e2005-04-16 15:20:36 -070010026 cmd->advertising = tp->link_config.advertising;
10027 if (netif_running(dev)) {
10028 cmd->speed = tp->link_config.active_speed;
10029 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson64c22182010-10-14 10:37:44 +000010030 } else {
10031 cmd->speed = SPEED_INVALID;
10032 cmd->duplex = DUPLEX_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010033 }
Matt Carlson882e9792009-09-01 13:21:36 +000010034 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010035 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010036 cmd->autoneg = tp->link_config.autoneg;
10037 cmd->maxtxpkt = 0;
10038 cmd->maxrxpkt = 0;
10039 return 0;
10040}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010041
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10043{
10044 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010045
Joe Perches63c3a662011-04-26 08:12:10 +000010046 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010047 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010048 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010049 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010050 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10051 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010052 }
10053
Matt Carlson7e5856b2009-02-25 14:23:01 +000010054 if (cmd->autoneg != AUTONEG_ENABLE &&
10055 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010056 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010057
10058 if (cmd->autoneg == AUTONEG_DISABLE &&
10059 cmd->duplex != DUPLEX_FULL &&
10060 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010061 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010062
Matt Carlson7e5856b2009-02-25 14:23:01 +000010063 if (cmd->autoneg == AUTONEG_ENABLE) {
10064 u32 mask = ADVERTISED_Autoneg |
10065 ADVERTISED_Pause |
10066 ADVERTISED_Asym_Pause;
10067
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010068 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010069 mask |= ADVERTISED_1000baseT_Half |
10070 ADVERTISED_1000baseT_Full;
10071
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010072 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010073 mask |= ADVERTISED_100baseT_Half |
10074 ADVERTISED_100baseT_Full |
10075 ADVERTISED_10baseT_Half |
10076 ADVERTISED_10baseT_Full |
10077 ADVERTISED_TP;
10078 else
10079 mask |= ADVERTISED_FIBRE;
10080
10081 if (cmd->advertising & ~mask)
10082 return -EINVAL;
10083
10084 mask &= (ADVERTISED_1000baseT_Half |
10085 ADVERTISED_1000baseT_Full |
10086 ADVERTISED_100baseT_Half |
10087 ADVERTISED_100baseT_Full |
10088 ADVERTISED_10baseT_Half |
10089 ADVERTISED_10baseT_Full);
10090
10091 cmd->advertising &= mask;
10092 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010093 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
Matt Carlson7e5856b2009-02-25 14:23:01 +000010094 if (cmd->speed != SPEED_1000)
10095 return -EINVAL;
10096
10097 if (cmd->duplex != DUPLEX_FULL)
10098 return -EINVAL;
10099 } else {
10100 if (cmd->speed != SPEED_100 &&
10101 cmd->speed != SPEED_10)
10102 return -EINVAL;
10103 }
10104 }
10105
David S. Millerf47c11e2005-06-24 20:18:35 -070010106 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010107
10108 tp->link_config.autoneg = cmd->autoneg;
10109 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010110 tp->link_config.advertising = (cmd->advertising |
10111 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010112 tp->link_config.speed = SPEED_INVALID;
10113 tp->link_config.duplex = DUPLEX_INVALID;
10114 } else {
10115 tp->link_config.advertising = 0;
10116 tp->link_config.speed = cmd->speed;
10117 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010118 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010119
Michael Chan24fcad62006-12-17 17:06:46 -080010120 tp->link_config.orig_speed = tp->link_config.speed;
10121 tp->link_config.orig_duplex = tp->link_config.duplex;
10122 tp->link_config.orig_autoneg = tp->link_config.autoneg;
10123
Linus Torvalds1da177e2005-04-16 15:20:36 -070010124 if (netif_running(dev))
10125 tg3_setup_phy(tp, 1);
10126
David S. Millerf47c11e2005-06-24 20:18:35 -070010127 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010128
Linus Torvalds1da177e2005-04-16 15:20:36 -070010129 return 0;
10130}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010131
Linus Torvalds1da177e2005-04-16 15:20:36 -070010132static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10133{
10134 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010135
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136 strcpy(info->driver, DRV_MODULE_NAME);
10137 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -080010138 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010139 strcpy(info->bus_info, pci_name(tp->pdev));
10140}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010141
Linus Torvalds1da177e2005-04-16 15:20:36 -070010142static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10143{
10144 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010145
Joe Perches63c3a662011-04-26 08:12:10 +000010146 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010147 wol->supported = WAKE_MAGIC;
10148 else
10149 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010150 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010151 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010152 wol->wolopts = WAKE_MAGIC;
10153 memset(&wol->sopass, 0, sizeof(wol->sopass));
10154}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010155
Linus Torvalds1da177e2005-04-16 15:20:36 -070010156static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10157{
10158 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010159 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010160
Linus Torvalds1da177e2005-04-16 15:20:36 -070010161 if (wol->wolopts & ~WAKE_MAGIC)
10162 return -EINVAL;
10163 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010164 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010165 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010166
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010167 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10168
David S. Millerf47c11e2005-06-24 20:18:35 -070010169 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010170 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010171 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010172 else
Joe Perches63c3a662011-04-26 08:12:10 +000010173 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010174 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010175
Linus Torvalds1da177e2005-04-16 15:20:36 -070010176 return 0;
10177}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010178
Linus Torvalds1da177e2005-04-16 15:20:36 -070010179static u32 tg3_get_msglevel(struct net_device *dev)
10180{
10181 struct tg3 *tp = netdev_priv(dev);
10182 return tp->msg_enable;
10183}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010184
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185static void tg3_set_msglevel(struct net_device *dev, u32 value)
10186{
10187 struct tg3 *tp = netdev_priv(dev);
10188 tp->msg_enable = value;
10189}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010190
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191static int tg3_nway_reset(struct net_device *dev)
10192{
10193 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010194 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010195
Linus Torvalds1da177e2005-04-16 15:20:36 -070010196 if (!netif_running(dev))
10197 return -EAGAIN;
10198
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010199 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010200 return -EINVAL;
10201
Joe Perches63c3a662011-04-26 08:12:10 +000010202 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010203 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010204 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010205 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010206 } else {
10207 u32 bmcr;
10208
10209 spin_lock_bh(&tp->lock);
10210 r = -EINVAL;
10211 tg3_readphy(tp, MII_BMCR, &bmcr);
10212 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10213 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010214 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010215 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10216 BMCR_ANENABLE);
10217 r = 0;
10218 }
10219 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010220 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010221
Linus Torvalds1da177e2005-04-16 15:20:36 -070010222 return r;
10223}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010224
Linus Torvalds1da177e2005-04-16 15:20:36 -070010225static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10226{
10227 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010228
Matt Carlson2c49a442010-09-30 10:34:35 +000010229 ering->rx_max_pending = tp->rx_std_ring_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010230 ering->rx_mini_max_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010231 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010232 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010233 else
10234 ering->rx_jumbo_max_pending = 0;
10235
10236 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010237
10238 ering->rx_pending = tp->rx_pending;
10239 ering->rx_mini_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010240 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010241 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10242 else
10243 ering->rx_jumbo_pending = 0;
10244
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010245 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010246}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010247
Linus Torvalds1da177e2005-04-16 15:20:36 -070010248static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10249{
10250 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010251 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010252
Matt Carlson2c49a442010-09-30 10:34:35 +000010253 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10254 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010255 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10256 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010257 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010258 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010259 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010260
Michael Chanbbe832c2005-06-24 20:20:04 -070010261 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010262 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010263 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010264 irq_sync = 1;
10265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010266
Michael Chanbbe832c2005-06-24 20:20:04 -070010267 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010268
Linus Torvalds1da177e2005-04-16 15:20:36 -070010269 tp->rx_pending = ering->rx_pending;
10270
Joe Perches63c3a662011-04-26 08:12:10 +000010271 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010272 tp->rx_pending > 63)
10273 tp->rx_pending = 63;
10274 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010275
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010276 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010277 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010278
10279 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010280 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010281 err = tg3_restart_hw(tp, 1);
10282 if (!err)
10283 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010284 }
10285
David S. Millerf47c11e2005-06-24 20:18:35 -070010286 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010287
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010288 if (irq_sync && !err)
10289 tg3_phy_start(tp);
10290
Michael Chanb9ec6c12006-07-25 16:37:27 -070010291 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010292}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010293
Linus Torvalds1da177e2005-04-16 15:20:36 -070010294static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10295{
10296 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010297
Joe Perches63c3a662011-04-26 08:12:10 +000010298 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010299
Steve Glendinninge18ce342008-12-16 02:00:00 -080010300 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010301 epause->rx_pause = 1;
10302 else
10303 epause->rx_pause = 0;
10304
Steve Glendinninge18ce342008-12-16 02:00:00 -080010305 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010306 epause->tx_pause = 1;
10307 else
10308 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010309}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010310
Linus Torvalds1da177e2005-04-16 15:20:36 -070010311static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10312{
10313 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010314 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010315
Joe Perches63c3a662011-04-26 08:12:10 +000010316 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010317 u32 newadv;
10318 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010319
Matt Carlson27121682010-02-17 15:16:57 +000010320 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010321
Matt Carlson27121682010-02-17 15:16:57 +000010322 if (!(phydev->supported & SUPPORTED_Pause) ||
10323 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010324 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010325 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010326
Matt Carlson27121682010-02-17 15:16:57 +000010327 tp->link_config.flowctrl = 0;
10328 if (epause->rx_pause) {
10329 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010330
Matt Carlson27121682010-02-17 15:16:57 +000010331 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010332 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010333 newadv = ADVERTISED_Pause;
10334 } else
10335 newadv = ADVERTISED_Pause |
10336 ADVERTISED_Asym_Pause;
10337 } else if (epause->tx_pause) {
10338 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10339 newadv = ADVERTISED_Asym_Pause;
10340 } else
10341 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010342
Matt Carlson27121682010-02-17 15:16:57 +000010343 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010344 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010345 else
Joe Perches63c3a662011-04-26 08:12:10 +000010346 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010347
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010348 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010349 u32 oldadv = phydev->advertising &
10350 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10351 if (oldadv != newadv) {
10352 phydev->advertising &=
10353 ~(ADVERTISED_Pause |
10354 ADVERTISED_Asym_Pause);
10355 phydev->advertising |= newadv;
10356 if (phydev->autoneg) {
10357 /*
10358 * Always renegotiate the link to
10359 * inform our link partner of our
10360 * flow control settings, even if the
10361 * flow control is forced. Let
10362 * tg3_adjust_link() do the final
10363 * flow control setup.
10364 */
10365 return phy_start_aneg(phydev);
10366 }
10367 }
10368
10369 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010370 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010371 } else {
10372 tp->link_config.orig_advertising &=
10373 ~(ADVERTISED_Pause |
10374 ADVERTISED_Asym_Pause);
10375 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010376 }
10377 } else {
10378 int irq_sync = 0;
10379
10380 if (netif_running(dev)) {
10381 tg3_netif_stop(tp);
10382 irq_sync = 1;
10383 }
10384
10385 tg3_full_lock(tp, irq_sync);
10386
10387 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010388 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010389 else
Joe Perches63c3a662011-04-26 08:12:10 +000010390 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010391 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010392 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010393 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010394 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010395 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010396 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010397 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010398 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010399
10400 if (netif_running(dev)) {
10401 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10402 err = tg3_restart_hw(tp, 1);
10403 if (!err)
10404 tg3_netif_start(tp);
10405 }
10406
10407 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010409
Michael Chanb9ec6c12006-07-25 16:37:27 -070010410 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010411}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010412
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010413static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010414{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010415 switch (sset) {
10416 case ETH_SS_TEST:
10417 return TG3_NUM_TEST;
10418 case ETH_SS_STATS:
10419 return TG3_NUM_STATS;
10420 default:
10421 return -EOPNOTSUPP;
10422 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010423}
10424
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010425static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010426{
10427 switch (stringset) {
10428 case ETH_SS_STATS:
10429 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10430 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010431 case ETH_SS_TEST:
10432 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10433 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010434 default:
10435 WARN_ON(1); /* we need a WARN() */
10436 break;
10437 }
10438}
10439
stephen hemminger81b87092011-04-04 08:43:50 +000010440static int tg3_set_phys_id(struct net_device *dev,
10441 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010442{
10443 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010444
10445 if (!netif_running(tp->dev))
10446 return -EAGAIN;
10447
stephen hemminger81b87092011-04-04 08:43:50 +000010448 switch (state) {
10449 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010450 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010451
stephen hemminger81b87092011-04-04 08:43:50 +000010452 case ETHTOOL_ID_ON:
10453 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10454 LED_CTRL_1000MBPS_ON |
10455 LED_CTRL_100MBPS_ON |
10456 LED_CTRL_10MBPS_ON |
10457 LED_CTRL_TRAFFIC_OVERRIDE |
10458 LED_CTRL_TRAFFIC_BLINK |
10459 LED_CTRL_TRAFFIC_LED);
10460 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010461
stephen hemminger81b87092011-04-04 08:43:50 +000010462 case ETHTOOL_ID_OFF:
10463 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10464 LED_CTRL_TRAFFIC_OVERRIDE);
10465 break;
Michael Chan4009a932005-09-05 17:52:54 -070010466
stephen hemminger81b87092011-04-04 08:43:50 +000010467 case ETHTOOL_ID_INACTIVE:
10468 tw32(MAC_LED_CTRL, tp->led_ctrl);
10469 break;
Michael Chan4009a932005-09-05 17:52:54 -070010470 }
stephen hemminger81b87092011-04-04 08:43:50 +000010471
Michael Chan4009a932005-09-05 17:52:54 -070010472 return 0;
10473}
10474
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010475static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010476 struct ethtool_stats *estats, u64 *tmp_stats)
10477{
10478 struct tg3 *tp = netdev_priv(dev);
10479 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10480}
10481
Matt Carlsonc3e94502011-04-13 11:05:08 +000010482static __be32 * tg3_vpd_readblock(struct tg3 *tp)
10483{
10484 int i;
10485 __be32 *buf;
10486 u32 offset = 0, len = 0;
10487 u32 magic, val;
10488
Joe Perches63c3a662011-04-26 08:12:10 +000010489 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010490 return NULL;
10491
10492 if (magic == TG3_EEPROM_MAGIC) {
10493 for (offset = TG3_NVM_DIR_START;
10494 offset < TG3_NVM_DIR_END;
10495 offset += TG3_NVM_DIRENT_SIZE) {
10496 if (tg3_nvram_read(tp, offset, &val))
10497 return NULL;
10498
10499 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10500 TG3_NVM_DIRTYPE_EXTVPD)
10501 break;
10502 }
10503
10504 if (offset != TG3_NVM_DIR_END) {
10505 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10506 if (tg3_nvram_read(tp, offset + 4, &offset))
10507 return NULL;
10508
10509 offset = tg3_nvram_logical_addr(tp, offset);
10510 }
10511 }
10512
10513 if (!offset || !len) {
10514 offset = TG3_NVM_VPD_OFF;
10515 len = TG3_NVM_VPD_LEN;
10516 }
10517
10518 buf = kmalloc(len, GFP_KERNEL);
10519 if (buf == NULL)
10520 return NULL;
10521
10522 if (magic == TG3_EEPROM_MAGIC) {
10523 for (i = 0; i < len; i += 4) {
10524 /* The data is in little-endian format in NVRAM.
10525 * Use the big-endian read routines to preserve
10526 * the byte order as it exists in NVRAM.
10527 */
10528 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10529 goto error;
10530 }
10531 } else {
10532 u8 *ptr;
10533 ssize_t cnt;
10534 unsigned int pos = 0;
10535
10536 ptr = (u8 *)&buf[0];
10537 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10538 cnt = pci_read_vpd(tp->pdev, pos,
10539 len - pos, ptr);
10540 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10541 cnt = 0;
10542 else if (cnt < 0)
10543 goto error;
10544 }
10545 if (pos != len)
10546 goto error;
10547 }
10548
10549 return buf;
10550
10551error:
10552 kfree(buf);
10553 return NULL;
10554}
10555
Michael Chan566f86a2005-05-29 14:56:58 -070010556#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010557#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10558#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10559#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -070010560#define NVRAM_SELFBOOT_HW_SIZE 0x20
10561#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010562
10563static int tg3_test_nvram(struct tg3 *tp)
10564{
Al Virob9fc7dc2007-12-17 22:59:57 -080010565 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010566 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010567 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010568
Joe Perches63c3a662011-04-26 08:12:10 +000010569 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010570 return 0;
10571
Matt Carlsone4f34112009-02-25 14:25:00 +000010572 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010573 return -EIO;
10574
Michael Chan1b277772006-03-20 22:27:48 -080010575 if (magic == TG3_EEPROM_MAGIC)
10576 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010577 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010578 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10579 TG3_EEPROM_SB_FORMAT_1) {
10580 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10581 case TG3_EEPROM_SB_REVISION_0:
10582 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10583 break;
10584 case TG3_EEPROM_SB_REVISION_2:
10585 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10586 break;
10587 case TG3_EEPROM_SB_REVISION_3:
10588 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10589 break;
10590 default:
10591 return 0;
10592 }
10593 } else
Michael Chan1b277772006-03-20 22:27:48 -080010594 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010595 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10596 size = NVRAM_SELFBOOT_HW_SIZE;
10597 else
Michael Chan1b277772006-03-20 22:27:48 -080010598 return -EIO;
10599
10600 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010601 if (buf == NULL)
10602 return -ENOMEM;
10603
Michael Chan1b277772006-03-20 22:27:48 -080010604 err = -EIO;
10605 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010606 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10607 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010608 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010609 }
Michael Chan1b277772006-03-20 22:27:48 -080010610 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010611 goto out;
10612
Michael Chan1b277772006-03-20 22:27:48 -080010613 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010614 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010615 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010616 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010617 u8 *buf8 = (u8 *) buf, csum8 = 0;
10618
Al Virob9fc7dc2007-12-17 22:59:57 -080010619 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010620 TG3_EEPROM_SB_REVISION_2) {
10621 /* For rev 2, the csum doesn't include the MBA. */
10622 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10623 csum8 += buf8[i];
10624 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10625 csum8 += buf8[i];
10626 } else {
10627 for (i = 0; i < size; i++)
10628 csum8 += buf8[i];
10629 }
Michael Chan1b277772006-03-20 22:27:48 -080010630
Adrian Bunkad96b482006-04-05 22:21:04 -070010631 if (csum8 == 0) {
10632 err = 0;
10633 goto out;
10634 }
10635
10636 err = -EIO;
10637 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010638 }
Michael Chan566f86a2005-05-29 14:56:58 -070010639
Al Virob9fc7dc2007-12-17 22:59:57 -080010640 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010641 TG3_EEPROM_MAGIC_HW) {
10642 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010643 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010644 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010645
10646 /* Separate the parity bits and the data bytes. */
10647 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10648 if ((i == 0) || (i == 8)) {
10649 int l;
10650 u8 msk;
10651
10652 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10653 parity[k++] = buf8[i] & msk;
10654 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000010655 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070010656 int l;
10657 u8 msk;
10658
10659 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10660 parity[k++] = buf8[i] & msk;
10661 i++;
10662
10663 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10664 parity[k++] = buf8[i] & msk;
10665 i++;
10666 }
10667 data[j++] = buf8[i];
10668 }
10669
10670 err = -EIO;
10671 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10672 u8 hw8 = hweight8(data[i]);
10673
10674 if ((hw8 & 0x1) && parity[i])
10675 goto out;
10676 else if (!(hw8 & 0x1) && !parity[i])
10677 goto out;
10678 }
10679 err = 0;
10680 goto out;
10681 }
10682
Matt Carlson01c3a392011-03-09 16:58:20 +000010683 err = -EIO;
10684
Michael Chan566f86a2005-05-29 14:56:58 -070010685 /* Bootstrap checksum at offset 0x10 */
10686 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000010687 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010688 goto out;
10689
10690 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10691 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000010692 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000010693 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010694
Matt Carlsonc3e94502011-04-13 11:05:08 +000010695 kfree(buf);
10696
10697 buf = tg3_vpd_readblock(tp);
10698 if (!buf)
10699 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000010700
10701 i = pci_vpd_find_tag((u8 *)buf, 0, TG3_NVM_VPD_LEN,
10702 PCI_VPD_LRDT_RO_DATA);
10703 if (i > 0) {
10704 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
10705 if (j < 0)
10706 goto out;
10707
10708 if (i + PCI_VPD_LRDT_TAG_SIZE + j > TG3_NVM_VPD_LEN)
10709 goto out;
10710
10711 i += PCI_VPD_LRDT_TAG_SIZE;
10712 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
10713 PCI_VPD_RO_KEYWORD_CHKSUM);
10714 if (j > 0) {
10715 u8 csum8 = 0;
10716
10717 j += PCI_VPD_INFO_FLD_HDR_SIZE;
10718
10719 for (i = 0; i <= j; i++)
10720 csum8 += ((u8 *)buf)[i];
10721
10722 if (csum8)
10723 goto out;
10724 }
10725 }
10726
Michael Chan566f86a2005-05-29 14:56:58 -070010727 err = 0;
10728
10729out:
10730 kfree(buf);
10731 return err;
10732}
10733
Michael Chanca430072005-05-29 14:57:23 -070010734#define TG3_SERDES_TIMEOUT_SEC 2
10735#define TG3_COPPER_TIMEOUT_SEC 6
10736
10737static int tg3_test_link(struct tg3 *tp)
10738{
10739 int i, max;
10740
10741 if (!netif_running(tp->dev))
10742 return -ENODEV;
10743
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010744 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010745 max = TG3_SERDES_TIMEOUT_SEC;
10746 else
10747 max = TG3_COPPER_TIMEOUT_SEC;
10748
10749 for (i = 0; i < max; i++) {
10750 if (netif_carrier_ok(tp->dev))
10751 return 0;
10752
10753 if (msleep_interruptible(1000))
10754 break;
10755 }
10756
10757 return -EIO;
10758}
10759
Michael Chana71116d2005-05-29 14:58:11 -070010760/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010761static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010762{
Michael Chanb16250e2006-09-27 16:10:14 -070010763 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010764 u32 offset, read_mask, write_mask, val, save_val, read_val;
10765 static struct {
10766 u16 offset;
10767 u16 flags;
10768#define TG3_FL_5705 0x1
10769#define TG3_FL_NOT_5705 0x2
10770#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010771#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010772 u32 read_mask;
10773 u32 write_mask;
10774 } reg_tbl[] = {
10775 /* MAC Control Registers */
10776 { MAC_MODE, TG3_FL_NOT_5705,
10777 0x00000000, 0x00ef6f8c },
10778 { MAC_MODE, TG3_FL_5705,
10779 0x00000000, 0x01ef6b8c },
10780 { MAC_STATUS, TG3_FL_NOT_5705,
10781 0x03800107, 0x00000000 },
10782 { MAC_STATUS, TG3_FL_5705,
10783 0x03800100, 0x00000000 },
10784 { MAC_ADDR_0_HIGH, 0x0000,
10785 0x00000000, 0x0000ffff },
10786 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010787 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070010788 { MAC_RX_MTU_SIZE, 0x0000,
10789 0x00000000, 0x0000ffff },
10790 { MAC_TX_MODE, 0x0000,
10791 0x00000000, 0x00000070 },
10792 { MAC_TX_LENGTHS, 0x0000,
10793 0x00000000, 0x00003fff },
10794 { MAC_RX_MODE, TG3_FL_NOT_5705,
10795 0x00000000, 0x000007fc },
10796 { MAC_RX_MODE, TG3_FL_5705,
10797 0x00000000, 0x000007dc },
10798 { MAC_HASH_REG_0, 0x0000,
10799 0x00000000, 0xffffffff },
10800 { MAC_HASH_REG_1, 0x0000,
10801 0x00000000, 0xffffffff },
10802 { MAC_HASH_REG_2, 0x0000,
10803 0x00000000, 0xffffffff },
10804 { MAC_HASH_REG_3, 0x0000,
10805 0x00000000, 0xffffffff },
10806
10807 /* Receive Data and Receive BD Initiator Control Registers. */
10808 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10809 0x00000000, 0xffffffff },
10810 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10811 0x00000000, 0xffffffff },
10812 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10813 0x00000000, 0x00000003 },
10814 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10815 0x00000000, 0xffffffff },
10816 { RCVDBDI_STD_BD+0, 0x0000,
10817 0x00000000, 0xffffffff },
10818 { RCVDBDI_STD_BD+4, 0x0000,
10819 0x00000000, 0xffffffff },
10820 { RCVDBDI_STD_BD+8, 0x0000,
10821 0x00000000, 0xffff0002 },
10822 { RCVDBDI_STD_BD+0xc, 0x0000,
10823 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010824
Michael Chana71116d2005-05-29 14:58:11 -070010825 /* Receive BD Initiator Control Registers. */
10826 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10827 0x00000000, 0xffffffff },
10828 { RCVBDI_STD_THRESH, TG3_FL_5705,
10829 0x00000000, 0x000003ff },
10830 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10831 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010832
Michael Chana71116d2005-05-29 14:58:11 -070010833 /* Host Coalescing Control Registers. */
10834 { HOSTCC_MODE, TG3_FL_NOT_5705,
10835 0x00000000, 0x00000004 },
10836 { HOSTCC_MODE, TG3_FL_5705,
10837 0x00000000, 0x000000f6 },
10838 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10839 0x00000000, 0xffffffff },
10840 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10841 0x00000000, 0x000003ff },
10842 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10843 0x00000000, 0xffffffff },
10844 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10845 0x00000000, 0x000003ff },
10846 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10847 0x00000000, 0xffffffff },
10848 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10849 0x00000000, 0x000000ff },
10850 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10851 0x00000000, 0xffffffff },
10852 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10853 0x00000000, 0x000000ff },
10854 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10855 0x00000000, 0xffffffff },
10856 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10857 0x00000000, 0xffffffff },
10858 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10859 0x00000000, 0xffffffff },
10860 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10861 0x00000000, 0x000000ff },
10862 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10863 0x00000000, 0xffffffff },
10864 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10865 0x00000000, 0x000000ff },
10866 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10867 0x00000000, 0xffffffff },
10868 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10869 0x00000000, 0xffffffff },
10870 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10871 0x00000000, 0xffffffff },
10872 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10873 0x00000000, 0xffffffff },
10874 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10875 0x00000000, 0xffffffff },
10876 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10877 0xffffffff, 0x00000000 },
10878 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10879 0xffffffff, 0x00000000 },
10880
10881 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010882 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010883 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010884 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010885 0x00000000, 0x007fffff },
10886 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10887 0x00000000, 0x0000003f },
10888 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10889 0x00000000, 0x000001ff },
10890 { BUFMGR_MB_HIGH_WATER, 0x0000,
10891 0x00000000, 0x000001ff },
10892 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10893 0xffffffff, 0x00000000 },
10894 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10895 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010896
Michael Chana71116d2005-05-29 14:58:11 -070010897 /* Mailbox Registers */
10898 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10899 0x00000000, 0x000001ff },
10900 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10901 0x00000000, 0x000001ff },
10902 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10903 0x00000000, 0x000007ff },
10904 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10905 0x00000000, 0x000001ff },
10906
10907 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10908 };
10909
Michael Chanb16250e2006-09-27 16:10:14 -070010910 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010911 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070010912 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000010913 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070010914 is_5750 = 1;
10915 }
Michael Chana71116d2005-05-29 14:58:11 -070010916
10917 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10918 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10919 continue;
10920
10921 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10922 continue;
10923
Joe Perches63c3a662011-04-26 08:12:10 +000010924 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070010925 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10926 continue;
10927
Michael Chanb16250e2006-09-27 16:10:14 -070010928 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10929 continue;
10930
Michael Chana71116d2005-05-29 14:58:11 -070010931 offset = (u32) reg_tbl[i].offset;
10932 read_mask = reg_tbl[i].read_mask;
10933 write_mask = reg_tbl[i].write_mask;
10934
10935 /* Save the original register content */
10936 save_val = tr32(offset);
10937
10938 /* Determine the read-only value. */
10939 read_val = save_val & read_mask;
10940
10941 /* Write zero to the register, then make sure the read-only bits
10942 * are not changed and the read/write bits are all zeros.
10943 */
10944 tw32(offset, 0);
10945
10946 val = tr32(offset);
10947
10948 /* Test the read-only and read/write bits. */
10949 if (((val & read_mask) != read_val) || (val & write_mask))
10950 goto out;
10951
10952 /* Write ones to all the bits defined by RdMask and WrMask, then
10953 * make sure the read-only bits are not changed and the
10954 * read/write bits are all ones.
10955 */
10956 tw32(offset, read_mask | write_mask);
10957
10958 val = tr32(offset);
10959
10960 /* Test the read-only bits. */
10961 if ((val & read_mask) != read_val)
10962 goto out;
10963
10964 /* Test the read/write bits. */
10965 if ((val & write_mask) != write_mask)
10966 goto out;
10967
10968 tw32(offset, save_val);
10969 }
10970
10971 return 0;
10972
10973out:
Michael Chan9f88f292006-12-07 00:22:54 -080010974 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000010975 netdev_err(tp->dev,
10976 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070010977 tw32(offset, save_val);
10978 return -EIO;
10979}
10980
Michael Chan7942e1d2005-05-29 14:58:36 -070010981static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10982{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010983 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010984 int i;
10985 u32 j;
10986
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010987 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010988 for (j = 0; j < len; j += 4) {
10989 u32 val;
10990
10991 tg3_write_mem(tp, offset + j, test_pattern[i]);
10992 tg3_read_mem(tp, offset + j, &val);
10993 if (val != test_pattern[i])
10994 return -EIO;
10995 }
10996 }
10997 return 0;
10998}
10999
11000static int tg3_test_memory(struct tg3 *tp)
11001{
11002 static struct mem_entry {
11003 u32 offset;
11004 u32 len;
11005 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011006 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011007 { 0x00002000, 0x1c000},
11008 { 0xffffffff, 0x00000}
11009 }, mem_tbl_5705[] = {
11010 { 0x00000100, 0x0000c},
11011 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011012 { 0x00004000, 0x00800},
11013 { 0x00006000, 0x01000},
11014 { 0x00008000, 0x02000},
11015 { 0x00010000, 0x0e000},
11016 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011017 }, mem_tbl_5755[] = {
11018 { 0x00000200, 0x00008},
11019 { 0x00004000, 0x00800},
11020 { 0x00006000, 0x00800},
11021 { 0x00008000, 0x02000},
11022 { 0x00010000, 0x0c000},
11023 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011024 }, mem_tbl_5906[] = {
11025 { 0x00000200, 0x00008},
11026 { 0x00004000, 0x00400},
11027 { 0x00006000, 0x00400},
11028 { 0x00008000, 0x01000},
11029 { 0x00010000, 0x01000},
11030 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011031 }, mem_tbl_5717[] = {
11032 { 0x00000200, 0x00008},
11033 { 0x00010000, 0x0a000},
11034 { 0x00020000, 0x13c00},
11035 { 0xffffffff, 0x00000}
11036 }, mem_tbl_57765[] = {
11037 { 0x00000200, 0x00008},
11038 { 0x00004000, 0x00800},
11039 { 0x00006000, 0x09800},
11040 { 0x00010000, 0x0a000},
11041 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070011042 };
11043 struct mem_entry *mem_tbl;
11044 int err = 0;
11045 int i;
11046
Joe Perches63c3a662011-04-26 08:12:10 +000011047 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011048 mem_tbl = mem_tbl_5717;
11049 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
11050 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000011051 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011052 mem_tbl = mem_tbl_5755;
11053 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11054 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000011055 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011056 mem_tbl = mem_tbl_5705;
11057 else
Michael Chan7942e1d2005-05-29 14:58:36 -070011058 mem_tbl = mem_tbl_570x;
11059
11060 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000011061 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
11062 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011063 break;
11064 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011065
Michael Chan7942e1d2005-05-29 14:58:36 -070011066 return err;
11067}
11068
Michael Chan9f40dea2005-09-05 17:53:06 -070011069#define TG3_MAC_LOOPBACK 0
11070#define TG3_PHY_LOOPBACK 1
Matt Carlsonbb158d62011-04-25 12:42:47 +000011071#define TG3_TSO_LOOPBACK 2
11072
11073#define TG3_TSO_MSS 500
11074
11075#define TG3_TSO_IP_HDR_LEN 20
11076#define TG3_TSO_TCP_HDR_LEN 20
11077#define TG3_TSO_TCP_OPT_LEN 12
11078
11079static const u8 tg3_tso_header[] = {
110800x08, 0x00,
110810x45, 0x00, 0x00, 0x00,
110820x00, 0x00, 0x40, 0x00,
110830x40, 0x06, 0x00, 0x00,
110840x0a, 0x00, 0x00, 0x01,
110850x0a, 0x00, 0x00, 0x02,
110860x0d, 0x00, 0xe0, 0x00,
110870x00, 0x00, 0x01, 0x00,
110880x00, 0x00, 0x02, 0x00,
110890x80, 0x10, 0x10, 0x00,
110900x14, 0x09, 0x00, 0x00,
110910x01, 0x01, 0x08, 0x0a,
110920x11, 0x11, 0x11, 0x11,
110930x11, 0x11, 0x11, 0x11,
11094};
Michael Chan9f40dea2005-09-05 17:53:06 -070011095
Matt Carlson4852a862011-04-13 11:05:07 +000011096static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070011097{
Michael Chan9f40dea2005-09-05 17:53:06 -070011098 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011099 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Michael Chanc76949a2005-05-29 14:58:59 -070011100 struct sk_buff *skb, *rx_skb;
11101 u8 *tx_data;
11102 dma_addr_t map;
11103 int num_pkts, tx_len, rx_len, i, err;
11104 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011105 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011106 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011107
Matt Carlsonc8873402010-02-12 14:47:11 +000011108 tnapi = &tp->napi[0];
11109 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011110 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011111 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011112 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011113 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011114 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011115 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011116 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011117
Michael Chan9f40dea2005-09-05 17:53:06 -070011118 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070011119 /* HW errata - mac loopback fails in some cases on 5780.
11120 * Normal traffic and PHY loopback are not affected by
Matt Carlsonaba49f22011-01-25 15:58:53 +000011121 * errata. Also, the MAC loopback test is deprecated for
11122 * all newer ASIC revisions.
Michael Chanc94e3942005-09-27 12:12:42 -070011123 */
Matt Carlsonaba49f22011-01-25 15:58:53 +000011124 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011125 tg3_flag(tp, CPMU_PRESENT))
Michael Chanc94e3942005-09-27 12:12:42 -070011126 return 0;
11127
Matt Carlson49692ca2011-01-25 15:58:52 +000011128 mac_mode = tp->mac_mode &
11129 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
11130 mac_mode |= MAC_MODE_PORT_INT_LPBACK;
Joe Perches63c3a662011-04-26 08:12:10 +000011131 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011132 mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011133 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Michael Chan3f7045c2006-09-27 16:02:29 -070011134 mac_mode |= MAC_MODE_PORT_MODE_MII;
11135 else
11136 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070011137 tw32(MAC_MODE, mac_mode);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011138 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011139 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +000011140 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080011141 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
11142 } else
11143 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070011144
Matt Carlson9ef8ca92007-07-11 19:48:29 -070011145 tg3_phy_toggle_automdix(tp, 0);
11146
Michael Chan3f7045c2006-09-27 16:02:29 -070011147 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070011148 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080011149
Matt Carlson49692ca2011-01-25 15:58:52 +000011150 mac_mode = tp->mac_mode &
11151 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011152 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000011153 tg3_writephy(tp, MII_TG3_FET_PTEST,
11154 MII_TG3_FET_PTEST_FRC_TX_LINK |
11155 MII_TG3_FET_PTEST_FRC_TX_LOCK);
11156 /* The write needs to be flushed for the AC131 */
11157 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11158 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080011159 mac_mode |= MAC_MODE_PORT_MODE_MII;
11160 } else
11161 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070011162
Michael Chanc94e3942005-09-27 12:12:42 -070011163 /* reset to prevent losing 1st rx packet intermittently */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011164 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Michael Chanc94e3942005-09-27 12:12:42 -070011165 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
11166 udelay(10);
11167 tw32_f(MAC_RX_MODE, tp->rx_mode);
11168 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011169 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000011170 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
11171 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011172 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000011173 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011174 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080011175 tg3_writephy(tp, MII_TG3_EXT_CTRL,
11176 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
11177 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011178 tw32(MAC_MODE, mac_mode);
Matt Carlson49692ca2011-01-25 15:58:52 +000011179
11180 /* Wait for link */
11181 for (i = 0; i < 100; i++) {
11182 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11183 break;
11184 mdelay(1);
11185 }
Matt Carlson859a588792010-04-05 10:19:28 +000011186 }
Michael Chanc76949a2005-05-29 14:58:59 -070011187
11188 err = -EIO;
11189
Matt Carlson4852a862011-04-13 11:05:07 +000011190 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011191 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011192 if (!skb)
11193 return -ENOMEM;
11194
Michael Chanc76949a2005-05-29 14:58:59 -070011195 tx_data = skb_put(skb, tx_len);
11196 memcpy(tx_data, tp->dev->dev_addr, 6);
11197 memset(tx_data + 6, 0x0, 8);
11198
Matt Carlson4852a862011-04-13 11:05:07 +000011199 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011200
Matt Carlsonbb158d62011-04-25 12:42:47 +000011201 if (loopback_mode == TG3_TSO_LOOPBACK) {
11202 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11203
11204 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11205 TG3_TSO_TCP_OPT_LEN;
11206
11207 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11208 sizeof(tg3_tso_header));
11209 mss = TG3_TSO_MSS;
11210
11211 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11212 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11213
11214 /* Set the total length field in the IP header */
11215 iph->tot_len = htons((u16)(mss + hdr_len));
11216
11217 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11218 TXD_FLAG_CPU_POST_DMA);
11219
Joe Perches63c3a662011-04-26 08:12:10 +000011220 if (tg3_flag(tp, HW_TSO_1) ||
11221 tg3_flag(tp, HW_TSO_2) ||
11222 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011223 struct tcphdr *th;
11224 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11225 th = (struct tcphdr *)&tx_data[val];
11226 th->check = 0;
11227 } else
11228 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11229
Joe Perches63c3a662011-04-26 08:12:10 +000011230 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011231 mss |= (hdr_len & 0xc) << 12;
11232 if (hdr_len & 0x10)
11233 base_flags |= 0x00000010;
11234 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011235 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011236 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011237 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011238 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11239 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11240 } else {
11241 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11242 }
11243
11244 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11245 } else {
11246 num_pkts = 1;
11247 data_off = ETH_HLEN;
11248 }
11249
11250 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011251 tx_data[i] = (u8) (i & 0xff);
11252
Alexander Duyckf4188d82009-12-02 16:48:38 +000011253 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11254 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011255 dev_kfree_skb(skb);
11256 return -EIO;
11257 }
Michael Chanc76949a2005-05-29 14:58:59 -070011258
11259 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011260 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011261
11262 udelay(10);
11263
Matt Carlson898a56f2009-08-28 14:02:40 +000011264 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011265
Matt Carlsonbb158d62011-04-25 12:42:47 +000011266 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len,
11267 base_flags, (mss << 1) | 1);
Michael Chanc76949a2005-05-29 14:58:59 -070011268
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011269 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011270
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011271 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11272 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011273
11274 udelay(10);
11275
Matt Carlson303fc922009-11-02 14:27:34 +000011276 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11277 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011278 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011279 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011280
11281 udelay(10);
11282
Matt Carlson898a56f2009-08-28 14:02:40 +000011283 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11284 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011285 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011286 (rx_idx == (rx_start_idx + num_pkts)))
11287 break;
11288 }
11289
Alexander Duyckf4188d82009-12-02 16:48:38 +000011290 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070011291 dev_kfree_skb(skb);
11292
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011293 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011294 goto out;
11295
11296 if (rx_idx != rx_start_idx + num_pkts)
11297 goto out;
11298
Matt Carlsonbb158d62011-04-25 12:42:47 +000011299 val = data_off;
11300 while (rx_idx != rx_start_idx) {
11301 desc = &rnapi->rx_rcb[rx_start_idx++];
11302 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11303 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011304
Matt Carlsonbb158d62011-04-25 12:42:47 +000011305 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11306 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011307 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011308
Matt Carlsonbb158d62011-04-25 12:42:47 +000011309 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11310 - ETH_FCS_LEN;
11311
11312 if (loopback_mode != TG3_TSO_LOOPBACK) {
11313 if (rx_len != tx_len)
11314 goto out;
11315
11316 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11317 if (opaque_key != RXD_OPAQUE_RING_STD)
11318 goto out;
11319 } else {
11320 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11321 goto out;
11322 }
11323 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11324 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
11325 >> RXD_TCPCSUM_SHIFT == 0xffff) {
11326 goto out;
11327 }
11328
11329 if (opaque_key == RXD_OPAQUE_RING_STD) {
11330 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
11331 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11332 mapping);
11333 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
11334 rx_skb = tpr->rx_jmb_buffers[desc_idx].skb;
11335 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11336 mapping);
11337 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011338 goto out;
11339
Matt Carlsonbb158d62011-04-25 12:42:47 +000011340 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11341 PCI_DMA_FROMDEVICE);
11342
11343 for (i = data_off; i < rx_len; i++, val++) {
11344 if (*(rx_skb->data + i) != (u8) (val & 0xff))
11345 goto out;
11346 }
Matt Carlson4852a862011-04-13 11:05:07 +000011347 }
11348
Michael Chanc76949a2005-05-29 14:58:59 -070011349 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011350
Michael Chanc76949a2005-05-29 14:58:59 -070011351 /* tg3_free_rings will unmap and free the rx_skb */
11352out:
11353 return err;
11354}
11355
Matt Carlson00c266b2011-04-25 12:42:46 +000011356#define TG3_STD_LOOPBACK_FAILED 1
11357#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011358#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson00c266b2011-04-25 12:42:46 +000011359
11360#define TG3_MAC_LOOPBACK_SHIFT 0
11361#define TG3_PHY_LOOPBACK_SHIFT 4
Matt Carlsonbb158d62011-04-25 12:42:47 +000011362#define TG3_LOOPBACK_FAILED 0x00000077
Michael Chan9f40dea2005-09-05 17:53:06 -070011363
11364static int tg3_test_loopback(struct tg3 *tp)
11365{
11366 int err = 0;
Matt Carlsonab789042011-01-25 15:58:54 +000011367 u32 eee_cap, cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070011368
11369 if (!netif_running(tp->dev))
11370 return TG3_LOOPBACK_FAILED;
11371
Matt Carlsonab789042011-01-25 15:58:54 +000011372 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11373 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11374
Michael Chanb9ec6c12006-07-25 16:37:27 -070011375 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011376 if (err) {
11377 err = TG3_LOOPBACK_FAILED;
11378 goto done;
11379 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011380
Joe Perches63c3a662011-04-26 08:12:10 +000011381 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011382 int i;
11383
11384 /* Reroute all rx packets to the 1st queue */
11385 for (i = MAC_RSS_INDIR_TBL_0;
11386 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11387 tw32(i, 0x0);
11388 }
11389
Matt Carlson6833c042008-11-21 17:18:59 -080011390 /* Turn off gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011391 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011392 tg3_phy_toggle_apd(tp, false);
11393
Joe Perches63c3a662011-04-26 08:12:10 +000011394 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011395 int i;
11396 u32 status;
11397
11398 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
11399
11400 /* Wait for up to 40 microseconds to acquire lock. */
11401 for (i = 0; i < 4; i++) {
11402 status = tr32(TG3_CPMU_MUTEX_GNT);
11403 if (status == CPMU_MUTEX_GNT_DRIVER)
11404 break;
11405 udelay(10);
11406 }
11407
Matt Carlsonab789042011-01-25 15:58:54 +000011408 if (status != CPMU_MUTEX_GNT_DRIVER) {
11409 err = TG3_LOOPBACK_FAILED;
11410 goto done;
11411 }
Matt Carlson9936bcf2007-10-10 18:03:07 -070011412
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011413 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080011414 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070011415 tw32(TG3_CPMU_CTRL,
11416 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
11417 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070011418 }
11419
Matt Carlson4852a862011-04-13 11:05:07 +000011420 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011421 err |= TG3_STD_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson9936bcf2007-10-10 18:03:07 -070011422
Joe Perches63c3a662011-04-26 08:12:10 +000011423 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011424 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011425 err |= TG3_JMB_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson4852a862011-04-13 11:05:07 +000011426
Joe Perches63c3a662011-04-26 08:12:10 +000011427 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011428 tw32(TG3_CPMU_CTRL, cpmuctrl);
11429
11430 /* Release the mutex */
11431 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
11432 }
11433
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011434 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011435 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson4852a862011-04-13 11:05:07 +000011436 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011437 err |= TG3_STD_LOOPBACK_FAILED <<
11438 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011439 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonbb158d62011-04-25 12:42:47 +000011440 tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_TSO_LOOPBACK))
11441 err |= TG3_TSO_LOOPBACK_FAILED <<
11442 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011443 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011444 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011445 err |= TG3_JMB_LOOPBACK_FAILED <<
11446 TG3_PHY_LOOPBACK_SHIFT;
Michael Chan9f40dea2005-09-05 17:53:06 -070011447 }
11448
Matt Carlson6833c042008-11-21 17:18:59 -080011449 /* Re-enable gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011450 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011451 tg3_phy_toggle_apd(tp, true);
11452
Matt Carlsonab789042011-01-25 15:58:54 +000011453done:
11454 tp->phy_flags |= eee_cap;
11455
Michael Chan9f40dea2005-09-05 17:53:06 -070011456 return err;
11457}
11458
Michael Chan4cafd3f2005-05-29 14:56:34 -070011459static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11460 u64 *data)
11461{
Michael Chan566f86a2005-05-29 14:56:58 -070011462 struct tg3 *tp = netdev_priv(dev);
11463
Matt Carlson80096062010-08-02 11:26:06 +000011464 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011465 tg3_power_up(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011466
Michael Chan566f86a2005-05-29 14:56:58 -070011467 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11468
11469 if (tg3_test_nvram(tp) != 0) {
11470 etest->flags |= ETH_TEST_FL_FAILED;
11471 data[0] = 1;
11472 }
Michael Chanca430072005-05-29 14:57:23 -070011473 if (tg3_test_link(tp) != 0) {
11474 etest->flags |= ETH_TEST_FL_FAILED;
11475 data[1] = 1;
11476 }
Michael Chana71116d2005-05-29 14:58:11 -070011477 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011478 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011479
Michael Chanbbe832c2005-06-24 20:20:04 -070011480 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011481 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011482 tg3_netif_stop(tp);
11483 irq_sync = 1;
11484 }
11485
11486 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011487
11488 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011489 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011490 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011491 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011492 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011493 if (!err)
11494 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011495
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011496 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080011497 tg3_phy_reset(tp);
11498
Michael Chana71116d2005-05-29 14:58:11 -070011499 if (tg3_test_registers(tp) != 0) {
11500 etest->flags |= ETH_TEST_FL_FAILED;
11501 data[2] = 1;
11502 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011503 if (tg3_test_memory(tp) != 0) {
11504 etest->flags |= ETH_TEST_FL_FAILED;
11505 data[3] = 1;
11506 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011507 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011508 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011509
David S. Millerf47c11e2005-06-24 20:18:35 -070011510 tg3_full_unlock(tp);
11511
Michael Chand4bc3922005-05-29 14:59:20 -070011512 if (tg3_test_interrupt(tp) != 0) {
11513 etest->flags |= ETH_TEST_FL_FAILED;
11514 data[5] = 1;
11515 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011516
11517 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011518
Michael Chana71116d2005-05-29 14:58:11 -070011519 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11520 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011521 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011522 err2 = tg3_restart_hw(tp, 1);
11523 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011524 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011525 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011526
11527 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011528
11529 if (irq_sync && !err2)
11530 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011531 }
Matt Carlson80096062010-08-02 11:26:06 +000011532 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011533 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011534
Michael Chan4cafd3f2005-05-29 14:56:34 -070011535}
11536
Linus Torvalds1da177e2005-04-16 15:20:36 -070011537static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11538{
11539 struct mii_ioctl_data *data = if_mii(ifr);
11540 struct tg3 *tp = netdev_priv(dev);
11541 int err;
11542
Joe Perches63c3a662011-04-26 08:12:10 +000011543 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011544 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011545 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011546 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011547 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011548 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011549 }
11550
Matt Carlson33f401a2010-04-05 10:19:27 +000011551 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011552 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011553 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011554
11555 /* fallthru */
11556 case SIOCGMIIREG: {
11557 u32 mii_regval;
11558
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011559 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011560 break; /* We have no PHY */
11561
Matt Carlson34eea5a2011-04-20 07:57:38 +000011562 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011563 return -EAGAIN;
11564
David S. Millerf47c11e2005-06-24 20:18:35 -070011565 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011566 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011567 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011568
11569 data->val_out = mii_regval;
11570
11571 return err;
11572 }
11573
11574 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011575 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011576 break; /* We have no PHY */
11577
Matt Carlson34eea5a2011-04-20 07:57:38 +000011578 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011579 return -EAGAIN;
11580
David S. Millerf47c11e2005-06-24 20:18:35 -070011581 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011582 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011583 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011584
11585 return err;
11586
11587 default:
11588 /* do nothing */
11589 break;
11590 }
11591 return -EOPNOTSUPP;
11592}
11593
David S. Miller15f98502005-05-18 22:49:26 -070011594static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11595{
11596 struct tg3 *tp = netdev_priv(dev);
11597
11598 memcpy(ec, &tp->coal, sizeof(*ec));
11599 return 0;
11600}
11601
Michael Chand244c892005-07-05 14:42:33 -070011602static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11603{
11604 struct tg3 *tp = netdev_priv(dev);
11605 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11606 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11607
Joe Perches63c3a662011-04-26 08:12:10 +000011608 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011609 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11610 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11611 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11612 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11613 }
11614
11615 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11616 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11617 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11618 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11619 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11620 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11621 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11622 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11623 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11624 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11625 return -EINVAL;
11626
11627 /* No rx interrupts will be generated if both are zero */
11628 if ((ec->rx_coalesce_usecs == 0) &&
11629 (ec->rx_max_coalesced_frames == 0))
11630 return -EINVAL;
11631
11632 /* No tx interrupts will be generated if both are zero */
11633 if ((ec->tx_coalesce_usecs == 0) &&
11634 (ec->tx_max_coalesced_frames == 0))
11635 return -EINVAL;
11636
11637 /* Only copy relevant parameters, ignore all others. */
11638 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11639 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11640 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11641 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11642 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11643 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11644 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11645 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11646 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11647
11648 if (netif_running(dev)) {
11649 tg3_full_lock(tp, 0);
11650 __tg3_set_coalesce(tp, &tp->coal);
11651 tg3_full_unlock(tp);
11652 }
11653 return 0;
11654}
11655
Jeff Garzik7282d492006-09-13 14:30:00 -040011656static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011657 .get_settings = tg3_get_settings,
11658 .set_settings = tg3_set_settings,
11659 .get_drvinfo = tg3_get_drvinfo,
11660 .get_regs_len = tg3_get_regs_len,
11661 .get_regs = tg3_get_regs,
11662 .get_wol = tg3_get_wol,
11663 .set_wol = tg3_set_wol,
11664 .get_msglevel = tg3_get_msglevel,
11665 .set_msglevel = tg3_set_msglevel,
11666 .nway_reset = tg3_nway_reset,
11667 .get_link = ethtool_op_get_link,
11668 .get_eeprom_len = tg3_get_eeprom_len,
11669 .get_eeprom = tg3_get_eeprom,
11670 .set_eeprom = tg3_set_eeprom,
11671 .get_ringparam = tg3_get_ringparam,
11672 .set_ringparam = tg3_set_ringparam,
11673 .get_pauseparam = tg3_get_pauseparam,
11674 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011675 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011676 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000011677 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011678 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011679 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011680 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011681 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011682};
11683
11684static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11685{
Michael Chan1b277772006-03-20 22:27:48 -080011686 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011687
11688 tp->nvram_size = EEPROM_CHIP_SIZE;
11689
Matt Carlsone4f34112009-02-25 14:25:00 +000011690 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011691 return;
11692
Michael Chanb16250e2006-09-27 16:10:14 -070011693 if ((magic != TG3_EEPROM_MAGIC) &&
11694 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11695 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011696 return;
11697
11698 /*
11699 * Size the chip by reading offsets at increasing powers of two.
11700 * When we encounter our validation signature, we know the addressing
11701 * has wrapped around, and thus have our chip size.
11702 */
Michael Chan1b277772006-03-20 22:27:48 -080011703 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011704
11705 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011706 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011707 return;
11708
Michael Chan18201802006-03-20 22:29:15 -080011709 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011710 break;
11711
11712 cursize <<= 1;
11713 }
11714
11715 tp->nvram_size = cursize;
11716}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011717
Linus Torvalds1da177e2005-04-16 15:20:36 -070011718static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11719{
11720 u32 val;
11721
Joe Perches63c3a662011-04-26 08:12:10 +000011722 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011723 return;
11724
11725 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011726 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011727 tg3_get_eeprom_size(tp);
11728 return;
11729 }
11730
Matt Carlson6d348f22009-02-25 14:25:52 +000011731 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011732 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011733 /* This is confusing. We want to operate on the
11734 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11735 * call will read from NVRAM and byteswap the data
11736 * according to the byteswapping settings for all
11737 * other register accesses. This ensures the data we
11738 * want will always reside in the lower 16-bits.
11739 * However, the data in NVRAM is in LE format, which
11740 * means the data from the NVRAM read will always be
11741 * opposite the endianness of the CPU. The 16-bit
11742 * byteswap then brings the data to CPU endianness.
11743 */
11744 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011745 return;
11746 }
11747 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011748 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011749}
11750
11751static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11752{
11753 u32 nvcfg1;
11754
11755 nvcfg1 = tr32(NVRAM_CFG1);
11756 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000011757 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011758 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011759 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11760 tw32(NVRAM_CFG1, nvcfg1);
11761 }
11762
Michael Chan4c987482005-09-05 17:52:38 -070011763 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011764 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011765 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011766 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11767 tp->nvram_jedecnum = JEDEC_ATMEL;
11768 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011769 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011770 break;
11771 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11772 tp->nvram_jedecnum = JEDEC_ATMEL;
11773 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11774 break;
11775 case FLASH_VENDOR_ATMEL_EEPROM:
11776 tp->nvram_jedecnum = JEDEC_ATMEL;
11777 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011778 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011779 break;
11780 case FLASH_VENDOR_ST:
11781 tp->nvram_jedecnum = JEDEC_ST;
11782 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011783 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011784 break;
11785 case FLASH_VENDOR_SAIFUN:
11786 tp->nvram_jedecnum = JEDEC_SAIFUN;
11787 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11788 break;
11789 case FLASH_VENDOR_SST_SMALL:
11790 case FLASH_VENDOR_SST_LARGE:
11791 tp->nvram_jedecnum = JEDEC_SST;
11792 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11793 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011794 }
Matt Carlson8590a602009-08-28 12:29:16 +000011795 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011796 tp->nvram_jedecnum = JEDEC_ATMEL;
11797 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011798 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011799 }
11800}
11801
Matt Carlsona1b950d2009-09-01 13:20:17 +000011802static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11803{
11804 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11805 case FLASH_5752PAGE_SIZE_256:
11806 tp->nvram_pagesize = 256;
11807 break;
11808 case FLASH_5752PAGE_SIZE_512:
11809 tp->nvram_pagesize = 512;
11810 break;
11811 case FLASH_5752PAGE_SIZE_1K:
11812 tp->nvram_pagesize = 1024;
11813 break;
11814 case FLASH_5752PAGE_SIZE_2K:
11815 tp->nvram_pagesize = 2048;
11816 break;
11817 case FLASH_5752PAGE_SIZE_4K:
11818 tp->nvram_pagesize = 4096;
11819 break;
11820 case FLASH_5752PAGE_SIZE_264:
11821 tp->nvram_pagesize = 264;
11822 break;
11823 case FLASH_5752PAGE_SIZE_528:
11824 tp->nvram_pagesize = 528;
11825 break;
11826 }
11827}
11828
Michael Chan361b4ac2005-04-21 17:11:21 -070011829static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11830{
11831 u32 nvcfg1;
11832
11833 nvcfg1 = tr32(NVRAM_CFG1);
11834
Michael Chane6af3012005-04-21 17:12:05 -070011835 /* NVRAM protection for TPM */
11836 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000011837 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070011838
Michael Chan361b4ac2005-04-21 17:11:21 -070011839 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011840 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11841 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11842 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011843 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011844 break;
11845 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11846 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011847 tg3_flag_set(tp, NVRAM_BUFFERED);
11848 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011849 break;
11850 case FLASH_5752VENDOR_ST_M45PE10:
11851 case FLASH_5752VENDOR_ST_M45PE20:
11852 case FLASH_5752VENDOR_ST_M45PE40:
11853 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011854 tg3_flag_set(tp, NVRAM_BUFFERED);
11855 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011856 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011857 }
11858
Joe Perches63c3a662011-04-26 08:12:10 +000011859 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011860 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011861 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011862 /* For eeprom, set pagesize to maximum eeprom size */
11863 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11864
11865 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11866 tw32(NVRAM_CFG1, nvcfg1);
11867 }
11868}
11869
Michael Chand3c7b882006-03-23 01:28:25 -080011870static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11871{
Matt Carlson989a9d22007-05-05 11:51:05 -070011872 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011873
11874 nvcfg1 = tr32(NVRAM_CFG1);
11875
11876 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011877 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011878 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070011879 protect = 1;
11880 }
Michael Chand3c7b882006-03-23 01:28:25 -080011881
Matt Carlson989a9d22007-05-05 11:51:05 -070011882 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11883 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011884 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11885 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11886 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11887 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11888 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011889 tg3_flag_set(tp, NVRAM_BUFFERED);
11890 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011891 tp->nvram_pagesize = 264;
11892 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11893 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11894 tp->nvram_size = (protect ? 0x3e200 :
11895 TG3_NVRAM_SIZE_512KB);
11896 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11897 tp->nvram_size = (protect ? 0x1f200 :
11898 TG3_NVRAM_SIZE_256KB);
11899 else
11900 tp->nvram_size = (protect ? 0x1f200 :
11901 TG3_NVRAM_SIZE_128KB);
11902 break;
11903 case FLASH_5752VENDOR_ST_M45PE10:
11904 case FLASH_5752VENDOR_ST_M45PE20:
11905 case FLASH_5752VENDOR_ST_M45PE40:
11906 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011907 tg3_flag_set(tp, NVRAM_BUFFERED);
11908 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011909 tp->nvram_pagesize = 256;
11910 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11911 tp->nvram_size = (protect ?
11912 TG3_NVRAM_SIZE_64KB :
11913 TG3_NVRAM_SIZE_128KB);
11914 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11915 tp->nvram_size = (protect ?
11916 TG3_NVRAM_SIZE_64KB :
11917 TG3_NVRAM_SIZE_256KB);
11918 else
11919 tp->nvram_size = (protect ?
11920 TG3_NVRAM_SIZE_128KB :
11921 TG3_NVRAM_SIZE_512KB);
11922 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011923 }
11924}
11925
Michael Chan1b277772006-03-20 22:27:48 -080011926static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11927{
11928 u32 nvcfg1;
11929
11930 nvcfg1 = tr32(NVRAM_CFG1);
11931
11932 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011933 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11934 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11935 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11936 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11937 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011938 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011939 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011940
Matt Carlson8590a602009-08-28 12:29:16 +000011941 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11942 tw32(NVRAM_CFG1, nvcfg1);
11943 break;
11944 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11945 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11946 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11947 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11948 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011949 tg3_flag_set(tp, NVRAM_BUFFERED);
11950 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011951 tp->nvram_pagesize = 264;
11952 break;
11953 case FLASH_5752VENDOR_ST_M45PE10:
11954 case FLASH_5752VENDOR_ST_M45PE20:
11955 case FLASH_5752VENDOR_ST_M45PE40:
11956 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011957 tg3_flag_set(tp, NVRAM_BUFFERED);
11958 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011959 tp->nvram_pagesize = 256;
11960 break;
Michael Chan1b277772006-03-20 22:27:48 -080011961 }
11962}
11963
Matt Carlson6b91fa02007-10-10 18:01:09 -070011964static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11965{
11966 u32 nvcfg1, protect = 0;
11967
11968 nvcfg1 = tr32(NVRAM_CFG1);
11969
11970 /* NVRAM protection for TPM */
11971 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011972 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011973 protect = 1;
11974 }
11975
11976 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11977 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011978 case FLASH_5761VENDOR_ATMEL_ADB021D:
11979 case FLASH_5761VENDOR_ATMEL_ADB041D:
11980 case FLASH_5761VENDOR_ATMEL_ADB081D:
11981 case FLASH_5761VENDOR_ATMEL_ADB161D:
11982 case FLASH_5761VENDOR_ATMEL_MDB021D:
11983 case FLASH_5761VENDOR_ATMEL_MDB041D:
11984 case FLASH_5761VENDOR_ATMEL_MDB081D:
11985 case FLASH_5761VENDOR_ATMEL_MDB161D:
11986 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011987 tg3_flag_set(tp, NVRAM_BUFFERED);
11988 tg3_flag_set(tp, FLASH);
11989 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000011990 tp->nvram_pagesize = 256;
11991 break;
11992 case FLASH_5761VENDOR_ST_A_M45PE20:
11993 case FLASH_5761VENDOR_ST_A_M45PE40:
11994 case FLASH_5761VENDOR_ST_A_M45PE80:
11995 case FLASH_5761VENDOR_ST_A_M45PE16:
11996 case FLASH_5761VENDOR_ST_M_M45PE20:
11997 case FLASH_5761VENDOR_ST_M_M45PE40:
11998 case FLASH_5761VENDOR_ST_M_M45PE80:
11999 case FLASH_5761VENDOR_ST_M_M45PE16:
12000 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012001 tg3_flag_set(tp, NVRAM_BUFFERED);
12002 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012003 tp->nvram_pagesize = 256;
12004 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012005 }
12006
12007 if (protect) {
12008 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
12009 } else {
12010 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012011 case FLASH_5761VENDOR_ATMEL_ADB161D:
12012 case FLASH_5761VENDOR_ATMEL_MDB161D:
12013 case FLASH_5761VENDOR_ST_A_M45PE16:
12014 case FLASH_5761VENDOR_ST_M_M45PE16:
12015 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
12016 break;
12017 case FLASH_5761VENDOR_ATMEL_ADB081D:
12018 case FLASH_5761VENDOR_ATMEL_MDB081D:
12019 case FLASH_5761VENDOR_ST_A_M45PE80:
12020 case FLASH_5761VENDOR_ST_M_M45PE80:
12021 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12022 break;
12023 case FLASH_5761VENDOR_ATMEL_ADB041D:
12024 case FLASH_5761VENDOR_ATMEL_MDB041D:
12025 case FLASH_5761VENDOR_ST_A_M45PE40:
12026 case FLASH_5761VENDOR_ST_M_M45PE40:
12027 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12028 break;
12029 case FLASH_5761VENDOR_ATMEL_ADB021D:
12030 case FLASH_5761VENDOR_ATMEL_MDB021D:
12031 case FLASH_5761VENDOR_ST_A_M45PE20:
12032 case FLASH_5761VENDOR_ST_M_M45PE20:
12033 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12034 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012035 }
12036 }
12037}
12038
Michael Chanb5d37722006-09-27 16:06:21 -070012039static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
12040{
12041 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012042 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070012043 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12044}
12045
Matt Carlson321d32a2008-11-21 17:22:19 -080012046static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
12047{
12048 u32 nvcfg1;
12049
12050 nvcfg1 = tr32(NVRAM_CFG1);
12051
12052 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12053 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12054 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12055 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012056 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080012057 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12058
12059 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12060 tw32(NVRAM_CFG1, nvcfg1);
12061 return;
12062 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12063 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12064 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12065 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12066 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12067 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12068 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12069 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012070 tg3_flag_set(tp, NVRAM_BUFFERED);
12071 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012072
12073 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12074 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12075 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12076 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12077 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12078 break;
12079 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12080 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12081 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12082 break;
12083 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12084 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12085 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12086 break;
12087 }
12088 break;
12089 case FLASH_5752VENDOR_ST_M45PE10:
12090 case FLASH_5752VENDOR_ST_M45PE20:
12091 case FLASH_5752VENDOR_ST_M45PE40:
12092 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012093 tg3_flag_set(tp, NVRAM_BUFFERED);
12094 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012095
12096 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12097 case FLASH_5752VENDOR_ST_M45PE10:
12098 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12099 break;
12100 case FLASH_5752VENDOR_ST_M45PE20:
12101 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12102 break;
12103 case FLASH_5752VENDOR_ST_M45PE40:
12104 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12105 break;
12106 }
12107 break;
12108 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012109 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012110 return;
12111 }
12112
Matt Carlsona1b950d2009-09-01 13:20:17 +000012113 tg3_nvram_get_pagesize(tp, nvcfg1);
12114 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012115 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012116}
12117
12118
12119static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12120{
12121 u32 nvcfg1;
12122
12123 nvcfg1 = tr32(NVRAM_CFG1);
12124
12125 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12126 case FLASH_5717VENDOR_ATMEL_EEPROM:
12127 case FLASH_5717VENDOR_MICRO_EEPROM:
12128 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012129 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012130 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12131
12132 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12133 tw32(NVRAM_CFG1, nvcfg1);
12134 return;
12135 case FLASH_5717VENDOR_ATMEL_MDB011D:
12136 case FLASH_5717VENDOR_ATMEL_ADB011B:
12137 case FLASH_5717VENDOR_ATMEL_ADB011D:
12138 case FLASH_5717VENDOR_ATMEL_MDB021D:
12139 case FLASH_5717VENDOR_ATMEL_ADB021B:
12140 case FLASH_5717VENDOR_ATMEL_ADB021D:
12141 case FLASH_5717VENDOR_ATMEL_45USPT:
12142 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012143 tg3_flag_set(tp, NVRAM_BUFFERED);
12144 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012145
12146 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12147 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012148 /* Detect size with tg3_nvram_get_size() */
12149 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012150 case FLASH_5717VENDOR_ATMEL_ADB021B:
12151 case FLASH_5717VENDOR_ATMEL_ADB021D:
12152 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12153 break;
12154 default:
12155 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12156 break;
12157 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012158 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012159 case FLASH_5717VENDOR_ST_M_M25PE10:
12160 case FLASH_5717VENDOR_ST_A_M25PE10:
12161 case FLASH_5717VENDOR_ST_M_M45PE10:
12162 case FLASH_5717VENDOR_ST_A_M45PE10:
12163 case FLASH_5717VENDOR_ST_M_M25PE20:
12164 case FLASH_5717VENDOR_ST_A_M25PE20:
12165 case FLASH_5717VENDOR_ST_M_M45PE20:
12166 case FLASH_5717VENDOR_ST_A_M45PE20:
12167 case FLASH_5717VENDOR_ST_25USPT:
12168 case FLASH_5717VENDOR_ST_45USPT:
12169 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012170 tg3_flag_set(tp, NVRAM_BUFFERED);
12171 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012172
12173 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12174 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012175 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012176 /* Detect size with tg3_nvram_get_size() */
12177 break;
12178 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012179 case FLASH_5717VENDOR_ST_A_M45PE20:
12180 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12181 break;
12182 default:
12183 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12184 break;
12185 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012186 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012187 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012188 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012189 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012190 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012191
12192 tg3_nvram_get_pagesize(tp, nvcfg1);
12193 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012194 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012195}
12196
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012197static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12198{
12199 u32 nvcfg1, nvmpinstrp;
12200
12201 nvcfg1 = tr32(NVRAM_CFG1);
12202 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12203
12204 switch (nvmpinstrp) {
12205 case FLASH_5720_EEPROM_HD:
12206 case FLASH_5720_EEPROM_LD:
12207 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012208 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012209
12210 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12211 tw32(NVRAM_CFG1, nvcfg1);
12212 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12213 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12214 else
12215 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12216 return;
12217 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12218 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12219 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12220 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12221 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12222 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12223 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12224 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12225 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12226 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12227 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12228 case FLASH_5720VENDOR_ATMEL_45USPT:
12229 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012230 tg3_flag_set(tp, NVRAM_BUFFERED);
12231 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012232
12233 switch (nvmpinstrp) {
12234 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12235 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12236 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12237 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12238 break;
12239 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12240 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12241 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12242 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12243 break;
12244 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12245 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12246 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12247 break;
12248 default:
12249 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12250 break;
12251 }
12252 break;
12253 case FLASH_5720VENDOR_M_ST_M25PE10:
12254 case FLASH_5720VENDOR_M_ST_M45PE10:
12255 case FLASH_5720VENDOR_A_ST_M25PE10:
12256 case FLASH_5720VENDOR_A_ST_M45PE10:
12257 case FLASH_5720VENDOR_M_ST_M25PE20:
12258 case FLASH_5720VENDOR_M_ST_M45PE20:
12259 case FLASH_5720VENDOR_A_ST_M25PE20:
12260 case FLASH_5720VENDOR_A_ST_M45PE20:
12261 case FLASH_5720VENDOR_M_ST_M25PE40:
12262 case FLASH_5720VENDOR_M_ST_M45PE40:
12263 case FLASH_5720VENDOR_A_ST_M25PE40:
12264 case FLASH_5720VENDOR_A_ST_M45PE40:
12265 case FLASH_5720VENDOR_M_ST_M25PE80:
12266 case FLASH_5720VENDOR_M_ST_M45PE80:
12267 case FLASH_5720VENDOR_A_ST_M25PE80:
12268 case FLASH_5720VENDOR_A_ST_M45PE80:
12269 case FLASH_5720VENDOR_ST_25USPT:
12270 case FLASH_5720VENDOR_ST_45USPT:
12271 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012272 tg3_flag_set(tp, NVRAM_BUFFERED);
12273 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012274
12275 switch (nvmpinstrp) {
12276 case FLASH_5720VENDOR_M_ST_M25PE20:
12277 case FLASH_5720VENDOR_M_ST_M45PE20:
12278 case FLASH_5720VENDOR_A_ST_M25PE20:
12279 case FLASH_5720VENDOR_A_ST_M45PE20:
12280 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12281 break;
12282 case FLASH_5720VENDOR_M_ST_M25PE40:
12283 case FLASH_5720VENDOR_M_ST_M45PE40:
12284 case FLASH_5720VENDOR_A_ST_M25PE40:
12285 case FLASH_5720VENDOR_A_ST_M45PE40:
12286 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12287 break;
12288 case FLASH_5720VENDOR_M_ST_M25PE80:
12289 case FLASH_5720VENDOR_M_ST_M45PE80:
12290 case FLASH_5720VENDOR_A_ST_M25PE80:
12291 case FLASH_5720VENDOR_A_ST_M45PE80:
12292 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12293 break;
12294 default:
12295 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12296 break;
12297 }
12298 break;
12299 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012300 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012301 return;
12302 }
12303
12304 tg3_nvram_get_pagesize(tp, nvcfg1);
12305 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012306 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012307}
12308
Linus Torvalds1da177e2005-04-16 15:20:36 -070012309/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12310static void __devinit tg3_nvram_init(struct tg3 *tp)
12311{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012312 tw32_f(GRC_EEPROM_ADDR,
12313 (EEPROM_ADDR_FSM_RESET |
12314 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12315 EEPROM_ADDR_CLKPERD_SHIFT)));
12316
Michael Chan9d57f012006-12-07 00:23:25 -080012317 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012318
12319 /* Enable seeprom accesses. */
12320 tw32_f(GRC_LOCAL_CTRL,
12321 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12322 udelay(100);
12323
12324 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12325 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012326 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012327
Michael Chanec41c7d2006-01-17 02:40:55 -080012328 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012329 netdev_warn(tp->dev,
12330 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012331 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012332 return;
12333 }
Michael Chane6af3012005-04-21 17:12:05 -070012334 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012335
Matt Carlson989a9d22007-05-05 11:51:05 -070012336 tp->nvram_size = 0;
12337
Michael Chan361b4ac2005-04-21 17:11:21 -070012338 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12339 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012340 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12341 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012342 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012343 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12344 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012345 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012346 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12347 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012348 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12349 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012350 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12351 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080012352 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012353 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12354 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012355 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012356 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12357 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012358 else
12359 tg3_get_nvram_info(tp);
12360
Matt Carlson989a9d22007-05-05 11:51:05 -070012361 if (tp->nvram_size == 0)
12362 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012363
Michael Chane6af3012005-04-21 17:12:05 -070012364 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012365 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012366
12367 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012368 tg3_flag_clear(tp, NVRAM);
12369 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012370
12371 tg3_get_eeprom_size(tp);
12372 }
12373}
12374
Linus Torvalds1da177e2005-04-16 15:20:36 -070012375static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12376 u32 offset, u32 len, u8 *buf)
12377{
12378 int i, j, rc = 0;
12379 u32 val;
12380
12381 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012382 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012383 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012384
12385 addr = offset + i;
12386
12387 memcpy(&data, buf + i, 4);
12388
Matt Carlson62cedd12009-04-20 14:52:29 -070012389 /*
12390 * The SEEPROM interface expects the data to always be opposite
12391 * the native endian format. We accomplish this by reversing
12392 * all the operations that would have been performed on the
12393 * data from a call to tg3_nvram_read_be32().
12394 */
12395 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012396
12397 val = tr32(GRC_EEPROM_ADDR);
12398 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12399
12400 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12401 EEPROM_ADDR_READ);
12402 tw32(GRC_EEPROM_ADDR, val |
12403 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12404 (addr & EEPROM_ADDR_ADDR_MASK) |
12405 EEPROM_ADDR_START |
12406 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012407
Michael Chan9d57f012006-12-07 00:23:25 -080012408 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012409 val = tr32(GRC_EEPROM_ADDR);
12410
12411 if (val & EEPROM_ADDR_COMPLETE)
12412 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012413 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012414 }
12415 if (!(val & EEPROM_ADDR_COMPLETE)) {
12416 rc = -EBUSY;
12417 break;
12418 }
12419 }
12420
12421 return rc;
12422}
12423
12424/* offset and length are dword aligned */
12425static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12426 u8 *buf)
12427{
12428 int ret = 0;
12429 u32 pagesize = tp->nvram_pagesize;
12430 u32 pagemask = pagesize - 1;
12431 u32 nvram_cmd;
12432 u8 *tmp;
12433
12434 tmp = kmalloc(pagesize, GFP_KERNEL);
12435 if (tmp == NULL)
12436 return -ENOMEM;
12437
12438 while (len) {
12439 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012440 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012441
12442 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012443
Linus Torvalds1da177e2005-04-16 15:20:36 -070012444 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012445 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12446 (__be32 *) (tmp + j));
12447 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012448 break;
12449 }
12450 if (ret)
12451 break;
12452
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012453 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012454 size = pagesize;
12455 if (len < size)
12456 size = len;
12457
12458 len -= size;
12459
12460 memcpy(tmp + page_off, buf, size);
12461
12462 offset = offset + (pagesize - page_off);
12463
Michael Chane6af3012005-04-21 17:12:05 -070012464 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012465
12466 /*
12467 * Before we can erase the flash page, we need
12468 * to issue a special "write enable" command.
12469 */
12470 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12471
12472 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12473 break;
12474
12475 /* Erase the target page */
12476 tw32(NVRAM_ADDR, phy_addr);
12477
12478 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12479 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12480
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012481 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012482 break;
12483
12484 /* Issue another write enable to start the write. */
12485 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12486
12487 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12488 break;
12489
12490 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012491 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012492
Al Virob9fc7dc2007-12-17 22:59:57 -080012493 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012494
Al Virob9fc7dc2007-12-17 22:59:57 -080012495 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012496
12497 tw32(NVRAM_ADDR, phy_addr + j);
12498
12499 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12500 NVRAM_CMD_WR;
12501
12502 if (j == 0)
12503 nvram_cmd |= NVRAM_CMD_FIRST;
12504 else if (j == (pagesize - 4))
12505 nvram_cmd |= NVRAM_CMD_LAST;
12506
12507 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12508 break;
12509 }
12510 if (ret)
12511 break;
12512 }
12513
12514 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12515 tg3_nvram_exec_cmd(tp, nvram_cmd);
12516
12517 kfree(tmp);
12518
12519 return ret;
12520}
12521
12522/* offset and length are dword aligned */
12523static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12524 u8 *buf)
12525{
12526 int i, ret = 0;
12527
12528 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012529 u32 page_off, phy_addr, nvram_cmd;
12530 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012531
12532 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012533 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012534
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012535 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012536
Michael Chan18201802006-03-20 22:29:15 -080012537 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012538
12539 tw32(NVRAM_ADDR, phy_addr);
12540
12541 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12542
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012543 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012544 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012545 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012546 nvram_cmd |= NVRAM_CMD_LAST;
12547
12548 if (i == (len - 4))
12549 nvram_cmd |= NVRAM_CMD_LAST;
12550
Matt Carlson321d32a2008-11-21 17:22:19 -080012551 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012552 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012553 (tp->nvram_jedecnum == JEDEC_ST) &&
12554 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012555
12556 if ((ret = tg3_nvram_exec_cmd(tp,
12557 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12558 NVRAM_CMD_DONE)))
12559
12560 break;
12561 }
Joe Perches63c3a662011-04-26 08:12:10 +000012562 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012563 /* We always do complete word writes to eeprom. */
12564 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12565 }
12566
12567 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12568 break;
12569 }
12570 return ret;
12571}
12572
12573/* offset and length are dword aligned */
12574static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12575{
12576 int ret;
12577
Joe Perches63c3a662011-04-26 08:12:10 +000012578 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012579 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12580 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012581 udelay(40);
12582 }
12583
Joe Perches63c3a662011-04-26 08:12:10 +000012584 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012585 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012586 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012587 u32 grc_mode;
12588
Michael Chanec41c7d2006-01-17 02:40:55 -080012589 ret = tg3_nvram_lock(tp);
12590 if (ret)
12591 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012592
Michael Chane6af3012005-04-21 17:12:05 -070012593 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012594 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012595 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012596
12597 grc_mode = tr32(GRC_MODE);
12598 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12599
Joe Perches63c3a662011-04-26 08:12:10 +000012600 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012601 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12602 buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012603 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012604 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12605 buf);
12606 }
12607
12608 grc_mode = tr32(GRC_MODE);
12609 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12610
Michael Chane6af3012005-04-21 17:12:05 -070012611 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012612 tg3_nvram_unlock(tp);
12613 }
12614
Joe Perches63c3a662011-04-26 08:12:10 +000012615 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012616 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012617 udelay(40);
12618 }
12619
12620 return ret;
12621}
12622
12623struct subsys_tbl_ent {
12624 u16 subsys_vendor, subsys_devid;
12625 u32 phy_id;
12626};
12627
Matt Carlson24daf2b2010-02-17 15:17:02 +000012628static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012629 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012630 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012631 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012632 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012633 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012634 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012635 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012636 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12637 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12638 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012639 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012640 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012641 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012642 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12643 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12644 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012645 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012646 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012647 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012648 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012649 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012650 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012651 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012652
12653 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012654 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012655 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012656 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012657 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012658 { TG3PCI_SUBVENDOR_ID_3COM,
12659 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12660 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012661 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012662 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012663 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012664
12665 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012666 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012667 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012668 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012669 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012670 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012671 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012672 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012673 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012674
12675 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012676 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012677 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012678 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012679 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012680 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12681 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12682 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012683 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012684 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012685 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012686
12687 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012688 { TG3PCI_SUBVENDOR_ID_IBM,
12689 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012690};
12691
Matt Carlson24daf2b2010-02-17 15:17:02 +000012692static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012693{
12694 int i;
12695
12696 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12697 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12698 tp->pdev->subsystem_vendor) &&
12699 (subsys_id_to_phy_id[i].subsys_devid ==
12700 tp->pdev->subsystem_device))
12701 return &subsys_id_to_phy_id[i];
12702 }
12703 return NULL;
12704}
12705
Michael Chan7d0c41e2005-04-21 17:06:20 -070012706static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012707{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012708 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080012709 u16 pmcsr;
12710
12711 /* On some early chips the SRAM cannot be accessed in D3hot state,
12712 * so need make sure we're in D0.
12713 */
12714 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
12715 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
12716 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
12717 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012718
12719 /* Make sure register accesses (indirect or otherwise)
12720 * will function correctly.
12721 */
12722 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12723 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012724
David S. Millerf49639e2006-06-09 11:58:36 -070012725 /* The memory arbiter has to be enabled in order for SRAM accesses
12726 * to succeed. Normally on powerup the tg3 chip firmware will make
12727 * sure it is enabled, but other entities such as system netboot
12728 * code might disable it.
12729 */
12730 val = tr32(MEMARB_MODE);
12731 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
12732
Matt Carlson79eb6902010-02-17 15:17:03 +000012733 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012734 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12735
Gary Zambranoa85feb82007-05-05 11:52:19 -070012736 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000012737 tg3_flag_set(tp, EEPROM_WRITE_PROT);
12738 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080012739
Michael Chanb5d37722006-09-27 16:06:21 -070012740 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012741 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012742 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12743 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012744 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012745 val = tr32(VCPU_CFGSHDW);
12746 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000012747 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070012748 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Matt Carlson20232762008-12-21 20:18:56 -080012749 (val & VCPU_CFGSHDW_WOL_MAGPKT))
Joe Perches63c3a662011-04-26 08:12:10 +000012750 tg3_flag_set(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012751 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012752 }
12753
Linus Torvalds1da177e2005-04-16 15:20:36 -070012754 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12755 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12756 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012757 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012758 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012759
12760 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12761 tp->nic_sram_data_cfg = nic_cfg;
12762
12763 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12764 ver >>= NIC_SRAM_DATA_VER_SHIFT;
12765 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
12766 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
12767 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
12768 (ver > 0) && (ver < 0x100))
12769 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12770
Matt Carlsona9daf362008-05-25 23:49:44 -070012771 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12772 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12773
Linus Torvalds1da177e2005-04-16 15:20:36 -070012774 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12775 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12776 eeprom_phy_serdes = 1;
12777
12778 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12779 if (nic_phy_id != 0) {
12780 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12781 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12782
12783 eeprom_phy_id = (id1 >> 16) << 10;
12784 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12785 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12786 } else
12787 eeprom_phy_id = 0;
12788
Michael Chan7d0c41e2005-04-21 17:06:20 -070012789 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012790 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000012791 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012792 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000012793 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012794 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070012795 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012796
Joe Perches63c3a662011-04-26 08:12:10 +000012797 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012798 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12799 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012800 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012801 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12802
12803 switch (led_cfg) {
12804 default:
12805 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12806 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12807 break;
12808
12809 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12810 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12811 break;
12812
12813 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12814 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012815
12816 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12817 * read on some older 5700/5701 bootcode.
12818 */
12819 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12820 ASIC_REV_5700 ||
12821 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12822 ASIC_REV_5701)
12823 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12824
Linus Torvalds1da177e2005-04-16 15:20:36 -070012825 break;
12826
12827 case SHASTA_EXT_LED_SHARED:
12828 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12829 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12830 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12831 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12832 LED_CTRL_MODE_PHY_2);
12833 break;
12834
12835 case SHASTA_EXT_LED_MAC:
12836 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12837 break;
12838
12839 case SHASTA_EXT_LED_COMBO:
12840 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12841 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12842 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12843 LED_CTRL_MODE_PHY_2);
12844 break;
12845
Stephen Hemminger855e1112008-04-16 16:37:28 -070012846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012847
12848 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12849 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12850 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12851 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12852
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012853 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12854 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012855
Michael Chan9d26e212006-12-07 00:21:14 -080012856 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000012857 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012858 if ((tp->pdev->subsystem_vendor ==
12859 PCI_VENDOR_ID_ARIMA) &&
12860 (tp->pdev->subsystem_device == 0x205a ||
12861 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000012862 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012863 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012864 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12865 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012867
12868 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000012869 tg3_flag_set(tp, ENABLE_ASF);
12870 if (tg3_flag(tp, 5750_PLUS))
12871 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012872 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012873
12874 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012875 tg3_flag(tp, 5750_PLUS))
12876 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012877
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012878 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070012879 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000012880 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012881
Joe Perches63c3a662011-04-26 08:12:10 +000012882 if (tg3_flag(tp, WOL_CAP) &&
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012883 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE))
Joe Perches63c3a662011-04-26 08:12:10 +000012884 tg3_flag_set(tp, WOL_ENABLE);
Matt Carlson0527ba32007-10-10 18:03:30 -070012885
Linus Torvalds1da177e2005-04-16 15:20:36 -070012886 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012887 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012888
12889 /* serdes signal pre-emphasis in register 0x590 set by */
12890 /* bootcode if bit 18 is set */
12891 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012892 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012893
Joe Perches63c3a662011-04-26 08:12:10 +000012894 if ((tg3_flag(tp, 57765_PLUS) ||
12895 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12896 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012897 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012898 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080012899
Joe Perches63c3a662011-04-26 08:12:10 +000012900 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000012901 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012902 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070012903 u32 cfg3;
12904
12905 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12906 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000012907 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070012908 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012909
Matt Carlson14417062010-02-17 15:16:59 +000012910 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000012911 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070012912 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012913 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070012914 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012915 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012916 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012917done:
Joe Perches63c3a662011-04-26 08:12:10 +000012918 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012919 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000012920 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012921 else
12922 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012923}
12924
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012925static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12926{
12927 int i;
12928 u32 val;
12929
12930 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12931 tw32(OTP_CTRL, cmd);
12932
12933 /* Wait for up to 1 ms for command to execute. */
12934 for (i = 0; i < 100; i++) {
12935 val = tr32(OTP_STATUS);
12936 if (val & OTP_STATUS_CMD_DONE)
12937 break;
12938 udelay(10);
12939 }
12940
12941 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12942}
12943
12944/* Read the gphy configuration from the OTP region of the chip. The gphy
12945 * configuration is a 32-bit value that straddles the alignment boundary.
12946 * We do two 32-bit reads and then shift and merge the results.
12947 */
12948static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12949{
12950 u32 bhalf_otp, thalf_otp;
12951
12952 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12953
12954 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12955 return 0;
12956
12957 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12958
12959 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12960 return 0;
12961
12962 thalf_otp = tr32(OTP_READ_DATA);
12963
12964 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12965
12966 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12967 return 0;
12968
12969 bhalf_otp = tr32(OTP_READ_DATA);
12970
12971 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12972}
12973
Matt Carlsone256f8a2011-03-09 16:58:24 +000012974static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
12975{
12976 u32 adv = ADVERTISED_Autoneg |
12977 ADVERTISED_Pause;
12978
12979 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
12980 adv |= ADVERTISED_1000baseT_Half |
12981 ADVERTISED_1000baseT_Full;
12982
12983 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
12984 adv |= ADVERTISED_100baseT_Half |
12985 ADVERTISED_100baseT_Full |
12986 ADVERTISED_10baseT_Half |
12987 ADVERTISED_10baseT_Full |
12988 ADVERTISED_TP;
12989 else
12990 adv |= ADVERTISED_FIBRE;
12991
12992 tp->link_config.advertising = adv;
12993 tp->link_config.speed = SPEED_INVALID;
12994 tp->link_config.duplex = DUPLEX_INVALID;
12995 tp->link_config.autoneg = AUTONEG_ENABLE;
12996 tp->link_config.active_speed = SPEED_INVALID;
12997 tp->link_config.active_duplex = DUPLEX_INVALID;
12998 tp->link_config.orig_speed = SPEED_INVALID;
12999 tp->link_config.orig_duplex = DUPLEX_INVALID;
13000 tp->link_config.orig_autoneg = AUTONEG_INVALID;
13001}
13002
Michael Chan7d0c41e2005-04-21 17:06:20 -070013003static int __devinit tg3_phy_probe(struct tg3 *tp)
13004{
13005 u32 hw_phy_id_1, hw_phy_id_2;
13006 u32 hw_phy_id, hw_phy_id_masked;
13007 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013008
Matt Carlsone256f8a2011-03-09 16:58:24 +000013009 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013010 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013011 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13012
Joe Perches63c3a662011-04-26 08:12:10 +000013013 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013014 return tg3_phy_init(tp);
13015
Linus Torvalds1da177e2005-04-16 15:20:36 -070013016 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013017 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013018 */
13019 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013020 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013021 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013022 } else {
13023 /* Now read the physical PHY_ID from the chip and verify
13024 * that it is sane. If it doesn't look good, we fall back
13025 * to either the hard-coded table based PHY_ID and failing
13026 * that the value found in the eeprom area.
13027 */
13028 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13029 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13030
13031 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13032 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13033 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13034
Matt Carlson79eb6902010-02-17 15:17:03 +000013035 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013036 }
13037
Matt Carlson79eb6902010-02-17 15:17:03 +000013038 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013039 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013040 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013041 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013042 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013043 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013044 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013045 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013046 /* Do nothing, phy ID already set up in
13047 * tg3_get_eeprom_hw_cfg().
13048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013049 } else {
13050 struct subsys_tbl_ent *p;
13051
13052 /* No eeprom signature? Try the hardcoded
13053 * subsys device table.
13054 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013055 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013056 if (!p)
13057 return -ENODEV;
13058
13059 tp->phy_id = p->phy_id;
13060 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013061 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013062 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013063 }
13064 }
13065
Matt Carlsona6b68da2010-12-06 08:28:52 +000013066 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
13067 ((tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
13068 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13069 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13070 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013071 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13072
Matt Carlsone256f8a2011-03-09 16:58:24 +000013073 tg3_phy_init_link_config(tp);
13074
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013075 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013076 !tg3_flag(tp, ENABLE_APE) &&
13077 !tg3_flag(tp, ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080013078 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013079
13080 tg3_readphy(tp, MII_BMSR, &bmsr);
13081 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13082 (bmsr & BMSR_LSTATUS))
13083 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013084
Linus Torvalds1da177e2005-04-16 15:20:36 -070013085 err = tg3_phy_reset(tp);
13086 if (err)
13087 return err;
13088
13089 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
13090 ADVERTISE_100HALF | ADVERTISE_100FULL |
13091 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
13092 tg3_ctrl = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013093 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013094 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
13095 MII_TG3_CTRL_ADV_1000_FULL);
13096 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13097 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
13098 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
13099 MII_TG3_CTRL_ENABLE_AS_MASTER);
13100 }
13101
Michael Chan3600d912006-12-07 00:21:48 -080013102 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
13103 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
13104 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
13105 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013106 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
13107
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013108 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013109 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
13110
13111 tg3_writephy(tp, MII_BMCR,
13112 BMCR_ANENABLE | BMCR_ANRESTART);
13113 }
13114 tg3_phy_set_wirespeed(tp);
13115
13116 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013117 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013118 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
13119 }
13120
13121skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013122 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013123 err = tg3_init_5401phy_dsp(tp);
13124 if (err)
13125 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013126
Linus Torvalds1da177e2005-04-16 15:20:36 -070013127 err = tg3_init_5401phy_dsp(tp);
13128 }
13129
Linus Torvalds1da177e2005-04-16 15:20:36 -070013130 return err;
13131}
13132
Matt Carlson184b8902010-04-05 10:19:25 +000013133static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013134{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013135 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013136 unsigned int block_end, rosize, len;
Matt Carlson184b8902010-04-05 10:19:25 +000013137 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013138
Matt Carlsonc3e94502011-04-13 11:05:08 +000013139 vpd_data = (u8 *)tg3_vpd_readblock(tp);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013140 if (!vpd_data)
13141 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013142
Matt Carlson4181b2c2010-02-26 14:04:45 +000013143 i = pci_vpd_find_tag(vpd_data, 0, TG3_NVM_VPD_LEN,
13144 PCI_VPD_LRDT_RO_DATA);
13145 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013146 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013147
13148 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13149 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13150 i += PCI_VPD_LRDT_TAG_SIZE;
13151
13152 if (block_end > TG3_NVM_VPD_LEN)
13153 goto out_not_found;
13154
Matt Carlson184b8902010-04-05 10:19:25 +000013155 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13156 PCI_VPD_RO_KEYWORD_MFR_ID);
13157 if (j > 0) {
13158 len = pci_vpd_info_field_size(&vpd_data[j]);
13159
13160 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13161 if (j + len > block_end || len != 4 ||
13162 memcmp(&vpd_data[j], "1028", 4))
13163 goto partno;
13164
13165 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13166 PCI_VPD_RO_KEYWORD_VENDOR0);
13167 if (j < 0)
13168 goto partno;
13169
13170 len = pci_vpd_info_field_size(&vpd_data[j]);
13171
13172 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13173 if (j + len > block_end)
13174 goto partno;
13175
13176 memcpy(tp->fw_ver, &vpd_data[j], len);
13177 strncat(tp->fw_ver, " bc ", TG3_NVM_VPD_LEN - len - 1);
13178 }
13179
13180partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013181 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13182 PCI_VPD_RO_KEYWORD_PARTNO);
13183 if (i < 0)
13184 goto out_not_found;
13185
13186 len = pci_vpd_info_field_size(&vpd_data[i]);
13187
13188 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13189 if (len > TG3_BPN_SIZE ||
13190 (len + i) > TG3_NVM_VPD_LEN)
13191 goto out_not_found;
13192
13193 memcpy(tp->board_part_number, &vpd_data[i], len);
13194
Linus Torvalds1da177e2005-04-16 15:20:36 -070013195out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013196 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013197 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013198 return;
13199
13200out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013201 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13202 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13203 strcpy(tp->board_part_number, "BCM5717");
13204 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13205 strcpy(tp->board_part_number, "BCM5718");
13206 else
13207 goto nomatch;
13208 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13209 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13210 strcpy(tp->board_part_number, "BCM57780");
13211 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13212 strcpy(tp->board_part_number, "BCM57760");
13213 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13214 strcpy(tp->board_part_number, "BCM57790");
13215 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13216 strcpy(tp->board_part_number, "BCM57788");
13217 else
13218 goto nomatch;
13219 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13220 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13221 strcpy(tp->board_part_number, "BCM57761");
13222 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13223 strcpy(tp->board_part_number, "BCM57765");
13224 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13225 strcpy(tp->board_part_number, "BCM57781");
13226 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13227 strcpy(tp->board_part_number, "BCM57785");
13228 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13229 strcpy(tp->board_part_number, "BCM57791");
13230 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13231 strcpy(tp->board_part_number, "BCM57795");
13232 else
13233 goto nomatch;
13234 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013235 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013236 } else {
13237nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013238 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013240}
13241
Matt Carlson9c8a6202007-10-21 16:16:08 -070013242static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13243{
13244 u32 val;
13245
Matt Carlsone4f34112009-02-25 14:25:00 +000013246 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013247 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013248 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013249 val != 0)
13250 return 0;
13251
13252 return 1;
13253}
13254
Matt Carlsonacd9c112009-02-25 14:26:33 +000013255static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13256{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013257 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013258 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013259 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013260
13261 if (tg3_nvram_read(tp, 0xc, &offset) ||
13262 tg3_nvram_read(tp, 0x4, &start))
13263 return;
13264
13265 offset = tg3_nvram_logical_addr(tp, offset);
13266
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013267 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013268 return;
13269
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013270 if ((val & 0xfc000000) == 0x0c000000) {
13271 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013272 return;
13273
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013274 if (val == 0)
13275 newver = true;
13276 }
13277
Matt Carlson75f99362010-04-05 10:19:24 +000013278 dst_off = strlen(tp->fw_ver);
13279
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013280 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013281 if (TG3_VER_SIZE - dst_off < 16 ||
13282 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013283 return;
13284
13285 offset = offset + ver_offset - start;
13286 for (i = 0; i < 16; i += 4) {
13287 __be32 v;
13288 if (tg3_nvram_read_be32(tp, offset + i, &v))
13289 return;
13290
Matt Carlson75f99362010-04-05 10:19:24 +000013291 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013292 }
13293 } else {
13294 u32 major, minor;
13295
13296 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13297 return;
13298
13299 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13300 TG3_NVM_BCVER_MAJSFT;
13301 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013302 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13303 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013304 }
13305}
13306
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013307static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13308{
13309 u32 val, major, minor;
13310
13311 /* Use native endian representation */
13312 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13313 return;
13314
13315 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13316 TG3_NVM_HWSB_CFG1_MAJSFT;
13317 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13318 TG3_NVM_HWSB_CFG1_MINSFT;
13319
13320 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13321}
13322
Matt Carlsondfe00d72008-11-21 17:19:41 -080013323static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13324{
13325 u32 offset, major, minor, build;
13326
Matt Carlson75f99362010-04-05 10:19:24 +000013327 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013328
13329 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13330 return;
13331
13332 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13333 case TG3_EEPROM_SB_REVISION_0:
13334 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13335 break;
13336 case TG3_EEPROM_SB_REVISION_2:
13337 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13338 break;
13339 case TG3_EEPROM_SB_REVISION_3:
13340 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13341 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013342 case TG3_EEPROM_SB_REVISION_4:
13343 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13344 break;
13345 case TG3_EEPROM_SB_REVISION_5:
13346 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13347 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013348 case TG3_EEPROM_SB_REVISION_6:
13349 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13350 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013351 default:
13352 return;
13353 }
13354
Matt Carlsone4f34112009-02-25 14:25:00 +000013355 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013356 return;
13357
13358 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13359 TG3_EEPROM_SB_EDH_BLD_SHFT;
13360 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13361 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13362 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13363
13364 if (minor > 99 || build > 26)
13365 return;
13366
Matt Carlson75f99362010-04-05 10:19:24 +000013367 offset = strlen(tp->fw_ver);
13368 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13369 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013370
13371 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013372 offset = strlen(tp->fw_ver);
13373 if (offset < TG3_VER_SIZE - 1)
13374 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013375 }
13376}
13377
Matt Carlsonacd9c112009-02-25 14:26:33 +000013378static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013379{
13380 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013381 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013382
13383 for (offset = TG3_NVM_DIR_START;
13384 offset < TG3_NVM_DIR_END;
13385 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013386 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013387 return;
13388
13389 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13390 break;
13391 }
13392
13393 if (offset == TG3_NVM_DIR_END)
13394 return;
13395
Joe Perches63c3a662011-04-26 08:12:10 +000013396 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013397 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013398 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013399 return;
13400
Matt Carlsone4f34112009-02-25 14:25:00 +000013401 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013402 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013403 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013404 return;
13405
13406 offset += val - start;
13407
Matt Carlsonacd9c112009-02-25 14:26:33 +000013408 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013409
Matt Carlsonacd9c112009-02-25 14:26:33 +000013410 tp->fw_ver[vlen++] = ',';
13411 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013412
13413 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013414 __be32 v;
13415 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013416 return;
13417
Al Virob9fc7dc2007-12-17 22:59:57 -080013418 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013419
Matt Carlsonacd9c112009-02-25 14:26:33 +000013420 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13421 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013422 break;
13423 }
13424
Matt Carlsonacd9c112009-02-25 14:26:33 +000013425 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13426 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013427 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013428}
13429
Matt Carlson7fd76442009-02-25 14:27:20 +000013430static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13431{
13432 int vlen;
13433 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013434 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013435
Joe Perches63c3a662011-04-26 08:12:10 +000013436 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013437 return;
13438
13439 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13440 if (apedata != APE_SEG_SIG_MAGIC)
13441 return;
13442
13443 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13444 if (!(apedata & APE_FW_STATUS_READY))
13445 return;
13446
13447 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13448
Matt Carlsondc6d0742010-09-15 08:59:55 +000013449 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013450 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013451 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013452 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013453 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013454 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013455
Matt Carlson7fd76442009-02-25 14:27:20 +000013456 vlen = strlen(tp->fw_ver);
13457
Matt Carlsonecc79642010-08-02 11:26:01 +000013458 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13459 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013460 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13461 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13462 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13463 (apedata & APE_FW_VERSION_BLDMSK));
13464}
13465
Matt Carlsonacd9c112009-02-25 14:26:33 +000013466static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13467{
13468 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013469 bool vpd_vers = false;
13470
13471 if (tp->fw_ver[0] != 0)
13472 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013473
Joe Perches63c3a662011-04-26 08:12:10 +000013474 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013475 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013476 return;
13477 }
13478
Matt Carlsonacd9c112009-02-25 14:26:33 +000013479 if (tg3_nvram_read(tp, 0, &val))
13480 return;
13481
13482 if (val == TG3_EEPROM_MAGIC)
13483 tg3_read_bc_ver(tp);
13484 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13485 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013486 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13487 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013488 else
13489 return;
13490
Joe Perches63c3a662011-04-26 08:12:10 +000013491 if (!tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013492 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013493
13494 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013495
Matt Carlson75f99362010-04-05 10:19:24 +000013496done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013497 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013498}
13499
Michael Chan7544b092007-05-05 13:08:32 -070013500static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13501
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013502static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13503{
Joe Perches63c3a662011-04-26 08:12:10 +000013504 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013505 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013506 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013507 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013508 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013509 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013510}
13511
Matt Carlson41434702011-03-09 16:58:22 +000013512static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013513 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13514 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13515 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13516 { },
13517};
13518
Linus Torvalds1da177e2005-04-16 15:20:36 -070013519static int __devinit tg3_get_invariants(struct tg3 *tp)
13520{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013521 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013522 u32 pci_state_reg, grc_misc_cfg;
13523 u32 val;
13524 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013525 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013526
Linus Torvalds1da177e2005-04-16 15:20:36 -070013527 /* Force memory write invalidate off. If we leave it on,
13528 * then on 5700_BX chips we have to enable a workaround.
13529 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13530 * to match the cacheline size. The Broadcom driver have this
13531 * workaround but turns MWI off all the times so never uses
13532 * it. This seems to suggest that the workaround is insufficient.
13533 */
13534 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13535 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13536 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13537
13538 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
13539 * has the register indirect write enable bit set before
13540 * we try to access any of the MMIO registers. It is also
13541 * critical that the PCI-X hw workaround situation is decided
13542 * before that as well.
13543 */
13544 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13545 &misc_ctrl_reg);
13546
13547 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13548 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013549 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13550 u32 prod_id_asic_rev;
13551
Matt Carlson5001e2f2009-11-13 13:03:51 +000013552 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13553 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013554 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13555 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013556 pci_read_config_dword(tp->pdev,
13557 TG3PCI_GEN2_PRODID_ASICREV,
13558 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013559 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13560 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13561 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13562 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13563 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13564 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13565 pci_read_config_dword(tp->pdev,
13566 TG3PCI_GEN15_PRODID_ASICREV,
13567 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013568 else
13569 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13570 &prod_id_asic_rev);
13571
Matt Carlson321d32a2008-11-21 17:22:19 -080013572 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013574
Michael Chanff645be2005-04-21 17:09:53 -070013575 /* Wrong chip ID in 5752 A0. This code can be removed later
13576 * as A0 is not in production.
13577 */
13578 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13579 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13580
Michael Chan68929142005-08-09 20:17:14 -070013581 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13582 * we need to disable memory and use config. cycles
13583 * only to access all registers. The 5702/03 chips
13584 * can mistakenly decode the special cycles from the
13585 * ICH chipsets as memory write cycles, causing corruption
13586 * of register and memory space. Only certain ICH bridges
13587 * will drive special cycles with non-zero data during the
13588 * address phase which can fall within the 5703's address
13589 * range. This is not an ICH bug as the PCI spec allows
13590 * non-zero address during special cycles. However, only
13591 * these ICH bridges are known to drive non-zero addresses
13592 * during special cycles.
13593 *
13594 * Since special cycles do not cross PCI bridges, we only
13595 * enable this workaround if the 5703 is on the secondary
13596 * bus of these ICH bridges.
13597 */
13598 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13599 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13600 static struct tg3_dev_id {
13601 u32 vendor;
13602 u32 device;
13603 u32 rev;
13604 } ich_chipsets[] = {
13605 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13606 PCI_ANY_ID },
13607 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13608 PCI_ANY_ID },
13609 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13610 0xa },
13611 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13612 PCI_ANY_ID },
13613 { },
13614 };
13615 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13616 struct pci_dev *bridge = NULL;
13617
13618 while (pci_id->vendor != 0) {
13619 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13620 bridge);
13621 if (!bridge) {
13622 pci_id++;
13623 continue;
13624 }
13625 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013626 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013627 continue;
13628 }
13629 if (bridge->subordinate &&
13630 (bridge->subordinate->number ==
13631 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013632 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013633 pci_dev_put(bridge);
13634 break;
13635 }
13636 }
13637 }
13638
Matt Carlson41588ba2008-04-19 18:12:33 -070013639 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
13640 static struct tg3_dev_id {
13641 u32 vendor;
13642 u32 device;
13643 } bridge_chipsets[] = {
13644 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13645 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13646 { },
13647 };
13648 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13649 struct pci_dev *bridge = NULL;
13650
13651 while (pci_id->vendor != 0) {
13652 bridge = pci_get_device(pci_id->vendor,
13653 pci_id->device,
13654 bridge);
13655 if (!bridge) {
13656 pci_id++;
13657 continue;
13658 }
13659 if (bridge->subordinate &&
13660 (bridge->subordinate->number <=
13661 tp->pdev->bus->number) &&
13662 (bridge->subordinate->subordinate >=
13663 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013664 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070013665 pci_dev_put(bridge);
13666 break;
13667 }
13668 }
13669 }
13670
Michael Chan4a29cc22006-03-19 13:21:12 -080013671 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13672 * DMA addresses > 40-bit. This bridge may have other additional
13673 * 57xx devices behind it in some 4-port NIC designs for example.
13674 * Any tg3 device found behind the bridge will also need the 40-bit
13675 * DMA workaround.
13676 */
Michael Chana4e2b342005-10-26 15:46:52 -070013677 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13678 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000013679 tg3_flag_set(tp, 5780_CLASS);
13680 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070013681 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000013682 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080013683 struct pci_dev *bridge = NULL;
13684
13685 do {
13686 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13687 PCI_DEVICE_ID_SERVERWORKS_EPB,
13688 bridge);
13689 if (bridge && bridge->subordinate &&
13690 (bridge->subordinate->number <=
13691 tp->pdev->bus->number) &&
13692 (bridge->subordinate->subordinate >=
13693 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013694 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080013695 pci_dev_put(bridge);
13696 break;
13697 }
13698 } while (bridge);
13699 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013700
Linus Torvalds1da177e2005-04-16 15:20:36 -070013701 /* Initialize misc host control in PCI block. */
13702 tp->misc_host_ctrl |= (misc_ctrl_reg &
13703 MISC_HOST_CTRL_CHIPREV);
13704 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13705 tp->misc_host_ctrl);
13706
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013707 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
13708 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013709 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13710 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Michael Chan7544b092007-05-05 13:08:32 -070013711 tp->pdev_peer = tg3_find_peer(tp);
13712
Matt Carlsonc885e822010-08-02 11:25:57 +000013713 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013714 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13715 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000013716 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000013717
13718 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013719 tg3_flag(tp, 5717_PLUS))
13720 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000013721
Matt Carlson321d32a2008-11-21 17:22:19 -080013722 /* Intentionally exclude ASIC_REV_5906 */
13723 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad12006-03-20 22:27:35 -080013724 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013725 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013726 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013727 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013728 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013729 tg3_flag(tp, 57765_PLUS))
13730 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013731
13732 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13733 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013734 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013735 tg3_flag(tp, 5755_PLUS) ||
13736 tg3_flag(tp, 5780_CLASS))
13737 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070013738
John W. Linville1b440c562005-04-21 17:03:18 -070013739 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
Joe Perches63c3a662011-04-26 08:12:10 +000013740 tg3_flag(tp, 5750_PLUS))
13741 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070013742
Matt Carlson027455a2008-12-21 20:19:30 -080013743 /* 5700 B0 chips do not support checksumming correctly due
13744 * to hardware bugs.
13745 */
Michał Mirosławdc668912011-04-07 03:35:07 +000013746 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
13747 u32 features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
Eric Dumazet7fe876a2010-07-08 06:14:55 +000013748
Joe Perches63c3a662011-04-26 08:12:10 +000013749 if (tg3_flag(tp, 5755_PLUS))
Eric Dumazet7fe876a2010-07-08 06:14:55 +000013750 features |= NETIF_F_IPV6_CSUM;
13751 tp->dev->features |= features;
Michał Mirosławdc668912011-04-07 03:35:07 +000013752 tp->dev->hw_features |= features;
13753 tp->dev->vlan_features |= features;
Matt Carlson027455a2008-12-21 20:19:30 -080013754 }
13755
Matt Carlson507399f2009-11-13 13:03:37 +000013756 /* Determine TSO capabilities */
Matt Carlson2866d952011-02-10 20:06:46 -080013757 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlson4d163b72011-01-25 15:58:48 +000013758 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000013759 else if (tg3_flag(tp, 57765_PLUS))
13760 tg3_flag_set(tp, HW_TSO_3);
13761 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000013762 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013763 tg3_flag_set(tp, HW_TSO_2);
13764 else if (tg3_flag(tp, 5750_PLUS)) {
13765 tg3_flag_set(tp, HW_TSO_1);
13766 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013767 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13768 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000013769 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013770 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13771 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13772 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013773 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013774 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13775 tp->fw_needed = FIRMWARE_TG3TSO5;
13776 else
13777 tp->fw_needed = FIRMWARE_TG3TSO;
13778 }
13779
13780 tp->irq_max = 1;
13781
Joe Perches63c3a662011-04-26 08:12:10 +000013782 if (tg3_flag(tp, 5750_PLUS)) {
13783 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013784 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13785 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13786 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13787 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13788 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000013789 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013790
Joe Perches63c3a662011-04-26 08:12:10 +000013791 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013792 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013793 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070013794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013795
Joe Perches63c3a662011-04-26 08:12:10 +000013796 if (tg3_flag(tp, 57765_PLUS)) {
13797 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000013798 tp->irq_max = TG3_IRQ_MAX_VECS;
13799 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013800 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013801
Matt Carlson615774f2009-11-13 13:03:39 +000013802 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsona50d0792010-06-05 17:24:37 +000013803 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson615774f2009-11-13 13:03:39 +000013804 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013805 tg3_flag_set(tp, SHORT_DMA_BUG);
13806 else if (!tg3_flag(tp, 5755_PLUS)) {
13807 tg3_flag_set(tp, 4G_DMA_BNDRY_BUG);
13808 tg3_flag_set(tp, 40BIT_DMA_LIMIT_BUG);
Matt Carlson0e1406d2009-11-02 12:33:33 +000013809 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013810
Joe Perches63c3a662011-04-26 08:12:10 +000013811 if (tg3_flag(tp, 5717_PLUS))
13812 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000013813
Joe Perches63c3a662011-04-26 08:12:10 +000013814 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlson2866d952011-02-10 20:06:46 -080013815 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5719)
Joe Perches63c3a662011-04-26 08:12:10 +000013816 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000013817
Joe Perches63c3a662011-04-26 08:12:10 +000013818 if (!tg3_flag(tp, 5705_PLUS) ||
13819 tg3_flag(tp, 5780_CLASS) ||
13820 tg3_flag(tp, USE_JUMBO_BDFLAG))
13821 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070013822
Matt Carlson52f44902008-11-21 17:17:04 -080013823 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13824 &pci_state_reg);
13825
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013826 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
13827 if (tp->pcie_cap != 0) {
13828 u16 lnkctl;
13829
Joe Perches63c3a662011-04-26 08:12:10 +000013830 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013831
Matt Carlsoncf790032010-11-24 08:31:48 +000013832 tp->pcie_readrq = 4096;
Matt Carlsond78b59f2011-04-05 14:22:46 +000013833 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13834 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Matt Carlsonb4495ed2011-01-25 15:58:47 +000013835 tp->pcie_readrq = 2048;
Matt Carlsoncf790032010-11-24 08:31:48 +000013836
13837 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013838
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013839 pci_read_config_word(tp->pdev,
13840 tp->pcie_cap + PCI_EXP_LNKCTL,
13841 &lnkctl);
13842 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
13843 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013844 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013845 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013846 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013847 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13848 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000013849 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000013850 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013851 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080013852 }
Matt Carlson52f44902008-11-21 17:17:04 -080013853 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +000013854 tg3_flag_set(tp, PCI_EXPRESS);
13855 } else if (!tg3_flag(tp, 5705_PLUS) ||
13856 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080013857 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13858 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000013859 dev_err(&tp->pdev->dev,
13860 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013861 return -EIO;
13862 }
13863
13864 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000013865 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080013866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013867
Michael Chan399de502005-10-03 14:02:39 -070013868 /* If we have an AMD 762 or VIA K8T800 chipset, write
13869 * reordering to the mailbox registers done by the host
13870 * controller can cause major troubles. We read back from
13871 * every mailbox register write to force the writes to be
13872 * posted to the chip in order.
13873 */
Matt Carlson41434702011-03-09 16:58:22 +000013874 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013875 !tg3_flag(tp, PCI_EXPRESS))
13876 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070013877
Matt Carlson69fc4052008-12-21 20:19:57 -080013878 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13879 &tp->pci_cacheline_sz);
13880 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13881 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013882 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13883 tp->pci_lat_timer < 64) {
13884 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013885 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13886 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013887 }
13888
Matt Carlson52f44902008-11-21 17:17:04 -080013889 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13890 /* 5700 BX chips need to have their TX producer index
13891 * mailboxes written twice to workaround a bug.
13892 */
Joe Perches63c3a662011-04-26 08:12:10 +000013893 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070013894
Matt Carlson52f44902008-11-21 17:17:04 -080013895 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013896 *
13897 * The workaround is to use indirect register accesses
13898 * for all chip writes not to mailbox registers.
13899 */
Joe Perches63c3a662011-04-26 08:12:10 +000013900 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013901 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013902
Joe Perches63c3a662011-04-26 08:12:10 +000013903 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013904
13905 /* The chip can have it's power management PCI config
13906 * space registers clobbered due to this bug.
13907 * So explicitly force the chip into D0 here.
13908 */
Matt Carlson9974a352007-10-07 23:27:28 -070013909 pci_read_config_dword(tp->pdev,
13910 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013911 &pm_reg);
13912 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13913 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013914 pci_write_config_dword(tp->pdev,
13915 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013916 pm_reg);
13917
13918 /* Also, force SERR#/PERR# in PCI command. */
13919 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13920 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13921 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13922 }
13923 }
13924
Linus Torvalds1da177e2005-04-16 15:20:36 -070013925 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013926 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013927 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013928 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013929
13930 /* Chip-specific fixup from Broadcom driver */
13931 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13932 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13933 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13934 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13935 }
13936
Michael Chan1ee582d2005-08-09 20:16:46 -070013937 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013938 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013939 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013940 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013941 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013942 tp->write32_tx_mbox = tg3_write32;
13943 tp->write32_rx_mbox = tg3_write32;
13944
13945 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000013946 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070013947 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013948 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013949 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070013950 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13951 /*
13952 * Back to back register writes can cause problems on these
13953 * chips, the workaround is to read back all reg writes
13954 * except those to mailbox regs.
13955 *
13956 * See tg3_write_indirect_reg32().
13957 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013958 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013959 }
13960
Joe Perches63c3a662011-04-26 08:12:10 +000013961 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070013962 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000013963 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070013964 tp->write32_rx_mbox = tg3_write_flush_reg32;
13965 }
Michael Chan20094932005-08-09 20:16:32 -070013966
Joe Perches63c3a662011-04-26 08:12:10 +000013967 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070013968 tp->read32 = tg3_read_indirect_reg32;
13969 tp->write32 = tg3_write_indirect_reg32;
13970 tp->read32_mbox = tg3_read_indirect_mbox;
13971 tp->write32_mbox = tg3_write_indirect_mbox;
13972 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13973 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13974
13975 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013976 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013977
13978 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13979 pci_cmd &= ~PCI_COMMAND_MEMORY;
13980 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13981 }
Michael Chanb5d37722006-09-27 16:06:21 -070013982 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13983 tp->read32_mbox = tg3_read32_mbox_5906;
13984 tp->write32_mbox = tg3_write32_mbox_5906;
13985 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13986 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13987 }
Michael Chan68929142005-08-09 20:17:14 -070013988
Michael Chanbbadf502006-04-06 21:46:34 -070013989 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013990 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070013991 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013992 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000013993 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070013994
Michael Chan7d0c41e2005-04-21 17:06:20 -070013995 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000013996 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013997 * determined before calling tg3_set_power_state() so that
13998 * we know whether or not to switch out of Vaux power.
13999 * When the flag is set, it means that GPIO1 is used for eeprom
14000 * write protect and also implies that it is a LOM where GPIOs
14001 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014002 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014003 tg3_get_eeprom_hw_cfg(tp);
14004
Joe Perches63c3a662011-04-26 08:12:10 +000014005 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014006 /* Allow reads and writes to the
14007 * APE register and memory space.
14008 */
14009 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000014010 PCISTATE_ALLOW_APE_SHMEM_WR |
14011 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014012 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14013 pci_state_reg);
14014 }
14015
Matt Carlson9936bcf2007-10-10 18:03:07 -070014016 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014017 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014018 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014019 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014020 tg3_flag(tp, 57765_PLUS))
14021 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070014022
Matt Carlsonbea8a632011-04-25 12:42:49 +000014023 /* Set up tp->grc_local_ctrl before calling tg3_power_up().
Michael Chan314fba32005-04-21 17:07:04 -070014024 * GPIO1 driven high will bring 5700's external PHY out of reset.
14025 * It is also used as eeprom write protect on LOMs.
14026 */
14027 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
14028 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
Joe Perches63c3a662011-04-26 08:12:10 +000014029 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014030 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14031 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014032 /* Unused GPIO3 must be driven as output on 5752 because there
14033 * are no pull-up resistors on unused GPIO pins.
14034 */
14035 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14036 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014037
Matt Carlson321d32a2008-11-21 17:22:19 -080014038 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014039 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14040 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080014041 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14042
Matt Carlson8d519ab2009-04-20 06:58:01 +000014043 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14044 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014045 /* Turn off the debug UART. */
14046 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014047 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014048 /* Keep VMain power. */
14049 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14050 GRC_LCLCTRL_GPIO_OUTPUT0;
14051 }
14052
Linus Torvalds1da177e2005-04-16 15:20:36 -070014053 /* Force the chip into D0. */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000014054 err = tg3_power_up(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014055 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014056 dev_err(&tp->pdev->dev, "Transition to D0 failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014057 return err;
14058 }
14059
Linus Torvalds1da177e2005-04-16 15:20:36 -070014060 /* Derive initial jumbo mode from MTU assigned in
14061 * ether_setup() via the alloc_etherdev() call
14062 */
Joe Perches63c3a662011-04-26 08:12:10 +000014063 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14064 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014065
14066 /* Determine WakeOnLan speed to use. */
14067 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14068 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14069 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14070 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014071 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014072 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014073 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014074 }
14075
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014076 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014077 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014078
Linus Torvalds1da177e2005-04-16 15:20:36 -070014079 /* A few boards don't want Ethernet@WireSpeed phy feature */
14080 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
14081 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
14082 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014083 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014084 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14085 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14086 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014087
14088 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14089 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014090 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014091 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014092 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014093
Joe Perches63c3a662011-04-26 08:12:10 +000014094 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014095 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014096 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014097 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014098 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014099 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014100 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014101 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14102 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014103 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14104 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014105 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014106 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014107 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014108 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014109 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014111
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014112 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14113 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14114 tp->phy_otp = tg3_read_otp_phycfg(tp);
14115 if (tp->phy_otp == 0)
14116 tp->phy_otp = TG3_OTP_DEFAULT;
14117 }
14118
Joe Perches63c3a662011-04-26 08:12:10 +000014119 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014120 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14121 else
14122 tp->mi_mode = MAC_MI_MODE_BASE;
14123
Linus Torvalds1da177e2005-04-16 15:20:36 -070014124 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014125 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14126 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14127 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14128
Matt Carlson4d958472011-04-20 07:57:35 +000014129 /* Set these bits to enable statistics workaround. */
14130 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14131 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14132 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14133 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14134 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14135 }
14136
Matt Carlson321d32a2008-11-21 17:22:19 -080014137 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14138 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014139 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014140
Matt Carlson158d7ab2008-05-29 01:37:54 -070014141 err = tg3_mdio_init(tp);
14142 if (err)
14143 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014144
14145 /* Initialize data/descriptor byte/word swapping. */
14146 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014147 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14148 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14149 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14150 GRC_MODE_B2HRX_ENABLE |
14151 GRC_MODE_HTX2B_ENABLE |
14152 GRC_MODE_HOST_STACKUP);
14153 else
14154 val &= GRC_MODE_HOST_STACKUP;
14155
Linus Torvalds1da177e2005-04-16 15:20:36 -070014156 tw32(GRC_MODE, val | tp->grc_mode);
14157
14158 tg3_switch_clocks(tp);
14159
14160 /* Clear this out for sanity. */
14161 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14162
14163 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14164 &pci_state_reg);
14165 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014166 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014167 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14168
14169 if (chiprevid == CHIPREV_ID_5701_A0 ||
14170 chiprevid == CHIPREV_ID_5701_B0 ||
14171 chiprevid == CHIPREV_ID_5701_B2 ||
14172 chiprevid == CHIPREV_ID_5701_B5) {
14173 void __iomem *sram_base;
14174
14175 /* Write some dummy words into the SRAM status block
14176 * area, see if it reads back correctly. If the return
14177 * value is bad, force enable the PCIX workaround.
14178 */
14179 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14180
14181 writel(0x00000000, sram_base);
14182 writel(0x00000000, sram_base + 4);
14183 writel(0xffffffff, sram_base + 4);
14184 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014185 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014186 }
14187 }
14188
14189 udelay(50);
14190 tg3_nvram_init(tp);
14191
14192 grc_misc_cfg = tr32(GRC_MISC_CFG);
14193 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14194
Linus Torvalds1da177e2005-04-16 15:20:36 -070014195 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14196 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14197 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014198 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014199
Joe Perches63c3a662011-04-26 08:12:10 +000014200 if (!tg3_flag(tp, IS_5788) &&
David S. Millerfac9b832005-05-18 22:46:34 -070014201 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
Joe Perches63c3a662011-04-26 08:12:10 +000014202 tg3_flag_set(tp, TAGGED_STATUS);
14203 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014204 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14205 HOSTCC_MODE_CLRTICK_TXBD);
14206
14207 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14208 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14209 tp->misc_host_ctrl);
14210 }
14211
Matt Carlson3bda1252008-08-15 14:08:22 -070014212 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014213 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014214 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014215 else
14216 tp->mac_mode = TG3_DEF_MAC_MODE;
14217
Linus Torvalds1da177e2005-04-16 15:20:36 -070014218 /* these are limited to 10/100 only */
14219 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14220 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14221 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14222 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14223 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14224 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14225 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14226 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14227 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014228 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14229 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014230 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014231 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14232 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014233 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14234 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014235
14236 err = tg3_phy_probe(tp);
14237 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014238 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014239 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014240 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014241 }
14242
Matt Carlson184b8902010-04-05 10:19:25 +000014243 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014244 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014245
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014246 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14247 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014248 } else {
14249 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014250 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014251 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014252 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014253 }
14254
14255 /* 5700 {AX,BX} chips have a broken status block link
14256 * change bit implementation, so we must use the
14257 * status register in those cases.
14258 */
14259 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014260 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014261 else
Joe Perches63c3a662011-04-26 08:12:10 +000014262 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014263
14264 /* The led_ctrl is set during tg3_phy_probe, here we might
14265 * have to force the link status polling mechanism based
14266 * upon subsystem IDs.
14267 */
14268 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014269 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014270 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14271 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014272 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014273 }
14274
14275 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014276 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014277 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014278 else
Joe Perches63c3a662011-04-26 08:12:10 +000014279 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014280
Matt Carlsonbf933c82011-01-25 15:58:49 +000014281 tp->rx_offset = NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014282 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014283 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014284 tg3_flag(tp, PCIX_MODE)) {
Matt Carlsonbf933c82011-01-25 15:58:49 +000014285 tp->rx_offset = 0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014286#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014287 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014288#endif
14289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014290
Matt Carlson2c49a442010-09-30 10:34:35 +000014291 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14292 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014293 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14294
Matt Carlson2c49a442010-09-30 10:34:35 +000014295 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014296
14297 /* Increment the rx prod index on the rx std ring by at most
14298 * 8 for these chips to workaround hw errata.
14299 */
14300 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14301 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14302 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14303 tp->rx_std_max_post = 8;
14304
Joe Perches63c3a662011-04-26 08:12:10 +000014305 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014306 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14307 PCIE_PWR_MGMT_L1_THRESH_MSK;
14308
Linus Torvalds1da177e2005-04-16 15:20:36 -070014309 return err;
14310}
14311
David S. Miller49b6e95f2007-03-29 01:38:42 -070014312#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014313static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14314{
14315 struct net_device *dev = tp->dev;
14316 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014317 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014318 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014319 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014320
David S. Miller49b6e95f2007-03-29 01:38:42 -070014321 addr = of_get_property(dp, "local-mac-address", &len);
14322 if (addr && len == 6) {
14323 memcpy(dev->dev_addr, addr, 6);
14324 memcpy(dev->perm_addr, dev->dev_addr, 6);
14325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014326 }
14327 return -ENODEV;
14328}
14329
14330static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14331{
14332 struct net_device *dev = tp->dev;
14333
14334 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014335 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014336 return 0;
14337}
14338#endif
14339
14340static int __devinit tg3_get_device_address(struct tg3 *tp)
14341{
14342 struct net_device *dev = tp->dev;
14343 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014344 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014345
David S. Miller49b6e95f2007-03-29 01:38:42 -070014346#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014347 if (!tg3_get_macaddr_sparc(tp))
14348 return 0;
14349#endif
14350
14351 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070014352 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Joe Perches63c3a662011-04-26 08:12:10 +000014353 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014354 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14355 mac_offset = 0xcc;
14356 if (tg3_nvram_lock(tp))
14357 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14358 else
14359 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014360 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlsona50d0792010-06-05 17:24:37 +000014361 if (PCI_FUNC(tp->pdev->devfn) & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014362 mac_offset = 0xcc;
Matt Carlsona50d0792010-06-05 17:24:37 +000014363 if (PCI_FUNC(tp->pdev->devfn) > 1)
14364 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014365 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014366 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014367
14368 /* First try to get it from MAC address mailbox. */
14369 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14370 if ((hi >> 16) == 0x484b) {
14371 dev->dev_addr[0] = (hi >> 8) & 0xff;
14372 dev->dev_addr[1] = (hi >> 0) & 0xff;
14373
14374 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14375 dev->dev_addr[2] = (lo >> 24) & 0xff;
14376 dev->dev_addr[3] = (lo >> 16) & 0xff;
14377 dev->dev_addr[4] = (lo >> 8) & 0xff;
14378 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014379
Michael Chan008652b2006-03-27 23:14:53 -080014380 /* Some old bootcode may report a 0 MAC address in SRAM */
14381 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14382 }
14383 if (!addr_ok) {
14384 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014385 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014386 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014387 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014388 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14389 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014390 }
14391 /* Finally just fetch it out of the MAC control regs. */
14392 else {
14393 hi = tr32(MAC_ADDR_0_HIGH);
14394 lo = tr32(MAC_ADDR_0_LOW);
14395
14396 dev->dev_addr[5] = lo & 0xff;
14397 dev->dev_addr[4] = (lo >> 8) & 0xff;
14398 dev->dev_addr[3] = (lo >> 16) & 0xff;
14399 dev->dev_addr[2] = (lo >> 24) & 0xff;
14400 dev->dev_addr[1] = hi & 0xff;
14401 dev->dev_addr[0] = (hi >> 8) & 0xff;
14402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014403 }
14404
14405 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014406#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014407 if (!tg3_get_default_macaddr_sparc(tp))
14408 return 0;
14409#endif
14410 return -EINVAL;
14411 }
John W. Linville2ff43692005-09-12 14:44:20 -070014412 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014413 return 0;
14414}
14415
David S. Miller59e6b432005-05-18 22:50:10 -070014416#define BOUNDARY_SINGLE_CACHELINE 1
14417#define BOUNDARY_MULTI_CACHELINE 2
14418
14419static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14420{
14421 int cacheline_size;
14422 u8 byte;
14423 int goal;
14424
14425 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14426 if (byte == 0)
14427 cacheline_size = 1024;
14428 else
14429 cacheline_size = (int) byte * 4;
14430
14431 /* On 5703 and later chips, the boundary bits have no
14432 * effect.
14433 */
14434 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14435 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014436 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014437 goto out;
14438
14439#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14440 goal = BOUNDARY_MULTI_CACHELINE;
14441#else
14442#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14443 goal = BOUNDARY_SINGLE_CACHELINE;
14444#else
14445 goal = 0;
14446#endif
14447#endif
14448
Joe Perches63c3a662011-04-26 08:12:10 +000014449 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014450 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14451 goto out;
14452 }
14453
David S. Miller59e6b432005-05-18 22:50:10 -070014454 if (!goal)
14455 goto out;
14456
14457 /* PCI controllers on most RISC systems tend to disconnect
14458 * when a device tries to burst across a cache-line boundary.
14459 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14460 *
14461 * Unfortunately, for PCI-E there are only limited
14462 * write-side controls for this, and thus for reads
14463 * we will still get the disconnects. We'll also waste
14464 * these PCI cycles for both read and write for chips
14465 * other than 5700 and 5701 which do not implement the
14466 * boundary bits.
14467 */
Joe Perches63c3a662011-04-26 08:12:10 +000014468 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014469 switch (cacheline_size) {
14470 case 16:
14471 case 32:
14472 case 64:
14473 case 128:
14474 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14475 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14476 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14477 } else {
14478 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14479 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14480 }
14481 break;
14482
14483 case 256:
14484 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14485 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14486 break;
14487
14488 default:
14489 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14490 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14491 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014492 }
Joe Perches63c3a662011-04-26 08:12:10 +000014493 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014494 switch (cacheline_size) {
14495 case 16:
14496 case 32:
14497 case 64:
14498 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14499 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14500 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14501 break;
14502 }
14503 /* fallthrough */
14504 case 128:
14505 default:
14506 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14507 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14508 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014509 }
David S. Miller59e6b432005-05-18 22:50:10 -070014510 } else {
14511 switch (cacheline_size) {
14512 case 16:
14513 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14514 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14515 DMA_RWCTRL_WRITE_BNDRY_16);
14516 break;
14517 }
14518 /* fallthrough */
14519 case 32:
14520 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14521 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14522 DMA_RWCTRL_WRITE_BNDRY_32);
14523 break;
14524 }
14525 /* fallthrough */
14526 case 64:
14527 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14528 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14529 DMA_RWCTRL_WRITE_BNDRY_64);
14530 break;
14531 }
14532 /* fallthrough */
14533 case 128:
14534 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14535 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14536 DMA_RWCTRL_WRITE_BNDRY_128);
14537 break;
14538 }
14539 /* fallthrough */
14540 case 256:
14541 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14542 DMA_RWCTRL_WRITE_BNDRY_256);
14543 break;
14544 case 512:
14545 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14546 DMA_RWCTRL_WRITE_BNDRY_512);
14547 break;
14548 case 1024:
14549 default:
14550 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14551 DMA_RWCTRL_WRITE_BNDRY_1024);
14552 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014553 }
David S. Miller59e6b432005-05-18 22:50:10 -070014554 }
14555
14556out:
14557 return val;
14558}
14559
Linus Torvalds1da177e2005-04-16 15:20:36 -070014560static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14561{
14562 struct tg3_internal_buffer_desc test_desc;
14563 u32 sram_dma_descs;
14564 int i, ret;
14565
14566 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14567
14568 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14569 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14570 tw32(RDMAC_STATUS, 0);
14571 tw32(WDMAC_STATUS, 0);
14572
14573 tw32(BUFMGR_MODE, 0);
14574 tw32(FTQ_RESET, 0);
14575
14576 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14577 test_desc.addr_lo = buf_dma & 0xffffffff;
14578 test_desc.nic_mbuf = 0x00002100;
14579 test_desc.len = size;
14580
14581 /*
14582 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14583 * the *second* time the tg3 driver was getting loaded after an
14584 * initial scan.
14585 *
14586 * Broadcom tells me:
14587 * ...the DMA engine is connected to the GRC block and a DMA
14588 * reset may affect the GRC block in some unpredictable way...
14589 * The behavior of resets to individual blocks has not been tested.
14590 *
14591 * Broadcom noted the GRC reset will also reset all sub-components.
14592 */
14593 if (to_device) {
14594 test_desc.cqid_sqid = (13 << 8) | 2;
14595
14596 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14597 udelay(40);
14598 } else {
14599 test_desc.cqid_sqid = (16 << 8) | 7;
14600
14601 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14602 udelay(40);
14603 }
14604 test_desc.flags = 0x00000005;
14605
14606 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14607 u32 val;
14608
14609 val = *(((u32 *)&test_desc) + i);
14610 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14611 sram_dma_descs + (i * sizeof(u32)));
14612 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14613 }
14614 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14615
Matt Carlson859a588792010-04-05 10:19:28 +000014616 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014617 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000014618 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014619 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014620
14621 ret = -ENODEV;
14622 for (i = 0; i < 40; i++) {
14623 u32 val;
14624
14625 if (to_device)
14626 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14627 else
14628 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14629 if ((val & 0xffff) == sram_dma_descs) {
14630 ret = 0;
14631 break;
14632 }
14633
14634 udelay(100);
14635 }
14636
14637 return ret;
14638}
14639
David S. Millerded73402005-05-23 13:59:47 -070014640#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014641
Matt Carlson41434702011-03-09 16:58:22 +000014642static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014643 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14644 { },
14645};
14646
Linus Torvalds1da177e2005-04-16 15:20:36 -070014647static int __devinit tg3_test_dma(struct tg3 *tp)
14648{
14649 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014650 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014651 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014652
Matt Carlson4bae65c2010-11-24 08:31:52 +000014653 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
14654 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014655 if (!buf) {
14656 ret = -ENOMEM;
14657 goto out_nofree;
14658 }
14659
14660 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14661 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14662
David S. Miller59e6b432005-05-18 22:50:10 -070014663 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014664
Joe Perches63c3a662011-04-26 08:12:10 +000014665 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014666 goto out;
14667
Joe Perches63c3a662011-04-26 08:12:10 +000014668 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014669 /* DMA read watermark not used on PCIE */
14670 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000014671 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014672 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14673 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014674 tp->dma_rwctrl |= 0x003f0000;
14675 else
14676 tp->dma_rwctrl |= 0x003f000f;
14677 } else {
14678 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14679 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14680 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014681 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014682
Michael Chan4a29cc22006-03-19 13:21:12 -080014683 /* If the 5704 is behind the EPB bridge, we can
14684 * do the less restrictive ONE_DMA workaround for
14685 * better performance.
14686 */
Joe Perches63c3a662011-04-26 08:12:10 +000014687 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080014688 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14689 tp->dma_rwctrl |= 0x8000;
14690 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014691 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14692
Michael Chan49afdeb2007-02-13 12:17:03 -080014693 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14694 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014695 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014696 tp->dma_rwctrl |=
14697 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14698 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14699 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014700 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14701 /* 5780 always in PCIX mode */
14702 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014703 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14704 /* 5714 always in PCIX mode */
14705 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014706 } else {
14707 tp->dma_rwctrl |= 0x001b000f;
14708 }
14709 }
14710
14711 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14712 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14713 tp->dma_rwctrl &= 0xfffffff0;
14714
14715 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14716 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14717 /* Remove this if it causes problems for some boards. */
14718 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14719
14720 /* On 5700/5701 chips, we need to set this bit.
14721 * Otherwise the chip will issue cacheline transactions
14722 * to streamable DMA memory with not all the byte
14723 * enables turned on. This is an error on several
14724 * RISC PCI controllers, in particular sparc64.
14725 *
14726 * On 5703/5704 chips, this bit has been reassigned
14727 * a different meaning. In particular, it is used
14728 * on those chips to enable a PCI-X workaround.
14729 */
14730 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14731 }
14732
14733 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14734
14735#if 0
14736 /* Unneeded, already done by tg3_get_invariants. */
14737 tg3_switch_clocks(tp);
14738#endif
14739
Linus Torvalds1da177e2005-04-16 15:20:36 -070014740 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14741 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14742 goto out;
14743
David S. Miller59e6b432005-05-18 22:50:10 -070014744 /* It is best to perform DMA test with maximum write burst size
14745 * to expose the 5700/5701 write DMA bug.
14746 */
14747 saved_dma_rwctrl = tp->dma_rwctrl;
14748 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14749 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14750
Linus Torvalds1da177e2005-04-16 15:20:36 -070014751 while (1) {
14752 u32 *p = buf, i;
14753
14754 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14755 p[i] = i;
14756
14757 /* Send the buffer to the chip. */
14758 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14759 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014760 dev_err(&tp->pdev->dev,
14761 "%s: Buffer write failed. err = %d\n",
14762 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014763 break;
14764 }
14765
14766#if 0
14767 /* validate data reached card RAM correctly. */
14768 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14769 u32 val;
14770 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14771 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000014772 dev_err(&tp->pdev->dev,
14773 "%s: Buffer corrupted on device! "
14774 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014775 /* ret = -ENODEV here? */
14776 }
14777 p[i] = 0;
14778 }
14779#endif
14780 /* Now read it back. */
14781 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14782 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014783 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
14784 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014785 break;
14786 }
14787
14788 /* Verify it. */
14789 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14790 if (p[i] == i)
14791 continue;
14792
David S. Miller59e6b432005-05-18 22:50:10 -070014793 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14794 DMA_RWCTRL_WRITE_BNDRY_16) {
14795 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014796 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14797 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14798 break;
14799 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000014800 dev_err(&tp->pdev->dev,
14801 "%s: Buffer corrupted on read back! "
14802 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014803 ret = -ENODEV;
14804 goto out;
14805 }
14806 }
14807
14808 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14809 /* Success. */
14810 ret = 0;
14811 break;
14812 }
14813 }
David S. Miller59e6b432005-05-18 22:50:10 -070014814 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14815 DMA_RWCTRL_WRITE_BNDRY_16) {
14816 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014817 * now look for chipsets that are known to expose the
14818 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014819 */
Matt Carlson41434702011-03-09 16:58:22 +000014820 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014821 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14822 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000014823 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014824 /* Safe to use the calculated DMA boundary. */
14825 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000014826 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070014827
David S. Miller59e6b432005-05-18 22:50:10 -070014828 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014830
14831out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000014832 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014833out_nofree:
14834 return ret;
14835}
14836
Linus Torvalds1da177e2005-04-16 15:20:36 -070014837static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14838{
Joe Perches63c3a662011-04-26 08:12:10 +000014839 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000014840 tp->bufmgr_config.mbuf_read_dma_low_water =
14841 DEFAULT_MB_RDMA_LOW_WATER_5705;
14842 tp->bufmgr_config.mbuf_mac_rx_low_water =
14843 DEFAULT_MB_MACRX_LOW_WATER_57765;
14844 tp->bufmgr_config.mbuf_high_water =
14845 DEFAULT_MB_HIGH_WATER_57765;
14846
14847 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14848 DEFAULT_MB_RDMA_LOW_WATER_5705;
14849 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14850 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14851 tp->bufmgr_config.mbuf_high_water_jumbo =
14852 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000014853 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070014854 tp->bufmgr_config.mbuf_read_dma_low_water =
14855 DEFAULT_MB_RDMA_LOW_WATER_5705;
14856 tp->bufmgr_config.mbuf_mac_rx_low_water =
14857 DEFAULT_MB_MACRX_LOW_WATER_5705;
14858 tp->bufmgr_config.mbuf_high_water =
14859 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014860 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14861 tp->bufmgr_config.mbuf_mac_rx_low_water =
14862 DEFAULT_MB_MACRX_LOW_WATER_5906;
14863 tp->bufmgr_config.mbuf_high_water =
14864 DEFAULT_MB_HIGH_WATER_5906;
14865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014866
Michael Chanfdfec1722005-07-25 12:31:48 -070014867 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14868 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14869 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14870 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14871 tp->bufmgr_config.mbuf_high_water_jumbo =
14872 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14873 } else {
14874 tp->bufmgr_config.mbuf_read_dma_low_water =
14875 DEFAULT_MB_RDMA_LOW_WATER;
14876 tp->bufmgr_config.mbuf_mac_rx_low_water =
14877 DEFAULT_MB_MACRX_LOW_WATER;
14878 tp->bufmgr_config.mbuf_high_water =
14879 DEFAULT_MB_HIGH_WATER;
14880
14881 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14882 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14883 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14884 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14885 tp->bufmgr_config.mbuf_high_water_jumbo =
14886 DEFAULT_MB_HIGH_WATER_JUMBO;
14887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014888
14889 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14890 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14891}
14892
14893static char * __devinit tg3_phy_string(struct tg3 *tp)
14894{
Matt Carlson79eb6902010-02-17 15:17:03 +000014895 switch (tp->phy_id & TG3_PHY_ID_MASK) {
14896 case TG3_PHY_ID_BCM5400: return "5400";
14897 case TG3_PHY_ID_BCM5401: return "5401";
14898 case TG3_PHY_ID_BCM5411: return "5411";
14899 case TG3_PHY_ID_BCM5701: return "5701";
14900 case TG3_PHY_ID_BCM5703: return "5703";
14901 case TG3_PHY_ID_BCM5704: return "5704";
14902 case TG3_PHY_ID_BCM5705: return "5705";
14903 case TG3_PHY_ID_BCM5750: return "5750";
14904 case TG3_PHY_ID_BCM5752: return "5752";
14905 case TG3_PHY_ID_BCM5714: return "5714";
14906 case TG3_PHY_ID_BCM5780: return "5780";
14907 case TG3_PHY_ID_BCM5755: return "5755";
14908 case TG3_PHY_ID_BCM5787: return "5787";
14909 case TG3_PHY_ID_BCM5784: return "5784";
14910 case TG3_PHY_ID_BCM5756: return "5722/5756";
14911 case TG3_PHY_ID_BCM5906: return "5906";
14912 case TG3_PHY_ID_BCM5761: return "5761";
14913 case TG3_PHY_ID_BCM5718C: return "5718C";
14914 case TG3_PHY_ID_BCM5718S: return "5718S";
14915 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000014916 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000014917 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000014918 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014919 case 0: return "serdes";
14920 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014922}
14923
Michael Chanf9804dd2005-09-27 12:13:10 -070014924static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14925{
Joe Perches63c3a662011-04-26 08:12:10 +000014926 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014927 strcpy(str, "PCI Express");
14928 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000014929 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014930 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14931
14932 strcpy(str, "PCIX:");
14933
14934 if ((clock_ctrl == 7) ||
14935 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14936 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14937 strcat(str, "133MHz");
14938 else if (clock_ctrl == 0)
14939 strcat(str, "33MHz");
14940 else if (clock_ctrl == 2)
14941 strcat(str, "50MHz");
14942 else if (clock_ctrl == 4)
14943 strcat(str, "66MHz");
14944 else if (clock_ctrl == 6)
14945 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014946 } else {
14947 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000014948 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070014949 strcat(str, "66MHz");
14950 else
14951 strcat(str, "33MHz");
14952 }
Joe Perches63c3a662011-04-26 08:12:10 +000014953 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070014954 strcat(str, ":32-bit");
14955 else
14956 strcat(str, ":64-bit");
14957 return str;
14958}
14959
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014960static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014961{
14962 struct pci_dev *peer;
14963 unsigned int func, devnr = tp->pdev->devfn & ~7;
14964
14965 for (func = 0; func < 8; func++) {
14966 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14967 if (peer && peer != tp->pdev)
14968 break;
14969 pci_dev_put(peer);
14970 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014971 /* 5704 can be configured in single-port mode, set peer to
14972 * tp->pdev in that case.
14973 */
14974 if (!peer) {
14975 peer = tp->pdev;
14976 return peer;
14977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014978
14979 /*
14980 * We don't need to keep the refcount elevated; there's no way
14981 * to remove one half of this device without removing the other
14982 */
14983 pci_dev_put(peer);
14984
14985 return peer;
14986}
14987
David S. Miller15f98502005-05-18 22:49:26 -070014988static void __devinit tg3_init_coal(struct tg3 *tp)
14989{
14990 struct ethtool_coalesce *ec = &tp->coal;
14991
14992 memset(ec, 0, sizeof(*ec));
14993 ec->cmd = ETHTOOL_GCOALESCE;
14994 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14995 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14996 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14997 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14998 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14999 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15000 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15001 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15002 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15003
15004 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15005 HOSTCC_MODE_CLRTICK_TXBD)) {
15006 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15007 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15008 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15009 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15010 }
Michael Chand244c892005-07-05 14:42:33 -070015011
Joe Perches63c3a662011-04-26 08:12:10 +000015012 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015013 ec->rx_coalesce_usecs_irq = 0;
15014 ec->tx_coalesce_usecs_irq = 0;
15015 ec->stats_block_coalesce_usecs = 0;
15016 }
David S. Miller15f98502005-05-18 22:49:26 -070015017}
15018
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080015019static const struct net_device_ops tg3_netdev_ops = {
15020 .ndo_open = tg3_open,
15021 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080015022 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000015023 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080015024 .ndo_validate_addr = eth_validate_addr,
15025 .ndo_set_multicast_list = tg3_set_rx_mode,
15026 .ndo_set_mac_address = tg3_set_mac_addr,
15027 .ndo_do_ioctl = tg3_ioctl,
15028 .ndo_tx_timeout = tg3_tx_timeout,
15029 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000015030 .ndo_fix_features = tg3_fix_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080015031#ifdef CONFIG_NET_POLL_CONTROLLER
15032 .ndo_poll_controller = tg3_poll_controller,
15033#endif
15034};
15035
15036static const struct net_device_ops tg3_netdev_ops_dma_bug = {
15037 .ndo_open = tg3_open,
15038 .ndo_stop = tg3_close,
15039 .ndo_start_xmit = tg3_start_xmit_dma_bug,
Eric Dumazet511d2222010-07-07 20:44:24 +000015040 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080015041 .ndo_validate_addr = eth_validate_addr,
15042 .ndo_set_multicast_list = tg3_set_rx_mode,
15043 .ndo_set_mac_address = tg3_set_mac_addr,
15044 .ndo_do_ioctl = tg3_ioctl,
15045 .ndo_tx_timeout = tg3_tx_timeout,
15046 .ndo_change_mtu = tg3_change_mtu,
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080015047#ifdef CONFIG_NET_POLL_CONTROLLER
15048 .ndo_poll_controller = tg3_poll_controller,
15049#endif
15050};
15051
Linus Torvalds1da177e2005-04-16 15:20:36 -070015052static int __devinit tg3_init_one(struct pci_dev *pdev,
15053 const struct pci_device_id *ent)
15054{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015055 struct net_device *dev;
15056 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015057 int i, err, pm_cap;
15058 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015059 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015060 u64 dma_mask, persist_dma_mask;
Michał Mirosławdc668912011-04-07 03:35:07 +000015061 u32 hw_features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015062
Joe Perches05dbe002010-02-17 19:44:19 +000015063 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015064
15065 err = pci_enable_device(pdev);
15066 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015067 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015068 return err;
15069 }
15070
Linus Torvalds1da177e2005-04-16 15:20:36 -070015071 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15072 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015073 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015074 goto err_out_disable_pdev;
15075 }
15076
15077 pci_set_master(pdev);
15078
15079 /* Find power-management capability. */
15080 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15081 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015082 dev_err(&pdev->dev,
15083 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015084 err = -EIO;
15085 goto err_out_free_res;
15086 }
15087
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015088 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015089 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000015090 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015091 err = -ENOMEM;
15092 goto err_out_free_res;
15093 }
15094
Linus Torvalds1da177e2005-04-16 15:20:36 -070015095 SET_NETDEV_DEV(dev, &pdev->dev);
15096
Linus Torvalds1da177e2005-04-16 15:20:36 -070015097 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015098
15099 tp = netdev_priv(dev);
15100 tp->pdev = pdev;
15101 tp->dev = dev;
15102 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015103 tp->rx_mode = TG3_DEF_RX_MODE;
15104 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015105
Linus Torvalds1da177e2005-04-16 15:20:36 -070015106 if (tg3_debug > 0)
15107 tp->msg_enable = tg3_debug;
15108 else
15109 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15110
15111 /* The word/byte swap controls here control register access byte
15112 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15113 * setting below.
15114 */
15115 tp->misc_host_ctrl =
15116 MISC_HOST_CTRL_MASK_PCI_INT |
15117 MISC_HOST_CTRL_WORD_SWAP |
15118 MISC_HOST_CTRL_INDIR_ACCESS |
15119 MISC_HOST_CTRL_PCISTATE_RW;
15120
15121 /* The NONFRM (non-frame) byte/word swap controls take effect
15122 * on descriptor entries, anything which isn't packet data.
15123 *
15124 * The StrongARM chips on the board (one for tx, one for rx)
15125 * are running in big-endian mode.
15126 */
15127 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15128 GRC_MODE_WSWAP_NONFRM_DATA);
15129#ifdef __BIG_ENDIAN
15130 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15131#endif
15132 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015133 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015134 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015135
Matt Carlsond5fe4882008-11-21 17:20:32 -080015136 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015137 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015138 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015139 err = -ENOMEM;
15140 goto err_out_free_dev;
15141 }
15142
Linus Torvalds1da177e2005-04-16 15:20:36 -070015143 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15144 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015145
Linus Torvalds1da177e2005-04-16 15:20:36 -070015146 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015147 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015148 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015149
15150 err = tg3_get_invariants(tp);
15151 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015152 dev_err(&pdev->dev,
15153 "Problem fetching invariants of chip, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015154 goto err_out_iounmap;
15155 }
15156
Joe Perches63c3a662011-04-26 08:12:10 +000015157 if (tg3_flag(tp, 5755_PLUS) && !tg3_flag(tp, 5717_PLUS))
Stephen Hemminger00829822008-11-20 20:14:53 -080015158 dev->netdev_ops = &tg3_netdev_ops;
15159 else
15160 dev->netdev_ops = &tg3_netdev_ops_dma_bug;
15161
15162
Michael Chan4a29cc22006-03-19 13:21:12 -080015163 /* The EPB bridge inside 5714, 5715, and 5780 and any
15164 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015165 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15166 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15167 * do DMA address check in tg3_start_xmit().
15168 */
Joe Perches63c3a662011-04-26 08:12:10 +000015169 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015170 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015171 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015172 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015173#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015174 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015175#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015176 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015177 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015178
15179 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015180 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015181 err = pci_set_dma_mask(pdev, dma_mask);
15182 if (!err) {
15183 dev->features |= NETIF_F_HIGHDMA;
15184 err = pci_set_consistent_dma_mask(pdev,
15185 persist_dma_mask);
15186 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015187 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15188 "DMA for consistent allocations\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015189 goto err_out_iounmap;
15190 }
15191 }
15192 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015193 if (err || dma_mask == DMA_BIT_MASK(32)) {
15194 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015195 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015196 dev_err(&pdev->dev,
15197 "No usable DMA configuration, aborting\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015198 goto err_out_iounmap;
15199 }
15200 }
15201
Michael Chanfdfec1722005-07-25 12:31:48 -070015202 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015203
Matt Carlson507399f2009-11-13 13:03:37 +000015204 /* Selectively allow TSO based on operating conditions */
Joe Perches63c3a662011-04-26 08:12:10 +000015205 if ((tg3_flag(tp, HW_TSO_1) ||
15206 tg3_flag(tp, HW_TSO_2) ||
15207 tg3_flag(tp, HW_TSO_3)) ||
15208 (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF)))
15209 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson507399f2009-11-13 13:03:37 +000015210 else {
Joe Perches63c3a662011-04-26 08:12:10 +000015211 tg3_flag_clear(tp, TSO_CAPABLE);
15212 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000015213 tp->fw_needed = NULL;
15214 }
15215
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015216 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
Matt Carlson9e9fd122009-01-19 16:57:45 -080015217 tp->fw_needed = FIRMWARE_TG3;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015218
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015219 /* TSO is on by default on chips that support hardware TSO.
15220 * Firmware TSO on older chips gives lower performance, so it
15221 * is off by default, but can be enabled using ethtool.
15222 */
Joe Perches63c3a662011-04-26 08:12:10 +000015223 if ((tg3_flag(tp, HW_TSO_1) ||
15224 tg3_flag(tp, HW_TSO_2) ||
15225 tg3_flag(tp, HW_TSO_3)) &&
Michał Mirosławdc668912011-04-07 03:35:07 +000015226 (dev->features & NETIF_F_IP_CSUM))
15227 hw_features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015228 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Michał Mirosławdc668912011-04-07 03:35:07 +000015229 if (dev->features & NETIF_F_IPV6_CSUM)
15230 hw_features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015231 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015232 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015233 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15234 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015235 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015236 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
15237 hw_features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015239
Michał Mirosławdc668912011-04-07 03:35:07 +000015240 dev->hw_features |= hw_features;
15241 dev->features |= hw_features;
15242 dev->vlan_features |= hw_features;
15243
Linus Torvalds1da177e2005-04-16 15:20:36 -070015244 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015245 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015246 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015247 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015248 tp->rx_pending = 63;
15249 }
15250
Linus Torvalds1da177e2005-04-16 15:20:36 -070015251 err = tg3_get_device_address(tp);
15252 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015253 dev_err(&pdev->dev,
15254 "Could not obtain valid ethernet address, aborting\n");
Matt Carlson026a6c22009-12-03 08:36:24 +000015255 goto err_out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015256 }
15257
Joe Perches63c3a662011-04-26 08:12:10 +000015258 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson63532392008-11-03 16:49:57 -080015259 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080015260 if (!tp->aperegs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015261 dev_err(&pdev->dev,
15262 "Cannot map APE registers, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015263 err = -ENOMEM;
Matt Carlson026a6c22009-12-03 08:36:24 +000015264 goto err_out_iounmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015265 }
15266
15267 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000015268
Joe Perches63c3a662011-04-26 08:12:10 +000015269 if (tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000015270 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015271 }
15272
Matt Carlsonc88864d2007-11-12 21:07:01 -080015273 /*
15274 * Reset chip in case UNDI or EFI driver did not shutdown
15275 * DMA self test will enable WDMAC and we'll see (spurious)
15276 * pending DMA on the PCI bus at that point.
15277 */
15278 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15279 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15280 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15281 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15282 }
15283
15284 err = tg3_test_dma(tp);
15285 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015286 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015287 goto err_out_apeunmap;
15288 }
15289
Matt Carlson78f90dc2009-11-13 13:03:42 +000015290 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15291 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15292 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015293 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015294 struct tg3_napi *tnapi = &tp->napi[i];
15295
15296 tnapi->tp = tp;
15297 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15298
15299 tnapi->int_mbox = intmbx;
15300 if (i < 4)
15301 intmbx += 0x8;
15302 else
15303 intmbx += 0x4;
15304
15305 tnapi->consmbox = rcvmbx;
15306 tnapi->prodmbox = sndmbx;
15307
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015308 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015309 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015310 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015311 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015312
Joe Perches63c3a662011-04-26 08:12:10 +000015313 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015314 break;
15315
15316 /*
15317 * If we support MSIX, we'll be using RSS. If we're using
15318 * RSS, the first vector only handles link interrupts and the
15319 * remaining vectors handle rx and tx interrupts. Reuse the
15320 * mailbox values for the next iteration. The values we setup
15321 * above are still useful for the single vectored mode.
15322 */
15323 if (!i)
15324 continue;
15325
15326 rcvmbx += 0x8;
15327
15328 if (sndmbx & 0x4)
15329 sndmbx -= 0x4;
15330 else
15331 sndmbx += 0xc;
15332 }
15333
Matt Carlsonc88864d2007-11-12 21:07:01 -080015334 tg3_init_coal(tp);
15335
Michael Chanc49a1562006-12-17 17:07:29 -080015336 pci_set_drvdata(pdev, dev);
15337
Linus Torvalds1da177e2005-04-16 15:20:36 -070015338 err = register_netdev(dev);
15339 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015340 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015341 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015342 }
15343
Joe Perches05dbe002010-02-17 19:44:19 +000015344 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15345 tp->board_part_number,
15346 tp->pci_chip_rev_id,
15347 tg3_bus_string(tp, str),
15348 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015349
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015350 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015351 struct phy_device *phydev;
15352 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015353 netdev_info(dev,
15354 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015355 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015356 } else {
15357 char *ethtype;
15358
15359 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15360 ethtype = "10/100Base-TX";
15361 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15362 ethtype = "1000Base-SX";
15363 else
15364 ethtype = "10/100/1000Base-T";
15365
Matt Carlson5129c3a2010-04-05 10:19:23 +000015366 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015367 "(WireSpeed[%d], EEE[%d])\n",
15368 tg3_phy_string(tp), ethtype,
15369 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15370 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015371 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015372
Joe Perches05dbe002010-02-17 19:44:19 +000015373 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015374 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015375 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015376 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015377 tg3_flag(tp, ENABLE_ASF) != 0,
15378 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015379 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15380 tp->dma_rwctrl,
15381 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15382 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015383
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015384 pci_save_state(pdev);
15385
Linus Torvalds1da177e2005-04-16 15:20:36 -070015386 return 0;
15387
Matt Carlson0d3031d2007-10-10 18:02:43 -070015388err_out_apeunmap:
15389 if (tp->aperegs) {
15390 iounmap(tp->aperegs);
15391 tp->aperegs = NULL;
15392 }
15393
Linus Torvalds1da177e2005-04-16 15:20:36 -070015394err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015395 if (tp->regs) {
15396 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015397 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015399
15400err_out_free_dev:
15401 free_netdev(dev);
15402
15403err_out_free_res:
15404 pci_release_regions(pdev);
15405
15406err_out_disable_pdev:
15407 pci_disable_device(pdev);
15408 pci_set_drvdata(pdev, NULL);
15409 return err;
15410}
15411
15412static void __devexit tg3_remove_one(struct pci_dev *pdev)
15413{
15414 struct net_device *dev = pci_get_drvdata(pdev);
15415
15416 if (dev) {
15417 struct tg3 *tp = netdev_priv(dev);
15418
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015419 if (tp->fw)
15420 release_firmware(tp->fw);
15421
Tejun Heo23f333a2010-12-12 16:45:14 +010015422 cancel_work_sync(&tp->reset_task);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015423
Joe Perches63c3a662011-04-26 08:12:10 +000015424 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015425 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015426 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015427 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015428
Linus Torvalds1da177e2005-04-16 15:20:36 -070015429 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015430 if (tp->aperegs) {
15431 iounmap(tp->aperegs);
15432 tp->aperegs = NULL;
15433 }
Michael Chan68929142005-08-09 20:17:14 -070015434 if (tp->regs) {
15435 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015436 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015438 free_netdev(dev);
15439 pci_release_regions(pdev);
15440 pci_disable_device(pdev);
15441 pci_set_drvdata(pdev, NULL);
15442 }
15443}
15444
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015445#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015446static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015447{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015448 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015449 struct net_device *dev = pci_get_drvdata(pdev);
15450 struct tg3 *tp = netdev_priv(dev);
15451 int err;
15452
15453 if (!netif_running(dev))
15454 return 0;
15455
Tejun Heo23f333a2010-12-12 16:45:14 +010015456 flush_work_sync(&tp->reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015457 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015458 tg3_netif_stop(tp);
15459
15460 del_timer_sync(&tp->timer);
15461
David S. Millerf47c11e2005-06-24 20:18:35 -070015462 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015463 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015464 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015465
15466 netif_device_detach(dev);
15467
David S. Millerf47c11e2005-06-24 20:18:35 -070015468 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015469 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015470 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015471 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015472
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015473 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015474 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015475 int err2;
15476
David S. Millerf47c11e2005-06-24 20:18:35 -070015477 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015478
Joe Perches63c3a662011-04-26 08:12:10 +000015479 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015480 err2 = tg3_restart_hw(tp, 1);
15481 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015482 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015483
15484 tp->timer.expires = jiffies + tp->timer_offset;
15485 add_timer(&tp->timer);
15486
15487 netif_device_attach(dev);
15488 tg3_netif_start(tp);
15489
Michael Chanb9ec6c12006-07-25 16:37:27 -070015490out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015491 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015492
15493 if (!err2)
15494 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015495 }
15496
15497 return err;
15498}
15499
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015500static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015501{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015502 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015503 struct net_device *dev = pci_get_drvdata(pdev);
15504 struct tg3 *tp = netdev_priv(dev);
15505 int err;
15506
15507 if (!netif_running(dev))
15508 return 0;
15509
Linus Torvalds1da177e2005-04-16 15:20:36 -070015510 netif_device_attach(dev);
15511
David S. Millerf47c11e2005-06-24 20:18:35 -070015512 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015513
Joe Perches63c3a662011-04-26 08:12:10 +000015514 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015515 err = tg3_restart_hw(tp, 1);
15516 if (err)
15517 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015518
15519 tp->timer.expires = jiffies + tp->timer_offset;
15520 add_timer(&tp->timer);
15521
Linus Torvalds1da177e2005-04-16 15:20:36 -070015522 tg3_netif_start(tp);
15523
Michael Chanb9ec6c12006-07-25 16:37:27 -070015524out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015525 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015526
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015527 if (!err)
15528 tg3_phy_start(tp);
15529
Michael Chanb9ec6c12006-07-25 16:37:27 -070015530 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015531}
15532
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015533static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015534#define TG3_PM_OPS (&tg3_pm_ops)
15535
15536#else
15537
15538#define TG3_PM_OPS NULL
15539
15540#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015541
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015542/**
15543 * tg3_io_error_detected - called when PCI error is detected
15544 * @pdev: Pointer to PCI device
15545 * @state: The current pci connection state
15546 *
15547 * This function is called after a PCI bus error affecting
15548 * this device has been detected.
15549 */
15550static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15551 pci_channel_state_t state)
15552{
15553 struct net_device *netdev = pci_get_drvdata(pdev);
15554 struct tg3 *tp = netdev_priv(netdev);
15555 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15556
15557 netdev_info(netdev, "PCI I/O error detected\n");
15558
15559 rtnl_lock();
15560
15561 if (!netif_running(netdev))
15562 goto done;
15563
15564 tg3_phy_stop(tp);
15565
15566 tg3_netif_stop(tp);
15567
15568 del_timer_sync(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +000015569 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015570
15571 /* Want to make sure that the reset task doesn't run */
15572 cancel_work_sync(&tp->reset_task);
Joe Perches63c3a662011-04-26 08:12:10 +000015573 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
15574 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015575
15576 netif_device_detach(netdev);
15577
15578 /* Clean up software state, even if MMIO is blocked */
15579 tg3_full_lock(tp, 0);
15580 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15581 tg3_full_unlock(tp);
15582
15583done:
15584 if (state == pci_channel_io_perm_failure)
15585 err = PCI_ERS_RESULT_DISCONNECT;
15586 else
15587 pci_disable_device(pdev);
15588
15589 rtnl_unlock();
15590
15591 return err;
15592}
15593
15594/**
15595 * tg3_io_slot_reset - called after the pci bus has been reset.
15596 * @pdev: Pointer to PCI device
15597 *
15598 * Restart the card from scratch, as if from a cold-boot.
15599 * At this point, the card has exprienced a hard reset,
15600 * followed by fixups by BIOS, and has its config space
15601 * set up identically to what it was at cold boot.
15602 */
15603static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15604{
15605 struct net_device *netdev = pci_get_drvdata(pdev);
15606 struct tg3 *tp = netdev_priv(netdev);
15607 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15608 int err;
15609
15610 rtnl_lock();
15611
15612 if (pci_enable_device(pdev)) {
15613 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
15614 goto done;
15615 }
15616
15617 pci_set_master(pdev);
15618 pci_restore_state(pdev);
15619 pci_save_state(pdev);
15620
15621 if (!netif_running(netdev)) {
15622 rc = PCI_ERS_RESULT_RECOVERED;
15623 goto done;
15624 }
15625
15626 err = tg3_power_up(tp);
15627 if (err) {
15628 netdev_err(netdev, "Failed to restore register access.\n");
15629 goto done;
15630 }
15631
15632 rc = PCI_ERS_RESULT_RECOVERED;
15633
15634done:
15635 rtnl_unlock();
15636
15637 return rc;
15638}
15639
15640/**
15641 * tg3_io_resume - called when traffic can start flowing again.
15642 * @pdev: Pointer to PCI device
15643 *
15644 * This callback is called when the error recovery driver tells
15645 * us that its OK to resume normal operation.
15646 */
15647static void tg3_io_resume(struct pci_dev *pdev)
15648{
15649 struct net_device *netdev = pci_get_drvdata(pdev);
15650 struct tg3 *tp = netdev_priv(netdev);
15651 int err;
15652
15653 rtnl_lock();
15654
15655 if (!netif_running(netdev))
15656 goto done;
15657
15658 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000015659 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015660 err = tg3_restart_hw(tp, 1);
15661 tg3_full_unlock(tp);
15662 if (err) {
15663 netdev_err(netdev, "Cannot restart hardware after reset.\n");
15664 goto done;
15665 }
15666
15667 netif_device_attach(netdev);
15668
15669 tp->timer.expires = jiffies + tp->timer_offset;
15670 add_timer(&tp->timer);
15671
15672 tg3_netif_start(tp);
15673
15674 tg3_phy_start(tp);
15675
15676done:
15677 rtnl_unlock();
15678}
15679
15680static struct pci_error_handlers tg3_err_handler = {
15681 .error_detected = tg3_io_error_detected,
15682 .slot_reset = tg3_io_slot_reset,
15683 .resume = tg3_io_resume
15684};
15685
Linus Torvalds1da177e2005-04-16 15:20:36 -070015686static struct pci_driver tg3_driver = {
15687 .name = DRV_MODULE_NAME,
15688 .id_table = tg3_pci_tbl,
15689 .probe = tg3_init_one,
15690 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015691 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015692 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015693};
15694
15695static int __init tg3_init(void)
15696{
Jeff Garzik29917622006-08-19 17:48:59 -040015697 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015698}
15699
15700static void __exit tg3_cleanup(void)
15701{
15702 pci_unregister_driver(&tg3_driver);
15703}
15704
15705module_init(tg3_init);
15706module_exit(tg3_cleanup);