blob: b2b1ba168c88abbd12067b14d2ba8b8bfd7dc5f4 [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 Carlson66711e662009-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 Sieversfb28ad32008-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);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00003376 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
3377 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
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. Millerf7383c222005-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 Carlson2ffcc982011-05-19 12:12:44 +00005738static void tg3_set_txd(struct tg3_napi *tnapi, int entry,
5739 dma_addr_t mapping, int len, u32 flags,
5740 u32 mss_and_is_end)
5741{
5742 struct tg3_tx_buffer_desc *txd = &tnapi->tx_ring[entry];
5743 int is_end = (mss_and_is_end & 0x1);
5744 u32 mss = (mss_and_is_end >> 1);
5745 u32 vlan_tag = 0;
5746
5747 if (is_end)
5748 flags |= TXD_FLAG_END;
5749 if (flags & TXD_FLAG_VLAN) {
5750 vlan_tag = flags >> 16;
5751 flags &= 0xffff;
5752 }
5753 vlan_tag |= (mss << TXD_MSS_SHIFT);
5754
5755 txd->addr_hi = ((u64) mapping >> 32);
5756 txd->addr_lo = ((u64) mapping & 0xffffffff);
5757 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
5758 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
5759}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Matt Carlson432aa7e2011-05-19 12:12:45 +00005761static void tg3_skb_error_unmap(struct tg3_napi *tnapi,
5762 struct sk_buff *skb, int last)
5763{
5764 int i;
5765 u32 entry = tnapi->tx_prod;
5766 struct ring_info *txb = &tnapi->tx_buffers[entry];
5767
5768 pci_unmap_single(tnapi->tp->pdev,
5769 dma_unmap_addr(txb, mapping),
5770 skb_headlen(skb),
5771 PCI_DMA_TODEVICE);
5772 for (i = 0; i <= last; i++) {
5773 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5774
5775 entry = NEXT_TX(entry);
5776 txb = &tnapi->tx_buffers[entry];
5777
5778 pci_unmap_page(tnapi->tp->pdev,
5779 dma_unmap_addr(txb, mapping),
5780 frag->size, PCI_DMA_TODEVICE);
5781 }
5782}
5783
Michael Chan72f2afb2006-03-06 19:28:35 -08005784/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005785static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
Matt Carlson432aa7e2011-05-19 12:12:45 +00005786 struct sk_buff *skb,
5787 u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005789 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba12008-04-19 18:12:33 -07005790 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005791 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00005792 u32 entry = tnapi->tx_prod;
5793 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
Matt Carlson41588ba12008-04-19 18:12:33 -07005795 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5796 new_skb = skb_copy(skb, GFP_ATOMIC);
5797 else {
5798 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5799
5800 new_skb = skb_copy_expand(skb,
5801 skb_headroom(skb) + more_headroom,
5802 skb_tailroom(skb), GFP_ATOMIC);
5803 }
5804
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005806 ret = -1;
5807 } else {
5808 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00005809 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
5810 PCI_DMA_TODEVICE);
5811 /* Make sure the mapping succeeded */
5812 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
5813 ret = -1;
5814 dev_kfree_skb(new_skb);
David S. Miller90079ce2008-09-11 04:52:51 -07005815
Michael Chanc58ec932005-09-17 00:46:27 -07005816 /* Make sure new skb does not cross any 4G boundaries.
5817 * Drop the packet if it does.
5818 */
Joe Perches63c3a662011-04-26 08:12:10 +00005819 } else if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
5820 tg3_4g_overflow_test(new_addr, new_skb->len)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005821 pci_unmap_single(tp->pdev, new_addr, new_skb->len,
5822 PCI_DMA_TODEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005823 ret = -1;
5824 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07005825 } else {
Matt Carlson432aa7e2011-05-19 12:12:45 +00005826 tnapi->tx_buffers[entry].skb = new_skb;
5827 dma_unmap_addr_set(&tnapi->tx_buffers[entry],
5828 mapping, new_addr);
5829
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005830 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005831 base_flags, 1 | (mss << 1));
Michael Chanc58ec932005-09-17 00:46:27 -07005832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833 }
5834
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835 dev_kfree_skb(skb);
5836
Michael Chanc58ec932005-09-17 00:46:27 -07005837 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838}
5839
Matt Carlson2ffcc982011-05-19 12:12:44 +00005840static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07005841
5842/* Use GSO to workaround a rare TSO bug that may be triggered when the
5843 * TSO header is greater than 80 bytes.
5844 */
5845static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
5846{
5847 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005848 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07005849
5850 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005851 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07005852 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00005853
5854 /* netif_tx_stop_queue() must be done before checking
5855 * checking tx index in tg3_tx_avail() below, because in
5856 * tg3_tx(), we update tx index before checking for
5857 * netif_tx_queue_stopped().
5858 */
5859 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005860 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08005861 return NETDEV_TX_BUSY;
5862
5863 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005864 }
5865
5866 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07005867 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07005868 goto tg3_tso_bug_end;
5869
5870 do {
5871 nskb = segs;
5872 segs = segs->next;
5873 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00005874 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005875 } while (segs);
5876
5877tg3_tso_bug_end:
5878 dev_kfree_skb(skb);
5879
5880 return NETDEV_TX_OK;
5881}
Michael Chan52c0fd82006-06-29 20:15:54 -07005882
Michael Chan5a6f3072006-03-20 22:28:05 -08005883/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00005884 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08005885 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00005886static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08005887{
5888 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08005889 u32 len, entry, base_flags, mss;
Matt Carlson432aa7e2011-05-19 12:12:45 +00005890 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07005891 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005892 struct tg3_napi *tnapi;
5893 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00005894 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005895
Matt Carlson24f4efd2009-11-13 13:03:35 +00005896 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5897 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00005898 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00005899 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900
Michael Chan00b70502006-06-17 21:58:45 -07005901 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005902 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07005903 * interrupt. Furthermore, IRQ processing runs lockless so we have
5904 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005906 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005907 if (!netif_tx_queue_stopped(txq)) {
5908 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005909
5910 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00005911 netdev_err(dev,
5912 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 return NETDEV_TX_BUSY;
5915 }
5916
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005917 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07005919 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005921
Matt Carlsonbe98da62010-07-11 09:31:46 +00005922 mss = skb_shinfo(skb)->gso_size;
5923 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005924 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00005925 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926
5927 if (skb_header_cloned(skb) &&
5928 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5929 dev_kfree_skb(skb);
5930 goto out_unlock;
5931 }
5932
Matt Carlson34195c32010-07-11 09:31:42 +00005933 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005934 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935
Matt Carlson02e96082010-09-15 08:59:59 +00005936 if (skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00005937 hdr_len = skb_headlen(skb) - ETH_HLEN;
5938 } else {
5939 u32 ip_tcp_len;
5940
5941 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
5942 hdr_len = ip_tcp_len + tcp_opt_len;
5943
5944 iph->check = 0;
5945 iph->tot_len = htons(mss + hdr_len);
5946 }
5947
Michael Chan52c0fd82006-06-29 20:15:54 -07005948 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00005949 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00005950 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07005951
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5953 TXD_FLAG_CPU_POST_DMA);
5954
Joe Perches63c3a662011-04-26 08:12:10 +00005955 if (tg3_flag(tp, HW_TSO_1) ||
5956 tg3_flag(tp, HW_TSO_2) ||
5957 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005958 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005960 } else
5961 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5962 iph->daddr, 0,
5963 IPPROTO_TCP,
5964 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965
Joe Perches63c3a662011-04-26 08:12:10 +00005966 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00005967 mss |= (hdr_len & 0xc) << 12;
5968 if (hdr_len & 0x10)
5969 base_flags |= 0x00000010;
5970 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00005971 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005972 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00005973 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005974 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005975 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 int tsflags;
5977
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005978 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 mss |= (tsflags << 11);
5980 }
5981 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005982 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983 int tsflags;
5984
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005985 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986 base_flags |= tsflags << 12;
5987 }
5988 }
5989 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00005990
Jesse Grosseab6d182010-10-20 13:56:03 +00005991 if (vlan_tx_tag_present(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992 base_flags |= (TXD_FLAG_VLAN |
5993 (vlan_tx_tag_get(skb) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994
Joe Perches63c3a662011-04-26 08:12:10 +00005995 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
Matt Carlson8fc2f992010-12-06 08:28:49 +00005996 !mss && skb->len > VLAN_ETH_FRAME_LEN)
Matt Carlson615774f2009-11-13 13:03:39 +00005997 base_flags |= TXD_FLAG_JMB_PKT;
5998
Alexander Duyckf4188d82009-12-02 16:48:38 +00005999 len = skb_headlen(skb);
6000
6001 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
6002 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07006003 dev_kfree_skb(skb);
6004 goto out_unlock;
6005 }
6006
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006007 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006008 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009
6010 would_hit_hwbug = 0;
6011
Joe Perches63c3a662011-04-26 08:12:10 +00006012 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006013 would_hit_hwbug = 1;
6014
Joe Perches63c3a662011-04-26 08:12:10 +00006015 if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006016 tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba12008-04-19 18:12:33 -07006017 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00006018
Joe Perches63c3a662011-04-26 08:12:10 +00006019 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006020 tg3_40bit_overflow_test(tp, mapping, len))
6021 would_hit_hwbug = 1;
6022
Joe Perches63c3a662011-04-26 08:12:10 +00006023 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006024 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006026 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
6028
6029 entry = NEXT_TX(entry);
6030
6031 /* Now loop through additional data fragments, and queue them. */
6032 if (skb_shinfo(skb)->nr_frags > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 last = skb_shinfo(skb)->nr_frags - 1;
6034 for (i = 0; i <= last; i++) {
6035 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6036
6037 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006038 mapping = pci_map_page(tp->pdev,
6039 frag->page,
6040 frag->page_offset,
6041 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006043 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006044 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006045 mapping);
6046 if (pci_dma_mapping_error(tp->pdev, mapping))
6047 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
Joe Perches63c3a662011-04-26 08:12:10 +00006049 if (tg3_flag(tp, SHORT_DMA_BUG) &&
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006050 len <= 8)
6051 would_hit_hwbug = 1;
6052
Joe Perches63c3a662011-04-26 08:12:10 +00006053 if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006054 tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07006055 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
Joe Perches63c3a662011-04-26 08:12:10 +00006057 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006058 tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08006059 would_hit_hwbug = 1;
6060
Joe Perches63c3a662011-04-26 08:12:10 +00006061 if (tg3_flag(tp, HW_TSO_1) ||
6062 tg3_flag(tp, HW_TSO_2) ||
6063 tg3_flag(tp, HW_TSO_3))
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006064 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 base_flags, (i == last)|(mss << 1));
6066 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006067 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 base_flags, (i == last));
6069
6070 entry = NEXT_TX(entry);
6071 }
6072 }
6073
6074 if (would_hit_hwbug) {
Matt Carlson432aa7e2011-05-19 12:12:45 +00006075 tg3_skb_error_unmap(tnapi, skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076
6077 /* If the workaround fails due to memory/mapping
6078 * failure, silently drop this packet.
6079 */
Matt Carlson432aa7e2011-05-19 12:12:45 +00006080 if (tigon3_dma_hwbug_workaround(tnapi, skb, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081 goto out_unlock;
6082
Matt Carlson432aa7e2011-05-19 12:12:45 +00006083 entry = NEXT_TX(tnapi->tx_prod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084 }
6085
6086 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006087 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006089 tnapi->tx_prod = entry;
6090 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006091 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006092
6093 /* netif_tx_stop_queue() must be done before checking
6094 * checking tx index in tg3_tx_avail() below, because in
6095 * tg3_tx(), we update tx index before checking for
6096 * netif_tx_queue_stopped().
6097 */
6098 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006099 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006100 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102
6103out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006104 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105
6106 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006107
6108dma_error:
Matt Carlson432aa7e2011-05-19 12:12:45 +00006109 tg3_skb_error_unmap(tnapi, skb, i);
Alexander Duyckf4188d82009-12-02 16:48:38 +00006110 dev_kfree_skb(skb);
Matt Carlson432aa7e2011-05-19 12:12:45 +00006111 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006112 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113}
6114
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006115static void tg3_set_loopback(struct net_device *dev, u32 features)
6116{
6117 struct tg3 *tp = netdev_priv(dev);
6118
6119 if (features & NETIF_F_LOOPBACK) {
6120 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
6121 return;
6122
6123 /*
6124 * Clear MAC_MODE_HALF_DUPLEX or you won't get packets back in
6125 * loopback mode if Half-Duplex mode was negotiated earlier.
6126 */
6127 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
6128
6129 /* Enable internal MAC loopback mode */
6130 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
6131 spin_lock_bh(&tp->lock);
6132 tw32(MAC_MODE, tp->mac_mode);
6133 netif_carrier_on(tp->dev);
6134 spin_unlock_bh(&tp->lock);
6135 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
6136 } else {
6137 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
6138 return;
6139
6140 /* Disable internal MAC loopback mode */
6141 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
6142 spin_lock_bh(&tp->lock);
6143 tw32(MAC_MODE, tp->mac_mode);
6144 /* Force link status check */
6145 tg3_setup_phy(tp, 1);
6146 spin_unlock_bh(&tp->lock);
6147 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
6148 }
6149}
6150
Michał Mirosławdc668912011-04-07 03:35:07 +00006151static u32 tg3_fix_features(struct net_device *dev, u32 features)
6152{
6153 struct tg3 *tp = netdev_priv(dev);
6154
Joe Perches63c3a662011-04-26 08:12:10 +00006155 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00006156 features &= ~NETIF_F_ALL_TSO;
6157
6158 return features;
6159}
6160
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006161static int tg3_set_features(struct net_device *dev, u32 features)
6162{
6163 u32 changed = dev->features ^ features;
6164
6165 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
6166 tg3_set_loopback(dev, features);
6167
6168 return 0;
6169}
6170
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
6172 int new_mtu)
6173{
6174 dev->mtu = new_mtu;
6175
Michael Chanef7f5ec2005-07-25 12:32:25 -07006176 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00006177 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00006178 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00006179 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006180 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006181 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006182 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07006183 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006184 if (tg3_flag(tp, 5780_CLASS)) {
6185 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00006186 netdev_update_features(dev);
6187 }
Joe Perches63c3a662011-04-26 08:12:10 +00006188 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07006189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190}
6191
6192static int tg3_change_mtu(struct net_device *dev, int new_mtu)
6193{
6194 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006195 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196
6197 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
6198 return -EINVAL;
6199
6200 if (!netif_running(dev)) {
6201 /* We'll just catch it later when the
6202 * device is up'd.
6203 */
6204 tg3_set_mtu(dev, tp, new_mtu);
6205 return 0;
6206 }
6207
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006208 tg3_phy_stop(tp);
6209
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006211
6212 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213
Michael Chan944d9802005-05-29 14:57:48 -07006214 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215
6216 tg3_set_mtu(dev, tp, new_mtu);
6217
Michael Chanb9ec6c12006-07-25 16:37:27 -07006218 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219
Michael Chanb9ec6c12006-07-25 16:37:27 -07006220 if (!err)
6221 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
David S. Millerf47c11e2005-06-24 20:18:35 -07006223 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006225 if (!err)
6226 tg3_phy_start(tp);
6227
Michael Chanb9ec6c12006-07-25 16:37:27 -07006228 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229}
6230
Matt Carlson21f581a2009-08-28 14:00:25 +00006231static void tg3_rx_prodring_free(struct tg3 *tp,
6232 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 int i;
6235
Matt Carlson8fea32b2010-09-15 08:59:58 +00006236 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006237 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006238 i = (i + 1) & tp->rx_std_ring_mask)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006239 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6240 tp->rx_pkt_map_sz);
6241
Joe Perches63c3a662011-04-26 08:12:10 +00006242 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006243 for (i = tpr->rx_jmb_cons_idx;
6244 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006245 i = (i + 1) & tp->rx_jmb_ring_mask) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006246 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6247 TG3_RX_JMB_MAP_SZ);
6248 }
6249 }
6250
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006251 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
Matt Carlson2c49a442010-09-30 10:34:35 +00006254 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006255 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6256 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
Joe Perches63c3a662011-04-26 08:12:10 +00006258 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006259 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006260 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6261 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262 }
6263}
6264
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006265/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266 *
6267 * The chip has been shut down and the driver detached from
6268 * the networking, so no interrupts or new tx packets will
6269 * end up in the driver. tp->{tx,}lock are held and thus
6270 * we may not sleep.
6271 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006272static int tg3_rx_prodring_alloc(struct tg3 *tp,
6273 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274{
Matt Carlson287be122009-08-28 13:58:46 +00006275 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006277 tpr->rx_std_cons_idx = 0;
6278 tpr->rx_std_prod_idx = 0;
6279 tpr->rx_jmb_cons_idx = 0;
6280 tpr->rx_jmb_prod_idx = 0;
6281
Matt Carlson8fea32b2010-09-15 08:59:58 +00006282 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006283 memset(&tpr->rx_std_buffers[0], 0,
6284 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00006285 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006286 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00006287 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006288 goto done;
6289 }
6290
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00006292 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
Matt Carlson287be122009-08-28 13:58:46 +00006294 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00006295 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006296 tp->dev->mtu > ETH_DATA_LEN)
6297 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6298 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad42005-07-25 12:31:17 -07006299
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300 /* Initialize invariants of the rings, we only set this
6301 * stuff once. This works because the card does not
6302 * write into the rx buffer posting rings.
6303 */
Matt Carlson2c49a442010-09-30 10:34:35 +00006304 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305 struct tg3_rx_buffer_desc *rxd;
6306
Matt Carlson21f581a2009-08-28 14:00:25 +00006307 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006308 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6310 rxd->opaque = (RXD_OPAQUE_RING_STD |
6311 (i << RXD_OPAQUE_INDEX_SHIFT));
6312 }
6313
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006314 /* Now allocate fresh SKBs for each rx ring. */
6315 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006316 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006317 netdev_warn(tp->dev,
6318 "Using a smaller RX standard ring. Only "
6319 "%d out of %d buffers were allocated "
6320 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006321 if (i == 0)
6322 goto initfail;
6323 tp->rx_pending = i;
6324 break;
6325 }
6326 }
6327
Joe Perches63c3a662011-04-26 08:12:10 +00006328 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006329 goto done;
6330
Matt Carlson2c49a442010-09-30 10:34:35 +00006331 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006332
Joe Perches63c3a662011-04-26 08:12:10 +00006333 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00006334 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335
Matt Carlson2c49a442010-09-30 10:34:35 +00006336 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00006337 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338
Matt Carlson0d86df82010-02-17 15:17:00 +00006339 rxd = &tpr->rx_jmb[i].std;
6340 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6341 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6342 RXD_FLAG_JUMBO;
6343 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6344 (i << RXD_OPAQUE_INDEX_SHIFT));
6345 }
6346
6347 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6348 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006349 netdev_warn(tp->dev,
6350 "Using a smaller RX jumbo ring. Only %d "
6351 "out of %d buffers were allocated "
6352 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00006353 if (i == 0)
6354 goto initfail;
6355 tp->rx_jumbo_pending = i;
6356 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357 }
6358 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006359
6360done:
Michael Chan32d8c572006-07-25 16:38:29 -07006361 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006362
6363initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006364 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006365 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366}
6367
Matt Carlson21f581a2009-08-28 14:00:25 +00006368static void tg3_rx_prodring_fini(struct tg3 *tp,
6369 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370{
Matt Carlson21f581a2009-08-28 14:00:25 +00006371 kfree(tpr->rx_std_buffers);
6372 tpr->rx_std_buffers = NULL;
6373 kfree(tpr->rx_jmb_buffers);
6374 tpr->rx_jmb_buffers = NULL;
6375 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006376 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
6377 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006378 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006380 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006381 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
6382 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006383 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006385}
6386
Matt Carlson21f581a2009-08-28 14:00:25 +00006387static int tg3_rx_prodring_init(struct tg3 *tp,
6388 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006389{
Matt Carlson2c49a442010-09-30 10:34:35 +00006390 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
6391 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006392 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006393 return -ENOMEM;
6394
Matt Carlson4bae65c2010-11-24 08:31:52 +00006395 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
6396 TG3_RX_STD_RING_BYTES(tp),
6397 &tpr->rx_std_mapping,
6398 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006399 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006400 goto err_out;
6401
Joe Perches63c3a662011-04-26 08:12:10 +00006402 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006403 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00006404 GFP_KERNEL);
6405 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006406 goto err_out;
6407
Matt Carlson4bae65c2010-11-24 08:31:52 +00006408 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
6409 TG3_RX_JMB_RING_BYTES(tp),
6410 &tpr->rx_jmb_mapping,
6411 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006412 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006413 goto err_out;
6414 }
6415
6416 return 0;
6417
6418err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006419 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006420 return -ENOMEM;
6421}
6422
6423/* Free up pending packets in all rx/tx rings.
6424 *
6425 * The chip has been shut down and the driver detached from
6426 * the networking, so no interrupts or new tx packets will
6427 * end up in the driver. tp->{tx,}lock is not held and we are not
6428 * in an interrupt context and thus may sleep.
6429 */
6430static void tg3_free_rings(struct tg3 *tp)
6431{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006432 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006433
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006434 for (j = 0; j < tp->irq_cnt; j++) {
6435 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006436
Matt Carlson8fea32b2010-09-15 08:59:58 +00006437 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00006438
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006439 if (!tnapi->tx_buffers)
6440 continue;
6441
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006442 for (i = 0; i < TG3_TX_RING_SIZE; ) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006443 struct ring_info *txp;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006444 struct sk_buff *skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006445 unsigned int k;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006446
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006447 txp = &tnapi->tx_buffers[i];
6448 skb = txp->skb;
6449
6450 if (skb == NULL) {
6451 i++;
6452 continue;
6453 }
6454
Alexander Duyckf4188d82009-12-02 16:48:38 +00006455 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006456 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006457 skb_headlen(skb),
6458 PCI_DMA_TODEVICE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006459 txp->skb = NULL;
6460
Alexander Duyckf4188d82009-12-02 16:48:38 +00006461 i++;
6462
6463 for (k = 0; k < skb_shinfo(skb)->nr_frags; k++) {
6464 txp = &tnapi->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
6465 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006466 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006467 skb_shinfo(skb)->frags[k].size,
6468 PCI_DMA_TODEVICE);
6469 i++;
6470 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006471
6472 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006473 }
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006474 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006475}
6476
6477/* Initialize tx/rx rings for packet processing.
6478 *
6479 * The chip has been shut down and the driver detached from
6480 * the networking, so no interrupts or new tx packets will
6481 * end up in the driver. tp->{tx,}lock are held and thus
6482 * we may not sleep.
6483 */
6484static int tg3_init_rings(struct tg3 *tp)
6485{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006486 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006487
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006488 /* Free up all the SKBs. */
6489 tg3_free_rings(tp);
6490
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006491 for (i = 0; i < tp->irq_cnt; i++) {
6492 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006493
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006494 tnapi->last_tag = 0;
6495 tnapi->last_irq_tag = 0;
6496 tnapi->hw_status->status = 0;
6497 tnapi->hw_status->status_tag = 0;
6498 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6499
6500 tnapi->tx_prod = 0;
6501 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006502 if (tnapi->tx_ring)
6503 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006504
6505 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006506 if (tnapi->rx_rcb)
6507 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006508
Matt Carlson8fea32b2010-09-15 08:59:58 +00006509 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00006510 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006511 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006512 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006513 }
Matt Carlson72334482009-08-28 14:03:01 +00006514
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006515 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006516}
6517
6518/*
6519 * Must not be invoked with interrupt sources disabled and
6520 * the hardware shutdown down.
6521 */
6522static void tg3_free_consistent(struct tg3 *tp)
6523{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006524 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006525
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006526 for (i = 0; i < tp->irq_cnt; i++) {
6527 struct tg3_napi *tnapi = &tp->napi[i];
6528
6529 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006530 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006531 tnapi->tx_ring, tnapi->tx_desc_mapping);
6532 tnapi->tx_ring = NULL;
6533 }
6534
6535 kfree(tnapi->tx_buffers);
6536 tnapi->tx_buffers = NULL;
6537
6538 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006539 dma_free_coherent(&tp->pdev->dev,
6540 TG3_RX_RCB_RING_BYTES(tp),
6541 tnapi->rx_rcb,
6542 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006543 tnapi->rx_rcb = NULL;
6544 }
6545
Matt Carlson8fea32b2010-09-15 08:59:58 +00006546 tg3_rx_prodring_fini(tp, &tnapi->prodring);
6547
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006548 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006549 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
6550 tnapi->hw_status,
6551 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006552 tnapi->hw_status = NULL;
6553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006555
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006557 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
6558 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559 tp->hw_stats = NULL;
6560 }
6561}
6562
6563/*
6564 * Must not be invoked with interrupt sources disabled and
6565 * the hardware shutdown down. Can sleep.
6566 */
6567static int tg3_alloc_consistent(struct tg3 *tp)
6568{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006569 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006570
Matt Carlson4bae65c2010-11-24 08:31:52 +00006571 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
6572 sizeof(struct tg3_hw_stats),
6573 &tp->stats_mapping,
6574 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575 if (!tp->hw_stats)
6576 goto err_out;
6577
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6579
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006580 for (i = 0; i < tp->irq_cnt; i++) {
6581 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006582 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006583
Matt Carlson4bae65c2010-11-24 08:31:52 +00006584 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
6585 TG3_HW_STATUS_SIZE,
6586 &tnapi->status_mapping,
6587 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006588 if (!tnapi->hw_status)
6589 goto err_out;
6590
6591 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006592 sblk = tnapi->hw_status;
6593
Matt Carlson8fea32b2010-09-15 08:59:58 +00006594 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
6595 goto err_out;
6596
Matt Carlson19cfaec2009-12-03 08:36:20 +00006597 /* If multivector TSS is enabled, vector 0 does not handle
6598 * tx interrupts. Don't allocate any resources for it.
6599 */
Joe Perches63c3a662011-04-26 08:12:10 +00006600 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
6601 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00006602 tnapi->tx_buffers = kzalloc(sizeof(struct ring_info) *
6603 TG3_TX_RING_SIZE,
6604 GFP_KERNEL);
6605 if (!tnapi->tx_buffers)
6606 goto err_out;
6607
Matt Carlson4bae65c2010-11-24 08:31:52 +00006608 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
6609 TG3_TX_RING_BYTES,
6610 &tnapi->tx_desc_mapping,
6611 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00006612 if (!tnapi->tx_ring)
6613 goto err_out;
6614 }
6615
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006616 /*
6617 * When RSS is enabled, the status block format changes
6618 * slightly. The "rx_jumbo_consumer", "reserved",
6619 * and "rx_mini_consumer" members get mapped to the
6620 * other three rx return ring producer indexes.
6621 */
6622 switch (i) {
6623 default:
6624 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6625 break;
6626 case 2:
6627 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6628 break;
6629 case 3:
6630 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6631 break;
6632 case 4:
6633 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6634 break;
6635 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006636
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006637 /*
6638 * If multivector RSS is enabled, vector 0 does not handle
6639 * rx or tx interrupts. Don't allocate any resources for it.
6640 */
Joe Perches63c3a662011-04-26 08:12:10 +00006641 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006642 continue;
6643
Matt Carlson4bae65c2010-11-24 08:31:52 +00006644 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
6645 TG3_RX_RCB_RING_BYTES(tp),
6646 &tnapi->rx_rcb_mapping,
6647 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006648 if (!tnapi->rx_rcb)
6649 goto err_out;
6650
6651 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006652 }
6653
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654 return 0;
6655
6656err_out:
6657 tg3_free_consistent(tp);
6658 return -ENOMEM;
6659}
6660
6661#define MAX_WAIT_CNT 1000
6662
6663/* To stop a block, clear the enable bit and poll till it
6664 * clears. tp->lock is held.
6665 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006666static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667{
6668 unsigned int i;
6669 u32 val;
6670
Joe Perches63c3a662011-04-26 08:12:10 +00006671 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672 switch (ofs) {
6673 case RCVLSC_MODE:
6674 case DMAC_MODE:
6675 case MBFREE_MODE:
6676 case BUFMGR_MODE:
6677 case MEMARB_MODE:
6678 /* We can't enable/disable these bits of the
6679 * 5705/5750, just say success.
6680 */
6681 return 0;
6682
6683 default:
6684 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686 }
6687
6688 val = tr32(ofs);
6689 val &= ~enable_bit;
6690 tw32_f(ofs, val);
6691
6692 for (i = 0; i < MAX_WAIT_CNT; i++) {
6693 udelay(100);
6694 val = tr32(ofs);
6695 if ((val & enable_bit) == 0)
6696 break;
6697 }
6698
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006699 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00006700 dev_err(&tp->pdev->dev,
6701 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
6702 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703 return -ENODEV;
6704 }
6705
6706 return 0;
6707}
6708
6709/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006710static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711{
6712 int i, err;
6713
6714 tg3_disable_ints(tp);
6715
6716 tp->rx_mode &= ~RX_MODE_ENABLE;
6717 tw32_f(MAC_RX_MODE, tp->rx_mode);
6718 udelay(10);
6719
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006720 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6721 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6722 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6723 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6724 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6725 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006727 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6728 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6729 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6730 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6731 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6732 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6733 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734
6735 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6736 tw32_f(MAC_MODE, tp->mac_mode);
6737 udelay(40);
6738
6739 tp->tx_mode &= ~TX_MODE_ENABLE;
6740 tw32_f(MAC_TX_MODE, tp->tx_mode);
6741
6742 for (i = 0; i < MAX_WAIT_CNT; i++) {
6743 udelay(100);
6744 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6745 break;
6746 }
6747 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00006748 dev_err(&tp->pdev->dev,
6749 "%s timed out, TX_MODE_ENABLE will not clear "
6750 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006751 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752 }
6753
Michael Chane6de8ad2005-05-05 14:42:41 -07006754 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006755 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6756 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757
6758 tw32(FTQ_RESET, 0xffffffff);
6759 tw32(FTQ_RESET, 0x00000000);
6760
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006761 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6762 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006764 for (i = 0; i < tp->irq_cnt; i++) {
6765 struct tg3_napi *tnapi = &tp->napi[i];
6766 if (tnapi->hw_status)
6767 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 if (tp->hw_stats)
6770 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6771
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772 return err;
6773}
6774
Matt Carlson0d3031d2007-10-10 18:02:43 -07006775static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6776{
6777 int i;
6778 u32 apedata;
6779
Matt Carlsondc6d0742010-09-15 08:59:55 +00006780 /* NCSI does not support APE events */
Joe Perches63c3a662011-04-26 08:12:10 +00006781 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsondc6d0742010-09-15 08:59:55 +00006782 return;
6783
Matt Carlson0d3031d2007-10-10 18:02:43 -07006784 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6785 if (apedata != APE_SEG_SIG_MAGIC)
6786 return;
6787
6788 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006789 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006790 return;
6791
6792 /* Wait for up to 1 millisecond for APE to service previous event. */
6793 for (i = 0; i < 10; i++) {
6794 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6795 return;
6796
6797 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6798
6799 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6800 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6801 event | APE_EVENT_STATUS_EVENT_PENDING);
6802
6803 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6804
6805 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6806 break;
6807
6808 udelay(100);
6809 }
6810
6811 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6812 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6813}
6814
6815static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6816{
6817 u32 event;
6818 u32 apedata;
6819
Joe Perches63c3a662011-04-26 08:12:10 +00006820 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006821 return;
6822
6823 switch (kind) {
Matt Carlson33f401a2010-04-05 10:19:27 +00006824 case RESET_KIND_INIT:
6825 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6826 APE_HOST_SEG_SIG_MAGIC);
6827 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6828 APE_HOST_SEG_LEN_MAGIC);
6829 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6830 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6831 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
Matt Carlson6867c842010-07-11 09:31:44 +00006832 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
Matt Carlson33f401a2010-04-05 10:19:27 +00006833 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6834 APE_HOST_BEHAV_NO_PHYLOCK);
Matt Carlsondc6d0742010-09-15 08:59:55 +00006835 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
6836 TG3_APE_HOST_DRVR_STATE_START);
Matt Carlson0d3031d2007-10-10 18:02:43 -07006837
Matt Carlson33f401a2010-04-05 10:19:27 +00006838 event = APE_EVENT_STATUS_STATE_START;
6839 break;
6840 case RESET_KIND_SHUTDOWN:
6841 /* With the interface we are currently using,
6842 * APE does not track driver state. Wiping
6843 * out the HOST SEGMENT SIGNATURE forces
6844 * the APE to assume OS absent status.
6845 */
6846 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
Matt Carlsonb2aee152008-11-03 16:51:11 -08006847
Matt Carlsondc6d0742010-09-15 08:59:55 +00006848 if (device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006849 tg3_flag(tp, WOL_ENABLE)) {
Matt Carlsondc6d0742010-09-15 08:59:55 +00006850 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
6851 TG3_APE_HOST_WOL_SPEED_AUTO);
6852 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
6853 } else
6854 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
6855
6856 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
6857
Matt Carlson33f401a2010-04-05 10:19:27 +00006858 event = APE_EVENT_STATUS_STATE_UNLOAD;
6859 break;
6860 case RESET_KIND_SUSPEND:
6861 event = APE_EVENT_STATUS_STATE_SUSPEND;
6862 break;
6863 default:
6864 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -07006865 }
6866
6867 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
6868
6869 tg3_ape_send_event(tp, event);
6870}
6871
Michael Chane6af3012005-04-21 17:12:05 -07006872/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
6874{
David S. Millerf49639e2006-06-09 11:58:36 -07006875 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
6876 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
Joe Perches63c3a662011-04-26 08:12:10 +00006878 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879 switch (kind) {
6880 case RESET_KIND_INIT:
6881 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6882 DRV_STATE_START);
6883 break;
6884
6885 case RESET_KIND_SHUTDOWN:
6886 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6887 DRV_STATE_UNLOAD);
6888 break;
6889
6890 case RESET_KIND_SUSPEND:
6891 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6892 DRV_STATE_SUSPEND);
6893 break;
6894
6895 default:
6896 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006899
6900 if (kind == RESET_KIND_INIT ||
6901 kind == RESET_KIND_SUSPEND)
6902 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903}
6904
6905/* tp->lock is held. */
6906static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
6907{
Joe Perches63c3a662011-04-26 08:12:10 +00006908 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909 switch (kind) {
6910 case RESET_KIND_INIT:
6911 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6912 DRV_STATE_START_DONE);
6913 break;
6914
6915 case RESET_KIND_SHUTDOWN:
6916 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6917 DRV_STATE_UNLOAD_DONE);
6918 break;
6919
6920 default:
6921 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006923 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006924
6925 if (kind == RESET_KIND_SHUTDOWN)
6926 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927}
6928
6929/* tp->lock is held. */
6930static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
6931{
Joe Perches63c3a662011-04-26 08:12:10 +00006932 if (tg3_flag(tp, ENABLE_ASF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933 switch (kind) {
6934 case RESET_KIND_INIT:
6935 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6936 DRV_STATE_START);
6937 break;
6938
6939 case RESET_KIND_SHUTDOWN:
6940 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6941 DRV_STATE_UNLOAD);
6942 break;
6943
6944 case RESET_KIND_SUSPEND:
6945 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6946 DRV_STATE_SUSPEND);
6947 break;
6948
6949 default:
6950 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952 }
6953}
6954
Michael Chan7a6f4362006-09-27 16:03:31 -07006955static int tg3_poll_fw(struct tg3 *tp)
6956{
6957 int i;
6958 u32 val;
6959
Michael Chanb5d37722006-09-27 16:06:21 -07006960 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08006961 /* Wait up to 20ms for init done. */
6962 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07006963 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
6964 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08006965 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07006966 }
6967 return -ENODEV;
6968 }
6969
Michael Chan7a6f4362006-09-27 16:03:31 -07006970 /* Wait for firmware initialization to complete. */
6971 for (i = 0; i < 100000; i++) {
6972 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
6973 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
6974 break;
6975 udelay(10);
6976 }
6977
6978 /* Chip might not be fitted with firmware. Some Sun onboard
6979 * parts are configured like that. So don't signal the timeout
6980 * of the above loop as an error, but do report the lack of
6981 * running firmware once.
6982 */
Joe Perches63c3a662011-04-26 08:12:10 +00006983 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
6984 tg3_flag_set(tp, NO_FWARE_REPORTED);
Michael Chan7a6f4362006-09-27 16:03:31 -07006985
Joe Perches05dbe002010-02-17 19:44:19 +00006986 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07006987 }
6988
Matt Carlson6b10c162010-02-12 14:47:08 +00006989 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
6990 /* The 57765 A0 needs a little more
6991 * time to do some important work.
6992 */
6993 mdelay(10);
6994 }
6995
Michael Chan7a6f4362006-09-27 16:03:31 -07006996 return 0;
6997}
6998
Michael Chanee6a99b2007-07-18 21:49:10 -07006999/* Save PCI command register before chip reset */
7000static void tg3_save_pci_state(struct tg3 *tp)
7001{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007002 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007003}
7004
7005/* Restore PCI state after chip reset */
7006static void tg3_restore_pci_state(struct tg3 *tp)
7007{
7008 u32 val;
7009
7010 /* Re-enable indirect register accesses. */
7011 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7012 tp->misc_host_ctrl);
7013
7014 /* Set MAX PCI retry to zero. */
7015 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7016 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007017 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007018 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007019 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007020 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007021 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007022 PCISTATE_ALLOW_APE_SHMEM_WR |
7023 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007024 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7025
Matt Carlson8a6eac92007-10-21 16:17:55 -07007026 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007027
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007028 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +00007029 if (tg3_flag(tp, PCI_EXPRESS))
Matt Carlsoncf790032010-11-24 08:31:48 +00007030 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007031 else {
7032 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7033 tp->pci_cacheline_sz);
7034 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7035 tp->pci_lat_timer);
7036 }
Michael Chan114342f2007-10-15 02:12:26 -07007037 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007038
Michael Chanee6a99b2007-07-18 21:49:10 -07007039 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007040 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007041 u16 pcix_cmd;
7042
7043 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7044 &pcix_cmd);
7045 pcix_cmd &= ~PCI_X_CMD_ERO;
7046 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7047 pcix_cmd);
7048 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007049
Joe Perches63c3a662011-04-26 08:12:10 +00007050 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007051
7052 /* Chip reset on 5780 will reset MSI enable bit,
7053 * so need to restore it.
7054 */
Joe Perches63c3a662011-04-26 08:12:10 +00007055 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007056 u16 ctrl;
7057
7058 pci_read_config_word(tp->pdev,
7059 tp->msi_cap + PCI_MSI_FLAGS,
7060 &ctrl);
7061 pci_write_config_word(tp->pdev,
7062 tp->msi_cap + PCI_MSI_FLAGS,
7063 ctrl | PCI_MSI_FLAGS_ENABLE);
7064 val = tr32(MSGINT_MODE);
7065 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7066 }
7067 }
7068}
7069
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070static void tg3_stop_fw(struct tg3 *);
7071
7072/* tp->lock is held. */
7073static int tg3_chip_reset(struct tg3 *tp)
7074{
7075 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007076 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007077 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078
David S. Millerf49639e2006-06-09 11:58:36 -07007079 tg3_nvram_lock(tp);
7080
Matt Carlson77b483f2008-08-15 14:07:24 -07007081 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7082
David S. Millerf49639e2006-06-09 11:58:36 -07007083 /* No matching tg3_nvram_unlock() after this because
7084 * chip reset below will undo the nvram lock.
7085 */
7086 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087
Michael Chanee6a99b2007-07-18 21:49:10 -07007088 /* GRC_MISC_CFG core clock reset will clear the memory
7089 * enable bit in PCI register 4 and the MSI enable bit
7090 * on some chips, so we save relevant registers here.
7091 */
7092 tg3_save_pci_state(tp);
7093
Michael Chand9ab5ad12006-03-20 22:27:35 -08007094 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007095 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08007096 tw32(GRC_FASTBOOT_PC, 0);
7097
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098 /*
7099 * We must avoid the readl() that normally takes place.
7100 * It locks machines, causes machine checks, and other
7101 * fun things. So, temporarily disable the 5701
7102 * hardware workaround, while we do the reset.
7103 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007104 write_op = tp->write32;
7105 if (write_op == tg3_write_flush_reg32)
7106 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107
Michael Chand18edcb2007-03-24 20:57:11 -07007108 /* Prevent the irq handler from reading or writing PCI registers
7109 * during chip reset when the memory enable bit in the PCI command
7110 * register may be cleared. The chip does not generate interrupt
7111 * at this time, but the irq handler may still be called due to irq
7112 * sharing or irqpoll.
7113 */
Joe Perches63c3a662011-04-26 08:12:10 +00007114 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007115 for (i = 0; i < tp->irq_cnt; i++) {
7116 struct tg3_napi *tnapi = &tp->napi[i];
7117 if (tnapi->hw_status) {
7118 tnapi->hw_status->status = 0;
7119 tnapi->hw_status->status_tag = 0;
7120 }
7121 tnapi->last_tag = 0;
7122 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007123 }
Michael Chand18edcb2007-03-24 20:57:11 -07007124 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007125
7126 for (i = 0; i < tp->irq_cnt; i++)
7127 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007128
Matt Carlson255ca312009-08-25 10:07:27 +00007129 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7130 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7131 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7132 }
7133
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134 /* do the reset */
7135 val = GRC_MISC_CFG_CORECLK_RESET;
7136
Joe Perches63c3a662011-04-26 08:12:10 +00007137 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007138 /* Force PCIe 1.0a mode */
7139 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007140 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007141 tr32(TG3_PCIE_PHY_TSTCTL) ==
7142 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7143 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7144
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7146 tw32(GRC_MISC_CFG, (1 << 29));
7147 val |= (1 << 29);
7148 }
7149 }
7150
Michael Chanb5d37722006-09-27 16:06:21 -07007151 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7152 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7153 tw32(GRC_VCPU_EXT_CTRL,
7154 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7155 }
7156
Matt Carlsonf37500d2010-08-02 11:25:59 +00007157 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007158 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007160
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161 tw32(GRC_MISC_CFG, val);
7162
Michael Chan1ee582d2005-08-09 20:16:46 -07007163 /* restore 5701 hardware bug workaround write method */
7164 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165
7166 /* Unfortunately, we have to delay before the PCI read back.
7167 * Some 575X chips even will not respond to a PCI cfg access
7168 * when the reset command is given to the chip.
7169 *
7170 * How do these hardware designers expect things to work
7171 * properly if the PCI write is posted for a long period
7172 * of time? It is always necessary to have some method by
7173 * which a register read back can occur to push the write
7174 * out which does the reset.
7175 *
7176 * For most tg3 variants the trick below was working.
7177 * Ho hum...
7178 */
7179 udelay(120);
7180
7181 /* Flush PCI posted writes. The normal MMIO registers
7182 * are inaccessible at this time so this is the only
7183 * way to make this reliably (actually, this is no longer
7184 * the case, see above). I tried to use indirect
7185 * register read/write but this upset some 5701 variants.
7186 */
7187 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7188
7189 udelay(120);
7190
Joe Perches63c3a662011-04-26 08:12:10 +00007191 if (tg3_flag(tp, PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00007192 u16 val16;
7193
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7195 int i;
7196 u32 cfg_val;
7197
7198 /* Wait for link training to complete. */
7199 for (i = 0; i < 5000; i++)
7200 udelay(100);
7201
7202 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7203 pci_write_config_dword(tp->pdev, 0xc4,
7204 cfg_val | (1 << 15));
7205 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007206
Matt Carlsone7126992009-08-25 10:08:16 +00007207 /* Clear the "no snoop" and "relaxed ordering" bits. */
7208 pci_read_config_word(tp->pdev,
7209 tp->pcie_cap + PCI_EXP_DEVCTL,
7210 &val16);
7211 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7212 PCI_EXP_DEVCTL_NOSNOOP_EN);
7213 /*
7214 * Older PCIe devices only support the 128 byte
7215 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007216 */
Joe Perches63c3a662011-04-26 08:12:10 +00007217 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007218 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007219 pci_write_config_word(tp->pdev,
7220 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007221 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007222
Matt Carlsoncf790032010-11-24 08:31:48 +00007223 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007224
7225 /* Clear error status */
7226 pci_write_config_word(tp->pdev,
7227 tp->pcie_cap + PCI_EXP_DEVSTA,
7228 PCI_EXP_DEVSTA_CED |
7229 PCI_EXP_DEVSTA_NFED |
7230 PCI_EXP_DEVSTA_FED |
7231 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232 }
7233
Michael Chanee6a99b2007-07-18 21:49:10 -07007234 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007235
Joe Perches63c3a662011-04-26 08:12:10 +00007236 tg3_flag_clear(tp, CHIP_RESETTING);
7237 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007238
Michael Chanee6a99b2007-07-18 21:49:10 -07007239 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007240 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007241 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007242 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
7244 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7245 tg3_stop_fw(tp);
7246 tw32(0x5000, 0x400);
7247 }
7248
7249 tw32(GRC_MODE, tp->grc_mode);
7250
7251 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007252 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253
7254 tw32(0xc4, val | (1 << 15));
7255 }
7256
7257 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7258 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7259 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7260 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7261 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7262 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7263 }
7264
Joe Perches63c3a662011-04-26 08:12:10 +00007265 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007266 tp->mac_mode = MAC_MODE_APE_TX_EN |
7267 MAC_MODE_APE_RX_EN |
7268 MAC_MODE_TDE_ENABLE;
7269
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007270 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007271 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
7272 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007273 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007274 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7275 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007277 val = 0;
7278
7279 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280 udelay(40);
7281
Matt Carlson77b483f2008-08-15 14:07:24 -07007282 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7283
Michael Chan7a6f4362006-09-27 16:03:31 -07007284 err = tg3_poll_fw(tp);
7285 if (err)
7286 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287
Matt Carlson0a9140c2009-08-28 12:27:50 +00007288 tg3_mdio_start(tp);
7289
Joe Perches63c3a662011-04-26 08:12:10 +00007290 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007291 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7292 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007293 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007294 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295
7296 tw32(0x7c00, val | (1 << 25));
7297 }
7298
Matt Carlsond78b59f2011-04-05 14:22:46 +00007299 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7300 val = tr32(TG3_CPMU_CLCK_ORIDE);
7301 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7302 }
7303
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007305 tg3_flag_clear(tp, ENABLE_ASF);
7306 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7308 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7309 u32 nic_cfg;
7310
7311 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7312 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007313 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007314 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007315 if (tg3_flag(tp, 5750_PLUS))
7316 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317 }
7318 }
7319
7320 return 0;
7321}
7322
7323/* tp->lock is held. */
7324static void tg3_stop_fw(struct tg3 *tp)
7325{
Joe Perches63c3a662011-04-26 08:12:10 +00007326 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007327 /* Wait for RX cpu to ACK the previous event. */
7328 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329
7330 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007331
7332 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333
Matt Carlson7c5026a2008-05-02 16:49:29 -07007334 /* Wait for RX cpu to ACK this event. */
7335 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336 }
7337}
7338
7339/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007340static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341{
7342 int err;
7343
7344 tg3_stop_fw(tp);
7345
Michael Chan944d9802005-05-29 14:57:48 -07007346 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007348 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349 err = tg3_chip_reset(tp);
7350
Matt Carlsondaba2a62009-04-20 06:58:52 +00007351 __tg3_set_mac_addr(tp, 0);
7352
Michael Chan944d9802005-05-29 14:57:48 -07007353 tg3_write_sig_legacy(tp, kind);
7354 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355
7356 if (err)
7357 return err;
7358
7359 return 0;
7360}
7361
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362#define RX_CPU_SCRATCH_BASE 0x30000
7363#define RX_CPU_SCRATCH_SIZE 0x04000
7364#define TX_CPU_SCRATCH_BASE 0x34000
7365#define TX_CPU_SCRATCH_SIZE 0x04000
7366
7367/* tp->lock is held. */
7368static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7369{
7370 int i;
7371
Joe Perches63c3a662011-04-26 08:12:10 +00007372 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373
Michael Chanb5d37722006-09-27 16:06:21 -07007374 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7375 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7376
7377 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7378 return 0;
7379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380 if (offset == RX_CPU_BASE) {
7381 for (i = 0; i < 10000; i++) {
7382 tw32(offset + CPU_STATE, 0xffffffff);
7383 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7384 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7385 break;
7386 }
7387
7388 tw32(offset + CPU_STATE, 0xffffffff);
7389 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7390 udelay(10);
7391 } else {
7392 for (i = 0; i < 10000; i++) {
7393 tw32(offset + CPU_STATE, 0xffffffff);
7394 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7395 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7396 break;
7397 }
7398 }
7399
7400 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007401 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7402 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403 return -ENODEV;
7404 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007405
7406 /* Clear firmware's nvram arbitration. */
Joe Perches63c3a662011-04-26 08:12:10 +00007407 if (tg3_flag(tp, NVRAM))
Michael Chanec41c7d2006-01-17 02:40:55 -08007408 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409 return 0;
7410}
7411
7412struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007413 unsigned int fw_base;
7414 unsigned int fw_len;
7415 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416};
7417
7418/* tp->lock is held. */
7419static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7420 int cpu_scratch_size, struct fw_info *info)
7421{
Michael Chanec41c7d2006-01-17 02:40:55 -08007422 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007423 void (*write_op)(struct tg3 *, u32, u32);
7424
Joe Perches63c3a662011-04-26 08:12:10 +00007425 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007426 netdev_err(tp->dev,
7427 "%s: Trying to load TX cpu firmware which is 5705\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007428 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429 return -EINVAL;
7430 }
7431
Joe Perches63c3a662011-04-26 08:12:10 +00007432 if (tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433 write_op = tg3_write_mem;
7434 else
7435 write_op = tg3_write_indirect_reg32;
7436
Michael Chan1b628152005-05-29 14:59:49 -07007437 /* It is possible that bootcode is still loading at this point.
7438 * Get the nvram lock first before halting the cpu.
7439 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007440 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007442 if (!lock_err)
7443 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444 if (err)
7445 goto out;
7446
7447 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7448 write_op(tp, cpu_scratch_base + i, 0);
7449 tw32(cpu_base + CPU_STATE, 0xffffffff);
7450 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007451 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007453 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007455 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456
7457 err = 0;
7458
7459out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460 return err;
7461}
7462
7463/* tp->lock is held. */
7464static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7465{
7466 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007467 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468 int err, i;
7469
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007470 fw_data = (void *)tp->fw->data;
7471
7472 /* Firmware blob starts with version numbers, followed by
7473 start address and length. We are setting complete length.
7474 length = end_address_of_bss - start_address_of_text.
7475 Remainder is the blob to be loaded contiguously
7476 from start address. */
7477
7478 info.fw_base = be32_to_cpu(fw_data[1]);
7479 info.fw_len = tp->fw->size - 12;
7480 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481
7482 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7483 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7484 &info);
7485 if (err)
7486 return err;
7487
7488 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7489 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7490 &info);
7491 if (err)
7492 return err;
7493
7494 /* Now startup only the RX cpu. */
7495 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007496 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497
7498 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007499 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500 break;
7501 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7502 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007503 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504 udelay(1000);
7505 }
7506 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007507 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
7508 "should be %08x\n", __func__,
Joe Perches05dbe002010-02-17 19:44:19 +00007509 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510 return -ENODEV;
7511 }
7512 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7513 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7514
7515 return 0;
7516}
7517
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518/* tp->lock is held. */
7519static int tg3_load_tso_firmware(struct tg3 *tp)
7520{
7521 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007522 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7524 int err, i;
7525
Joe Perches63c3a662011-04-26 08:12:10 +00007526 if (tg3_flag(tp, HW_TSO_1) ||
7527 tg3_flag(tp, HW_TSO_2) ||
7528 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007529 return 0;
7530
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007531 fw_data = (void *)tp->fw->data;
7532
7533 /* Firmware blob starts with version numbers, followed by
7534 start address and length. We are setting complete length.
7535 length = end_address_of_bss - start_address_of_text.
7536 Remainder is the blob to be loaded contiguously
7537 from start address. */
7538
7539 info.fw_base = be32_to_cpu(fw_data[1]);
7540 cpu_scratch_size = tp->fw_len;
7541 info.fw_len = tp->fw->size - 12;
7542 info.fw_data = &fw_data[3];
7543
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545 cpu_base = RX_CPU_BASE;
7546 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007548 cpu_base = TX_CPU_BASE;
7549 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7550 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7551 }
7552
7553 err = tg3_load_firmware_cpu(tp, cpu_base,
7554 cpu_scratch_base, cpu_scratch_size,
7555 &info);
7556 if (err)
7557 return err;
7558
7559 /* Now startup the cpu. */
7560 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007561 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007562
7563 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007564 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565 break;
7566 tw32(cpu_base + CPU_STATE, 0xffffffff);
7567 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007568 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 udelay(1000);
7570 }
7571 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007572 netdev_err(tp->dev,
7573 "%s fails to set CPU PC, is %08x should be %08x\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007574 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575 return -ENODEV;
7576 }
7577 tw32(cpu_base + CPU_STATE, 0xffffffff);
7578 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7579 return 0;
7580}
7581
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582
Linus Torvalds1da177e2005-04-16 15:20:36 -07007583static int tg3_set_mac_addr(struct net_device *dev, void *p)
7584{
7585 struct tg3 *tp = netdev_priv(dev);
7586 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007587 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588
Michael Chanf9804dd2005-09-27 12:13:10 -07007589 if (!is_valid_ether_addr(addr->sa_data))
7590 return -EINVAL;
7591
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7593
Michael Chane75f7c92006-03-20 21:33:26 -08007594 if (!netif_running(dev))
7595 return 0;
7596
Joe Perches63c3a662011-04-26 08:12:10 +00007597 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007598 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007599
Michael Chan986e0ae2007-05-05 12:10:20 -07007600 addr0_high = tr32(MAC_ADDR_0_HIGH);
7601 addr0_low = tr32(MAC_ADDR_0_LOW);
7602 addr1_high = tr32(MAC_ADDR_1_HIGH);
7603 addr1_low = tr32(MAC_ADDR_1_LOW);
7604
7605 /* Skip MAC addr 1 if ASF is using it. */
7606 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7607 !(addr1_high == 0 && addr1_low == 0))
7608 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007609 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007610 spin_lock_bh(&tp->lock);
7611 __tg3_set_mac_addr(tp, skip_mac_1);
7612 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
Michael Chanb9ec6c12006-07-25 16:37:27 -07007614 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615}
7616
7617/* tp->lock is held. */
7618static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7619 dma_addr_t mapping, u32 maxlen_flags,
7620 u32 nic_addr)
7621{
7622 tg3_write_mem(tp,
7623 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7624 ((u64) mapping >> 32));
7625 tg3_write_mem(tp,
7626 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7627 ((u64) mapping & 0xffffffff));
7628 tg3_write_mem(tp,
7629 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7630 maxlen_flags);
7631
Joe Perches63c3a662011-04-26 08:12:10 +00007632 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633 tg3_write_mem(tp,
7634 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7635 nic_addr);
7636}
7637
7638static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007639static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007640{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007641 int i;
7642
Joe Perches63c3a662011-04-26 08:12:10 +00007643 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007644 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7645 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7646 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007647 } else {
7648 tw32(HOSTCC_TXCOL_TICKS, 0);
7649 tw32(HOSTCC_TXMAX_FRAMES, 0);
7650 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007651 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007652
Joe Perches63c3a662011-04-26 08:12:10 +00007653 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007654 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7655 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7656 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7657 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007658 tw32(HOSTCC_RXCOL_TICKS, 0);
7659 tw32(HOSTCC_RXMAX_FRAMES, 0);
7660 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007661 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007662
Joe Perches63c3a662011-04-26 08:12:10 +00007663 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07007664 u32 val = ec->stats_block_coalesce_usecs;
7665
Matt Carlsonb6080e12009-09-01 13:12:00 +00007666 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7667 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7668
David S. Miller15f98502005-05-18 22:49:26 -07007669 if (!netif_carrier_ok(tp->dev))
7670 val = 0;
7671
7672 tw32(HOSTCC_STAT_COAL_TICKS, val);
7673 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007674
7675 for (i = 0; i < tp->irq_cnt - 1; i++) {
7676 u32 reg;
7677
7678 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7679 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007680 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7681 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007682 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7683 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007684
Joe Perches63c3a662011-04-26 08:12:10 +00007685 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007686 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7687 tw32(reg, ec->tx_coalesce_usecs);
7688 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7689 tw32(reg, ec->tx_max_coalesced_frames);
7690 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7691 tw32(reg, ec->tx_max_coalesced_frames_irq);
7692 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007693 }
7694
7695 for (; i < tp->irq_max - 1; i++) {
7696 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007697 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007698 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007699
Joe Perches63c3a662011-04-26 08:12:10 +00007700 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007701 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7702 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7703 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7704 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007705 }
David S. Miller15f98502005-05-18 22:49:26 -07007706}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707
7708/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007709static void tg3_rings_reset(struct tg3 *tp)
7710{
7711 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007712 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007713 struct tg3_napi *tnapi = &tp->napi[0];
7714
7715 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007716 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007717 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00007718 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00007719 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlsonb703df62009-12-03 08:36:21 +00007720 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7721 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007722 else
7723 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7724
7725 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7726 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7727 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7728 BDINFO_FLAGS_DISABLED);
7729
7730
7731 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007732 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007733 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00007734 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007735 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007736 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7737 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007738 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7739 else
7740 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7741
7742 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7743 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7744 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7745 BDINFO_FLAGS_DISABLED);
7746
7747 /* Disable interrupts */
7748 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
7749
7750 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00007751 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00007752 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007753 tp->napi[i].tx_prod = 0;
7754 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007755 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007756 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007757 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7758 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
7759 }
Joe Perches63c3a662011-04-26 08:12:10 +00007760 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007761 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007762 } else {
7763 tp->napi[0].tx_prod = 0;
7764 tp->napi[0].tx_cons = 0;
7765 tw32_mailbox(tp->napi[0].prodmbox, 0);
7766 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7767 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007768
7769 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00007770 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00007771 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7772 for (i = 0; i < 16; i++)
7773 tw32_tx_mbox(mbox + i * 8, 0);
7774 }
7775
7776 txrcb = NIC_SRAM_SEND_RCB;
7777 rxrcb = NIC_SRAM_RCV_RET_RCB;
7778
7779 /* Clear status block in ram. */
7780 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7781
7782 /* Set status block DMA address */
7783 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7784 ((u64) tnapi->status_mapping >> 32));
7785 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7786 ((u64) tnapi->status_mapping & 0xffffffff));
7787
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007788 if (tnapi->tx_ring) {
7789 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7790 (TG3_TX_RING_SIZE <<
7791 BDINFO_FLAGS_MAXLEN_SHIFT),
7792 NIC_SRAM_TX_BUFFER_DESC);
7793 txrcb += TG3_BDINFO_SIZE;
7794 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007795
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007796 if (tnapi->rx_rcb) {
7797 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007798 (tp->rx_ret_ring_mask + 1) <<
7799 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007800 rxrcb += TG3_BDINFO_SIZE;
7801 }
7802
7803 stblk = HOSTCC_STATBLCK_RING1;
7804
7805 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7806 u64 mapping = (u64)tnapi->status_mapping;
7807 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7808 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7809
7810 /* Clear status block in ram. */
7811 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7812
Matt Carlson19cfaec2009-12-03 08:36:20 +00007813 if (tnapi->tx_ring) {
7814 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7815 (TG3_TX_RING_SIZE <<
7816 BDINFO_FLAGS_MAXLEN_SHIFT),
7817 NIC_SRAM_TX_BUFFER_DESC);
7818 txrcb += TG3_BDINFO_SIZE;
7819 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007820
7821 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007822 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007823 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7824
7825 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007826 rxrcb += TG3_BDINFO_SIZE;
7827 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007828}
7829
Matt Carlsoneb07a942011-04-20 07:57:36 +00007830static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
7831{
7832 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
7833
Joe Perches63c3a662011-04-26 08:12:10 +00007834 if (!tg3_flag(tp, 5750_PLUS) ||
7835 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00007836 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
7837 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
7838 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
7839 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7840 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
7841 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
7842 else
7843 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
7844
7845 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
7846 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
7847
7848 val = min(nic_rep_thresh, host_rep_thresh);
7849 tw32(RCVBDI_STD_THRESH, val);
7850
Joe Perches63c3a662011-04-26 08:12:10 +00007851 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007852 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
7853
Joe Perches63c3a662011-04-26 08:12:10 +00007854 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007855 return;
7856
Joe Perches63c3a662011-04-26 08:12:10 +00007857 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007858 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
7859 else
7860 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5717;
7861
7862 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
7863
7864 val = min(bdcache_maxcnt / 2, host_rep_thresh);
7865 tw32(RCVBDI_JUMBO_THRESH, val);
7866
Joe Perches63c3a662011-04-26 08:12:10 +00007867 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007868 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
7869}
7870
Matt Carlson2d31eca2009-09-01 12:53:31 +00007871/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007872static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873{
7874 u32 val, rdmac_mode;
7875 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00007876 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007877
7878 tg3_disable_ints(tp);
7879
7880 tg3_stop_fw(tp);
7881
7882 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
7883
Joe Perches63c3a662011-04-26 08:12:10 +00007884 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07007885 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886
Matt Carlson699c0192010-12-06 08:28:51 +00007887 /* Enable MAC control of LPI */
7888 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
7889 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
7890 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
7891 TG3_CPMU_EEE_LNKIDL_UART_IDL);
7892
7893 tw32_f(TG3_CPMU_EEE_CTRL,
7894 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
7895
Matt Carlsona386b902010-12-06 08:28:53 +00007896 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
7897 TG3_CPMU_EEEMD_LPI_IN_TX |
7898 TG3_CPMU_EEEMD_LPI_IN_RX |
7899 TG3_CPMU_EEEMD_EEE_ENABLE;
7900
7901 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
7902 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
7903
Joe Perches63c3a662011-04-26 08:12:10 +00007904 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00007905 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
7906
7907 tw32_f(TG3_CPMU_EEE_MODE, val);
7908
7909 tw32_f(TG3_CPMU_EEE_DBTMR1,
7910 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
7911 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
7912
7913 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00007914 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00007915 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00007916 }
7917
Matt Carlson603f1172010-02-12 14:47:10 +00007918 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08007919 tg3_phy_reset(tp);
7920
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921 err = tg3_chip_reset(tp);
7922 if (err)
7923 return err;
7924
7925 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7926
Matt Carlsonbcb37f62008-11-03 16:52:09 -08007927 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007928 val = tr32(TG3_CPMU_CTRL);
7929 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7930 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007931
7932 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7933 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7934 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7935 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7936
7937 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7938 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7939 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7940 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7941
7942 val = tr32(TG3_CPMU_HST_ACC);
7943 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7944 val |= CPMU_HST_ACC_MACCLK_6_25;
7945 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007946 }
7947
Matt Carlson33466d932009-04-20 06:57:41 +00007948 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7949 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
7950 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
7951 PCIE_PWR_MGMT_L1_THRESH_4MS;
7952 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00007953
7954 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
7955 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
7956
7957 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d932009-04-20 06:57:41 +00007958
Matt Carlsonf40386c2009-11-02 14:24:02 +00007959 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7960 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00007961 }
7962
Joe Perches63c3a662011-04-26 08:12:10 +00007963 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00007964 u32 grc_mode = tr32(GRC_MODE);
7965
7966 /* Access the lower 1K of PL PCIE block registers. */
7967 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7968 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
7969
7970 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
7971 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
7972 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
7973
7974 tw32(GRC_MODE, grc_mode);
7975 }
7976
Matt Carlson5093eed2010-11-24 08:31:45 +00007977 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
7978 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
7979 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00007980
Matt Carlson5093eed2010-11-24 08:31:45 +00007981 /* Access the lower 1K of PL PCIE block registers. */
7982 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7983 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00007984
Matt Carlson5093eed2010-11-24 08:31:45 +00007985 val = tr32(TG3_PCIE_TLDLPL_PORT +
7986 TG3_PCIE_PL_LO_PHYCTL5);
7987 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
7988 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00007989
Matt Carlson5093eed2010-11-24 08:31:45 +00007990 tw32(GRC_MODE, grc_mode);
7991 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00007992
7993 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7994 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7995 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7996 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00007997 }
7998
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999 /* This works around an issue with Athlon chipsets on
8000 * B3 tigon3 silicon. This bit has no effect on any
8001 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008002 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003 */
Joe Perches63c3a662011-04-26 08:12:10 +00008004 if (!tg3_flag(tp, CPMU_PRESENT)) {
8005 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008006 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8007 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009
8010 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008011 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008012 val = tr32(TG3PCI_PCISTATE);
8013 val |= PCISTATE_RETRY_SAME_DMA;
8014 tw32(TG3PCI_PCISTATE, val);
8015 }
8016
Joe Perches63c3a662011-04-26 08:12:10 +00008017 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008018 /* Allow reads and writes to the
8019 * APE register and memory space.
8020 */
8021 val = tr32(TG3PCI_PCISTATE);
8022 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008023 PCISTATE_ALLOW_APE_SHMEM_WR |
8024 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008025 tw32(TG3PCI_PCISTATE, val);
8026 }
8027
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8029 /* Enable some hw fixes. */
8030 val = tr32(TG3PCI_MSI_DATA);
8031 val |= (1 << 26) | (1 << 28) | (1 << 29);
8032 tw32(TG3PCI_MSI_DATA, val);
8033 }
8034
8035 /* Descriptor ring init may make accesses to the
8036 * NIC SRAM area to setup the TX descriptors, so we
8037 * can only do this after the hardware has been
8038 * successfully reset.
8039 */
Michael Chan32d8c572006-07-25 16:38:29 -07008040 err = tg3_init_rings(tp);
8041 if (err)
8042 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043
Joe Perches63c3a662011-04-26 08:12:10 +00008044 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008045 val = tr32(TG3PCI_DMA_RW_CTRL) &
8046 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008047 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8048 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson0aebff42011-04-25 12:42:45 +00008049 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
8050 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8051 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008052 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8053 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8054 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008055 /* This value is determined during the probe time DMA
8056 * engine test, tg3_test_dma.
8057 */
8058 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008060
8061 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8062 GRC_MODE_4X_NIC_SEND_RINGS |
8063 GRC_MODE_NO_TX_PHDR_CSUM |
8064 GRC_MODE_NO_RX_PHDR_CSUM);
8065 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008066
8067 /* Pseudo-header checksum is done by hardware logic and not
8068 * the offload processers, so make the chip do the pseudo-
8069 * header checksums on receive. For transmit it is more
8070 * convenient to do the pseudo-header checksum in software
8071 * as Linux does that on transmit for us in all cases.
8072 */
8073 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074
8075 tw32(GRC_MODE,
8076 tp->grc_mode |
8077 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8078
8079 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8080 val = tr32(GRC_MISC_CFG);
8081 val &= ~0xff;
8082 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8083 tw32(GRC_MISC_CFG, val);
8084
8085 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008086 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087 /* Do nothing. */
8088 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8089 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8090 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8091 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8092 else
8093 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8094 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8095 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008096 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097 int fw_len;
8098
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008099 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8101 tw32(BUFMGR_MB_POOL_ADDR,
8102 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8103 tw32(BUFMGR_MB_POOL_SIZE,
8104 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008106
Michael Chan0f893dc2005-07-25 12:30:38 -07008107 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8109 tp->bufmgr_config.mbuf_read_dma_low_water);
8110 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8111 tp->bufmgr_config.mbuf_mac_rx_low_water);
8112 tw32(BUFMGR_MB_HIGH_WATER,
8113 tp->bufmgr_config.mbuf_high_water);
8114 } else {
8115 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8116 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8117 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8118 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8119 tw32(BUFMGR_MB_HIGH_WATER,
8120 tp->bufmgr_config.mbuf_high_water_jumbo);
8121 }
8122 tw32(BUFMGR_DMA_LOW_WATER,
8123 tp->bufmgr_config.dma_low_water);
8124 tw32(BUFMGR_DMA_HIGH_WATER,
8125 tp->bufmgr_config.dma_high_water);
8126
Matt Carlsond309a462010-09-30 10:34:31 +00008127 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8128 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8129 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008130 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8131 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8132 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8133 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008134 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135 for (i = 0; i < 2000; i++) {
8136 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8137 break;
8138 udelay(10);
8139 }
8140 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008141 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142 return -ENODEV;
8143 }
8144
Matt Carlsoneb07a942011-04-20 07:57:36 +00008145 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8146 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008147
Matt Carlsoneb07a942011-04-20 07:57:36 +00008148 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149
8150 /* Initialize TG3_BDINFO's at:
8151 * RCVDBDI_STD_BD: standard eth size rx ring
8152 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8153 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8154 *
8155 * like so:
8156 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8157 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8158 * ring attribute flags
8159 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8160 *
8161 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8162 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8163 *
8164 * The size of each ring is fixed in the firmware, but the location is
8165 * configurable.
8166 */
8167 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008168 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008170 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008171 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008172 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8173 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008175 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008176 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8178 BDINFO_FLAGS_DISABLED);
8179
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008180 /* Program the jumbo buffer descriptor ring control
8181 * blocks on those devices that have them.
8182 */
Matt Carlsonbb18bb92011-03-09 16:58:19 +00008183 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008184 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185
Joe Perches63c3a662011-04-26 08:12:10 +00008186 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008188 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008190 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008191 val = TG3_RX_JMB_RING_SIZE(tp) <<
8192 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008193 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008194 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008195 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00008196 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson87668d32009-11-13 13:03:34 +00008197 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8198 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199 } else {
8200 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8201 BDINFO_FLAGS_DISABLED);
8202 }
8203
Joe Perches63c3a662011-04-26 08:12:10 +00008204 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008205 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonde9f5232011-04-05 14:22:43 +00008206 val = TG3_RX_STD_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008207 else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008208 val = TG3_RX_STD_MAX_SIZE_5717;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008209 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8210 val |= (TG3_RX_STD_DMA_SZ << 2);
8211 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008212 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008213 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008214 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008215
8216 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217
Matt Carlson411da642009-11-13 13:03:46 +00008218 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e662009-11-13 13:03:49 +00008219 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008220
Joe Perches63c3a662011-04-26 08:12:10 +00008221 tpr->rx_jmb_prod_idx =
8222 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e662009-11-13 13:03:49 +00008223 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224
Matt Carlson2d31eca2009-09-01 12:53:31 +00008225 tg3_rings_reset(tp);
8226
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008228 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008229
8230 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008231 tw32(MAC_RX_MTU_SIZE,
8232 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008233
8234 /* The slot time is changed by tg3_setup_phy if we
8235 * run at gigabit with half duplex.
8236 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008237 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8238 (6 << TX_LENGTHS_IPG_SHIFT) |
8239 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8240
8241 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8242 val |= tr32(MAC_TX_LENGTHS) &
8243 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8244 TX_LENGTHS_CNT_DWN_VAL_MSK);
8245
8246 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247
8248 /* Receive rules. */
8249 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8250 tw32(RCVLPC_CONFIG, 0x0181);
8251
8252 /* Calculate RDMAC_MODE setting early, we need it to determine
8253 * the RCVLPC_STATE_ENABLE mask.
8254 */
8255 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8256 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8257 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8258 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8259 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008260
Matt Carlsondeabaac2010-11-24 08:31:50 +00008261 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008262 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8263
Matt Carlson57e69832008-05-25 23:48:31 -07008264 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008265 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8266 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008267 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8268 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8269 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8270
Matt Carlsonc5908932011-03-09 16:58:25 +00008271 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8272 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008273 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008274 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8276 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008277 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8279 }
8280 }
8281
Joe Perches63c3a662011-04-26 08:12:10 +00008282 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008283 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8284
Joe Perches63c3a662011-04-26 08:12:10 +00008285 if (tg3_flag(tp, HW_TSO_1) ||
8286 tg3_flag(tp, HW_TSO_2) ||
8287 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008288 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8289
Joe Perches63c3a662011-04-26 08:12:10 +00008290 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008291 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008292 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8293 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008294
Matt Carlsonf2096f92011-04-05 14:22:48 +00008295 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8296 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8297
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008298 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8299 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8300 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8301 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008302 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008303 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008304 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8305 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008306 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8307 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8308 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8309 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8310 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8311 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008312 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008313 tw32(TG3_RDMA_RSRVCTRL_REG,
8314 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8315 }
8316
Matt Carlsond78b59f2011-04-05 14:22:46 +00008317 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8318 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008319 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8320 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8321 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8322 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8323 }
8324
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008326 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008327 val = tr32(RCVLPC_STATS_ENABLE);
8328 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8329 tw32(RCVLPC_STATS_ENABLE, val);
8330 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008331 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332 val = tr32(RCVLPC_STATS_ENABLE);
8333 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8334 tw32(RCVLPC_STATS_ENABLE, val);
8335 } else {
8336 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8337 }
8338 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8339 tw32(SNDDATAI_STATSENAB, 0xffffff);
8340 tw32(SNDDATAI_STATSCTRL,
8341 (SNDDATAI_SCTRL_ENABLE |
8342 SNDDATAI_SCTRL_FASTUPD));
8343
8344 /* Setup host coalescing engine. */
8345 tw32(HOSTCC_MODE, 0);
8346 for (i = 0; i < 2000; i++) {
8347 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8348 break;
8349 udelay(10);
8350 }
8351
Michael Chand244c892005-07-05 14:42:33 -07008352 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353
Joe Perches63c3a662011-04-26 08:12:10 +00008354 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355 /* Status/statistics block address. See tg3_timer,
8356 * the tg3_periodic_fetch_stats call there, and
8357 * tg3_get_stats to see how this works for 5705/5750 chips.
8358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8360 ((u64) tp->stats_mapping >> 32));
8361 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8362 ((u64) tp->stats_mapping & 0xffffffff));
8363 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008364
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008366
8367 /* Clear statistics and status block memory areas */
8368 for (i = NIC_SRAM_STATS_BLK;
8369 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8370 i += sizeof(u32)) {
8371 tg3_write_mem(tp, i, 0);
8372 udelay(40);
8373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008374 }
8375
8376 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8377
8378 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8379 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008380 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8382
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008383 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8384 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008385 /* reset to prevent losing 1st rx packet intermittently */
8386 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8387 udelay(10);
8388 }
8389
Joe Perches63c3a662011-04-26 08:12:10 +00008390 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008391 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -07008392 else
8393 tp->mac_mode = 0;
8394 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008396 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008397 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008398 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8399 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8401 udelay(40);
8402
Michael Chan314fba32005-04-21 17:07:04 -07008403 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008404 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008405 * register to preserve the GPIO settings for LOMs. The GPIOs,
8406 * whether used as inputs or outputs, are set by boot code after
8407 * reset.
8408 */
Joe Perches63c3a662011-04-26 08:12:10 +00008409 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008410 u32 gpio_mask;
8411
Michael Chan9d26e212006-12-07 00:21:14 -08008412 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8413 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8414 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008415
8416 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8417 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8418 GRC_LCLCTRL_GPIO_OUTPUT3;
8419
Michael Chanaf36e6b2006-03-23 01:28:06 -08008420 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8421 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8422
Gary Zambranoaaf84462007-05-05 11:51:45 -07008423 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008424 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8425
8426 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008427 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008428 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8429 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8432 udelay(100);
8433
Joe Perches63c3a662011-04-26 08:12:10 +00008434 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008435 val = tr32(MSGINT_MODE);
8436 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8437 tw32(MSGINT_MODE, val);
8438 }
8439
Joe Perches63c3a662011-04-26 08:12:10 +00008440 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8442 udelay(40);
8443 }
8444
8445 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8446 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8447 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8448 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8449 WDMAC_MODE_LNGREAD_ENAB);
8450
Matt Carlsonc5908932011-03-09 16:58:25 +00008451 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8452 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008453 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008454 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8455 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8456 /* nothing */
8457 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008458 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008459 val |= WDMAC_MODE_RX_ACCEL;
8460 }
8461 }
8462
Michael Chand9ab5ad12006-03-20 22:27:35 -08008463 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008464 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008465 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08008466
Matt Carlson788a0352009-11-02 14:26:03 +00008467 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8468 val |= WDMAC_MODE_BURST_ALL_DATA;
8469
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470 tw32_f(WDMAC_MODE, val);
8471 udelay(40);
8472
Joe Perches63c3a662011-04-26 08:12:10 +00008473 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008474 u16 pcix_cmd;
8475
8476 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8477 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008478 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008479 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8480 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008481 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008482 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8483 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008484 }
Matt Carlson9974a352007-10-07 23:27:28 -07008485 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8486 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008487 }
8488
8489 tw32_f(RDMAC_MODE, rdmac_mode);
8490 udelay(40);
8491
8492 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008493 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008495
8496 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8497 tw32(SNDDATAC_MODE,
8498 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8499 else
8500 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8501
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8503 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008504 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008505 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008506 val |= RCVDBDI_MODE_LRG_RING_SZ;
8507 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008509 if (tg3_flag(tp, HW_TSO_1) ||
8510 tg3_flag(tp, HW_TSO_2) ||
8511 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008512 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008513 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008514 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008515 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8516 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008517 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8518
8519 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8520 err = tg3_load_5701_a0_firmware_fix(tp);
8521 if (err)
8522 return err;
8523 }
8524
Joe Perches63c3a662011-04-26 08:12:10 +00008525 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008526 err = tg3_load_tso_firmware(tp);
8527 if (err)
8528 return err;
8529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530
8531 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008532
Joe Perches63c3a662011-04-26 08:12:10 +00008533 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008534 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8535 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008536
8537 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8538 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8539 tp->tx_mode &= ~val;
8540 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8541 }
8542
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543 tw32_f(MAC_TX_MODE, tp->tx_mode);
8544 udelay(100);
8545
Joe Perches63c3a662011-04-26 08:12:10 +00008546 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008547 u32 reg = MAC_RSS_INDIR_TBL_0;
8548 u8 *ent = (u8 *)&val;
8549
8550 /* Setup the indirection table */
8551 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8552 int idx = i % sizeof(val);
8553
Matt Carlson5efeeea2010-07-11 09:31:40 +00008554 ent[idx] = i % (tp->irq_cnt - 1);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008555 if (idx == sizeof(val) - 1) {
8556 tw32(reg, val);
8557 reg += 4;
8558 }
8559 }
8560
8561 /* Setup the "secret" hash key. */
8562 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8563 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8564 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8565 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8566 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8567 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8568 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8569 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8570 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8571 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8572 }
8573
Linus Torvalds1da177e2005-04-16 15:20:36 -07008574 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008575 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008576 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8577
Joe Perches63c3a662011-04-26 08:12:10 +00008578 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008579 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8580 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8581 RX_MODE_RSS_IPV6_HASH_EN |
8582 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8583 RX_MODE_RSS_IPV4_HASH_EN |
8584 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8585
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586 tw32_f(MAC_RX_MODE, tp->rx_mode);
8587 udelay(10);
8588
Linus Torvalds1da177e2005-04-16 15:20:36 -07008589 tw32(MAC_LED_CTRL, tp->led_ctrl);
8590
8591 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008592 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8594 udelay(10);
8595 }
8596 tw32_f(MAC_RX_MODE, tp->rx_mode);
8597 udelay(10);
8598
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008599 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008601 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008602 /* Set drive transmission level to 1.2V */
8603 /* only if the signal pre-emphasis bit is not set */
8604 val = tr32(MAC_SERDES_CFG);
8605 val &= 0xfffff000;
8606 val |= 0x880;
8607 tw32(MAC_SERDES_CFG, val);
8608 }
8609 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8610 tw32(MAC_SERDES_CFG, 0x616000);
8611 }
8612
8613 /* Prevent chip from dropping frames when flow control
8614 * is enabled.
8615 */
Matt Carlson666bc832010-01-20 16:58:03 +00008616 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8617 val = 1;
8618 else
8619 val = 2;
8620 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008621
8622 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008623 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00008625 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626 }
8627
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008628 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Michael Chand4d2c552006-03-20 17:47:20 -08008629 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
8630 u32 tmp;
8631
8632 tmp = tr32(SERDES_RX_CTRL);
8633 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8634 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8635 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8636 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8637 }
8638
Joe Perches63c3a662011-04-26 08:12:10 +00008639 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson80096062010-08-02 11:26:06 +00008640 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
8641 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07008642 tp->link_config.speed = tp->link_config.orig_speed;
8643 tp->link_config.duplex = tp->link_config.orig_duplex;
8644 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646
Matt Carlsondd477002008-05-25 23:45:58 -07008647 err = tg3_setup_phy(tp, 0);
8648 if (err)
8649 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008651 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
8652 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008653 u32 tmp;
8654
8655 /* Clear CRC stats. */
8656 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8657 tg3_writephy(tp, MII_TG3_TEST1,
8658 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00008659 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07008660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661 }
8662 }
8663
8664 __tg3_set_rx_mode(tp->dev);
8665
8666 /* Initialize receive rules. */
8667 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8668 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8669 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8670 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8671
Joe Perches63c3a662011-04-26 08:12:10 +00008672 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008673 limit = 8;
8674 else
8675 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008676 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677 limit -= 4;
8678 switch (limit) {
8679 case 16:
8680 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8681 case 15:
8682 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8683 case 14:
8684 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8685 case 13:
8686 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8687 case 12:
8688 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8689 case 11:
8690 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8691 case 10:
8692 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8693 case 9:
8694 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8695 case 8:
8696 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8697 case 7:
8698 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8699 case 6:
8700 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8701 case 5:
8702 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8703 case 4:
8704 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8705 case 3:
8706 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8707 case 2:
8708 case 1:
8709
8710 default:
8711 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008713
Joe Perches63c3a662011-04-26 08:12:10 +00008714 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07008715 /* Write our heartbeat update interval to APE. */
8716 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8717 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008718
Linus Torvalds1da177e2005-04-16 15:20:36 -07008719 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8720
Linus Torvalds1da177e2005-04-16 15:20:36 -07008721 return 0;
8722}
8723
8724/* Called at device open time to get the chip ready for
8725 * packet processing. Invoked with tp->lock held.
8726 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008727static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008728{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008729 tg3_switch_clocks(tp);
8730
8731 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8732
Matt Carlson2f751b62008-08-04 23:17:34 -07008733 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734}
8735
8736#define TG3_STAT_ADD32(PSTAT, REG) \
8737do { u32 __val = tr32(REG); \
8738 (PSTAT)->low += __val; \
8739 if ((PSTAT)->low < __val) \
8740 (PSTAT)->high += 1; \
8741} while (0)
8742
8743static void tg3_periodic_fetch_stats(struct tg3 *tp)
8744{
8745 struct tg3_hw_stats *sp = tp->hw_stats;
8746
8747 if (!netif_carrier_ok(tp->dev))
8748 return;
8749
8750 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8751 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8752 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8753 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8754 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8755 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8756 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8757 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8758 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8759 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8760 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8761 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8762 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8763
8764 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8765 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8766 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8767 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8768 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8769 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8770 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8771 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8772 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8773 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8774 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8775 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8776 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8777 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008778
8779 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson4d958472011-04-20 07:57:35 +00008780 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717) {
8781 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8782 } else {
8783 u32 val = tr32(HOSTCC_FLOW_ATTN);
8784 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
8785 if (val) {
8786 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
8787 sp->rx_discards.low += val;
8788 if (sp->rx_discards.low < val)
8789 sp->rx_discards.high += 1;
8790 }
8791 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
8792 }
Michael Chan463d3052006-05-22 16:36:27 -07008793 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008794}
8795
8796static void tg3_timer(unsigned long __opaque)
8797{
8798 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008799
Michael Chanf475f162006-03-27 23:20:14 -08008800 if (tp->irq_sync)
8801 goto restart_timer;
8802
David S. Millerf47c11e2005-06-24 20:18:35 -07008803 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008804
Joe Perches63c3a662011-04-26 08:12:10 +00008805 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07008806 /* All of this garbage is because when using non-tagged
8807 * IRQ status the mailbox/status_block protocol the chip
8808 * uses with the cpu is race prone.
8809 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008810 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008811 tw32(GRC_LOCAL_CTRL,
8812 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8813 } else {
8814 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008815 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008817
David S. Millerfac9b832005-05-18 22:46:34 -07008818 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +00008819 tg3_flag_set(tp, RESTART_TIMER);
David S. Millerf47c11e2005-06-24 20:18:35 -07008820 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008821 schedule_work(&tp->reset_task);
8822 return;
8823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824 }
8825
Linus Torvalds1da177e2005-04-16 15:20:36 -07008826 /* This part only runs once per second. */
8827 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00008828 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07008829 tg3_periodic_fetch_stats(tp);
8830
Matt Carlson52b02d02010-10-14 10:37:41 +00008831 if (tp->setlpicnt && !--tp->setlpicnt) {
8832 u32 val = tr32(TG3_CPMU_EEE_MODE);
8833 tw32(TG3_CPMU_EEE_MODE,
8834 val | TG3_CPMU_EEEMD_LPI_ENABLE);
8835 }
8836
Joe Perches63c3a662011-04-26 08:12:10 +00008837 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008838 u32 mac_stat;
8839 int phy_event;
8840
8841 mac_stat = tr32(MAC_STATUS);
8842
8843 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008844 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008845 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8846 phy_event = 1;
8847 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8848 phy_event = 1;
8849
8850 if (phy_event)
8851 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00008852 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853 u32 mac_stat = tr32(MAC_STATUS);
8854 int need_setup = 0;
8855
8856 if (netif_carrier_ok(tp->dev) &&
8857 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
8858 need_setup = 1;
8859 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00008860 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008861 (mac_stat & (MAC_STATUS_PCS_SYNCED |
8862 MAC_STATUS_SIGNAL_DET))) {
8863 need_setup = 1;
8864 }
8865 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07008866 if (!tp->serdes_counter) {
8867 tw32_f(MAC_MODE,
8868 (tp->mac_mode &
8869 ~MAC_MODE_PORT_MODE_MASK));
8870 udelay(40);
8871 tw32_f(MAC_MODE, tp->mac_mode);
8872 udelay(40);
8873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008874 tg3_setup_phy(tp, 0);
8875 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008876 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008877 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07008878 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00008879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880
8881 tp->timer_counter = tp->timer_multiplier;
8882 }
8883
Michael Chan130b8e42006-09-27 16:00:40 -07008884 /* Heartbeat is only sent once every 2 seconds.
8885 *
8886 * The heartbeat is to tell the ASF firmware that the host
8887 * driver is still alive. In the event that the OS crashes,
8888 * ASF needs to reset the hardware to free up the FIFO space
8889 * that may be filled with rx packets destined for the host.
8890 * If the FIFO is full, ASF will no longer function properly.
8891 *
8892 * Unintended resets have been reported on real time kernels
8893 * where the timer doesn't run on time. Netpoll will also have
8894 * same problem.
8895 *
8896 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
8897 * to check the ring condition when the heartbeat is expiring
8898 * before doing the reset. This will prevent most unintended
8899 * resets.
8900 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008901 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00008902 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07008903 tg3_wait_for_event_ack(tp);
8904
Michael Chanbbadf502006-04-06 21:46:34 -07008905 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07008906 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07008907 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008908 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
8909 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008910
8911 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008912 }
8913 tp->asf_counter = tp->asf_multiplier;
8914 }
8915
David S. Millerf47c11e2005-06-24 20:18:35 -07008916 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008917
Michael Chanf475f162006-03-27 23:20:14 -08008918restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008919 tp->timer.expires = jiffies + tp->timer_offset;
8920 add_timer(&tp->timer);
8921}
8922
Matt Carlson4f125f42009-09-01 12:55:02 +00008923static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08008924{
David Howells7d12e782006-10-05 14:55:46 +01008925 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008926 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00008927 char *name;
8928 struct tg3_napi *tnapi = &tp->napi[irq_num];
8929
8930 if (tp->irq_cnt == 1)
8931 name = tp->dev->name;
8932 else {
8933 name = &tnapi->irq_lbl[0];
8934 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
8935 name[IFNAMSIZ-1] = 0;
8936 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008937
Joe Perches63c3a662011-04-26 08:12:10 +00008938 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08008939 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00008940 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08008941 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00008942 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008943 } else {
8944 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00008945 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08008946 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00008947 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008948 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008949
8950 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008951}
8952
Michael Chan79381092005-04-21 17:13:59 -07008953static int tg3_test_interrupt(struct tg3 *tp)
8954{
Matt Carlson09943a12009-08-28 14:01:57 +00008955 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07008956 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07008957 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008958 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07008959
Michael Chand4bc3922005-05-29 14:59:20 -07008960 if (!netif_running(dev))
8961 return -ENODEV;
8962
Michael Chan79381092005-04-21 17:13:59 -07008963 tg3_disable_ints(tp);
8964
Matt Carlson4f125f42009-09-01 12:55:02 +00008965 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008966
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008967 /*
8968 * Turn off MSI one shot mode. Otherwise this test has no
8969 * observable way to know whether the interrupt was delivered.
8970 */
Joe Perches63c3a662011-04-26 08:12:10 +00008971 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008972 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
8973 tw32(MSGINT_MODE, val);
8974 }
8975
Matt Carlson4f125f42009-09-01 12:55:02 +00008976 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00008977 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008978 if (err)
8979 return err;
8980
Matt Carlson898a56f2009-08-28 14:02:40 +00008981 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07008982 tg3_enable_ints(tp);
8983
8984 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008985 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07008986
8987 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07008988 u32 int_mbox, misc_host_ctrl;
8989
Matt Carlson898a56f2009-08-28 14:02:40 +00008990 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07008991 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
8992
8993 if ((int_mbox != 0) ||
8994 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
8995 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07008996 break;
Michael Chanb16250e2006-09-27 16:10:14 -07008997 }
8998
Michael Chan79381092005-04-21 17:13:59 -07008999 msleep(10);
9000 }
9001
9002 tg3_disable_ints(tp);
9003
Matt Carlson4f125f42009-09-01 12:55:02 +00009004 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009005
Matt Carlson4f125f42009-09-01 12:55:02 +00009006 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009007
9008 if (err)
9009 return err;
9010
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009011 if (intr_ok) {
9012 /* Reenable MSI one shot mode. */
Joe Perches63c3a662011-04-26 08:12:10 +00009013 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009014 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9015 tw32(MSGINT_MODE, val);
9016 }
Michael Chan79381092005-04-21 17:13:59 -07009017 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009018 }
Michael Chan79381092005-04-21 17:13:59 -07009019
9020 return -EIO;
9021}
9022
9023/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9024 * successfully restored
9025 */
9026static int tg3_test_msi(struct tg3 *tp)
9027{
Michael Chan79381092005-04-21 17:13:59 -07009028 int err;
9029 u16 pci_cmd;
9030
Joe Perches63c3a662011-04-26 08:12:10 +00009031 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009032 return 0;
9033
9034 /* Turn off SERR reporting in case MSI terminates with Master
9035 * Abort.
9036 */
9037 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9038 pci_write_config_word(tp->pdev, PCI_COMMAND,
9039 pci_cmd & ~PCI_COMMAND_SERR);
9040
9041 err = tg3_test_interrupt(tp);
9042
9043 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9044
9045 if (!err)
9046 return 0;
9047
9048 /* other failures */
9049 if (err != -EIO)
9050 return err;
9051
9052 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009053 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9054 "to INTx mode. Please report this failure to the PCI "
9055 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009056
Matt Carlson4f125f42009-09-01 12:55:02 +00009057 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009058
Michael Chan79381092005-04-21 17:13:59 -07009059 pci_disable_msi(tp->pdev);
9060
Joe Perches63c3a662011-04-26 08:12:10 +00009061 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009062 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009063
Matt Carlson4f125f42009-09-01 12:55:02 +00009064 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009065 if (err)
9066 return err;
9067
9068 /* Need to reset the chip because the MSI cycle may have terminated
9069 * with Master Abort.
9070 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009071 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009072
Michael Chan944d9802005-05-29 14:57:48 -07009073 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009074 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009075
David S. Millerf47c11e2005-06-24 20:18:35 -07009076 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009077
9078 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009079 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009080
9081 return err;
9082}
9083
Matt Carlson9e9fd122009-01-19 16:57:45 -08009084static int tg3_request_firmware(struct tg3 *tp)
9085{
9086 const __be32 *fw_data;
9087
9088 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009089 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9090 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009091 return -ENOENT;
9092 }
9093
9094 fw_data = (void *)tp->fw->data;
9095
9096 /* Firmware blob starts with version numbers, followed by
9097 * start address and _full_ length including BSS sections
9098 * (which must be longer than the actual data, of course
9099 */
9100
9101 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9102 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009103 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9104 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009105 release_firmware(tp->fw);
9106 tp->fw = NULL;
9107 return -EINVAL;
9108 }
9109
9110 /* We no longer need firmware; we have it. */
9111 tp->fw_needed = NULL;
9112 return 0;
9113}
9114
Matt Carlson679563f2009-09-01 12:55:46 +00009115static bool tg3_enable_msix(struct tg3 *tp)
9116{
9117 int i, rc, cpus = num_online_cpus();
9118 struct msix_entry msix_ent[tp->irq_max];
9119
9120 if (cpus == 1)
9121 /* Just fallback to the simpler MSI mode. */
9122 return false;
9123
9124 /*
9125 * We want as many rx rings enabled as there are cpus.
9126 * The first MSIX vector only deals with link interrupts, etc,
9127 * so we add one to the number of vectors we are requesting.
9128 */
9129 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
9130
9131 for (i = 0; i < tp->irq_max; i++) {
9132 msix_ent[i].entry = i;
9133 msix_ent[i].vector = 0;
9134 }
9135
9136 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009137 if (rc < 0) {
9138 return false;
9139 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009140 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9141 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009142 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9143 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009144 tp->irq_cnt = rc;
9145 }
9146
9147 for (i = 0; i < tp->irq_max; i++)
9148 tp->napi[i].irq_vec = msix_ent[i].vector;
9149
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009150 netif_set_real_num_tx_queues(tp->dev, 1);
9151 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9152 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9153 pci_disable_msix(tp->pdev);
9154 return false;
9155 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009156
9157 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009158 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009159
9160 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9161 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009162 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009163 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9164 }
9165 }
Matt Carlson2430b032010-06-05 17:24:34 +00009166
Matt Carlson679563f2009-09-01 12:55:46 +00009167 return true;
9168}
9169
Matt Carlson07b01732009-08-28 14:01:15 +00009170static void tg3_ints_init(struct tg3 *tp)
9171{
Joe Perches63c3a662011-04-26 08:12:10 +00009172 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9173 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009174 /* All MSI supporting chips should support tagged
9175 * status. Assert that this is the case.
9176 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009177 netdev_warn(tp->dev,
9178 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009179 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009180 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009181
Joe Perches63c3a662011-04-26 08:12:10 +00009182 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9183 tg3_flag_set(tp, USING_MSIX);
9184 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9185 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009186
Joe Perches63c3a662011-04-26 08:12:10 +00009187 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009188 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009189 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009190 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00009191 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9192 }
9193defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009194 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009195 tp->irq_cnt = 1;
9196 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009197 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009198 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009199 }
Matt Carlson07b01732009-08-28 14:01:15 +00009200}
9201
9202static void tg3_ints_fini(struct tg3 *tp)
9203{
Joe Perches63c3a662011-04-26 08:12:10 +00009204 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009205 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009206 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009207 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009208 tg3_flag_clear(tp, USING_MSI);
9209 tg3_flag_clear(tp, USING_MSIX);
9210 tg3_flag_clear(tp, ENABLE_RSS);
9211 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009212}
9213
Linus Torvalds1da177e2005-04-16 15:20:36 -07009214static int tg3_open(struct net_device *dev)
9215{
9216 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009217 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009218
Matt Carlson9e9fd122009-01-19 16:57:45 -08009219 if (tp->fw_needed) {
9220 err = tg3_request_firmware(tp);
9221 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9222 if (err)
9223 return err;
9224 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009225 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009226 tg3_flag_clear(tp, TSO_CAPABLE);
9227 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009228 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009229 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009230 }
9231 }
9232
Michael Chanc49a1562006-12-17 17:07:29 -08009233 netif_carrier_off(tp->dev);
9234
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009235 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009236 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009237 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009238
9239 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009240
Linus Torvalds1da177e2005-04-16 15:20:36 -07009241 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009242 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009243
David S. Millerf47c11e2005-06-24 20:18:35 -07009244 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009245
Matt Carlson679563f2009-09-01 12:55:46 +00009246 /*
9247 * Setup interrupts first so we know how
9248 * many NAPI resources to allocate
9249 */
9250 tg3_ints_init(tp);
9251
Linus Torvalds1da177e2005-04-16 15:20:36 -07009252 /* The placement of this call is tied
9253 * to the setup and use of Host TX descriptors.
9254 */
9255 err = tg3_alloc_consistent(tp);
9256 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009257 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009258
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009259 tg3_napi_init(tp);
9260
Matt Carlsonfed97812009-09-01 13:10:19 +00009261 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009262
Matt Carlson4f125f42009-09-01 12:55:02 +00009263 for (i = 0; i < tp->irq_cnt; i++) {
9264 struct tg3_napi *tnapi = &tp->napi[i];
9265 err = tg3_request_irq(tp, i);
9266 if (err) {
9267 for (i--; i >= 0; i--)
9268 free_irq(tnapi->irq_vec, tnapi);
9269 break;
9270 }
9271 }
Matt Carlson07b01732009-08-28 14:01:15 +00009272
9273 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009274 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00009275
David S. Millerf47c11e2005-06-24 20:18:35 -07009276 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009277
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009278 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009279 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009280 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009281 tg3_free_rings(tp);
9282 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00009283 if (tg3_flag(tp, TAGGED_STATUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009284 tp->timer_offset = HZ;
9285 else
9286 tp->timer_offset = HZ / 10;
9287
9288 BUG_ON(tp->timer_offset > HZ);
9289 tp->timer_counter = tp->timer_multiplier =
9290 (HZ / tp->timer_offset);
9291 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009292 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009293
9294 init_timer(&tp->timer);
9295 tp->timer.expires = jiffies + tp->timer_offset;
9296 tp->timer.data = (unsigned long) tp;
9297 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009298 }
9299
David S. Millerf47c11e2005-06-24 20:18:35 -07009300 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009301
Matt Carlson07b01732009-08-28 14:01:15 +00009302 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009303 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009304
Joe Perches63c3a662011-04-26 08:12:10 +00009305 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009306 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009307
Michael Chan79381092005-04-21 17:13:59 -07009308 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009309 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009310 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009311 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009312 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009313
Matt Carlson679563f2009-09-01 12:55:46 +00009314 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009315 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009316
Joe Perches63c3a662011-04-26 08:12:10 +00009317 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009318 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009319
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009320 tw32(PCIE_TRANSACTION_CFG,
9321 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009322 }
Michael Chan79381092005-04-21 17:13:59 -07009323 }
9324
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009325 tg3_phy_start(tp);
9326
David S. Millerf47c11e2005-06-24 20:18:35 -07009327 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009328
Michael Chan79381092005-04-21 17:13:59 -07009329 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009330 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009331 tg3_enable_ints(tp);
9332
David S. Millerf47c11e2005-06-24 20:18:35 -07009333 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009334
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009335 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009336
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00009337 /*
9338 * Reset loopback feature if it was turned on while the device was down
9339 * make sure that it's installed properly now.
9340 */
9341 if (dev->features & NETIF_F_LOOPBACK)
9342 tg3_set_loopback(dev, dev->features);
9343
Linus Torvalds1da177e2005-04-16 15:20:36 -07009344 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009345
Matt Carlson679563f2009-09-01 12:55:46 +00009346err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009347 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9348 struct tg3_napi *tnapi = &tp->napi[i];
9349 free_irq(tnapi->irq_vec, tnapi);
9350 }
Matt Carlson07b01732009-08-28 14:01:15 +00009351
Matt Carlson679563f2009-09-01 12:55:46 +00009352err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009353 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009354 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009355 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009356
9357err_out1:
9358 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009359 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009360}
9361
Eric Dumazet511d2222010-07-07 20:44:24 +00009362static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
9363 struct rtnl_link_stats64 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009364static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9365
9366static int tg3_close(struct net_device *dev)
9367{
Matt Carlson4f125f42009-09-01 12:55:02 +00009368 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009369 struct tg3 *tp = netdev_priv(dev);
9370
Matt Carlsonfed97812009-09-01 13:10:19 +00009371 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009372 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009373
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009374 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009375
9376 del_timer_sync(&tp->timer);
9377
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009378 tg3_phy_stop(tp);
9379
David S. Millerf47c11e2005-06-24 20:18:35 -07009380 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009381
9382 tg3_disable_ints(tp);
9383
Michael Chan944d9802005-05-29 14:57:48 -07009384 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009385 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009386 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009387
David S. Millerf47c11e2005-06-24 20:18:35 -07009388 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009389
Matt Carlson4f125f42009-09-01 12:55:02 +00009390 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9391 struct tg3_napi *tnapi = &tp->napi[i];
9392 free_irq(tnapi->irq_vec, tnapi);
9393 }
Matt Carlson07b01732009-08-28 14:01:15 +00009394
9395 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009396
Eric Dumazet511d2222010-07-07 20:44:24 +00009397 tg3_get_stats64(tp->dev, &tp->net_stats_prev);
9398
Linus Torvalds1da177e2005-04-16 15:20:36 -07009399 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9400 sizeof(tp->estats_prev));
9401
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009402 tg3_napi_fini(tp);
9403
Linus Torvalds1da177e2005-04-16 15:20:36 -07009404 tg3_free_consistent(tp);
9405
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009406 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009407
9408 netif_carrier_off(tp->dev);
9409
Linus Torvalds1da177e2005-04-16 15:20:36 -07009410 return 0;
9411}
9412
Eric Dumazet511d2222010-07-07 20:44:24 +00009413static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009414{
9415 return ((u64)val->high << 32) | ((u64)val->low);
9416}
9417
Eric Dumazet511d2222010-07-07 20:44:24 +00009418static u64 calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009419{
9420 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9421
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009422 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009423 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9424 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009425 u32 val;
9426
David S. Millerf47c11e2005-06-24 20:18:35 -07009427 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009428 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9429 tg3_writephy(tp, MII_TG3_TEST1,
9430 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009431 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009432 } else
9433 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009434 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009435
9436 tp->phy_crc_errors += val;
9437
9438 return tp->phy_crc_errors;
9439 }
9440
9441 return get_stat64(&hw_stats->rx_fcs_errors);
9442}
9443
9444#define ESTAT_ADD(member) \
9445 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009446 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009447
9448static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9449{
9450 struct tg3_ethtool_stats *estats = &tp->estats;
9451 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9452 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9453
9454 if (!hw_stats)
9455 return old_estats;
9456
9457 ESTAT_ADD(rx_octets);
9458 ESTAT_ADD(rx_fragments);
9459 ESTAT_ADD(rx_ucast_packets);
9460 ESTAT_ADD(rx_mcast_packets);
9461 ESTAT_ADD(rx_bcast_packets);
9462 ESTAT_ADD(rx_fcs_errors);
9463 ESTAT_ADD(rx_align_errors);
9464 ESTAT_ADD(rx_xon_pause_rcvd);
9465 ESTAT_ADD(rx_xoff_pause_rcvd);
9466 ESTAT_ADD(rx_mac_ctrl_rcvd);
9467 ESTAT_ADD(rx_xoff_entered);
9468 ESTAT_ADD(rx_frame_too_long_errors);
9469 ESTAT_ADD(rx_jabbers);
9470 ESTAT_ADD(rx_undersize_packets);
9471 ESTAT_ADD(rx_in_length_errors);
9472 ESTAT_ADD(rx_out_length_errors);
9473 ESTAT_ADD(rx_64_or_less_octet_packets);
9474 ESTAT_ADD(rx_65_to_127_octet_packets);
9475 ESTAT_ADD(rx_128_to_255_octet_packets);
9476 ESTAT_ADD(rx_256_to_511_octet_packets);
9477 ESTAT_ADD(rx_512_to_1023_octet_packets);
9478 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9479 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9480 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9481 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9482 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9483
9484 ESTAT_ADD(tx_octets);
9485 ESTAT_ADD(tx_collisions);
9486 ESTAT_ADD(tx_xon_sent);
9487 ESTAT_ADD(tx_xoff_sent);
9488 ESTAT_ADD(tx_flow_control);
9489 ESTAT_ADD(tx_mac_errors);
9490 ESTAT_ADD(tx_single_collisions);
9491 ESTAT_ADD(tx_mult_collisions);
9492 ESTAT_ADD(tx_deferred);
9493 ESTAT_ADD(tx_excessive_collisions);
9494 ESTAT_ADD(tx_late_collisions);
9495 ESTAT_ADD(tx_collide_2times);
9496 ESTAT_ADD(tx_collide_3times);
9497 ESTAT_ADD(tx_collide_4times);
9498 ESTAT_ADD(tx_collide_5times);
9499 ESTAT_ADD(tx_collide_6times);
9500 ESTAT_ADD(tx_collide_7times);
9501 ESTAT_ADD(tx_collide_8times);
9502 ESTAT_ADD(tx_collide_9times);
9503 ESTAT_ADD(tx_collide_10times);
9504 ESTAT_ADD(tx_collide_11times);
9505 ESTAT_ADD(tx_collide_12times);
9506 ESTAT_ADD(tx_collide_13times);
9507 ESTAT_ADD(tx_collide_14times);
9508 ESTAT_ADD(tx_collide_15times);
9509 ESTAT_ADD(tx_ucast_packets);
9510 ESTAT_ADD(tx_mcast_packets);
9511 ESTAT_ADD(tx_bcast_packets);
9512 ESTAT_ADD(tx_carrier_sense_errors);
9513 ESTAT_ADD(tx_discards);
9514 ESTAT_ADD(tx_errors);
9515
9516 ESTAT_ADD(dma_writeq_full);
9517 ESTAT_ADD(dma_write_prioq_full);
9518 ESTAT_ADD(rxbds_empty);
9519 ESTAT_ADD(rx_discards);
9520 ESTAT_ADD(rx_errors);
9521 ESTAT_ADD(rx_threshold_hit);
9522
9523 ESTAT_ADD(dma_readq_full);
9524 ESTAT_ADD(dma_read_prioq_full);
9525 ESTAT_ADD(tx_comp_queue_full);
9526
9527 ESTAT_ADD(ring_set_send_prod_index);
9528 ESTAT_ADD(ring_status_update);
9529 ESTAT_ADD(nic_irqs);
9530 ESTAT_ADD(nic_avoided_irqs);
9531 ESTAT_ADD(nic_tx_threshold_hit);
9532
9533 return estats;
9534}
9535
Eric Dumazet511d2222010-07-07 20:44:24 +00009536static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
9537 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009538{
9539 struct tg3 *tp = netdev_priv(dev);
Eric Dumazet511d2222010-07-07 20:44:24 +00009540 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009541 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9542
9543 if (!hw_stats)
9544 return old_stats;
9545
9546 stats->rx_packets = old_stats->rx_packets +
9547 get_stat64(&hw_stats->rx_ucast_packets) +
9548 get_stat64(&hw_stats->rx_mcast_packets) +
9549 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009550
Linus Torvalds1da177e2005-04-16 15:20:36 -07009551 stats->tx_packets = old_stats->tx_packets +
9552 get_stat64(&hw_stats->tx_ucast_packets) +
9553 get_stat64(&hw_stats->tx_mcast_packets) +
9554 get_stat64(&hw_stats->tx_bcast_packets);
9555
9556 stats->rx_bytes = old_stats->rx_bytes +
9557 get_stat64(&hw_stats->rx_octets);
9558 stats->tx_bytes = old_stats->tx_bytes +
9559 get_stat64(&hw_stats->tx_octets);
9560
9561 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009562 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009563 stats->tx_errors = old_stats->tx_errors +
9564 get_stat64(&hw_stats->tx_errors) +
9565 get_stat64(&hw_stats->tx_mac_errors) +
9566 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9567 get_stat64(&hw_stats->tx_discards);
9568
9569 stats->multicast = old_stats->multicast +
9570 get_stat64(&hw_stats->rx_mcast_packets);
9571 stats->collisions = old_stats->collisions +
9572 get_stat64(&hw_stats->tx_collisions);
9573
9574 stats->rx_length_errors = old_stats->rx_length_errors +
9575 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9576 get_stat64(&hw_stats->rx_undersize_packets);
9577
9578 stats->rx_over_errors = old_stats->rx_over_errors +
9579 get_stat64(&hw_stats->rxbds_empty);
9580 stats->rx_frame_errors = old_stats->rx_frame_errors +
9581 get_stat64(&hw_stats->rx_align_errors);
9582 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9583 get_stat64(&hw_stats->tx_discards);
9584 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9585 get_stat64(&hw_stats->tx_carrier_sense_errors);
9586
9587 stats->rx_crc_errors = old_stats->rx_crc_errors +
9588 calc_crc_errors(tp);
9589
John W. Linville4f63b872005-09-12 14:43:18 -07009590 stats->rx_missed_errors = old_stats->rx_missed_errors +
9591 get_stat64(&hw_stats->rx_discards);
9592
Eric Dumazetb0057c52010-10-10 19:55:52 +00009593 stats->rx_dropped = tp->rx_dropped;
9594
Linus Torvalds1da177e2005-04-16 15:20:36 -07009595 return stats;
9596}
9597
9598static inline u32 calc_crc(unsigned char *buf, int len)
9599{
9600 u32 reg;
9601 u32 tmp;
9602 int j, k;
9603
9604 reg = 0xffffffff;
9605
9606 for (j = 0; j < len; j++) {
9607 reg ^= buf[j];
9608
9609 for (k = 0; k < 8; k++) {
9610 tmp = reg & 0x01;
9611
9612 reg >>= 1;
9613
Matt Carlson859a588792010-04-05 10:19:28 +00009614 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009615 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009616 }
9617 }
9618
9619 return ~reg;
9620}
9621
9622static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9623{
9624 /* accept or reject all multicast frames */
9625 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9626 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9627 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9628 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9629}
9630
9631static void __tg3_set_rx_mode(struct net_device *dev)
9632{
9633 struct tg3 *tp = netdev_priv(dev);
9634 u32 rx_mode;
9635
9636 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9637 RX_MODE_KEEP_VLAN_TAG);
9638
Matt Carlsonbf933c82011-01-25 15:58:49 +00009639#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009640 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9641 * flag clear.
9642 */
Joe Perches63c3a662011-04-26 08:12:10 +00009643 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9645#endif
9646
9647 if (dev->flags & IFF_PROMISC) {
9648 /* Promiscuous mode. */
9649 rx_mode |= RX_MODE_PROMISC;
9650 } else if (dev->flags & IFF_ALLMULTI) {
9651 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009652 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009653 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009654 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009655 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009656 } else {
9657 /* Accept one or more multicast(s). */
Jiri Pirko22bedad32010-04-01 21:22:57 +00009658 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009659 u32 mc_filter[4] = { 0, };
9660 u32 regidx;
9661 u32 bit;
9662 u32 crc;
9663
Jiri Pirko22bedad32010-04-01 21:22:57 +00009664 netdev_for_each_mc_addr(ha, dev) {
9665 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009666 bit = ~crc & 0x7f;
9667 regidx = (bit & 0x60) >> 5;
9668 bit &= 0x1f;
9669 mc_filter[regidx] |= (1 << bit);
9670 }
9671
9672 tw32(MAC_HASH_REG_0, mc_filter[0]);
9673 tw32(MAC_HASH_REG_1, mc_filter[1]);
9674 tw32(MAC_HASH_REG_2, mc_filter[2]);
9675 tw32(MAC_HASH_REG_3, mc_filter[3]);
9676 }
9677
9678 if (rx_mode != tp->rx_mode) {
9679 tp->rx_mode = rx_mode;
9680 tw32_f(MAC_RX_MODE, rx_mode);
9681 udelay(10);
9682 }
9683}
9684
9685static void tg3_set_rx_mode(struct net_device *dev)
9686{
9687 struct tg3 *tp = netdev_priv(dev);
9688
Michael Chane75f7c92006-03-20 21:33:26 -08009689 if (!netif_running(dev))
9690 return;
9691
David S. Millerf47c11e2005-06-24 20:18:35 -07009692 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009693 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009694 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009695}
9696
Linus Torvalds1da177e2005-04-16 15:20:36 -07009697static int tg3_get_regs_len(struct net_device *dev)
9698{
Matt Carlson97bd8e42011-04-13 11:05:04 +00009699 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009700}
9701
9702static void tg3_get_regs(struct net_device *dev,
9703 struct ethtool_regs *regs, void *_p)
9704{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009705 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009706
9707 regs->version = 0;
9708
Matt Carlson97bd8e42011-04-13 11:05:04 +00009709 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009710
Matt Carlson80096062010-08-02 11:26:06 +00009711 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009712 return;
9713
David S. Millerf47c11e2005-06-24 20:18:35 -07009714 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009715
Matt Carlson97bd8e42011-04-13 11:05:04 +00009716 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009717
David S. Millerf47c11e2005-06-24 20:18:35 -07009718 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009719}
9720
9721static int tg3_get_eeprom_len(struct net_device *dev)
9722{
9723 struct tg3 *tp = netdev_priv(dev);
9724
9725 return tp->nvram_size;
9726}
9727
Linus Torvalds1da177e2005-04-16 15:20:36 -07009728static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9729{
9730 struct tg3 *tp = netdev_priv(dev);
9731 int ret;
9732 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009733 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009734 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009735
Joe Perches63c3a662011-04-26 08:12:10 +00009736 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +00009737 return -EINVAL;
9738
Matt Carlson80096062010-08-02 11:26:06 +00009739 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009740 return -EAGAIN;
9741
Linus Torvalds1da177e2005-04-16 15:20:36 -07009742 offset = eeprom->offset;
9743 len = eeprom->len;
9744 eeprom->len = 0;
9745
9746 eeprom->magic = TG3_EEPROM_MAGIC;
9747
9748 if (offset & 3) {
9749 /* adjustments to start on required 4 byte boundary */
9750 b_offset = offset & 3;
9751 b_count = 4 - b_offset;
9752 if (b_count > len) {
9753 /* i.e. offset=1 len=2 */
9754 b_count = len;
9755 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009756 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009757 if (ret)
9758 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +00009759 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009760 len -= b_count;
9761 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009762 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009763 }
9764
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009765 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009766 pd = &data[eeprom->len];
9767 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009768 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009769 if (ret) {
9770 eeprom->len += i;
9771 return ret;
9772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009773 memcpy(pd + i, &val, 4);
9774 }
9775 eeprom->len += i;
9776
9777 if (len & 3) {
9778 /* read last bytes not ending on 4 byte boundary */
9779 pd = &data[eeprom->len];
9780 b_count = len & 3;
9781 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009782 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009783 if (ret)
9784 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009785 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009786 eeprom->len += b_count;
9787 }
9788 return 0;
9789}
9790
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009791static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009792
9793static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9794{
9795 struct tg3 *tp = netdev_priv(dev);
9796 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009797 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009798 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009799 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009800
Matt Carlson80096062010-08-02 11:26:06 +00009801 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009802 return -EAGAIN;
9803
Joe Perches63c3a662011-04-26 08:12:10 +00009804 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +00009805 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009806 return -EINVAL;
9807
9808 offset = eeprom->offset;
9809 len = eeprom->len;
9810
9811 if ((b_offset = (offset & 3))) {
9812 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009813 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009814 if (ret)
9815 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009816 len += b_offset;
9817 offset &= ~3;
Michael Chan1c8594b42005-04-21 17:12:46 -07009818 if (len < 4)
9819 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009820 }
9821
9822 odd_len = 0;
Michael Chan1c8594b42005-04-21 17:12:46 -07009823 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009824 /* adjustments to end on required 4 byte boundary */
9825 odd_len = 1;
9826 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009827 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009828 if (ret)
9829 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009830 }
9831
9832 buf = data;
9833 if (b_offset || odd_len) {
9834 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009835 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009836 return -ENOMEM;
9837 if (b_offset)
9838 memcpy(buf, &start, 4);
9839 if (odd_len)
9840 memcpy(buf+len-4, &end, 4);
9841 memcpy(buf + b_offset, data, eeprom->len);
9842 }
9843
9844 ret = tg3_nvram_write_block(tp, offset, len, buf);
9845
9846 if (buf != data)
9847 kfree(buf);
9848
9849 return ret;
9850}
9851
9852static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9853{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009854 struct tg3 *tp = netdev_priv(dev);
9855
Joe Perches63c3a662011-04-26 08:12:10 +00009856 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009857 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009858 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009859 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009860 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9861 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009862 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009863
Linus Torvalds1da177e2005-04-16 15:20:36 -07009864 cmd->supported = (SUPPORTED_Autoneg);
9865
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009866 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009867 cmd->supported |= (SUPPORTED_1000baseT_Half |
9868 SUPPORTED_1000baseT_Full);
9869
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009870 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009871 cmd->supported |= (SUPPORTED_100baseT_Half |
9872 SUPPORTED_100baseT_Full |
9873 SUPPORTED_10baseT_Half |
9874 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08009875 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07009876 cmd->port = PORT_TP;
9877 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009878 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07009879 cmd->port = PORT_FIBRE;
9880 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009881
Linus Torvalds1da177e2005-04-16 15:20:36 -07009882 cmd->advertising = tp->link_config.advertising;
9883 if (netif_running(dev)) {
David Decotigny70739492011-04-27 18:32:40 +00009884 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson64c22182010-10-14 10:37:44 +00009886 } else {
David Decotigny70739492011-04-27 18:32:40 +00009887 ethtool_cmd_speed_set(cmd, SPEED_INVALID);
Matt Carlson64c22182010-10-14 10:37:44 +00009888 cmd->duplex = DUPLEX_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009889 }
Matt Carlson882e9792009-09-01 13:21:36 +00009890 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009891 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009892 cmd->autoneg = tp->link_config.autoneg;
9893 cmd->maxtxpkt = 0;
9894 cmd->maxrxpkt = 0;
9895 return 0;
9896}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009897
Linus Torvalds1da177e2005-04-16 15:20:36 -07009898static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9899{
9900 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +00009901 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009902
Joe Perches63c3a662011-04-26 08:12:10 +00009903 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009904 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009905 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009906 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009907 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9908 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009909 }
9910
Matt Carlson7e5856b2009-02-25 14:23:01 +00009911 if (cmd->autoneg != AUTONEG_ENABLE &&
9912 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -07009913 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009914
9915 if (cmd->autoneg == AUTONEG_DISABLE &&
9916 cmd->duplex != DUPLEX_FULL &&
9917 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -07009918 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009919
Matt Carlson7e5856b2009-02-25 14:23:01 +00009920 if (cmd->autoneg == AUTONEG_ENABLE) {
9921 u32 mask = ADVERTISED_Autoneg |
9922 ADVERTISED_Pause |
9923 ADVERTISED_Asym_Pause;
9924
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009925 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009926 mask |= ADVERTISED_1000baseT_Half |
9927 ADVERTISED_1000baseT_Full;
9928
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009929 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009930 mask |= ADVERTISED_100baseT_Half |
9931 ADVERTISED_100baseT_Full |
9932 ADVERTISED_10baseT_Half |
9933 ADVERTISED_10baseT_Full |
9934 ADVERTISED_TP;
9935 else
9936 mask |= ADVERTISED_FIBRE;
9937
9938 if (cmd->advertising & ~mask)
9939 return -EINVAL;
9940
9941 mask &= (ADVERTISED_1000baseT_Half |
9942 ADVERTISED_1000baseT_Full |
9943 ADVERTISED_100baseT_Half |
9944 ADVERTISED_100baseT_Full |
9945 ADVERTISED_10baseT_Half |
9946 ADVERTISED_10baseT_Full);
9947
9948 cmd->advertising &= mask;
9949 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009950 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +00009951 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +00009952 return -EINVAL;
9953
9954 if (cmd->duplex != DUPLEX_FULL)
9955 return -EINVAL;
9956 } else {
David Decotigny25db0332011-04-27 18:32:39 +00009957 if (speed != SPEED_100 &&
9958 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +00009959 return -EINVAL;
9960 }
9961 }
9962
David S. Millerf47c11e2005-06-24 20:18:35 -07009963 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964
9965 tp->link_config.autoneg = cmd->autoneg;
9966 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07009967 tp->link_config.advertising = (cmd->advertising |
9968 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009969 tp->link_config.speed = SPEED_INVALID;
9970 tp->link_config.duplex = DUPLEX_INVALID;
9971 } else {
9972 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +00009973 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009974 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009975 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009976
Michael Chan24fcad62006-12-17 17:06:46 -08009977 tp->link_config.orig_speed = tp->link_config.speed;
9978 tp->link_config.orig_duplex = tp->link_config.duplex;
9979 tp->link_config.orig_autoneg = tp->link_config.autoneg;
9980
Linus Torvalds1da177e2005-04-16 15:20:36 -07009981 if (netif_running(dev))
9982 tg3_setup_phy(tp, 1);
9983
David S. Millerf47c11e2005-06-24 20:18:35 -07009984 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009985
Linus Torvalds1da177e2005-04-16 15:20:36 -07009986 return 0;
9987}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009988
Linus Torvalds1da177e2005-04-16 15:20:36 -07009989static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
9990{
9991 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009992
Linus Torvalds1da177e2005-04-16 15:20:36 -07009993 strcpy(info->driver, DRV_MODULE_NAME);
9994 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -08009995 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009996 strcpy(info->bus_info, pci_name(tp->pdev));
9997}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009998
Linus Torvalds1da177e2005-04-16 15:20:36 -07009999static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10000{
10001 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010002
Joe Perches63c3a662011-04-26 08:12:10 +000010003 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010004 wol->supported = WAKE_MAGIC;
10005 else
10006 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010007 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010008 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010009 wol->wolopts = WAKE_MAGIC;
10010 memset(&wol->sopass, 0, sizeof(wol->sopass));
10011}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010012
Linus Torvalds1da177e2005-04-16 15:20:36 -070010013static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10014{
10015 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010016 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010017
Linus Torvalds1da177e2005-04-16 15:20:36 -070010018 if (wol->wolopts & ~WAKE_MAGIC)
10019 return -EINVAL;
10020 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010021 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010022 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010023
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010024 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10025
David S. Millerf47c11e2005-06-24 20:18:35 -070010026 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010027 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010028 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010029 else
Joe Perches63c3a662011-04-26 08:12:10 +000010030 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010031 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010032
Linus Torvalds1da177e2005-04-16 15:20:36 -070010033 return 0;
10034}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010035
Linus Torvalds1da177e2005-04-16 15:20:36 -070010036static u32 tg3_get_msglevel(struct net_device *dev)
10037{
10038 struct tg3 *tp = netdev_priv(dev);
10039 return tp->msg_enable;
10040}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010041
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042static void tg3_set_msglevel(struct net_device *dev, u32 value)
10043{
10044 struct tg3 *tp = netdev_priv(dev);
10045 tp->msg_enable = value;
10046}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010047
Linus Torvalds1da177e2005-04-16 15:20:36 -070010048static int tg3_nway_reset(struct net_device *dev)
10049{
10050 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010051 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010052
Linus Torvalds1da177e2005-04-16 15:20:36 -070010053 if (!netif_running(dev))
10054 return -EAGAIN;
10055
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010056 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010057 return -EINVAL;
10058
Joe Perches63c3a662011-04-26 08:12:10 +000010059 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010060 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010061 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010062 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010063 } else {
10064 u32 bmcr;
10065
10066 spin_lock_bh(&tp->lock);
10067 r = -EINVAL;
10068 tg3_readphy(tp, MII_BMCR, &bmcr);
10069 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10070 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010071 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010072 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10073 BMCR_ANENABLE);
10074 r = 0;
10075 }
10076 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010077 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010078
Linus Torvalds1da177e2005-04-16 15:20:36 -070010079 return r;
10080}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010081
Linus Torvalds1da177e2005-04-16 15:20:36 -070010082static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10083{
10084 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010085
Matt Carlson2c49a442010-09-30 10:34:35 +000010086 ering->rx_max_pending = tp->rx_std_ring_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010087 ering->rx_mini_max_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010088 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010089 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010090 else
10091 ering->rx_jumbo_max_pending = 0;
10092
10093 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010094
10095 ering->rx_pending = tp->rx_pending;
10096 ering->rx_mini_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010097 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010098 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10099 else
10100 ering->rx_jumbo_pending = 0;
10101
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010102 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010103}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010104
Linus Torvalds1da177e2005-04-16 15:20:36 -070010105static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10106{
10107 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010108 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010109
Matt Carlson2c49a442010-09-30 10:34:35 +000010110 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10111 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010112 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10113 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010114 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010115 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010116 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010117
Michael Chanbbe832c2005-06-24 20:20:04 -070010118 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010119 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010120 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010121 irq_sync = 1;
10122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010123
Michael Chanbbe832c2005-06-24 20:20:04 -070010124 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010125
Linus Torvalds1da177e2005-04-16 15:20:36 -070010126 tp->rx_pending = ering->rx_pending;
10127
Joe Perches63c3a662011-04-26 08:12:10 +000010128 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010129 tp->rx_pending > 63)
10130 tp->rx_pending = 63;
10131 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010132
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010133 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010134 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010135
10136 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010137 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010138 err = tg3_restart_hw(tp, 1);
10139 if (!err)
10140 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010141 }
10142
David S. Millerf47c11e2005-06-24 20:18:35 -070010143 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010144
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010145 if (irq_sync && !err)
10146 tg3_phy_start(tp);
10147
Michael Chanb9ec6c12006-07-25 16:37:27 -070010148 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010149}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010150
Linus Torvalds1da177e2005-04-16 15:20:36 -070010151static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10152{
10153 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010154
Joe Perches63c3a662011-04-26 08:12:10 +000010155 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010156
Steve Glendinninge18ce342008-12-16 02:00:00 -080010157 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010158 epause->rx_pause = 1;
10159 else
10160 epause->rx_pause = 0;
10161
Steve Glendinninge18ce342008-12-16 02:00:00 -080010162 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010163 epause->tx_pause = 1;
10164 else
10165 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010166}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010167
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10169{
10170 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010171 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010172
Joe Perches63c3a662011-04-26 08:12:10 +000010173 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010174 u32 newadv;
10175 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010176
Matt Carlson27121682010-02-17 15:16:57 +000010177 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010178
Matt Carlson27121682010-02-17 15:16:57 +000010179 if (!(phydev->supported & SUPPORTED_Pause) ||
10180 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010181 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010182 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010183
Matt Carlson27121682010-02-17 15:16:57 +000010184 tp->link_config.flowctrl = 0;
10185 if (epause->rx_pause) {
10186 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010187
Matt Carlson27121682010-02-17 15:16:57 +000010188 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010189 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010190 newadv = ADVERTISED_Pause;
10191 } else
10192 newadv = ADVERTISED_Pause |
10193 ADVERTISED_Asym_Pause;
10194 } else if (epause->tx_pause) {
10195 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10196 newadv = ADVERTISED_Asym_Pause;
10197 } else
10198 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010199
Matt Carlson27121682010-02-17 15:16:57 +000010200 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010201 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010202 else
Joe Perches63c3a662011-04-26 08:12:10 +000010203 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010204
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010205 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010206 u32 oldadv = phydev->advertising &
10207 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10208 if (oldadv != newadv) {
10209 phydev->advertising &=
10210 ~(ADVERTISED_Pause |
10211 ADVERTISED_Asym_Pause);
10212 phydev->advertising |= newadv;
10213 if (phydev->autoneg) {
10214 /*
10215 * Always renegotiate the link to
10216 * inform our link partner of our
10217 * flow control settings, even if the
10218 * flow control is forced. Let
10219 * tg3_adjust_link() do the final
10220 * flow control setup.
10221 */
10222 return phy_start_aneg(phydev);
10223 }
10224 }
10225
10226 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010227 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010228 } else {
10229 tp->link_config.orig_advertising &=
10230 ~(ADVERTISED_Pause |
10231 ADVERTISED_Asym_Pause);
10232 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010233 }
10234 } else {
10235 int irq_sync = 0;
10236
10237 if (netif_running(dev)) {
10238 tg3_netif_stop(tp);
10239 irq_sync = 1;
10240 }
10241
10242 tg3_full_lock(tp, irq_sync);
10243
10244 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010245 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010246 else
Joe Perches63c3a662011-04-26 08:12:10 +000010247 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010248 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010249 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010250 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010251 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010252 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010253 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010254 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010255 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010256
10257 if (netif_running(dev)) {
10258 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10259 err = tg3_restart_hw(tp, 1);
10260 if (!err)
10261 tg3_netif_start(tp);
10262 }
10263
10264 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010266
Michael Chanb9ec6c12006-07-25 16:37:27 -070010267 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010268}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010269
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010270static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010271{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010272 switch (sset) {
10273 case ETH_SS_TEST:
10274 return TG3_NUM_TEST;
10275 case ETH_SS_STATS:
10276 return TG3_NUM_STATS;
10277 default:
10278 return -EOPNOTSUPP;
10279 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010280}
10281
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010282static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010283{
10284 switch (stringset) {
10285 case ETH_SS_STATS:
10286 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10287 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010288 case ETH_SS_TEST:
10289 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10290 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010291 default:
10292 WARN_ON(1); /* we need a WARN() */
10293 break;
10294 }
10295}
10296
stephen hemminger81b87092011-04-04 08:43:50 +000010297static int tg3_set_phys_id(struct net_device *dev,
10298 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010299{
10300 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010301
10302 if (!netif_running(tp->dev))
10303 return -EAGAIN;
10304
stephen hemminger81b87092011-04-04 08:43:50 +000010305 switch (state) {
10306 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010307 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010308
stephen hemminger81b87092011-04-04 08:43:50 +000010309 case ETHTOOL_ID_ON:
10310 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10311 LED_CTRL_1000MBPS_ON |
10312 LED_CTRL_100MBPS_ON |
10313 LED_CTRL_10MBPS_ON |
10314 LED_CTRL_TRAFFIC_OVERRIDE |
10315 LED_CTRL_TRAFFIC_BLINK |
10316 LED_CTRL_TRAFFIC_LED);
10317 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010318
stephen hemminger81b87092011-04-04 08:43:50 +000010319 case ETHTOOL_ID_OFF:
10320 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10321 LED_CTRL_TRAFFIC_OVERRIDE);
10322 break;
Michael Chan4009a932005-09-05 17:52:54 -070010323
stephen hemminger81b87092011-04-04 08:43:50 +000010324 case ETHTOOL_ID_INACTIVE:
10325 tw32(MAC_LED_CTRL, tp->led_ctrl);
10326 break;
Michael Chan4009a932005-09-05 17:52:54 -070010327 }
stephen hemminger81b87092011-04-04 08:43:50 +000010328
Michael Chan4009a932005-09-05 17:52:54 -070010329 return 0;
10330}
10331
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010332static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010333 struct ethtool_stats *estats, u64 *tmp_stats)
10334{
10335 struct tg3 *tp = netdev_priv(dev);
10336 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10337}
10338
Matt Carlsonc3e94502011-04-13 11:05:08 +000010339static __be32 * tg3_vpd_readblock(struct tg3 *tp)
10340{
10341 int i;
10342 __be32 *buf;
10343 u32 offset = 0, len = 0;
10344 u32 magic, val;
10345
Joe Perches63c3a662011-04-26 08:12:10 +000010346 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010347 return NULL;
10348
10349 if (magic == TG3_EEPROM_MAGIC) {
10350 for (offset = TG3_NVM_DIR_START;
10351 offset < TG3_NVM_DIR_END;
10352 offset += TG3_NVM_DIRENT_SIZE) {
10353 if (tg3_nvram_read(tp, offset, &val))
10354 return NULL;
10355
10356 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10357 TG3_NVM_DIRTYPE_EXTVPD)
10358 break;
10359 }
10360
10361 if (offset != TG3_NVM_DIR_END) {
10362 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10363 if (tg3_nvram_read(tp, offset + 4, &offset))
10364 return NULL;
10365
10366 offset = tg3_nvram_logical_addr(tp, offset);
10367 }
10368 }
10369
10370 if (!offset || !len) {
10371 offset = TG3_NVM_VPD_OFF;
10372 len = TG3_NVM_VPD_LEN;
10373 }
10374
10375 buf = kmalloc(len, GFP_KERNEL);
10376 if (buf == NULL)
10377 return NULL;
10378
10379 if (magic == TG3_EEPROM_MAGIC) {
10380 for (i = 0; i < len; i += 4) {
10381 /* The data is in little-endian format in NVRAM.
10382 * Use the big-endian read routines to preserve
10383 * the byte order as it exists in NVRAM.
10384 */
10385 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10386 goto error;
10387 }
10388 } else {
10389 u8 *ptr;
10390 ssize_t cnt;
10391 unsigned int pos = 0;
10392
10393 ptr = (u8 *)&buf[0];
10394 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10395 cnt = pci_read_vpd(tp->pdev, pos,
10396 len - pos, ptr);
10397 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10398 cnt = 0;
10399 else if (cnt < 0)
10400 goto error;
10401 }
10402 if (pos != len)
10403 goto error;
10404 }
10405
10406 return buf;
10407
10408error:
10409 kfree(buf);
10410 return NULL;
10411}
10412
Michael Chan566f86a2005-05-29 14:56:58 -070010413#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010414#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10415#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10416#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -070010417#define NVRAM_SELFBOOT_HW_SIZE 0x20
10418#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010419
10420static int tg3_test_nvram(struct tg3 *tp)
10421{
Al Virob9fc7dc2007-12-17 22:59:57 -080010422 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010423 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010424 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010425
Joe Perches63c3a662011-04-26 08:12:10 +000010426 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010427 return 0;
10428
Matt Carlsone4f34112009-02-25 14:25:00 +000010429 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010430 return -EIO;
10431
Michael Chan1b277772006-03-20 22:27:48 -080010432 if (magic == TG3_EEPROM_MAGIC)
10433 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010434 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010435 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10436 TG3_EEPROM_SB_FORMAT_1) {
10437 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10438 case TG3_EEPROM_SB_REVISION_0:
10439 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10440 break;
10441 case TG3_EEPROM_SB_REVISION_2:
10442 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10443 break;
10444 case TG3_EEPROM_SB_REVISION_3:
10445 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10446 break;
10447 default:
10448 return 0;
10449 }
10450 } else
Michael Chan1b277772006-03-20 22:27:48 -080010451 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010452 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10453 size = NVRAM_SELFBOOT_HW_SIZE;
10454 else
Michael Chan1b277772006-03-20 22:27:48 -080010455 return -EIO;
10456
10457 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010458 if (buf == NULL)
10459 return -ENOMEM;
10460
Michael Chan1b277772006-03-20 22:27:48 -080010461 err = -EIO;
10462 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010463 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10464 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010465 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010466 }
Michael Chan1b277772006-03-20 22:27:48 -080010467 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010468 goto out;
10469
Michael Chan1b277772006-03-20 22:27:48 -080010470 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010471 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010472 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010473 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010474 u8 *buf8 = (u8 *) buf, csum8 = 0;
10475
Al Virob9fc7dc2007-12-17 22:59:57 -080010476 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010477 TG3_EEPROM_SB_REVISION_2) {
10478 /* For rev 2, the csum doesn't include the MBA. */
10479 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10480 csum8 += buf8[i];
10481 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10482 csum8 += buf8[i];
10483 } else {
10484 for (i = 0; i < size; i++)
10485 csum8 += buf8[i];
10486 }
Michael Chan1b277772006-03-20 22:27:48 -080010487
Adrian Bunkad96b482006-04-05 22:21:04 -070010488 if (csum8 == 0) {
10489 err = 0;
10490 goto out;
10491 }
10492
10493 err = -EIO;
10494 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010495 }
Michael Chan566f86a2005-05-29 14:56:58 -070010496
Al Virob9fc7dc2007-12-17 22:59:57 -080010497 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010498 TG3_EEPROM_MAGIC_HW) {
10499 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010500 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010501 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010502
10503 /* Separate the parity bits and the data bytes. */
10504 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10505 if ((i == 0) || (i == 8)) {
10506 int l;
10507 u8 msk;
10508
10509 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10510 parity[k++] = buf8[i] & msk;
10511 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000010512 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070010513 int l;
10514 u8 msk;
10515
10516 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10517 parity[k++] = buf8[i] & msk;
10518 i++;
10519
10520 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10521 parity[k++] = buf8[i] & msk;
10522 i++;
10523 }
10524 data[j++] = buf8[i];
10525 }
10526
10527 err = -EIO;
10528 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10529 u8 hw8 = hweight8(data[i]);
10530
10531 if ((hw8 & 0x1) && parity[i])
10532 goto out;
10533 else if (!(hw8 & 0x1) && !parity[i])
10534 goto out;
10535 }
10536 err = 0;
10537 goto out;
10538 }
10539
Matt Carlson01c3a392011-03-09 16:58:20 +000010540 err = -EIO;
10541
Michael Chan566f86a2005-05-29 14:56:58 -070010542 /* Bootstrap checksum at offset 0x10 */
10543 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000010544 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010545 goto out;
10546
10547 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10548 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000010549 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000010550 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010551
Matt Carlsonc3e94502011-04-13 11:05:08 +000010552 kfree(buf);
10553
10554 buf = tg3_vpd_readblock(tp);
10555 if (!buf)
10556 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000010557
10558 i = pci_vpd_find_tag((u8 *)buf, 0, TG3_NVM_VPD_LEN,
10559 PCI_VPD_LRDT_RO_DATA);
10560 if (i > 0) {
10561 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
10562 if (j < 0)
10563 goto out;
10564
10565 if (i + PCI_VPD_LRDT_TAG_SIZE + j > TG3_NVM_VPD_LEN)
10566 goto out;
10567
10568 i += PCI_VPD_LRDT_TAG_SIZE;
10569 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
10570 PCI_VPD_RO_KEYWORD_CHKSUM);
10571 if (j > 0) {
10572 u8 csum8 = 0;
10573
10574 j += PCI_VPD_INFO_FLD_HDR_SIZE;
10575
10576 for (i = 0; i <= j; i++)
10577 csum8 += ((u8 *)buf)[i];
10578
10579 if (csum8)
10580 goto out;
10581 }
10582 }
10583
Michael Chan566f86a2005-05-29 14:56:58 -070010584 err = 0;
10585
10586out:
10587 kfree(buf);
10588 return err;
10589}
10590
Michael Chanca430072005-05-29 14:57:23 -070010591#define TG3_SERDES_TIMEOUT_SEC 2
10592#define TG3_COPPER_TIMEOUT_SEC 6
10593
10594static int tg3_test_link(struct tg3 *tp)
10595{
10596 int i, max;
10597
10598 if (!netif_running(tp->dev))
10599 return -ENODEV;
10600
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010601 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010602 max = TG3_SERDES_TIMEOUT_SEC;
10603 else
10604 max = TG3_COPPER_TIMEOUT_SEC;
10605
10606 for (i = 0; i < max; i++) {
10607 if (netif_carrier_ok(tp->dev))
10608 return 0;
10609
10610 if (msleep_interruptible(1000))
10611 break;
10612 }
10613
10614 return -EIO;
10615}
10616
Michael Chana71116d2005-05-29 14:58:11 -070010617/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010618static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010619{
Michael Chanb16250e2006-09-27 16:10:14 -070010620 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010621 u32 offset, read_mask, write_mask, val, save_val, read_val;
10622 static struct {
10623 u16 offset;
10624 u16 flags;
10625#define TG3_FL_5705 0x1
10626#define TG3_FL_NOT_5705 0x2
10627#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010628#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010629 u32 read_mask;
10630 u32 write_mask;
10631 } reg_tbl[] = {
10632 /* MAC Control Registers */
10633 { MAC_MODE, TG3_FL_NOT_5705,
10634 0x00000000, 0x00ef6f8c },
10635 { MAC_MODE, TG3_FL_5705,
10636 0x00000000, 0x01ef6b8c },
10637 { MAC_STATUS, TG3_FL_NOT_5705,
10638 0x03800107, 0x00000000 },
10639 { MAC_STATUS, TG3_FL_5705,
10640 0x03800100, 0x00000000 },
10641 { MAC_ADDR_0_HIGH, 0x0000,
10642 0x00000000, 0x0000ffff },
10643 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010644 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070010645 { MAC_RX_MTU_SIZE, 0x0000,
10646 0x00000000, 0x0000ffff },
10647 { MAC_TX_MODE, 0x0000,
10648 0x00000000, 0x00000070 },
10649 { MAC_TX_LENGTHS, 0x0000,
10650 0x00000000, 0x00003fff },
10651 { MAC_RX_MODE, TG3_FL_NOT_5705,
10652 0x00000000, 0x000007fc },
10653 { MAC_RX_MODE, TG3_FL_5705,
10654 0x00000000, 0x000007dc },
10655 { MAC_HASH_REG_0, 0x0000,
10656 0x00000000, 0xffffffff },
10657 { MAC_HASH_REG_1, 0x0000,
10658 0x00000000, 0xffffffff },
10659 { MAC_HASH_REG_2, 0x0000,
10660 0x00000000, 0xffffffff },
10661 { MAC_HASH_REG_3, 0x0000,
10662 0x00000000, 0xffffffff },
10663
10664 /* Receive Data and Receive BD Initiator Control Registers. */
10665 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10666 0x00000000, 0xffffffff },
10667 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10668 0x00000000, 0xffffffff },
10669 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10670 0x00000000, 0x00000003 },
10671 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10672 0x00000000, 0xffffffff },
10673 { RCVDBDI_STD_BD+0, 0x0000,
10674 0x00000000, 0xffffffff },
10675 { RCVDBDI_STD_BD+4, 0x0000,
10676 0x00000000, 0xffffffff },
10677 { RCVDBDI_STD_BD+8, 0x0000,
10678 0x00000000, 0xffff0002 },
10679 { RCVDBDI_STD_BD+0xc, 0x0000,
10680 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010681
Michael Chana71116d2005-05-29 14:58:11 -070010682 /* Receive BD Initiator Control Registers. */
10683 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10684 0x00000000, 0xffffffff },
10685 { RCVBDI_STD_THRESH, TG3_FL_5705,
10686 0x00000000, 0x000003ff },
10687 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10688 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010689
Michael Chana71116d2005-05-29 14:58:11 -070010690 /* Host Coalescing Control Registers. */
10691 { HOSTCC_MODE, TG3_FL_NOT_5705,
10692 0x00000000, 0x00000004 },
10693 { HOSTCC_MODE, TG3_FL_5705,
10694 0x00000000, 0x000000f6 },
10695 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10696 0x00000000, 0xffffffff },
10697 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10698 0x00000000, 0x000003ff },
10699 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10700 0x00000000, 0xffffffff },
10701 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10702 0x00000000, 0x000003ff },
10703 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10704 0x00000000, 0xffffffff },
10705 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10706 0x00000000, 0x000000ff },
10707 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10708 0x00000000, 0xffffffff },
10709 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10710 0x00000000, 0x000000ff },
10711 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10712 0x00000000, 0xffffffff },
10713 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10714 0x00000000, 0xffffffff },
10715 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10716 0x00000000, 0xffffffff },
10717 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10718 0x00000000, 0x000000ff },
10719 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10720 0x00000000, 0xffffffff },
10721 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10722 0x00000000, 0x000000ff },
10723 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10724 0x00000000, 0xffffffff },
10725 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10726 0x00000000, 0xffffffff },
10727 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10728 0x00000000, 0xffffffff },
10729 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10730 0x00000000, 0xffffffff },
10731 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10732 0x00000000, 0xffffffff },
10733 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10734 0xffffffff, 0x00000000 },
10735 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10736 0xffffffff, 0x00000000 },
10737
10738 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010739 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010740 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010741 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010742 0x00000000, 0x007fffff },
10743 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10744 0x00000000, 0x0000003f },
10745 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10746 0x00000000, 0x000001ff },
10747 { BUFMGR_MB_HIGH_WATER, 0x0000,
10748 0x00000000, 0x000001ff },
10749 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10750 0xffffffff, 0x00000000 },
10751 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10752 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010753
Michael Chana71116d2005-05-29 14:58:11 -070010754 /* Mailbox Registers */
10755 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10756 0x00000000, 0x000001ff },
10757 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10758 0x00000000, 0x000001ff },
10759 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10760 0x00000000, 0x000007ff },
10761 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10762 0x00000000, 0x000001ff },
10763
10764 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10765 };
10766
Michael Chanb16250e2006-09-27 16:10:14 -070010767 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010768 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070010769 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000010770 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070010771 is_5750 = 1;
10772 }
Michael Chana71116d2005-05-29 14:58:11 -070010773
10774 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10775 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10776 continue;
10777
10778 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10779 continue;
10780
Joe Perches63c3a662011-04-26 08:12:10 +000010781 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070010782 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10783 continue;
10784
Michael Chanb16250e2006-09-27 16:10:14 -070010785 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10786 continue;
10787
Michael Chana71116d2005-05-29 14:58:11 -070010788 offset = (u32) reg_tbl[i].offset;
10789 read_mask = reg_tbl[i].read_mask;
10790 write_mask = reg_tbl[i].write_mask;
10791
10792 /* Save the original register content */
10793 save_val = tr32(offset);
10794
10795 /* Determine the read-only value. */
10796 read_val = save_val & read_mask;
10797
10798 /* Write zero to the register, then make sure the read-only bits
10799 * are not changed and the read/write bits are all zeros.
10800 */
10801 tw32(offset, 0);
10802
10803 val = tr32(offset);
10804
10805 /* Test the read-only and read/write bits. */
10806 if (((val & read_mask) != read_val) || (val & write_mask))
10807 goto out;
10808
10809 /* Write ones to all the bits defined by RdMask and WrMask, then
10810 * make sure the read-only bits are not changed and the
10811 * read/write bits are all ones.
10812 */
10813 tw32(offset, read_mask | write_mask);
10814
10815 val = tr32(offset);
10816
10817 /* Test the read-only bits. */
10818 if ((val & read_mask) != read_val)
10819 goto out;
10820
10821 /* Test the read/write bits. */
10822 if ((val & write_mask) != write_mask)
10823 goto out;
10824
10825 tw32(offset, save_val);
10826 }
10827
10828 return 0;
10829
10830out:
Michael Chan9f88f292006-12-07 00:22:54 -080010831 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000010832 netdev_err(tp->dev,
10833 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070010834 tw32(offset, save_val);
10835 return -EIO;
10836}
10837
Michael Chan7942e1d2005-05-29 14:58:36 -070010838static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10839{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010840 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010841 int i;
10842 u32 j;
10843
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010844 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010845 for (j = 0; j < len; j += 4) {
10846 u32 val;
10847
10848 tg3_write_mem(tp, offset + j, test_pattern[i]);
10849 tg3_read_mem(tp, offset + j, &val);
10850 if (val != test_pattern[i])
10851 return -EIO;
10852 }
10853 }
10854 return 0;
10855}
10856
10857static int tg3_test_memory(struct tg3 *tp)
10858{
10859 static struct mem_entry {
10860 u32 offset;
10861 u32 len;
10862 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080010863 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070010864 { 0x00002000, 0x1c000},
10865 { 0xffffffff, 0x00000}
10866 }, mem_tbl_5705[] = {
10867 { 0x00000100, 0x0000c},
10868 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070010869 { 0x00004000, 0x00800},
10870 { 0x00006000, 0x01000},
10871 { 0x00008000, 0x02000},
10872 { 0x00010000, 0x0e000},
10873 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080010874 }, mem_tbl_5755[] = {
10875 { 0x00000200, 0x00008},
10876 { 0x00004000, 0x00800},
10877 { 0x00006000, 0x00800},
10878 { 0x00008000, 0x02000},
10879 { 0x00010000, 0x0c000},
10880 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070010881 }, mem_tbl_5906[] = {
10882 { 0x00000200, 0x00008},
10883 { 0x00004000, 0x00400},
10884 { 0x00006000, 0x00400},
10885 { 0x00008000, 0x01000},
10886 { 0x00010000, 0x01000},
10887 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010888 }, mem_tbl_5717[] = {
10889 { 0x00000200, 0x00008},
10890 { 0x00010000, 0x0a000},
10891 { 0x00020000, 0x13c00},
10892 { 0xffffffff, 0x00000}
10893 }, mem_tbl_57765[] = {
10894 { 0x00000200, 0x00008},
10895 { 0x00004000, 0x00800},
10896 { 0x00006000, 0x09800},
10897 { 0x00010000, 0x0a000},
10898 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070010899 };
10900 struct mem_entry *mem_tbl;
10901 int err = 0;
10902 int i;
10903
Joe Perches63c3a662011-04-26 08:12:10 +000010904 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010905 mem_tbl = mem_tbl_5717;
10906 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
10907 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000010908 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080010909 mem_tbl = mem_tbl_5755;
10910 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10911 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000010912 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080010913 mem_tbl = mem_tbl_5705;
10914 else
Michael Chan7942e1d2005-05-29 14:58:36 -070010915 mem_tbl = mem_tbl_570x;
10916
10917 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000010918 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
10919 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070010920 break;
10921 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010922
Michael Chan7942e1d2005-05-29 14:58:36 -070010923 return err;
10924}
10925
Michael Chan9f40dea2005-09-05 17:53:06 -070010926#define TG3_MAC_LOOPBACK 0
10927#define TG3_PHY_LOOPBACK 1
Matt Carlsonbb158d62011-04-25 12:42:47 +000010928#define TG3_TSO_LOOPBACK 2
10929
10930#define TG3_TSO_MSS 500
10931
10932#define TG3_TSO_IP_HDR_LEN 20
10933#define TG3_TSO_TCP_HDR_LEN 20
10934#define TG3_TSO_TCP_OPT_LEN 12
10935
10936static const u8 tg3_tso_header[] = {
109370x08, 0x00,
109380x45, 0x00, 0x00, 0x00,
109390x00, 0x00, 0x40, 0x00,
109400x40, 0x06, 0x00, 0x00,
109410x0a, 0x00, 0x00, 0x01,
109420x0a, 0x00, 0x00, 0x02,
109430x0d, 0x00, 0xe0, 0x00,
109440x00, 0x00, 0x01, 0x00,
109450x00, 0x00, 0x02, 0x00,
109460x80, 0x10, 0x10, 0x00,
109470x14, 0x09, 0x00, 0x00,
109480x01, 0x01, 0x08, 0x0a,
109490x11, 0x11, 0x11, 0x11,
109500x11, 0x11, 0x11, 0x11,
10951};
Michael Chan9f40dea2005-09-05 17:53:06 -070010952
Matt Carlson4852a862011-04-13 11:05:07 +000010953static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070010954{
Michael Chan9f40dea2005-09-05 17:53:06 -070010955 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000010956 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Michael Chanc76949a2005-05-29 14:58:59 -070010957 struct sk_buff *skb, *rx_skb;
10958 u8 *tx_data;
10959 dma_addr_t map;
10960 int num_pkts, tx_len, rx_len, i, err;
10961 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000010962 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000010963 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070010964
Matt Carlsonc8873402010-02-12 14:47:11 +000010965 tnapi = &tp->napi[0];
10966 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010967 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000010968 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000010969 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000010970 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000010971 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010972 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010973 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000010974
Michael Chan9f40dea2005-09-05 17:53:06 -070010975 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070010976 /* HW errata - mac loopback fails in some cases on 5780.
10977 * Normal traffic and PHY loopback are not affected by
Matt Carlsonaba49f22011-01-25 15:58:53 +000010978 * errata. Also, the MAC loopback test is deprecated for
10979 * all newer ASIC revisions.
Michael Chanc94e3942005-09-27 12:12:42 -070010980 */
Matt Carlsonaba49f22011-01-25 15:58:53 +000010981 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000010982 tg3_flag(tp, CPMU_PRESENT))
Michael Chanc94e3942005-09-27 12:12:42 -070010983 return 0;
10984
Matt Carlson49692ca2011-01-25 15:58:52 +000010985 mac_mode = tp->mac_mode &
10986 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
10987 mac_mode |= MAC_MODE_PORT_INT_LPBACK;
Joe Perches63c3a662011-04-26 08:12:10 +000010988 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070010989 mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010990 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Michael Chan3f7045c2006-09-27 16:02:29 -070010991 mac_mode |= MAC_MODE_PORT_MODE_MII;
10992 else
10993 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070010994 tw32(MAC_MODE, mac_mode);
Matt Carlsonbb158d62011-04-25 12:42:47 +000010995 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010996 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +000010997 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080010998 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
10999 } else
11000 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070011001
Matt Carlson9ef8ca92007-07-11 19:48:29 -070011002 tg3_phy_toggle_automdix(tp, 0);
11003
Michael Chan3f7045c2006-09-27 16:02:29 -070011004 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070011005 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080011006
Matt Carlson49692ca2011-01-25 15:58:52 +000011007 mac_mode = tp->mac_mode &
11008 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011009 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000011010 tg3_writephy(tp, MII_TG3_FET_PTEST,
11011 MII_TG3_FET_PTEST_FRC_TX_LINK |
11012 MII_TG3_FET_PTEST_FRC_TX_LOCK);
11013 /* The write needs to be flushed for the AC131 */
11014 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11015 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080011016 mac_mode |= MAC_MODE_PORT_MODE_MII;
11017 } else
11018 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070011019
Michael Chanc94e3942005-09-27 12:12:42 -070011020 /* reset to prevent losing 1st rx packet intermittently */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011021 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Michael Chanc94e3942005-09-27 12:12:42 -070011022 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
11023 udelay(10);
11024 tw32_f(MAC_RX_MODE, tp->rx_mode);
11025 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011026 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000011027 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
11028 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011029 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000011030 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011031 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080011032 tg3_writephy(tp, MII_TG3_EXT_CTRL,
11033 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
11034 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011035 tw32(MAC_MODE, mac_mode);
Matt Carlson49692ca2011-01-25 15:58:52 +000011036
11037 /* Wait for link */
11038 for (i = 0; i < 100; i++) {
11039 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11040 break;
11041 mdelay(1);
11042 }
Matt Carlson859a588792010-04-05 10:19:28 +000011043 }
Michael Chanc76949a2005-05-29 14:58:59 -070011044
11045 err = -EIO;
11046
Matt Carlson4852a862011-04-13 11:05:07 +000011047 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011048 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011049 if (!skb)
11050 return -ENOMEM;
11051
Michael Chanc76949a2005-05-29 14:58:59 -070011052 tx_data = skb_put(skb, tx_len);
11053 memcpy(tx_data, tp->dev->dev_addr, 6);
11054 memset(tx_data + 6, 0x0, 8);
11055
Matt Carlson4852a862011-04-13 11:05:07 +000011056 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011057
Matt Carlsonbb158d62011-04-25 12:42:47 +000011058 if (loopback_mode == TG3_TSO_LOOPBACK) {
11059 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11060
11061 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11062 TG3_TSO_TCP_OPT_LEN;
11063
11064 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11065 sizeof(tg3_tso_header));
11066 mss = TG3_TSO_MSS;
11067
11068 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11069 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11070
11071 /* Set the total length field in the IP header */
11072 iph->tot_len = htons((u16)(mss + hdr_len));
11073
11074 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11075 TXD_FLAG_CPU_POST_DMA);
11076
Joe Perches63c3a662011-04-26 08:12:10 +000011077 if (tg3_flag(tp, HW_TSO_1) ||
11078 tg3_flag(tp, HW_TSO_2) ||
11079 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011080 struct tcphdr *th;
11081 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11082 th = (struct tcphdr *)&tx_data[val];
11083 th->check = 0;
11084 } else
11085 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11086
Joe Perches63c3a662011-04-26 08:12:10 +000011087 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011088 mss |= (hdr_len & 0xc) << 12;
11089 if (hdr_len & 0x10)
11090 base_flags |= 0x00000010;
11091 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011092 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011093 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011094 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011095 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11096 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11097 } else {
11098 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11099 }
11100
11101 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11102 } else {
11103 num_pkts = 1;
11104 data_off = ETH_HLEN;
11105 }
11106
11107 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011108 tx_data[i] = (u8) (i & 0xff);
11109
Alexander Duyckf4188d82009-12-02 16:48:38 +000011110 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11111 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011112 dev_kfree_skb(skb);
11113 return -EIO;
11114 }
Michael Chanc76949a2005-05-29 14:58:59 -070011115
11116 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011117 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011118
11119 udelay(10);
11120
Matt Carlson898a56f2009-08-28 14:02:40 +000011121 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011122
Matt Carlsonbb158d62011-04-25 12:42:47 +000011123 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len,
11124 base_flags, (mss << 1) | 1);
Michael Chanc76949a2005-05-29 14:58:59 -070011125
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011126 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011127
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011128 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11129 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011130
11131 udelay(10);
11132
Matt Carlson303fc922009-11-02 14:27:34 +000011133 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11134 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011135 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011136 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011137
11138 udelay(10);
11139
Matt Carlson898a56f2009-08-28 14:02:40 +000011140 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11141 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011142 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011143 (rx_idx == (rx_start_idx + num_pkts)))
11144 break;
11145 }
11146
Alexander Duyckf4188d82009-12-02 16:48:38 +000011147 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070011148 dev_kfree_skb(skb);
11149
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011150 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011151 goto out;
11152
11153 if (rx_idx != rx_start_idx + num_pkts)
11154 goto out;
11155
Matt Carlsonbb158d62011-04-25 12:42:47 +000011156 val = data_off;
11157 while (rx_idx != rx_start_idx) {
11158 desc = &rnapi->rx_rcb[rx_start_idx++];
11159 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11160 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011161
Matt Carlsonbb158d62011-04-25 12:42:47 +000011162 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11163 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011164 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011165
Matt Carlsonbb158d62011-04-25 12:42:47 +000011166 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11167 - ETH_FCS_LEN;
11168
11169 if (loopback_mode != TG3_TSO_LOOPBACK) {
11170 if (rx_len != tx_len)
11171 goto out;
11172
11173 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11174 if (opaque_key != RXD_OPAQUE_RING_STD)
11175 goto out;
11176 } else {
11177 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11178 goto out;
11179 }
11180 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11181 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
11182 >> RXD_TCPCSUM_SHIFT == 0xffff) {
11183 goto out;
11184 }
11185
11186 if (opaque_key == RXD_OPAQUE_RING_STD) {
11187 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
11188 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11189 mapping);
11190 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
11191 rx_skb = tpr->rx_jmb_buffers[desc_idx].skb;
11192 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11193 mapping);
11194 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011195 goto out;
11196
Matt Carlsonbb158d62011-04-25 12:42:47 +000011197 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11198 PCI_DMA_FROMDEVICE);
11199
11200 for (i = data_off; i < rx_len; i++, val++) {
11201 if (*(rx_skb->data + i) != (u8) (val & 0xff))
11202 goto out;
11203 }
Matt Carlson4852a862011-04-13 11:05:07 +000011204 }
11205
Michael Chanc76949a2005-05-29 14:58:59 -070011206 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011207
Michael Chanc76949a2005-05-29 14:58:59 -070011208 /* tg3_free_rings will unmap and free the rx_skb */
11209out:
11210 return err;
11211}
11212
Matt Carlson00c266b2011-04-25 12:42:46 +000011213#define TG3_STD_LOOPBACK_FAILED 1
11214#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011215#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson00c266b2011-04-25 12:42:46 +000011216
11217#define TG3_MAC_LOOPBACK_SHIFT 0
11218#define TG3_PHY_LOOPBACK_SHIFT 4
Matt Carlsonbb158d62011-04-25 12:42:47 +000011219#define TG3_LOOPBACK_FAILED 0x00000077
Michael Chan9f40dea2005-09-05 17:53:06 -070011220
11221static int tg3_test_loopback(struct tg3 *tp)
11222{
11223 int err = 0;
Matt Carlsonab789042011-01-25 15:58:54 +000011224 u32 eee_cap, cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070011225
11226 if (!netif_running(tp->dev))
11227 return TG3_LOOPBACK_FAILED;
11228
Matt Carlsonab789042011-01-25 15:58:54 +000011229 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11230 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11231
Michael Chanb9ec6c12006-07-25 16:37:27 -070011232 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011233 if (err) {
11234 err = TG3_LOOPBACK_FAILED;
11235 goto done;
11236 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011237
Joe Perches63c3a662011-04-26 08:12:10 +000011238 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011239 int i;
11240
11241 /* Reroute all rx packets to the 1st queue */
11242 for (i = MAC_RSS_INDIR_TBL_0;
11243 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11244 tw32(i, 0x0);
11245 }
11246
Matt Carlson6833c042008-11-21 17:18:59 -080011247 /* Turn off gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011248 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011249 tg3_phy_toggle_apd(tp, false);
11250
Joe Perches63c3a662011-04-26 08:12:10 +000011251 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011252 int i;
11253 u32 status;
11254
11255 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
11256
11257 /* Wait for up to 40 microseconds to acquire lock. */
11258 for (i = 0; i < 4; i++) {
11259 status = tr32(TG3_CPMU_MUTEX_GNT);
11260 if (status == CPMU_MUTEX_GNT_DRIVER)
11261 break;
11262 udelay(10);
11263 }
11264
Matt Carlsonab789042011-01-25 15:58:54 +000011265 if (status != CPMU_MUTEX_GNT_DRIVER) {
11266 err = TG3_LOOPBACK_FAILED;
11267 goto done;
11268 }
Matt Carlson9936bcf2007-10-10 18:03:07 -070011269
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011270 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080011271 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070011272 tw32(TG3_CPMU_CTRL,
11273 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
11274 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070011275 }
11276
Matt Carlson4852a862011-04-13 11:05:07 +000011277 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011278 err |= TG3_STD_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson9936bcf2007-10-10 18:03:07 -070011279
Joe Perches63c3a662011-04-26 08:12:10 +000011280 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011281 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011282 err |= TG3_JMB_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson4852a862011-04-13 11:05:07 +000011283
Joe Perches63c3a662011-04-26 08:12:10 +000011284 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011285 tw32(TG3_CPMU_CTRL, cpmuctrl);
11286
11287 /* Release the mutex */
11288 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
11289 }
11290
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011291 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011292 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson4852a862011-04-13 11:05:07 +000011293 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011294 err |= TG3_STD_LOOPBACK_FAILED <<
11295 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011296 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonbb158d62011-04-25 12:42:47 +000011297 tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_TSO_LOOPBACK))
11298 err |= TG3_TSO_LOOPBACK_FAILED <<
11299 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011300 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011301 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011302 err |= TG3_JMB_LOOPBACK_FAILED <<
11303 TG3_PHY_LOOPBACK_SHIFT;
Michael Chan9f40dea2005-09-05 17:53:06 -070011304 }
11305
Matt Carlson6833c042008-11-21 17:18:59 -080011306 /* Re-enable gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011307 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011308 tg3_phy_toggle_apd(tp, true);
11309
Matt Carlsonab789042011-01-25 15:58:54 +000011310done:
11311 tp->phy_flags |= eee_cap;
11312
Michael Chan9f40dea2005-09-05 17:53:06 -070011313 return err;
11314}
11315
Michael Chan4cafd3f2005-05-29 14:56:34 -070011316static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11317 u64 *data)
11318{
Michael Chan566f86a2005-05-29 14:56:58 -070011319 struct tg3 *tp = netdev_priv(dev);
11320
Matt Carlson80096062010-08-02 11:26:06 +000011321 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011322 tg3_power_up(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011323
Michael Chan566f86a2005-05-29 14:56:58 -070011324 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11325
11326 if (tg3_test_nvram(tp) != 0) {
11327 etest->flags |= ETH_TEST_FL_FAILED;
11328 data[0] = 1;
11329 }
Michael Chanca430072005-05-29 14:57:23 -070011330 if (tg3_test_link(tp) != 0) {
11331 etest->flags |= ETH_TEST_FL_FAILED;
11332 data[1] = 1;
11333 }
Michael Chana71116d2005-05-29 14:58:11 -070011334 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011335 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011336
Michael Chanbbe832c2005-06-24 20:20:04 -070011337 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011338 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011339 tg3_netif_stop(tp);
11340 irq_sync = 1;
11341 }
11342
11343 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011344
11345 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011346 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011347 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011348 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011349 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011350 if (!err)
11351 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011352
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011353 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080011354 tg3_phy_reset(tp);
11355
Michael Chana71116d2005-05-29 14:58:11 -070011356 if (tg3_test_registers(tp) != 0) {
11357 etest->flags |= ETH_TEST_FL_FAILED;
11358 data[2] = 1;
11359 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011360 if (tg3_test_memory(tp) != 0) {
11361 etest->flags |= ETH_TEST_FL_FAILED;
11362 data[3] = 1;
11363 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011364 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011365 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011366
David S. Millerf47c11e2005-06-24 20:18:35 -070011367 tg3_full_unlock(tp);
11368
Michael Chand4bc3922005-05-29 14:59:20 -070011369 if (tg3_test_interrupt(tp) != 0) {
11370 etest->flags |= ETH_TEST_FL_FAILED;
11371 data[5] = 1;
11372 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011373
11374 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011375
Michael Chana71116d2005-05-29 14:58:11 -070011376 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11377 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011378 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011379 err2 = tg3_restart_hw(tp, 1);
11380 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011381 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011382 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011383
11384 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011385
11386 if (irq_sync && !err2)
11387 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011388 }
Matt Carlson80096062010-08-02 11:26:06 +000011389 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011390 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011391
Michael Chan4cafd3f2005-05-29 14:56:34 -070011392}
11393
Linus Torvalds1da177e2005-04-16 15:20:36 -070011394static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11395{
11396 struct mii_ioctl_data *data = if_mii(ifr);
11397 struct tg3 *tp = netdev_priv(dev);
11398 int err;
11399
Joe Perches63c3a662011-04-26 08:12:10 +000011400 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011401 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011402 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011403 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011404 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011405 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011406 }
11407
Matt Carlson33f401a2010-04-05 10:19:27 +000011408 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011409 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011410 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011411
11412 /* fallthru */
11413 case SIOCGMIIREG: {
11414 u32 mii_regval;
11415
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011416 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011417 break; /* We have no PHY */
11418
Matt Carlson34eea5a2011-04-20 07:57:38 +000011419 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011420 return -EAGAIN;
11421
David S. Millerf47c11e2005-06-24 20:18:35 -070011422 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011423 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011424 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011425
11426 data->val_out = mii_regval;
11427
11428 return err;
11429 }
11430
11431 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011432 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011433 break; /* We have no PHY */
11434
Matt Carlson34eea5a2011-04-20 07:57:38 +000011435 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011436 return -EAGAIN;
11437
David S. Millerf47c11e2005-06-24 20:18:35 -070011438 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011439 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011440 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011441
11442 return err;
11443
11444 default:
11445 /* do nothing */
11446 break;
11447 }
11448 return -EOPNOTSUPP;
11449}
11450
David S. Miller15f98502005-05-18 22:49:26 -070011451static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11452{
11453 struct tg3 *tp = netdev_priv(dev);
11454
11455 memcpy(ec, &tp->coal, sizeof(*ec));
11456 return 0;
11457}
11458
Michael Chand244c892005-07-05 14:42:33 -070011459static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11460{
11461 struct tg3 *tp = netdev_priv(dev);
11462 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11463 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11464
Joe Perches63c3a662011-04-26 08:12:10 +000011465 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011466 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11467 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11468 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11469 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11470 }
11471
11472 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11473 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11474 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11475 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11476 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11477 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11478 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11479 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11480 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11481 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11482 return -EINVAL;
11483
11484 /* No rx interrupts will be generated if both are zero */
11485 if ((ec->rx_coalesce_usecs == 0) &&
11486 (ec->rx_max_coalesced_frames == 0))
11487 return -EINVAL;
11488
11489 /* No tx interrupts will be generated if both are zero */
11490 if ((ec->tx_coalesce_usecs == 0) &&
11491 (ec->tx_max_coalesced_frames == 0))
11492 return -EINVAL;
11493
11494 /* Only copy relevant parameters, ignore all others. */
11495 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11496 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11497 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11498 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11499 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11500 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11501 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11502 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11503 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11504
11505 if (netif_running(dev)) {
11506 tg3_full_lock(tp, 0);
11507 __tg3_set_coalesce(tp, &tp->coal);
11508 tg3_full_unlock(tp);
11509 }
11510 return 0;
11511}
11512
Jeff Garzik7282d492006-09-13 14:30:00 -040011513static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011514 .get_settings = tg3_get_settings,
11515 .set_settings = tg3_set_settings,
11516 .get_drvinfo = tg3_get_drvinfo,
11517 .get_regs_len = tg3_get_regs_len,
11518 .get_regs = tg3_get_regs,
11519 .get_wol = tg3_get_wol,
11520 .set_wol = tg3_set_wol,
11521 .get_msglevel = tg3_get_msglevel,
11522 .set_msglevel = tg3_set_msglevel,
11523 .nway_reset = tg3_nway_reset,
11524 .get_link = ethtool_op_get_link,
11525 .get_eeprom_len = tg3_get_eeprom_len,
11526 .get_eeprom = tg3_get_eeprom,
11527 .set_eeprom = tg3_set_eeprom,
11528 .get_ringparam = tg3_get_ringparam,
11529 .set_ringparam = tg3_set_ringparam,
11530 .get_pauseparam = tg3_get_pauseparam,
11531 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011532 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011533 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000011534 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011535 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011536 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011537 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011538 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011539};
11540
11541static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11542{
Michael Chan1b277772006-03-20 22:27:48 -080011543 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011544
11545 tp->nvram_size = EEPROM_CHIP_SIZE;
11546
Matt Carlsone4f34112009-02-25 14:25:00 +000011547 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011548 return;
11549
Michael Chanb16250e2006-09-27 16:10:14 -070011550 if ((magic != TG3_EEPROM_MAGIC) &&
11551 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11552 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011553 return;
11554
11555 /*
11556 * Size the chip by reading offsets at increasing powers of two.
11557 * When we encounter our validation signature, we know the addressing
11558 * has wrapped around, and thus have our chip size.
11559 */
Michael Chan1b277772006-03-20 22:27:48 -080011560 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011561
11562 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011563 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011564 return;
11565
Michael Chan18201802006-03-20 22:29:15 -080011566 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011567 break;
11568
11569 cursize <<= 1;
11570 }
11571
11572 tp->nvram_size = cursize;
11573}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011574
Linus Torvalds1da177e2005-04-16 15:20:36 -070011575static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11576{
11577 u32 val;
11578
Joe Perches63c3a662011-04-26 08:12:10 +000011579 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011580 return;
11581
11582 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011583 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011584 tg3_get_eeprom_size(tp);
11585 return;
11586 }
11587
Matt Carlson6d348f22009-02-25 14:25:52 +000011588 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011589 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011590 /* This is confusing. We want to operate on the
11591 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11592 * call will read from NVRAM and byteswap the data
11593 * according to the byteswapping settings for all
11594 * other register accesses. This ensures the data we
11595 * want will always reside in the lower 16-bits.
11596 * However, the data in NVRAM is in LE format, which
11597 * means the data from the NVRAM read will always be
11598 * opposite the endianness of the CPU. The 16-bit
11599 * byteswap then brings the data to CPU endianness.
11600 */
11601 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011602 return;
11603 }
11604 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011605 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011606}
11607
11608static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11609{
11610 u32 nvcfg1;
11611
11612 nvcfg1 = tr32(NVRAM_CFG1);
11613 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000011614 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011615 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011616 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11617 tw32(NVRAM_CFG1, nvcfg1);
11618 }
11619
Michael Chan4c987482005-09-05 17:52:38 -070011620 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011621 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011622 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011623 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11624 tp->nvram_jedecnum = JEDEC_ATMEL;
11625 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011626 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011627 break;
11628 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11629 tp->nvram_jedecnum = JEDEC_ATMEL;
11630 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11631 break;
11632 case FLASH_VENDOR_ATMEL_EEPROM:
11633 tp->nvram_jedecnum = JEDEC_ATMEL;
11634 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011635 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011636 break;
11637 case FLASH_VENDOR_ST:
11638 tp->nvram_jedecnum = JEDEC_ST;
11639 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011640 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011641 break;
11642 case FLASH_VENDOR_SAIFUN:
11643 tp->nvram_jedecnum = JEDEC_SAIFUN;
11644 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11645 break;
11646 case FLASH_VENDOR_SST_SMALL:
11647 case FLASH_VENDOR_SST_LARGE:
11648 tp->nvram_jedecnum = JEDEC_SST;
11649 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11650 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011651 }
Matt Carlson8590a602009-08-28 12:29:16 +000011652 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011653 tp->nvram_jedecnum = JEDEC_ATMEL;
11654 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011655 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011656 }
11657}
11658
Matt Carlsona1b950d2009-09-01 13:20:17 +000011659static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11660{
11661 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11662 case FLASH_5752PAGE_SIZE_256:
11663 tp->nvram_pagesize = 256;
11664 break;
11665 case FLASH_5752PAGE_SIZE_512:
11666 tp->nvram_pagesize = 512;
11667 break;
11668 case FLASH_5752PAGE_SIZE_1K:
11669 tp->nvram_pagesize = 1024;
11670 break;
11671 case FLASH_5752PAGE_SIZE_2K:
11672 tp->nvram_pagesize = 2048;
11673 break;
11674 case FLASH_5752PAGE_SIZE_4K:
11675 tp->nvram_pagesize = 4096;
11676 break;
11677 case FLASH_5752PAGE_SIZE_264:
11678 tp->nvram_pagesize = 264;
11679 break;
11680 case FLASH_5752PAGE_SIZE_528:
11681 tp->nvram_pagesize = 528;
11682 break;
11683 }
11684}
11685
Michael Chan361b4ac2005-04-21 17:11:21 -070011686static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11687{
11688 u32 nvcfg1;
11689
11690 nvcfg1 = tr32(NVRAM_CFG1);
11691
Michael Chane6af3012005-04-21 17:12:05 -070011692 /* NVRAM protection for TPM */
11693 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000011694 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070011695
Michael Chan361b4ac2005-04-21 17:11:21 -070011696 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011697 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11698 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11699 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011700 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011701 break;
11702 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11703 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011704 tg3_flag_set(tp, NVRAM_BUFFERED);
11705 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011706 break;
11707 case FLASH_5752VENDOR_ST_M45PE10:
11708 case FLASH_5752VENDOR_ST_M45PE20:
11709 case FLASH_5752VENDOR_ST_M45PE40:
11710 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011711 tg3_flag_set(tp, NVRAM_BUFFERED);
11712 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011713 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011714 }
11715
Joe Perches63c3a662011-04-26 08:12:10 +000011716 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011717 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011718 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011719 /* For eeprom, set pagesize to maximum eeprom size */
11720 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11721
11722 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11723 tw32(NVRAM_CFG1, nvcfg1);
11724 }
11725}
11726
Michael Chand3c7b882006-03-23 01:28:25 -080011727static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11728{
Matt Carlson989a9d22007-05-05 11:51:05 -070011729 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011730
11731 nvcfg1 = tr32(NVRAM_CFG1);
11732
11733 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011734 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011735 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070011736 protect = 1;
11737 }
Michael Chand3c7b882006-03-23 01:28:25 -080011738
Matt Carlson989a9d22007-05-05 11:51:05 -070011739 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11740 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011741 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11742 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11743 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11744 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11745 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011746 tg3_flag_set(tp, NVRAM_BUFFERED);
11747 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011748 tp->nvram_pagesize = 264;
11749 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11750 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11751 tp->nvram_size = (protect ? 0x3e200 :
11752 TG3_NVRAM_SIZE_512KB);
11753 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11754 tp->nvram_size = (protect ? 0x1f200 :
11755 TG3_NVRAM_SIZE_256KB);
11756 else
11757 tp->nvram_size = (protect ? 0x1f200 :
11758 TG3_NVRAM_SIZE_128KB);
11759 break;
11760 case FLASH_5752VENDOR_ST_M45PE10:
11761 case FLASH_5752VENDOR_ST_M45PE20:
11762 case FLASH_5752VENDOR_ST_M45PE40:
11763 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011764 tg3_flag_set(tp, NVRAM_BUFFERED);
11765 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011766 tp->nvram_pagesize = 256;
11767 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11768 tp->nvram_size = (protect ?
11769 TG3_NVRAM_SIZE_64KB :
11770 TG3_NVRAM_SIZE_128KB);
11771 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11772 tp->nvram_size = (protect ?
11773 TG3_NVRAM_SIZE_64KB :
11774 TG3_NVRAM_SIZE_256KB);
11775 else
11776 tp->nvram_size = (protect ?
11777 TG3_NVRAM_SIZE_128KB :
11778 TG3_NVRAM_SIZE_512KB);
11779 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011780 }
11781}
11782
Michael Chan1b277772006-03-20 22:27:48 -080011783static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11784{
11785 u32 nvcfg1;
11786
11787 nvcfg1 = tr32(NVRAM_CFG1);
11788
11789 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011790 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11791 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11792 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11793 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11794 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011795 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011796 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011797
Matt Carlson8590a602009-08-28 12:29:16 +000011798 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11799 tw32(NVRAM_CFG1, nvcfg1);
11800 break;
11801 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11802 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11803 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11804 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11805 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011806 tg3_flag_set(tp, NVRAM_BUFFERED);
11807 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011808 tp->nvram_pagesize = 264;
11809 break;
11810 case FLASH_5752VENDOR_ST_M45PE10:
11811 case FLASH_5752VENDOR_ST_M45PE20:
11812 case FLASH_5752VENDOR_ST_M45PE40:
11813 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011814 tg3_flag_set(tp, NVRAM_BUFFERED);
11815 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011816 tp->nvram_pagesize = 256;
11817 break;
Michael Chan1b277772006-03-20 22:27:48 -080011818 }
11819}
11820
Matt Carlson6b91fa02007-10-10 18:01:09 -070011821static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11822{
11823 u32 nvcfg1, protect = 0;
11824
11825 nvcfg1 = tr32(NVRAM_CFG1);
11826
11827 /* NVRAM protection for TPM */
11828 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011829 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011830 protect = 1;
11831 }
11832
11833 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11834 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011835 case FLASH_5761VENDOR_ATMEL_ADB021D:
11836 case FLASH_5761VENDOR_ATMEL_ADB041D:
11837 case FLASH_5761VENDOR_ATMEL_ADB081D:
11838 case FLASH_5761VENDOR_ATMEL_ADB161D:
11839 case FLASH_5761VENDOR_ATMEL_MDB021D:
11840 case FLASH_5761VENDOR_ATMEL_MDB041D:
11841 case FLASH_5761VENDOR_ATMEL_MDB081D:
11842 case FLASH_5761VENDOR_ATMEL_MDB161D:
11843 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011844 tg3_flag_set(tp, NVRAM_BUFFERED);
11845 tg3_flag_set(tp, FLASH);
11846 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000011847 tp->nvram_pagesize = 256;
11848 break;
11849 case FLASH_5761VENDOR_ST_A_M45PE20:
11850 case FLASH_5761VENDOR_ST_A_M45PE40:
11851 case FLASH_5761VENDOR_ST_A_M45PE80:
11852 case FLASH_5761VENDOR_ST_A_M45PE16:
11853 case FLASH_5761VENDOR_ST_M_M45PE20:
11854 case FLASH_5761VENDOR_ST_M_M45PE40:
11855 case FLASH_5761VENDOR_ST_M_M45PE80:
11856 case FLASH_5761VENDOR_ST_M_M45PE16:
11857 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011858 tg3_flag_set(tp, NVRAM_BUFFERED);
11859 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011860 tp->nvram_pagesize = 256;
11861 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011862 }
11863
11864 if (protect) {
11865 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
11866 } else {
11867 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011868 case FLASH_5761VENDOR_ATMEL_ADB161D:
11869 case FLASH_5761VENDOR_ATMEL_MDB161D:
11870 case FLASH_5761VENDOR_ST_A_M45PE16:
11871 case FLASH_5761VENDOR_ST_M_M45PE16:
11872 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
11873 break;
11874 case FLASH_5761VENDOR_ATMEL_ADB081D:
11875 case FLASH_5761VENDOR_ATMEL_MDB081D:
11876 case FLASH_5761VENDOR_ST_A_M45PE80:
11877 case FLASH_5761VENDOR_ST_M_M45PE80:
11878 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
11879 break;
11880 case FLASH_5761VENDOR_ATMEL_ADB041D:
11881 case FLASH_5761VENDOR_ATMEL_MDB041D:
11882 case FLASH_5761VENDOR_ST_A_M45PE40:
11883 case FLASH_5761VENDOR_ST_M_M45PE40:
11884 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11885 break;
11886 case FLASH_5761VENDOR_ATMEL_ADB021D:
11887 case FLASH_5761VENDOR_ATMEL_MDB021D:
11888 case FLASH_5761VENDOR_ST_A_M45PE20:
11889 case FLASH_5761VENDOR_ST_M_M45PE20:
11890 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11891 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011892 }
11893 }
11894}
11895
Michael Chanb5d37722006-09-27 16:06:21 -070011896static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
11897{
11898 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011899 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070011900 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11901}
11902
Matt Carlson321d32a2008-11-21 17:22:19 -080011903static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
11904{
11905 u32 nvcfg1;
11906
11907 nvcfg1 = tr32(NVRAM_CFG1);
11908
11909 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11910 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11911 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11912 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011913 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080011914 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11915
11916 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11917 tw32(NVRAM_CFG1, nvcfg1);
11918 return;
11919 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11920 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11921 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11922 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11923 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11924 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11925 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11926 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011927 tg3_flag_set(tp, NVRAM_BUFFERED);
11928 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080011929
11930 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11931 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11932 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11933 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11934 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11935 break;
11936 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11937 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11938 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11939 break;
11940 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11941 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11942 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11943 break;
11944 }
11945 break;
11946 case FLASH_5752VENDOR_ST_M45PE10:
11947 case FLASH_5752VENDOR_ST_M45PE20:
11948 case FLASH_5752VENDOR_ST_M45PE40:
11949 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011950 tg3_flag_set(tp, NVRAM_BUFFERED);
11951 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080011952
11953 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11954 case FLASH_5752VENDOR_ST_M45PE10:
11955 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11956 break;
11957 case FLASH_5752VENDOR_ST_M45PE20:
11958 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11959 break;
11960 case FLASH_5752VENDOR_ST_M45PE40:
11961 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11962 break;
11963 }
11964 break;
11965 default:
Joe Perches63c3a662011-04-26 08:12:10 +000011966 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080011967 return;
11968 }
11969
Matt Carlsona1b950d2009-09-01 13:20:17 +000011970 tg3_nvram_get_pagesize(tp, nvcfg1);
11971 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000011972 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000011973}
11974
11975
11976static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
11977{
11978 u32 nvcfg1;
11979
11980 nvcfg1 = tr32(NVRAM_CFG1);
11981
11982 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11983 case FLASH_5717VENDOR_ATMEL_EEPROM:
11984 case FLASH_5717VENDOR_MICRO_EEPROM:
11985 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011986 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000011987 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11988
11989 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11990 tw32(NVRAM_CFG1, nvcfg1);
11991 return;
11992 case FLASH_5717VENDOR_ATMEL_MDB011D:
11993 case FLASH_5717VENDOR_ATMEL_ADB011B:
11994 case FLASH_5717VENDOR_ATMEL_ADB011D:
11995 case FLASH_5717VENDOR_ATMEL_MDB021D:
11996 case FLASH_5717VENDOR_ATMEL_ADB021B:
11997 case FLASH_5717VENDOR_ATMEL_ADB021D:
11998 case FLASH_5717VENDOR_ATMEL_45USPT:
11999 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012000 tg3_flag_set(tp, NVRAM_BUFFERED);
12001 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012002
12003 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12004 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012005 /* Detect size with tg3_nvram_get_size() */
12006 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012007 case FLASH_5717VENDOR_ATMEL_ADB021B:
12008 case FLASH_5717VENDOR_ATMEL_ADB021D:
12009 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12010 break;
12011 default:
12012 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12013 break;
12014 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012015 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012016 case FLASH_5717VENDOR_ST_M_M25PE10:
12017 case FLASH_5717VENDOR_ST_A_M25PE10:
12018 case FLASH_5717VENDOR_ST_M_M45PE10:
12019 case FLASH_5717VENDOR_ST_A_M45PE10:
12020 case FLASH_5717VENDOR_ST_M_M25PE20:
12021 case FLASH_5717VENDOR_ST_A_M25PE20:
12022 case FLASH_5717VENDOR_ST_M_M45PE20:
12023 case FLASH_5717VENDOR_ST_A_M45PE20:
12024 case FLASH_5717VENDOR_ST_25USPT:
12025 case FLASH_5717VENDOR_ST_45USPT:
12026 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012027 tg3_flag_set(tp, NVRAM_BUFFERED);
12028 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012029
12030 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12031 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012032 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012033 /* Detect size with tg3_nvram_get_size() */
12034 break;
12035 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012036 case FLASH_5717VENDOR_ST_A_M45PE20:
12037 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12038 break;
12039 default:
12040 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12041 break;
12042 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012043 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012044 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012045 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012046 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012047 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012048
12049 tg3_nvram_get_pagesize(tp, nvcfg1);
12050 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012051 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012052}
12053
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012054static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12055{
12056 u32 nvcfg1, nvmpinstrp;
12057
12058 nvcfg1 = tr32(NVRAM_CFG1);
12059 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12060
12061 switch (nvmpinstrp) {
12062 case FLASH_5720_EEPROM_HD:
12063 case FLASH_5720_EEPROM_LD:
12064 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012065 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012066
12067 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12068 tw32(NVRAM_CFG1, nvcfg1);
12069 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12070 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12071 else
12072 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12073 return;
12074 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12075 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12076 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12077 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12078 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12079 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12080 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12081 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12082 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12083 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12084 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12085 case FLASH_5720VENDOR_ATMEL_45USPT:
12086 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012087 tg3_flag_set(tp, NVRAM_BUFFERED);
12088 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012089
12090 switch (nvmpinstrp) {
12091 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12092 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12093 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12094 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12095 break;
12096 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12097 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12098 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12099 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12100 break;
12101 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12102 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12103 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12104 break;
12105 default:
12106 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12107 break;
12108 }
12109 break;
12110 case FLASH_5720VENDOR_M_ST_M25PE10:
12111 case FLASH_5720VENDOR_M_ST_M45PE10:
12112 case FLASH_5720VENDOR_A_ST_M25PE10:
12113 case FLASH_5720VENDOR_A_ST_M45PE10:
12114 case FLASH_5720VENDOR_M_ST_M25PE20:
12115 case FLASH_5720VENDOR_M_ST_M45PE20:
12116 case FLASH_5720VENDOR_A_ST_M25PE20:
12117 case FLASH_5720VENDOR_A_ST_M45PE20:
12118 case FLASH_5720VENDOR_M_ST_M25PE40:
12119 case FLASH_5720VENDOR_M_ST_M45PE40:
12120 case FLASH_5720VENDOR_A_ST_M25PE40:
12121 case FLASH_5720VENDOR_A_ST_M45PE40:
12122 case FLASH_5720VENDOR_M_ST_M25PE80:
12123 case FLASH_5720VENDOR_M_ST_M45PE80:
12124 case FLASH_5720VENDOR_A_ST_M25PE80:
12125 case FLASH_5720VENDOR_A_ST_M45PE80:
12126 case FLASH_5720VENDOR_ST_25USPT:
12127 case FLASH_5720VENDOR_ST_45USPT:
12128 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012129 tg3_flag_set(tp, NVRAM_BUFFERED);
12130 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012131
12132 switch (nvmpinstrp) {
12133 case FLASH_5720VENDOR_M_ST_M25PE20:
12134 case FLASH_5720VENDOR_M_ST_M45PE20:
12135 case FLASH_5720VENDOR_A_ST_M25PE20:
12136 case FLASH_5720VENDOR_A_ST_M45PE20:
12137 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12138 break;
12139 case FLASH_5720VENDOR_M_ST_M25PE40:
12140 case FLASH_5720VENDOR_M_ST_M45PE40:
12141 case FLASH_5720VENDOR_A_ST_M25PE40:
12142 case FLASH_5720VENDOR_A_ST_M45PE40:
12143 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12144 break;
12145 case FLASH_5720VENDOR_M_ST_M25PE80:
12146 case FLASH_5720VENDOR_M_ST_M45PE80:
12147 case FLASH_5720VENDOR_A_ST_M25PE80:
12148 case FLASH_5720VENDOR_A_ST_M45PE80:
12149 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12150 break;
12151 default:
12152 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12153 break;
12154 }
12155 break;
12156 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012157 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012158 return;
12159 }
12160
12161 tg3_nvram_get_pagesize(tp, nvcfg1);
12162 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012163 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012164}
12165
Linus Torvalds1da177e2005-04-16 15:20:36 -070012166/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12167static void __devinit tg3_nvram_init(struct tg3 *tp)
12168{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012169 tw32_f(GRC_EEPROM_ADDR,
12170 (EEPROM_ADDR_FSM_RESET |
12171 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12172 EEPROM_ADDR_CLKPERD_SHIFT)));
12173
Michael Chan9d57f012006-12-07 00:23:25 -080012174 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012175
12176 /* Enable seeprom accesses. */
12177 tw32_f(GRC_LOCAL_CTRL,
12178 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12179 udelay(100);
12180
12181 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12182 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012183 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012184
Michael Chanec41c7d2006-01-17 02:40:55 -080012185 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012186 netdev_warn(tp->dev,
12187 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012188 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012189 return;
12190 }
Michael Chane6af3012005-04-21 17:12:05 -070012191 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012192
Matt Carlson989a9d22007-05-05 11:51:05 -070012193 tp->nvram_size = 0;
12194
Michael Chan361b4ac2005-04-21 17:11:21 -070012195 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12196 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012197 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12198 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012199 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012200 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12201 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012202 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012203 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12204 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012205 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12206 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012207 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12208 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080012209 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012210 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12211 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012212 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012213 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12214 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012215 else
12216 tg3_get_nvram_info(tp);
12217
Matt Carlson989a9d22007-05-05 11:51:05 -070012218 if (tp->nvram_size == 0)
12219 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012220
Michael Chane6af3012005-04-21 17:12:05 -070012221 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012222 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012223
12224 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012225 tg3_flag_clear(tp, NVRAM);
12226 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012227
12228 tg3_get_eeprom_size(tp);
12229 }
12230}
12231
Linus Torvalds1da177e2005-04-16 15:20:36 -070012232static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12233 u32 offset, u32 len, u8 *buf)
12234{
12235 int i, j, rc = 0;
12236 u32 val;
12237
12238 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012239 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012240 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012241
12242 addr = offset + i;
12243
12244 memcpy(&data, buf + i, 4);
12245
Matt Carlson62cedd12009-04-20 14:52:29 -070012246 /*
12247 * The SEEPROM interface expects the data to always be opposite
12248 * the native endian format. We accomplish this by reversing
12249 * all the operations that would have been performed on the
12250 * data from a call to tg3_nvram_read_be32().
12251 */
12252 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012253
12254 val = tr32(GRC_EEPROM_ADDR);
12255 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12256
12257 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12258 EEPROM_ADDR_READ);
12259 tw32(GRC_EEPROM_ADDR, val |
12260 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12261 (addr & EEPROM_ADDR_ADDR_MASK) |
12262 EEPROM_ADDR_START |
12263 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012264
Michael Chan9d57f012006-12-07 00:23:25 -080012265 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012266 val = tr32(GRC_EEPROM_ADDR);
12267
12268 if (val & EEPROM_ADDR_COMPLETE)
12269 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012270 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012271 }
12272 if (!(val & EEPROM_ADDR_COMPLETE)) {
12273 rc = -EBUSY;
12274 break;
12275 }
12276 }
12277
12278 return rc;
12279}
12280
12281/* offset and length are dword aligned */
12282static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12283 u8 *buf)
12284{
12285 int ret = 0;
12286 u32 pagesize = tp->nvram_pagesize;
12287 u32 pagemask = pagesize - 1;
12288 u32 nvram_cmd;
12289 u8 *tmp;
12290
12291 tmp = kmalloc(pagesize, GFP_KERNEL);
12292 if (tmp == NULL)
12293 return -ENOMEM;
12294
12295 while (len) {
12296 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012297 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012298
12299 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012300
Linus Torvalds1da177e2005-04-16 15:20:36 -070012301 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012302 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12303 (__be32 *) (tmp + j));
12304 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012305 break;
12306 }
12307 if (ret)
12308 break;
12309
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012310 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012311 size = pagesize;
12312 if (len < size)
12313 size = len;
12314
12315 len -= size;
12316
12317 memcpy(tmp + page_off, buf, size);
12318
12319 offset = offset + (pagesize - page_off);
12320
Michael Chane6af3012005-04-21 17:12:05 -070012321 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012322
12323 /*
12324 * Before we can erase the flash page, we need
12325 * to issue a special "write enable" command.
12326 */
12327 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12328
12329 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12330 break;
12331
12332 /* Erase the target page */
12333 tw32(NVRAM_ADDR, phy_addr);
12334
12335 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12336 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12337
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012338 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012339 break;
12340
12341 /* Issue another write enable to start the write. */
12342 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12343
12344 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12345 break;
12346
12347 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012348 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012349
Al Virob9fc7dc2007-12-17 22:59:57 -080012350 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012351
Al Virob9fc7dc2007-12-17 22:59:57 -080012352 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012353
12354 tw32(NVRAM_ADDR, phy_addr + j);
12355
12356 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12357 NVRAM_CMD_WR;
12358
12359 if (j == 0)
12360 nvram_cmd |= NVRAM_CMD_FIRST;
12361 else if (j == (pagesize - 4))
12362 nvram_cmd |= NVRAM_CMD_LAST;
12363
12364 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12365 break;
12366 }
12367 if (ret)
12368 break;
12369 }
12370
12371 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12372 tg3_nvram_exec_cmd(tp, nvram_cmd);
12373
12374 kfree(tmp);
12375
12376 return ret;
12377}
12378
12379/* offset and length are dword aligned */
12380static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12381 u8 *buf)
12382{
12383 int i, ret = 0;
12384
12385 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012386 u32 page_off, phy_addr, nvram_cmd;
12387 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012388
12389 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012390 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012391
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012392 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012393
Michael Chan18201802006-03-20 22:29:15 -080012394 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012395
12396 tw32(NVRAM_ADDR, phy_addr);
12397
12398 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12399
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012400 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012401 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012402 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012403 nvram_cmd |= NVRAM_CMD_LAST;
12404
12405 if (i == (len - 4))
12406 nvram_cmd |= NVRAM_CMD_LAST;
12407
Matt Carlson321d32a2008-11-21 17:22:19 -080012408 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012409 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012410 (tp->nvram_jedecnum == JEDEC_ST) &&
12411 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012412
12413 if ((ret = tg3_nvram_exec_cmd(tp,
12414 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12415 NVRAM_CMD_DONE)))
12416
12417 break;
12418 }
Joe Perches63c3a662011-04-26 08:12:10 +000012419 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012420 /* We always do complete word writes to eeprom. */
12421 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12422 }
12423
12424 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12425 break;
12426 }
12427 return ret;
12428}
12429
12430/* offset and length are dword aligned */
12431static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12432{
12433 int ret;
12434
Joe Perches63c3a662011-04-26 08:12:10 +000012435 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012436 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12437 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012438 udelay(40);
12439 }
12440
Joe Perches63c3a662011-04-26 08:12:10 +000012441 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012442 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012443 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012444 u32 grc_mode;
12445
Michael Chanec41c7d2006-01-17 02:40:55 -080012446 ret = tg3_nvram_lock(tp);
12447 if (ret)
12448 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012449
Michael Chane6af3012005-04-21 17:12:05 -070012450 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012451 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012452 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012453
12454 grc_mode = tr32(GRC_MODE);
12455 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12456
Joe Perches63c3a662011-04-26 08:12:10 +000012457 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012458 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12459 buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012460 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012461 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12462 buf);
12463 }
12464
12465 grc_mode = tr32(GRC_MODE);
12466 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12467
Michael Chane6af3012005-04-21 17:12:05 -070012468 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012469 tg3_nvram_unlock(tp);
12470 }
12471
Joe Perches63c3a662011-04-26 08:12:10 +000012472 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012473 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012474 udelay(40);
12475 }
12476
12477 return ret;
12478}
12479
12480struct subsys_tbl_ent {
12481 u16 subsys_vendor, subsys_devid;
12482 u32 phy_id;
12483};
12484
Matt Carlson24daf2b2010-02-17 15:17:02 +000012485static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012486 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012487 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012488 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012489 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012490 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012491 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012492 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012493 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12494 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12495 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012496 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012497 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012498 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012499 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12500 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12501 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012502 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012503 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012504 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012505 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012506 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012507 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012508 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012509
12510 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012511 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012512 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012513 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012514 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012515 { TG3PCI_SUBVENDOR_ID_3COM,
12516 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12517 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012518 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012519 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012520 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012521
12522 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012523 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012524 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012525 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012526 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012527 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012528 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012529 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012530 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012531
12532 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012533 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012534 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012535 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012536 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012537 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12538 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12539 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012540 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012541 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012542 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012543
12544 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012545 { TG3PCI_SUBVENDOR_ID_IBM,
12546 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012547};
12548
Matt Carlson24daf2b2010-02-17 15:17:02 +000012549static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012550{
12551 int i;
12552
12553 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12554 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12555 tp->pdev->subsystem_vendor) &&
12556 (subsys_id_to_phy_id[i].subsys_devid ==
12557 tp->pdev->subsystem_device))
12558 return &subsys_id_to_phy_id[i];
12559 }
12560 return NULL;
12561}
12562
Michael Chan7d0c41e2005-04-21 17:06:20 -070012563static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012564{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012565 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080012566 u16 pmcsr;
12567
12568 /* On some early chips the SRAM cannot be accessed in D3hot state,
12569 * so need make sure we're in D0.
12570 */
12571 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
12572 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
12573 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
12574 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012575
12576 /* Make sure register accesses (indirect or otherwise)
12577 * will function correctly.
12578 */
12579 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12580 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012581
David S. Millerf49639e2006-06-09 11:58:36 -070012582 /* The memory arbiter has to be enabled in order for SRAM accesses
12583 * to succeed. Normally on powerup the tg3 chip firmware will make
12584 * sure it is enabled, but other entities such as system netboot
12585 * code might disable it.
12586 */
12587 val = tr32(MEMARB_MODE);
12588 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
12589
Matt Carlson79eb6902010-02-17 15:17:03 +000012590 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012591 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12592
Gary Zambranoa85feb82007-05-05 11:52:19 -070012593 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000012594 tg3_flag_set(tp, EEPROM_WRITE_PROT);
12595 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080012596
Michael Chanb5d37722006-09-27 16:06:21 -070012597 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012598 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012599 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12600 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012601 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012602 val = tr32(VCPU_CFGSHDW);
12603 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000012604 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070012605 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012606 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012607 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012608 device_set_wakeup_enable(&tp->pdev->dev, true);
12609 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012610 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012611 }
12612
Linus Torvalds1da177e2005-04-16 15:20:36 -070012613 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12614 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12615 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012616 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012617 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012618
12619 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12620 tp->nic_sram_data_cfg = nic_cfg;
12621
12622 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12623 ver >>= NIC_SRAM_DATA_VER_SHIFT;
12624 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
12625 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
12626 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
12627 (ver > 0) && (ver < 0x100))
12628 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12629
Matt Carlsona9daf362008-05-25 23:49:44 -070012630 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12631 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12632
Linus Torvalds1da177e2005-04-16 15:20:36 -070012633 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12634 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12635 eeprom_phy_serdes = 1;
12636
12637 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12638 if (nic_phy_id != 0) {
12639 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12640 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12641
12642 eeprom_phy_id = (id1 >> 16) << 10;
12643 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12644 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12645 } else
12646 eeprom_phy_id = 0;
12647
Michael Chan7d0c41e2005-04-21 17:06:20 -070012648 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012649 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000012650 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012651 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000012652 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012653 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070012654 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012655
Joe Perches63c3a662011-04-26 08:12:10 +000012656 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012657 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12658 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012659 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012660 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12661
12662 switch (led_cfg) {
12663 default:
12664 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12665 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12666 break;
12667
12668 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12669 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12670 break;
12671
12672 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12673 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012674
12675 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12676 * read on some older 5700/5701 bootcode.
12677 */
12678 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12679 ASIC_REV_5700 ||
12680 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12681 ASIC_REV_5701)
12682 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12683
Linus Torvalds1da177e2005-04-16 15:20:36 -070012684 break;
12685
12686 case SHASTA_EXT_LED_SHARED:
12687 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12688 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12689 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12690 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12691 LED_CTRL_MODE_PHY_2);
12692 break;
12693
12694 case SHASTA_EXT_LED_MAC:
12695 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12696 break;
12697
12698 case SHASTA_EXT_LED_COMBO:
12699 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12700 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12701 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12702 LED_CTRL_MODE_PHY_2);
12703 break;
12704
Stephen Hemminger855e1112008-04-16 16:37:28 -070012705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012706
12707 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12708 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12709 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12710 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12711
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012712 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12713 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012714
Michael Chan9d26e212006-12-07 00:21:14 -080012715 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000012716 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012717 if ((tp->pdev->subsystem_vendor ==
12718 PCI_VENDOR_ID_ARIMA) &&
12719 (tp->pdev->subsystem_device == 0x205a ||
12720 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000012721 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012722 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012723 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12724 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012726
12727 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000012728 tg3_flag_set(tp, ENABLE_ASF);
12729 if (tg3_flag(tp, 5750_PLUS))
12730 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012731 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012732
12733 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012734 tg3_flag(tp, 5750_PLUS))
12735 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012736
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012737 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070012738 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000012739 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012740
Joe Perches63c3a662011-04-26 08:12:10 +000012741 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012742 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012743 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012744 device_set_wakeup_enable(&tp->pdev->dev, true);
12745 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012746
Linus Torvalds1da177e2005-04-16 15:20:36 -070012747 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012748 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012749
12750 /* serdes signal pre-emphasis in register 0x590 set by */
12751 /* bootcode if bit 18 is set */
12752 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012753 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012754
Joe Perches63c3a662011-04-26 08:12:10 +000012755 if ((tg3_flag(tp, 57765_PLUS) ||
12756 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12757 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012758 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012759 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080012760
Joe Perches63c3a662011-04-26 08:12:10 +000012761 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000012762 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012763 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070012764 u32 cfg3;
12765
12766 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12767 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000012768 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070012769 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012770
Matt Carlson14417062010-02-17 15:16:59 +000012771 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000012772 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070012773 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012774 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070012775 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012776 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012777 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012778done:
Joe Perches63c3a662011-04-26 08:12:10 +000012779 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012780 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000012781 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012782 else
12783 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012784}
12785
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012786static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12787{
12788 int i;
12789 u32 val;
12790
12791 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12792 tw32(OTP_CTRL, cmd);
12793
12794 /* Wait for up to 1 ms for command to execute. */
12795 for (i = 0; i < 100; i++) {
12796 val = tr32(OTP_STATUS);
12797 if (val & OTP_STATUS_CMD_DONE)
12798 break;
12799 udelay(10);
12800 }
12801
12802 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12803}
12804
12805/* Read the gphy configuration from the OTP region of the chip. The gphy
12806 * configuration is a 32-bit value that straddles the alignment boundary.
12807 * We do two 32-bit reads and then shift and merge the results.
12808 */
12809static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12810{
12811 u32 bhalf_otp, thalf_otp;
12812
12813 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12814
12815 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12816 return 0;
12817
12818 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12819
12820 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12821 return 0;
12822
12823 thalf_otp = tr32(OTP_READ_DATA);
12824
12825 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12826
12827 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12828 return 0;
12829
12830 bhalf_otp = tr32(OTP_READ_DATA);
12831
12832 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12833}
12834
Matt Carlsone256f8a2011-03-09 16:58:24 +000012835static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
12836{
12837 u32 adv = ADVERTISED_Autoneg |
12838 ADVERTISED_Pause;
12839
12840 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
12841 adv |= ADVERTISED_1000baseT_Half |
12842 ADVERTISED_1000baseT_Full;
12843
12844 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
12845 adv |= ADVERTISED_100baseT_Half |
12846 ADVERTISED_100baseT_Full |
12847 ADVERTISED_10baseT_Half |
12848 ADVERTISED_10baseT_Full |
12849 ADVERTISED_TP;
12850 else
12851 adv |= ADVERTISED_FIBRE;
12852
12853 tp->link_config.advertising = adv;
12854 tp->link_config.speed = SPEED_INVALID;
12855 tp->link_config.duplex = DUPLEX_INVALID;
12856 tp->link_config.autoneg = AUTONEG_ENABLE;
12857 tp->link_config.active_speed = SPEED_INVALID;
12858 tp->link_config.active_duplex = DUPLEX_INVALID;
12859 tp->link_config.orig_speed = SPEED_INVALID;
12860 tp->link_config.orig_duplex = DUPLEX_INVALID;
12861 tp->link_config.orig_autoneg = AUTONEG_INVALID;
12862}
12863
Michael Chan7d0c41e2005-04-21 17:06:20 -070012864static int __devinit tg3_phy_probe(struct tg3 *tp)
12865{
12866 u32 hw_phy_id_1, hw_phy_id_2;
12867 u32 hw_phy_id, hw_phy_id_masked;
12868 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012869
Matt Carlsone256f8a2011-03-09 16:58:24 +000012870 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000012871 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000012872 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
12873
Joe Perches63c3a662011-04-26 08:12:10 +000012874 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012875 return tg3_phy_init(tp);
12876
Linus Torvalds1da177e2005-04-16 15:20:36 -070012877 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010012878 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012879 */
12880 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012881 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000012882 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012883 } else {
12884 /* Now read the physical PHY_ID from the chip and verify
12885 * that it is sane. If it doesn't look good, we fall back
12886 * to either the hard-coded table based PHY_ID and failing
12887 * that the value found in the eeprom area.
12888 */
12889 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
12890 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
12891
12892 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
12893 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
12894 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
12895
Matt Carlson79eb6902010-02-17 15:17:03 +000012896 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012897 }
12898
Matt Carlson79eb6902010-02-17 15:17:03 +000012899 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012900 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000012901 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012902 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070012903 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012904 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012905 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000012906 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070012907 /* Do nothing, phy ID already set up in
12908 * tg3_get_eeprom_hw_cfg().
12909 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012910 } else {
12911 struct subsys_tbl_ent *p;
12912
12913 /* No eeprom signature? Try the hardcoded
12914 * subsys device table.
12915 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012916 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012917 if (!p)
12918 return -ENODEV;
12919
12920 tp->phy_id = p->phy_id;
12921 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000012922 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012923 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012924 }
12925 }
12926
Matt Carlsona6b68da2010-12-06 08:28:52 +000012927 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
12928 ((tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
12929 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
12930 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12931 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000012932 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
12933
Matt Carlsone256f8a2011-03-09 16:58:24 +000012934 tg3_phy_init_link_config(tp);
12935
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012936 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012937 !tg3_flag(tp, ENABLE_APE) &&
12938 !tg3_flag(tp, ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080012939 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012940
12941 tg3_readphy(tp, MII_BMSR, &bmsr);
12942 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
12943 (bmsr & BMSR_LSTATUS))
12944 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012945
Linus Torvalds1da177e2005-04-16 15:20:36 -070012946 err = tg3_phy_reset(tp);
12947 if (err)
12948 return err;
12949
12950 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
12951 ADVERTISE_100HALF | ADVERTISE_100FULL |
12952 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
12953 tg3_ctrl = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012954 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012955 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
12956 MII_TG3_CTRL_ADV_1000_FULL);
12957 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
12958 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
12959 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
12960 MII_TG3_CTRL_ENABLE_AS_MASTER);
12961 }
12962
Michael Chan3600d912006-12-07 00:21:48 -080012963 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
12964 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
12965 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
12966 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012967 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12968
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012969 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012970 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12971
12972 tg3_writephy(tp, MII_BMCR,
12973 BMCR_ANENABLE | BMCR_ANRESTART);
12974 }
12975 tg3_phy_set_wirespeed(tp);
12976
12977 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012978 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012979 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12980 }
12981
12982skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000012983 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012984 err = tg3_init_5401phy_dsp(tp);
12985 if (err)
12986 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012987
Linus Torvalds1da177e2005-04-16 15:20:36 -070012988 err = tg3_init_5401phy_dsp(tp);
12989 }
12990
Linus Torvalds1da177e2005-04-16 15:20:36 -070012991 return err;
12992}
12993
Matt Carlson184b8902010-04-05 10:19:25 +000012994static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012995{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000012996 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000012997 unsigned int block_end, rosize, len;
Matt Carlson184b8902010-04-05 10:19:25 +000012998 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012999
Matt Carlsonc3e94502011-04-13 11:05:08 +000013000 vpd_data = (u8 *)tg3_vpd_readblock(tp);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013001 if (!vpd_data)
13002 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013003
Matt Carlson4181b2c2010-02-26 14:04:45 +000013004 i = pci_vpd_find_tag(vpd_data, 0, TG3_NVM_VPD_LEN,
13005 PCI_VPD_LRDT_RO_DATA);
13006 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013007 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013008
13009 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13010 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13011 i += PCI_VPD_LRDT_TAG_SIZE;
13012
13013 if (block_end > TG3_NVM_VPD_LEN)
13014 goto out_not_found;
13015
Matt Carlson184b8902010-04-05 10:19:25 +000013016 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13017 PCI_VPD_RO_KEYWORD_MFR_ID);
13018 if (j > 0) {
13019 len = pci_vpd_info_field_size(&vpd_data[j]);
13020
13021 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13022 if (j + len > block_end || len != 4 ||
13023 memcmp(&vpd_data[j], "1028", 4))
13024 goto partno;
13025
13026 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13027 PCI_VPD_RO_KEYWORD_VENDOR0);
13028 if (j < 0)
13029 goto partno;
13030
13031 len = pci_vpd_info_field_size(&vpd_data[j]);
13032
13033 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13034 if (j + len > block_end)
13035 goto partno;
13036
13037 memcpy(tp->fw_ver, &vpd_data[j], len);
13038 strncat(tp->fw_ver, " bc ", TG3_NVM_VPD_LEN - len - 1);
13039 }
13040
13041partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013042 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13043 PCI_VPD_RO_KEYWORD_PARTNO);
13044 if (i < 0)
13045 goto out_not_found;
13046
13047 len = pci_vpd_info_field_size(&vpd_data[i]);
13048
13049 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13050 if (len > TG3_BPN_SIZE ||
13051 (len + i) > TG3_NVM_VPD_LEN)
13052 goto out_not_found;
13053
13054 memcpy(tp->board_part_number, &vpd_data[i], len);
13055
Linus Torvalds1da177e2005-04-16 15:20:36 -070013056out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013057 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013058 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013059 return;
13060
13061out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013062 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13063 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13064 strcpy(tp->board_part_number, "BCM5717");
13065 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13066 strcpy(tp->board_part_number, "BCM5718");
13067 else
13068 goto nomatch;
13069 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13070 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13071 strcpy(tp->board_part_number, "BCM57780");
13072 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13073 strcpy(tp->board_part_number, "BCM57760");
13074 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13075 strcpy(tp->board_part_number, "BCM57790");
13076 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13077 strcpy(tp->board_part_number, "BCM57788");
13078 else
13079 goto nomatch;
13080 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13081 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13082 strcpy(tp->board_part_number, "BCM57761");
13083 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13084 strcpy(tp->board_part_number, "BCM57765");
13085 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13086 strcpy(tp->board_part_number, "BCM57781");
13087 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13088 strcpy(tp->board_part_number, "BCM57785");
13089 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13090 strcpy(tp->board_part_number, "BCM57791");
13091 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13092 strcpy(tp->board_part_number, "BCM57795");
13093 else
13094 goto nomatch;
13095 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013096 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013097 } else {
13098nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013099 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013101}
13102
Matt Carlson9c8a6202007-10-21 16:16:08 -070013103static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13104{
13105 u32 val;
13106
Matt Carlsone4f34112009-02-25 14:25:00 +000013107 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013108 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013109 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013110 val != 0)
13111 return 0;
13112
13113 return 1;
13114}
13115
Matt Carlsonacd9c112009-02-25 14:26:33 +000013116static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13117{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013118 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013119 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013120 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013121
13122 if (tg3_nvram_read(tp, 0xc, &offset) ||
13123 tg3_nvram_read(tp, 0x4, &start))
13124 return;
13125
13126 offset = tg3_nvram_logical_addr(tp, offset);
13127
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013128 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013129 return;
13130
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013131 if ((val & 0xfc000000) == 0x0c000000) {
13132 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013133 return;
13134
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013135 if (val == 0)
13136 newver = true;
13137 }
13138
Matt Carlson75f99362010-04-05 10:19:24 +000013139 dst_off = strlen(tp->fw_ver);
13140
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013141 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013142 if (TG3_VER_SIZE - dst_off < 16 ||
13143 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013144 return;
13145
13146 offset = offset + ver_offset - start;
13147 for (i = 0; i < 16; i += 4) {
13148 __be32 v;
13149 if (tg3_nvram_read_be32(tp, offset + i, &v))
13150 return;
13151
Matt Carlson75f99362010-04-05 10:19:24 +000013152 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013153 }
13154 } else {
13155 u32 major, minor;
13156
13157 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13158 return;
13159
13160 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13161 TG3_NVM_BCVER_MAJSFT;
13162 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013163 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13164 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013165 }
13166}
13167
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013168static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13169{
13170 u32 val, major, minor;
13171
13172 /* Use native endian representation */
13173 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13174 return;
13175
13176 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13177 TG3_NVM_HWSB_CFG1_MAJSFT;
13178 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13179 TG3_NVM_HWSB_CFG1_MINSFT;
13180
13181 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13182}
13183
Matt Carlsondfe00d72008-11-21 17:19:41 -080013184static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13185{
13186 u32 offset, major, minor, build;
13187
Matt Carlson75f99362010-04-05 10:19:24 +000013188 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013189
13190 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13191 return;
13192
13193 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13194 case TG3_EEPROM_SB_REVISION_0:
13195 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13196 break;
13197 case TG3_EEPROM_SB_REVISION_2:
13198 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13199 break;
13200 case TG3_EEPROM_SB_REVISION_3:
13201 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13202 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013203 case TG3_EEPROM_SB_REVISION_4:
13204 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13205 break;
13206 case TG3_EEPROM_SB_REVISION_5:
13207 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13208 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013209 case TG3_EEPROM_SB_REVISION_6:
13210 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13211 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013212 default:
13213 return;
13214 }
13215
Matt Carlsone4f34112009-02-25 14:25:00 +000013216 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013217 return;
13218
13219 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13220 TG3_EEPROM_SB_EDH_BLD_SHFT;
13221 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13222 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13223 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13224
13225 if (minor > 99 || build > 26)
13226 return;
13227
Matt Carlson75f99362010-04-05 10:19:24 +000013228 offset = strlen(tp->fw_ver);
13229 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13230 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013231
13232 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013233 offset = strlen(tp->fw_ver);
13234 if (offset < TG3_VER_SIZE - 1)
13235 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013236 }
13237}
13238
Matt Carlsonacd9c112009-02-25 14:26:33 +000013239static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013240{
13241 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013242 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013243
13244 for (offset = TG3_NVM_DIR_START;
13245 offset < TG3_NVM_DIR_END;
13246 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013247 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013248 return;
13249
13250 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13251 break;
13252 }
13253
13254 if (offset == TG3_NVM_DIR_END)
13255 return;
13256
Joe Perches63c3a662011-04-26 08:12:10 +000013257 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013258 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013259 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013260 return;
13261
Matt Carlsone4f34112009-02-25 14:25:00 +000013262 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013263 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013264 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013265 return;
13266
13267 offset += val - start;
13268
Matt Carlsonacd9c112009-02-25 14:26:33 +000013269 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013270
Matt Carlsonacd9c112009-02-25 14:26:33 +000013271 tp->fw_ver[vlen++] = ',';
13272 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013273
13274 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013275 __be32 v;
13276 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013277 return;
13278
Al Virob9fc7dc2007-12-17 22:59:57 -080013279 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013280
Matt Carlsonacd9c112009-02-25 14:26:33 +000013281 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13282 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013283 break;
13284 }
13285
Matt Carlsonacd9c112009-02-25 14:26:33 +000013286 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13287 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013288 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013289}
13290
Matt Carlson7fd76442009-02-25 14:27:20 +000013291static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13292{
13293 int vlen;
13294 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013295 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013296
Joe Perches63c3a662011-04-26 08:12:10 +000013297 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013298 return;
13299
13300 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13301 if (apedata != APE_SEG_SIG_MAGIC)
13302 return;
13303
13304 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13305 if (!(apedata & APE_FW_STATUS_READY))
13306 return;
13307
13308 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13309
Matt Carlsondc6d0742010-09-15 08:59:55 +000013310 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013311 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013312 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013313 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013314 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013315 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013316
Matt Carlson7fd76442009-02-25 14:27:20 +000013317 vlen = strlen(tp->fw_ver);
13318
Matt Carlsonecc79642010-08-02 11:26:01 +000013319 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13320 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013321 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13322 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13323 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13324 (apedata & APE_FW_VERSION_BLDMSK));
13325}
13326
Matt Carlsonacd9c112009-02-25 14:26:33 +000013327static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13328{
13329 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013330 bool vpd_vers = false;
13331
13332 if (tp->fw_ver[0] != 0)
13333 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013334
Joe Perches63c3a662011-04-26 08:12:10 +000013335 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013336 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013337 return;
13338 }
13339
Matt Carlsonacd9c112009-02-25 14:26:33 +000013340 if (tg3_nvram_read(tp, 0, &val))
13341 return;
13342
13343 if (val == TG3_EEPROM_MAGIC)
13344 tg3_read_bc_ver(tp);
13345 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13346 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013347 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13348 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013349 else
13350 return;
13351
Joe Perches63c3a662011-04-26 08:12:10 +000013352 if (!tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013353 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013354
13355 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013356
Matt Carlson75f99362010-04-05 10:19:24 +000013357done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013358 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013359}
13360
Michael Chan7544b092007-05-05 13:08:32 -070013361static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13362
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013363static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13364{
Joe Perches63c3a662011-04-26 08:12:10 +000013365 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013366 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013367 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013368 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013369 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013370 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013371}
13372
Matt Carlson41434702011-03-09 16:58:22 +000013373static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013374 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13375 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13376 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13377 { },
13378};
13379
Linus Torvalds1da177e2005-04-16 15:20:36 -070013380static int __devinit tg3_get_invariants(struct tg3 *tp)
13381{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013382 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013383 u32 pci_state_reg, grc_misc_cfg;
13384 u32 val;
13385 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013386 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013387
Linus Torvalds1da177e2005-04-16 15:20:36 -070013388 /* Force memory write invalidate off. If we leave it on,
13389 * then on 5700_BX chips we have to enable a workaround.
13390 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13391 * to match the cacheline size. The Broadcom driver have this
13392 * workaround but turns MWI off all the times so never uses
13393 * it. This seems to suggest that the workaround is insufficient.
13394 */
13395 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13396 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13397 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13398
13399 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
13400 * has the register indirect write enable bit set before
13401 * we try to access any of the MMIO registers. It is also
13402 * critical that the PCI-X hw workaround situation is decided
13403 * before that as well.
13404 */
13405 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13406 &misc_ctrl_reg);
13407
13408 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13409 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013410 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13411 u32 prod_id_asic_rev;
13412
Matt Carlson5001e2f2009-11-13 13:03:51 +000013413 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13414 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013415 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13416 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013417 pci_read_config_dword(tp->pdev,
13418 TG3PCI_GEN2_PRODID_ASICREV,
13419 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013420 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13421 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13422 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13423 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13424 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13425 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13426 pci_read_config_dword(tp->pdev,
13427 TG3PCI_GEN15_PRODID_ASICREV,
13428 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013429 else
13430 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13431 &prod_id_asic_rev);
13432
Matt Carlson321d32a2008-11-21 17:22:19 -080013433 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013435
Michael Chanff645be2005-04-21 17:09:53 -070013436 /* Wrong chip ID in 5752 A0. This code can be removed later
13437 * as A0 is not in production.
13438 */
13439 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13440 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13441
Michael Chan68929142005-08-09 20:17:14 -070013442 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13443 * we need to disable memory and use config. cycles
13444 * only to access all registers. The 5702/03 chips
13445 * can mistakenly decode the special cycles from the
13446 * ICH chipsets as memory write cycles, causing corruption
13447 * of register and memory space. Only certain ICH bridges
13448 * will drive special cycles with non-zero data during the
13449 * address phase which can fall within the 5703's address
13450 * range. This is not an ICH bug as the PCI spec allows
13451 * non-zero address during special cycles. However, only
13452 * these ICH bridges are known to drive non-zero addresses
13453 * during special cycles.
13454 *
13455 * Since special cycles do not cross PCI bridges, we only
13456 * enable this workaround if the 5703 is on the secondary
13457 * bus of these ICH bridges.
13458 */
13459 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13460 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13461 static struct tg3_dev_id {
13462 u32 vendor;
13463 u32 device;
13464 u32 rev;
13465 } ich_chipsets[] = {
13466 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13467 PCI_ANY_ID },
13468 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13469 PCI_ANY_ID },
13470 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13471 0xa },
13472 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13473 PCI_ANY_ID },
13474 { },
13475 };
13476 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13477 struct pci_dev *bridge = NULL;
13478
13479 while (pci_id->vendor != 0) {
13480 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13481 bridge);
13482 if (!bridge) {
13483 pci_id++;
13484 continue;
13485 }
13486 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013487 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013488 continue;
13489 }
13490 if (bridge->subordinate &&
13491 (bridge->subordinate->number ==
13492 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013493 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013494 pci_dev_put(bridge);
13495 break;
13496 }
13497 }
13498 }
13499
Matt Carlson41588ba12008-04-19 18:12:33 -070013500 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
13501 static struct tg3_dev_id {
13502 u32 vendor;
13503 u32 device;
13504 } bridge_chipsets[] = {
13505 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13506 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13507 { },
13508 };
13509 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13510 struct pci_dev *bridge = NULL;
13511
13512 while (pci_id->vendor != 0) {
13513 bridge = pci_get_device(pci_id->vendor,
13514 pci_id->device,
13515 bridge);
13516 if (!bridge) {
13517 pci_id++;
13518 continue;
13519 }
13520 if (bridge->subordinate &&
13521 (bridge->subordinate->number <=
13522 tp->pdev->bus->number) &&
13523 (bridge->subordinate->subordinate >=
13524 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013525 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba12008-04-19 18:12:33 -070013526 pci_dev_put(bridge);
13527 break;
13528 }
13529 }
13530 }
13531
Michael Chan4a29cc22006-03-19 13:21:12 -080013532 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13533 * DMA addresses > 40-bit. This bridge may have other additional
13534 * 57xx devices behind it in some 4-port NIC designs for example.
13535 * Any tg3 device found behind the bridge will also need the 40-bit
13536 * DMA workaround.
13537 */
Michael Chana4e2b342005-10-26 15:46:52 -070013538 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13539 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000013540 tg3_flag_set(tp, 5780_CLASS);
13541 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070013542 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000013543 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080013544 struct pci_dev *bridge = NULL;
13545
13546 do {
13547 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13548 PCI_DEVICE_ID_SERVERWORKS_EPB,
13549 bridge);
13550 if (bridge && bridge->subordinate &&
13551 (bridge->subordinate->number <=
13552 tp->pdev->bus->number) &&
13553 (bridge->subordinate->subordinate >=
13554 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013555 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080013556 pci_dev_put(bridge);
13557 break;
13558 }
13559 } while (bridge);
13560 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013561
Linus Torvalds1da177e2005-04-16 15:20:36 -070013562 /* Initialize misc host control in PCI block. */
13563 tp->misc_host_ctrl |= (misc_ctrl_reg &
13564 MISC_HOST_CTRL_CHIPREV);
13565 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13566 tp->misc_host_ctrl);
13567
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013568 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
13569 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013570 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13571 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Michael Chan7544b092007-05-05 13:08:32 -070013572 tp->pdev_peer = tg3_find_peer(tp);
13573
Matt Carlsonc885e822010-08-02 11:25:57 +000013574 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013575 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13576 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000013577 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000013578
13579 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013580 tg3_flag(tp, 5717_PLUS))
13581 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000013582
Matt Carlson321d32a2008-11-21 17:22:19 -080013583 /* Intentionally exclude ASIC_REV_5906 */
13584 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad12006-03-20 22:27:35 -080013585 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013586 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013587 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013588 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013589 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013590 tg3_flag(tp, 57765_PLUS))
13591 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013592
13593 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13594 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013595 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013596 tg3_flag(tp, 5755_PLUS) ||
13597 tg3_flag(tp, 5780_CLASS))
13598 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070013599
John W. Linville1b440c562005-04-21 17:03:18 -070013600 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
Joe Perches63c3a662011-04-26 08:12:10 +000013601 tg3_flag(tp, 5750_PLUS))
13602 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070013603
Matt Carlson027455a2008-12-21 20:19:30 -080013604 /* 5700 B0 chips do not support checksumming correctly due
13605 * to hardware bugs.
13606 */
Michał Mirosławdc668912011-04-07 03:35:07 +000013607 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
13608 u32 features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
Eric Dumazet7fe876a2010-07-08 06:14:55 +000013609
Joe Perches63c3a662011-04-26 08:12:10 +000013610 if (tg3_flag(tp, 5755_PLUS))
Eric Dumazet7fe876a2010-07-08 06:14:55 +000013611 features |= NETIF_F_IPV6_CSUM;
13612 tp->dev->features |= features;
Michał Mirosławdc668912011-04-07 03:35:07 +000013613 tp->dev->hw_features |= features;
13614 tp->dev->vlan_features |= features;
Matt Carlson027455a2008-12-21 20:19:30 -080013615 }
13616
Matt Carlson507399f2009-11-13 13:03:37 +000013617 /* Determine TSO capabilities */
Matt Carlson2866d952011-02-10 20:06:46 -080013618 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlson4d163b72011-01-25 15:58:48 +000013619 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000013620 else if (tg3_flag(tp, 57765_PLUS))
13621 tg3_flag_set(tp, HW_TSO_3);
13622 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000013623 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013624 tg3_flag_set(tp, HW_TSO_2);
13625 else if (tg3_flag(tp, 5750_PLUS)) {
13626 tg3_flag_set(tp, HW_TSO_1);
13627 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013628 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13629 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000013630 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013631 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13632 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13633 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013634 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013635 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13636 tp->fw_needed = FIRMWARE_TG3TSO5;
13637 else
13638 tp->fw_needed = FIRMWARE_TG3TSO;
13639 }
13640
13641 tp->irq_max = 1;
13642
Joe Perches63c3a662011-04-26 08:12:10 +000013643 if (tg3_flag(tp, 5750_PLUS)) {
13644 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013645 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13646 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13647 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13648 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13649 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000013650 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013651
Joe Perches63c3a662011-04-26 08:12:10 +000013652 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013653 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013654 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070013655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013656
Joe Perches63c3a662011-04-26 08:12:10 +000013657 if (tg3_flag(tp, 57765_PLUS)) {
13658 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000013659 tp->irq_max = TG3_IRQ_MAX_VECS;
13660 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013661 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013662
Matt Carlson2ffcc982011-05-19 12:12:44 +000013663 /* All chips can get confused if TX buffers
13664 * straddle the 4GB address boundary.
13665 */
13666 tg3_flag_set(tp, 4G_DMA_BNDRY_BUG);
13667
13668 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000013669 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlson2ffcc982011-05-19 12:12:44 +000013670 else
Joe Perches63c3a662011-04-26 08:12:10 +000013671 tg3_flag_set(tp, 40BIT_DMA_LIMIT_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013672
Joe Perches63c3a662011-04-26 08:12:10 +000013673 if (tg3_flag(tp, 5717_PLUS))
13674 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000013675
Joe Perches63c3a662011-04-26 08:12:10 +000013676 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlson2866d952011-02-10 20:06:46 -080013677 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5719)
Joe Perches63c3a662011-04-26 08:12:10 +000013678 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000013679
Joe Perches63c3a662011-04-26 08:12:10 +000013680 if (!tg3_flag(tp, 5705_PLUS) ||
13681 tg3_flag(tp, 5780_CLASS) ||
13682 tg3_flag(tp, USE_JUMBO_BDFLAG))
13683 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070013684
Matt Carlson52f44902008-11-21 17:17:04 -080013685 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13686 &pci_state_reg);
13687
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013688 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
13689 if (tp->pcie_cap != 0) {
13690 u16 lnkctl;
13691
Joe Perches63c3a662011-04-26 08:12:10 +000013692 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013693
Matt Carlsoncf790032010-11-24 08:31:48 +000013694 tp->pcie_readrq = 4096;
Matt Carlsond78b59f2011-04-05 14:22:46 +000013695 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13696 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Matt Carlsonb4495ed2011-01-25 15:58:47 +000013697 tp->pcie_readrq = 2048;
Matt Carlsoncf790032010-11-24 08:31:48 +000013698
13699 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013700
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013701 pci_read_config_word(tp->pdev,
13702 tp->pcie_cap + PCI_EXP_LNKCTL,
13703 &lnkctl);
13704 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
13705 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013706 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013707 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013708 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013709 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13710 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000013711 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000013712 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013713 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080013714 }
Matt Carlson52f44902008-11-21 17:17:04 -080013715 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +000013716 tg3_flag_set(tp, PCI_EXPRESS);
13717 } else if (!tg3_flag(tp, 5705_PLUS) ||
13718 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080013719 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13720 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000013721 dev_err(&tp->pdev->dev,
13722 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013723 return -EIO;
13724 }
13725
13726 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000013727 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080013728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013729
Michael Chan399de502005-10-03 14:02:39 -070013730 /* If we have an AMD 762 or VIA K8T800 chipset, write
13731 * reordering to the mailbox registers done by the host
13732 * controller can cause major troubles. We read back from
13733 * every mailbox register write to force the writes to be
13734 * posted to the chip in order.
13735 */
Matt Carlson41434702011-03-09 16:58:22 +000013736 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013737 !tg3_flag(tp, PCI_EXPRESS))
13738 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070013739
Matt Carlson69fc4052008-12-21 20:19:57 -080013740 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13741 &tp->pci_cacheline_sz);
13742 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13743 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013744 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13745 tp->pci_lat_timer < 64) {
13746 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013747 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13748 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013749 }
13750
Matt Carlson52f44902008-11-21 17:17:04 -080013751 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13752 /* 5700 BX chips need to have their TX producer index
13753 * mailboxes written twice to workaround a bug.
13754 */
Joe Perches63c3a662011-04-26 08:12:10 +000013755 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070013756
Matt Carlson52f44902008-11-21 17:17:04 -080013757 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013758 *
13759 * The workaround is to use indirect register accesses
13760 * for all chip writes not to mailbox registers.
13761 */
Joe Perches63c3a662011-04-26 08:12:10 +000013762 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013763 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013764
Joe Perches63c3a662011-04-26 08:12:10 +000013765 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013766
13767 /* The chip can have it's power management PCI config
13768 * space registers clobbered due to this bug.
13769 * So explicitly force the chip into D0 here.
13770 */
Matt Carlson9974a352007-10-07 23:27:28 -070013771 pci_read_config_dword(tp->pdev,
13772 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013773 &pm_reg);
13774 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13775 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013776 pci_write_config_dword(tp->pdev,
13777 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013778 pm_reg);
13779
13780 /* Also, force SERR#/PERR# in PCI command. */
13781 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13782 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13783 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13784 }
13785 }
13786
Linus Torvalds1da177e2005-04-16 15:20:36 -070013787 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013788 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013789 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013790 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013791
13792 /* Chip-specific fixup from Broadcom driver */
13793 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13794 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13795 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13796 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13797 }
13798
Michael Chan1ee582d2005-08-09 20:16:46 -070013799 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013800 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013801 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013802 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013803 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013804 tp->write32_tx_mbox = tg3_write32;
13805 tp->write32_rx_mbox = tg3_write32;
13806
13807 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000013808 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070013809 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013810 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013811 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070013812 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13813 /*
13814 * Back to back register writes can cause problems on these
13815 * chips, the workaround is to read back all reg writes
13816 * except those to mailbox regs.
13817 *
13818 * See tg3_write_indirect_reg32().
13819 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013820 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013821 }
13822
Joe Perches63c3a662011-04-26 08:12:10 +000013823 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070013824 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000013825 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070013826 tp->write32_rx_mbox = tg3_write_flush_reg32;
13827 }
Michael Chan20094932005-08-09 20:16:32 -070013828
Joe Perches63c3a662011-04-26 08:12:10 +000013829 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070013830 tp->read32 = tg3_read_indirect_reg32;
13831 tp->write32 = tg3_write_indirect_reg32;
13832 tp->read32_mbox = tg3_read_indirect_mbox;
13833 tp->write32_mbox = tg3_write_indirect_mbox;
13834 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13835 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13836
13837 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013838 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013839
13840 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13841 pci_cmd &= ~PCI_COMMAND_MEMORY;
13842 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13843 }
Michael Chanb5d37722006-09-27 16:06:21 -070013844 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13845 tp->read32_mbox = tg3_read32_mbox_5906;
13846 tp->write32_mbox = tg3_write32_mbox_5906;
13847 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13848 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13849 }
Michael Chan68929142005-08-09 20:17:14 -070013850
Michael Chanbbadf502006-04-06 21:46:34 -070013851 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013852 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070013853 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013854 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000013855 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070013856
Michael Chan7d0c41e2005-04-21 17:06:20 -070013857 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000013858 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013859 * determined before calling tg3_set_power_state() so that
13860 * we know whether or not to switch out of Vaux power.
13861 * When the flag is set, it means that GPIO1 is used for eeprom
13862 * write protect and also implies that it is a LOM where GPIOs
13863 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013864 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070013865 tg3_get_eeprom_hw_cfg(tp);
13866
Joe Perches63c3a662011-04-26 08:12:10 +000013867 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070013868 /* Allow reads and writes to the
13869 * APE register and memory space.
13870 */
13871 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000013872 PCISTATE_ALLOW_APE_SHMEM_WR |
13873 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070013874 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
13875 pci_state_reg);
13876 }
13877
Matt Carlson9936bcf2007-10-10 18:03:07 -070013878 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013879 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013880 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013881 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013882 tg3_flag(tp, 57765_PLUS))
13883 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070013884
Matt Carlsonbea8a632011-04-25 12:42:49 +000013885 /* Set up tp->grc_local_ctrl before calling tg3_power_up().
Michael Chan314fba32005-04-21 17:07:04 -070013886 * GPIO1 driven high will bring 5700's external PHY out of reset.
13887 * It is also used as eeprom write protect on LOMs.
13888 */
13889 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
13890 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
Joe Perches63c3a662011-04-26 08:12:10 +000013891 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070013892 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
13893 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070013894 /* Unused GPIO3 must be driven as output on 5752 because there
13895 * are no pull-up resistors on unused GPIO pins.
13896 */
13897 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13898 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070013899
Matt Carlson321d32a2008-11-21 17:22:19 -080013900 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000013901 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13902 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080013903 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13904
Matt Carlson8d519ab2009-04-20 06:58:01 +000013905 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
13906 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013907 /* Turn off the debug UART. */
13908 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013909 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013910 /* Keep VMain power. */
13911 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
13912 GRC_LCLCTRL_GPIO_OUTPUT0;
13913 }
13914
Linus Torvalds1da177e2005-04-16 15:20:36 -070013915 /* Force the chip into D0. */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000013916 err = tg3_power_up(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013917 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000013918 dev_err(&tp->pdev->dev, "Transition to D0 failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070013919 return err;
13920 }
13921
Linus Torvalds1da177e2005-04-16 15:20:36 -070013922 /* Derive initial jumbo mode from MTU assigned in
13923 * ether_setup() via the alloc_etherdev() call
13924 */
Joe Perches63c3a662011-04-26 08:12:10 +000013925 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
13926 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013927
13928 /* Determine WakeOnLan speed to use. */
13929 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13930 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13931 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
13932 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000013933 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013934 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013935 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013936 }
13937
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013938 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013939 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013940
Linus Torvalds1da177e2005-04-16 15:20:36 -070013941 /* A few boards don't want Ethernet@WireSpeed phy feature */
13942 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13943 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
13944 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070013945 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013946 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
13947 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13948 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013949
13950 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
13951 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013952 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013953 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013954 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013955
Joe Perches63c3a662011-04-26 08:12:10 +000013956 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013957 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080013958 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013959 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013960 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070013961 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013962 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013963 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13964 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080013965 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
13966 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013967 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080013968 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013969 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080013970 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013971 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070013972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013973
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013974 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13975 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
13976 tp->phy_otp = tg3_read_otp_phycfg(tp);
13977 if (tp->phy_otp == 0)
13978 tp->phy_otp = TG3_OTP_DEFAULT;
13979 }
13980
Joe Perches63c3a662011-04-26 08:12:10 +000013981 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070013982 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
13983 else
13984 tp->mi_mode = MAC_MI_MODE_BASE;
13985
Linus Torvalds1da177e2005-04-16 15:20:36 -070013986 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013987 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
13988 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
13989 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
13990
Matt Carlson4d958472011-04-20 07:57:35 +000013991 /* Set these bits to enable statistics workaround. */
13992 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13993 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
13994 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
13995 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
13996 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
13997 }
13998
Matt Carlson321d32a2008-11-21 17:22:19 -080013999 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14000 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014001 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014002
Matt Carlson158d7ab2008-05-29 01:37:54 -070014003 err = tg3_mdio_init(tp);
14004 if (err)
14005 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014006
14007 /* Initialize data/descriptor byte/word swapping. */
14008 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014009 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14010 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14011 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14012 GRC_MODE_B2HRX_ENABLE |
14013 GRC_MODE_HTX2B_ENABLE |
14014 GRC_MODE_HOST_STACKUP);
14015 else
14016 val &= GRC_MODE_HOST_STACKUP;
14017
Linus Torvalds1da177e2005-04-16 15:20:36 -070014018 tw32(GRC_MODE, val | tp->grc_mode);
14019
14020 tg3_switch_clocks(tp);
14021
14022 /* Clear this out for sanity. */
14023 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14024
14025 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14026 &pci_state_reg);
14027 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014028 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014029 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14030
14031 if (chiprevid == CHIPREV_ID_5701_A0 ||
14032 chiprevid == CHIPREV_ID_5701_B0 ||
14033 chiprevid == CHIPREV_ID_5701_B2 ||
14034 chiprevid == CHIPREV_ID_5701_B5) {
14035 void __iomem *sram_base;
14036
14037 /* Write some dummy words into the SRAM status block
14038 * area, see if it reads back correctly. If the return
14039 * value is bad, force enable the PCIX workaround.
14040 */
14041 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14042
14043 writel(0x00000000, sram_base);
14044 writel(0x00000000, sram_base + 4);
14045 writel(0xffffffff, sram_base + 4);
14046 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014047 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014048 }
14049 }
14050
14051 udelay(50);
14052 tg3_nvram_init(tp);
14053
14054 grc_misc_cfg = tr32(GRC_MISC_CFG);
14055 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14056
Linus Torvalds1da177e2005-04-16 15:20:36 -070014057 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14058 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14059 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014060 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014061
Joe Perches63c3a662011-04-26 08:12:10 +000014062 if (!tg3_flag(tp, IS_5788) &&
David S. Millerfac9b832005-05-18 22:46:34 -070014063 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
Joe Perches63c3a662011-04-26 08:12:10 +000014064 tg3_flag_set(tp, TAGGED_STATUS);
14065 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014066 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14067 HOSTCC_MODE_CLRTICK_TXBD);
14068
14069 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14070 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14071 tp->misc_host_ctrl);
14072 }
14073
Matt Carlson3bda1252008-08-15 14:08:22 -070014074 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014075 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014076 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014077 else
14078 tp->mac_mode = TG3_DEF_MAC_MODE;
14079
Linus Torvalds1da177e2005-04-16 15:20:36 -070014080 /* these are limited to 10/100 only */
14081 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14082 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14083 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14084 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14085 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14086 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14087 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14088 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14089 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014090 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14091 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014092 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014093 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14094 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014095 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14096 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014097
14098 err = tg3_phy_probe(tp);
14099 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014100 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014101 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014102 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014103 }
14104
Matt Carlson184b8902010-04-05 10:19:25 +000014105 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014106 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014107
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014108 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14109 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014110 } else {
14111 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014112 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014113 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014114 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014115 }
14116
14117 /* 5700 {AX,BX} chips have a broken status block link
14118 * change bit implementation, so we must use the
14119 * status register in those cases.
14120 */
14121 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014122 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014123 else
Joe Perches63c3a662011-04-26 08:12:10 +000014124 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014125
14126 /* The led_ctrl is set during tg3_phy_probe, here we might
14127 * have to force the link status polling mechanism based
14128 * upon subsystem IDs.
14129 */
14130 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014131 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014132 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14133 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014134 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014135 }
14136
14137 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014138 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014139 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014140 else
Joe Perches63c3a662011-04-26 08:12:10 +000014141 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014142
Matt Carlsonbf933c82011-01-25 15:58:49 +000014143 tp->rx_offset = NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014144 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014145 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014146 tg3_flag(tp, PCIX_MODE)) {
Matt Carlsonbf933c82011-01-25 15:58:49 +000014147 tp->rx_offset = 0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014148#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014149 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014150#endif
14151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014152
Matt Carlson2c49a442010-09-30 10:34:35 +000014153 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14154 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014155 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14156
Matt Carlson2c49a442010-09-30 10:34:35 +000014157 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014158
14159 /* Increment the rx prod index on the rx std ring by at most
14160 * 8 for these chips to workaround hw errata.
14161 */
14162 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14163 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14164 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14165 tp->rx_std_max_post = 8;
14166
Joe Perches63c3a662011-04-26 08:12:10 +000014167 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014168 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14169 PCIE_PWR_MGMT_L1_THRESH_MSK;
14170
Linus Torvalds1da177e2005-04-16 15:20:36 -070014171 return err;
14172}
14173
David S. Miller49b6e95f2007-03-29 01:38:42 -070014174#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014175static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14176{
14177 struct net_device *dev = tp->dev;
14178 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014179 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014180 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014181 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014182
David S. Miller49b6e95f2007-03-29 01:38:42 -070014183 addr = of_get_property(dp, "local-mac-address", &len);
14184 if (addr && len == 6) {
14185 memcpy(dev->dev_addr, addr, 6);
14186 memcpy(dev->perm_addr, dev->dev_addr, 6);
14187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014188 }
14189 return -ENODEV;
14190}
14191
14192static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14193{
14194 struct net_device *dev = tp->dev;
14195
14196 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014197 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014198 return 0;
14199}
14200#endif
14201
14202static int __devinit tg3_get_device_address(struct tg3 *tp)
14203{
14204 struct net_device *dev = tp->dev;
14205 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014206 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014207
David S. Miller49b6e95f2007-03-29 01:38:42 -070014208#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014209 if (!tg3_get_macaddr_sparc(tp))
14210 return 0;
14211#endif
14212
14213 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070014214 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Joe Perches63c3a662011-04-26 08:12:10 +000014215 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014216 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14217 mac_offset = 0xcc;
14218 if (tg3_nvram_lock(tp))
14219 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14220 else
14221 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014222 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlsona50d0792010-06-05 17:24:37 +000014223 if (PCI_FUNC(tp->pdev->devfn) & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014224 mac_offset = 0xcc;
Matt Carlsona50d0792010-06-05 17:24:37 +000014225 if (PCI_FUNC(tp->pdev->devfn) > 1)
14226 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014227 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014228 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014229
14230 /* First try to get it from MAC address mailbox. */
14231 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14232 if ((hi >> 16) == 0x484b) {
14233 dev->dev_addr[0] = (hi >> 8) & 0xff;
14234 dev->dev_addr[1] = (hi >> 0) & 0xff;
14235
14236 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14237 dev->dev_addr[2] = (lo >> 24) & 0xff;
14238 dev->dev_addr[3] = (lo >> 16) & 0xff;
14239 dev->dev_addr[4] = (lo >> 8) & 0xff;
14240 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014241
Michael Chan008652b2006-03-27 23:14:53 -080014242 /* Some old bootcode may report a 0 MAC address in SRAM */
14243 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14244 }
14245 if (!addr_ok) {
14246 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014247 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014248 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014249 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014250 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14251 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014252 }
14253 /* Finally just fetch it out of the MAC control regs. */
14254 else {
14255 hi = tr32(MAC_ADDR_0_HIGH);
14256 lo = tr32(MAC_ADDR_0_LOW);
14257
14258 dev->dev_addr[5] = lo & 0xff;
14259 dev->dev_addr[4] = (lo >> 8) & 0xff;
14260 dev->dev_addr[3] = (lo >> 16) & 0xff;
14261 dev->dev_addr[2] = (lo >> 24) & 0xff;
14262 dev->dev_addr[1] = hi & 0xff;
14263 dev->dev_addr[0] = (hi >> 8) & 0xff;
14264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014265 }
14266
14267 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014268#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014269 if (!tg3_get_default_macaddr_sparc(tp))
14270 return 0;
14271#endif
14272 return -EINVAL;
14273 }
John W. Linville2ff43692005-09-12 14:44:20 -070014274 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014275 return 0;
14276}
14277
David S. Miller59e6b432005-05-18 22:50:10 -070014278#define BOUNDARY_SINGLE_CACHELINE 1
14279#define BOUNDARY_MULTI_CACHELINE 2
14280
14281static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14282{
14283 int cacheline_size;
14284 u8 byte;
14285 int goal;
14286
14287 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14288 if (byte == 0)
14289 cacheline_size = 1024;
14290 else
14291 cacheline_size = (int) byte * 4;
14292
14293 /* On 5703 and later chips, the boundary bits have no
14294 * effect.
14295 */
14296 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14297 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014298 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014299 goto out;
14300
14301#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14302 goal = BOUNDARY_MULTI_CACHELINE;
14303#else
14304#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14305 goal = BOUNDARY_SINGLE_CACHELINE;
14306#else
14307 goal = 0;
14308#endif
14309#endif
14310
Joe Perches63c3a662011-04-26 08:12:10 +000014311 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014312 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14313 goto out;
14314 }
14315
David S. Miller59e6b432005-05-18 22:50:10 -070014316 if (!goal)
14317 goto out;
14318
14319 /* PCI controllers on most RISC systems tend to disconnect
14320 * when a device tries to burst across a cache-line boundary.
14321 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14322 *
14323 * Unfortunately, for PCI-E there are only limited
14324 * write-side controls for this, and thus for reads
14325 * we will still get the disconnects. We'll also waste
14326 * these PCI cycles for both read and write for chips
14327 * other than 5700 and 5701 which do not implement the
14328 * boundary bits.
14329 */
Joe Perches63c3a662011-04-26 08:12:10 +000014330 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014331 switch (cacheline_size) {
14332 case 16:
14333 case 32:
14334 case 64:
14335 case 128:
14336 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14337 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14338 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14339 } else {
14340 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14341 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14342 }
14343 break;
14344
14345 case 256:
14346 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14347 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14348 break;
14349
14350 default:
14351 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14352 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14353 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014354 }
Joe Perches63c3a662011-04-26 08:12:10 +000014355 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014356 switch (cacheline_size) {
14357 case 16:
14358 case 32:
14359 case 64:
14360 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14361 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14362 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14363 break;
14364 }
14365 /* fallthrough */
14366 case 128:
14367 default:
14368 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14369 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14370 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014371 }
David S. Miller59e6b432005-05-18 22:50:10 -070014372 } else {
14373 switch (cacheline_size) {
14374 case 16:
14375 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14376 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14377 DMA_RWCTRL_WRITE_BNDRY_16);
14378 break;
14379 }
14380 /* fallthrough */
14381 case 32:
14382 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14383 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14384 DMA_RWCTRL_WRITE_BNDRY_32);
14385 break;
14386 }
14387 /* fallthrough */
14388 case 64:
14389 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14390 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14391 DMA_RWCTRL_WRITE_BNDRY_64);
14392 break;
14393 }
14394 /* fallthrough */
14395 case 128:
14396 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14397 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14398 DMA_RWCTRL_WRITE_BNDRY_128);
14399 break;
14400 }
14401 /* fallthrough */
14402 case 256:
14403 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14404 DMA_RWCTRL_WRITE_BNDRY_256);
14405 break;
14406 case 512:
14407 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14408 DMA_RWCTRL_WRITE_BNDRY_512);
14409 break;
14410 case 1024:
14411 default:
14412 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14413 DMA_RWCTRL_WRITE_BNDRY_1024);
14414 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014415 }
David S. Miller59e6b432005-05-18 22:50:10 -070014416 }
14417
14418out:
14419 return val;
14420}
14421
Linus Torvalds1da177e2005-04-16 15:20:36 -070014422static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14423{
14424 struct tg3_internal_buffer_desc test_desc;
14425 u32 sram_dma_descs;
14426 int i, ret;
14427
14428 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14429
14430 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14431 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14432 tw32(RDMAC_STATUS, 0);
14433 tw32(WDMAC_STATUS, 0);
14434
14435 tw32(BUFMGR_MODE, 0);
14436 tw32(FTQ_RESET, 0);
14437
14438 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14439 test_desc.addr_lo = buf_dma & 0xffffffff;
14440 test_desc.nic_mbuf = 0x00002100;
14441 test_desc.len = size;
14442
14443 /*
14444 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14445 * the *second* time the tg3 driver was getting loaded after an
14446 * initial scan.
14447 *
14448 * Broadcom tells me:
14449 * ...the DMA engine is connected to the GRC block and a DMA
14450 * reset may affect the GRC block in some unpredictable way...
14451 * The behavior of resets to individual blocks has not been tested.
14452 *
14453 * Broadcom noted the GRC reset will also reset all sub-components.
14454 */
14455 if (to_device) {
14456 test_desc.cqid_sqid = (13 << 8) | 2;
14457
14458 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14459 udelay(40);
14460 } else {
14461 test_desc.cqid_sqid = (16 << 8) | 7;
14462
14463 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14464 udelay(40);
14465 }
14466 test_desc.flags = 0x00000005;
14467
14468 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14469 u32 val;
14470
14471 val = *(((u32 *)&test_desc) + i);
14472 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14473 sram_dma_descs + (i * sizeof(u32)));
14474 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14475 }
14476 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14477
Matt Carlson859a588792010-04-05 10:19:28 +000014478 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014479 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000014480 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014481 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014482
14483 ret = -ENODEV;
14484 for (i = 0; i < 40; i++) {
14485 u32 val;
14486
14487 if (to_device)
14488 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14489 else
14490 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14491 if ((val & 0xffff) == sram_dma_descs) {
14492 ret = 0;
14493 break;
14494 }
14495
14496 udelay(100);
14497 }
14498
14499 return ret;
14500}
14501
David S. Millerded73402005-05-23 13:59:47 -070014502#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014503
Matt Carlson41434702011-03-09 16:58:22 +000014504static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014505 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14506 { },
14507};
14508
Linus Torvalds1da177e2005-04-16 15:20:36 -070014509static int __devinit tg3_test_dma(struct tg3 *tp)
14510{
14511 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014512 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014513 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014514
Matt Carlson4bae65c2010-11-24 08:31:52 +000014515 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
14516 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014517 if (!buf) {
14518 ret = -ENOMEM;
14519 goto out_nofree;
14520 }
14521
14522 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14523 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14524
David S. Miller59e6b432005-05-18 22:50:10 -070014525 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014526
Joe Perches63c3a662011-04-26 08:12:10 +000014527 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014528 goto out;
14529
Joe Perches63c3a662011-04-26 08:12:10 +000014530 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014531 /* DMA read watermark not used on PCIE */
14532 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000014533 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014534 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14535 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014536 tp->dma_rwctrl |= 0x003f0000;
14537 else
14538 tp->dma_rwctrl |= 0x003f000f;
14539 } else {
14540 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14541 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14542 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014543 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014544
Michael Chan4a29cc22006-03-19 13:21:12 -080014545 /* If the 5704 is behind the EPB bridge, we can
14546 * do the less restrictive ONE_DMA workaround for
14547 * better performance.
14548 */
Joe Perches63c3a662011-04-26 08:12:10 +000014549 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080014550 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14551 tp->dma_rwctrl |= 0x8000;
14552 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014553 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14554
Michael Chan49afdeb2007-02-13 12:17:03 -080014555 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14556 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014557 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014558 tp->dma_rwctrl |=
14559 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14560 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14561 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014562 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14563 /* 5780 always in PCIX mode */
14564 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014565 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14566 /* 5714 always in PCIX mode */
14567 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014568 } else {
14569 tp->dma_rwctrl |= 0x001b000f;
14570 }
14571 }
14572
14573 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14574 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14575 tp->dma_rwctrl &= 0xfffffff0;
14576
14577 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14578 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14579 /* Remove this if it causes problems for some boards. */
14580 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14581
14582 /* On 5700/5701 chips, we need to set this bit.
14583 * Otherwise the chip will issue cacheline transactions
14584 * to streamable DMA memory with not all the byte
14585 * enables turned on. This is an error on several
14586 * RISC PCI controllers, in particular sparc64.
14587 *
14588 * On 5703/5704 chips, this bit has been reassigned
14589 * a different meaning. In particular, it is used
14590 * on those chips to enable a PCI-X workaround.
14591 */
14592 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14593 }
14594
14595 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14596
14597#if 0
14598 /* Unneeded, already done by tg3_get_invariants. */
14599 tg3_switch_clocks(tp);
14600#endif
14601
Linus Torvalds1da177e2005-04-16 15:20:36 -070014602 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14603 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14604 goto out;
14605
David S. Miller59e6b432005-05-18 22:50:10 -070014606 /* It is best to perform DMA test with maximum write burst size
14607 * to expose the 5700/5701 write DMA bug.
14608 */
14609 saved_dma_rwctrl = tp->dma_rwctrl;
14610 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14611 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14612
Linus Torvalds1da177e2005-04-16 15:20:36 -070014613 while (1) {
14614 u32 *p = buf, i;
14615
14616 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14617 p[i] = i;
14618
14619 /* Send the buffer to the chip. */
14620 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14621 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014622 dev_err(&tp->pdev->dev,
14623 "%s: Buffer write failed. err = %d\n",
14624 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014625 break;
14626 }
14627
14628#if 0
14629 /* validate data reached card RAM correctly. */
14630 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14631 u32 val;
14632 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14633 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000014634 dev_err(&tp->pdev->dev,
14635 "%s: Buffer corrupted on device! "
14636 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014637 /* ret = -ENODEV here? */
14638 }
14639 p[i] = 0;
14640 }
14641#endif
14642 /* Now read it back. */
14643 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14644 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014645 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
14646 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014647 break;
14648 }
14649
14650 /* Verify it. */
14651 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14652 if (p[i] == i)
14653 continue;
14654
David S. Miller59e6b432005-05-18 22:50:10 -070014655 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14656 DMA_RWCTRL_WRITE_BNDRY_16) {
14657 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014658 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14659 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14660 break;
14661 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000014662 dev_err(&tp->pdev->dev,
14663 "%s: Buffer corrupted on read back! "
14664 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014665 ret = -ENODEV;
14666 goto out;
14667 }
14668 }
14669
14670 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14671 /* Success. */
14672 ret = 0;
14673 break;
14674 }
14675 }
David S. Miller59e6b432005-05-18 22:50:10 -070014676 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14677 DMA_RWCTRL_WRITE_BNDRY_16) {
14678 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014679 * now look for chipsets that are known to expose the
14680 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014681 */
Matt Carlson41434702011-03-09 16:58:22 +000014682 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014683 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14684 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000014685 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014686 /* Safe to use the calculated DMA boundary. */
14687 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000014688 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070014689
David S. Miller59e6b432005-05-18 22:50:10 -070014690 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014692
14693out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000014694 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014695out_nofree:
14696 return ret;
14697}
14698
Linus Torvalds1da177e2005-04-16 15:20:36 -070014699static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14700{
Joe Perches63c3a662011-04-26 08:12:10 +000014701 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000014702 tp->bufmgr_config.mbuf_read_dma_low_water =
14703 DEFAULT_MB_RDMA_LOW_WATER_5705;
14704 tp->bufmgr_config.mbuf_mac_rx_low_water =
14705 DEFAULT_MB_MACRX_LOW_WATER_57765;
14706 tp->bufmgr_config.mbuf_high_water =
14707 DEFAULT_MB_HIGH_WATER_57765;
14708
14709 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14710 DEFAULT_MB_RDMA_LOW_WATER_5705;
14711 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14712 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14713 tp->bufmgr_config.mbuf_high_water_jumbo =
14714 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000014715 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070014716 tp->bufmgr_config.mbuf_read_dma_low_water =
14717 DEFAULT_MB_RDMA_LOW_WATER_5705;
14718 tp->bufmgr_config.mbuf_mac_rx_low_water =
14719 DEFAULT_MB_MACRX_LOW_WATER_5705;
14720 tp->bufmgr_config.mbuf_high_water =
14721 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014722 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14723 tp->bufmgr_config.mbuf_mac_rx_low_water =
14724 DEFAULT_MB_MACRX_LOW_WATER_5906;
14725 tp->bufmgr_config.mbuf_high_water =
14726 DEFAULT_MB_HIGH_WATER_5906;
14727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014728
Michael Chanfdfec1722005-07-25 12:31:48 -070014729 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14730 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14731 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14732 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14733 tp->bufmgr_config.mbuf_high_water_jumbo =
14734 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14735 } else {
14736 tp->bufmgr_config.mbuf_read_dma_low_water =
14737 DEFAULT_MB_RDMA_LOW_WATER;
14738 tp->bufmgr_config.mbuf_mac_rx_low_water =
14739 DEFAULT_MB_MACRX_LOW_WATER;
14740 tp->bufmgr_config.mbuf_high_water =
14741 DEFAULT_MB_HIGH_WATER;
14742
14743 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14744 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14745 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14746 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14747 tp->bufmgr_config.mbuf_high_water_jumbo =
14748 DEFAULT_MB_HIGH_WATER_JUMBO;
14749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014750
14751 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14752 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14753}
14754
14755static char * __devinit tg3_phy_string(struct tg3 *tp)
14756{
Matt Carlson79eb6902010-02-17 15:17:03 +000014757 switch (tp->phy_id & TG3_PHY_ID_MASK) {
14758 case TG3_PHY_ID_BCM5400: return "5400";
14759 case TG3_PHY_ID_BCM5401: return "5401";
14760 case TG3_PHY_ID_BCM5411: return "5411";
14761 case TG3_PHY_ID_BCM5701: return "5701";
14762 case TG3_PHY_ID_BCM5703: return "5703";
14763 case TG3_PHY_ID_BCM5704: return "5704";
14764 case TG3_PHY_ID_BCM5705: return "5705";
14765 case TG3_PHY_ID_BCM5750: return "5750";
14766 case TG3_PHY_ID_BCM5752: return "5752";
14767 case TG3_PHY_ID_BCM5714: return "5714";
14768 case TG3_PHY_ID_BCM5780: return "5780";
14769 case TG3_PHY_ID_BCM5755: return "5755";
14770 case TG3_PHY_ID_BCM5787: return "5787";
14771 case TG3_PHY_ID_BCM5784: return "5784";
14772 case TG3_PHY_ID_BCM5756: return "5722/5756";
14773 case TG3_PHY_ID_BCM5906: return "5906";
14774 case TG3_PHY_ID_BCM5761: return "5761";
14775 case TG3_PHY_ID_BCM5718C: return "5718C";
14776 case TG3_PHY_ID_BCM5718S: return "5718S";
14777 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000014778 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000014779 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000014780 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014781 case 0: return "serdes";
14782 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014784}
14785
Michael Chanf9804dd2005-09-27 12:13:10 -070014786static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14787{
Joe Perches63c3a662011-04-26 08:12:10 +000014788 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014789 strcpy(str, "PCI Express");
14790 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000014791 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014792 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14793
14794 strcpy(str, "PCIX:");
14795
14796 if ((clock_ctrl == 7) ||
14797 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14798 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14799 strcat(str, "133MHz");
14800 else if (clock_ctrl == 0)
14801 strcat(str, "33MHz");
14802 else if (clock_ctrl == 2)
14803 strcat(str, "50MHz");
14804 else if (clock_ctrl == 4)
14805 strcat(str, "66MHz");
14806 else if (clock_ctrl == 6)
14807 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014808 } else {
14809 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000014810 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070014811 strcat(str, "66MHz");
14812 else
14813 strcat(str, "33MHz");
14814 }
Joe Perches63c3a662011-04-26 08:12:10 +000014815 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070014816 strcat(str, ":32-bit");
14817 else
14818 strcat(str, ":64-bit");
14819 return str;
14820}
14821
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014822static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014823{
14824 struct pci_dev *peer;
14825 unsigned int func, devnr = tp->pdev->devfn & ~7;
14826
14827 for (func = 0; func < 8; func++) {
14828 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14829 if (peer && peer != tp->pdev)
14830 break;
14831 pci_dev_put(peer);
14832 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014833 /* 5704 can be configured in single-port mode, set peer to
14834 * tp->pdev in that case.
14835 */
14836 if (!peer) {
14837 peer = tp->pdev;
14838 return peer;
14839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014840
14841 /*
14842 * We don't need to keep the refcount elevated; there's no way
14843 * to remove one half of this device without removing the other
14844 */
14845 pci_dev_put(peer);
14846
14847 return peer;
14848}
14849
David S. Miller15f98502005-05-18 22:49:26 -070014850static void __devinit tg3_init_coal(struct tg3 *tp)
14851{
14852 struct ethtool_coalesce *ec = &tp->coal;
14853
14854 memset(ec, 0, sizeof(*ec));
14855 ec->cmd = ETHTOOL_GCOALESCE;
14856 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14857 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14858 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14859 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14860 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14861 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
14862 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
14863 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
14864 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
14865
14866 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
14867 HOSTCC_MODE_CLRTICK_TXBD)) {
14868 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
14869 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
14870 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
14871 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
14872 }
Michael Chand244c892005-07-05 14:42:33 -070014873
Joe Perches63c3a662011-04-26 08:12:10 +000014874 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070014875 ec->rx_coalesce_usecs_irq = 0;
14876 ec->tx_coalesce_usecs_irq = 0;
14877 ec->stats_block_coalesce_usecs = 0;
14878 }
David S. Miller15f98502005-05-18 22:49:26 -070014879}
14880
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014881static const struct net_device_ops tg3_netdev_ops = {
14882 .ndo_open = tg3_open,
14883 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080014884 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000014885 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080014886 .ndo_validate_addr = eth_validate_addr,
14887 .ndo_set_multicast_list = tg3_set_rx_mode,
14888 .ndo_set_mac_address = tg3_set_mac_addr,
14889 .ndo_do_ioctl = tg3_ioctl,
14890 .ndo_tx_timeout = tg3_tx_timeout,
14891 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000014892 .ndo_fix_features = tg3_fix_features,
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000014893 .ndo_set_features = tg3_set_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080014894#ifdef CONFIG_NET_POLL_CONTROLLER
14895 .ndo_poll_controller = tg3_poll_controller,
14896#endif
14897};
14898
Linus Torvalds1da177e2005-04-16 15:20:36 -070014899static int __devinit tg3_init_one(struct pci_dev *pdev,
14900 const struct pci_device_id *ent)
14901{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014902 struct net_device *dev;
14903 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000014904 int i, err, pm_cap;
14905 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070014906 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080014907 u64 dma_mask, persist_dma_mask;
Michał Mirosławdc668912011-04-07 03:35:07 +000014908 u32 hw_features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014909
Joe Perches05dbe002010-02-17 19:44:19 +000014910 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014911
14912 err = pci_enable_device(pdev);
14913 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014914 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014915 return err;
14916 }
14917
Linus Torvalds1da177e2005-04-16 15:20:36 -070014918 err = pci_request_regions(pdev, DRV_MODULE_NAME);
14919 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014920 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014921 goto err_out_disable_pdev;
14922 }
14923
14924 pci_set_master(pdev);
14925
14926 /* Find power-management capability. */
14927 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
14928 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000014929 dev_err(&pdev->dev,
14930 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014931 err = -EIO;
14932 goto err_out_free_res;
14933 }
14934
Matt Carlsonfe5f5782009-09-01 13:09:39 +000014935 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014936 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000014937 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014938 err = -ENOMEM;
14939 goto err_out_free_res;
14940 }
14941
Linus Torvalds1da177e2005-04-16 15:20:36 -070014942 SET_NETDEV_DEV(dev, &pdev->dev);
14943
Linus Torvalds1da177e2005-04-16 15:20:36 -070014944 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014945
14946 tp = netdev_priv(dev);
14947 tp->pdev = pdev;
14948 tp->dev = dev;
14949 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014950 tp->rx_mode = TG3_DEF_RX_MODE;
14951 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070014952
Linus Torvalds1da177e2005-04-16 15:20:36 -070014953 if (tg3_debug > 0)
14954 tp->msg_enable = tg3_debug;
14955 else
14956 tp->msg_enable = TG3_DEF_MSG_ENABLE;
14957
14958 /* The word/byte swap controls here control register access byte
14959 * swapping. DMA data byte swapping is controlled in the GRC_MODE
14960 * setting below.
14961 */
14962 tp->misc_host_ctrl =
14963 MISC_HOST_CTRL_MASK_PCI_INT |
14964 MISC_HOST_CTRL_WORD_SWAP |
14965 MISC_HOST_CTRL_INDIR_ACCESS |
14966 MISC_HOST_CTRL_PCISTATE_RW;
14967
14968 /* The NONFRM (non-frame) byte/word swap controls take effect
14969 * on descriptor entries, anything which isn't packet data.
14970 *
14971 * The StrongARM chips on the board (one for tx, one for rx)
14972 * are running in big-endian mode.
14973 */
14974 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
14975 GRC_MODE_WSWAP_NONFRM_DATA);
14976#ifdef __BIG_ENDIAN
14977 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
14978#endif
14979 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014980 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000014981 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014982
Matt Carlsond5fe4882008-11-21 17:20:32 -080014983 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010014984 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000014985 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014986 err = -ENOMEM;
14987 goto err_out_free_dev;
14988 }
14989
Linus Torvalds1da177e2005-04-16 15:20:36 -070014990 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
14991 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014992
Linus Torvalds1da177e2005-04-16 15:20:36 -070014993 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014994 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000014995 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014996 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014997
14998 err = tg3_get_invariants(tp);
14999 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015000 dev_err(&pdev->dev,
15001 "Problem fetching invariants of chip, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015002 goto err_out_iounmap;
15003 }
15004
Michael Chan4a29cc22006-03-19 13:21:12 -080015005 /* The EPB bridge inside 5714, 5715, and 5780 and any
15006 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015007 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15008 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15009 * do DMA address check in tg3_start_xmit().
15010 */
Joe Perches63c3a662011-04-26 08:12:10 +000015011 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015012 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015013 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015014 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015015#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015016 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015017#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015018 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015019 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015020
15021 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015022 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015023 err = pci_set_dma_mask(pdev, dma_mask);
15024 if (!err) {
15025 dev->features |= NETIF_F_HIGHDMA;
15026 err = pci_set_consistent_dma_mask(pdev,
15027 persist_dma_mask);
15028 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015029 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15030 "DMA for consistent allocations\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015031 goto err_out_iounmap;
15032 }
15033 }
15034 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015035 if (err || dma_mask == DMA_BIT_MASK(32)) {
15036 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015037 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015038 dev_err(&pdev->dev,
15039 "No usable DMA configuration, aborting\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015040 goto err_out_iounmap;
15041 }
15042 }
15043
Michael Chanfdfec1722005-07-25 12:31:48 -070015044 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015045
Matt Carlson507399f2009-11-13 13:03:37 +000015046 /* Selectively allow TSO based on operating conditions */
Joe Perches63c3a662011-04-26 08:12:10 +000015047 if ((tg3_flag(tp, HW_TSO_1) ||
15048 tg3_flag(tp, HW_TSO_2) ||
15049 tg3_flag(tp, HW_TSO_3)) ||
15050 (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF)))
15051 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson507399f2009-11-13 13:03:37 +000015052 else {
Joe Perches63c3a662011-04-26 08:12:10 +000015053 tg3_flag_clear(tp, TSO_CAPABLE);
15054 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000015055 tp->fw_needed = NULL;
15056 }
15057
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015058 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
Matt Carlson9e9fd122009-01-19 16:57:45 -080015059 tp->fw_needed = FIRMWARE_TG3;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015060
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015061 /* TSO is on by default on chips that support hardware TSO.
15062 * Firmware TSO on older chips gives lower performance, so it
15063 * is off by default, but can be enabled using ethtool.
15064 */
Joe Perches63c3a662011-04-26 08:12:10 +000015065 if ((tg3_flag(tp, HW_TSO_1) ||
15066 tg3_flag(tp, HW_TSO_2) ||
15067 tg3_flag(tp, HW_TSO_3)) &&
Michał Mirosławdc668912011-04-07 03:35:07 +000015068 (dev->features & NETIF_F_IP_CSUM))
15069 hw_features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015070 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Michał Mirosławdc668912011-04-07 03:35:07 +000015071 if (dev->features & NETIF_F_IPV6_CSUM)
15072 hw_features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015073 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015074 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015075 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15076 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015077 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015078 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
15079 hw_features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015081
Michał Mirosławdc668912011-04-07 03:35:07 +000015082 dev->hw_features |= hw_features;
15083 dev->features |= hw_features;
15084 dev->vlan_features |= hw_features;
15085
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015086 /*
15087 * Add loopback capability only for a subset of devices that support
15088 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15089 * loopback for the remaining devices.
15090 */
15091 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15092 !tg3_flag(tp, CPMU_PRESENT))
15093 /* Add the loopback capability */
15094 dev->hw_features |= NETIF_F_LOOPBACK;
15095
Linus Torvalds1da177e2005-04-16 15:20:36 -070015096 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015097 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015098 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015099 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015100 tp->rx_pending = 63;
15101 }
15102
Linus Torvalds1da177e2005-04-16 15:20:36 -070015103 err = tg3_get_device_address(tp);
15104 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015105 dev_err(&pdev->dev,
15106 "Could not obtain valid ethernet address, aborting\n");
Matt Carlson026a6c22009-12-03 08:36:24 +000015107 goto err_out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015108 }
15109
Joe Perches63c3a662011-04-26 08:12:10 +000015110 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson63532392008-11-03 16:49:57 -080015111 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080015112 if (!tp->aperegs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015113 dev_err(&pdev->dev,
15114 "Cannot map APE registers, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015115 err = -ENOMEM;
Matt Carlson026a6c22009-12-03 08:36:24 +000015116 goto err_out_iounmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015117 }
15118
15119 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000015120
Joe Perches63c3a662011-04-26 08:12:10 +000015121 if (tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000015122 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015123 }
15124
Matt Carlsonc88864d2007-11-12 21:07:01 -080015125 /*
15126 * Reset chip in case UNDI or EFI driver did not shutdown
15127 * DMA self test will enable WDMAC and we'll see (spurious)
15128 * pending DMA on the PCI bus at that point.
15129 */
15130 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15131 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15132 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15133 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15134 }
15135
15136 err = tg3_test_dma(tp);
15137 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015138 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015139 goto err_out_apeunmap;
15140 }
15141
Matt Carlson78f90dc2009-11-13 13:03:42 +000015142 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15143 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15144 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015145 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015146 struct tg3_napi *tnapi = &tp->napi[i];
15147
15148 tnapi->tp = tp;
15149 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15150
15151 tnapi->int_mbox = intmbx;
15152 if (i < 4)
15153 intmbx += 0x8;
15154 else
15155 intmbx += 0x4;
15156
15157 tnapi->consmbox = rcvmbx;
15158 tnapi->prodmbox = sndmbx;
15159
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015160 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015161 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015162 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015163 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015164
Joe Perches63c3a662011-04-26 08:12:10 +000015165 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015166 break;
15167
15168 /*
15169 * If we support MSIX, we'll be using RSS. If we're using
15170 * RSS, the first vector only handles link interrupts and the
15171 * remaining vectors handle rx and tx interrupts. Reuse the
15172 * mailbox values for the next iteration. The values we setup
15173 * above are still useful for the single vectored mode.
15174 */
15175 if (!i)
15176 continue;
15177
15178 rcvmbx += 0x8;
15179
15180 if (sndmbx & 0x4)
15181 sndmbx -= 0x4;
15182 else
15183 sndmbx += 0xc;
15184 }
15185
Matt Carlsonc88864d2007-11-12 21:07:01 -080015186 tg3_init_coal(tp);
15187
Michael Chanc49a1562006-12-17 17:07:29 -080015188 pci_set_drvdata(pdev, dev);
15189
Linus Torvalds1da177e2005-04-16 15:20:36 -070015190 err = register_netdev(dev);
15191 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015192 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015193 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015194 }
15195
Joe Perches05dbe002010-02-17 19:44:19 +000015196 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15197 tp->board_part_number,
15198 tp->pci_chip_rev_id,
15199 tg3_bus_string(tp, str),
15200 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015201
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015202 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015203 struct phy_device *phydev;
15204 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015205 netdev_info(dev,
15206 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015207 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015208 } else {
15209 char *ethtype;
15210
15211 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15212 ethtype = "10/100Base-TX";
15213 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15214 ethtype = "1000Base-SX";
15215 else
15216 ethtype = "10/100/1000Base-T";
15217
Matt Carlson5129c3a2010-04-05 10:19:23 +000015218 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015219 "(WireSpeed[%d], EEE[%d])\n",
15220 tg3_phy_string(tp), ethtype,
15221 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15222 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015223 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015224
Joe Perches05dbe002010-02-17 19:44:19 +000015225 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015226 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015227 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015228 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015229 tg3_flag(tp, ENABLE_ASF) != 0,
15230 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015231 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15232 tp->dma_rwctrl,
15233 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15234 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015235
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015236 pci_save_state(pdev);
15237
Linus Torvalds1da177e2005-04-16 15:20:36 -070015238 return 0;
15239
Matt Carlson0d3031d2007-10-10 18:02:43 -070015240err_out_apeunmap:
15241 if (tp->aperegs) {
15242 iounmap(tp->aperegs);
15243 tp->aperegs = NULL;
15244 }
15245
Linus Torvalds1da177e2005-04-16 15:20:36 -070015246err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015247 if (tp->regs) {
15248 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015249 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015251
15252err_out_free_dev:
15253 free_netdev(dev);
15254
15255err_out_free_res:
15256 pci_release_regions(pdev);
15257
15258err_out_disable_pdev:
15259 pci_disable_device(pdev);
15260 pci_set_drvdata(pdev, NULL);
15261 return err;
15262}
15263
15264static void __devexit tg3_remove_one(struct pci_dev *pdev)
15265{
15266 struct net_device *dev = pci_get_drvdata(pdev);
15267
15268 if (dev) {
15269 struct tg3 *tp = netdev_priv(dev);
15270
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015271 if (tp->fw)
15272 release_firmware(tp->fw);
15273
Tejun Heo23f333a2010-12-12 16:45:14 +010015274 cancel_work_sync(&tp->reset_task);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015275
Joe Perches63c3a662011-04-26 08:12:10 +000015276 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015277 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015278 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015279 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015280
Linus Torvalds1da177e2005-04-16 15:20:36 -070015281 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015282 if (tp->aperegs) {
15283 iounmap(tp->aperegs);
15284 tp->aperegs = NULL;
15285 }
Michael Chan68929142005-08-09 20:17:14 -070015286 if (tp->regs) {
15287 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015288 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015290 free_netdev(dev);
15291 pci_release_regions(pdev);
15292 pci_disable_device(pdev);
15293 pci_set_drvdata(pdev, NULL);
15294 }
15295}
15296
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015297#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015298static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015299{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015300 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015301 struct net_device *dev = pci_get_drvdata(pdev);
15302 struct tg3 *tp = netdev_priv(dev);
15303 int err;
15304
15305 if (!netif_running(dev))
15306 return 0;
15307
Tejun Heo23f333a2010-12-12 16:45:14 +010015308 flush_work_sync(&tp->reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015309 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015310 tg3_netif_stop(tp);
15311
15312 del_timer_sync(&tp->timer);
15313
David S. Millerf47c11e2005-06-24 20:18:35 -070015314 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015315 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015316 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015317
15318 netif_device_detach(dev);
15319
David S. Millerf47c11e2005-06-24 20:18:35 -070015320 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015321 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015322 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015323 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015324
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015325 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015326 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015327 int err2;
15328
David S. Millerf47c11e2005-06-24 20:18:35 -070015329 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015330
Joe Perches63c3a662011-04-26 08:12:10 +000015331 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015332 err2 = tg3_restart_hw(tp, 1);
15333 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015335
15336 tp->timer.expires = jiffies + tp->timer_offset;
15337 add_timer(&tp->timer);
15338
15339 netif_device_attach(dev);
15340 tg3_netif_start(tp);
15341
Michael Chanb9ec6c12006-07-25 16:37:27 -070015342out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015343 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015344
15345 if (!err2)
15346 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015347 }
15348
15349 return err;
15350}
15351
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015352static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015353{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015354 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015355 struct net_device *dev = pci_get_drvdata(pdev);
15356 struct tg3 *tp = netdev_priv(dev);
15357 int err;
15358
15359 if (!netif_running(dev))
15360 return 0;
15361
Linus Torvalds1da177e2005-04-16 15:20:36 -070015362 netif_device_attach(dev);
15363
David S. Millerf47c11e2005-06-24 20:18:35 -070015364 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015365
Joe Perches63c3a662011-04-26 08:12:10 +000015366 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015367 err = tg3_restart_hw(tp, 1);
15368 if (err)
15369 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015370
15371 tp->timer.expires = jiffies + tp->timer_offset;
15372 add_timer(&tp->timer);
15373
Linus Torvalds1da177e2005-04-16 15:20:36 -070015374 tg3_netif_start(tp);
15375
Michael Chanb9ec6c12006-07-25 16:37:27 -070015376out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015377 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015378
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015379 if (!err)
15380 tg3_phy_start(tp);
15381
Michael Chanb9ec6c12006-07-25 16:37:27 -070015382 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015383}
15384
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015385static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015386#define TG3_PM_OPS (&tg3_pm_ops)
15387
15388#else
15389
15390#define TG3_PM_OPS NULL
15391
15392#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015393
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015394/**
15395 * tg3_io_error_detected - called when PCI error is detected
15396 * @pdev: Pointer to PCI device
15397 * @state: The current pci connection state
15398 *
15399 * This function is called after a PCI bus error affecting
15400 * this device has been detected.
15401 */
15402static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15403 pci_channel_state_t state)
15404{
15405 struct net_device *netdev = pci_get_drvdata(pdev);
15406 struct tg3 *tp = netdev_priv(netdev);
15407 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15408
15409 netdev_info(netdev, "PCI I/O error detected\n");
15410
15411 rtnl_lock();
15412
15413 if (!netif_running(netdev))
15414 goto done;
15415
15416 tg3_phy_stop(tp);
15417
15418 tg3_netif_stop(tp);
15419
15420 del_timer_sync(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +000015421 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015422
15423 /* Want to make sure that the reset task doesn't run */
15424 cancel_work_sync(&tp->reset_task);
Joe Perches63c3a662011-04-26 08:12:10 +000015425 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
15426 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015427
15428 netif_device_detach(netdev);
15429
15430 /* Clean up software state, even if MMIO is blocked */
15431 tg3_full_lock(tp, 0);
15432 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15433 tg3_full_unlock(tp);
15434
15435done:
15436 if (state == pci_channel_io_perm_failure)
15437 err = PCI_ERS_RESULT_DISCONNECT;
15438 else
15439 pci_disable_device(pdev);
15440
15441 rtnl_unlock();
15442
15443 return err;
15444}
15445
15446/**
15447 * tg3_io_slot_reset - called after the pci bus has been reset.
15448 * @pdev: Pointer to PCI device
15449 *
15450 * Restart the card from scratch, as if from a cold-boot.
15451 * At this point, the card has exprienced a hard reset,
15452 * followed by fixups by BIOS, and has its config space
15453 * set up identically to what it was at cold boot.
15454 */
15455static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15456{
15457 struct net_device *netdev = pci_get_drvdata(pdev);
15458 struct tg3 *tp = netdev_priv(netdev);
15459 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15460 int err;
15461
15462 rtnl_lock();
15463
15464 if (pci_enable_device(pdev)) {
15465 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
15466 goto done;
15467 }
15468
15469 pci_set_master(pdev);
15470 pci_restore_state(pdev);
15471 pci_save_state(pdev);
15472
15473 if (!netif_running(netdev)) {
15474 rc = PCI_ERS_RESULT_RECOVERED;
15475 goto done;
15476 }
15477
15478 err = tg3_power_up(tp);
15479 if (err) {
15480 netdev_err(netdev, "Failed to restore register access.\n");
15481 goto done;
15482 }
15483
15484 rc = PCI_ERS_RESULT_RECOVERED;
15485
15486done:
15487 rtnl_unlock();
15488
15489 return rc;
15490}
15491
15492/**
15493 * tg3_io_resume - called when traffic can start flowing again.
15494 * @pdev: Pointer to PCI device
15495 *
15496 * This callback is called when the error recovery driver tells
15497 * us that its OK to resume normal operation.
15498 */
15499static void tg3_io_resume(struct pci_dev *pdev)
15500{
15501 struct net_device *netdev = pci_get_drvdata(pdev);
15502 struct tg3 *tp = netdev_priv(netdev);
15503 int err;
15504
15505 rtnl_lock();
15506
15507 if (!netif_running(netdev))
15508 goto done;
15509
15510 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000015511 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015512 err = tg3_restart_hw(tp, 1);
15513 tg3_full_unlock(tp);
15514 if (err) {
15515 netdev_err(netdev, "Cannot restart hardware after reset.\n");
15516 goto done;
15517 }
15518
15519 netif_device_attach(netdev);
15520
15521 tp->timer.expires = jiffies + tp->timer_offset;
15522 add_timer(&tp->timer);
15523
15524 tg3_netif_start(tp);
15525
15526 tg3_phy_start(tp);
15527
15528done:
15529 rtnl_unlock();
15530}
15531
15532static struct pci_error_handlers tg3_err_handler = {
15533 .error_detected = tg3_io_error_detected,
15534 .slot_reset = tg3_io_slot_reset,
15535 .resume = tg3_io_resume
15536};
15537
Linus Torvalds1da177e2005-04-16 15:20:36 -070015538static struct pci_driver tg3_driver = {
15539 .name = DRV_MODULE_NAME,
15540 .id_table = tg3_pci_tbl,
15541 .probe = tg3_init_one,
15542 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015543 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015544 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015545};
15546
15547static int __init tg3_init(void)
15548{
Jeff Garzik29917622006-08-19 17:48:59 -040015549 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015550}
15551
15552static void __exit tg3_cleanup(void)
15553{
15554 pci_unregister_driver(&tg3_driver);
15555}
15556
15557module_init(tg3_init);
15558module_exit(tg3_cleanup);