blob: 4c441682a2913bdbadb185cb4e7799bc5f55548d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * tg3.c: Broadcom Tigon3 ethernet driver.
3 *
4 * Copyright (C) 2001, 2002, 2003, 2004 David S. Miller (davem@redhat.com)
5 * Copyright (C) 2001, 2002, 2003 Jeff Garzik (jgarzik@pobox.com)
6 * Copyright (C) 2004 Sun Microsystems Inc.
Matt Carlsonb86fb2c2011-01-25 15:58:57 +00007 * Copyright (C) 2005-2011 Broadcom Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Firmware is:
Michael Chan49cabf42005-06-06 15:15:17 -070010 * Derived from proprietary unpublished source code,
11 * Copyright (C) 2000-2003 Broadcom Corporation.
12 *
13 * Permission is hereby granted for the distribution of this firmware
14 * data in hexadecimal or equivalent format, provided this copyright
15 * notice is accompanying it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <linux/module.h>
20#include <linux/moduleparam.h>
Matt Carlson6867c842010-07-11 09:31:44 +000021#include <linux/stringify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/types.h>
24#include <linux/compiler.h>
25#include <linux/slab.h>
26#include <linux/delay.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020027#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/init.h>
29#include <linux/ioport.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/etherdevice.h>
33#include <linux/skbuff.h>
34#include <linux/ethtool.h>
Matt Carlson3110f5f52010-12-06 08:28:50 +000035#include <linux/mdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070037#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070038#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/if_vlan.h>
40#include <linux/ip.h>
41#include <linux/tcp.h>
42#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070043#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020044#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080045#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030048#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <asm/system.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000051#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000053#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
David S. Miller49b6e95f2007-03-29 01:38:42 -070055#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070057#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
Matt Carlson63532392008-11-03 16:49:57 -080060#define BAR_0 0
61#define BAR_2 2
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include "tg3.h"
64
Joe Perches63c3a662011-04-26 08:12:10 +000065/* Functions & macros to verify TG3_FLAGS types */
66
67static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
68{
69 return test_bit(flag, bits);
70}
71
72static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
73{
74 set_bit(flag, bits);
75}
76
77static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
78{
79 clear_bit(flag, bits);
80}
81
82#define tg3_flag(tp, flag) \
83 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
84#define tg3_flag_set(tp, flag) \
85 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
86#define tg3_flag_clear(tp, flag) \
87 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000090#define TG3_MAJ_NUM 3
Matt Carlson64cad2a2011-04-25 12:42:50 +000091#define TG3_MIN_NUM 118
Matt Carlson6867c842010-07-11 09:31:44 +000092#define DRV_MODULE_VERSION \
93 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Matt Carlson64cad2a2011-04-25 12:42:50 +000094#define DRV_MODULE_RELDATE "April 22, 2011"
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#define TG3_DEF_MAC_MODE 0
97#define TG3_DEF_RX_MODE 0
98#define TG3_DEF_TX_MODE 0
99#define TG3_DEF_MSG_ENABLE \
100 (NETIF_MSG_DRV | \
101 NETIF_MSG_PROBE | \
102 NETIF_MSG_LINK | \
103 NETIF_MSG_TIMER | \
104 NETIF_MSG_IFDOWN | \
105 NETIF_MSG_IFUP | \
106 NETIF_MSG_RX_ERR | \
107 NETIF_MSG_TX_ERR)
108
109/* length of time before we decide the hardware is borked,
110 * and dev->tx_timeout() should be called to fix the problem
111 */
Joe Perches63c3a662011-04-26 08:12:10 +0000112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define TG3_TX_TIMEOUT (5 * HZ)
114
115/* hardware minimum and maximum for a single frame's data payload */
116#define TG3_MIN_MTU 60
117#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000118 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/* These numbers seem to be hard coded in the NIC firmware somehow.
121 * You can't change the ring sizes, but you can change where you place
122 * them in the NIC onboard memory.
123 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000124#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000125 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000126 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000128#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000129 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000130 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#define TG3_DEF_RX_JUMBO_RING_PENDING 100
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000132#define TG3_RSS_INDIR_TBL_SIZE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134/* Do not place this n-ring entries value into the tp struct itself,
135 * we really want to expose these constants to GCC so that modulo et
136 * al. operations are done with shifts and masks instead of with
137 * hw multiply/modulo instructions. Another solution would be to
138 * replace things like '% foo' with '& (foo - 1)'.
139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141#define TG3_TX_RING_SIZE 512
142#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
143
Matt Carlson2c49a442010-09-30 10:34:35 +0000144#define TG3_RX_STD_RING_BYTES(tp) \
145 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
146#define TG3_RX_JMB_RING_BYTES(tp) \
147 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
148#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000149 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
151 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
153
Matt Carlson287be122009-08-28 13:58:46 +0000154#define TG3_DMA_BYTE_ENAB 64
155
156#define TG3_RX_STD_DMA_SZ 1536
157#define TG3_RX_JMB_DMA_SZ 9046
158
159#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
160
161#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
162#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Matt Carlson2c49a442010-09-30 10:34:35 +0000164#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
165 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000166
Matt Carlson2c49a442010-09-30 10:34:35 +0000167#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
168 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000169
Matt Carlsond2757fc2010-04-12 06:58:27 +0000170/* Due to a hardware bug, the 5701 can only DMA to memory addresses
171 * that are at least dword aligned when used in PCIX mode. The driver
172 * works around this bug by double copying the packet. This workaround
173 * is built into the normal double copy length check for efficiency.
174 *
175 * However, the double copy is only necessary on those architectures
176 * where unaligned memory accesses are inefficient. For those architectures
177 * where unaligned memory accesses incur little penalty, we can reintegrate
178 * the 5701 in the normal rx path. Doing so saves a device structure
179 * dereference by hardcoding the double copy threshold in place.
180 */
181#define TG3_RX_COPY_THRESHOLD 256
182#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
183 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
184#else
185 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
186#endif
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000189#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Matt Carlsonad829262008-11-21 17:16:16 -0800191#define TG3_RAW_IP_ALIGN 2
192
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000193#define TG3_FW_UPDATE_TIMEOUT_SEC 5
194
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800195#define FIRMWARE_TG3 "tigon/tg3.bin"
196#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
197#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000200 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
203MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
204MODULE_LICENSE("GPL");
205MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800206MODULE_FIRMWARE(FIRMWARE_TG3);
207MODULE_FIRMWARE(FIRMWARE_TG3TSO);
208MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
211module_param(tg3_debug, int, 0);
212MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
213
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000214static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700215 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
216 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
217 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
218 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
219 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
220 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
221 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
222 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
223 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
224 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
225 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
226 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
227 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700288 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
289 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
290 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
291 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
292 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
293 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
294 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
295 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296};
297
298MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
299
Andreas Mohr50da8592006-08-14 23:54:30 -0700300static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000302} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 { "rx_octets" },
304 { "rx_fragments" },
305 { "rx_ucast_packets" },
306 { "rx_mcast_packets" },
307 { "rx_bcast_packets" },
308 { "rx_fcs_errors" },
309 { "rx_align_errors" },
310 { "rx_xon_pause_rcvd" },
311 { "rx_xoff_pause_rcvd" },
312 { "rx_mac_ctrl_rcvd" },
313 { "rx_xoff_entered" },
314 { "rx_frame_too_long_errors" },
315 { "rx_jabbers" },
316 { "rx_undersize_packets" },
317 { "rx_in_length_errors" },
318 { "rx_out_length_errors" },
319 { "rx_64_or_less_octet_packets" },
320 { "rx_65_to_127_octet_packets" },
321 { "rx_128_to_255_octet_packets" },
322 { "rx_256_to_511_octet_packets" },
323 { "rx_512_to_1023_octet_packets" },
324 { "rx_1024_to_1522_octet_packets" },
325 { "rx_1523_to_2047_octet_packets" },
326 { "rx_2048_to_4095_octet_packets" },
327 { "rx_4096_to_8191_octet_packets" },
328 { "rx_8192_to_9022_octet_packets" },
329
330 { "tx_octets" },
331 { "tx_collisions" },
332
333 { "tx_xon_sent" },
334 { "tx_xoff_sent" },
335 { "tx_flow_control" },
336 { "tx_mac_errors" },
337 { "tx_single_collisions" },
338 { "tx_mult_collisions" },
339 { "tx_deferred" },
340 { "tx_excessive_collisions" },
341 { "tx_late_collisions" },
342 { "tx_collide_2times" },
343 { "tx_collide_3times" },
344 { "tx_collide_4times" },
345 { "tx_collide_5times" },
346 { "tx_collide_6times" },
347 { "tx_collide_7times" },
348 { "tx_collide_8times" },
349 { "tx_collide_9times" },
350 { "tx_collide_10times" },
351 { "tx_collide_11times" },
352 { "tx_collide_12times" },
353 { "tx_collide_13times" },
354 { "tx_collide_14times" },
355 { "tx_collide_15times" },
356 { "tx_ucast_packets" },
357 { "tx_mcast_packets" },
358 { "tx_bcast_packets" },
359 { "tx_carrier_sense_errors" },
360 { "tx_discards" },
361 { "tx_errors" },
362
363 { "dma_writeq_full" },
364 { "dma_write_prioq_full" },
365 { "rxbds_empty" },
366 { "rx_discards" },
Matt Carlson4d958472011-04-20 07:57:35 +0000367 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 { "rx_errors" },
369 { "rx_threshold_hit" },
370
371 { "dma_readq_full" },
372 { "dma_read_prioq_full" },
373 { "tx_comp_queue_full" },
374
375 { "ring_set_send_prod_index" },
376 { "ring_status_update" },
377 { "nic_irqs" },
378 { "nic_avoided_irqs" },
379 { "nic_tx_threshold_hit" }
380};
381
Matt Carlson48fa55a2011-04-13 11:05:06 +0000382#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
383
384
Andreas Mohr50da8592006-08-14 23:54:30 -0700385static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700386 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000387} ethtool_test_keys[] = {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700388 { "nvram test (online) " },
389 { "link test (online) " },
390 { "register test (offline)" },
391 { "memory test (offline)" },
392 { "loopback test (offline)" },
393 { "interrupt test (offline)" },
394};
395
Matt Carlson48fa55a2011-04-13 11:05:06 +0000396#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
397
398
Michael Chanb401e9e2005-12-19 16:27:04 -0800399static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
400{
401 writel(val, tp->regs + off);
402}
403
404static u32 tg3_read32(struct tg3 *tp, u32 off)
405{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000406 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800407}
408
Matt Carlson0d3031d2007-10-10 18:02:43 -0700409static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
410{
411 writel(val, tp->aperegs + off);
412}
413
414static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
415{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000416 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
420{
Michael Chan68929142005-08-09 20:17:14 -0700421 unsigned long flags;
422
423 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700424 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
425 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700426 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700427}
428
429static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
430{
431 writel(val, tp->regs + off);
432 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Michael Chan68929142005-08-09 20:17:14 -0700435static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
436{
437 unsigned long flags;
438 u32 val;
439
440 spin_lock_irqsave(&tp->indirect_lock, flags);
441 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
442 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
443 spin_unlock_irqrestore(&tp->indirect_lock, flags);
444 return val;
445}
446
447static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
448{
449 unsigned long flags;
450
451 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
452 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
453 TG3_64BIT_REG_LOW, val);
454 return;
455 }
Matt Carlson66711e62009-11-13 13:03:49 +0000456 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700457 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
458 TG3_64BIT_REG_LOW, val);
459 return;
460 }
461
462 spin_lock_irqsave(&tp->indirect_lock, flags);
463 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
464 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
465 spin_unlock_irqrestore(&tp->indirect_lock, flags);
466
467 /* In indirect mode when disabling interrupts, we also need
468 * to clear the interrupt bit in the GRC local ctrl register.
469 */
470 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
471 (val == 0x1)) {
472 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
473 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
474 }
475}
476
477static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
478{
479 unsigned long flags;
480 u32 val;
481
482 spin_lock_irqsave(&tp->indirect_lock, flags);
483 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
484 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
485 spin_unlock_irqrestore(&tp->indirect_lock, flags);
486 return val;
487}
488
Michael Chanb401e9e2005-12-19 16:27:04 -0800489/* usec_wait specifies the wait time in usec when writing to certain registers
490 * where it is unsafe to read back the register without some delay.
491 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
492 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
493 */
494static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Joe Perches63c3a662011-04-26 08:12:10 +0000496 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800497 /* Non-posted methods */
498 tp->write32(tp, off, val);
499 else {
500 /* Posted method */
501 tg3_write32(tp, off, val);
502 if (usec_wait)
503 udelay(usec_wait);
504 tp->read32(tp, off);
505 }
506 /* Wait again after the read for the posted method to guarantee that
507 * the wait time is met.
508 */
509 if (usec_wait)
510 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Michael Chan09ee9292005-08-09 20:17:00 -0700513static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
514{
515 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000516 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700517 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700518}
519
Michael Chan20094932005-08-09 20:16:32 -0700520static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 void __iomem *mbox = tp->regs + off;
523 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000524 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000526 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 readl(mbox);
528}
529
Michael Chanb5d37722006-09-27 16:06:21 -0700530static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
531{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000532 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700533}
534
535static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
536{
537 writel(val, tp->regs + off + GRCMBOX_BASE);
538}
539
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000540#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700541#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000542#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
543#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
544#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700545
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000546#define tw32(reg, val) tp->write32(tp, reg, val)
547#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
548#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
549#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
552{
Michael Chan68929142005-08-09 20:17:14 -0700553 unsigned long flags;
554
Michael Chanb5d37722006-09-27 16:06:21 -0700555 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
556 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
557 return;
558
Michael Chan68929142005-08-09 20:17:14 -0700559 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000560 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700561 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
562 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Michael Chanbbadf502006-04-06 21:46:34 -0700564 /* Always leave this as zero. */
565 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
566 } else {
567 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
568 tw32_f(TG3PCI_MEM_WIN_DATA, val);
569
570 /* Always leave this as zero. */
571 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
572 }
Michael Chan68929142005-08-09 20:17:14 -0700573 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
576static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
577{
Michael Chan68929142005-08-09 20:17:14 -0700578 unsigned long flags;
579
Michael Chanb5d37722006-09-27 16:06:21 -0700580 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) &&
581 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
582 *val = 0;
583 return;
584 }
585
Michael Chan68929142005-08-09 20:17:14 -0700586 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000587 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700588 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
589 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Michael Chanbbadf502006-04-06 21:46:34 -0700591 /* Always leave this as zero. */
592 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
593 } else {
594 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
595 *val = tr32(TG3PCI_MEM_WIN_DATA);
596
597 /* Always leave this as zero. */
598 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
599 }
Michael Chan68929142005-08-09 20:17:14 -0700600 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Matt Carlson0d3031d2007-10-10 18:02:43 -0700603static void tg3_ape_lock_init(struct tg3 *tp)
604{
605 int i;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000606 u32 regbase;
607
608 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
609 regbase = TG3_APE_LOCK_GRANT;
610 else
611 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700612
613 /* Make sure the driver hasn't any stale locks. */
614 for (i = 0; i < 8; i++)
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000615 tg3_ape_write32(tp, regbase + 4 * i, APE_LOCK_GRANT_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700616}
617
618static int tg3_ape_lock(struct tg3 *tp, int locknum)
619{
620 int i, off;
621 int ret = 0;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000622 u32 status, req, gnt;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700623
Joe Perches63c3a662011-04-26 08:12:10 +0000624 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700625 return 0;
626
627 switch (locknum) {
Matt Carlson33f401a2010-04-05 10:19:27 +0000628 case TG3_APE_LOCK_GRC:
629 case TG3_APE_LOCK_MEM:
630 break;
631 default:
632 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700633 }
634
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000635 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
636 req = TG3_APE_LOCK_REQ;
637 gnt = TG3_APE_LOCK_GRANT;
638 } else {
639 req = TG3_APE_PER_LOCK_REQ;
640 gnt = TG3_APE_PER_LOCK_GRANT;
641 }
642
Matt Carlson0d3031d2007-10-10 18:02:43 -0700643 off = 4 * locknum;
644
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000645 tg3_ape_write32(tp, req + off, APE_LOCK_REQ_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700646
647 /* Wait for up to 1 millisecond to acquire lock. */
648 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000649 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700650 if (status == APE_LOCK_GRANT_DRIVER)
651 break;
652 udelay(10);
653 }
654
655 if (status != APE_LOCK_GRANT_DRIVER) {
656 /* Revoke the lock request. */
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000657 tg3_ape_write32(tp, gnt + off,
Matt Carlson0d3031d2007-10-10 18:02:43 -0700658 APE_LOCK_GRANT_DRIVER);
659
660 ret = -EBUSY;
661 }
662
663 return ret;
664}
665
666static void tg3_ape_unlock(struct tg3 *tp, int locknum)
667{
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000668 u32 gnt;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700669
Joe Perches63c3a662011-04-26 08:12:10 +0000670 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700671 return;
672
673 switch (locknum) {
Matt Carlson33f401a2010-04-05 10:19:27 +0000674 case TG3_APE_LOCK_GRC:
675 case TG3_APE_LOCK_MEM:
676 break;
677 default:
678 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700679 }
680
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000681 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
682 gnt = TG3_APE_LOCK_GRANT;
683 else
684 gnt = TG3_APE_PER_LOCK_GRANT;
685
686 tg3_ape_write32(tp, gnt + 4 * locknum, APE_LOCK_GRANT_DRIVER);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689static void tg3_disable_ints(struct tg3 *tp)
690{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000691 int i;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 tw32(TG3PCI_MISC_HOST_CTRL,
694 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000695 for (i = 0; i < tp->irq_max; i++)
696 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699static void tg3_enable_ints(struct tg3 *tp)
700{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000701 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000702
Michael Chanbbe832c2005-06-24 20:20:04 -0700703 tp->irq_sync = 0;
704 wmb();
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 tw32(TG3PCI_MISC_HOST_CTRL,
707 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000708
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000709 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000710 for (i = 0; i < tp->irq_cnt; i++) {
711 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000712
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000713 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000714 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000715 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
716
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000717 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000718 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000719
720 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000721 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000722 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
723 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
724 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000725 tw32(HOSTCC_MODE, tp->coal_now);
726
727 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Matt Carlson17375d22009-08-28 14:02:18 +0000730static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700731{
Matt Carlson17375d22009-08-28 14:02:18 +0000732 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000733 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700734 unsigned int work_exists = 0;
735
736 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000737 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700738 if (sblk->status & SD_STATUS_LINK_CHG)
739 work_exists = 1;
740 }
741 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000742 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000743 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700744 work_exists = 1;
745
746 return work_exists;
747}
748
Matt Carlson17375d22009-08-28 14:02:18 +0000749/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700750 * similar to tg3_enable_ints, but it accurately determines whether there
751 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400752 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 */
Matt Carlson17375d22009-08-28 14:02:18 +0000754static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Matt Carlson17375d22009-08-28 14:02:18 +0000756 struct tg3 *tp = tnapi->tp;
757
Matt Carlson898a56f2009-08-28 14:02:40 +0000758 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 mmiowb();
760
David S. Millerfac9b832005-05-18 22:46:34 -0700761 /* When doing tagged status, this work check is unnecessary.
762 * The last_tag we write above tells the chip which piece of
763 * work we've completed.
764 */
Joe Perches63c3a662011-04-26 08:12:10 +0000765 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700766 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000767 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770static void tg3_switch_clocks(struct tg3 *tp)
771{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000772 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 u32 orig_clock_ctrl;
774
Joe Perches63c3a662011-04-26 08:12:10 +0000775 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700776 return;
777
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000778 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 orig_clock_ctrl = clock_ctrl;
781 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
782 CLOCK_CTRL_CLKRUN_OENABLE |
783 0x1f);
784 tp->pci_clock_ctrl = clock_ctrl;
785
Joe Perches63c3a662011-04-26 08:12:10 +0000786 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800788 tw32_wait_f(TG3PCI_CLOCK_CTRL,
789 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800792 tw32_wait_f(TG3PCI_CLOCK_CTRL,
793 clock_ctrl |
794 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
795 40);
796 tw32_wait_f(TG3PCI_CLOCK_CTRL,
797 clock_ctrl | (CLOCK_CTRL_ALTCLK),
798 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800800 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803#define PHY_BUSY_LOOPS 5000
804
805static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
806{
807 u32 frame_val;
808 unsigned int loops;
809 int ret;
810
811 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
812 tw32_f(MAC_MI_MODE,
813 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
814 udelay(80);
815 }
816
817 *val = 0x0;
818
Matt Carlson882e9792009-09-01 13:21:36 +0000819 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 MI_COM_PHY_ADDR_MASK);
821 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
822 MI_COM_REG_ADDR_MASK);
823 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 tw32_f(MAC_MI_COM, frame_val);
826
827 loops = PHY_BUSY_LOOPS;
828 while (loops != 0) {
829 udelay(10);
830 frame_val = tr32(MAC_MI_COM);
831
832 if ((frame_val & MI_COM_BUSY) == 0) {
833 udelay(5);
834 frame_val = tr32(MAC_MI_COM);
835 break;
836 }
837 loops -= 1;
838 }
839
840 ret = -EBUSY;
841 if (loops != 0) {
842 *val = frame_val & MI_COM_DATA_MASK;
843 ret = 0;
844 }
845
846 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
847 tw32_f(MAC_MI_MODE, tp->mi_mode);
848 udelay(80);
849 }
850
851 return ret;
852}
853
854static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
855{
856 u32 frame_val;
857 unsigned int loops;
858 int ret;
859
Matt Carlsonf07e9af2010-08-02 11:26:07 +0000860 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Michael Chanb5d37722006-09-27 16:06:21 -0700861 (reg == MII_TG3_CTRL || reg == MII_TG3_AUX_CTRL))
862 return 0;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
865 tw32_f(MAC_MI_MODE,
866 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
867 udelay(80);
868 }
869
Matt Carlson882e9792009-09-01 13:21:36 +0000870 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 MI_COM_PHY_ADDR_MASK);
872 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
873 MI_COM_REG_ADDR_MASK);
874 frame_val |= (val & MI_COM_DATA_MASK);
875 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 tw32_f(MAC_MI_COM, frame_val);
878
879 loops = PHY_BUSY_LOOPS;
880 while (loops != 0) {
881 udelay(10);
882 frame_val = tr32(MAC_MI_COM);
883 if ((frame_val & MI_COM_BUSY) == 0) {
884 udelay(5);
885 frame_val = tr32(MAC_MI_COM);
886 break;
887 }
888 loops -= 1;
889 }
890
891 ret = -EBUSY;
892 if (loops != 0)
893 ret = 0;
894
895 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
896 tw32_f(MAC_MI_MODE, tp->mi_mode);
897 udelay(80);
898 }
899
900 return ret;
901}
902
Matt Carlsonb0988c12011-04-20 07:57:39 +0000903static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
904{
905 int err;
906
907 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
908 if (err)
909 goto done;
910
911 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
912 if (err)
913 goto done;
914
915 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
916 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
917 if (err)
918 goto done;
919
920 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
921
922done:
923 return err;
924}
925
926static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
927{
928 int err;
929
930 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
931 if (err)
932 goto done;
933
934 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
935 if (err)
936 goto done;
937
938 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
939 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
940 if (err)
941 goto done;
942
943 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
944
945done:
946 return err;
947}
948
949static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
950{
951 int err;
952
953 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
954 if (!err)
955 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
956
957 return err;
958}
959
960static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
961{
962 int err;
963
964 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
965 if (!err)
966 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
967
968 return err;
969}
970
Matt Carlson15ee95c2011-04-20 07:57:40 +0000971static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
972{
973 int err;
974
975 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
976 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
977 MII_TG3_AUXCTL_SHDWSEL_MISC);
978 if (!err)
979 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
980
981 return err;
982}
983
Matt Carlsonb4bd2922011-04-20 07:57:41 +0000984static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
985{
986 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
987 set |= MII_TG3_AUXCTL_MISC_WREN;
988
989 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
990}
991
Matt Carlson1d36ba42011-04-20 07:57:42 +0000992#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
993 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
994 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
995 MII_TG3_AUXCTL_ACTL_TX_6DB)
996
997#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
998 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
999 MII_TG3_AUXCTL_ACTL_TX_6DB);
1000
Matt Carlson95e28692008-05-25 23:44:14 -07001001static int tg3_bmcr_reset(struct tg3 *tp)
1002{
1003 u32 phy_control;
1004 int limit, err;
1005
1006 /* OK, reset it, and poll the BMCR_RESET bit until it
1007 * clears or we time out.
1008 */
1009 phy_control = BMCR_RESET;
1010 err = tg3_writephy(tp, MII_BMCR, phy_control);
1011 if (err != 0)
1012 return -EBUSY;
1013
1014 limit = 5000;
1015 while (limit--) {
1016 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1017 if (err != 0)
1018 return -EBUSY;
1019
1020 if ((phy_control & BMCR_RESET) == 0) {
1021 udelay(40);
1022 break;
1023 }
1024 udelay(10);
1025 }
Roel Kluind4675b52009-02-12 16:33:27 -08001026 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001027 return -EBUSY;
1028
1029 return 0;
1030}
1031
Matt Carlson158d7ab2008-05-29 01:37:54 -07001032static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1033{
Francois Romieu3d165432009-01-19 16:56:50 -08001034 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001035 u32 val;
1036
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001037 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001038
1039 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001040 val = -EIO;
1041
1042 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001043
1044 return val;
1045}
1046
1047static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1048{
Francois Romieu3d165432009-01-19 16:56:50 -08001049 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001050 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001051
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001052 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001053
1054 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001055 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001056
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001057 spin_unlock_bh(&tp->lock);
1058
1059 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001060}
1061
1062static int tg3_mdio_reset(struct mii_bus *bp)
1063{
1064 return 0;
1065}
1066
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001067static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001068{
1069 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001070 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001071
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001072 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001073 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001074 case PHY_ID_BCM50610:
1075 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001076 val = MAC_PHYCFG2_50610_LED_MODES;
1077 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001078 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001079 val = MAC_PHYCFG2_AC131_LED_MODES;
1080 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001081 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001082 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1083 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001084 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001085 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1086 break;
1087 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001088 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001089 }
1090
1091 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1092 tw32(MAC_PHYCFG2, val);
1093
1094 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001095 val &= ~(MAC_PHYCFG1_RGMII_INT |
1096 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1097 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001098 tw32(MAC_PHYCFG1, val);
1099
1100 return;
1101 }
1102
Joe Perches63c3a662011-04-26 08:12:10 +00001103 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001104 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1105 MAC_PHYCFG2_FMODE_MASK_MASK |
1106 MAC_PHYCFG2_GMODE_MASK_MASK |
1107 MAC_PHYCFG2_ACT_MASK_MASK |
1108 MAC_PHYCFG2_QUAL_MASK_MASK |
1109 MAC_PHYCFG2_INBAND_ENABLE;
1110
1111 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001112
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001113 val = tr32(MAC_PHYCFG1);
1114 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1115 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001116 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1117 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001118 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001119 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001120 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1121 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001122 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1123 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1124 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001125
Matt Carlsona9daf362008-05-25 23:49:44 -07001126 val = tr32(MAC_EXT_RGMII_MODE);
1127 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1128 MAC_RGMII_MODE_RX_QUALITY |
1129 MAC_RGMII_MODE_RX_ACTIVITY |
1130 MAC_RGMII_MODE_RX_ENG_DET |
1131 MAC_RGMII_MODE_TX_ENABLE |
1132 MAC_RGMII_MODE_TX_LOWPWR |
1133 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001134 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1135 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001136 val |= MAC_RGMII_MODE_RX_INT_B |
1137 MAC_RGMII_MODE_RX_QUALITY |
1138 MAC_RGMII_MODE_RX_ACTIVITY |
1139 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001140 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001141 val |= MAC_RGMII_MODE_TX_ENABLE |
1142 MAC_RGMII_MODE_TX_LOWPWR |
1143 MAC_RGMII_MODE_TX_RESET;
1144 }
1145 tw32(MAC_EXT_RGMII_MODE, val);
1146}
1147
Matt Carlson158d7ab2008-05-29 01:37:54 -07001148static void tg3_mdio_start(struct tg3 *tp)
1149{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001150 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1151 tw32_f(MAC_MI_MODE, tp->mi_mode);
1152 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001153
Joe Perches63c3a662011-04-26 08:12:10 +00001154 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001155 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1156 tg3_mdio_config_5785(tp);
1157}
1158
1159static int tg3_mdio_init(struct tg3 *tp)
1160{
1161 int i;
1162 u32 reg;
1163 struct phy_device *phydev;
1164
Joe Perches63c3a662011-04-26 08:12:10 +00001165 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001166 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001167
Matt Carlson9c7df912010-06-05 17:24:36 +00001168 tp->phy_addr = PCI_FUNC(tp->pdev->devfn) + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001169
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001170 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1171 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1172 else
1173 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1174 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001175 if (is_serdes)
1176 tp->phy_addr += 7;
1177 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001178 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001179
Matt Carlson158d7ab2008-05-29 01:37:54 -07001180 tg3_mdio_start(tp);
1181
Joe Perches63c3a662011-04-26 08:12:10 +00001182 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001183 return 0;
1184
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001185 tp->mdio_bus = mdiobus_alloc();
1186 if (tp->mdio_bus == NULL)
1187 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001188
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001189 tp->mdio_bus->name = "tg3 mdio bus";
1190 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001191 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001192 tp->mdio_bus->priv = tp;
1193 tp->mdio_bus->parent = &tp->pdev->dev;
1194 tp->mdio_bus->read = &tg3_mdio_read;
1195 tp->mdio_bus->write = &tg3_mdio_write;
1196 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001197 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001198 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001199
1200 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001201 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001202
1203 /* The bus registration will look for all the PHYs on the mdio bus.
1204 * Unfortunately, it does not ensure the PHY is powered up before
1205 * accessing the PHY ID registers. A chip reset is the
1206 * quickest way to bring the device back to an operational state..
1207 */
1208 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1209 tg3_bmcr_reset(tp);
1210
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001211 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001212 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001213 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001214 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001215 return i;
1216 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001217
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001218 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001219
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001220 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001221 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001222 mdiobus_unregister(tp->mdio_bus);
1223 mdiobus_free(tp->mdio_bus);
1224 return -ENODEV;
1225 }
1226
1227 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001228 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001229 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001230 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001231 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001232 case PHY_ID_BCM50610:
1233 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001234 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001235 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001236 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001237 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001238 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001239 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001240 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001241 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001242 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001243 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001244 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001245 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001246 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001247 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001248 case PHY_ID_RTL8201E:
1249 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001250 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001251 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001252 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001253 break;
1254 }
1255
Joe Perches63c3a662011-04-26 08:12:10 +00001256 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001257
1258 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1259 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001260
1261 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001262}
1263
1264static void tg3_mdio_fini(struct tg3 *tp)
1265{
Joe Perches63c3a662011-04-26 08:12:10 +00001266 if (tg3_flag(tp, MDIOBUS_INITED)) {
1267 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001268 mdiobus_unregister(tp->mdio_bus);
1269 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001270 }
1271}
1272
Matt Carlson95e28692008-05-25 23:44:14 -07001273/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001274static inline void tg3_generate_fw_event(struct tg3 *tp)
1275{
1276 u32 val;
1277
1278 val = tr32(GRC_RX_CPU_EVENT);
1279 val |= GRC_RX_CPU_DRIVER_EVENT;
1280 tw32_f(GRC_RX_CPU_EVENT, val);
1281
1282 tp->last_event_jiffies = jiffies;
1283}
1284
1285#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1286
1287/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001288static void tg3_wait_for_event_ack(struct tg3 *tp)
1289{
1290 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001291 unsigned int delay_cnt;
1292 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001293
Matt Carlson4ba526c2008-08-15 14:10:04 -07001294 /* If enough time has passed, no wait is necessary. */
1295 time_remain = (long)(tp->last_event_jiffies + 1 +
1296 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1297 (long)jiffies;
1298 if (time_remain < 0)
1299 return;
1300
1301 /* Check if we can shorten the wait time. */
1302 delay_cnt = jiffies_to_usecs(time_remain);
1303 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1304 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1305 delay_cnt = (delay_cnt >> 3) + 1;
1306
1307 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001308 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1309 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001310 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001311 }
1312}
1313
1314/* tp->lock is held. */
1315static void tg3_ump_link_report(struct tg3 *tp)
1316{
1317 u32 reg;
1318 u32 val;
1319
Joe Perches63c3a662011-04-26 08:12:10 +00001320 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson95e28692008-05-25 23:44:14 -07001321 return;
1322
1323 tg3_wait_for_event_ack(tp);
1324
1325 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1326
1327 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1328
1329 val = 0;
1330 if (!tg3_readphy(tp, MII_BMCR, &reg))
1331 val = reg << 16;
1332 if (!tg3_readphy(tp, MII_BMSR, &reg))
1333 val |= (reg & 0xffff);
1334 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1335
1336 val = 0;
1337 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1338 val = reg << 16;
1339 if (!tg3_readphy(tp, MII_LPA, &reg))
1340 val |= (reg & 0xffff);
1341 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1342
1343 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001344 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001345 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1346 val = reg << 16;
1347 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1348 val |= (reg & 0xffff);
1349 }
1350 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1351
1352 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1353 val = reg << 16;
1354 else
1355 val = 0;
1356 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1357
Matt Carlson4ba526c2008-08-15 14:10:04 -07001358 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001359}
1360
1361static void tg3_link_report(struct tg3 *tp)
1362{
1363 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001364 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001365 tg3_ump_link_report(tp);
1366 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001367 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1368 (tp->link_config.active_speed == SPEED_1000 ?
1369 1000 :
1370 (tp->link_config.active_speed == SPEED_100 ?
1371 100 : 10)),
1372 (tp->link_config.active_duplex == DUPLEX_FULL ?
1373 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001374
Joe Perches05dbe002010-02-17 19:44:19 +00001375 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1376 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1377 "on" : "off",
1378 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1379 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001380
1381 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1382 netdev_info(tp->dev, "EEE is %s\n",
1383 tp->setlpicnt ? "enabled" : "disabled");
1384
Matt Carlson95e28692008-05-25 23:44:14 -07001385 tg3_ump_link_report(tp);
1386 }
1387}
1388
1389static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1390{
1391 u16 miireg;
1392
Steve Glendinninge18ce342008-12-16 02:00:00 -08001393 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001394 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001395 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001396 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001397 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001398 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1399 else
1400 miireg = 0;
1401
1402 return miireg;
1403}
1404
1405static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1406{
1407 u16 miireg;
1408
Steve Glendinninge18ce342008-12-16 02:00:00 -08001409 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001410 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001411 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001412 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001413 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001414 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1415 else
1416 miireg = 0;
1417
1418 return miireg;
1419}
1420
Matt Carlson95e28692008-05-25 23:44:14 -07001421static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1422{
1423 u8 cap = 0;
1424
1425 if (lcladv & ADVERTISE_1000XPAUSE) {
1426 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1427 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001428 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001429 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001430 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001431 } else {
1432 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001433 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001434 }
1435 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1436 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001437 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001438 }
1439
1440 return cap;
1441}
1442
Matt Carlsonf51f3562008-05-25 23:45:08 -07001443static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001444{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001445 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001446 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001447 u32 old_rx_mode = tp->rx_mode;
1448 u32 old_tx_mode = tp->tx_mode;
1449
Joe Perches63c3a662011-04-26 08:12:10 +00001450 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001451 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001452 else
1453 autoneg = tp->link_config.autoneg;
1454
Joe Perches63c3a662011-04-26 08:12:10 +00001455 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001456 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001457 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001458 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001459 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001460 } else
1461 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001462
Matt Carlsonf51f3562008-05-25 23:45:08 -07001463 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001464
Steve Glendinninge18ce342008-12-16 02:00:00 -08001465 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001466 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1467 else
1468 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1469
Matt Carlsonf51f3562008-05-25 23:45:08 -07001470 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001471 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001472
Steve Glendinninge18ce342008-12-16 02:00:00 -08001473 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001474 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1475 else
1476 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1477
Matt Carlsonf51f3562008-05-25 23:45:08 -07001478 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001479 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001480}
1481
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001482static void tg3_adjust_link(struct net_device *dev)
1483{
1484 u8 oldflowctrl, linkmesg = 0;
1485 u32 mac_mode, lcl_adv, rmt_adv;
1486 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001487 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001488
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001489 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001490
1491 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1492 MAC_MODE_HALF_DUPLEX);
1493
1494 oldflowctrl = tp->link_config.active_flowctrl;
1495
1496 if (phydev->link) {
1497 lcl_adv = 0;
1498 rmt_adv = 0;
1499
1500 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1501 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001502 else if (phydev->speed == SPEED_1000 ||
1503 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001504 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001505 else
1506 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001507
1508 if (phydev->duplex == DUPLEX_HALF)
1509 mac_mode |= MAC_MODE_HALF_DUPLEX;
1510 else {
1511 lcl_adv = tg3_advert_flowctrl_1000T(
1512 tp->link_config.flowctrl);
1513
1514 if (phydev->pause)
1515 rmt_adv = LPA_PAUSE_CAP;
1516 if (phydev->asym_pause)
1517 rmt_adv |= LPA_PAUSE_ASYM;
1518 }
1519
1520 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1521 } else
1522 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1523
1524 if (mac_mode != tp->mac_mode) {
1525 tp->mac_mode = mac_mode;
1526 tw32_f(MAC_MODE, tp->mac_mode);
1527 udelay(40);
1528 }
1529
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001530 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1531 if (phydev->speed == SPEED_10)
1532 tw32(MAC_MI_STAT,
1533 MAC_MI_STAT_10MBPS_MODE |
1534 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1535 else
1536 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1537 }
1538
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001539 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1540 tw32(MAC_TX_LENGTHS,
1541 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1542 (6 << TX_LENGTHS_IPG_SHIFT) |
1543 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1544 else
1545 tw32(MAC_TX_LENGTHS,
1546 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1547 (6 << TX_LENGTHS_IPG_SHIFT) |
1548 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1549
1550 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1551 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1552 phydev->speed != tp->link_config.active_speed ||
1553 phydev->duplex != tp->link_config.active_duplex ||
1554 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001555 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001556
1557 tp->link_config.active_speed = phydev->speed;
1558 tp->link_config.active_duplex = phydev->duplex;
1559
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001560 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001561
1562 if (linkmesg)
1563 tg3_link_report(tp);
1564}
1565
1566static int tg3_phy_init(struct tg3 *tp)
1567{
1568 struct phy_device *phydev;
1569
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001570 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001571 return 0;
1572
1573 /* Bring the PHY back to a known state. */
1574 tg3_bmcr_reset(tp);
1575
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001576 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001577
1578 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad352008-11-10 13:55:14 -08001579 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001580 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001581 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001582 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001583 return PTR_ERR(phydev);
1584 }
1585
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001586 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001587 switch (phydev->interface) {
1588 case PHY_INTERFACE_MODE_GMII:
1589 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001590 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001591 phydev->supported &= (PHY_GBIT_FEATURES |
1592 SUPPORTED_Pause |
1593 SUPPORTED_Asym_Pause);
1594 break;
1595 }
1596 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001597 case PHY_INTERFACE_MODE_MII:
1598 phydev->supported &= (PHY_BASIC_FEATURES |
1599 SUPPORTED_Pause |
1600 SUPPORTED_Asym_Pause);
1601 break;
1602 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001603 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001604 return -EINVAL;
1605 }
1606
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001607 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001608
1609 phydev->advertising = phydev->supported;
1610
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001611 return 0;
1612}
1613
1614static void tg3_phy_start(struct tg3 *tp)
1615{
1616 struct phy_device *phydev;
1617
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001618 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001619 return;
1620
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001621 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001622
Matt Carlson80096062010-08-02 11:26:06 +00001623 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1624 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001625 phydev->speed = tp->link_config.orig_speed;
1626 phydev->duplex = tp->link_config.orig_duplex;
1627 phydev->autoneg = tp->link_config.orig_autoneg;
1628 phydev->advertising = tp->link_config.orig_advertising;
1629 }
1630
1631 phy_start(phydev);
1632
1633 phy_start_aneg(phydev);
1634}
1635
1636static void tg3_phy_stop(struct tg3 *tp)
1637{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001638 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001639 return;
1640
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001641 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001642}
1643
1644static void tg3_phy_fini(struct tg3 *tp)
1645{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001646 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001647 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001648 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001649 }
1650}
1651
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001652static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1653{
1654 u32 phytest;
1655
1656 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1657 u32 phy;
1658
1659 tg3_writephy(tp, MII_TG3_FET_TEST,
1660 phytest | MII_TG3_FET_SHADOW_EN);
1661 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1662 if (enable)
1663 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1664 else
1665 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1666 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1667 }
1668 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1669 }
1670}
1671
Matt Carlson6833c042008-11-21 17:18:59 -08001672static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1673{
1674 u32 reg;
1675
Joe Perches63c3a662011-04-26 08:12:10 +00001676 if (!tg3_flag(tp, 5705_PLUS) ||
1677 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001678 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001679 return;
1680
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001681 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001682 tg3_phy_fet_toggle_apd(tp, enable);
1683 return;
1684 }
1685
Matt Carlson6833c042008-11-21 17:18:59 -08001686 reg = MII_TG3_MISC_SHDW_WREN |
1687 MII_TG3_MISC_SHDW_SCR5_SEL |
1688 MII_TG3_MISC_SHDW_SCR5_LPED |
1689 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1690 MII_TG3_MISC_SHDW_SCR5_SDTL |
1691 MII_TG3_MISC_SHDW_SCR5_C125OE;
1692 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1693 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1694
1695 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1696
1697
1698 reg = MII_TG3_MISC_SHDW_WREN |
1699 MII_TG3_MISC_SHDW_APD_SEL |
1700 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1701 if (enable)
1702 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1703
1704 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1705}
1706
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001707static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1708{
1709 u32 phy;
1710
Joe Perches63c3a662011-04-26 08:12:10 +00001711 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001712 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001713 return;
1714
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001715 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001716 u32 ephy;
1717
Matt Carlson535ef6e2009-08-25 10:09:36 +00001718 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1719 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1720
1721 tg3_writephy(tp, MII_TG3_FET_TEST,
1722 ephy | MII_TG3_FET_SHADOW_EN);
1723 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001724 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001725 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001726 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001727 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1728 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001729 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001730 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001731 }
1732 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00001733 int ret;
1734
1735 ret = tg3_phy_auxctl_read(tp,
1736 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
1737 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001738 if (enable)
1739 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1740 else
1741 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001742 tg3_phy_auxctl_write(tp,
1743 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001744 }
1745 }
1746}
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748static void tg3_phy_set_wirespeed(struct tg3 *tp)
1749{
Matt Carlson15ee95c2011-04-20 07:57:40 +00001750 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 u32 val;
1752
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001753 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return;
1755
Matt Carlson15ee95c2011-04-20 07:57:40 +00001756 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
1757 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001758 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
1759 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001762static void tg3_phy_apply_otp(struct tg3 *tp)
1763{
1764 u32 otp, phy;
1765
1766 if (!tp->phy_otp)
1767 return;
1768
1769 otp = tp->phy_otp;
1770
Matt Carlson1d36ba42011-04-20 07:57:42 +00001771 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
1772 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001773
1774 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1775 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1776 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1777
1778 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1779 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1780 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1781
1782 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1783 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1784 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1785
1786 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1787 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1788
1789 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1790 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1791
1792 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1793 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1794 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1795
Matt Carlson1d36ba42011-04-20 07:57:42 +00001796 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001797}
1798
Matt Carlson52b02d02010-10-14 10:37:41 +00001799static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
1800{
1801 u32 val;
1802
1803 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
1804 return;
1805
1806 tp->setlpicnt = 0;
1807
1808 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
1809 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00001810 tp->link_config.active_duplex == DUPLEX_FULL &&
1811 (tp->link_config.active_speed == SPEED_100 ||
1812 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00001813 u32 eeectl;
1814
1815 if (tp->link_config.active_speed == SPEED_1000)
1816 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
1817 else
1818 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
1819
1820 tw32(TG3_CPMU_EEE_CTRL, eeectl);
1821
Matt Carlson3110f5f52010-12-06 08:28:50 +00001822 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
1823 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00001824
Matt Carlson21a00ab2011-01-25 15:58:55 +00001825 switch (val) {
1826 case TG3_CL45_D7_EEERES_STAT_LP_1000T:
1827 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
1828 case ASIC_REV_5717:
1829 case ASIC_REV_5719:
1830 case ASIC_REV_57765:
Matt Carlson1d36ba42011-04-20 07:57:42 +00001831 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
1832 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26,
1833 0x0000);
1834 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
1835 }
Matt Carlson21a00ab2011-01-25 15:58:55 +00001836 }
1837 /* Fallthrough */
1838 case TG3_CL45_D7_EEERES_STAT_LP_100TX:
Matt Carlson52b02d02010-10-14 10:37:41 +00001839 tp->setlpicnt = 2;
Matt Carlson21a00ab2011-01-25 15:58:55 +00001840 }
Matt Carlson52b02d02010-10-14 10:37:41 +00001841 }
1842
1843 if (!tp->setlpicnt) {
1844 val = tr32(TG3_CPMU_EEE_MODE);
1845 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
1846 }
1847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849static int tg3_wait_macro_done(struct tg3 *tp)
1850{
1851 int limit = 100;
1852
1853 while (limit--) {
1854 u32 tmp32;
1855
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001856 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if ((tmp32 & 0x1000) == 0)
1858 break;
1859 }
1860 }
Roel Kluind4675b52009-02-12 16:33:27 -08001861 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return -EBUSY;
1863
1864 return 0;
1865}
1866
1867static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1868{
1869 static const u32 test_pat[4][6] = {
1870 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1871 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1872 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1873 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1874 };
1875 int chan;
1876
1877 for (chan = 0; chan < 4; chan++) {
1878 int i;
1879
1880 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1881 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001882 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 for (i = 0; i < 6; i++)
1885 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1886 test_pat[chan][i]);
1887
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001888 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (tg3_wait_macro_done(tp)) {
1890 *resetp = 1;
1891 return -EBUSY;
1892 }
1893
1894 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1895 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001896 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (tg3_wait_macro_done(tp)) {
1898 *resetp = 1;
1899 return -EBUSY;
1900 }
1901
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001902 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 if (tg3_wait_macro_done(tp)) {
1904 *resetp = 1;
1905 return -EBUSY;
1906 }
1907
1908 for (i = 0; i < 6; i += 2) {
1909 u32 low, high;
1910
1911 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1912 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1913 tg3_wait_macro_done(tp)) {
1914 *resetp = 1;
1915 return -EBUSY;
1916 }
1917 low &= 0x7fff;
1918 high &= 0x000f;
1919 if (low != test_pat[chan][i] ||
1920 high != test_pat[chan][i+1]) {
1921 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1922 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1923 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1924
1925 return -EBUSY;
1926 }
1927 }
1928 }
1929
1930 return 0;
1931}
1932
1933static int tg3_phy_reset_chanpat(struct tg3 *tp)
1934{
1935 int chan;
1936
1937 for (chan = 0; chan < 4; chan++) {
1938 int i;
1939
1940 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1941 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001942 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 for (i = 0; i < 6; i++)
1944 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001945 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (tg3_wait_macro_done(tp))
1947 return -EBUSY;
1948 }
1949
1950 return 0;
1951}
1952
1953static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1954{
1955 u32 reg32, phy9_orig;
1956 int retries, do_phy_reset, err;
1957
1958 retries = 10;
1959 do_phy_reset = 1;
1960 do {
1961 if (do_phy_reset) {
1962 err = tg3_bmcr_reset(tp);
1963 if (err)
1964 return err;
1965 do_phy_reset = 0;
1966 }
1967
1968 /* Disable transmitter and interrupt. */
1969 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
1970 continue;
1971
1972 reg32 |= 0x3000;
1973 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
1974
1975 /* Set full-duplex, 1000 mbps. */
1976 tg3_writephy(tp, MII_BMCR,
1977 BMCR_FULLDPLX | TG3_BMCR_SPEED1000);
1978
1979 /* Set to master mode. */
1980 if (tg3_readphy(tp, MII_TG3_CTRL, &phy9_orig))
1981 continue;
1982
1983 tg3_writephy(tp, MII_TG3_CTRL,
1984 (MII_TG3_CTRL_AS_MASTER |
1985 MII_TG3_CTRL_ENABLE_AS_MASTER));
1986
Matt Carlson1d36ba42011-04-20 07:57:42 +00001987 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
1988 if (err)
1989 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00001992 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
1995 if (!err)
1996 break;
1997 } while (--retries);
1998
1999 err = tg3_phy_reset_chanpat(tp);
2000 if (err)
2001 return err;
2002
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002003 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002006 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Matt Carlson1d36ba42011-04-20 07:57:42 +00002008 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 tg3_writephy(tp, MII_TG3_CTRL, phy9_orig);
2011
2012 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2013 reg32 &= ~0x3000;
2014 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2015 } else if (!err)
2016 err = -EBUSY;
2017
2018 return err;
2019}
2020
2021/* This will reset the tigon3 PHY if there is no valid
2022 * link unless the FORCE argument is non-zero.
2023 */
2024static int tg3_phy_reset(struct tg3 *tp)
2025{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002026 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 int err;
2028
Michael Chan60189dd2006-12-17 17:08:07 -08002029 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002030 val = tr32(GRC_MISC_CFG);
2031 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2032 udelay(40);
2033 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002034 err = tg3_readphy(tp, MII_BMSR, &val);
2035 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (err != 0)
2037 return -EBUSY;
2038
Michael Chanc8e1e822006-04-29 18:55:17 -07002039 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2040 netif_carrier_off(tp->dev);
2041 tg3_link_report(tp);
2042 }
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2045 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2046 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2047 err = tg3_phy_reset_5703_4_5(tp);
2048 if (err)
2049 return err;
2050 goto out;
2051 }
2052
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002053 cpmuctrl = 0;
2054 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2055 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2056 cpmuctrl = tr32(TG3_CPMU_CTRL);
2057 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2058 tw32(TG3_CPMU_CTRL,
2059 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2060 }
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 err = tg3_bmcr_reset(tp);
2063 if (err)
2064 return err;
2065
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002066 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002067 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2068 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002069
2070 tw32(TG3_CPMU_CTRL, cpmuctrl);
2071 }
2072
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002073 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2074 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002075 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2076 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2077 CPMU_LSPD_1000MB_MACCLK_12_5) {
2078 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2079 udelay(40);
2080 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2081 }
2082 }
2083
Joe Perches63c3a662011-04-26 08:12:10 +00002084 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002085 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002086 return 0;
2087
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002088 tg3_phy_apply_otp(tp);
2089
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002090 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002091 tg3_phy_toggle_apd(tp, true);
2092 else
2093 tg3_phy_toggle_apd(tp, false);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002096 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2097 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002098 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2099 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002100 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002102
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002103 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002104 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2105 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002107
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002108 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002109 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2110 tg3_phydsp_write(tp, 0x000a, 0x310b);
2111 tg3_phydsp_write(tp, 0x201f, 0x9506);
2112 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2113 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2114 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002115 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002116 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2117 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2118 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2119 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2120 tg3_writephy(tp, MII_TG3_TEST1,
2121 MII_TG3_TEST1_TRIM_EN | 0x4);
2122 } else
2123 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2124
2125 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2126 }
Michael Chanc424cb22006-04-29 18:56:34 -07002127 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 /* Set Extended packet length bit (bit 14) on all chips that */
2130 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002131 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002133 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002134 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002136 err = tg3_phy_auxctl_read(tp,
2137 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2138 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002139 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2140 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
2142
2143 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2144 * jumbo frames transmission.
2145 */
Joe Perches63c3a662011-04-26 08:12:10 +00002146 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002147 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002148 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002149 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
2151
Michael Chan715116a2006-09-27 16:09:25 -07002152 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002153 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002154 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002155 }
2156
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002157 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 tg3_phy_set_wirespeed(tp);
2159 return 0;
2160}
2161
2162static void tg3_frob_aux_power(struct tg3 *tp)
2163{
Matt Carlson683644b2011-03-09 16:58:23 +00002164 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Matt Carlson334355a2010-01-20 16:58:10 +00002166 /* The GPIOs do something completely different on 57765. */
Joe Perches63c3a662011-04-26 08:12:10 +00002167 if (!tg3_flag(tp, IS_NIC) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00002168 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Matt Carlson334355a2010-01-20 16:58:10 +00002169 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return;
2171
Matt Carlson683644b2011-03-09 16:58:23 +00002172 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2173 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +00002174 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2175 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) &&
Matt Carlson683644b2011-03-09 16:58:23 +00002176 tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002177 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002179 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002180
Michael Chanbc1c7562006-03-20 17:48:03 -08002181 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002182 if (dev_peer) {
2183 struct tg3 *tp_peer = netdev_priv(dev_peer);
2184
Joe Perches63c3a662011-04-26 08:12:10 +00002185 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002186 return;
2187
Joe Perches63c3a662011-04-26 08:12:10 +00002188 if (tg3_flag(tp_peer, WOL_ENABLE) ||
2189 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002190 need_vaux = true;
2191 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Joe Perches63c3a662011-04-26 08:12:10 +00002194 if (tg3_flag(tp, WOL_ENABLE) || tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002195 need_vaux = true;
2196
2197 if (need_vaux) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2199 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002200 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2201 (GRC_LCLCTRL_GPIO_OE0 |
2202 GRC_LCLCTRL_GPIO_OE1 |
2203 GRC_LCLCTRL_GPIO_OE2 |
2204 GRC_LCLCTRL_GPIO_OUTPUT0 |
2205 GRC_LCLCTRL_GPIO_OUTPUT1),
2206 100);
Matt Carlson8d519ab2009-04-20 06:58:01 +00002207 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2208 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -07002209 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2210 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2211 GRC_LCLCTRL_GPIO_OE1 |
2212 GRC_LCLCTRL_GPIO_OE2 |
2213 GRC_LCLCTRL_GPIO_OUTPUT0 |
2214 GRC_LCLCTRL_GPIO_OUTPUT1 |
2215 tp->grc_local_ctrl;
2216 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2217
2218 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2219 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
2220
2221 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2222 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 } else {
2224 u32 no_gpio2;
Michael Chandc56b7d2005-12-19 16:26:28 -08002225 u32 grc_local_ctrl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Michael Chandc56b7d2005-12-19 16:26:28 -08002227 /* Workaround to prevent overdrawing Amps. */
2228 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2229 ASIC_REV_5714) {
2230 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chanb401e9e2005-12-19 16:27:04 -08002231 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2232 grc_local_ctrl, 100);
Michael Chandc56b7d2005-12-19 16:26:28 -08002233 }
2234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 /* On 5753 and variants, GPIO2 cannot be used. */
2236 no_gpio2 = tp->nic_sram_data_cfg &
2237 NIC_SRAM_DATA_CFG_NO_GPIO2;
2238
Michael Chandc56b7d2005-12-19 16:26:28 -08002239 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 GRC_LCLCTRL_GPIO_OE1 |
2241 GRC_LCLCTRL_GPIO_OE2 |
2242 GRC_LCLCTRL_GPIO_OUTPUT1 |
2243 GRC_LCLCTRL_GPIO_OUTPUT2;
2244 if (no_gpio2) {
2245 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2246 GRC_LCLCTRL_GPIO_OUTPUT2);
2247 }
Michael Chanb401e9e2005-12-19 16:27:04 -08002248 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2249 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2252
Michael Chanb401e9e2005-12-19 16:27:04 -08002253 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2254 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 if (!no_gpio2) {
2257 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chanb401e9e2005-12-19 16:27:04 -08002258 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2259 grc_local_ctrl, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
2261 }
2262 } else {
2263 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
2264 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Michael Chanb401e9e2005-12-19 16:27:04 -08002265 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2266 (GRC_LCLCTRL_GPIO_OE1 |
2267 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Michael Chanb401e9e2005-12-19 16:27:04 -08002269 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2270 GRC_LCLCTRL_GPIO_OE1, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Michael Chanb401e9e2005-12-19 16:27:04 -08002272 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2273 (GRC_LCLCTRL_GPIO_OE1 |
2274 GRC_LCLCTRL_GPIO_OUTPUT1), 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
2276 }
2277}
2278
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002279static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2280{
2281 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2282 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002283 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002284 if (speed != SPEED_10)
2285 return 1;
2286 } else if (speed == SPEED_10)
2287 return 1;
2288
2289 return 0;
2290}
2291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292static int tg3_setup_phy(struct tg3 *, int);
2293
2294#define RESET_KIND_SHUTDOWN 0
2295#define RESET_KIND_INIT 1
2296#define RESET_KIND_SUSPEND 2
2297
2298static void tg3_write_sig_post_reset(struct tg3 *, int);
2299static int tg3_halt_cpu(struct tg3 *, u32);
2300
Matt Carlson0a459aa2008-11-03 16:54:15 -08002301static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002302{
Matt Carlsonce057f02007-11-12 21:08:03 -08002303 u32 val;
2304
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002305 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002306 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2307 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2308 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2309
2310 sg_dig_ctrl |=
2311 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2312 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2313 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2314 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002315 return;
Michael Chan51297242007-02-13 12:17:57 -08002316 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002317
Michael Chan60189dd2006-12-17 17:08:07 -08002318 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002319 tg3_bmcr_reset(tp);
2320 val = tr32(GRC_MISC_CFG);
2321 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2322 udelay(40);
2323 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002324 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002325 u32 phytest;
2326 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2327 u32 phy;
2328
2329 tg3_writephy(tp, MII_ADVERTISE, 0);
2330 tg3_writephy(tp, MII_BMCR,
2331 BMCR_ANENABLE | BMCR_ANRESTART);
2332
2333 tg3_writephy(tp, MII_TG3_FET_TEST,
2334 phytest | MII_TG3_FET_SHADOW_EN);
2335 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2336 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2337 tg3_writephy(tp,
2338 MII_TG3_FET_SHDW_AUXMODE4,
2339 phy);
2340 }
2341 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2342 }
2343 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002344 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002345 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2346 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002347
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002348 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2349 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2350 MII_TG3_AUXCTL_PCTL_VREG_11V;
2351 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002352 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002353
Michael Chan15c3b692006-03-22 01:06:52 -08002354 /* The PHY should not be powered down on some chips because
2355 * of bugs.
2356 */
2357 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2358 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2359 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002360 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Michael Chan15c3b692006-03-22 01:06:52 -08002361 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002362
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002363 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2364 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002365 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2366 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2367 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2368 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2369 }
2370
Michael Chan15c3b692006-03-22 01:06:52 -08002371 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2372}
2373
Matt Carlson3f007892008-11-03 16:51:36 -08002374/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002375static int tg3_nvram_lock(struct tg3 *tp)
2376{
Joe Perches63c3a662011-04-26 08:12:10 +00002377 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002378 int i;
2379
2380 if (tp->nvram_lock_cnt == 0) {
2381 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2382 for (i = 0; i < 8000; i++) {
2383 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2384 break;
2385 udelay(20);
2386 }
2387 if (i == 8000) {
2388 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2389 return -ENODEV;
2390 }
2391 }
2392 tp->nvram_lock_cnt++;
2393 }
2394 return 0;
2395}
2396
2397/* tp->lock is held. */
2398static void tg3_nvram_unlock(struct tg3 *tp)
2399{
Joe Perches63c3a662011-04-26 08:12:10 +00002400 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002401 if (tp->nvram_lock_cnt > 0)
2402 tp->nvram_lock_cnt--;
2403 if (tp->nvram_lock_cnt == 0)
2404 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2405 }
2406}
2407
2408/* tp->lock is held. */
2409static void tg3_enable_nvram_access(struct tg3 *tp)
2410{
Joe Perches63c3a662011-04-26 08:12:10 +00002411 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002412 u32 nvaccess = tr32(NVRAM_ACCESS);
2413
2414 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2415 }
2416}
2417
2418/* tp->lock is held. */
2419static void tg3_disable_nvram_access(struct tg3 *tp)
2420{
Joe Perches63c3a662011-04-26 08:12:10 +00002421 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002422 u32 nvaccess = tr32(NVRAM_ACCESS);
2423
2424 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2425 }
2426}
2427
2428static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2429 u32 offset, u32 *val)
2430{
2431 u32 tmp;
2432 int i;
2433
2434 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2435 return -EINVAL;
2436
2437 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2438 EEPROM_ADDR_DEVID_MASK |
2439 EEPROM_ADDR_READ);
2440 tw32(GRC_EEPROM_ADDR,
2441 tmp |
2442 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2443 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2444 EEPROM_ADDR_ADDR_MASK) |
2445 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2446
2447 for (i = 0; i < 1000; i++) {
2448 tmp = tr32(GRC_EEPROM_ADDR);
2449
2450 if (tmp & EEPROM_ADDR_COMPLETE)
2451 break;
2452 msleep(1);
2453 }
2454 if (!(tmp & EEPROM_ADDR_COMPLETE))
2455 return -EBUSY;
2456
Matt Carlson62cedd12009-04-20 14:52:29 -07002457 tmp = tr32(GRC_EEPROM_DATA);
2458
2459 /*
2460 * The data will always be opposite the native endian
2461 * format. Perform a blind byteswap to compensate.
2462 */
2463 *val = swab32(tmp);
2464
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002465 return 0;
2466}
2467
2468#define NVRAM_CMD_TIMEOUT 10000
2469
2470static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2471{
2472 int i;
2473
2474 tw32(NVRAM_CMD, nvram_cmd);
2475 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2476 udelay(10);
2477 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2478 udelay(10);
2479 break;
2480 }
2481 }
2482
2483 if (i == NVRAM_CMD_TIMEOUT)
2484 return -EBUSY;
2485
2486 return 0;
2487}
2488
2489static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2490{
Joe Perches63c3a662011-04-26 08:12:10 +00002491 if (tg3_flag(tp, NVRAM) &&
2492 tg3_flag(tp, NVRAM_BUFFERED) &&
2493 tg3_flag(tp, FLASH) &&
2494 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002495 (tp->nvram_jedecnum == JEDEC_ATMEL))
2496
2497 addr = ((addr / tp->nvram_pagesize) <<
2498 ATMEL_AT45DB0X1B_PAGE_POS) +
2499 (addr % tp->nvram_pagesize);
2500
2501 return addr;
2502}
2503
2504static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2505{
Joe Perches63c3a662011-04-26 08:12:10 +00002506 if (tg3_flag(tp, NVRAM) &&
2507 tg3_flag(tp, NVRAM_BUFFERED) &&
2508 tg3_flag(tp, FLASH) &&
2509 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002510 (tp->nvram_jedecnum == JEDEC_ATMEL))
2511
2512 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2513 tp->nvram_pagesize) +
2514 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2515
2516 return addr;
2517}
2518
Matt Carlsone4f34112009-02-25 14:25:00 +00002519/* NOTE: Data read in from NVRAM is byteswapped according to
2520 * the byteswapping settings for all other register accesses.
2521 * tg3 devices are BE devices, so on a BE machine, the data
2522 * returned will be exactly as it is seen in NVRAM. On a LE
2523 * machine, the 32-bit value will be byteswapped.
2524 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002525static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2526{
2527 int ret;
2528
Joe Perches63c3a662011-04-26 08:12:10 +00002529 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002530 return tg3_nvram_read_using_eeprom(tp, offset, val);
2531
2532 offset = tg3_nvram_phys_addr(tp, offset);
2533
2534 if (offset > NVRAM_ADDR_MSK)
2535 return -EINVAL;
2536
2537 ret = tg3_nvram_lock(tp);
2538 if (ret)
2539 return ret;
2540
2541 tg3_enable_nvram_access(tp);
2542
2543 tw32(NVRAM_ADDR, offset);
2544 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2545 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2546
2547 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002548 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002549
2550 tg3_disable_nvram_access(tp);
2551
2552 tg3_nvram_unlock(tp);
2553
2554 return ret;
2555}
2556
Matt Carlsona9dc5292009-02-25 14:25:30 +00002557/* Ensures NVRAM data is in bytestream format. */
2558static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002559{
2560 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002561 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002562 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002563 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002564 return res;
2565}
2566
2567/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002568static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2569{
2570 u32 addr_high, addr_low;
2571 int i;
2572
2573 addr_high = ((tp->dev->dev_addr[0] << 8) |
2574 tp->dev->dev_addr[1]);
2575 addr_low = ((tp->dev->dev_addr[2] << 24) |
2576 (tp->dev->dev_addr[3] << 16) |
2577 (tp->dev->dev_addr[4] << 8) |
2578 (tp->dev->dev_addr[5] << 0));
2579 for (i = 0; i < 4; i++) {
2580 if (i == 1 && skip_mac_1)
2581 continue;
2582 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2583 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2584 }
2585
2586 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2587 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2588 for (i = 0; i < 12; i++) {
2589 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2590 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2591 }
2592 }
2593
2594 addr_high = (tp->dev->dev_addr[0] +
2595 tp->dev->dev_addr[1] +
2596 tp->dev->dev_addr[2] +
2597 tp->dev->dev_addr[3] +
2598 tp->dev->dev_addr[4] +
2599 tp->dev->dev_addr[5]) &
2600 TX_BACKOFF_SEED_MASK;
2601 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2602}
2603
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002604static void tg3_enable_register_access(struct tg3 *tp)
2605{
2606 /*
2607 * Make sure register accesses (indirect or otherwise) will function
2608 * correctly.
2609 */
2610 pci_write_config_dword(tp->pdev,
2611 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
2612}
2613
2614static int tg3_power_up(struct tg3 *tp)
2615{
2616 tg3_enable_register_access(tp);
2617
2618 pci_set_power_state(tp->pdev, PCI_D0);
2619
2620 /* Switch out of Vaux if it is a NIC */
Joe Perches63c3a662011-04-26 08:12:10 +00002621 if (tg3_flag(tp, IS_NIC))
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002622 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl, 100);
2623
2624 return 0;
2625}
2626
2627static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
2629 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002630 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002632 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002633
2634 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00002635 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002636 u16 lnkctl;
2637
2638 pci_read_config_word(tp->pdev,
2639 tp->pcie_cap + PCI_EXP_LNKCTL,
2640 &lnkctl);
2641 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2642 pci_write_config_word(tp->pdev,
2643 tp->pcie_cap + PCI_EXP_LNKCTL,
2644 lnkctl);
2645 }
2646
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2648 tw32(TG3PCI_MISC_HOST_CTRL,
2649 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2650
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002651 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00002652 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002653
Joe Perches63c3a662011-04-26 08:12:10 +00002654 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002655 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002656 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00002657 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002658 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002659 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002660
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002661 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002662
Matt Carlson80096062010-08-02 11:26:06 +00002663 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002664
2665 tp->link_config.orig_speed = phydev->speed;
2666 tp->link_config.orig_duplex = phydev->duplex;
2667 tp->link_config.orig_autoneg = phydev->autoneg;
2668 tp->link_config.orig_advertising = phydev->advertising;
2669
2670 advertising = ADVERTISED_TP |
2671 ADVERTISED_Pause |
2672 ADVERTISED_Autoneg |
2673 ADVERTISED_10baseT_Half;
2674
Joe Perches63c3a662011-04-26 08:12:10 +00002675 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
2676 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002677 advertising |=
2678 ADVERTISED_100baseT_Half |
2679 ADVERTISED_100baseT_Full |
2680 ADVERTISED_10baseT_Full;
2681 else
2682 advertising |= ADVERTISED_10baseT_Full;
2683 }
2684
2685 phydev->advertising = advertising;
2686
2687 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002688
2689 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00002690 if (phyid != PHY_ID_BCMAC131) {
2691 phyid &= PHY_BCM_OUI_MASK;
2692 if (phyid == PHY_BCM_OUI_1 ||
2693 phyid == PHY_BCM_OUI_2 ||
2694 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08002695 do_low_power = true;
2696 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002697 }
Matt Carlsondd477002008-05-25 23:45:58 -07002698 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002699 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002700
Matt Carlson80096062010-08-02 11:26:06 +00002701 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
2702 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07002703 tp->link_config.orig_speed = tp->link_config.speed;
2704 tp->link_config.orig_duplex = tp->link_config.duplex;
2705 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002708 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07002709 tp->link_config.speed = SPEED_10;
2710 tp->link_config.duplex = DUPLEX_HALF;
2711 tp->link_config.autoneg = AUTONEG_ENABLE;
2712 tg3_setup_phy(tp, 0);
2713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 }
2715
Michael Chanb5d37722006-09-27 16:06:21 -07002716 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2717 u32 val;
2718
2719 val = tr32(GRC_VCPU_EXT_CTRL);
2720 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00002721 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002722 int i;
2723 u32 val;
2724
2725 for (i = 0; i < 200; i++) {
2726 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2727 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2728 break;
2729 msleep(1);
2730 }
2731 }
Joe Perches63c3a662011-04-26 08:12:10 +00002732 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07002733 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2734 WOL_DRV_STATE_SHUTDOWN |
2735 WOL_DRV_WOL |
2736 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002737
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002738 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 u32 mac_mode;
2740
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002741 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002742 if (do_low_power &&
2743 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
2744 tg3_phy_auxctl_write(tp,
2745 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
2746 MII_TG3_AUXCTL_PCTL_WOL_EN |
2747 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2748 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07002749 udelay(40);
2750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002752 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07002753 mac_mode = MAC_MODE_PORT_MODE_GMII;
2754 else
2755 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002757 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2758 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2759 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00002760 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002761 SPEED_100 : SPEED_10;
2762 if (tg3_5700_link_polarity(tp, speed))
2763 mac_mode |= MAC_MODE_LINK_POLARITY;
2764 else
2765 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 } else {
2768 mac_mode = MAC_MODE_PORT_MODE_TBI;
2769 }
2770
Joe Perches63c3a662011-04-26 08:12:10 +00002771 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 tw32(MAC_LED_CTRL, tp->led_ctrl);
2773
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002774 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00002775 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
2776 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002777 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
Joe Perches63c3a662011-04-26 08:12:10 +00002779 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00002780 mac_mode |= MAC_MODE_APE_TX_EN |
2781 MAC_MODE_APE_RX_EN |
2782 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07002783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 tw32_f(MAC_MODE, mac_mode);
2785 udelay(100);
2786
2787 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2788 udelay(10);
2789 }
2790
Joe Perches63c3a662011-04-26 08:12:10 +00002791 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2793 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2794 u32 base_val;
2795
2796 base_val = tp->pci_clock_ctrl;
2797 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2798 CLOCK_CTRL_TXCLK_DISABLE);
2799
Michael Chanb401e9e2005-12-19 16:27:04 -08002800 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2801 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00002802 } else if (tg3_flag(tp, 5780_CLASS) ||
2803 tg3_flag(tp, CPMU_PRESENT) ||
Michael Chand7b0a852007-02-13 12:17:38 -08002804 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002805 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00002806 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 u32 newbits1, newbits2;
2808
2809 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2810 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2811 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2812 CLOCK_CTRL_TXCLK_DISABLE |
2813 CLOCK_CTRL_ALTCLK);
2814 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00002815 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 newbits1 = CLOCK_CTRL_625_CORE;
2817 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2818 } else {
2819 newbits1 = CLOCK_CTRL_ALTCLK;
2820 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2821 }
2822
Michael Chanb401e9e2005-12-19 16:27:04 -08002823 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2824 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Michael Chanb401e9e2005-12-19 16:27:04 -08002826 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2827 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Joe Perches63c3a662011-04-26 08:12:10 +00002829 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 u32 newbits3;
2831
2832 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2833 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2834 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2835 CLOCK_CTRL_TXCLK_DISABLE |
2836 CLOCK_CTRL_44MHZ_CORE);
2837 } else {
2838 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2839 }
2840
Michael Chanb401e9e2005-12-19 16:27:04 -08002841 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2842 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
2844 }
2845
Joe Perches63c3a662011-04-26 08:12:10 +00002846 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08002847 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08002848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 tg3_frob_aux_power(tp);
2850
2851 /* Workaround for unstable PLL clock */
2852 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
2853 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
2854 u32 val = tr32(0x7d00);
2855
2856 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
2857 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00002858 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08002859 int err;
2860
2861 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08002863 if (!err)
2864 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08002865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867
Michael Chanbbadf502006-04-06 21:46:34 -07002868 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return 0;
2871}
2872
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002873static void tg3_power_down(struct tg3 *tp)
2874{
2875 tg3_power_down_prepare(tp);
2876
Joe Perches63c3a662011-04-26 08:12:10 +00002877 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002878 pci_set_power_state(tp->pdev, PCI_D3hot);
2879}
2880
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
2882{
2883 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
2884 case MII_TG3_AUX_STAT_10HALF:
2885 *speed = SPEED_10;
2886 *duplex = DUPLEX_HALF;
2887 break;
2888
2889 case MII_TG3_AUX_STAT_10FULL:
2890 *speed = SPEED_10;
2891 *duplex = DUPLEX_FULL;
2892 break;
2893
2894 case MII_TG3_AUX_STAT_100HALF:
2895 *speed = SPEED_100;
2896 *duplex = DUPLEX_HALF;
2897 break;
2898
2899 case MII_TG3_AUX_STAT_100FULL:
2900 *speed = SPEED_100;
2901 *duplex = DUPLEX_FULL;
2902 break;
2903
2904 case MII_TG3_AUX_STAT_1000HALF:
2905 *speed = SPEED_1000;
2906 *duplex = DUPLEX_HALF;
2907 break;
2908
2909 case MII_TG3_AUX_STAT_1000FULL:
2910 *speed = SPEED_1000;
2911 *duplex = DUPLEX_FULL;
2912 break;
2913
2914 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002915 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07002916 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
2917 SPEED_10;
2918 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
2919 DUPLEX_HALF;
2920 break;
2921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 *speed = SPEED_INVALID;
2923 *duplex = DUPLEX_INVALID;
2924 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07002925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
2928static void tg3_phy_copper_begin(struct tg3 *tp)
2929{
2930 u32 new_adv;
2931 int i;
2932
Matt Carlson80096062010-08-02 11:26:06 +00002933 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 /* Entering low power mode. Disable gigabit and
2935 * 100baseT advertisements.
2936 */
2937 tg3_writephy(tp, MII_TG3_CTRL, 0);
2938
2939 new_adv = (ADVERTISE_10HALF | ADVERTISE_10FULL |
2940 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
Joe Perches63c3a662011-04-26 08:12:10 +00002941 if (tg3_flag(tp, WOL_SPEED_100MB))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 new_adv |= (ADVERTISE_100HALF | ADVERTISE_100FULL);
2943
2944 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2945 } else if (tp->link_config.speed == SPEED_INVALID) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002946 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 tp->link_config.advertising &=
2948 ~(ADVERTISED_1000baseT_Half |
2949 ADVERTISED_1000baseT_Full);
2950
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002951 new_adv = ADVERTISE_CSMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (tp->link_config.advertising & ADVERTISED_10baseT_Half)
2953 new_adv |= ADVERTISE_10HALF;
2954 if (tp->link_config.advertising & ADVERTISED_10baseT_Full)
2955 new_adv |= ADVERTISE_10FULL;
2956 if (tp->link_config.advertising & ADVERTISED_100baseT_Half)
2957 new_adv |= ADVERTISE_100HALF;
2958 if (tp->link_config.advertising & ADVERTISED_100baseT_Full)
2959 new_adv |= ADVERTISE_100FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002960
2961 new_adv |= tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2964
2965 if (tp->link_config.advertising &
2966 (ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full)) {
2967 new_adv = 0;
2968 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
2969 new_adv |= MII_TG3_CTRL_ADV_1000_HALF;
2970 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
2971 new_adv |= MII_TG3_CTRL_ADV_1000_FULL;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002972 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2974 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0))
2975 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2976 MII_TG3_CTRL_ENABLE_AS_MASTER);
2977 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
2978 } else {
2979 tg3_writephy(tp, MII_TG3_CTRL, 0);
2980 }
2981 } else {
Matt Carlsonba4d07a2007-12-20 20:08:00 -08002982 new_adv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
2983 new_adv |= ADVERTISE_CSMA;
2984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 /* Asking for a specific link mode. */
2986 if (tp->link_config.speed == SPEED_1000) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 tg3_writephy(tp, MII_ADVERTISE, new_adv);
2988
2989 if (tp->link_config.duplex == DUPLEX_FULL)
2990 new_adv = MII_TG3_CTRL_ADV_1000_FULL;
2991 else
2992 new_adv = MII_TG3_CTRL_ADV_1000_HALF;
2993 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
2994 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
2995 new_adv |= (MII_TG3_CTRL_AS_MASTER |
2996 MII_TG3_CTRL_ENABLE_AS_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 if (tp->link_config.speed == SPEED_100) {
2999 if (tp->link_config.duplex == DUPLEX_FULL)
3000 new_adv |= ADVERTISE_100FULL;
3001 else
3002 new_adv |= ADVERTISE_100HALF;
3003 } else {
3004 if (tp->link_config.duplex == DUPLEX_FULL)
3005 new_adv |= ADVERTISE_10FULL;
3006 else
3007 new_adv |= ADVERTISE_10HALF;
3008 }
3009 tg3_writephy(tp, MII_ADVERTISE, new_adv);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003010
3011 new_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 }
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003013
3014 tg3_writephy(tp, MII_TG3_CTRL, new_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 }
3016
Matt Carlson52b02d02010-10-14 10:37:41 +00003017 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
Matt Carlsona6b68da2010-12-06 08:28:52 +00003018 u32 val;
Matt Carlson52b02d02010-10-14 10:37:41 +00003019
3020 tw32(TG3_CPMU_EEE_MODE,
3021 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
3022
Matt Carlson1d36ba42011-04-20 07:57:42 +00003023 TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00003024
Matt Carlson21a00ab2011-01-25 15:58:55 +00003025 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3026 case ASIC_REV_5717:
3027 case ASIC_REV_57765:
3028 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3029 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3030 MII_TG3_DSP_CH34TP2_HIBW01);
3031 /* Fall through */
3032 case ASIC_REV_5719:
3033 val = MII_TG3_DSP_TAP26_ALNOKO |
3034 MII_TG3_DSP_TAP26_RMRXSTO |
3035 MII_TG3_DSP_TAP26_OPCSINPT;
3036 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3037 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003038
Matt Carlsona6b68da2010-12-06 08:28:52 +00003039 val = 0;
Matt Carlson52b02d02010-10-14 10:37:41 +00003040 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3041 /* Advertise 100-BaseTX EEE ability */
3042 if (tp->link_config.advertising &
Matt Carlson3110f5f52010-12-06 08:28:50 +00003043 ADVERTISED_100baseT_Full)
3044 val |= MDIO_AN_EEE_ADV_100TX;
Matt Carlson52b02d02010-10-14 10:37:41 +00003045 /* Advertise 1000-BaseT EEE ability */
3046 if (tp->link_config.advertising &
Matt Carlson3110f5f52010-12-06 08:28:50 +00003047 ADVERTISED_1000baseT_Full)
3048 val |= MDIO_AN_EEE_ADV_1000T;
Matt Carlson52b02d02010-10-14 10:37:41 +00003049 }
Matt Carlson3110f5f52010-12-06 08:28:50 +00003050 tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlson52b02d02010-10-14 10:37:41 +00003051
Matt Carlson1d36ba42011-04-20 07:57:42 +00003052 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00003053 }
3054
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
3056 tp->link_config.speed != SPEED_INVALID) {
3057 u32 bmcr, orig_bmcr;
3058
3059 tp->link_config.active_speed = tp->link_config.speed;
3060 tp->link_config.active_duplex = tp->link_config.duplex;
3061
3062 bmcr = 0;
3063 switch (tp->link_config.speed) {
3064 default:
3065 case SPEED_10:
3066 break;
3067
3068 case SPEED_100:
3069 bmcr |= BMCR_SPEED100;
3070 break;
3071
3072 case SPEED_1000:
3073 bmcr |= TG3_BMCR_SPEED1000;
3074 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 if (tp->link_config.duplex == DUPLEX_FULL)
3078 bmcr |= BMCR_FULLDPLX;
3079
3080 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3081 (bmcr != orig_bmcr)) {
3082 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3083 for (i = 0; i < 1500; i++) {
3084 u32 tmp;
3085
3086 udelay(10);
3087 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3088 tg3_readphy(tp, MII_BMSR, &tmp))
3089 continue;
3090 if (!(tmp & BMSR_LSTATUS)) {
3091 udelay(40);
3092 break;
3093 }
3094 }
3095 tg3_writephy(tp, MII_BMCR, bmcr);
3096 udelay(40);
3097 }
3098 } else {
3099 tg3_writephy(tp, MII_BMCR,
3100 BMCR_ANENABLE | BMCR_ANRESTART);
3101 }
3102}
3103
3104static int tg3_init_5401phy_dsp(struct tg3 *tp)
3105{
3106 int err;
3107
3108 /* Turn off tap power management. */
3109 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003110 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003112 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3113 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3114 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3115 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3116 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
3118 udelay(40);
3119
3120 return err;
3121}
3122
Michael Chan3600d912006-12-07 00:21:48 -08003123static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
Michael Chan3600d912006-12-07 00:21:48 -08003125 u32 adv_reg, all_mask = 0;
3126
3127 if (mask & ADVERTISED_10baseT_Half)
3128 all_mask |= ADVERTISE_10HALF;
3129 if (mask & ADVERTISED_10baseT_Full)
3130 all_mask |= ADVERTISE_10FULL;
3131 if (mask & ADVERTISED_100baseT_Half)
3132 all_mask |= ADVERTISE_100HALF;
3133 if (mask & ADVERTISED_100baseT_Full)
3134 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
3136 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
3137 return 0;
3138
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 if ((adv_reg & all_mask) != all_mask)
3140 return 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003141 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 u32 tg3_ctrl;
3143
Michael Chan3600d912006-12-07 00:21:48 -08003144 all_mask = 0;
3145 if (mask & ADVERTISED_1000baseT_Half)
3146 all_mask |= ADVERTISE_1000HALF;
3147 if (mask & ADVERTISED_1000baseT_Full)
3148 all_mask |= ADVERTISE_1000FULL;
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 if (tg3_readphy(tp, MII_TG3_CTRL, &tg3_ctrl))
3151 return 0;
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 if ((tg3_ctrl & all_mask) != all_mask)
3154 return 0;
3155 }
3156 return 1;
3157}
3158
Matt Carlsonef167e22007-12-20 20:10:01 -08003159static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3160{
3161 u32 curadv, reqadv;
3162
3163 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3164 return 1;
3165
3166 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3167 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3168
3169 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3170 if (curadv != reqadv)
3171 return 0;
3172
Joe Perches63c3a662011-04-26 08:12:10 +00003173 if (tg3_flag(tp, PAUSE_AUTONEG))
Matt Carlsonef167e22007-12-20 20:10:01 -08003174 tg3_readphy(tp, MII_LPA, rmtadv);
3175 } else {
3176 /* Reprogram the advertisement register, even if it
3177 * does not affect the current link. If the link
3178 * gets renegotiated in the future, we can save an
3179 * additional renegotiation cycle by advertising
3180 * it correctly in the first place.
3181 */
3182 if (curadv != reqadv) {
3183 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3184 ADVERTISE_PAUSE_ASYM);
3185 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3186 }
3187 }
3188
3189 return 1;
3190}
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3193{
3194 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003195 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08003196 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 u16 current_speed;
3198 u8 current_duplex;
3199 int i, err;
3200
3201 tw32(MAC_EVENT, 0);
3202
3203 tw32_f(MAC_STATUS,
3204 (MAC_STATUS_SYNC_CHANGED |
3205 MAC_STATUS_CFG_CHANGED |
3206 MAC_STATUS_MI_COMPLETION |
3207 MAC_STATUS_LNKSTATE_CHANGED));
3208 udelay(40);
3209
Matt Carlson8ef21422008-05-02 16:47:53 -07003210 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3211 tw32_f(MAC_MI_MODE,
3212 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3213 udelay(80);
3214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003216 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218 /* Some third-party PHYs need to be reset on link going
3219 * down.
3220 */
3221 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3222 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3223 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3224 netif_carrier_ok(tp->dev)) {
3225 tg3_readphy(tp, MII_BMSR, &bmsr);
3226 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3227 !(bmsr & BMSR_LSTATUS))
3228 force_reset = 1;
3229 }
3230 if (force_reset)
3231 tg3_phy_reset(tp);
3232
Matt Carlson79eb6902010-02-17 15:17:03 +00003233 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 tg3_readphy(tp, MII_BMSR, &bmsr);
3235 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00003236 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 bmsr = 0;
3238
3239 if (!(bmsr & BMSR_LSTATUS)) {
3240 err = tg3_init_5401phy_dsp(tp);
3241 if (err)
3242 return err;
3243
3244 tg3_readphy(tp, MII_BMSR, &bmsr);
3245 for (i = 0; i < 1000; i++) {
3246 udelay(10);
3247 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3248 (bmsr & BMSR_LSTATUS)) {
3249 udelay(40);
3250 break;
3251 }
3252 }
3253
Matt Carlson79eb6902010-02-17 15:17:03 +00003254 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3255 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 !(bmsr & BMSR_LSTATUS) &&
3257 tp->link_config.active_speed == SPEED_1000) {
3258 err = tg3_phy_reset(tp);
3259 if (!err)
3260 err = tg3_init_5401phy_dsp(tp);
3261 if (err)
3262 return err;
3263 }
3264 }
3265 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3266 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3267 /* 5701 {A0,B0} CRC bug workaround */
3268 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00003269 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
3270 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
3271 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 }
3273
3274 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003275 tg3_readphy(tp, MII_TG3_ISTAT, &val);
3276 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003278 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003280 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3282
3283 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3284 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3285 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3286 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3287 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3288 else
3289 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3290 }
3291
3292 current_link_up = 0;
3293 current_speed = SPEED_INVALID;
3294 current_duplex = DUPLEX_INVALID;
3295
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003296 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00003297 err = tg3_phy_auxctl_read(tp,
3298 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3299 &val);
3300 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003301 tg3_phy_auxctl_write(tp,
3302 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3303 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 goto relink;
3305 }
3306 }
3307
3308 bmsr = 0;
3309 for (i = 0; i < 100; i++) {
3310 tg3_readphy(tp, MII_BMSR, &bmsr);
3311 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3312 (bmsr & BMSR_LSTATUS))
3313 break;
3314 udelay(40);
3315 }
3316
3317 if (bmsr & BMSR_LSTATUS) {
3318 u32 aux_stat, bmcr;
3319
3320 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3321 for (i = 0; i < 2000; i++) {
3322 udelay(10);
3323 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3324 aux_stat)
3325 break;
3326 }
3327
3328 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3329 &current_speed,
3330 &current_duplex);
3331
3332 bmcr = 0;
3333 for (i = 0; i < 200; i++) {
3334 tg3_readphy(tp, MII_BMCR, &bmcr);
3335 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3336 continue;
3337 if (bmcr && bmcr != 0x7fff)
3338 break;
3339 udelay(10);
3340 }
3341
Matt Carlsonef167e22007-12-20 20:10:01 -08003342 lcl_adv = 0;
3343 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Matt Carlsonef167e22007-12-20 20:10:01 -08003345 tp->link_config.active_speed = current_speed;
3346 tp->link_config.active_duplex = current_duplex;
3347
3348 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3349 if ((bmcr & BMCR_ANENABLE) &&
3350 tg3_copper_is_advertising_all(tp,
3351 tp->link_config.advertising)) {
3352 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3353 &rmt_adv))
3354 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
3356 } else {
3357 if (!(bmcr & BMCR_ANENABLE) &&
3358 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003359 tp->link_config.duplex == current_duplex &&
3360 tp->link_config.flowctrl ==
3361 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 }
3364 }
3365
Matt Carlsonef167e22007-12-20 20:10:01 -08003366 if (current_link_up == 1 &&
3367 tp->link_config.active_duplex == DUPLEX_FULL)
3368 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 }
3370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371relink:
Matt Carlson80096062010-08-02 11:26:06 +00003372 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 tg3_phy_copper_begin(tp);
3374
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003375 tg3_readphy(tp, MII_BMSR, &bmsr);
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. Millerf7383c22005-05-18 22:50:53 -07005249
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005250static int tg3_poll_msix(struct napi_struct *napi, int budget)
5251{
5252 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5253 struct tg3 *tp = tnapi->tp;
5254 int work_done = 0;
5255 struct tg3_hw_status *sblk = tnapi->hw_status;
5256
5257 while (1) {
5258 work_done = tg3_poll_work(tnapi, work_done, budget);
5259
Joe Perches63c3a662011-04-26 08:12:10 +00005260 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005261 goto tx_recovery;
5262
5263 if (unlikely(work_done >= budget))
5264 break;
5265
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005266 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005267 * to tell the hw how much work has been processed,
5268 * so we must read it before checking for more work.
5269 */
5270 tnapi->last_tag = sblk->status_tag;
5271 tnapi->last_irq_tag = tnapi->last_tag;
5272 rmb();
5273
5274 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00005275 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
5276 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005277 napi_complete(napi);
5278 /* Reenable interrupts. */
5279 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5280 mmiowb();
5281 break;
5282 }
5283 }
5284
5285 return work_done;
5286
5287tx_recovery:
5288 /* work_done is guaranteed to be less than budget. */
5289 napi_complete(napi);
5290 schedule_work(&tp->reset_task);
5291 return work_done;
5292}
5293
Matt Carlsone64de4e2011-04-13 11:05:05 +00005294static void tg3_process_error(struct tg3 *tp)
5295{
5296 u32 val;
5297 bool real_error = false;
5298
Joe Perches63c3a662011-04-26 08:12:10 +00005299 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00005300 return;
5301
5302 /* Check Flow Attention register */
5303 val = tr32(HOSTCC_FLOW_ATTN);
5304 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
5305 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
5306 real_error = true;
5307 }
5308
5309 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
5310 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
5311 real_error = true;
5312 }
5313
5314 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
5315 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
5316 real_error = true;
5317 }
5318
5319 if (!real_error)
5320 return;
5321
5322 tg3_dump_state(tp);
5323
Joe Perches63c3a662011-04-26 08:12:10 +00005324 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsone64de4e2011-04-13 11:05:05 +00005325 schedule_work(&tp->reset_task);
5326}
5327
David S. Miller6f535762007-10-11 18:08:29 -07005328static int tg3_poll(struct napi_struct *napi, int budget)
5329{
Matt Carlson8ef04422009-08-28 14:01:37 +00005330 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5331 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07005332 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00005333 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07005334
5335 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00005336 if (sblk->status & SD_STATUS_ERROR)
5337 tg3_process_error(tp);
5338
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005339 tg3_poll_link(tp);
5340
Matt Carlson17375d22009-08-28 14:02:18 +00005341 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07005342
Joe Perches63c3a662011-04-26 08:12:10 +00005343 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07005344 goto tx_recovery;
5345
5346 if (unlikely(work_done >= budget))
5347 break;
5348
Joe Perches63c3a662011-04-26 08:12:10 +00005349 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00005350 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07005351 * to tell the hw how much work has been processed,
5352 * so we must read it before checking for more work.
5353 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005354 tnapi->last_tag = sblk->status_tag;
5355 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07005356 rmb();
5357 } else
5358 sblk->status &= ~SD_STATUS_UPDATED;
5359
Matt Carlson17375d22009-08-28 14:02:18 +00005360 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005361 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00005362 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07005363 break;
5364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365 }
5366
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005367 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07005368
5369tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07005370 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08005371 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07005372 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07005373 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374}
5375
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005376static void tg3_napi_disable(struct tg3 *tp)
5377{
5378 int i;
5379
5380 for (i = tp->irq_cnt - 1; i >= 0; i--)
5381 napi_disable(&tp->napi[i].napi);
5382}
5383
5384static void tg3_napi_enable(struct tg3 *tp)
5385{
5386 int i;
5387
5388 for (i = 0; i < tp->irq_cnt; i++)
5389 napi_enable(&tp->napi[i].napi);
5390}
5391
5392static void tg3_napi_init(struct tg3 *tp)
5393{
5394 int i;
5395
5396 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
5397 for (i = 1; i < tp->irq_cnt; i++)
5398 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
5399}
5400
5401static void tg3_napi_fini(struct tg3 *tp)
5402{
5403 int i;
5404
5405 for (i = 0; i < tp->irq_cnt; i++)
5406 netif_napi_del(&tp->napi[i].napi);
5407}
5408
5409static inline void tg3_netif_stop(struct tg3 *tp)
5410{
5411 tp->dev->trans_start = jiffies; /* prevent tx timeout */
5412 tg3_napi_disable(tp);
5413 netif_tx_disable(tp->dev);
5414}
5415
5416static inline void tg3_netif_start(struct tg3 *tp)
5417{
5418 /* NOTE: unconditional netif_tx_wake_all_queues is only
5419 * appropriate so long as all callers are assured to
5420 * have free tx slots (such as after tg3_init_hw)
5421 */
5422 netif_tx_wake_all_queues(tp->dev);
5423
5424 tg3_napi_enable(tp);
5425 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
5426 tg3_enable_ints(tp);
5427}
5428
David S. Millerf47c11e2005-06-24 20:18:35 -07005429static void tg3_irq_quiesce(struct tg3 *tp)
5430{
Matt Carlson4f125f42009-09-01 12:55:02 +00005431 int i;
5432
David S. Millerf47c11e2005-06-24 20:18:35 -07005433 BUG_ON(tp->irq_sync);
5434
5435 tp->irq_sync = 1;
5436 smp_mb();
5437
Matt Carlson4f125f42009-09-01 12:55:02 +00005438 for (i = 0; i < tp->irq_cnt; i++)
5439 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07005440}
5441
David S. Millerf47c11e2005-06-24 20:18:35 -07005442/* Fully shutdown all tg3 driver activity elsewhere in the system.
5443 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5444 * with as well. Most of the time, this is not necessary except when
5445 * shutting down the device.
5446 */
5447static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5448{
Michael Chan46966542007-07-11 19:47:19 -07005449 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005450 if (irq_sync)
5451 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005452}
5453
5454static inline void tg3_full_unlock(struct tg3 *tp)
5455{
David S. Millerf47c11e2005-06-24 20:18:35 -07005456 spin_unlock_bh(&tp->lock);
5457}
5458
Michael Chanfcfa0a32006-03-20 22:28:41 -08005459/* One-shot MSI handler - Chip automatically disables interrupt
5460 * after sending MSI so driver doesn't have to do it.
5461 */
David Howells7d12e782006-10-05 14:55:46 +01005462static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005463{
Matt Carlson09943a12009-08-28 14:01:57 +00005464 struct tg3_napi *tnapi = dev_id;
5465 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005466
Matt Carlson898a56f2009-08-28 14:02:40 +00005467 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005468 if (tnapi->rx_rcb)
5469 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005470
5471 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005472 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005473
5474 return IRQ_HANDLED;
5475}
5476
Michael Chan88b06bc22005-04-21 17:13:25 -07005477/* MSI ISR - No need to check for interrupt sharing and no need to
5478 * flush status block and interrupt mailbox. PCI ordering rules
5479 * guarantee that MSI will arrive after the status block.
5480 */
David Howells7d12e782006-10-05 14:55:46 +01005481static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07005482{
Matt Carlson09943a12009-08-28 14:01:57 +00005483 struct tg3_napi *tnapi = dev_id;
5484 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07005485
Matt Carlson898a56f2009-08-28 14:02:40 +00005486 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005487 if (tnapi->rx_rcb)
5488 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07005489 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005490 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07005491 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005492 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07005493 * NIC to stop sending us irqs, engaging "in-intr-handler"
5494 * event coalescing.
5495 */
5496 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005497 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005498 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005499
Michael Chan88b06bc22005-04-21 17:13:25 -07005500 return IRQ_RETVAL(1);
5501}
5502
David Howells7d12e782006-10-05 14:55:46 +01005503static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504{
Matt Carlson09943a12009-08-28 14:01:57 +00005505 struct tg3_napi *tnapi = dev_id;
5506 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005507 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 unsigned int handled = 1;
5509
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 /* In INTx mode, it is possible for the interrupt to arrive at
5511 * the CPU before the status block posted prior to the interrupt.
5512 * Reading the PCI State register will confirm whether the
5513 * interrupt is ours and will flush the status block.
5514 */
Michael Chand18edcb2007-03-24 20:57:11 -07005515 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00005516 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005517 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5518 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005519 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005520 }
Michael Chand18edcb2007-03-24 20:57:11 -07005521 }
5522
5523 /*
5524 * Writing any value to intr-mbox-0 clears PCI INTA# and
5525 * chip-internal interrupt pending events.
5526 * Writing non-zero to intr-mbox-0 additional tells the
5527 * NIC to stop sending us irqs, engaging "in-intr-handler"
5528 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005529 *
5530 * Flush the mailbox to de-assert the IRQ immediately to prevent
5531 * spurious interrupts. The flush impacts performance but
5532 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005533 */
Michael Chanc04cb342007-05-07 00:26:15 -07005534 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005535 if (tg3_irq_sync(tp))
5536 goto out;
5537 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005538 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005539 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005540 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005541 } else {
5542 /* No work, shared interrupt perhaps? re-enable
5543 * interrupts, and flush that PCI write
5544 */
5545 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5546 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005547 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005548out:
David S. Millerfac9b832005-05-18 22:46:34 -07005549 return IRQ_RETVAL(handled);
5550}
5551
David Howells7d12e782006-10-05 14:55:46 +01005552static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005553{
Matt Carlson09943a12009-08-28 14:01:57 +00005554 struct tg3_napi *tnapi = dev_id;
5555 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005556 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005557 unsigned int handled = 1;
5558
David S. Millerfac9b832005-05-18 22:46:34 -07005559 /* In INTx mode, it is possible for the interrupt to arrive at
5560 * the CPU before the status block posted prior to the interrupt.
5561 * Reading the PCI State register will confirm whether the
5562 * interrupt is ours and will flush the status block.
5563 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005564 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00005565 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005566 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5567 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005568 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 }
Michael Chand18edcb2007-03-24 20:57:11 -07005570 }
5571
5572 /*
5573 * writing any value to intr-mbox-0 clears PCI INTA# and
5574 * chip-internal interrupt pending events.
5575 * writing non-zero to intr-mbox-0 additional tells the
5576 * NIC to stop sending us irqs, engaging "in-intr-handler"
5577 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005578 *
5579 * Flush the mailbox to de-assert the IRQ immediately to prevent
5580 * spurious interrupts. The flush impacts performance but
5581 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005582 */
Michael Chanc04cb342007-05-07 00:26:15 -07005583 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005584
5585 /*
5586 * In a shared interrupt configuration, sometimes other devices'
5587 * interrupts will scream. We record the current status tag here
5588 * so that the above check can report that the screaming interrupts
5589 * are unhandled. Eventually they will be silenced.
5590 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005591 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005592
Michael Chand18edcb2007-03-24 20:57:11 -07005593 if (tg3_irq_sync(tp))
5594 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005595
Matt Carlson72334482009-08-28 14:03:01 +00005596 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005597
Matt Carlson09943a12009-08-28 14:01:57 +00005598 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005599
David S. Millerf47c11e2005-06-24 20:18:35 -07005600out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 return IRQ_RETVAL(handled);
5602}
5603
Michael Chan79381092005-04-21 17:13:59 -07005604/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005605static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005606{
Matt Carlson09943a12009-08-28 14:01:57 +00005607 struct tg3_napi *tnapi = dev_id;
5608 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005609 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005610
Michael Chanf9804dd2005-09-27 12:13:10 -07005611 if ((sblk->status & SD_STATUS_UPDATED) ||
5612 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005613 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005614 return IRQ_RETVAL(1);
5615 }
5616 return IRQ_RETVAL(0);
5617}
5618
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005619static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005620static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Michael Chanb9ec6c12006-07-25 16:37:27 -07005622/* Restart hardware after configuration changes, self-test, etc.
5623 * Invoked with tp->lock held.
5624 */
5625static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005626 __releases(tp->lock)
5627 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005628{
5629 int err;
5630
5631 err = tg3_init_hw(tp, reset_phy);
5632 if (err) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00005633 netdev_err(tp->dev,
5634 "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07005635 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5636 tg3_full_unlock(tp);
5637 del_timer_sync(&tp->timer);
5638 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005639 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005640 dev_close(tp->dev);
5641 tg3_full_lock(tp, 0);
5642 }
5643 return err;
5644}
5645
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646#ifdef CONFIG_NET_POLL_CONTROLLER
5647static void tg3_poll_controller(struct net_device *dev)
5648{
Matt Carlson4f125f42009-09-01 12:55:02 +00005649 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07005650 struct tg3 *tp = netdev_priv(dev);
5651
Matt Carlson4f125f42009-09-01 12:55:02 +00005652 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00005653 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654}
5655#endif
5656
David Howellsc4028952006-11-22 14:57:56 +00005657static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658{
David Howellsc4028952006-11-22 14:57:56 +00005659 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005660 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 unsigned int restart_timer;
5662
Michael Chan7faa0062006-02-02 17:29:28 -08005663 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005664
5665 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005666 tg3_full_unlock(tp);
5667 return;
5668 }
5669
5670 tg3_full_unlock(tp);
5671
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005672 tg3_phy_stop(tp);
5673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 tg3_netif_stop(tp);
5675
David S. Millerf47c11e2005-06-24 20:18:35 -07005676 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677
Joe Perches63c3a662011-04-26 08:12:10 +00005678 restart_timer = tg3_flag(tp, RESTART_TIMER);
5679 tg3_flag_clear(tp, RESTART_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Joe Perches63c3a662011-04-26 08:12:10 +00005681 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
Michael Chandf3e6542006-05-26 17:48:07 -07005682 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5683 tp->write32_rx_mbox = tg3_write_flush_reg32;
Joe Perches63c3a662011-04-26 08:12:10 +00005684 tg3_flag_set(tp, MBOX_WRITE_REORDER);
5685 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005686 }
5687
Michael Chan944d9802005-05-29 14:57:48 -07005688 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005689 err = tg3_init_hw(tp, 1);
5690 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005691 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692
5693 tg3_netif_start(tp);
5694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695 if (restart_timer)
5696 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005697
Michael Chanb9ec6c12006-07-25 16:37:27 -07005698out:
Michael Chan7faa0062006-02-02 17:29:28 -08005699 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005700
5701 if (!err)
5702 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703}
5704
5705static void tg3_tx_timeout(struct net_device *dev)
5706{
5707 struct tg3 *tp = netdev_priv(dev);
5708
Michael Chanb0408752007-02-13 12:18:30 -08005709 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00005710 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00005711 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08005712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713
5714 schedule_work(&tp->reset_task);
5715}
5716
Michael Chanc58ec932005-09-17 00:46:27 -07005717/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5718static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5719{
5720 u32 base = (u32) mapping & 0xffffffff;
5721
Eric Dumazet807540b2010-09-23 05:40:09 +00005722 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07005723}
5724
Michael Chan72f2afb2006-03-06 19:28:35 -08005725/* Test for DMA addresses > 40-bit */
5726static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5727 int len)
5728{
5729#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00005730 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00005731 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08005732 return 0;
5733#else
5734 return 0;
5735#endif
5736}
5737
Matt 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
Michael Chan72f2afb2006-03-06 19:28:35 -08005761/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005762static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
5763 struct sk_buff *skb, u32 last_plus_one,
5764 u32 *start, u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005766 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07005767 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005768 dma_addr_t new_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769 u32 entry = *start;
Michael Chanc58ec932005-09-17 00:46:27 -07005770 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771
Matt Carlson41588ba2008-04-19 18:12:33 -07005772 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5773 new_skb = skb_copy(skb, GFP_ATOMIC);
5774 else {
5775 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5776
5777 new_skb = skb_copy_expand(skb,
5778 skb_headroom(skb) + more_headroom,
5779 skb_tailroom(skb), GFP_ATOMIC);
5780 }
5781
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005783 ret = -1;
5784 } else {
5785 /* New SKB is guaranteed to be linear. */
5786 entry = *start;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005787 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
5788 PCI_DMA_TODEVICE);
5789 /* Make sure the mapping succeeded */
5790 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
5791 ret = -1;
5792 dev_kfree_skb(new_skb);
5793 new_skb = NULL;
David S. Miller90079ce2008-09-11 04:52:51 -07005794
Michael Chanc58ec932005-09-17 00:46:27 -07005795 /* Make sure new skb does not cross any 4G boundaries.
5796 * Drop the packet if it does.
5797 */
Joe Perches63c3a662011-04-26 08:12:10 +00005798 } else if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
5799 tg3_4g_overflow_test(new_addr, new_skb->len)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005800 pci_unmap_single(tp->pdev, new_addr, new_skb->len,
5801 PCI_DMA_TODEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005802 ret = -1;
5803 dev_kfree_skb(new_skb);
5804 new_skb = NULL;
5805 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005806 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005807 base_flags, 1 | (mss << 1));
5808 *start = NEXT_TX(entry);
5809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 }
5811
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 /* Now clean up the sw ring entries. */
5813 i = 0;
5814 while (entry != last_plus_one) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005815 int len;
5816
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005817 if (i == 0)
Alexander Duyckf4188d82009-12-02 16:48:38 +00005818 len = skb_headlen(skb);
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005819 else
Alexander Duyckf4188d82009-12-02 16:48:38 +00005820 len = skb_shinfo(skb)->frags[i-1].size;
5821
5822 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005823 dma_unmap_addr(&tnapi->tx_buffers[entry],
Alexander Duyckf4188d82009-12-02 16:48:38 +00005824 mapping),
5825 len, PCI_DMA_TODEVICE);
5826 if (i == 0) {
5827 tnapi->tx_buffers[entry].skb = new_skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005828 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00005829 new_addr);
5830 } else {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005831 tnapi->tx_buffers[entry].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833 entry = NEXT_TX(entry);
5834 i++;
5835 }
5836
5837 dev_kfree_skb(skb);
5838
Michael Chanc58ec932005-09-17 00:46:27 -07005839 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840}
5841
Matt Carlson2ffcc982011-05-19 12:12:44 +00005842static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07005843
5844/* Use GSO to workaround a rare TSO bug that may be triggered when the
5845 * TSO header is greater than 80 bytes.
5846 */
5847static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
5848{
5849 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005850 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07005851
5852 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005853 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07005854 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00005855
5856 /* netif_tx_stop_queue() must be done before checking
5857 * checking tx index in tg3_tx_avail() below, because in
5858 * tg3_tx(), we update tx index before checking for
5859 * netif_tx_queue_stopped().
5860 */
5861 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005862 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08005863 return NETDEV_TX_BUSY;
5864
5865 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005866 }
5867
5868 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07005869 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07005870 goto tg3_tso_bug_end;
5871
5872 do {
5873 nskb = segs;
5874 segs = segs->next;
5875 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00005876 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07005877 } while (segs);
5878
5879tg3_tso_bug_end:
5880 dev_kfree_skb(skb);
5881
5882 return NETDEV_TX_OK;
5883}
Michael Chan52c0fd82006-06-29 20:15:54 -07005884
Michael Chan5a6f3072006-03-20 22:28:05 -08005885/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00005886 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08005887 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00005888static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08005889{
5890 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08005891 u32 len, entry, base_flags, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892 int would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07005893 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005894 struct tg3_napi *tnapi;
5895 struct netdev_queue *txq;
Alexander Duyckf4188d82009-12-02 16:48:38 +00005896 unsigned int i, last;
5897
Matt Carlson24f4efd2009-11-13 13:03:35 +00005898 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
5899 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00005900 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00005901 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902
Michael Chan00b70502006-06-17 21:58:45 -07005903 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005904 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07005905 * interrupt. Furthermore, IRQ processing runs lockless so we have
5906 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005908 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00005909 if (!netif_tx_queue_stopped(txq)) {
5910 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005911
5912 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00005913 netdev_err(dev,
5914 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08005915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 return NETDEV_TX_BUSY;
5917 }
5918
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005919 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07005921 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00005923
Matt Carlsonbe98da62010-07-11 09:31:46 +00005924 mss = skb_shinfo(skb)->gso_size;
5925 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005926 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00005927 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
5929 if (skb_header_cloned(skb) &&
5930 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
5931 dev_kfree_skb(skb);
5932 goto out_unlock;
5933 }
5934
Matt Carlson34195c32010-07-11 09:31:42 +00005935 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07005936 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
Matt Carlson02e96082010-09-15 08:59:59 +00005938 if (skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00005939 hdr_len = skb_headlen(skb) - ETH_HLEN;
5940 } else {
5941 u32 ip_tcp_len;
5942
5943 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
5944 hdr_len = ip_tcp_len + tcp_opt_len;
5945
5946 iph->check = 0;
5947 iph->tot_len = htons(mss + hdr_len);
5948 }
5949
Michael Chan52c0fd82006-06-29 20:15:54 -07005950 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00005951 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00005952 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07005953
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
5955 TXD_FLAG_CPU_POST_DMA);
5956
Joe Perches63c3a662011-04-26 08:12:10 +00005957 if (tg3_flag(tp, HW_TSO_1) ||
5958 tg3_flag(tp, HW_TSO_2) ||
5959 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005960 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07005962 } else
5963 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5964 iph->daddr, 0,
5965 IPPROTO_TCP,
5966 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
Joe Perches63c3a662011-04-26 08:12:10 +00005968 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00005969 mss |= (hdr_len & 0xc) << 12;
5970 if (hdr_len & 0x10)
5971 base_flags |= 0x00000010;
5972 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00005973 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005974 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00005975 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00005976 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005977 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 int tsflags;
5979
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005980 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981 mss |= (tsflags << 11);
5982 }
5983 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005984 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 int tsflags;
5986
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07005987 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 base_flags |= tsflags << 12;
5989 }
5990 }
5991 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00005992
Jesse Grosseab6d182010-10-20 13:56:03 +00005993 if (vlan_tx_tag_present(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 base_flags |= (TXD_FLAG_VLAN |
5995 (vlan_tx_tag_get(skb) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996
Joe Perches63c3a662011-04-26 08:12:10 +00005997 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
Matt Carlson8fc2f992010-12-06 08:28:49 +00005998 !mss && skb->len > VLAN_ETH_FRAME_LEN)
Matt Carlson615774f2009-11-13 13:03:39 +00005999 base_flags |= TXD_FLAG_JMB_PKT;
6000
Alexander Duyckf4188d82009-12-02 16:48:38 +00006001 len = skb_headlen(skb);
6002
6003 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
6004 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07006005 dev_kfree_skb(skb);
6006 goto out_unlock;
6007 }
6008
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006009 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006010 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011
6012 would_hit_hwbug = 0;
6013
Joe Perches63c3a662011-04-26 08:12:10 +00006014 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006015 would_hit_hwbug = 1;
6016
Joe Perches63c3a662011-04-26 08:12:10 +00006017 if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006018 tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba2008-04-19 18:12:33 -07006019 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00006020
Joe Perches63c3a662011-04-26 08:12:10 +00006021 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006022 tg3_40bit_overflow_test(tp, mapping, len))
6023 would_hit_hwbug = 1;
6024
Joe Perches63c3a662011-04-26 08:12:10 +00006025 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006026 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006028 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
6030
6031 entry = NEXT_TX(entry);
6032
6033 /* Now loop through additional data fragments, and queue them. */
6034 if (skb_shinfo(skb)->nr_frags > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 last = skb_shinfo(skb)->nr_frags - 1;
6036 for (i = 0; i <= last; i++) {
6037 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6038
6039 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006040 mapping = pci_map_page(tp->pdev,
6041 frag->page,
6042 frag->page_offset,
6043 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006045 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006046 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006047 mapping);
6048 if (pci_dma_mapping_error(tp->pdev, mapping))
6049 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
Joe Perches63c3a662011-04-26 08:12:10 +00006051 if (tg3_flag(tp, SHORT_DMA_BUG) &&
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006052 len <= 8)
6053 would_hit_hwbug = 1;
6054
Joe Perches63c3a662011-04-26 08:12:10 +00006055 if (tg3_flag(tp, 4G_DMA_BNDRY_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006056 tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07006057 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058
Joe Perches63c3a662011-04-26 08:12:10 +00006059 if (tg3_flag(tp, 40BIT_DMA_LIMIT_BUG) &&
Matt Carlson0e1406d2009-11-02 12:33:33 +00006060 tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08006061 would_hit_hwbug = 1;
6062
Joe Perches63c3a662011-04-26 08:12:10 +00006063 if (tg3_flag(tp, HW_TSO_1) ||
6064 tg3_flag(tp, HW_TSO_2) ||
6065 tg3_flag(tp, HW_TSO_3))
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006066 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067 base_flags, (i == last)|(mss << 1));
6068 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006069 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 base_flags, (i == last));
6071
6072 entry = NEXT_TX(entry);
6073 }
6074 }
6075
6076 if (would_hit_hwbug) {
6077 u32 last_plus_one = entry;
6078 u32 start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Michael Chanc58ec932005-09-17 00:46:27 -07006080 start = entry - 1 - skb_shinfo(skb)->nr_frags;
6081 start &= (TG3_TX_RING_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
6083 /* If the workaround fails due to memory/mapping
6084 * failure, silently drop this packet.
6085 */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006086 if (tigon3_dma_hwbug_workaround(tnapi, skb, last_plus_one,
Michael Chanc58ec932005-09-17 00:46:27 -07006087 &start, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 goto out_unlock;
6089
6090 entry = start;
6091 }
6092
6093 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006094 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006096 tnapi->tx_prod = entry;
6097 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006098 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006099
6100 /* netif_tx_stop_queue() must be done before checking
6101 * checking tx index in tg3_tx_avail() below, because in
6102 * tg3_tx(), we update tx index before checking for
6103 * netif_tx_queue_stopped().
6104 */
6105 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006106 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006107 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109
6110out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006111 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112
6113 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006114
6115dma_error:
6116 last = i;
6117 entry = tnapi->tx_prod;
6118 tnapi->tx_buffers[entry].skb = NULL;
6119 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006120 dma_unmap_addr(&tnapi->tx_buffers[entry], mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006121 skb_headlen(skb),
6122 PCI_DMA_TODEVICE);
6123 for (i = 0; i <= last; i++) {
6124 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6125 entry = NEXT_TX(entry);
6126
6127 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006128 dma_unmap_addr(&tnapi->tx_buffers[entry],
Alexander Duyckf4188d82009-12-02 16:48:38 +00006129 mapping),
6130 frag->size, PCI_DMA_TODEVICE);
6131 }
6132
6133 dev_kfree_skb(skb);
6134 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135}
6136
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006137static void tg3_set_loopback(struct net_device *dev, u32 features)
6138{
6139 struct tg3 *tp = netdev_priv(dev);
6140
6141 if (features & NETIF_F_LOOPBACK) {
6142 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
6143 return;
6144
6145 /*
6146 * Clear MAC_MODE_HALF_DUPLEX or you won't get packets back in
6147 * loopback mode if Half-Duplex mode was negotiated earlier.
6148 */
6149 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
6150
6151 /* Enable internal MAC loopback mode */
6152 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
6153 spin_lock_bh(&tp->lock);
6154 tw32(MAC_MODE, tp->mac_mode);
6155 netif_carrier_on(tp->dev);
6156 spin_unlock_bh(&tp->lock);
6157 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
6158 } else {
6159 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
6160 return;
6161
6162 /* Disable internal MAC loopback mode */
6163 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
6164 spin_lock_bh(&tp->lock);
6165 tw32(MAC_MODE, tp->mac_mode);
6166 /* Force link status check */
6167 tg3_setup_phy(tp, 1);
6168 spin_unlock_bh(&tp->lock);
6169 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
6170 }
6171}
6172
Michał Mirosławdc668912011-04-07 03:35:07 +00006173static u32 tg3_fix_features(struct net_device *dev, u32 features)
6174{
6175 struct tg3 *tp = netdev_priv(dev);
6176
Joe Perches63c3a662011-04-26 08:12:10 +00006177 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00006178 features &= ~NETIF_F_ALL_TSO;
6179
6180 return features;
6181}
6182
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006183static int tg3_set_features(struct net_device *dev, u32 features)
6184{
6185 u32 changed = dev->features ^ features;
6186
6187 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
6188 tg3_set_loopback(dev, features);
6189
6190 return 0;
6191}
6192
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
6194 int new_mtu)
6195{
6196 dev->mtu = new_mtu;
6197
Michael Chanef7f5ec2005-07-25 12:32:25 -07006198 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00006199 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00006200 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00006201 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006202 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006203 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006204 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07006205 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006206 if (tg3_flag(tp, 5780_CLASS)) {
6207 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00006208 netdev_update_features(dev);
6209 }
Joe Perches63c3a662011-04-26 08:12:10 +00006210 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07006211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212}
6213
6214static int tg3_change_mtu(struct net_device *dev, int new_mtu)
6215{
6216 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006217 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
6219 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
6220 return -EINVAL;
6221
6222 if (!netif_running(dev)) {
6223 /* We'll just catch it later when the
6224 * device is up'd.
6225 */
6226 tg3_set_mtu(dev, tp, new_mtu);
6227 return 0;
6228 }
6229
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006230 tg3_phy_stop(tp);
6231
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006233
6234 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235
Michael Chan944d9802005-05-29 14:57:48 -07006236 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
6238 tg3_set_mtu(dev, tp, new_mtu);
6239
Michael Chanb9ec6c12006-07-25 16:37:27 -07006240 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241
Michael Chanb9ec6c12006-07-25 16:37:27 -07006242 if (!err)
6243 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244
David S. Millerf47c11e2005-06-24 20:18:35 -07006245 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006247 if (!err)
6248 tg3_phy_start(tp);
6249
Michael Chanb9ec6c12006-07-25 16:37:27 -07006250 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251}
6252
Matt Carlson21f581a2009-08-28 14:00:25 +00006253static void tg3_rx_prodring_free(struct tg3 *tp,
6254 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256 int i;
6257
Matt Carlson8fea32b2010-09-15 08:59:58 +00006258 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006259 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006260 i = (i + 1) & tp->rx_std_ring_mask)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006261 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6262 tp->rx_pkt_map_sz);
6263
Joe Perches63c3a662011-04-26 08:12:10 +00006264 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006265 for (i = tpr->rx_jmb_cons_idx;
6266 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006267 i = (i + 1) & tp->rx_jmb_ring_mask) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006268 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6269 TG3_RX_JMB_MAP_SZ);
6270 }
6271 }
6272
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006273 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275
Matt Carlson2c49a442010-09-30 10:34:35 +00006276 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006277 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6278 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279
Joe Perches63c3a662011-04-26 08:12:10 +00006280 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006281 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006282 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6283 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284 }
6285}
6286
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006287/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288 *
6289 * The chip has been shut down and the driver detached from
6290 * the networking, so no interrupts or new tx packets will
6291 * end up in the driver. tp->{tx,}lock are held and thus
6292 * we may not sleep.
6293 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006294static int tg3_rx_prodring_alloc(struct tg3 *tp,
6295 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296{
Matt Carlson287be122009-08-28 13:58:46 +00006297 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006299 tpr->rx_std_cons_idx = 0;
6300 tpr->rx_std_prod_idx = 0;
6301 tpr->rx_jmb_cons_idx = 0;
6302 tpr->rx_jmb_prod_idx = 0;
6303
Matt Carlson8fea32b2010-09-15 08:59:58 +00006304 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006305 memset(&tpr->rx_std_buffers[0], 0,
6306 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00006307 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006308 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00006309 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006310 goto done;
6311 }
6312
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00006314 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315
Matt Carlson287be122009-08-28 13:58:46 +00006316 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00006317 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006318 tp->dev->mtu > ETH_DATA_LEN)
6319 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6320 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07006321
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322 /* Initialize invariants of the rings, we only set this
6323 * stuff once. This works because the card does not
6324 * write into the rx buffer posting rings.
6325 */
Matt Carlson2c49a442010-09-30 10:34:35 +00006326 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327 struct tg3_rx_buffer_desc *rxd;
6328
Matt Carlson21f581a2009-08-28 14:00:25 +00006329 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006330 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6332 rxd->opaque = (RXD_OPAQUE_RING_STD |
6333 (i << RXD_OPAQUE_INDEX_SHIFT));
6334 }
6335
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006336 /* Now allocate fresh SKBs for each rx ring. */
6337 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006338 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006339 netdev_warn(tp->dev,
6340 "Using a smaller RX standard ring. Only "
6341 "%d out of %d buffers were allocated "
6342 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006343 if (i == 0)
6344 goto initfail;
6345 tp->rx_pending = i;
6346 break;
6347 }
6348 }
6349
Joe Perches63c3a662011-04-26 08:12:10 +00006350 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006351 goto done;
6352
Matt Carlson2c49a442010-09-30 10:34:35 +00006353 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006354
Joe Perches63c3a662011-04-26 08:12:10 +00006355 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00006356 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357
Matt Carlson2c49a442010-09-30 10:34:35 +00006358 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00006359 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360
Matt Carlson0d86df82010-02-17 15:17:00 +00006361 rxd = &tpr->rx_jmb[i].std;
6362 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6363 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6364 RXD_FLAG_JUMBO;
6365 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6366 (i << RXD_OPAQUE_INDEX_SHIFT));
6367 }
6368
6369 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6370 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006371 netdev_warn(tp->dev,
6372 "Using a smaller RX jumbo ring. Only %d "
6373 "out of %d buffers were allocated "
6374 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00006375 if (i == 0)
6376 goto initfail;
6377 tp->rx_jumbo_pending = i;
6378 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379 }
6380 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006381
6382done:
Michael Chan32d8c572006-07-25 16:38:29 -07006383 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006384
6385initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006386 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006387 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388}
6389
Matt Carlson21f581a2009-08-28 14:00:25 +00006390static void tg3_rx_prodring_fini(struct tg3 *tp,
6391 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392{
Matt Carlson21f581a2009-08-28 14:00:25 +00006393 kfree(tpr->rx_std_buffers);
6394 tpr->rx_std_buffers = NULL;
6395 kfree(tpr->rx_jmb_buffers);
6396 tpr->rx_jmb_buffers = NULL;
6397 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006398 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
6399 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006400 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006402 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006403 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
6404 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006405 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006407}
6408
Matt Carlson21f581a2009-08-28 14:00:25 +00006409static int tg3_rx_prodring_init(struct tg3 *tp,
6410 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006411{
Matt Carlson2c49a442010-09-30 10:34:35 +00006412 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
6413 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006414 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006415 return -ENOMEM;
6416
Matt Carlson4bae65c2010-11-24 08:31:52 +00006417 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
6418 TG3_RX_STD_RING_BYTES(tp),
6419 &tpr->rx_std_mapping,
6420 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006421 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006422 goto err_out;
6423
Joe Perches63c3a662011-04-26 08:12:10 +00006424 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006425 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00006426 GFP_KERNEL);
6427 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006428 goto err_out;
6429
Matt Carlson4bae65c2010-11-24 08:31:52 +00006430 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
6431 TG3_RX_JMB_RING_BYTES(tp),
6432 &tpr->rx_jmb_mapping,
6433 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006434 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006435 goto err_out;
6436 }
6437
6438 return 0;
6439
6440err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006441 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006442 return -ENOMEM;
6443}
6444
6445/* Free up pending packets in all rx/tx rings.
6446 *
6447 * The chip has been shut down and the driver detached from
6448 * the networking, so no interrupts or new tx packets will
6449 * end up in the driver. tp->{tx,}lock is not held and we are not
6450 * in an interrupt context and thus may sleep.
6451 */
6452static void tg3_free_rings(struct tg3 *tp)
6453{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006454 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006455
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006456 for (j = 0; j < tp->irq_cnt; j++) {
6457 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006458
Matt Carlson8fea32b2010-09-15 08:59:58 +00006459 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00006460
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006461 if (!tnapi->tx_buffers)
6462 continue;
6463
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006464 for (i = 0; i < TG3_TX_RING_SIZE; ) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006465 struct ring_info *txp;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006466 struct sk_buff *skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006467 unsigned int k;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006468
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006469 txp = &tnapi->tx_buffers[i];
6470 skb = txp->skb;
6471
6472 if (skb == NULL) {
6473 i++;
6474 continue;
6475 }
6476
Alexander Duyckf4188d82009-12-02 16:48:38 +00006477 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006478 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006479 skb_headlen(skb),
6480 PCI_DMA_TODEVICE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006481 txp->skb = NULL;
6482
Alexander Duyckf4188d82009-12-02 16:48:38 +00006483 i++;
6484
6485 for (k = 0; k < skb_shinfo(skb)->nr_frags; k++) {
6486 txp = &tnapi->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
6487 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006488 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006489 skb_shinfo(skb)->frags[k].size,
6490 PCI_DMA_TODEVICE);
6491 i++;
6492 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006493
6494 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006495 }
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006496 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006497}
6498
6499/* Initialize tx/rx rings for packet processing.
6500 *
6501 * The chip has been shut down and the driver detached from
6502 * the networking, so no interrupts or new tx packets will
6503 * end up in the driver. tp->{tx,}lock are held and thus
6504 * we may not sleep.
6505 */
6506static int tg3_init_rings(struct tg3 *tp)
6507{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006508 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006509
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006510 /* Free up all the SKBs. */
6511 tg3_free_rings(tp);
6512
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006513 for (i = 0; i < tp->irq_cnt; i++) {
6514 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006515
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006516 tnapi->last_tag = 0;
6517 tnapi->last_irq_tag = 0;
6518 tnapi->hw_status->status = 0;
6519 tnapi->hw_status->status_tag = 0;
6520 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6521
6522 tnapi->tx_prod = 0;
6523 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006524 if (tnapi->tx_ring)
6525 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006526
6527 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006528 if (tnapi->rx_rcb)
6529 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006530
Matt Carlson8fea32b2010-09-15 08:59:58 +00006531 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00006532 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006533 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006534 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006535 }
Matt Carlson72334482009-08-28 14:03:01 +00006536
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006537 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006538}
6539
6540/*
6541 * Must not be invoked with interrupt sources disabled and
6542 * the hardware shutdown down.
6543 */
6544static void tg3_free_consistent(struct tg3 *tp)
6545{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006546 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006547
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006548 for (i = 0; i < tp->irq_cnt; i++) {
6549 struct tg3_napi *tnapi = &tp->napi[i];
6550
6551 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006552 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006553 tnapi->tx_ring, tnapi->tx_desc_mapping);
6554 tnapi->tx_ring = NULL;
6555 }
6556
6557 kfree(tnapi->tx_buffers);
6558 tnapi->tx_buffers = NULL;
6559
6560 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006561 dma_free_coherent(&tp->pdev->dev,
6562 TG3_RX_RCB_RING_BYTES(tp),
6563 tnapi->rx_rcb,
6564 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006565 tnapi->rx_rcb = NULL;
6566 }
6567
Matt Carlson8fea32b2010-09-15 08:59:58 +00006568 tg3_rx_prodring_fini(tp, &tnapi->prodring);
6569
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006570 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006571 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
6572 tnapi->hw_status,
6573 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006574 tnapi->hw_status = NULL;
6575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006577
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006579 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
6580 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581 tp->hw_stats = NULL;
6582 }
6583}
6584
6585/*
6586 * Must not be invoked with interrupt sources disabled and
6587 * the hardware shutdown down. Can sleep.
6588 */
6589static int tg3_alloc_consistent(struct tg3 *tp)
6590{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006591 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006592
Matt Carlson4bae65c2010-11-24 08:31:52 +00006593 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
6594 sizeof(struct tg3_hw_stats),
6595 &tp->stats_mapping,
6596 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597 if (!tp->hw_stats)
6598 goto err_out;
6599
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6601
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006602 for (i = 0; i < tp->irq_cnt; i++) {
6603 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006604 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006605
Matt Carlson4bae65c2010-11-24 08:31:52 +00006606 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
6607 TG3_HW_STATUS_SIZE,
6608 &tnapi->status_mapping,
6609 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006610 if (!tnapi->hw_status)
6611 goto err_out;
6612
6613 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006614 sblk = tnapi->hw_status;
6615
Matt Carlson8fea32b2010-09-15 08:59:58 +00006616 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
6617 goto err_out;
6618
Matt Carlson19cfaec2009-12-03 08:36:20 +00006619 /* If multivector TSS is enabled, vector 0 does not handle
6620 * tx interrupts. Don't allocate any resources for it.
6621 */
Joe Perches63c3a662011-04-26 08:12:10 +00006622 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
6623 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00006624 tnapi->tx_buffers = kzalloc(sizeof(struct ring_info) *
6625 TG3_TX_RING_SIZE,
6626 GFP_KERNEL);
6627 if (!tnapi->tx_buffers)
6628 goto err_out;
6629
Matt Carlson4bae65c2010-11-24 08:31:52 +00006630 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
6631 TG3_TX_RING_BYTES,
6632 &tnapi->tx_desc_mapping,
6633 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00006634 if (!tnapi->tx_ring)
6635 goto err_out;
6636 }
6637
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006638 /*
6639 * When RSS is enabled, the status block format changes
6640 * slightly. The "rx_jumbo_consumer", "reserved",
6641 * and "rx_mini_consumer" members get mapped to the
6642 * other three rx return ring producer indexes.
6643 */
6644 switch (i) {
6645 default:
6646 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6647 break;
6648 case 2:
6649 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6650 break;
6651 case 3:
6652 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6653 break;
6654 case 4:
6655 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6656 break;
6657 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006658
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006659 /*
6660 * If multivector RSS is enabled, vector 0 does not handle
6661 * rx or tx interrupts. Don't allocate any resources for it.
6662 */
Joe Perches63c3a662011-04-26 08:12:10 +00006663 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006664 continue;
6665
Matt Carlson4bae65c2010-11-24 08:31:52 +00006666 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
6667 TG3_RX_RCB_RING_BYTES(tp),
6668 &tnapi->rx_rcb_mapping,
6669 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006670 if (!tnapi->rx_rcb)
6671 goto err_out;
6672
6673 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006674 }
6675
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676 return 0;
6677
6678err_out:
6679 tg3_free_consistent(tp);
6680 return -ENOMEM;
6681}
6682
6683#define MAX_WAIT_CNT 1000
6684
6685/* To stop a block, clear the enable bit and poll till it
6686 * clears. tp->lock is held.
6687 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006688static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689{
6690 unsigned int i;
6691 u32 val;
6692
Joe Perches63c3a662011-04-26 08:12:10 +00006693 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694 switch (ofs) {
6695 case RCVLSC_MODE:
6696 case DMAC_MODE:
6697 case MBFREE_MODE:
6698 case BUFMGR_MODE:
6699 case MEMARB_MODE:
6700 /* We can't enable/disable these bits of the
6701 * 5705/5750, just say success.
6702 */
6703 return 0;
6704
6705 default:
6706 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708 }
6709
6710 val = tr32(ofs);
6711 val &= ~enable_bit;
6712 tw32_f(ofs, val);
6713
6714 for (i = 0; i < MAX_WAIT_CNT; i++) {
6715 udelay(100);
6716 val = tr32(ofs);
6717 if ((val & enable_bit) == 0)
6718 break;
6719 }
6720
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006721 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00006722 dev_err(&tp->pdev->dev,
6723 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
6724 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725 return -ENODEV;
6726 }
6727
6728 return 0;
6729}
6730
6731/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006732static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733{
6734 int i, err;
6735
6736 tg3_disable_ints(tp);
6737
6738 tp->rx_mode &= ~RX_MODE_ENABLE;
6739 tw32_f(MAC_RX_MODE, tp->rx_mode);
6740 udelay(10);
6741
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006742 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6743 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6744 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6745 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6746 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6747 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006749 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6750 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6751 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6752 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6753 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6754 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6755 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756
6757 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6758 tw32_f(MAC_MODE, tp->mac_mode);
6759 udelay(40);
6760
6761 tp->tx_mode &= ~TX_MODE_ENABLE;
6762 tw32_f(MAC_TX_MODE, tp->tx_mode);
6763
6764 for (i = 0; i < MAX_WAIT_CNT; i++) {
6765 udelay(100);
6766 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6767 break;
6768 }
6769 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00006770 dev_err(&tp->pdev->dev,
6771 "%s timed out, TX_MODE_ENABLE will not clear "
6772 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006773 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774 }
6775
Michael Chane6de8ad2005-05-05 14:42:41 -07006776 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006777 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6778 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779
6780 tw32(FTQ_RESET, 0xffffffff);
6781 tw32(FTQ_RESET, 0x00000000);
6782
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006783 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6784 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006786 for (i = 0; i < tp->irq_cnt; i++) {
6787 struct tg3_napi *tnapi = &tp->napi[i];
6788 if (tnapi->hw_status)
6789 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791 if (tp->hw_stats)
6792 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6793
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794 return err;
6795}
6796
Matt Carlson0d3031d2007-10-10 18:02:43 -07006797static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6798{
6799 int i;
6800 u32 apedata;
6801
Matt Carlsondc6d0742010-09-15 08:59:55 +00006802 /* NCSI does not support APE events */
Joe Perches63c3a662011-04-26 08:12:10 +00006803 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsondc6d0742010-09-15 08:59:55 +00006804 return;
6805
Matt Carlson0d3031d2007-10-10 18:02:43 -07006806 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6807 if (apedata != APE_SEG_SIG_MAGIC)
6808 return;
6809
6810 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006811 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006812 return;
6813
6814 /* Wait for up to 1 millisecond for APE to service previous event. */
6815 for (i = 0; i < 10; i++) {
6816 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6817 return;
6818
6819 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6820
6821 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6822 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6823 event | APE_EVENT_STATUS_EVENT_PENDING);
6824
6825 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6826
6827 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6828 break;
6829
6830 udelay(100);
6831 }
6832
6833 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6834 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6835}
6836
6837static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6838{
6839 u32 event;
6840 u32 apedata;
6841
Joe Perches63c3a662011-04-26 08:12:10 +00006842 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006843 return;
6844
6845 switch (kind) {
Matt Carlson33f401a2010-04-05 10:19:27 +00006846 case RESET_KIND_INIT:
6847 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6848 APE_HOST_SEG_SIG_MAGIC);
6849 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6850 APE_HOST_SEG_LEN_MAGIC);
6851 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6852 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6853 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
Matt Carlson6867c842010-07-11 09:31:44 +00006854 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
Matt Carlson33f401a2010-04-05 10:19:27 +00006855 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6856 APE_HOST_BEHAV_NO_PHYLOCK);
Matt Carlsondc6d0742010-09-15 08:59:55 +00006857 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
6858 TG3_APE_HOST_DRVR_STATE_START);
Matt Carlson0d3031d2007-10-10 18:02:43 -07006859
Matt Carlson33f401a2010-04-05 10:19:27 +00006860 event = APE_EVENT_STATUS_STATE_START;
6861 break;
6862 case RESET_KIND_SHUTDOWN:
6863 /* With the interface we are currently using,
6864 * APE does not track driver state. Wiping
6865 * out the HOST SEGMENT SIGNATURE forces
6866 * the APE to assume OS absent status.
6867 */
6868 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
Matt Carlsonb2aee152008-11-03 16:51:11 -08006869
Matt Carlsondc6d0742010-09-15 08:59:55 +00006870 if (device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006871 tg3_flag(tp, WOL_ENABLE)) {
Matt Carlsondc6d0742010-09-15 08:59:55 +00006872 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
6873 TG3_APE_HOST_WOL_SPEED_AUTO);
6874 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
6875 } else
6876 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
6877
6878 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
6879
Matt Carlson33f401a2010-04-05 10:19:27 +00006880 event = APE_EVENT_STATUS_STATE_UNLOAD;
6881 break;
6882 case RESET_KIND_SUSPEND:
6883 event = APE_EVENT_STATUS_STATE_SUSPEND;
6884 break;
6885 default:
6886 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -07006887 }
6888
6889 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
6890
6891 tg3_ape_send_event(tp, event);
6892}
6893
Michael Chane6af3012005-04-21 17:12:05 -07006894/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
6896{
David S. Millerf49639e2006-06-09 11:58:36 -07006897 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
6898 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899
Joe Perches63c3a662011-04-26 08:12:10 +00006900 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901 switch (kind) {
6902 case RESET_KIND_INIT:
6903 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6904 DRV_STATE_START);
6905 break;
6906
6907 case RESET_KIND_SHUTDOWN:
6908 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6909 DRV_STATE_UNLOAD);
6910 break;
6911
6912 case RESET_KIND_SUSPEND:
6913 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6914 DRV_STATE_SUSPEND);
6915 break;
6916
6917 default:
6918 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006921
6922 if (kind == RESET_KIND_INIT ||
6923 kind == RESET_KIND_SUSPEND)
6924 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925}
6926
6927/* tp->lock is held. */
6928static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
6929{
Joe Perches63c3a662011-04-26 08:12:10 +00006930 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931 switch (kind) {
6932 case RESET_KIND_INIT:
6933 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6934 DRV_STATE_START_DONE);
6935 break;
6936
6937 case RESET_KIND_SHUTDOWN:
6938 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6939 DRV_STATE_UNLOAD_DONE);
6940 break;
6941
6942 default:
6943 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07006946
6947 if (kind == RESET_KIND_SHUTDOWN)
6948 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949}
6950
6951/* tp->lock is held. */
6952static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
6953{
Joe Perches63c3a662011-04-26 08:12:10 +00006954 if (tg3_flag(tp, ENABLE_ASF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955 switch (kind) {
6956 case RESET_KIND_INIT:
6957 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6958 DRV_STATE_START);
6959 break;
6960
6961 case RESET_KIND_SHUTDOWN:
6962 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6963 DRV_STATE_UNLOAD);
6964 break;
6965
6966 case RESET_KIND_SUSPEND:
6967 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
6968 DRV_STATE_SUSPEND);
6969 break;
6970
6971 default:
6972 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006974 }
6975}
6976
Michael Chan7a6f4362006-09-27 16:03:31 -07006977static int tg3_poll_fw(struct tg3 *tp)
6978{
6979 int i;
6980 u32 val;
6981
Michael Chanb5d37722006-09-27 16:06:21 -07006982 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08006983 /* Wait up to 20ms for init done. */
6984 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07006985 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
6986 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08006987 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07006988 }
6989 return -ENODEV;
6990 }
6991
Michael Chan7a6f4362006-09-27 16:03:31 -07006992 /* Wait for firmware initialization to complete. */
6993 for (i = 0; i < 100000; i++) {
6994 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
6995 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
6996 break;
6997 udelay(10);
6998 }
6999
7000 /* Chip might not be fitted with firmware. Some Sun onboard
7001 * parts are configured like that. So don't signal the timeout
7002 * of the above loop as an error, but do report the lack of
7003 * running firmware once.
7004 */
Joe Perches63c3a662011-04-26 08:12:10 +00007005 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
7006 tg3_flag_set(tp, NO_FWARE_REPORTED);
Michael Chan7a6f4362006-09-27 16:03:31 -07007007
Joe Perches05dbe002010-02-17 19:44:19 +00007008 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07007009 }
7010
Matt Carlson6b10c162010-02-12 14:47:08 +00007011 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
7012 /* The 57765 A0 needs a little more
7013 * time to do some important work.
7014 */
7015 mdelay(10);
7016 }
7017
Michael Chan7a6f4362006-09-27 16:03:31 -07007018 return 0;
7019}
7020
Michael Chanee6a99b2007-07-18 21:49:10 -07007021/* Save PCI command register before chip reset */
7022static void tg3_save_pci_state(struct tg3 *tp)
7023{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007024 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007025}
7026
7027/* Restore PCI state after chip reset */
7028static void tg3_restore_pci_state(struct tg3 *tp)
7029{
7030 u32 val;
7031
7032 /* Re-enable indirect register accesses. */
7033 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7034 tp->misc_host_ctrl);
7035
7036 /* Set MAX PCI retry to zero. */
7037 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7038 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007039 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007040 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007041 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007042 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007043 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007044 PCISTATE_ALLOW_APE_SHMEM_WR |
7045 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007046 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7047
Matt Carlson8a6eac92007-10-21 16:17:55 -07007048 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007049
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007050 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +00007051 if (tg3_flag(tp, PCI_EXPRESS))
Matt Carlsoncf790032010-11-24 08:31:48 +00007052 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007053 else {
7054 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7055 tp->pci_cacheline_sz);
7056 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7057 tp->pci_lat_timer);
7058 }
Michael Chan114342f2007-10-15 02:12:26 -07007059 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007060
Michael Chanee6a99b2007-07-18 21:49:10 -07007061 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007062 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007063 u16 pcix_cmd;
7064
7065 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7066 &pcix_cmd);
7067 pcix_cmd &= ~PCI_X_CMD_ERO;
7068 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7069 pcix_cmd);
7070 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007071
Joe Perches63c3a662011-04-26 08:12:10 +00007072 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007073
7074 /* Chip reset on 5780 will reset MSI enable bit,
7075 * so need to restore it.
7076 */
Joe Perches63c3a662011-04-26 08:12:10 +00007077 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007078 u16 ctrl;
7079
7080 pci_read_config_word(tp->pdev,
7081 tp->msi_cap + PCI_MSI_FLAGS,
7082 &ctrl);
7083 pci_write_config_word(tp->pdev,
7084 tp->msi_cap + PCI_MSI_FLAGS,
7085 ctrl | PCI_MSI_FLAGS_ENABLE);
7086 val = tr32(MSGINT_MODE);
7087 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7088 }
7089 }
7090}
7091
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092static void tg3_stop_fw(struct tg3 *);
7093
7094/* tp->lock is held. */
7095static int tg3_chip_reset(struct tg3 *tp)
7096{
7097 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007098 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007099 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100
David S. Millerf49639e2006-06-09 11:58:36 -07007101 tg3_nvram_lock(tp);
7102
Matt Carlson77b483f2008-08-15 14:07:24 -07007103 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7104
David S. Millerf49639e2006-06-09 11:58:36 -07007105 /* No matching tg3_nvram_unlock() after this because
7106 * chip reset below will undo the nvram lock.
7107 */
7108 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109
Michael Chanee6a99b2007-07-18 21:49:10 -07007110 /* GRC_MISC_CFG core clock reset will clear the memory
7111 * enable bit in PCI register 4 and the MSI enable bit
7112 * on some chips, so we save relevant registers here.
7113 */
7114 tg3_save_pci_state(tp);
7115
Michael Chand9ab5ad12006-03-20 22:27:35 -08007116 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007117 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08007118 tw32(GRC_FASTBOOT_PC, 0);
7119
Linus Torvalds1da177e2005-04-16 15:20:36 -07007120 /*
7121 * We must avoid the readl() that normally takes place.
7122 * It locks machines, causes machine checks, and other
7123 * fun things. So, temporarily disable the 5701
7124 * hardware workaround, while we do the reset.
7125 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007126 write_op = tp->write32;
7127 if (write_op == tg3_write_flush_reg32)
7128 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129
Michael Chand18edcb2007-03-24 20:57:11 -07007130 /* Prevent the irq handler from reading or writing PCI registers
7131 * during chip reset when the memory enable bit in the PCI command
7132 * register may be cleared. The chip does not generate interrupt
7133 * at this time, but the irq handler may still be called due to irq
7134 * sharing or irqpoll.
7135 */
Joe Perches63c3a662011-04-26 08:12:10 +00007136 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007137 for (i = 0; i < tp->irq_cnt; i++) {
7138 struct tg3_napi *tnapi = &tp->napi[i];
7139 if (tnapi->hw_status) {
7140 tnapi->hw_status->status = 0;
7141 tnapi->hw_status->status_tag = 0;
7142 }
7143 tnapi->last_tag = 0;
7144 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007145 }
Michael Chand18edcb2007-03-24 20:57:11 -07007146 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007147
7148 for (i = 0; i < tp->irq_cnt; i++)
7149 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007150
Matt Carlson255ca312009-08-25 10:07:27 +00007151 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7152 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7153 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7154 }
7155
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156 /* do the reset */
7157 val = GRC_MISC_CFG_CORECLK_RESET;
7158
Joe Perches63c3a662011-04-26 08:12:10 +00007159 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007160 /* Force PCIe 1.0a mode */
7161 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007162 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007163 tr32(TG3_PCIE_PHY_TSTCTL) ==
7164 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7165 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7166
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7168 tw32(GRC_MISC_CFG, (1 << 29));
7169 val |= (1 << 29);
7170 }
7171 }
7172
Michael Chanb5d37722006-09-27 16:06:21 -07007173 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7174 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7175 tw32(GRC_VCPU_EXT_CTRL,
7176 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7177 }
7178
Matt Carlsonf37500d2010-08-02 11:25:59 +00007179 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007180 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007182
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183 tw32(GRC_MISC_CFG, val);
7184
Michael Chan1ee582d2005-08-09 20:16:46 -07007185 /* restore 5701 hardware bug workaround write method */
7186 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187
7188 /* Unfortunately, we have to delay before the PCI read back.
7189 * Some 575X chips even will not respond to a PCI cfg access
7190 * when the reset command is given to the chip.
7191 *
7192 * How do these hardware designers expect things to work
7193 * properly if the PCI write is posted for a long period
7194 * of time? It is always necessary to have some method by
7195 * which a register read back can occur to push the write
7196 * out which does the reset.
7197 *
7198 * For most tg3 variants the trick below was working.
7199 * Ho hum...
7200 */
7201 udelay(120);
7202
7203 /* Flush PCI posted writes. The normal MMIO registers
7204 * are inaccessible at this time so this is the only
7205 * way to make this reliably (actually, this is no longer
7206 * the case, see above). I tried to use indirect
7207 * register read/write but this upset some 5701 variants.
7208 */
7209 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7210
7211 udelay(120);
7212
Joe Perches63c3a662011-04-26 08:12:10 +00007213 if (tg3_flag(tp, PCI_EXPRESS) && tp->pcie_cap) {
Matt Carlsone7126992009-08-25 10:08:16 +00007214 u16 val16;
7215
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7217 int i;
7218 u32 cfg_val;
7219
7220 /* Wait for link training to complete. */
7221 for (i = 0; i < 5000; i++)
7222 udelay(100);
7223
7224 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7225 pci_write_config_dword(tp->pdev, 0xc4,
7226 cfg_val | (1 << 15));
7227 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007228
Matt Carlsone7126992009-08-25 10:08:16 +00007229 /* Clear the "no snoop" and "relaxed ordering" bits. */
7230 pci_read_config_word(tp->pdev,
7231 tp->pcie_cap + PCI_EXP_DEVCTL,
7232 &val16);
7233 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7234 PCI_EXP_DEVCTL_NOSNOOP_EN);
7235 /*
7236 * Older PCIe devices only support the 128 byte
7237 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007238 */
Joe Perches63c3a662011-04-26 08:12:10 +00007239 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007240 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007241 pci_write_config_word(tp->pdev,
7242 tp->pcie_cap + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007243 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007244
Matt Carlsoncf790032010-11-24 08:31:48 +00007245 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007246
7247 /* Clear error status */
7248 pci_write_config_word(tp->pdev,
7249 tp->pcie_cap + PCI_EXP_DEVSTA,
7250 PCI_EXP_DEVSTA_CED |
7251 PCI_EXP_DEVSTA_NFED |
7252 PCI_EXP_DEVSTA_FED |
7253 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254 }
7255
Michael Chanee6a99b2007-07-18 21:49:10 -07007256 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257
Joe Perches63c3a662011-04-26 08:12:10 +00007258 tg3_flag_clear(tp, CHIP_RESETTING);
7259 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007260
Michael Chanee6a99b2007-07-18 21:49:10 -07007261 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007262 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007263 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007264 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265
7266 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7267 tg3_stop_fw(tp);
7268 tw32(0x5000, 0x400);
7269 }
7270
7271 tw32(GRC_MODE, tp->grc_mode);
7272
7273 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007274 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275
7276 tw32(0xc4, val | (1 << 15));
7277 }
7278
7279 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7280 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7281 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7282 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7283 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7284 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7285 }
7286
Joe Perches63c3a662011-04-26 08:12:10 +00007287 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007288 tp->mac_mode = MAC_MODE_APE_TX_EN |
7289 MAC_MODE_APE_RX_EN |
7290 MAC_MODE_TDE_ENABLE;
7291
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007292 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007293 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
7294 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007295 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007296 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
7297 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007299 val = 0;
7300
7301 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 udelay(40);
7303
Matt Carlson77b483f2008-08-15 14:07:24 -07007304 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7305
Michael Chan7a6f4362006-09-27 16:03:31 -07007306 err = tg3_poll_fw(tp);
7307 if (err)
7308 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309
Matt Carlson0a9140c2009-08-28 12:27:50 +00007310 tg3_mdio_start(tp);
7311
Joe Perches63c3a662011-04-26 08:12:10 +00007312 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007313 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7314 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007315 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007316 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317
7318 tw32(0x7c00, val | (1 << 25));
7319 }
7320
Matt Carlsond78b59f2011-04-05 14:22:46 +00007321 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7322 val = tr32(TG3_CPMU_CLCK_ORIDE);
7323 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7324 }
7325
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007327 tg3_flag_clear(tp, ENABLE_ASF);
7328 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7330 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7331 u32 nic_cfg;
7332
7333 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7334 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007335 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007336 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007337 if (tg3_flag(tp, 5750_PLUS))
7338 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339 }
7340 }
7341
7342 return 0;
7343}
7344
7345/* tp->lock is held. */
7346static void tg3_stop_fw(struct tg3 *tp)
7347{
Joe Perches63c3a662011-04-26 08:12:10 +00007348 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007349 /* Wait for RX cpu to ACK the previous event. */
7350 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351
7352 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007353
7354 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355
Matt Carlson7c5026a2008-05-02 16:49:29 -07007356 /* Wait for RX cpu to ACK this event. */
7357 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358 }
7359}
7360
7361/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007362static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363{
7364 int err;
7365
7366 tg3_stop_fw(tp);
7367
Michael Chan944d9802005-05-29 14:57:48 -07007368 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007370 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371 err = tg3_chip_reset(tp);
7372
Matt Carlsondaba2a62009-04-20 06:58:52 +00007373 __tg3_set_mac_addr(tp, 0);
7374
Michael Chan944d9802005-05-29 14:57:48 -07007375 tg3_write_sig_legacy(tp, kind);
7376 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
7378 if (err)
7379 return err;
7380
7381 return 0;
7382}
7383
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384#define RX_CPU_SCRATCH_BASE 0x30000
7385#define RX_CPU_SCRATCH_SIZE 0x04000
7386#define TX_CPU_SCRATCH_BASE 0x34000
7387#define TX_CPU_SCRATCH_SIZE 0x04000
7388
7389/* tp->lock is held. */
7390static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7391{
7392 int i;
7393
Joe Perches63c3a662011-04-26 08:12:10 +00007394 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007395
Michael Chanb5d37722006-09-27 16:06:21 -07007396 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7397 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7398
7399 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7400 return 0;
7401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402 if (offset == RX_CPU_BASE) {
7403 for (i = 0; i < 10000; i++) {
7404 tw32(offset + CPU_STATE, 0xffffffff);
7405 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7406 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7407 break;
7408 }
7409
7410 tw32(offset + CPU_STATE, 0xffffffff);
7411 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7412 udelay(10);
7413 } else {
7414 for (i = 0; i < 10000; i++) {
7415 tw32(offset + CPU_STATE, 0xffffffff);
7416 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7417 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7418 break;
7419 }
7420 }
7421
7422 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007423 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7424 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425 return -ENODEV;
7426 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007427
7428 /* Clear firmware's nvram arbitration. */
Joe Perches63c3a662011-04-26 08:12:10 +00007429 if (tg3_flag(tp, NVRAM))
Michael Chanec41c7d2006-01-17 02:40:55 -08007430 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431 return 0;
7432}
7433
7434struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007435 unsigned int fw_base;
7436 unsigned int fw_len;
7437 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438};
7439
7440/* tp->lock is held. */
7441static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7442 int cpu_scratch_size, struct fw_info *info)
7443{
Michael Chanec41c7d2006-01-17 02:40:55 -08007444 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 void (*write_op)(struct tg3 *, u32, u32);
7446
Joe Perches63c3a662011-04-26 08:12:10 +00007447 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007448 netdev_err(tp->dev,
7449 "%s: Trying to load TX cpu firmware which is 5705\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007450 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451 return -EINVAL;
7452 }
7453
Joe Perches63c3a662011-04-26 08:12:10 +00007454 if (tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 write_op = tg3_write_mem;
7456 else
7457 write_op = tg3_write_indirect_reg32;
7458
Michael Chan1b628152005-05-29 14:59:49 -07007459 /* It is possible that bootcode is still loading at this point.
7460 * Get the nvram lock first before halting the cpu.
7461 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007462 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007464 if (!lock_err)
7465 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466 if (err)
7467 goto out;
7468
7469 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7470 write_op(tp, cpu_scratch_base + i, 0);
7471 tw32(cpu_base + CPU_STATE, 0xffffffff);
7472 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007473 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007475 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007477 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478
7479 err = 0;
7480
7481out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482 return err;
7483}
7484
7485/* tp->lock is held. */
7486static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7487{
7488 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007489 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490 int err, i;
7491
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007492 fw_data = (void *)tp->fw->data;
7493
7494 /* Firmware blob starts with version numbers, followed by
7495 start address and length. We are setting complete length.
7496 length = end_address_of_bss - start_address_of_text.
7497 Remainder is the blob to be loaded contiguously
7498 from start address. */
7499
7500 info.fw_base = be32_to_cpu(fw_data[1]);
7501 info.fw_len = tp->fw->size - 12;
7502 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503
7504 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7505 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7506 &info);
7507 if (err)
7508 return err;
7509
7510 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7511 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7512 &info);
7513 if (err)
7514 return err;
7515
7516 /* Now startup only the RX cpu. */
7517 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007518 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519
7520 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007521 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522 break;
7523 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7524 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007525 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526 udelay(1000);
7527 }
7528 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007529 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
7530 "should be %08x\n", __func__,
Joe Perches05dbe002010-02-17 19:44:19 +00007531 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007532 return -ENODEV;
7533 }
7534 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7535 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7536
7537 return 0;
7538}
7539
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540/* tp->lock is held. */
7541static int tg3_load_tso_firmware(struct tg3 *tp)
7542{
7543 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007544 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7546 int err, i;
7547
Joe Perches63c3a662011-04-26 08:12:10 +00007548 if (tg3_flag(tp, HW_TSO_1) ||
7549 tg3_flag(tp, HW_TSO_2) ||
7550 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551 return 0;
7552
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007553 fw_data = (void *)tp->fw->data;
7554
7555 /* Firmware blob starts with version numbers, followed by
7556 start address and length. We are setting complete length.
7557 length = end_address_of_bss - start_address_of_text.
7558 Remainder is the blob to be loaded contiguously
7559 from start address. */
7560
7561 info.fw_base = be32_to_cpu(fw_data[1]);
7562 cpu_scratch_size = tp->fw_len;
7563 info.fw_len = tp->fw->size - 12;
7564 info.fw_data = &fw_data[3];
7565
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567 cpu_base = RX_CPU_BASE;
7568 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570 cpu_base = TX_CPU_BASE;
7571 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7572 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7573 }
7574
7575 err = tg3_load_firmware_cpu(tp, cpu_base,
7576 cpu_scratch_base, cpu_scratch_size,
7577 &info);
7578 if (err)
7579 return err;
7580
7581 /* Now startup the cpu. */
7582 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007583 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584
7585 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007586 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587 break;
7588 tw32(cpu_base + CPU_STATE, 0xffffffff);
7589 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007590 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591 udelay(1000);
7592 }
7593 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007594 netdev_err(tp->dev,
7595 "%s fails to set CPU PC, is %08x should be %08x\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007596 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597 return -ENODEV;
7598 }
7599 tw32(cpu_base + CPU_STATE, 0xffffffff);
7600 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7601 return 0;
7602}
7603
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605static int tg3_set_mac_addr(struct net_device *dev, void *p)
7606{
7607 struct tg3 *tp = netdev_priv(dev);
7608 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007609 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610
Michael Chanf9804dd2005-09-27 12:13:10 -07007611 if (!is_valid_ether_addr(addr->sa_data))
7612 return -EINVAL;
7613
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7615
Michael Chane75f7c92006-03-20 21:33:26 -08007616 if (!netif_running(dev))
7617 return 0;
7618
Joe Perches63c3a662011-04-26 08:12:10 +00007619 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007620 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007621
Michael Chan986e0ae2007-05-05 12:10:20 -07007622 addr0_high = tr32(MAC_ADDR_0_HIGH);
7623 addr0_low = tr32(MAC_ADDR_0_LOW);
7624 addr1_high = tr32(MAC_ADDR_1_HIGH);
7625 addr1_low = tr32(MAC_ADDR_1_LOW);
7626
7627 /* Skip MAC addr 1 if ASF is using it. */
7628 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7629 !(addr1_high == 0 && addr1_low == 0))
7630 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007631 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007632 spin_lock_bh(&tp->lock);
7633 __tg3_set_mac_addr(tp, skip_mac_1);
7634 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Michael Chanb9ec6c12006-07-25 16:37:27 -07007636 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637}
7638
7639/* tp->lock is held. */
7640static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7641 dma_addr_t mapping, u32 maxlen_flags,
7642 u32 nic_addr)
7643{
7644 tg3_write_mem(tp,
7645 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7646 ((u64) mapping >> 32));
7647 tg3_write_mem(tp,
7648 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7649 ((u64) mapping & 0xffffffff));
7650 tg3_write_mem(tp,
7651 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7652 maxlen_flags);
7653
Joe Perches63c3a662011-04-26 08:12:10 +00007654 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007655 tg3_write_mem(tp,
7656 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7657 nic_addr);
7658}
7659
7660static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007661static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007662{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007663 int i;
7664
Joe Perches63c3a662011-04-26 08:12:10 +00007665 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007666 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7667 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7668 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007669 } else {
7670 tw32(HOSTCC_TXCOL_TICKS, 0);
7671 tw32(HOSTCC_TXMAX_FRAMES, 0);
7672 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007673 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007674
Joe Perches63c3a662011-04-26 08:12:10 +00007675 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007676 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7677 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7678 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7679 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007680 tw32(HOSTCC_RXCOL_TICKS, 0);
7681 tw32(HOSTCC_RXMAX_FRAMES, 0);
7682 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007683 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007684
Joe Perches63c3a662011-04-26 08:12:10 +00007685 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07007686 u32 val = ec->stats_block_coalesce_usecs;
7687
Matt Carlsonb6080e12009-09-01 13:12:00 +00007688 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7689 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7690
David S. Miller15f98502005-05-18 22:49:26 -07007691 if (!netif_carrier_ok(tp->dev))
7692 val = 0;
7693
7694 tw32(HOSTCC_STAT_COAL_TICKS, val);
7695 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007696
7697 for (i = 0; i < tp->irq_cnt - 1; i++) {
7698 u32 reg;
7699
7700 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7701 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007702 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7703 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007704 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7705 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007706
Joe Perches63c3a662011-04-26 08:12:10 +00007707 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007708 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7709 tw32(reg, ec->tx_coalesce_usecs);
7710 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7711 tw32(reg, ec->tx_max_coalesced_frames);
7712 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7713 tw32(reg, ec->tx_max_coalesced_frames_irq);
7714 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007715 }
7716
7717 for (; i < tp->irq_max - 1; i++) {
7718 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007719 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007720 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007721
Joe Perches63c3a662011-04-26 08:12:10 +00007722 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007723 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7724 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7725 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7726 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007727 }
David S. Miller15f98502005-05-18 22:49:26 -07007728}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729
7730/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007731static void tg3_rings_reset(struct tg3 *tp)
7732{
7733 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007734 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007735 struct tg3_napi *tnapi = &tp->napi[0];
7736
7737 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007738 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007739 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00007740 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00007741 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlsonb703df62009-12-03 08:36:21 +00007742 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7743 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007744 else
7745 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7746
7747 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7748 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7749 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7750 BDINFO_FLAGS_DISABLED);
7751
7752
7753 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007754 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007755 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00007756 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007757 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007758 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7759 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007760 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7761 else
7762 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7763
7764 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7765 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7766 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7767 BDINFO_FLAGS_DISABLED);
7768
7769 /* Disable interrupts */
7770 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
7771
7772 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00007773 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00007774 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007775 tp->napi[i].tx_prod = 0;
7776 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007777 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007778 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007779 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7780 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
7781 }
Joe Perches63c3a662011-04-26 08:12:10 +00007782 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007783 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007784 } else {
7785 tp->napi[0].tx_prod = 0;
7786 tp->napi[0].tx_cons = 0;
7787 tw32_mailbox(tp->napi[0].prodmbox, 0);
7788 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7789 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007790
7791 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00007792 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00007793 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7794 for (i = 0; i < 16; i++)
7795 tw32_tx_mbox(mbox + i * 8, 0);
7796 }
7797
7798 txrcb = NIC_SRAM_SEND_RCB;
7799 rxrcb = NIC_SRAM_RCV_RET_RCB;
7800
7801 /* Clear status block in ram. */
7802 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7803
7804 /* Set status block DMA address */
7805 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7806 ((u64) tnapi->status_mapping >> 32));
7807 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7808 ((u64) tnapi->status_mapping & 0xffffffff));
7809
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007810 if (tnapi->tx_ring) {
7811 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7812 (TG3_TX_RING_SIZE <<
7813 BDINFO_FLAGS_MAXLEN_SHIFT),
7814 NIC_SRAM_TX_BUFFER_DESC);
7815 txrcb += TG3_BDINFO_SIZE;
7816 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007817
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007818 if (tnapi->rx_rcb) {
7819 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007820 (tp->rx_ret_ring_mask + 1) <<
7821 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007822 rxrcb += TG3_BDINFO_SIZE;
7823 }
7824
7825 stblk = HOSTCC_STATBLCK_RING1;
7826
7827 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7828 u64 mapping = (u64)tnapi->status_mapping;
7829 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7830 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7831
7832 /* Clear status block in ram. */
7833 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7834
Matt Carlson19cfaec2009-12-03 08:36:20 +00007835 if (tnapi->tx_ring) {
7836 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7837 (TG3_TX_RING_SIZE <<
7838 BDINFO_FLAGS_MAXLEN_SHIFT),
7839 NIC_SRAM_TX_BUFFER_DESC);
7840 txrcb += TG3_BDINFO_SIZE;
7841 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007842
7843 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007844 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007845 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7846
7847 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007848 rxrcb += TG3_BDINFO_SIZE;
7849 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007850}
7851
Matt Carlsoneb07a942011-04-20 07:57:36 +00007852static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
7853{
7854 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
7855
Joe Perches63c3a662011-04-26 08:12:10 +00007856 if (!tg3_flag(tp, 5750_PLUS) ||
7857 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00007858 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
7859 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
7860 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
7861 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7862 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
7863 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
7864 else
7865 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
7866
7867 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
7868 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
7869
7870 val = min(nic_rep_thresh, host_rep_thresh);
7871 tw32(RCVBDI_STD_THRESH, val);
7872
Joe Perches63c3a662011-04-26 08:12:10 +00007873 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007874 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
7875
Joe Perches63c3a662011-04-26 08:12:10 +00007876 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007877 return;
7878
Joe Perches63c3a662011-04-26 08:12:10 +00007879 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007880 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
7881 else
7882 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5717;
7883
7884 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
7885
7886 val = min(bdcache_maxcnt / 2, host_rep_thresh);
7887 tw32(RCVBDI_JUMBO_THRESH, val);
7888
Joe Perches63c3a662011-04-26 08:12:10 +00007889 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00007890 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
7891}
7892
Matt Carlson2d31eca2009-09-01 12:53:31 +00007893/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07007894static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895{
7896 u32 val, rdmac_mode;
7897 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00007898 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007899
7900 tg3_disable_ints(tp);
7901
7902 tg3_stop_fw(tp);
7903
7904 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
7905
Joe Perches63c3a662011-04-26 08:12:10 +00007906 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07007907 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908
Matt Carlson699c0192010-12-06 08:28:51 +00007909 /* Enable MAC control of LPI */
7910 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
7911 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
7912 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
7913 TG3_CPMU_EEE_LNKIDL_UART_IDL);
7914
7915 tw32_f(TG3_CPMU_EEE_CTRL,
7916 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
7917
Matt Carlsona386b902010-12-06 08:28:53 +00007918 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
7919 TG3_CPMU_EEEMD_LPI_IN_TX |
7920 TG3_CPMU_EEEMD_LPI_IN_RX |
7921 TG3_CPMU_EEEMD_EEE_ENABLE;
7922
7923 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
7924 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
7925
Joe Perches63c3a662011-04-26 08:12:10 +00007926 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00007927 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
7928
7929 tw32_f(TG3_CPMU_EEE_MODE, val);
7930
7931 tw32_f(TG3_CPMU_EEE_DBTMR1,
7932 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
7933 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
7934
7935 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00007936 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00007937 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00007938 }
7939
Matt Carlson603f1172010-02-12 14:47:10 +00007940 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08007941 tg3_phy_reset(tp);
7942
Linus Torvalds1da177e2005-04-16 15:20:36 -07007943 err = tg3_chip_reset(tp);
7944 if (err)
7945 return err;
7946
7947 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
7948
Matt Carlsonbcb37f62008-11-03 16:52:09 -08007949 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07007950 val = tr32(TG3_CPMU_CTRL);
7951 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
7952 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08007953
7954 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
7955 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
7956 val |= CPMU_LSPD_10MB_MACCLK_6_25;
7957 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
7958
7959 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
7960 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
7961 val |= CPMU_LNK_AWARE_MACCLK_6_25;
7962 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
7963
7964 val = tr32(TG3_CPMU_HST_ACC);
7965 val &= ~CPMU_HST_ACC_MACCLK_MASK;
7966 val |= CPMU_HST_ACC_MACCLK_6_25;
7967 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07007968 }
7969
Matt Carlson33466d92009-04-20 06:57:41 +00007970 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7971 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
7972 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
7973 PCIE_PWR_MGMT_L1_THRESH_4MS;
7974 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00007975
7976 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
7977 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
7978
7979 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00007980
Matt Carlsonf40386c2009-11-02 14:24:02 +00007981 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7982 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00007983 }
7984
Joe Perches63c3a662011-04-26 08:12:10 +00007985 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00007986 u32 grc_mode = tr32(GRC_MODE);
7987
7988 /* Access the lower 1K of PL PCIE block registers. */
7989 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
7990 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
7991
7992 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
7993 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
7994 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
7995
7996 tw32(GRC_MODE, grc_mode);
7997 }
7998
Matt Carlson5093eed2010-11-24 08:31:45 +00007999 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
8000 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8001 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008002
Matt Carlson5093eed2010-11-24 08:31:45 +00008003 /* Access the lower 1K of PL PCIE block registers. */
8004 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8005 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008006
Matt Carlson5093eed2010-11-24 08:31:45 +00008007 val = tr32(TG3_PCIE_TLDLPL_PORT +
8008 TG3_PCIE_PL_LO_PHYCTL5);
8009 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8010 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008011
Matt Carlson5093eed2010-11-24 08:31:45 +00008012 tw32(GRC_MODE, grc_mode);
8013 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008014
8015 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8016 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8017 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8018 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008019 }
8020
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021 /* This works around an issue with Athlon chipsets on
8022 * B3 tigon3 silicon. This bit has no effect on any
8023 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008024 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025 */
Joe Perches63c3a662011-04-26 08:12:10 +00008026 if (!tg3_flag(tp, CPMU_PRESENT)) {
8027 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008028 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8029 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031
8032 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008033 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034 val = tr32(TG3PCI_PCISTATE);
8035 val |= PCISTATE_RETRY_SAME_DMA;
8036 tw32(TG3PCI_PCISTATE, val);
8037 }
8038
Joe Perches63c3a662011-04-26 08:12:10 +00008039 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008040 /* Allow reads and writes to the
8041 * APE register and memory space.
8042 */
8043 val = tr32(TG3PCI_PCISTATE);
8044 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008045 PCISTATE_ALLOW_APE_SHMEM_WR |
8046 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008047 tw32(TG3PCI_PCISTATE, val);
8048 }
8049
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8051 /* Enable some hw fixes. */
8052 val = tr32(TG3PCI_MSI_DATA);
8053 val |= (1 << 26) | (1 << 28) | (1 << 29);
8054 tw32(TG3PCI_MSI_DATA, val);
8055 }
8056
8057 /* Descriptor ring init may make accesses to the
8058 * NIC SRAM area to setup the TX descriptors, so we
8059 * can only do this after the hardware has been
8060 * successfully reset.
8061 */
Michael Chan32d8c572006-07-25 16:38:29 -07008062 err = tg3_init_rings(tp);
8063 if (err)
8064 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065
Joe Perches63c3a662011-04-26 08:12:10 +00008066 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008067 val = tr32(TG3PCI_DMA_RW_CTRL) &
8068 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008069 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8070 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson0aebff42011-04-25 12:42:45 +00008071 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
8072 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8073 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008074 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8075 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8076 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008077 /* This value is determined during the probe time DMA
8078 * engine test, tg3_test_dma.
8079 */
8080 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008082
8083 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8084 GRC_MODE_4X_NIC_SEND_RINGS |
8085 GRC_MODE_NO_TX_PHDR_CSUM |
8086 GRC_MODE_NO_RX_PHDR_CSUM);
8087 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008088
8089 /* Pseudo-header checksum is done by hardware logic and not
8090 * the offload processers, so make the chip do the pseudo-
8091 * header checksums on receive. For transmit it is more
8092 * convenient to do the pseudo-header checksum in software
8093 * as Linux does that on transmit for us in all cases.
8094 */
8095 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008096
8097 tw32(GRC_MODE,
8098 tp->grc_mode |
8099 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8100
8101 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8102 val = tr32(GRC_MISC_CFG);
8103 val &= ~0xff;
8104 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8105 tw32(GRC_MISC_CFG, val);
8106
8107 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008108 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109 /* Do nothing. */
8110 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8111 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8112 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8113 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8114 else
8115 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8116 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8117 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008118 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119 int fw_len;
8120
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008121 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8123 tw32(BUFMGR_MB_POOL_ADDR,
8124 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8125 tw32(BUFMGR_MB_POOL_SIZE,
8126 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128
Michael Chan0f893dc2005-07-25 12:30:38 -07008129 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8131 tp->bufmgr_config.mbuf_read_dma_low_water);
8132 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8133 tp->bufmgr_config.mbuf_mac_rx_low_water);
8134 tw32(BUFMGR_MB_HIGH_WATER,
8135 tp->bufmgr_config.mbuf_high_water);
8136 } else {
8137 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8138 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8139 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8140 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8141 tw32(BUFMGR_MB_HIGH_WATER,
8142 tp->bufmgr_config.mbuf_high_water_jumbo);
8143 }
8144 tw32(BUFMGR_DMA_LOW_WATER,
8145 tp->bufmgr_config.dma_low_water);
8146 tw32(BUFMGR_DMA_HIGH_WATER,
8147 tp->bufmgr_config.dma_high_water);
8148
Matt Carlsond309a462010-09-30 10:34:31 +00008149 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8150 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8151 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008152 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8153 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8154 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8155 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008156 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008157 for (i = 0; i < 2000; i++) {
8158 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8159 break;
8160 udelay(10);
8161 }
8162 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008163 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008164 return -ENODEV;
8165 }
8166
Matt Carlsoneb07a942011-04-20 07:57:36 +00008167 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8168 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008169
Matt Carlsoneb07a942011-04-20 07:57:36 +00008170 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008171
8172 /* Initialize TG3_BDINFO's at:
8173 * RCVDBDI_STD_BD: standard eth size rx ring
8174 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8175 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8176 *
8177 * like so:
8178 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8179 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8180 * ring attribute flags
8181 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8182 *
8183 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8184 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8185 *
8186 * The size of each ring is fixed in the firmware, but the location is
8187 * configurable.
8188 */
8189 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008190 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008191 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008192 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008193 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008194 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8195 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008197 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008198 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8200 BDINFO_FLAGS_DISABLED);
8201
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008202 /* Program the jumbo buffer descriptor ring control
8203 * blocks on those devices that have them.
8204 */
Matt Carlsonbb18bb92011-03-09 16:58:19 +00008205 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008206 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207
Joe Perches63c3a662011-04-26 08:12:10 +00008208 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008210 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008212 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008213 val = TG3_RX_JMB_RING_SIZE(tp) <<
8214 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008216 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008217 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00008218 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson87668d32009-11-13 13:03:34 +00008219 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8220 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221 } else {
8222 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8223 BDINFO_FLAGS_DISABLED);
8224 }
8225
Joe Perches63c3a662011-04-26 08:12:10 +00008226 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008227 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonde9f5232011-04-05 14:22:43 +00008228 val = TG3_RX_STD_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008229 else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008230 val = TG3_RX_STD_MAX_SIZE_5717;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008231 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8232 val |= (TG3_RX_STD_DMA_SZ << 2);
8233 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008234 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008235 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008236 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008237
8238 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239
Matt Carlson411da642009-11-13 13:03:46 +00008240 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008241 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242
Joe Perches63c3a662011-04-26 08:12:10 +00008243 tpr->rx_jmb_prod_idx =
8244 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008245 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246
Matt Carlson2d31eca2009-09-01 12:53:31 +00008247 tg3_rings_reset(tp);
8248
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008250 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251
8252 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008253 tw32(MAC_RX_MTU_SIZE,
8254 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255
8256 /* The slot time is changed by tg3_setup_phy if we
8257 * run at gigabit with half duplex.
8258 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008259 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8260 (6 << TX_LENGTHS_IPG_SHIFT) |
8261 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8262
8263 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8264 val |= tr32(MAC_TX_LENGTHS) &
8265 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8266 TX_LENGTHS_CNT_DWN_VAL_MSK);
8267
8268 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269
8270 /* Receive rules. */
8271 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8272 tw32(RCVLPC_CONFIG, 0x0181);
8273
8274 /* Calculate RDMAC_MODE setting early, we need it to determine
8275 * the RCVLPC_STATE_ENABLE mask.
8276 */
8277 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8278 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8279 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8280 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8281 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008282
Matt Carlsondeabaac2010-11-24 08:31:50 +00008283 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008284 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8285
Matt Carlson57e69832008-05-25 23:48:31 -07008286 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008287 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8288 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008289 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8290 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8291 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8292
Matt Carlsonc5908932011-03-09 16:58:25 +00008293 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8294 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008295 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008296 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8298 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008299 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8301 }
8302 }
8303
Joe Perches63c3a662011-04-26 08:12:10 +00008304 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008305 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8306
Joe Perches63c3a662011-04-26 08:12:10 +00008307 if (tg3_flag(tp, HW_TSO_1) ||
8308 tg3_flag(tp, HW_TSO_2) ||
8309 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008310 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8311
Joe Perches63c3a662011-04-26 08:12:10 +00008312 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008313 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008314 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8315 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316
Matt Carlsonf2096f92011-04-05 14:22:48 +00008317 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8318 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8319
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008320 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8321 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8322 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8323 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008324 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008325 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008326 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8327 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008328 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8329 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8330 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8331 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8332 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8333 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008334 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008335 tw32(TG3_RDMA_RSRVCTRL_REG,
8336 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8337 }
8338
Matt Carlsond78b59f2011-04-05 14:22:46 +00008339 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8340 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008341 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8342 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8343 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8344 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8345 }
8346
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008348 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008349 val = tr32(RCVLPC_STATS_ENABLE);
8350 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8351 tw32(RCVLPC_STATS_ENABLE, val);
8352 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008353 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354 val = tr32(RCVLPC_STATS_ENABLE);
8355 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8356 tw32(RCVLPC_STATS_ENABLE, val);
8357 } else {
8358 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8359 }
8360 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8361 tw32(SNDDATAI_STATSENAB, 0xffffff);
8362 tw32(SNDDATAI_STATSCTRL,
8363 (SNDDATAI_SCTRL_ENABLE |
8364 SNDDATAI_SCTRL_FASTUPD));
8365
8366 /* Setup host coalescing engine. */
8367 tw32(HOSTCC_MODE, 0);
8368 for (i = 0; i < 2000; i++) {
8369 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8370 break;
8371 udelay(10);
8372 }
8373
Michael Chand244c892005-07-05 14:42:33 -07008374 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008375
Joe Perches63c3a662011-04-26 08:12:10 +00008376 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008377 /* Status/statistics block address. See tg3_timer,
8378 * the tg3_periodic_fetch_stats call there, and
8379 * tg3_get_stats to see how this works for 5705/5750 chips.
8380 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8382 ((u64) tp->stats_mapping >> 32));
8383 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8384 ((u64) tp->stats_mapping & 0xffffffff));
8385 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008386
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008388
8389 /* Clear statistics and status block memory areas */
8390 for (i = NIC_SRAM_STATS_BLK;
8391 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8392 i += sizeof(u32)) {
8393 tg3_write_mem(tp, i, 0);
8394 udelay(40);
8395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396 }
8397
8398 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8399
8400 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8401 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008402 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8404
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008405 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8406 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008407 /* reset to prevent losing 1st rx packet intermittently */
8408 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8409 udelay(10);
8410 }
8411
Joe Perches63c3a662011-04-26 08:12:10 +00008412 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00008413 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -07008414 else
8415 tp->mac_mode = 0;
8416 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE | MAC_MODE_FHDE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008418 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008419 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008420 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8421 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8423 udelay(40);
8424
Michael Chan314fba32005-04-21 17:07:04 -07008425 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008426 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008427 * register to preserve the GPIO settings for LOMs. The GPIOs,
8428 * whether used as inputs or outputs, are set by boot code after
8429 * reset.
8430 */
Joe Perches63c3a662011-04-26 08:12:10 +00008431 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008432 u32 gpio_mask;
8433
Michael Chan9d26e212006-12-07 00:21:14 -08008434 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8435 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8436 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008437
8438 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8439 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8440 GRC_LCLCTRL_GPIO_OUTPUT3;
8441
Michael Chanaf36e6b2006-03-23 01:28:06 -08008442 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8443 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8444
Gary Zambranoaaf84462007-05-05 11:51:45 -07008445 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008446 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8447
8448 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008449 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008450 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8451 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8454 udelay(100);
8455
Joe Perches63c3a662011-04-26 08:12:10 +00008456 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008457 val = tr32(MSGINT_MODE);
8458 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8459 tw32(MSGINT_MODE, val);
8460 }
8461
Joe Perches63c3a662011-04-26 08:12:10 +00008462 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8464 udelay(40);
8465 }
8466
8467 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8468 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8469 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8470 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8471 WDMAC_MODE_LNGREAD_ENAB);
8472
Matt Carlsonc5908932011-03-09 16:58:25 +00008473 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8474 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008475 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8477 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8478 /* nothing */
8479 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008480 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008481 val |= WDMAC_MODE_RX_ACCEL;
8482 }
8483 }
8484
Michael Chand9ab5ad12006-03-20 22:27:35 -08008485 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008486 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008487 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08008488
Matt Carlson788a0352009-11-02 14:26:03 +00008489 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8490 val |= WDMAC_MODE_BURST_ALL_DATA;
8491
Linus Torvalds1da177e2005-04-16 15:20:36 -07008492 tw32_f(WDMAC_MODE, val);
8493 udelay(40);
8494
Joe Perches63c3a662011-04-26 08:12:10 +00008495 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008496 u16 pcix_cmd;
8497
8498 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8499 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008501 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8502 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008504 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8505 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506 }
Matt Carlson9974a352007-10-07 23:27:28 -07008507 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8508 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008509 }
8510
8511 tw32_f(RDMAC_MODE, rdmac_mode);
8512 udelay(40);
8513
8514 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008515 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008516 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008517
8518 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8519 tw32(SNDDATAC_MODE,
8520 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8521 else
8522 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8523
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8525 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008526 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008527 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008528 val |= RCVDBDI_MODE_LRG_RING_SZ;
8529 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008531 if (tg3_flag(tp, HW_TSO_1) ||
8532 tg3_flag(tp, HW_TSO_2) ||
8533 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008535 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008536 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008537 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8538 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8540
8541 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8542 err = tg3_load_5701_a0_firmware_fix(tp);
8543 if (err)
8544 return err;
8545 }
8546
Joe Perches63c3a662011-04-26 08:12:10 +00008547 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548 err = tg3_load_tso_firmware(tp);
8549 if (err)
8550 return err;
8551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552
8553 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008554
Joe Perches63c3a662011-04-26 08:12:10 +00008555 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008556 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8557 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008558
8559 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8560 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8561 tp->tx_mode &= ~val;
8562 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8563 }
8564
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565 tw32_f(MAC_TX_MODE, tp->tx_mode);
8566 udelay(100);
8567
Joe Perches63c3a662011-04-26 08:12:10 +00008568 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008569 u32 reg = MAC_RSS_INDIR_TBL_0;
8570 u8 *ent = (u8 *)&val;
8571
8572 /* Setup the indirection table */
8573 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8574 int idx = i % sizeof(val);
8575
Matt Carlson5efeeea2010-07-11 09:31:40 +00008576 ent[idx] = i % (tp->irq_cnt - 1);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008577 if (idx == sizeof(val) - 1) {
8578 tw32(reg, val);
8579 reg += 4;
8580 }
8581 }
8582
8583 /* Setup the "secret" hash key. */
8584 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8585 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8586 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8587 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8588 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8589 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8590 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8591 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8592 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8593 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8594 }
8595
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008597 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008598 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8599
Joe Perches63c3a662011-04-26 08:12:10 +00008600 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008601 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8602 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8603 RX_MODE_RSS_IPV6_HASH_EN |
8604 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8605 RX_MODE_RSS_IPV4_HASH_EN |
8606 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8607
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608 tw32_f(MAC_RX_MODE, tp->rx_mode);
8609 udelay(10);
8610
Linus Torvalds1da177e2005-04-16 15:20:36 -07008611 tw32(MAC_LED_CTRL, tp->led_ctrl);
8612
8613 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008614 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008615 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8616 udelay(10);
8617 }
8618 tw32_f(MAC_RX_MODE, tp->rx_mode);
8619 udelay(10);
8620
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008621 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622 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_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624 /* Set drive transmission level to 1.2V */
8625 /* only if the signal pre-emphasis bit is not set */
8626 val = tr32(MAC_SERDES_CFG);
8627 val &= 0xfffff000;
8628 val |= 0x880;
8629 tw32(MAC_SERDES_CFG, val);
8630 }
8631 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8632 tw32(MAC_SERDES_CFG, 0x616000);
8633 }
8634
8635 /* Prevent chip from dropping frames when flow control
8636 * is enabled.
8637 */
Matt Carlson666bc832010-01-20 16:58:03 +00008638 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8639 val = 1;
8640 else
8641 val = 2;
8642 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008643
8644 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008645 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00008647 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648 }
8649
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008650 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Michael Chand4d2c552006-03-20 17:47:20 -08008651 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)) {
8652 u32 tmp;
8653
8654 tmp = tr32(SERDES_RX_CTRL);
8655 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8656 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8657 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8658 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8659 }
8660
Joe Perches63c3a662011-04-26 08:12:10 +00008661 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson80096062010-08-02 11:26:06 +00008662 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
8663 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07008664 tp->link_config.speed = tp->link_config.orig_speed;
8665 tp->link_config.duplex = tp->link_config.orig_duplex;
8666 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668
Matt Carlsondd477002008-05-25 23:45:58 -07008669 err = tg3_setup_phy(tp, 0);
8670 if (err)
8671 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008673 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
8674 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008675 u32 tmp;
8676
8677 /* Clear CRC stats. */
8678 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8679 tg3_writephy(tp, MII_TG3_TEST1,
8680 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00008681 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07008682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008683 }
8684 }
8685
8686 __tg3_set_rx_mode(tp->dev);
8687
8688 /* Initialize receive rules. */
8689 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8690 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8691 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8692 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8693
Joe Perches63c3a662011-04-26 08:12:10 +00008694 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008695 limit = 8;
8696 else
8697 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008698 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008699 limit -= 4;
8700 switch (limit) {
8701 case 16:
8702 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8703 case 15:
8704 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8705 case 14:
8706 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8707 case 13:
8708 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8709 case 12:
8710 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8711 case 11:
8712 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8713 case 10:
8714 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8715 case 9:
8716 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8717 case 8:
8718 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8719 case 7:
8720 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8721 case 6:
8722 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8723 case 5:
8724 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8725 case 4:
8726 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8727 case 3:
8728 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8729 case 2:
8730 case 1:
8731
8732 default:
8733 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008735
Joe Perches63c3a662011-04-26 08:12:10 +00008736 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07008737 /* Write our heartbeat update interval to APE. */
8738 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8739 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008740
Linus Torvalds1da177e2005-04-16 15:20:36 -07008741 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8742
Linus Torvalds1da177e2005-04-16 15:20:36 -07008743 return 0;
8744}
8745
8746/* Called at device open time to get the chip ready for
8747 * packet processing. Invoked with tp->lock held.
8748 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008749static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751 tg3_switch_clocks(tp);
8752
8753 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8754
Matt Carlson2f751b62008-08-04 23:17:34 -07008755 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008756}
8757
8758#define TG3_STAT_ADD32(PSTAT, REG) \
8759do { u32 __val = tr32(REG); \
8760 (PSTAT)->low += __val; \
8761 if ((PSTAT)->low < __val) \
8762 (PSTAT)->high += 1; \
8763} while (0)
8764
8765static void tg3_periodic_fetch_stats(struct tg3 *tp)
8766{
8767 struct tg3_hw_stats *sp = tp->hw_stats;
8768
8769 if (!netif_carrier_ok(tp->dev))
8770 return;
8771
8772 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8773 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8774 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8775 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8776 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8777 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8778 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8779 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8780 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8781 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8782 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8783 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8784 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8785
8786 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8787 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8788 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8789 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8790 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8791 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8792 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8793 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8794 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8795 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8796 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8797 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8798 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8799 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008800
8801 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson4d958472011-04-20 07:57:35 +00008802 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717) {
8803 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8804 } else {
8805 u32 val = tr32(HOSTCC_FLOW_ATTN);
8806 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
8807 if (val) {
8808 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
8809 sp->rx_discards.low += val;
8810 if (sp->rx_discards.low < val)
8811 sp->rx_discards.high += 1;
8812 }
8813 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
8814 }
Michael Chan463d3052006-05-22 16:36:27 -07008815 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008816}
8817
8818static void tg3_timer(unsigned long __opaque)
8819{
8820 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821
Michael Chanf475f162006-03-27 23:20:14 -08008822 if (tp->irq_sync)
8823 goto restart_timer;
8824
David S. Millerf47c11e2005-06-24 20:18:35 -07008825 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008826
Joe Perches63c3a662011-04-26 08:12:10 +00008827 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07008828 /* All of this garbage is because when using non-tagged
8829 * IRQ status the mailbox/status_block protocol the chip
8830 * uses with the cpu is race prone.
8831 */
Matt Carlson898a56f2009-08-28 14:02:40 +00008832 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07008833 tw32(GRC_LOCAL_CTRL,
8834 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
8835 } else {
8836 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00008837 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07008838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839
David S. Millerfac9b832005-05-18 22:46:34 -07008840 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +00008841 tg3_flag_set(tp, RESTART_TIMER);
David S. Millerf47c11e2005-06-24 20:18:35 -07008842 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07008843 schedule_work(&tp->reset_task);
8844 return;
8845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008846 }
8847
Linus Torvalds1da177e2005-04-16 15:20:36 -07008848 /* This part only runs once per second. */
8849 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00008850 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07008851 tg3_periodic_fetch_stats(tp);
8852
Matt Carlson52b02d02010-10-14 10:37:41 +00008853 if (tp->setlpicnt && !--tp->setlpicnt) {
8854 u32 val = tr32(TG3_CPMU_EEE_MODE);
8855 tw32(TG3_CPMU_EEE_MODE,
8856 val | TG3_CPMU_EEEMD_LPI_ENABLE);
8857 }
8858
Joe Perches63c3a662011-04-26 08:12:10 +00008859 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008860 u32 mac_stat;
8861 int phy_event;
8862
8863 mac_stat = tr32(MAC_STATUS);
8864
8865 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008866 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008867 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
8868 phy_event = 1;
8869 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
8870 phy_event = 1;
8871
8872 if (phy_event)
8873 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00008874 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008875 u32 mac_stat = tr32(MAC_STATUS);
8876 int need_setup = 0;
8877
8878 if (netif_carrier_ok(tp->dev) &&
8879 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
8880 need_setup = 1;
8881 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00008882 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008883 (mac_stat & (MAC_STATUS_PCS_SYNCED |
8884 MAC_STATUS_SIGNAL_DET))) {
8885 need_setup = 1;
8886 }
8887 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07008888 if (!tp->serdes_counter) {
8889 tw32_f(MAC_MODE,
8890 (tp->mac_mode &
8891 ~MAC_MODE_PORT_MODE_MASK));
8892 udelay(40);
8893 tw32_f(MAC_MODE, tp->mac_mode);
8894 udelay(40);
8895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896 tg3_setup_phy(tp, 0);
8897 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008898 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008899 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07008900 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00008901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008902
8903 tp->timer_counter = tp->timer_multiplier;
8904 }
8905
Michael Chan130b8e42006-09-27 16:00:40 -07008906 /* Heartbeat is only sent once every 2 seconds.
8907 *
8908 * The heartbeat is to tell the ASF firmware that the host
8909 * driver is still alive. In the event that the OS crashes,
8910 * ASF needs to reset the hardware to free up the FIFO space
8911 * that may be filled with rx packets destined for the host.
8912 * If the FIFO is full, ASF will no longer function properly.
8913 *
8914 * Unintended resets have been reported on real time kernels
8915 * where the timer doesn't run on time. Netpoll will also have
8916 * same problem.
8917 *
8918 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
8919 * to check the ring condition when the heartbeat is expiring
8920 * before doing the reset. This will prevent most unintended
8921 * resets.
8922 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00008924 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07008925 tg3_wait_for_event_ack(tp);
8926
Michael Chanbbadf502006-04-06 21:46:34 -07008927 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07008928 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07008929 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00008930 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
8931 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07008932
8933 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008934 }
8935 tp->asf_counter = tp->asf_multiplier;
8936 }
8937
David S. Millerf47c11e2005-06-24 20:18:35 -07008938 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008939
Michael Chanf475f162006-03-27 23:20:14 -08008940restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07008941 tp->timer.expires = jiffies + tp->timer_offset;
8942 add_timer(&tp->timer);
8943}
8944
Matt Carlson4f125f42009-09-01 12:55:02 +00008945static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08008946{
David Howells7d12e782006-10-05 14:55:46 +01008947 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008948 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00008949 char *name;
8950 struct tg3_napi *tnapi = &tp->napi[irq_num];
8951
8952 if (tp->irq_cnt == 1)
8953 name = tp->dev->name;
8954 else {
8955 name = &tnapi->irq_lbl[0];
8956 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
8957 name[IFNAMSIZ-1] = 0;
8958 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08008959
Joe Perches63c3a662011-04-26 08:12:10 +00008960 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08008961 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00008962 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08008963 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00008964 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008965 } else {
8966 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00008967 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08008968 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00008969 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08008970 }
Matt Carlson4f125f42009-09-01 12:55:02 +00008971
8972 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08008973}
8974
Michael Chan79381092005-04-21 17:13:59 -07008975static int tg3_test_interrupt(struct tg3 *tp)
8976{
Matt Carlson09943a12009-08-28 14:01:57 +00008977 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07008978 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07008979 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008980 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07008981
Michael Chand4bc3922005-05-29 14:59:20 -07008982 if (!netif_running(dev))
8983 return -ENODEV;
8984
Michael Chan79381092005-04-21 17:13:59 -07008985 tg3_disable_ints(tp);
8986
Matt Carlson4f125f42009-09-01 12:55:02 +00008987 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07008988
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008989 /*
8990 * Turn off MSI one shot mode. Otherwise this test has no
8991 * observable way to know whether the interrupt was delivered.
8992 */
Joe Perches63c3a662011-04-26 08:12:10 +00008993 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00008994 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
8995 tw32(MSGINT_MODE, val);
8996 }
8997
Matt Carlson4f125f42009-09-01 12:55:02 +00008998 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00008999 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009000 if (err)
9001 return err;
9002
Matt Carlson898a56f2009-08-28 14:02:40 +00009003 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009004 tg3_enable_ints(tp);
9005
9006 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009007 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009008
9009 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009010 u32 int_mbox, misc_host_ctrl;
9011
Matt Carlson898a56f2009-08-28 14:02:40 +00009012 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009013 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9014
9015 if ((int_mbox != 0) ||
9016 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9017 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009018 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009019 }
9020
Michael Chan79381092005-04-21 17:13:59 -07009021 msleep(10);
9022 }
9023
9024 tg3_disable_ints(tp);
9025
Matt Carlson4f125f42009-09-01 12:55:02 +00009026 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009027
Matt Carlson4f125f42009-09-01 12:55:02 +00009028 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009029
9030 if (err)
9031 return err;
9032
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009033 if (intr_ok) {
9034 /* Reenable MSI one shot mode. */
Joe Perches63c3a662011-04-26 08:12:10 +00009035 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009036 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9037 tw32(MSGINT_MODE, val);
9038 }
Michael Chan79381092005-04-21 17:13:59 -07009039 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009040 }
Michael Chan79381092005-04-21 17:13:59 -07009041
9042 return -EIO;
9043}
9044
9045/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9046 * successfully restored
9047 */
9048static int tg3_test_msi(struct tg3 *tp)
9049{
Michael Chan79381092005-04-21 17:13:59 -07009050 int err;
9051 u16 pci_cmd;
9052
Joe Perches63c3a662011-04-26 08:12:10 +00009053 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009054 return 0;
9055
9056 /* Turn off SERR reporting in case MSI terminates with Master
9057 * Abort.
9058 */
9059 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9060 pci_write_config_word(tp->pdev, PCI_COMMAND,
9061 pci_cmd & ~PCI_COMMAND_SERR);
9062
9063 err = tg3_test_interrupt(tp);
9064
9065 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9066
9067 if (!err)
9068 return 0;
9069
9070 /* other failures */
9071 if (err != -EIO)
9072 return err;
9073
9074 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009075 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9076 "to INTx mode. Please report this failure to the PCI "
9077 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009078
Matt Carlson4f125f42009-09-01 12:55:02 +00009079 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009080
Michael Chan79381092005-04-21 17:13:59 -07009081 pci_disable_msi(tp->pdev);
9082
Joe Perches63c3a662011-04-26 08:12:10 +00009083 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009084 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009085
Matt Carlson4f125f42009-09-01 12:55:02 +00009086 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009087 if (err)
9088 return err;
9089
9090 /* Need to reset the chip because the MSI cycle may have terminated
9091 * with Master Abort.
9092 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009093 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009094
Michael Chan944d9802005-05-29 14:57:48 -07009095 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009096 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009097
David S. Millerf47c11e2005-06-24 20:18:35 -07009098 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009099
9100 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009101 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009102
9103 return err;
9104}
9105
Matt Carlson9e9fd122009-01-19 16:57:45 -08009106static int tg3_request_firmware(struct tg3 *tp)
9107{
9108 const __be32 *fw_data;
9109
9110 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009111 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9112 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009113 return -ENOENT;
9114 }
9115
9116 fw_data = (void *)tp->fw->data;
9117
9118 /* Firmware blob starts with version numbers, followed by
9119 * start address and _full_ length including BSS sections
9120 * (which must be longer than the actual data, of course
9121 */
9122
9123 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9124 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009125 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9126 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009127 release_firmware(tp->fw);
9128 tp->fw = NULL;
9129 return -EINVAL;
9130 }
9131
9132 /* We no longer need firmware; we have it. */
9133 tp->fw_needed = NULL;
9134 return 0;
9135}
9136
Matt Carlson679563f2009-09-01 12:55:46 +00009137static bool tg3_enable_msix(struct tg3 *tp)
9138{
9139 int i, rc, cpus = num_online_cpus();
9140 struct msix_entry msix_ent[tp->irq_max];
9141
9142 if (cpus == 1)
9143 /* Just fallback to the simpler MSI mode. */
9144 return false;
9145
9146 /*
9147 * We want as many rx rings enabled as there are cpus.
9148 * The first MSIX vector only deals with link interrupts, etc,
9149 * so we add one to the number of vectors we are requesting.
9150 */
9151 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
9152
9153 for (i = 0; i < tp->irq_max; i++) {
9154 msix_ent[i].entry = i;
9155 msix_ent[i].vector = 0;
9156 }
9157
9158 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009159 if (rc < 0) {
9160 return false;
9161 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009162 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9163 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009164 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9165 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009166 tp->irq_cnt = rc;
9167 }
9168
9169 for (i = 0; i < tp->irq_max; i++)
9170 tp->napi[i].irq_vec = msix_ent[i].vector;
9171
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009172 netif_set_real_num_tx_queues(tp->dev, 1);
9173 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9174 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9175 pci_disable_msix(tp->pdev);
9176 return false;
9177 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009178
9179 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009180 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009181
9182 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9183 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009184 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009185 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9186 }
9187 }
Matt Carlson2430b032010-06-05 17:24:34 +00009188
Matt Carlson679563f2009-09-01 12:55:46 +00009189 return true;
9190}
9191
Matt Carlson07b01732009-08-28 14:01:15 +00009192static void tg3_ints_init(struct tg3 *tp)
9193{
Joe Perches63c3a662011-04-26 08:12:10 +00009194 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9195 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009196 /* All MSI supporting chips should support tagged
9197 * status. Assert that this is the case.
9198 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009199 netdev_warn(tp->dev,
9200 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009201 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009202 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009203
Joe Perches63c3a662011-04-26 08:12:10 +00009204 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9205 tg3_flag_set(tp, USING_MSIX);
9206 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9207 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009208
Joe Perches63c3a662011-04-26 08:12:10 +00009209 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009210 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009211 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009212 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00009213 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9214 }
9215defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009216 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009217 tp->irq_cnt = 1;
9218 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009219 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009220 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009221 }
Matt Carlson07b01732009-08-28 14:01:15 +00009222}
9223
9224static void tg3_ints_fini(struct tg3 *tp)
9225{
Joe Perches63c3a662011-04-26 08:12:10 +00009226 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009227 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009228 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009229 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009230 tg3_flag_clear(tp, USING_MSI);
9231 tg3_flag_clear(tp, USING_MSIX);
9232 tg3_flag_clear(tp, ENABLE_RSS);
9233 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009234}
9235
Linus Torvalds1da177e2005-04-16 15:20:36 -07009236static int tg3_open(struct net_device *dev)
9237{
9238 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009239 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009240
Matt Carlson9e9fd122009-01-19 16:57:45 -08009241 if (tp->fw_needed) {
9242 err = tg3_request_firmware(tp);
9243 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9244 if (err)
9245 return err;
9246 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009247 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009248 tg3_flag_clear(tp, TSO_CAPABLE);
9249 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009250 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009251 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009252 }
9253 }
9254
Michael Chanc49a1562006-12-17 17:07:29 -08009255 netif_carrier_off(tp->dev);
9256
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009257 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009258 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009259 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009260
9261 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009262
Linus Torvalds1da177e2005-04-16 15:20:36 -07009263 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009264 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009265
David S. Millerf47c11e2005-06-24 20:18:35 -07009266 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009267
Matt Carlson679563f2009-09-01 12:55:46 +00009268 /*
9269 * Setup interrupts first so we know how
9270 * many NAPI resources to allocate
9271 */
9272 tg3_ints_init(tp);
9273
Linus Torvalds1da177e2005-04-16 15:20:36 -07009274 /* The placement of this call is tied
9275 * to the setup and use of Host TX descriptors.
9276 */
9277 err = tg3_alloc_consistent(tp);
9278 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009279 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009280
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009281 tg3_napi_init(tp);
9282
Matt Carlsonfed97812009-09-01 13:10:19 +00009283 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009284
Matt Carlson4f125f42009-09-01 12:55:02 +00009285 for (i = 0; i < tp->irq_cnt; i++) {
9286 struct tg3_napi *tnapi = &tp->napi[i];
9287 err = tg3_request_irq(tp, i);
9288 if (err) {
9289 for (i--; i >= 0; i--)
9290 free_irq(tnapi->irq_vec, tnapi);
9291 break;
9292 }
9293 }
Matt Carlson07b01732009-08-28 14:01:15 +00009294
9295 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009296 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00009297
David S. Millerf47c11e2005-06-24 20:18:35 -07009298 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009299
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009300 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009301 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009302 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009303 tg3_free_rings(tp);
9304 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00009305 if (tg3_flag(tp, TAGGED_STATUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009306 tp->timer_offset = HZ;
9307 else
9308 tp->timer_offset = HZ / 10;
9309
9310 BUG_ON(tp->timer_offset > HZ);
9311 tp->timer_counter = tp->timer_multiplier =
9312 (HZ / tp->timer_offset);
9313 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009314 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009315
9316 init_timer(&tp->timer);
9317 tp->timer.expires = jiffies + tp->timer_offset;
9318 tp->timer.data = (unsigned long) tp;
9319 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009320 }
9321
David S. Millerf47c11e2005-06-24 20:18:35 -07009322 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009323
Matt Carlson07b01732009-08-28 14:01:15 +00009324 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009325 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009326
Joe Perches63c3a662011-04-26 08:12:10 +00009327 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009328 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009329
Michael Chan79381092005-04-21 17:13:59 -07009330 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009331 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009332 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009333 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009334 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009335
Matt Carlson679563f2009-09-01 12:55:46 +00009336 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009337 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009338
Joe Perches63c3a662011-04-26 08:12:10 +00009339 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009340 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009341
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009342 tw32(PCIE_TRANSACTION_CFG,
9343 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009344 }
Michael Chan79381092005-04-21 17:13:59 -07009345 }
9346
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009347 tg3_phy_start(tp);
9348
David S. Millerf47c11e2005-06-24 20:18:35 -07009349 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009350
Michael Chan79381092005-04-21 17:13:59 -07009351 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009352 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009353 tg3_enable_ints(tp);
9354
David S. Millerf47c11e2005-06-24 20:18:35 -07009355 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009356
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009357 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009358
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00009359 /*
9360 * Reset loopback feature if it was turned on while the device was down
9361 * make sure that it's installed properly now.
9362 */
9363 if (dev->features & NETIF_F_LOOPBACK)
9364 tg3_set_loopback(dev, dev->features);
9365
Linus Torvalds1da177e2005-04-16 15:20:36 -07009366 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009367
Matt Carlson679563f2009-09-01 12:55:46 +00009368err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009369 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9370 struct tg3_napi *tnapi = &tp->napi[i];
9371 free_irq(tnapi->irq_vec, tnapi);
9372 }
Matt Carlson07b01732009-08-28 14:01:15 +00009373
Matt Carlson679563f2009-09-01 12:55:46 +00009374err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009375 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009376 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009377 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009378
9379err_out1:
9380 tg3_ints_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009381 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009382}
9383
Eric Dumazet511d2222010-07-07 20:44:24 +00009384static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
9385 struct rtnl_link_stats64 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009386static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9387
9388static int tg3_close(struct net_device *dev)
9389{
Matt Carlson4f125f42009-09-01 12:55:02 +00009390 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009391 struct tg3 *tp = netdev_priv(dev);
9392
Matt Carlsonfed97812009-09-01 13:10:19 +00009393 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009394 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009395
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009396 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009397
9398 del_timer_sync(&tp->timer);
9399
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009400 tg3_phy_stop(tp);
9401
David S. Millerf47c11e2005-06-24 20:18:35 -07009402 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009403
9404 tg3_disable_ints(tp);
9405
Michael Chan944d9802005-05-29 14:57:48 -07009406 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009407 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009408 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009409
David S. Millerf47c11e2005-06-24 20:18:35 -07009410 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009411
Matt Carlson4f125f42009-09-01 12:55:02 +00009412 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9413 struct tg3_napi *tnapi = &tp->napi[i];
9414 free_irq(tnapi->irq_vec, tnapi);
9415 }
Matt Carlson07b01732009-08-28 14:01:15 +00009416
9417 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009418
Eric Dumazet511d2222010-07-07 20:44:24 +00009419 tg3_get_stats64(tp->dev, &tp->net_stats_prev);
9420
Linus Torvalds1da177e2005-04-16 15:20:36 -07009421 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9422 sizeof(tp->estats_prev));
9423
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009424 tg3_napi_fini(tp);
9425
Linus Torvalds1da177e2005-04-16 15:20:36 -07009426 tg3_free_consistent(tp);
9427
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009428 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009429
9430 netif_carrier_off(tp->dev);
9431
Linus Torvalds1da177e2005-04-16 15:20:36 -07009432 return 0;
9433}
9434
Eric Dumazet511d2222010-07-07 20:44:24 +00009435static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009436{
9437 return ((u64)val->high << 32) | ((u64)val->low);
9438}
9439
Eric Dumazet511d2222010-07-07 20:44:24 +00009440static u64 calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009441{
9442 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9443
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009444 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009445 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9446 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009447 u32 val;
9448
David S. Millerf47c11e2005-06-24 20:18:35 -07009449 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009450 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9451 tg3_writephy(tp, MII_TG3_TEST1,
9452 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009453 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009454 } else
9455 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009456 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009457
9458 tp->phy_crc_errors += val;
9459
9460 return tp->phy_crc_errors;
9461 }
9462
9463 return get_stat64(&hw_stats->rx_fcs_errors);
9464}
9465
9466#define ESTAT_ADD(member) \
9467 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009468 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009469
9470static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9471{
9472 struct tg3_ethtool_stats *estats = &tp->estats;
9473 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9474 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9475
9476 if (!hw_stats)
9477 return old_estats;
9478
9479 ESTAT_ADD(rx_octets);
9480 ESTAT_ADD(rx_fragments);
9481 ESTAT_ADD(rx_ucast_packets);
9482 ESTAT_ADD(rx_mcast_packets);
9483 ESTAT_ADD(rx_bcast_packets);
9484 ESTAT_ADD(rx_fcs_errors);
9485 ESTAT_ADD(rx_align_errors);
9486 ESTAT_ADD(rx_xon_pause_rcvd);
9487 ESTAT_ADD(rx_xoff_pause_rcvd);
9488 ESTAT_ADD(rx_mac_ctrl_rcvd);
9489 ESTAT_ADD(rx_xoff_entered);
9490 ESTAT_ADD(rx_frame_too_long_errors);
9491 ESTAT_ADD(rx_jabbers);
9492 ESTAT_ADD(rx_undersize_packets);
9493 ESTAT_ADD(rx_in_length_errors);
9494 ESTAT_ADD(rx_out_length_errors);
9495 ESTAT_ADD(rx_64_or_less_octet_packets);
9496 ESTAT_ADD(rx_65_to_127_octet_packets);
9497 ESTAT_ADD(rx_128_to_255_octet_packets);
9498 ESTAT_ADD(rx_256_to_511_octet_packets);
9499 ESTAT_ADD(rx_512_to_1023_octet_packets);
9500 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9501 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9502 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9503 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9504 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9505
9506 ESTAT_ADD(tx_octets);
9507 ESTAT_ADD(tx_collisions);
9508 ESTAT_ADD(tx_xon_sent);
9509 ESTAT_ADD(tx_xoff_sent);
9510 ESTAT_ADD(tx_flow_control);
9511 ESTAT_ADD(tx_mac_errors);
9512 ESTAT_ADD(tx_single_collisions);
9513 ESTAT_ADD(tx_mult_collisions);
9514 ESTAT_ADD(tx_deferred);
9515 ESTAT_ADD(tx_excessive_collisions);
9516 ESTAT_ADD(tx_late_collisions);
9517 ESTAT_ADD(tx_collide_2times);
9518 ESTAT_ADD(tx_collide_3times);
9519 ESTAT_ADD(tx_collide_4times);
9520 ESTAT_ADD(tx_collide_5times);
9521 ESTAT_ADD(tx_collide_6times);
9522 ESTAT_ADD(tx_collide_7times);
9523 ESTAT_ADD(tx_collide_8times);
9524 ESTAT_ADD(tx_collide_9times);
9525 ESTAT_ADD(tx_collide_10times);
9526 ESTAT_ADD(tx_collide_11times);
9527 ESTAT_ADD(tx_collide_12times);
9528 ESTAT_ADD(tx_collide_13times);
9529 ESTAT_ADD(tx_collide_14times);
9530 ESTAT_ADD(tx_collide_15times);
9531 ESTAT_ADD(tx_ucast_packets);
9532 ESTAT_ADD(tx_mcast_packets);
9533 ESTAT_ADD(tx_bcast_packets);
9534 ESTAT_ADD(tx_carrier_sense_errors);
9535 ESTAT_ADD(tx_discards);
9536 ESTAT_ADD(tx_errors);
9537
9538 ESTAT_ADD(dma_writeq_full);
9539 ESTAT_ADD(dma_write_prioq_full);
9540 ESTAT_ADD(rxbds_empty);
9541 ESTAT_ADD(rx_discards);
9542 ESTAT_ADD(rx_errors);
9543 ESTAT_ADD(rx_threshold_hit);
9544
9545 ESTAT_ADD(dma_readq_full);
9546 ESTAT_ADD(dma_read_prioq_full);
9547 ESTAT_ADD(tx_comp_queue_full);
9548
9549 ESTAT_ADD(ring_set_send_prod_index);
9550 ESTAT_ADD(ring_status_update);
9551 ESTAT_ADD(nic_irqs);
9552 ESTAT_ADD(nic_avoided_irqs);
9553 ESTAT_ADD(nic_tx_threshold_hit);
9554
9555 return estats;
9556}
9557
Eric Dumazet511d2222010-07-07 20:44:24 +00009558static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
9559 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009560{
9561 struct tg3 *tp = netdev_priv(dev);
Eric Dumazet511d2222010-07-07 20:44:24 +00009562 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009563 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9564
9565 if (!hw_stats)
9566 return old_stats;
9567
9568 stats->rx_packets = old_stats->rx_packets +
9569 get_stat64(&hw_stats->rx_ucast_packets) +
9570 get_stat64(&hw_stats->rx_mcast_packets) +
9571 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009572
Linus Torvalds1da177e2005-04-16 15:20:36 -07009573 stats->tx_packets = old_stats->tx_packets +
9574 get_stat64(&hw_stats->tx_ucast_packets) +
9575 get_stat64(&hw_stats->tx_mcast_packets) +
9576 get_stat64(&hw_stats->tx_bcast_packets);
9577
9578 stats->rx_bytes = old_stats->rx_bytes +
9579 get_stat64(&hw_stats->rx_octets);
9580 stats->tx_bytes = old_stats->tx_bytes +
9581 get_stat64(&hw_stats->tx_octets);
9582
9583 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009584 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009585 stats->tx_errors = old_stats->tx_errors +
9586 get_stat64(&hw_stats->tx_errors) +
9587 get_stat64(&hw_stats->tx_mac_errors) +
9588 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9589 get_stat64(&hw_stats->tx_discards);
9590
9591 stats->multicast = old_stats->multicast +
9592 get_stat64(&hw_stats->rx_mcast_packets);
9593 stats->collisions = old_stats->collisions +
9594 get_stat64(&hw_stats->tx_collisions);
9595
9596 stats->rx_length_errors = old_stats->rx_length_errors +
9597 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9598 get_stat64(&hw_stats->rx_undersize_packets);
9599
9600 stats->rx_over_errors = old_stats->rx_over_errors +
9601 get_stat64(&hw_stats->rxbds_empty);
9602 stats->rx_frame_errors = old_stats->rx_frame_errors +
9603 get_stat64(&hw_stats->rx_align_errors);
9604 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9605 get_stat64(&hw_stats->tx_discards);
9606 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9607 get_stat64(&hw_stats->tx_carrier_sense_errors);
9608
9609 stats->rx_crc_errors = old_stats->rx_crc_errors +
9610 calc_crc_errors(tp);
9611
John W. Linville4f63b872005-09-12 14:43:18 -07009612 stats->rx_missed_errors = old_stats->rx_missed_errors +
9613 get_stat64(&hw_stats->rx_discards);
9614
Eric Dumazetb0057c52010-10-10 19:55:52 +00009615 stats->rx_dropped = tp->rx_dropped;
9616
Linus Torvalds1da177e2005-04-16 15:20:36 -07009617 return stats;
9618}
9619
9620static inline u32 calc_crc(unsigned char *buf, int len)
9621{
9622 u32 reg;
9623 u32 tmp;
9624 int j, k;
9625
9626 reg = 0xffffffff;
9627
9628 for (j = 0; j < len; j++) {
9629 reg ^= buf[j];
9630
9631 for (k = 0; k < 8; k++) {
9632 tmp = reg & 0x01;
9633
9634 reg >>= 1;
9635
Matt Carlson859a588792010-04-05 10:19:28 +00009636 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009637 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009638 }
9639 }
9640
9641 return ~reg;
9642}
9643
9644static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9645{
9646 /* accept or reject all multicast frames */
9647 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9648 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9649 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9650 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9651}
9652
9653static void __tg3_set_rx_mode(struct net_device *dev)
9654{
9655 struct tg3 *tp = netdev_priv(dev);
9656 u32 rx_mode;
9657
9658 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9659 RX_MODE_KEEP_VLAN_TAG);
9660
Matt Carlsonbf933c82011-01-25 15:58:49 +00009661#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009662 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9663 * flag clear.
9664 */
Joe Perches63c3a662011-04-26 08:12:10 +00009665 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009666 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9667#endif
9668
9669 if (dev->flags & IFF_PROMISC) {
9670 /* Promiscuous mode. */
9671 rx_mode |= RX_MODE_PROMISC;
9672 } else if (dev->flags & IFF_ALLMULTI) {
9673 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009674 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009675 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009676 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009677 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009678 } else {
9679 /* Accept one or more multicast(s). */
Jiri Pirko22bedad32010-04-01 21:22:57 +00009680 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009681 u32 mc_filter[4] = { 0, };
9682 u32 regidx;
9683 u32 bit;
9684 u32 crc;
9685
Jiri Pirko22bedad32010-04-01 21:22:57 +00009686 netdev_for_each_mc_addr(ha, dev) {
9687 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009688 bit = ~crc & 0x7f;
9689 regidx = (bit & 0x60) >> 5;
9690 bit &= 0x1f;
9691 mc_filter[regidx] |= (1 << bit);
9692 }
9693
9694 tw32(MAC_HASH_REG_0, mc_filter[0]);
9695 tw32(MAC_HASH_REG_1, mc_filter[1]);
9696 tw32(MAC_HASH_REG_2, mc_filter[2]);
9697 tw32(MAC_HASH_REG_3, mc_filter[3]);
9698 }
9699
9700 if (rx_mode != tp->rx_mode) {
9701 tp->rx_mode = rx_mode;
9702 tw32_f(MAC_RX_MODE, rx_mode);
9703 udelay(10);
9704 }
9705}
9706
9707static void tg3_set_rx_mode(struct net_device *dev)
9708{
9709 struct tg3 *tp = netdev_priv(dev);
9710
Michael Chane75f7c92006-03-20 21:33:26 -08009711 if (!netif_running(dev))
9712 return;
9713
David S. Millerf47c11e2005-06-24 20:18:35 -07009714 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009715 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009716 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009717}
9718
Linus Torvalds1da177e2005-04-16 15:20:36 -07009719static int tg3_get_regs_len(struct net_device *dev)
9720{
Matt Carlson97bd8e42011-04-13 11:05:04 +00009721 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009722}
9723
9724static void tg3_get_regs(struct net_device *dev,
9725 struct ethtool_regs *regs, void *_p)
9726{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009727 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009728
9729 regs->version = 0;
9730
Matt Carlson97bd8e42011-04-13 11:05:04 +00009731 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009732
Matt Carlson80096062010-08-02 11:26:06 +00009733 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009734 return;
9735
David S. Millerf47c11e2005-06-24 20:18:35 -07009736 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009737
Matt Carlson97bd8e42011-04-13 11:05:04 +00009738 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009739
David S. Millerf47c11e2005-06-24 20:18:35 -07009740 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009741}
9742
9743static int tg3_get_eeprom_len(struct net_device *dev)
9744{
9745 struct tg3 *tp = netdev_priv(dev);
9746
9747 return tp->nvram_size;
9748}
9749
Linus Torvalds1da177e2005-04-16 15:20:36 -07009750static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9751{
9752 struct tg3 *tp = netdev_priv(dev);
9753 int ret;
9754 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009755 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009756 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009757
Joe Perches63c3a662011-04-26 08:12:10 +00009758 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +00009759 return -EINVAL;
9760
Matt Carlson80096062010-08-02 11:26:06 +00009761 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009762 return -EAGAIN;
9763
Linus Torvalds1da177e2005-04-16 15:20:36 -07009764 offset = eeprom->offset;
9765 len = eeprom->len;
9766 eeprom->len = 0;
9767
9768 eeprom->magic = TG3_EEPROM_MAGIC;
9769
9770 if (offset & 3) {
9771 /* adjustments to start on required 4 byte boundary */
9772 b_offset = offset & 3;
9773 b_count = 4 - b_offset;
9774 if (b_count > len) {
9775 /* i.e. offset=1 len=2 */
9776 b_count = len;
9777 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009778 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009779 if (ret)
9780 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +00009781 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009782 len -= b_count;
9783 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009784 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009785 }
9786
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009787 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009788 pd = &data[eeprom->len];
9789 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009790 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009791 if (ret) {
9792 eeprom->len += i;
9793 return ret;
9794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009795 memcpy(pd + i, &val, 4);
9796 }
9797 eeprom->len += i;
9798
9799 if (len & 3) {
9800 /* read last bytes not ending on 4 byte boundary */
9801 pd = &data[eeprom->len];
9802 b_count = len & 3;
9803 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009804 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009805 if (ret)
9806 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009807 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009808 eeprom->len += b_count;
9809 }
9810 return 0;
9811}
9812
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009813static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009814
9815static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9816{
9817 struct tg3 *tp = netdev_priv(dev);
9818 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009819 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009820 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009821 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009822
Matt Carlson80096062010-08-02 11:26:06 +00009823 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009824 return -EAGAIN;
9825
Joe Perches63c3a662011-04-26 08:12:10 +00009826 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +00009827 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009828 return -EINVAL;
9829
9830 offset = eeprom->offset;
9831 len = eeprom->len;
9832
9833 if ((b_offset = (offset & 3))) {
9834 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +00009835 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009836 if (ret)
9837 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009838 len += b_offset;
9839 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -07009840 if (len < 4)
9841 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009842 }
9843
9844 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -07009845 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009846 /* adjustments to end on required 4 byte boundary */
9847 odd_len = 1;
9848 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009849 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009850 if (ret)
9851 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009852 }
9853
9854 buf = data;
9855 if (b_offset || odd_len) {
9856 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +01009857 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009858 return -ENOMEM;
9859 if (b_offset)
9860 memcpy(buf, &start, 4);
9861 if (odd_len)
9862 memcpy(buf+len-4, &end, 4);
9863 memcpy(buf + b_offset, data, eeprom->len);
9864 }
9865
9866 ret = tg3_nvram_write_block(tp, offset, len, buf);
9867
9868 if (buf != data)
9869 kfree(buf);
9870
9871 return ret;
9872}
9873
9874static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9875{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009876 struct tg3 *tp = netdev_priv(dev);
9877
Joe Perches63c3a662011-04-26 08:12:10 +00009878 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009879 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009880 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009881 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009882 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9883 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009884 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009885
Linus Torvalds1da177e2005-04-16 15:20:36 -07009886 cmd->supported = (SUPPORTED_Autoneg);
9887
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009888 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009889 cmd->supported |= (SUPPORTED_1000baseT_Half |
9890 SUPPORTED_1000baseT_Full);
9891
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009892 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009893 cmd->supported |= (SUPPORTED_100baseT_Half |
9894 SUPPORTED_100baseT_Full |
9895 SUPPORTED_10baseT_Half |
9896 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -08009897 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -07009898 cmd->port = PORT_TP;
9899 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009900 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -07009901 cmd->port = PORT_FIBRE;
9902 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009903
Linus Torvalds1da177e2005-04-16 15:20:36 -07009904 cmd->advertising = tp->link_config.advertising;
9905 if (netif_running(dev)) {
David Decotigny70739492011-04-27 18:32:40 +00009906 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009907 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson64c22182010-10-14 10:37:44 +00009908 } else {
David Decotigny70739492011-04-27 18:32:40 +00009909 ethtool_cmd_speed_set(cmd, SPEED_INVALID);
Matt Carlson64c22182010-10-14 10:37:44 +00009910 cmd->duplex = DUPLEX_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009911 }
Matt Carlson882e9792009-09-01 13:21:36 +00009912 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009913 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009914 cmd->autoneg = tp->link_config.autoneg;
9915 cmd->maxtxpkt = 0;
9916 cmd->maxrxpkt = 0;
9917 return 0;
9918}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009919
Linus Torvalds1da177e2005-04-16 15:20:36 -07009920static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
9921{
9922 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +00009923 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009924
Joe Perches63c3a662011-04-26 08:12:10 +00009925 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009926 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009927 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009928 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00009929 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
9930 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009931 }
9932
Matt Carlson7e5856b2009-02-25 14:23:01 +00009933 if (cmd->autoneg != AUTONEG_ENABLE &&
9934 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -07009935 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +00009936
9937 if (cmd->autoneg == AUTONEG_DISABLE &&
9938 cmd->duplex != DUPLEX_FULL &&
9939 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -07009940 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009941
Matt Carlson7e5856b2009-02-25 14:23:01 +00009942 if (cmd->autoneg == AUTONEG_ENABLE) {
9943 u32 mask = ADVERTISED_Autoneg |
9944 ADVERTISED_Pause |
9945 ADVERTISED_Asym_Pause;
9946
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009947 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009948 mask |= ADVERTISED_1000baseT_Half |
9949 ADVERTISED_1000baseT_Full;
9950
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009951 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +00009952 mask |= ADVERTISED_100baseT_Half |
9953 ADVERTISED_100baseT_Full |
9954 ADVERTISED_10baseT_Half |
9955 ADVERTISED_10baseT_Full |
9956 ADVERTISED_TP;
9957 else
9958 mask |= ADVERTISED_FIBRE;
9959
9960 if (cmd->advertising & ~mask)
9961 return -EINVAL;
9962
9963 mask &= (ADVERTISED_1000baseT_Half |
9964 ADVERTISED_1000baseT_Full |
9965 ADVERTISED_100baseT_Half |
9966 ADVERTISED_100baseT_Full |
9967 ADVERTISED_10baseT_Half |
9968 ADVERTISED_10baseT_Full);
9969
9970 cmd->advertising &= mask;
9971 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009972 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +00009973 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +00009974 return -EINVAL;
9975
9976 if (cmd->duplex != DUPLEX_FULL)
9977 return -EINVAL;
9978 } else {
David Decotigny25db0332011-04-27 18:32:39 +00009979 if (speed != SPEED_100 &&
9980 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +00009981 return -EINVAL;
9982 }
9983 }
9984
David S. Millerf47c11e2005-06-24 20:18:35 -07009985 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009986
9987 tp->link_config.autoneg = cmd->autoneg;
9988 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -07009989 tp->link_config.advertising = (cmd->advertising |
9990 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009991 tp->link_config.speed = SPEED_INVALID;
9992 tp->link_config.duplex = DUPLEX_INVALID;
9993 } else {
9994 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +00009995 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009996 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009997 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009998
Michael Chan24fcad62006-12-17 17:06:46 -08009999 tp->link_config.orig_speed = tp->link_config.speed;
10000 tp->link_config.orig_duplex = tp->link_config.duplex;
10001 tp->link_config.orig_autoneg = tp->link_config.autoneg;
10002
Linus Torvalds1da177e2005-04-16 15:20:36 -070010003 if (netif_running(dev))
10004 tg3_setup_phy(tp, 1);
10005
David S. Millerf47c11e2005-06-24 20:18:35 -070010006 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010007
Linus Torvalds1da177e2005-04-16 15:20:36 -070010008 return 0;
10009}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010010
Linus Torvalds1da177e2005-04-16 15:20:36 -070010011static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10012{
10013 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010014
Linus Torvalds1da177e2005-04-16 15:20:36 -070010015 strcpy(info->driver, DRV_MODULE_NAME);
10016 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -080010017 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010018 strcpy(info->bus_info, pci_name(tp->pdev));
10019}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010020
Linus Torvalds1da177e2005-04-16 15:20:36 -070010021static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10022{
10023 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010024
Joe Perches63c3a662011-04-26 08:12:10 +000010025 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010026 wol->supported = WAKE_MAGIC;
10027 else
10028 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010029 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010030 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010031 wol->wolopts = WAKE_MAGIC;
10032 memset(&wol->sopass, 0, sizeof(wol->sopass));
10033}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010034
Linus Torvalds1da177e2005-04-16 15:20:36 -070010035static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10036{
10037 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010038 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010039
Linus Torvalds1da177e2005-04-16 15:20:36 -070010040 if (wol->wolopts & ~WAKE_MAGIC)
10041 return -EINVAL;
10042 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010043 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010044 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010045
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010046 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10047
David S. Millerf47c11e2005-06-24 20:18:35 -070010048 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010049 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010050 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010051 else
Joe Perches63c3a662011-04-26 08:12:10 +000010052 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010053 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010054
Linus Torvalds1da177e2005-04-16 15:20:36 -070010055 return 0;
10056}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010057
Linus Torvalds1da177e2005-04-16 15:20:36 -070010058static u32 tg3_get_msglevel(struct net_device *dev)
10059{
10060 struct tg3 *tp = netdev_priv(dev);
10061 return tp->msg_enable;
10062}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010063
Linus Torvalds1da177e2005-04-16 15:20:36 -070010064static void tg3_set_msglevel(struct net_device *dev, u32 value)
10065{
10066 struct tg3 *tp = netdev_priv(dev);
10067 tp->msg_enable = value;
10068}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010069
Linus Torvalds1da177e2005-04-16 15:20:36 -070010070static int tg3_nway_reset(struct net_device *dev)
10071{
10072 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010073 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010074
Linus Torvalds1da177e2005-04-16 15:20:36 -070010075 if (!netif_running(dev))
10076 return -EAGAIN;
10077
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010078 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010079 return -EINVAL;
10080
Joe Perches63c3a662011-04-26 08:12:10 +000010081 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010082 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010083 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010084 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010085 } else {
10086 u32 bmcr;
10087
10088 spin_lock_bh(&tp->lock);
10089 r = -EINVAL;
10090 tg3_readphy(tp, MII_BMCR, &bmcr);
10091 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10092 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010093 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010094 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10095 BMCR_ANENABLE);
10096 r = 0;
10097 }
10098 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010099 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010100
Linus Torvalds1da177e2005-04-16 15:20:36 -070010101 return r;
10102}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010103
Linus Torvalds1da177e2005-04-16 15:20:36 -070010104static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10105{
10106 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010107
Matt Carlson2c49a442010-09-30 10:34:35 +000010108 ering->rx_max_pending = tp->rx_std_ring_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010109 ering->rx_mini_max_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010110 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010111 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010112 else
10113 ering->rx_jumbo_max_pending = 0;
10114
10115 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010116
10117 ering->rx_pending = tp->rx_pending;
10118 ering->rx_mini_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010119 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010120 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10121 else
10122 ering->rx_jumbo_pending = 0;
10123
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010124 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010125}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010126
Linus Torvalds1da177e2005-04-16 15:20:36 -070010127static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10128{
10129 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010130 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010131
Matt Carlson2c49a442010-09-30 10:34:35 +000010132 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10133 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010134 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10135 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010136 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010137 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010138 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010139
Michael Chanbbe832c2005-06-24 20:20:04 -070010140 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010141 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010142 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010143 irq_sync = 1;
10144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145
Michael Chanbbe832c2005-06-24 20:20:04 -070010146 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010147
Linus Torvalds1da177e2005-04-16 15:20:36 -070010148 tp->rx_pending = ering->rx_pending;
10149
Joe Perches63c3a662011-04-26 08:12:10 +000010150 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010151 tp->rx_pending > 63)
10152 tp->rx_pending = 63;
10153 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010154
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010155 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010156 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010157
10158 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010159 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010160 err = tg3_restart_hw(tp, 1);
10161 if (!err)
10162 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010163 }
10164
David S. Millerf47c11e2005-06-24 20:18:35 -070010165 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010166
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010167 if (irq_sync && !err)
10168 tg3_phy_start(tp);
10169
Michael Chanb9ec6c12006-07-25 16:37:27 -070010170 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010171}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010172
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10174{
10175 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010176
Joe Perches63c3a662011-04-26 08:12:10 +000010177 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010178
Steve Glendinninge18ce342008-12-16 02:00:00 -080010179 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010180 epause->rx_pause = 1;
10181 else
10182 epause->rx_pause = 0;
10183
Steve Glendinninge18ce342008-12-16 02:00:00 -080010184 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010185 epause->tx_pause = 1;
10186 else
10187 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010188}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010189
Linus Torvalds1da177e2005-04-16 15:20:36 -070010190static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10191{
10192 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010193 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010194
Joe Perches63c3a662011-04-26 08:12:10 +000010195 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010196 u32 newadv;
10197 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010198
Matt Carlson27121682010-02-17 15:16:57 +000010199 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010200
Matt Carlson27121682010-02-17 15:16:57 +000010201 if (!(phydev->supported & SUPPORTED_Pause) ||
10202 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010203 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010204 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010205
Matt Carlson27121682010-02-17 15:16:57 +000010206 tp->link_config.flowctrl = 0;
10207 if (epause->rx_pause) {
10208 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010209
Matt Carlson27121682010-02-17 15:16:57 +000010210 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010211 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010212 newadv = ADVERTISED_Pause;
10213 } else
10214 newadv = ADVERTISED_Pause |
10215 ADVERTISED_Asym_Pause;
10216 } else if (epause->tx_pause) {
10217 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10218 newadv = ADVERTISED_Asym_Pause;
10219 } else
10220 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010221
Matt Carlson27121682010-02-17 15:16:57 +000010222 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010223 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010224 else
Joe Perches63c3a662011-04-26 08:12:10 +000010225 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010226
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010227 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010228 u32 oldadv = phydev->advertising &
10229 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10230 if (oldadv != newadv) {
10231 phydev->advertising &=
10232 ~(ADVERTISED_Pause |
10233 ADVERTISED_Asym_Pause);
10234 phydev->advertising |= newadv;
10235 if (phydev->autoneg) {
10236 /*
10237 * Always renegotiate the link to
10238 * inform our link partner of our
10239 * flow control settings, even if the
10240 * flow control is forced. Let
10241 * tg3_adjust_link() do the final
10242 * flow control setup.
10243 */
10244 return phy_start_aneg(phydev);
10245 }
10246 }
10247
10248 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010249 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010250 } else {
10251 tp->link_config.orig_advertising &=
10252 ~(ADVERTISED_Pause |
10253 ADVERTISED_Asym_Pause);
10254 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010255 }
10256 } else {
10257 int irq_sync = 0;
10258
10259 if (netif_running(dev)) {
10260 tg3_netif_stop(tp);
10261 irq_sync = 1;
10262 }
10263
10264 tg3_full_lock(tp, irq_sync);
10265
10266 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010267 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010268 else
Joe Perches63c3a662011-04-26 08:12:10 +000010269 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010270 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010271 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010272 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010273 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010274 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010275 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010276 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010277 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010278
10279 if (netif_running(dev)) {
10280 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10281 err = tg3_restart_hw(tp, 1);
10282 if (!err)
10283 tg3_netif_start(tp);
10284 }
10285
10286 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010288
Michael Chanb9ec6c12006-07-25 16:37:27 -070010289 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010290}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010291
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010292static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010293{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010294 switch (sset) {
10295 case ETH_SS_TEST:
10296 return TG3_NUM_TEST;
10297 case ETH_SS_STATS:
10298 return TG3_NUM_STATS;
10299 default:
10300 return -EOPNOTSUPP;
10301 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010302}
10303
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010304static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010305{
10306 switch (stringset) {
10307 case ETH_SS_STATS:
10308 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10309 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010310 case ETH_SS_TEST:
10311 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10312 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010313 default:
10314 WARN_ON(1); /* we need a WARN() */
10315 break;
10316 }
10317}
10318
stephen hemminger81b87092011-04-04 08:43:50 +000010319static int tg3_set_phys_id(struct net_device *dev,
10320 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010321{
10322 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010323
10324 if (!netif_running(tp->dev))
10325 return -EAGAIN;
10326
stephen hemminger81b87092011-04-04 08:43:50 +000010327 switch (state) {
10328 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010329 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010330
stephen hemminger81b87092011-04-04 08:43:50 +000010331 case ETHTOOL_ID_ON:
10332 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10333 LED_CTRL_1000MBPS_ON |
10334 LED_CTRL_100MBPS_ON |
10335 LED_CTRL_10MBPS_ON |
10336 LED_CTRL_TRAFFIC_OVERRIDE |
10337 LED_CTRL_TRAFFIC_BLINK |
10338 LED_CTRL_TRAFFIC_LED);
10339 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010340
stephen hemminger81b87092011-04-04 08:43:50 +000010341 case ETHTOOL_ID_OFF:
10342 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10343 LED_CTRL_TRAFFIC_OVERRIDE);
10344 break;
Michael Chan4009a932005-09-05 17:52:54 -070010345
stephen hemminger81b87092011-04-04 08:43:50 +000010346 case ETHTOOL_ID_INACTIVE:
10347 tw32(MAC_LED_CTRL, tp->led_ctrl);
10348 break;
Michael Chan4009a932005-09-05 17:52:54 -070010349 }
stephen hemminger81b87092011-04-04 08:43:50 +000010350
Michael Chan4009a932005-09-05 17:52:54 -070010351 return 0;
10352}
10353
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010354static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010355 struct ethtool_stats *estats, u64 *tmp_stats)
10356{
10357 struct tg3 *tp = netdev_priv(dev);
10358 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10359}
10360
Matt Carlsonc3e94502011-04-13 11:05:08 +000010361static __be32 * tg3_vpd_readblock(struct tg3 *tp)
10362{
10363 int i;
10364 __be32 *buf;
10365 u32 offset = 0, len = 0;
10366 u32 magic, val;
10367
Joe Perches63c3a662011-04-26 08:12:10 +000010368 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010369 return NULL;
10370
10371 if (magic == TG3_EEPROM_MAGIC) {
10372 for (offset = TG3_NVM_DIR_START;
10373 offset < TG3_NVM_DIR_END;
10374 offset += TG3_NVM_DIRENT_SIZE) {
10375 if (tg3_nvram_read(tp, offset, &val))
10376 return NULL;
10377
10378 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10379 TG3_NVM_DIRTYPE_EXTVPD)
10380 break;
10381 }
10382
10383 if (offset != TG3_NVM_DIR_END) {
10384 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10385 if (tg3_nvram_read(tp, offset + 4, &offset))
10386 return NULL;
10387
10388 offset = tg3_nvram_logical_addr(tp, offset);
10389 }
10390 }
10391
10392 if (!offset || !len) {
10393 offset = TG3_NVM_VPD_OFF;
10394 len = TG3_NVM_VPD_LEN;
10395 }
10396
10397 buf = kmalloc(len, GFP_KERNEL);
10398 if (buf == NULL)
10399 return NULL;
10400
10401 if (magic == TG3_EEPROM_MAGIC) {
10402 for (i = 0; i < len; i += 4) {
10403 /* The data is in little-endian format in NVRAM.
10404 * Use the big-endian read routines to preserve
10405 * the byte order as it exists in NVRAM.
10406 */
10407 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10408 goto error;
10409 }
10410 } else {
10411 u8 *ptr;
10412 ssize_t cnt;
10413 unsigned int pos = 0;
10414
10415 ptr = (u8 *)&buf[0];
10416 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10417 cnt = pci_read_vpd(tp->pdev, pos,
10418 len - pos, ptr);
10419 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10420 cnt = 0;
10421 else if (cnt < 0)
10422 goto error;
10423 }
10424 if (pos != len)
10425 goto error;
10426 }
10427
10428 return buf;
10429
10430error:
10431 kfree(buf);
10432 return NULL;
10433}
10434
Michael Chan566f86a2005-05-29 14:56:58 -070010435#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010436#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10437#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10438#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Michael Chanb16250e2006-09-27 16:10:14 -070010439#define NVRAM_SELFBOOT_HW_SIZE 0x20
10440#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010441
10442static int tg3_test_nvram(struct tg3 *tp)
10443{
Al Virob9fc7dc2007-12-17 22:59:57 -080010444 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010445 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010446 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010447
Joe Perches63c3a662011-04-26 08:12:10 +000010448 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010449 return 0;
10450
Matt Carlsone4f34112009-02-25 14:25:00 +000010451 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010452 return -EIO;
10453
Michael Chan1b277772006-03-20 22:27:48 -080010454 if (magic == TG3_EEPROM_MAGIC)
10455 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010456 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010457 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10458 TG3_EEPROM_SB_FORMAT_1) {
10459 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10460 case TG3_EEPROM_SB_REVISION_0:
10461 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10462 break;
10463 case TG3_EEPROM_SB_REVISION_2:
10464 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10465 break;
10466 case TG3_EEPROM_SB_REVISION_3:
10467 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10468 break;
10469 default:
10470 return 0;
10471 }
10472 } else
Michael Chan1b277772006-03-20 22:27:48 -080010473 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010474 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10475 size = NVRAM_SELFBOOT_HW_SIZE;
10476 else
Michael Chan1b277772006-03-20 22:27:48 -080010477 return -EIO;
10478
10479 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010480 if (buf == NULL)
10481 return -ENOMEM;
10482
Michael Chan1b277772006-03-20 22:27:48 -080010483 err = -EIO;
10484 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010485 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10486 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010487 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010488 }
Michael Chan1b277772006-03-20 22:27:48 -080010489 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010490 goto out;
10491
Michael Chan1b277772006-03-20 22:27:48 -080010492 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010493 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010494 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010495 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010496 u8 *buf8 = (u8 *) buf, csum8 = 0;
10497
Al Virob9fc7dc2007-12-17 22:59:57 -080010498 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010499 TG3_EEPROM_SB_REVISION_2) {
10500 /* For rev 2, the csum doesn't include the MBA. */
10501 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10502 csum8 += buf8[i];
10503 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10504 csum8 += buf8[i];
10505 } else {
10506 for (i = 0; i < size; i++)
10507 csum8 += buf8[i];
10508 }
Michael Chan1b277772006-03-20 22:27:48 -080010509
Adrian Bunkad96b482006-04-05 22:21:04 -070010510 if (csum8 == 0) {
10511 err = 0;
10512 goto out;
10513 }
10514
10515 err = -EIO;
10516 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010517 }
Michael Chan566f86a2005-05-29 14:56:58 -070010518
Al Virob9fc7dc2007-12-17 22:59:57 -080010519 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010520 TG3_EEPROM_MAGIC_HW) {
10521 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010522 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010523 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010524
10525 /* Separate the parity bits and the data bytes. */
10526 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10527 if ((i == 0) || (i == 8)) {
10528 int l;
10529 u8 msk;
10530
10531 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10532 parity[k++] = buf8[i] & msk;
10533 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000010534 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070010535 int l;
10536 u8 msk;
10537
10538 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10539 parity[k++] = buf8[i] & msk;
10540 i++;
10541
10542 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10543 parity[k++] = buf8[i] & msk;
10544 i++;
10545 }
10546 data[j++] = buf8[i];
10547 }
10548
10549 err = -EIO;
10550 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10551 u8 hw8 = hweight8(data[i]);
10552
10553 if ((hw8 & 0x1) && parity[i])
10554 goto out;
10555 else if (!(hw8 & 0x1) && !parity[i])
10556 goto out;
10557 }
10558 err = 0;
10559 goto out;
10560 }
10561
Matt Carlson01c3a392011-03-09 16:58:20 +000010562 err = -EIO;
10563
Michael Chan566f86a2005-05-29 14:56:58 -070010564 /* Bootstrap checksum at offset 0x10 */
10565 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000010566 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010567 goto out;
10568
10569 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10570 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000010571 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000010572 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010573
Matt Carlsonc3e94502011-04-13 11:05:08 +000010574 kfree(buf);
10575
10576 buf = tg3_vpd_readblock(tp);
10577 if (!buf)
10578 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000010579
10580 i = pci_vpd_find_tag((u8 *)buf, 0, TG3_NVM_VPD_LEN,
10581 PCI_VPD_LRDT_RO_DATA);
10582 if (i > 0) {
10583 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
10584 if (j < 0)
10585 goto out;
10586
10587 if (i + PCI_VPD_LRDT_TAG_SIZE + j > TG3_NVM_VPD_LEN)
10588 goto out;
10589
10590 i += PCI_VPD_LRDT_TAG_SIZE;
10591 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
10592 PCI_VPD_RO_KEYWORD_CHKSUM);
10593 if (j > 0) {
10594 u8 csum8 = 0;
10595
10596 j += PCI_VPD_INFO_FLD_HDR_SIZE;
10597
10598 for (i = 0; i <= j; i++)
10599 csum8 += ((u8 *)buf)[i];
10600
10601 if (csum8)
10602 goto out;
10603 }
10604 }
10605
Michael Chan566f86a2005-05-29 14:56:58 -070010606 err = 0;
10607
10608out:
10609 kfree(buf);
10610 return err;
10611}
10612
Michael Chanca430072005-05-29 14:57:23 -070010613#define TG3_SERDES_TIMEOUT_SEC 2
10614#define TG3_COPPER_TIMEOUT_SEC 6
10615
10616static int tg3_test_link(struct tg3 *tp)
10617{
10618 int i, max;
10619
10620 if (!netif_running(tp->dev))
10621 return -ENODEV;
10622
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010623 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010624 max = TG3_SERDES_TIMEOUT_SEC;
10625 else
10626 max = TG3_COPPER_TIMEOUT_SEC;
10627
10628 for (i = 0; i < max; i++) {
10629 if (netif_carrier_ok(tp->dev))
10630 return 0;
10631
10632 if (msleep_interruptible(1000))
10633 break;
10634 }
10635
10636 return -EIO;
10637}
10638
Michael Chana71116d2005-05-29 14:58:11 -070010639/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010640static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010641{
Michael Chanb16250e2006-09-27 16:10:14 -070010642 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010643 u32 offset, read_mask, write_mask, val, save_val, read_val;
10644 static struct {
10645 u16 offset;
10646 u16 flags;
10647#define TG3_FL_5705 0x1
10648#define TG3_FL_NOT_5705 0x2
10649#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010650#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010651 u32 read_mask;
10652 u32 write_mask;
10653 } reg_tbl[] = {
10654 /* MAC Control Registers */
10655 { MAC_MODE, TG3_FL_NOT_5705,
10656 0x00000000, 0x00ef6f8c },
10657 { MAC_MODE, TG3_FL_5705,
10658 0x00000000, 0x01ef6b8c },
10659 { MAC_STATUS, TG3_FL_NOT_5705,
10660 0x03800107, 0x00000000 },
10661 { MAC_STATUS, TG3_FL_5705,
10662 0x03800100, 0x00000000 },
10663 { MAC_ADDR_0_HIGH, 0x0000,
10664 0x00000000, 0x0000ffff },
10665 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010666 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070010667 { MAC_RX_MTU_SIZE, 0x0000,
10668 0x00000000, 0x0000ffff },
10669 { MAC_TX_MODE, 0x0000,
10670 0x00000000, 0x00000070 },
10671 { MAC_TX_LENGTHS, 0x0000,
10672 0x00000000, 0x00003fff },
10673 { MAC_RX_MODE, TG3_FL_NOT_5705,
10674 0x00000000, 0x000007fc },
10675 { MAC_RX_MODE, TG3_FL_5705,
10676 0x00000000, 0x000007dc },
10677 { MAC_HASH_REG_0, 0x0000,
10678 0x00000000, 0xffffffff },
10679 { MAC_HASH_REG_1, 0x0000,
10680 0x00000000, 0xffffffff },
10681 { MAC_HASH_REG_2, 0x0000,
10682 0x00000000, 0xffffffff },
10683 { MAC_HASH_REG_3, 0x0000,
10684 0x00000000, 0xffffffff },
10685
10686 /* Receive Data and Receive BD Initiator Control Registers. */
10687 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10688 0x00000000, 0xffffffff },
10689 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10690 0x00000000, 0xffffffff },
10691 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10692 0x00000000, 0x00000003 },
10693 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10694 0x00000000, 0xffffffff },
10695 { RCVDBDI_STD_BD+0, 0x0000,
10696 0x00000000, 0xffffffff },
10697 { RCVDBDI_STD_BD+4, 0x0000,
10698 0x00000000, 0xffffffff },
10699 { RCVDBDI_STD_BD+8, 0x0000,
10700 0x00000000, 0xffff0002 },
10701 { RCVDBDI_STD_BD+0xc, 0x0000,
10702 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010703
Michael Chana71116d2005-05-29 14:58:11 -070010704 /* Receive BD Initiator Control Registers. */
10705 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10706 0x00000000, 0xffffffff },
10707 { RCVBDI_STD_THRESH, TG3_FL_5705,
10708 0x00000000, 0x000003ff },
10709 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10710 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010711
Michael Chana71116d2005-05-29 14:58:11 -070010712 /* Host Coalescing Control Registers. */
10713 { HOSTCC_MODE, TG3_FL_NOT_5705,
10714 0x00000000, 0x00000004 },
10715 { HOSTCC_MODE, TG3_FL_5705,
10716 0x00000000, 0x000000f6 },
10717 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10718 0x00000000, 0xffffffff },
10719 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10720 0x00000000, 0x000003ff },
10721 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10722 0x00000000, 0xffffffff },
10723 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10724 0x00000000, 0x000003ff },
10725 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10726 0x00000000, 0xffffffff },
10727 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10728 0x00000000, 0x000000ff },
10729 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10730 0x00000000, 0xffffffff },
10731 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10732 0x00000000, 0x000000ff },
10733 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10734 0x00000000, 0xffffffff },
10735 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10736 0x00000000, 0xffffffff },
10737 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10738 0x00000000, 0xffffffff },
10739 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10740 0x00000000, 0x000000ff },
10741 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10742 0x00000000, 0xffffffff },
10743 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10744 0x00000000, 0x000000ff },
10745 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10746 0x00000000, 0xffffffff },
10747 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10748 0x00000000, 0xffffffff },
10749 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10750 0x00000000, 0xffffffff },
10751 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10752 0x00000000, 0xffffffff },
10753 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10754 0x00000000, 0xffffffff },
10755 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10756 0xffffffff, 0x00000000 },
10757 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10758 0xffffffff, 0x00000000 },
10759
10760 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010761 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010762 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010763 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010764 0x00000000, 0x007fffff },
10765 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10766 0x00000000, 0x0000003f },
10767 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10768 0x00000000, 0x000001ff },
10769 { BUFMGR_MB_HIGH_WATER, 0x0000,
10770 0x00000000, 0x000001ff },
10771 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10772 0xffffffff, 0x00000000 },
10773 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10774 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010775
Michael Chana71116d2005-05-29 14:58:11 -070010776 /* Mailbox Registers */
10777 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10778 0x00000000, 0x000001ff },
10779 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10780 0x00000000, 0x000001ff },
10781 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10782 0x00000000, 0x000007ff },
10783 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10784 0x00000000, 0x000001ff },
10785
10786 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10787 };
10788
Michael Chanb16250e2006-09-27 16:10:14 -070010789 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010790 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070010791 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000010792 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070010793 is_5750 = 1;
10794 }
Michael Chana71116d2005-05-29 14:58:11 -070010795
10796 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10797 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10798 continue;
10799
10800 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
10801 continue;
10802
Joe Perches63c3a662011-04-26 08:12:10 +000010803 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070010804 (reg_tbl[i].flags & TG3_FL_NOT_5788))
10805 continue;
10806
Michael Chanb16250e2006-09-27 16:10:14 -070010807 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
10808 continue;
10809
Michael Chana71116d2005-05-29 14:58:11 -070010810 offset = (u32) reg_tbl[i].offset;
10811 read_mask = reg_tbl[i].read_mask;
10812 write_mask = reg_tbl[i].write_mask;
10813
10814 /* Save the original register content */
10815 save_val = tr32(offset);
10816
10817 /* Determine the read-only value. */
10818 read_val = save_val & read_mask;
10819
10820 /* Write zero to the register, then make sure the read-only bits
10821 * are not changed and the read/write bits are all zeros.
10822 */
10823 tw32(offset, 0);
10824
10825 val = tr32(offset);
10826
10827 /* Test the read-only and read/write bits. */
10828 if (((val & read_mask) != read_val) || (val & write_mask))
10829 goto out;
10830
10831 /* Write ones to all the bits defined by RdMask and WrMask, then
10832 * make sure the read-only bits are not changed and the
10833 * read/write bits are all ones.
10834 */
10835 tw32(offset, read_mask | write_mask);
10836
10837 val = tr32(offset);
10838
10839 /* Test the read-only bits. */
10840 if ((val & read_mask) != read_val)
10841 goto out;
10842
10843 /* Test the read/write bits. */
10844 if ((val & write_mask) != write_mask)
10845 goto out;
10846
10847 tw32(offset, save_val);
10848 }
10849
10850 return 0;
10851
10852out:
Michael Chan9f88f292006-12-07 00:22:54 -080010853 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000010854 netdev_err(tp->dev,
10855 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070010856 tw32(offset, save_val);
10857 return -EIO;
10858}
10859
Michael Chan7942e1d2005-05-29 14:58:36 -070010860static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
10861{
Arjan van de Venf71e1302006-03-03 21:33:57 -050010862 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070010863 int i;
10864 u32 j;
10865
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020010866 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070010867 for (j = 0; j < len; j += 4) {
10868 u32 val;
10869
10870 tg3_write_mem(tp, offset + j, test_pattern[i]);
10871 tg3_read_mem(tp, offset + j, &val);
10872 if (val != test_pattern[i])
10873 return -EIO;
10874 }
10875 }
10876 return 0;
10877}
10878
10879static int tg3_test_memory(struct tg3 *tp)
10880{
10881 static struct mem_entry {
10882 u32 offset;
10883 u32 len;
10884 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080010885 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070010886 { 0x00002000, 0x1c000},
10887 { 0xffffffff, 0x00000}
10888 }, mem_tbl_5705[] = {
10889 { 0x00000100, 0x0000c},
10890 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070010891 { 0x00004000, 0x00800},
10892 { 0x00006000, 0x01000},
10893 { 0x00008000, 0x02000},
10894 { 0x00010000, 0x0e000},
10895 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080010896 }, mem_tbl_5755[] = {
10897 { 0x00000200, 0x00008},
10898 { 0x00004000, 0x00800},
10899 { 0x00006000, 0x00800},
10900 { 0x00008000, 0x02000},
10901 { 0x00010000, 0x0c000},
10902 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070010903 }, mem_tbl_5906[] = {
10904 { 0x00000200, 0x00008},
10905 { 0x00004000, 0x00400},
10906 { 0x00006000, 0x00400},
10907 { 0x00008000, 0x01000},
10908 { 0x00010000, 0x01000},
10909 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010910 }, mem_tbl_5717[] = {
10911 { 0x00000200, 0x00008},
10912 { 0x00010000, 0x0a000},
10913 { 0x00020000, 0x13c00},
10914 { 0xffffffff, 0x00000}
10915 }, mem_tbl_57765[] = {
10916 { 0x00000200, 0x00008},
10917 { 0x00004000, 0x00800},
10918 { 0x00006000, 0x09800},
10919 { 0x00010000, 0x0a000},
10920 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070010921 };
10922 struct mem_entry *mem_tbl;
10923 int err = 0;
10924 int i;
10925
Joe Perches63c3a662011-04-26 08:12:10 +000010926 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000010927 mem_tbl = mem_tbl_5717;
10928 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
10929 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000010930 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080010931 mem_tbl = mem_tbl_5755;
10932 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
10933 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000010934 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080010935 mem_tbl = mem_tbl_5705;
10936 else
Michael Chan7942e1d2005-05-29 14:58:36 -070010937 mem_tbl = mem_tbl_570x;
10938
10939 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000010940 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
10941 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070010942 break;
10943 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010944
Michael Chan7942e1d2005-05-29 14:58:36 -070010945 return err;
10946}
10947
Michael Chan9f40dea2005-09-05 17:53:06 -070010948#define TG3_MAC_LOOPBACK 0
10949#define TG3_PHY_LOOPBACK 1
Matt Carlsonbb158d62011-04-25 12:42:47 +000010950#define TG3_TSO_LOOPBACK 2
10951
10952#define TG3_TSO_MSS 500
10953
10954#define TG3_TSO_IP_HDR_LEN 20
10955#define TG3_TSO_TCP_HDR_LEN 20
10956#define TG3_TSO_TCP_OPT_LEN 12
10957
10958static const u8 tg3_tso_header[] = {
109590x08, 0x00,
109600x45, 0x00, 0x00, 0x00,
109610x00, 0x00, 0x40, 0x00,
109620x40, 0x06, 0x00, 0x00,
109630x0a, 0x00, 0x00, 0x01,
109640x0a, 0x00, 0x00, 0x02,
109650x0d, 0x00, 0xe0, 0x00,
109660x00, 0x00, 0x01, 0x00,
109670x00, 0x00, 0x02, 0x00,
109680x80, 0x10, 0x10, 0x00,
109690x14, 0x09, 0x00, 0x00,
109700x01, 0x01, 0x08, 0x0a,
109710x11, 0x11, 0x11, 0x11,
109720x11, 0x11, 0x11, 0x11,
10973};
Michael Chan9f40dea2005-09-05 17:53:06 -070010974
Matt Carlson4852a862011-04-13 11:05:07 +000010975static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070010976{
Michael Chan9f40dea2005-09-05 17:53:06 -070010977 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000010978 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Michael Chanc76949a2005-05-29 14:58:59 -070010979 struct sk_buff *skb, *rx_skb;
10980 u8 *tx_data;
10981 dma_addr_t map;
10982 int num_pkts, tx_len, rx_len, i, err;
10983 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000010984 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000010985 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070010986
Matt Carlsonc8873402010-02-12 14:47:11 +000010987 tnapi = &tp->napi[0];
10988 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010989 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000010990 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000010991 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000010992 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000010993 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000010994 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000010995 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000010996
Michael Chan9f40dea2005-09-05 17:53:06 -070010997 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070010998 /* HW errata - mac loopback fails in some cases on 5780.
10999 * Normal traffic and PHY loopback are not affected by
Matt Carlsonaba49f22011-01-25 15:58:53 +000011000 * errata. Also, the MAC loopback test is deprecated for
11001 * all newer ASIC revisions.
Michael Chanc94e3942005-09-27 12:12:42 -070011002 */
Matt Carlsonaba49f22011-01-25 15:58:53 +000011003 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011004 tg3_flag(tp, CPMU_PRESENT))
Michael Chanc94e3942005-09-27 12:12:42 -070011005 return 0;
11006
Matt Carlson49692ca2011-01-25 15:58:52 +000011007 mac_mode = tp->mac_mode &
11008 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
11009 mac_mode |= MAC_MODE_PORT_INT_LPBACK;
Joe Perches63c3a662011-04-26 08:12:10 +000011010 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011011 mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011012 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Michael Chan3f7045c2006-09-27 16:02:29 -070011013 mac_mode |= MAC_MODE_PORT_MODE_MII;
11014 else
11015 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070011016 tw32(MAC_MODE, mac_mode);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011017 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011018 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +000011019 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080011020 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
11021 } else
11022 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070011023
Matt Carlson9ef8ca92007-07-11 19:48:29 -070011024 tg3_phy_toggle_automdix(tp, 0);
11025
Michael Chan3f7045c2006-09-27 16:02:29 -070011026 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070011027 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080011028
Matt Carlson49692ca2011-01-25 15:58:52 +000011029 mac_mode = tp->mac_mode &
11030 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011031 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000011032 tg3_writephy(tp, MII_TG3_FET_PTEST,
11033 MII_TG3_FET_PTEST_FRC_TX_LINK |
11034 MII_TG3_FET_PTEST_FRC_TX_LOCK);
11035 /* The write needs to be flushed for the AC131 */
11036 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11037 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080011038 mac_mode |= MAC_MODE_PORT_MODE_MII;
11039 } else
11040 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070011041
Michael Chanc94e3942005-09-27 12:12:42 -070011042 /* reset to prevent losing 1st rx packet intermittently */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011043 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Michael Chanc94e3942005-09-27 12:12:42 -070011044 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
11045 udelay(10);
11046 tw32_f(MAC_RX_MODE, tp->rx_mode);
11047 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011048 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000011049 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
11050 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011051 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000011052 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011053 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080011054 tg3_writephy(tp, MII_TG3_EXT_CTRL,
11055 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
11056 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011057 tw32(MAC_MODE, mac_mode);
Matt Carlson49692ca2011-01-25 15:58:52 +000011058
11059 /* Wait for link */
11060 for (i = 0; i < 100; i++) {
11061 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11062 break;
11063 mdelay(1);
11064 }
Matt Carlson859a588792010-04-05 10:19:28 +000011065 }
Michael Chanc76949a2005-05-29 14:58:59 -070011066
11067 err = -EIO;
11068
Matt Carlson4852a862011-04-13 11:05:07 +000011069 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011070 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011071 if (!skb)
11072 return -ENOMEM;
11073
Michael Chanc76949a2005-05-29 14:58:59 -070011074 tx_data = skb_put(skb, tx_len);
11075 memcpy(tx_data, tp->dev->dev_addr, 6);
11076 memset(tx_data + 6, 0x0, 8);
11077
Matt Carlson4852a862011-04-13 11:05:07 +000011078 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011079
Matt Carlsonbb158d62011-04-25 12:42:47 +000011080 if (loopback_mode == TG3_TSO_LOOPBACK) {
11081 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11082
11083 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11084 TG3_TSO_TCP_OPT_LEN;
11085
11086 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11087 sizeof(tg3_tso_header));
11088 mss = TG3_TSO_MSS;
11089
11090 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11091 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11092
11093 /* Set the total length field in the IP header */
11094 iph->tot_len = htons((u16)(mss + hdr_len));
11095
11096 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11097 TXD_FLAG_CPU_POST_DMA);
11098
Joe Perches63c3a662011-04-26 08:12:10 +000011099 if (tg3_flag(tp, HW_TSO_1) ||
11100 tg3_flag(tp, HW_TSO_2) ||
11101 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011102 struct tcphdr *th;
11103 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11104 th = (struct tcphdr *)&tx_data[val];
11105 th->check = 0;
11106 } else
11107 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11108
Joe Perches63c3a662011-04-26 08:12:10 +000011109 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011110 mss |= (hdr_len & 0xc) << 12;
11111 if (hdr_len & 0x10)
11112 base_flags |= 0x00000010;
11113 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011114 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011115 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011116 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011117 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11118 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11119 } else {
11120 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11121 }
11122
11123 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11124 } else {
11125 num_pkts = 1;
11126 data_off = ETH_HLEN;
11127 }
11128
11129 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011130 tx_data[i] = (u8) (i & 0xff);
11131
Alexander Duyckf4188d82009-12-02 16:48:38 +000011132 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11133 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011134 dev_kfree_skb(skb);
11135 return -EIO;
11136 }
Michael Chanc76949a2005-05-29 14:58:59 -070011137
11138 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011139 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011140
11141 udelay(10);
11142
Matt Carlson898a56f2009-08-28 14:02:40 +000011143 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011144
Matt Carlsonbb158d62011-04-25 12:42:47 +000011145 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len,
11146 base_flags, (mss << 1) | 1);
Michael Chanc76949a2005-05-29 14:58:59 -070011147
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011148 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011149
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011150 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11151 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011152
11153 udelay(10);
11154
Matt Carlson303fc922009-11-02 14:27:34 +000011155 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11156 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011157 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011158 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011159
11160 udelay(10);
11161
Matt Carlson898a56f2009-08-28 14:02:40 +000011162 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11163 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011164 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011165 (rx_idx == (rx_start_idx + num_pkts)))
11166 break;
11167 }
11168
Alexander Duyckf4188d82009-12-02 16:48:38 +000011169 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070011170 dev_kfree_skb(skb);
11171
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011172 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011173 goto out;
11174
11175 if (rx_idx != rx_start_idx + num_pkts)
11176 goto out;
11177
Matt Carlsonbb158d62011-04-25 12:42:47 +000011178 val = data_off;
11179 while (rx_idx != rx_start_idx) {
11180 desc = &rnapi->rx_rcb[rx_start_idx++];
11181 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11182 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011183
Matt Carlsonbb158d62011-04-25 12:42:47 +000011184 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11185 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011186 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011187
Matt Carlsonbb158d62011-04-25 12:42:47 +000011188 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11189 - ETH_FCS_LEN;
11190
11191 if (loopback_mode != TG3_TSO_LOOPBACK) {
11192 if (rx_len != tx_len)
11193 goto out;
11194
11195 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11196 if (opaque_key != RXD_OPAQUE_RING_STD)
11197 goto out;
11198 } else {
11199 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11200 goto out;
11201 }
11202 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11203 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
11204 >> RXD_TCPCSUM_SHIFT == 0xffff) {
11205 goto out;
11206 }
11207
11208 if (opaque_key == RXD_OPAQUE_RING_STD) {
11209 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
11210 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11211 mapping);
11212 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
11213 rx_skb = tpr->rx_jmb_buffers[desc_idx].skb;
11214 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11215 mapping);
11216 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011217 goto out;
11218
Matt Carlsonbb158d62011-04-25 12:42:47 +000011219 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11220 PCI_DMA_FROMDEVICE);
11221
11222 for (i = data_off; i < rx_len; i++, val++) {
11223 if (*(rx_skb->data + i) != (u8) (val & 0xff))
11224 goto out;
11225 }
Matt Carlson4852a862011-04-13 11:05:07 +000011226 }
11227
Michael Chanc76949a2005-05-29 14:58:59 -070011228 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011229
Michael Chanc76949a2005-05-29 14:58:59 -070011230 /* tg3_free_rings will unmap and free the rx_skb */
11231out:
11232 return err;
11233}
11234
Matt Carlson00c266b2011-04-25 12:42:46 +000011235#define TG3_STD_LOOPBACK_FAILED 1
11236#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011237#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson00c266b2011-04-25 12:42:46 +000011238
11239#define TG3_MAC_LOOPBACK_SHIFT 0
11240#define TG3_PHY_LOOPBACK_SHIFT 4
Matt Carlsonbb158d62011-04-25 12:42:47 +000011241#define TG3_LOOPBACK_FAILED 0x00000077
Michael Chan9f40dea2005-09-05 17:53:06 -070011242
11243static int tg3_test_loopback(struct tg3 *tp)
11244{
11245 int err = 0;
Matt Carlsonab789042011-01-25 15:58:54 +000011246 u32 eee_cap, cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070011247
11248 if (!netif_running(tp->dev))
11249 return TG3_LOOPBACK_FAILED;
11250
Matt Carlsonab789042011-01-25 15:58:54 +000011251 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11252 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11253
Michael Chanb9ec6c12006-07-25 16:37:27 -070011254 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011255 if (err) {
11256 err = TG3_LOOPBACK_FAILED;
11257 goto done;
11258 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011259
Joe Perches63c3a662011-04-26 08:12:10 +000011260 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011261 int i;
11262
11263 /* Reroute all rx packets to the 1st queue */
11264 for (i = MAC_RSS_INDIR_TBL_0;
11265 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11266 tw32(i, 0x0);
11267 }
11268
Matt Carlson6833c042008-11-21 17:18:59 -080011269 /* Turn off gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011270 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011271 tg3_phy_toggle_apd(tp, false);
11272
Joe Perches63c3a662011-04-26 08:12:10 +000011273 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011274 int i;
11275 u32 status;
11276
11277 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
11278
11279 /* Wait for up to 40 microseconds to acquire lock. */
11280 for (i = 0; i < 4; i++) {
11281 status = tr32(TG3_CPMU_MUTEX_GNT);
11282 if (status == CPMU_MUTEX_GNT_DRIVER)
11283 break;
11284 udelay(10);
11285 }
11286
Matt Carlsonab789042011-01-25 15:58:54 +000011287 if (status != CPMU_MUTEX_GNT_DRIVER) {
11288 err = TG3_LOOPBACK_FAILED;
11289 goto done;
11290 }
Matt Carlson9936bcf2007-10-10 18:03:07 -070011291
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011292 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080011293 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070011294 tw32(TG3_CPMU_CTRL,
11295 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
11296 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070011297 }
11298
Matt Carlson4852a862011-04-13 11:05:07 +000011299 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011300 err |= TG3_STD_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson9936bcf2007-10-10 18:03:07 -070011301
Joe Perches63c3a662011-04-26 08:12:10 +000011302 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011303 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011304 err |= TG3_JMB_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson4852a862011-04-13 11:05:07 +000011305
Joe Perches63c3a662011-04-26 08:12:10 +000011306 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011307 tw32(TG3_CPMU_CTRL, cpmuctrl);
11308
11309 /* Release the mutex */
11310 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
11311 }
11312
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011313 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011314 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson4852a862011-04-13 11:05:07 +000011315 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011316 err |= TG3_STD_LOOPBACK_FAILED <<
11317 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011318 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonbb158d62011-04-25 12:42:47 +000011319 tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_TSO_LOOPBACK))
11320 err |= TG3_TSO_LOOPBACK_FAILED <<
11321 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011322 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011323 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011324 err |= TG3_JMB_LOOPBACK_FAILED <<
11325 TG3_PHY_LOOPBACK_SHIFT;
Michael Chan9f40dea2005-09-05 17:53:06 -070011326 }
11327
Matt Carlson6833c042008-11-21 17:18:59 -080011328 /* Re-enable gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011329 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011330 tg3_phy_toggle_apd(tp, true);
11331
Matt Carlsonab789042011-01-25 15:58:54 +000011332done:
11333 tp->phy_flags |= eee_cap;
11334
Michael Chan9f40dea2005-09-05 17:53:06 -070011335 return err;
11336}
11337
Michael Chan4cafd3f2005-05-29 14:56:34 -070011338static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11339 u64 *data)
11340{
Michael Chan566f86a2005-05-29 14:56:58 -070011341 struct tg3 *tp = netdev_priv(dev);
11342
Matt Carlson80096062010-08-02 11:26:06 +000011343 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011344 tg3_power_up(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011345
Michael Chan566f86a2005-05-29 14:56:58 -070011346 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11347
11348 if (tg3_test_nvram(tp) != 0) {
11349 etest->flags |= ETH_TEST_FL_FAILED;
11350 data[0] = 1;
11351 }
Michael Chanca430072005-05-29 14:57:23 -070011352 if (tg3_test_link(tp) != 0) {
11353 etest->flags |= ETH_TEST_FL_FAILED;
11354 data[1] = 1;
11355 }
Michael Chana71116d2005-05-29 14:58:11 -070011356 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011357 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011358
Michael Chanbbe832c2005-06-24 20:20:04 -070011359 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011360 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011361 tg3_netif_stop(tp);
11362 irq_sync = 1;
11363 }
11364
11365 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011366
11367 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011368 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011369 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011370 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011371 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011372 if (!err)
11373 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011374
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011375 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080011376 tg3_phy_reset(tp);
11377
Michael Chana71116d2005-05-29 14:58:11 -070011378 if (tg3_test_registers(tp) != 0) {
11379 etest->flags |= ETH_TEST_FL_FAILED;
11380 data[2] = 1;
11381 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011382 if (tg3_test_memory(tp) != 0) {
11383 etest->flags |= ETH_TEST_FL_FAILED;
11384 data[3] = 1;
11385 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011386 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011387 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011388
David S. Millerf47c11e2005-06-24 20:18:35 -070011389 tg3_full_unlock(tp);
11390
Michael Chand4bc3922005-05-29 14:59:20 -070011391 if (tg3_test_interrupt(tp) != 0) {
11392 etest->flags |= ETH_TEST_FL_FAILED;
11393 data[5] = 1;
11394 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011395
11396 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011397
Michael Chana71116d2005-05-29 14:58:11 -070011398 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11399 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011400 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011401 err2 = tg3_restart_hw(tp, 1);
11402 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011403 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011404 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011405
11406 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011407
11408 if (irq_sync && !err2)
11409 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011410 }
Matt Carlson80096062010-08-02 11:26:06 +000011411 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011412 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011413
Michael Chan4cafd3f2005-05-29 14:56:34 -070011414}
11415
Linus Torvalds1da177e2005-04-16 15:20:36 -070011416static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11417{
11418 struct mii_ioctl_data *data = if_mii(ifr);
11419 struct tg3 *tp = netdev_priv(dev);
11420 int err;
11421
Joe Perches63c3a662011-04-26 08:12:10 +000011422 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011423 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011424 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011425 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011426 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011427 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011428 }
11429
Matt Carlson33f401a2010-04-05 10:19:27 +000011430 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011431 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011432 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011433
11434 /* fallthru */
11435 case SIOCGMIIREG: {
11436 u32 mii_regval;
11437
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011438 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011439 break; /* We have no PHY */
11440
Matt Carlson34eea5a2011-04-20 07:57:38 +000011441 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011442 return -EAGAIN;
11443
David S. Millerf47c11e2005-06-24 20:18:35 -070011444 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011445 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011446 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011447
11448 data->val_out = mii_regval;
11449
11450 return err;
11451 }
11452
11453 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011454 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011455 break; /* We have no PHY */
11456
Matt Carlson34eea5a2011-04-20 07:57:38 +000011457 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011458 return -EAGAIN;
11459
David S. Millerf47c11e2005-06-24 20:18:35 -070011460 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011461 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011462 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011463
11464 return err;
11465
11466 default:
11467 /* do nothing */
11468 break;
11469 }
11470 return -EOPNOTSUPP;
11471}
11472
David S. Miller15f98502005-05-18 22:49:26 -070011473static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11474{
11475 struct tg3 *tp = netdev_priv(dev);
11476
11477 memcpy(ec, &tp->coal, sizeof(*ec));
11478 return 0;
11479}
11480
Michael Chand244c892005-07-05 14:42:33 -070011481static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11482{
11483 struct tg3 *tp = netdev_priv(dev);
11484 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11485 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11486
Joe Perches63c3a662011-04-26 08:12:10 +000011487 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011488 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11489 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11490 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11491 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11492 }
11493
11494 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11495 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11496 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11497 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11498 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11499 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11500 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11501 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11502 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11503 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11504 return -EINVAL;
11505
11506 /* No rx interrupts will be generated if both are zero */
11507 if ((ec->rx_coalesce_usecs == 0) &&
11508 (ec->rx_max_coalesced_frames == 0))
11509 return -EINVAL;
11510
11511 /* No tx interrupts will be generated if both are zero */
11512 if ((ec->tx_coalesce_usecs == 0) &&
11513 (ec->tx_max_coalesced_frames == 0))
11514 return -EINVAL;
11515
11516 /* Only copy relevant parameters, ignore all others. */
11517 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11518 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11519 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11520 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11521 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11522 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11523 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11524 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11525 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11526
11527 if (netif_running(dev)) {
11528 tg3_full_lock(tp, 0);
11529 __tg3_set_coalesce(tp, &tp->coal);
11530 tg3_full_unlock(tp);
11531 }
11532 return 0;
11533}
11534
Jeff Garzik7282d492006-09-13 14:30:00 -040011535static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011536 .get_settings = tg3_get_settings,
11537 .set_settings = tg3_set_settings,
11538 .get_drvinfo = tg3_get_drvinfo,
11539 .get_regs_len = tg3_get_regs_len,
11540 .get_regs = tg3_get_regs,
11541 .get_wol = tg3_get_wol,
11542 .set_wol = tg3_set_wol,
11543 .get_msglevel = tg3_get_msglevel,
11544 .set_msglevel = tg3_set_msglevel,
11545 .nway_reset = tg3_nway_reset,
11546 .get_link = ethtool_op_get_link,
11547 .get_eeprom_len = tg3_get_eeprom_len,
11548 .get_eeprom = tg3_get_eeprom,
11549 .set_eeprom = tg3_set_eeprom,
11550 .get_ringparam = tg3_get_ringparam,
11551 .set_ringparam = tg3_set_ringparam,
11552 .get_pauseparam = tg3_get_pauseparam,
11553 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011554 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011555 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000011556 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011557 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011558 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011559 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011560 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011561};
11562
11563static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11564{
Michael Chan1b277772006-03-20 22:27:48 -080011565 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011566
11567 tp->nvram_size = EEPROM_CHIP_SIZE;
11568
Matt Carlsone4f34112009-02-25 14:25:00 +000011569 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011570 return;
11571
Michael Chanb16250e2006-09-27 16:10:14 -070011572 if ((magic != TG3_EEPROM_MAGIC) &&
11573 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11574 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011575 return;
11576
11577 /*
11578 * Size the chip by reading offsets at increasing powers of two.
11579 * When we encounter our validation signature, we know the addressing
11580 * has wrapped around, and thus have our chip size.
11581 */
Michael Chan1b277772006-03-20 22:27:48 -080011582 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011583
11584 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011585 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011586 return;
11587
Michael Chan18201802006-03-20 22:29:15 -080011588 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011589 break;
11590
11591 cursize <<= 1;
11592 }
11593
11594 tp->nvram_size = cursize;
11595}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011596
Linus Torvalds1da177e2005-04-16 15:20:36 -070011597static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11598{
11599 u32 val;
11600
Joe Perches63c3a662011-04-26 08:12:10 +000011601 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011602 return;
11603
11604 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011605 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011606 tg3_get_eeprom_size(tp);
11607 return;
11608 }
11609
Matt Carlson6d348f22009-02-25 14:25:52 +000011610 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011611 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011612 /* This is confusing. We want to operate on the
11613 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11614 * call will read from NVRAM and byteswap the data
11615 * according to the byteswapping settings for all
11616 * other register accesses. This ensures the data we
11617 * want will always reside in the lower 16-bits.
11618 * However, the data in NVRAM is in LE format, which
11619 * means the data from the NVRAM read will always be
11620 * opposite the endianness of the CPU. The 16-bit
11621 * byteswap then brings the data to CPU endianness.
11622 */
11623 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011624 return;
11625 }
11626 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011627 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011628}
11629
11630static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11631{
11632 u32 nvcfg1;
11633
11634 nvcfg1 = tr32(NVRAM_CFG1);
11635 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000011636 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011637 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011638 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11639 tw32(NVRAM_CFG1, nvcfg1);
11640 }
11641
Michael Chan4c987482005-09-05 17:52:38 -070011642 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750) ||
Joe Perches63c3a662011-04-26 08:12:10 +000011643 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011644 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011645 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11646 tp->nvram_jedecnum = JEDEC_ATMEL;
11647 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011648 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011649 break;
11650 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11651 tp->nvram_jedecnum = JEDEC_ATMEL;
11652 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11653 break;
11654 case FLASH_VENDOR_ATMEL_EEPROM:
11655 tp->nvram_jedecnum = JEDEC_ATMEL;
11656 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011657 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011658 break;
11659 case FLASH_VENDOR_ST:
11660 tp->nvram_jedecnum = JEDEC_ST;
11661 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011662 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011663 break;
11664 case FLASH_VENDOR_SAIFUN:
11665 tp->nvram_jedecnum = JEDEC_SAIFUN;
11666 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11667 break;
11668 case FLASH_VENDOR_SST_SMALL:
11669 case FLASH_VENDOR_SST_LARGE:
11670 tp->nvram_jedecnum = JEDEC_SST;
11671 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11672 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011673 }
Matt Carlson8590a602009-08-28 12:29:16 +000011674 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011675 tp->nvram_jedecnum = JEDEC_ATMEL;
11676 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011677 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011678 }
11679}
11680
Matt Carlsona1b950d2009-09-01 13:20:17 +000011681static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11682{
11683 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11684 case FLASH_5752PAGE_SIZE_256:
11685 tp->nvram_pagesize = 256;
11686 break;
11687 case FLASH_5752PAGE_SIZE_512:
11688 tp->nvram_pagesize = 512;
11689 break;
11690 case FLASH_5752PAGE_SIZE_1K:
11691 tp->nvram_pagesize = 1024;
11692 break;
11693 case FLASH_5752PAGE_SIZE_2K:
11694 tp->nvram_pagesize = 2048;
11695 break;
11696 case FLASH_5752PAGE_SIZE_4K:
11697 tp->nvram_pagesize = 4096;
11698 break;
11699 case FLASH_5752PAGE_SIZE_264:
11700 tp->nvram_pagesize = 264;
11701 break;
11702 case FLASH_5752PAGE_SIZE_528:
11703 tp->nvram_pagesize = 528;
11704 break;
11705 }
11706}
11707
Michael Chan361b4ac2005-04-21 17:11:21 -070011708static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11709{
11710 u32 nvcfg1;
11711
11712 nvcfg1 = tr32(NVRAM_CFG1);
11713
Michael Chane6af3012005-04-21 17:12:05 -070011714 /* NVRAM protection for TPM */
11715 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000011716 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070011717
Michael Chan361b4ac2005-04-21 17:11:21 -070011718 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011719 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11720 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11721 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011722 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011723 break;
11724 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11725 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011726 tg3_flag_set(tp, NVRAM_BUFFERED);
11727 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011728 break;
11729 case FLASH_5752VENDOR_ST_M45PE10:
11730 case FLASH_5752VENDOR_ST_M45PE20:
11731 case FLASH_5752VENDOR_ST_M45PE40:
11732 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011733 tg3_flag_set(tp, NVRAM_BUFFERED);
11734 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011735 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011736 }
11737
Joe Perches63c3a662011-04-26 08:12:10 +000011738 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011739 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011740 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011741 /* For eeprom, set pagesize to maximum eeprom size */
11742 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11743
11744 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11745 tw32(NVRAM_CFG1, nvcfg1);
11746 }
11747}
11748
Michael Chand3c7b882006-03-23 01:28:25 -080011749static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11750{
Matt Carlson989a9d22007-05-05 11:51:05 -070011751 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011752
11753 nvcfg1 = tr32(NVRAM_CFG1);
11754
11755 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011756 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011757 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070011758 protect = 1;
11759 }
Michael Chand3c7b882006-03-23 01:28:25 -080011760
Matt Carlson989a9d22007-05-05 11:51:05 -070011761 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11762 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011763 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11764 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11765 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11766 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11767 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011768 tg3_flag_set(tp, NVRAM_BUFFERED);
11769 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011770 tp->nvram_pagesize = 264;
11771 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11772 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11773 tp->nvram_size = (protect ? 0x3e200 :
11774 TG3_NVRAM_SIZE_512KB);
11775 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11776 tp->nvram_size = (protect ? 0x1f200 :
11777 TG3_NVRAM_SIZE_256KB);
11778 else
11779 tp->nvram_size = (protect ? 0x1f200 :
11780 TG3_NVRAM_SIZE_128KB);
11781 break;
11782 case FLASH_5752VENDOR_ST_M45PE10:
11783 case FLASH_5752VENDOR_ST_M45PE20:
11784 case FLASH_5752VENDOR_ST_M45PE40:
11785 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011786 tg3_flag_set(tp, NVRAM_BUFFERED);
11787 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011788 tp->nvram_pagesize = 256;
11789 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11790 tp->nvram_size = (protect ?
11791 TG3_NVRAM_SIZE_64KB :
11792 TG3_NVRAM_SIZE_128KB);
11793 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11794 tp->nvram_size = (protect ?
11795 TG3_NVRAM_SIZE_64KB :
11796 TG3_NVRAM_SIZE_256KB);
11797 else
11798 tp->nvram_size = (protect ?
11799 TG3_NVRAM_SIZE_128KB :
11800 TG3_NVRAM_SIZE_512KB);
11801 break;
Michael Chand3c7b882006-03-23 01:28:25 -080011802 }
11803}
11804
Michael Chan1b277772006-03-20 22:27:48 -080011805static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
11806{
11807 u32 nvcfg1;
11808
11809 nvcfg1 = tr32(NVRAM_CFG1);
11810
11811 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011812 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
11813 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11814 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
11815 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11816 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011817 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011818 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080011819
Matt Carlson8590a602009-08-28 12:29:16 +000011820 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11821 tw32(NVRAM_CFG1, nvcfg1);
11822 break;
11823 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11824 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11825 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11826 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11827 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011828 tg3_flag_set(tp, NVRAM_BUFFERED);
11829 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011830 tp->nvram_pagesize = 264;
11831 break;
11832 case FLASH_5752VENDOR_ST_M45PE10:
11833 case FLASH_5752VENDOR_ST_M45PE20:
11834 case FLASH_5752VENDOR_ST_M45PE40:
11835 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011836 tg3_flag_set(tp, NVRAM_BUFFERED);
11837 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011838 tp->nvram_pagesize = 256;
11839 break;
Michael Chan1b277772006-03-20 22:27:48 -080011840 }
11841}
11842
Matt Carlson6b91fa02007-10-10 18:01:09 -070011843static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
11844{
11845 u32 nvcfg1, protect = 0;
11846
11847 nvcfg1 = tr32(NVRAM_CFG1);
11848
11849 /* NVRAM protection for TPM */
11850 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011851 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070011852 protect = 1;
11853 }
11854
11855 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11856 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011857 case FLASH_5761VENDOR_ATMEL_ADB021D:
11858 case FLASH_5761VENDOR_ATMEL_ADB041D:
11859 case FLASH_5761VENDOR_ATMEL_ADB081D:
11860 case FLASH_5761VENDOR_ATMEL_ADB161D:
11861 case FLASH_5761VENDOR_ATMEL_MDB021D:
11862 case FLASH_5761VENDOR_ATMEL_MDB041D:
11863 case FLASH_5761VENDOR_ATMEL_MDB081D:
11864 case FLASH_5761VENDOR_ATMEL_MDB161D:
11865 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011866 tg3_flag_set(tp, NVRAM_BUFFERED);
11867 tg3_flag_set(tp, FLASH);
11868 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000011869 tp->nvram_pagesize = 256;
11870 break;
11871 case FLASH_5761VENDOR_ST_A_M45PE20:
11872 case FLASH_5761VENDOR_ST_A_M45PE40:
11873 case FLASH_5761VENDOR_ST_A_M45PE80:
11874 case FLASH_5761VENDOR_ST_A_M45PE16:
11875 case FLASH_5761VENDOR_ST_M_M45PE20:
11876 case FLASH_5761VENDOR_ST_M_M45PE40:
11877 case FLASH_5761VENDOR_ST_M_M45PE80:
11878 case FLASH_5761VENDOR_ST_M_M45PE16:
11879 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011880 tg3_flag_set(tp, NVRAM_BUFFERED);
11881 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011882 tp->nvram_pagesize = 256;
11883 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011884 }
11885
11886 if (protect) {
11887 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
11888 } else {
11889 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011890 case FLASH_5761VENDOR_ATMEL_ADB161D:
11891 case FLASH_5761VENDOR_ATMEL_MDB161D:
11892 case FLASH_5761VENDOR_ST_A_M45PE16:
11893 case FLASH_5761VENDOR_ST_M_M45PE16:
11894 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
11895 break;
11896 case FLASH_5761VENDOR_ATMEL_ADB081D:
11897 case FLASH_5761VENDOR_ATMEL_MDB081D:
11898 case FLASH_5761VENDOR_ST_A_M45PE80:
11899 case FLASH_5761VENDOR_ST_M_M45PE80:
11900 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
11901 break;
11902 case FLASH_5761VENDOR_ATMEL_ADB041D:
11903 case FLASH_5761VENDOR_ATMEL_MDB041D:
11904 case FLASH_5761VENDOR_ST_A_M45PE40:
11905 case FLASH_5761VENDOR_ST_M_M45PE40:
11906 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11907 break;
11908 case FLASH_5761VENDOR_ATMEL_ADB021D:
11909 case FLASH_5761VENDOR_ATMEL_MDB021D:
11910 case FLASH_5761VENDOR_ST_A_M45PE20:
11911 case FLASH_5761VENDOR_ST_M_M45PE20:
11912 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11913 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070011914 }
11915 }
11916}
11917
Michael Chanb5d37722006-09-27 16:06:21 -070011918static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
11919{
11920 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011921 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070011922 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11923}
11924
Matt Carlson321d32a2008-11-21 17:22:19 -080011925static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
11926{
11927 u32 nvcfg1;
11928
11929 nvcfg1 = tr32(NVRAM_CFG1);
11930
11931 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11932 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
11933 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
11934 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011935 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080011936 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11937
11938 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11939 tw32(NVRAM_CFG1, nvcfg1);
11940 return;
11941 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11942 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11943 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11944 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11945 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11946 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11947 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11948 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011949 tg3_flag_set(tp, NVRAM_BUFFERED);
11950 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080011951
11952 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11953 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11954 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
11955 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
11956 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11957 break;
11958 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
11959 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
11960 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11961 break;
11962 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
11963 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
11964 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11965 break;
11966 }
11967 break;
11968 case FLASH_5752VENDOR_ST_M45PE10:
11969 case FLASH_5752VENDOR_ST_M45PE20:
11970 case FLASH_5752VENDOR_ST_M45PE40:
11971 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011972 tg3_flag_set(tp, NVRAM_BUFFERED);
11973 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080011974
11975 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
11976 case FLASH_5752VENDOR_ST_M45PE10:
11977 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
11978 break;
11979 case FLASH_5752VENDOR_ST_M45PE20:
11980 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
11981 break;
11982 case FLASH_5752VENDOR_ST_M45PE40:
11983 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
11984 break;
11985 }
11986 break;
11987 default:
Joe Perches63c3a662011-04-26 08:12:10 +000011988 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080011989 return;
11990 }
11991
Matt Carlsona1b950d2009-09-01 13:20:17 +000011992 tg3_nvram_get_pagesize(tp, nvcfg1);
11993 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000011994 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000011995}
11996
11997
11998static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
11999{
12000 u32 nvcfg1;
12001
12002 nvcfg1 = tr32(NVRAM_CFG1);
12003
12004 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12005 case FLASH_5717VENDOR_ATMEL_EEPROM:
12006 case FLASH_5717VENDOR_MICRO_EEPROM:
12007 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012008 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012009 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12010
12011 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12012 tw32(NVRAM_CFG1, nvcfg1);
12013 return;
12014 case FLASH_5717VENDOR_ATMEL_MDB011D:
12015 case FLASH_5717VENDOR_ATMEL_ADB011B:
12016 case FLASH_5717VENDOR_ATMEL_ADB011D:
12017 case FLASH_5717VENDOR_ATMEL_MDB021D:
12018 case FLASH_5717VENDOR_ATMEL_ADB021B:
12019 case FLASH_5717VENDOR_ATMEL_ADB021D:
12020 case FLASH_5717VENDOR_ATMEL_45USPT:
12021 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012022 tg3_flag_set(tp, NVRAM_BUFFERED);
12023 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012024
12025 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12026 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012027 /* Detect size with tg3_nvram_get_size() */
12028 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012029 case FLASH_5717VENDOR_ATMEL_ADB021B:
12030 case FLASH_5717VENDOR_ATMEL_ADB021D:
12031 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12032 break;
12033 default:
12034 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12035 break;
12036 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012037 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012038 case FLASH_5717VENDOR_ST_M_M25PE10:
12039 case FLASH_5717VENDOR_ST_A_M25PE10:
12040 case FLASH_5717VENDOR_ST_M_M45PE10:
12041 case FLASH_5717VENDOR_ST_A_M45PE10:
12042 case FLASH_5717VENDOR_ST_M_M25PE20:
12043 case FLASH_5717VENDOR_ST_A_M25PE20:
12044 case FLASH_5717VENDOR_ST_M_M45PE20:
12045 case FLASH_5717VENDOR_ST_A_M45PE20:
12046 case FLASH_5717VENDOR_ST_25USPT:
12047 case FLASH_5717VENDOR_ST_45USPT:
12048 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012049 tg3_flag_set(tp, NVRAM_BUFFERED);
12050 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012051
12052 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12053 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012054 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012055 /* Detect size with tg3_nvram_get_size() */
12056 break;
12057 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012058 case FLASH_5717VENDOR_ST_A_M45PE20:
12059 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12060 break;
12061 default:
12062 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12063 break;
12064 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012065 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012066 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012067 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012068 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012069 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012070
12071 tg3_nvram_get_pagesize(tp, nvcfg1);
12072 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012073 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012074}
12075
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012076static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12077{
12078 u32 nvcfg1, nvmpinstrp;
12079
12080 nvcfg1 = tr32(NVRAM_CFG1);
12081 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12082
12083 switch (nvmpinstrp) {
12084 case FLASH_5720_EEPROM_HD:
12085 case FLASH_5720_EEPROM_LD:
12086 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012087 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012088
12089 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12090 tw32(NVRAM_CFG1, nvcfg1);
12091 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12092 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12093 else
12094 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12095 return;
12096 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12097 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12098 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12099 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12100 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12101 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12102 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12103 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12104 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12105 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12106 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12107 case FLASH_5720VENDOR_ATMEL_45USPT:
12108 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012109 tg3_flag_set(tp, NVRAM_BUFFERED);
12110 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012111
12112 switch (nvmpinstrp) {
12113 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12114 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12115 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12116 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12117 break;
12118 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12119 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12120 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12121 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12122 break;
12123 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12124 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12125 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12126 break;
12127 default:
12128 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12129 break;
12130 }
12131 break;
12132 case FLASH_5720VENDOR_M_ST_M25PE10:
12133 case FLASH_5720VENDOR_M_ST_M45PE10:
12134 case FLASH_5720VENDOR_A_ST_M25PE10:
12135 case FLASH_5720VENDOR_A_ST_M45PE10:
12136 case FLASH_5720VENDOR_M_ST_M25PE20:
12137 case FLASH_5720VENDOR_M_ST_M45PE20:
12138 case FLASH_5720VENDOR_A_ST_M25PE20:
12139 case FLASH_5720VENDOR_A_ST_M45PE20:
12140 case FLASH_5720VENDOR_M_ST_M25PE40:
12141 case FLASH_5720VENDOR_M_ST_M45PE40:
12142 case FLASH_5720VENDOR_A_ST_M25PE40:
12143 case FLASH_5720VENDOR_A_ST_M45PE40:
12144 case FLASH_5720VENDOR_M_ST_M25PE80:
12145 case FLASH_5720VENDOR_M_ST_M45PE80:
12146 case FLASH_5720VENDOR_A_ST_M25PE80:
12147 case FLASH_5720VENDOR_A_ST_M45PE80:
12148 case FLASH_5720VENDOR_ST_25USPT:
12149 case FLASH_5720VENDOR_ST_45USPT:
12150 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012151 tg3_flag_set(tp, NVRAM_BUFFERED);
12152 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012153
12154 switch (nvmpinstrp) {
12155 case FLASH_5720VENDOR_M_ST_M25PE20:
12156 case FLASH_5720VENDOR_M_ST_M45PE20:
12157 case FLASH_5720VENDOR_A_ST_M25PE20:
12158 case FLASH_5720VENDOR_A_ST_M45PE20:
12159 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12160 break;
12161 case FLASH_5720VENDOR_M_ST_M25PE40:
12162 case FLASH_5720VENDOR_M_ST_M45PE40:
12163 case FLASH_5720VENDOR_A_ST_M25PE40:
12164 case FLASH_5720VENDOR_A_ST_M45PE40:
12165 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12166 break;
12167 case FLASH_5720VENDOR_M_ST_M25PE80:
12168 case FLASH_5720VENDOR_M_ST_M45PE80:
12169 case FLASH_5720VENDOR_A_ST_M25PE80:
12170 case FLASH_5720VENDOR_A_ST_M45PE80:
12171 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12172 break;
12173 default:
12174 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12175 break;
12176 }
12177 break;
12178 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012179 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012180 return;
12181 }
12182
12183 tg3_nvram_get_pagesize(tp, nvcfg1);
12184 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012185 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012186}
12187
Linus Torvalds1da177e2005-04-16 15:20:36 -070012188/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12189static void __devinit tg3_nvram_init(struct tg3 *tp)
12190{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012191 tw32_f(GRC_EEPROM_ADDR,
12192 (EEPROM_ADDR_FSM_RESET |
12193 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12194 EEPROM_ADDR_CLKPERD_SHIFT)));
12195
Michael Chan9d57f012006-12-07 00:23:25 -080012196 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012197
12198 /* Enable seeprom accesses. */
12199 tw32_f(GRC_LOCAL_CTRL,
12200 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12201 udelay(100);
12202
12203 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12204 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012205 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012206
Michael Chanec41c7d2006-01-17 02:40:55 -080012207 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012208 netdev_warn(tp->dev,
12209 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012210 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012211 return;
12212 }
Michael Chane6af3012005-04-21 17:12:05 -070012213 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012214
Matt Carlson989a9d22007-05-05 11:51:05 -070012215 tp->nvram_size = 0;
12216
Michael Chan361b4ac2005-04-21 17:11:21 -070012217 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12218 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012219 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12220 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012221 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012222 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12223 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012224 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012225 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12226 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012227 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12228 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012229 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12230 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080012231 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012232 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12233 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012234 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012235 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12236 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012237 else
12238 tg3_get_nvram_info(tp);
12239
Matt Carlson989a9d22007-05-05 11:51:05 -070012240 if (tp->nvram_size == 0)
12241 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012242
Michael Chane6af3012005-04-21 17:12:05 -070012243 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012244 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012245
12246 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012247 tg3_flag_clear(tp, NVRAM);
12248 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012249
12250 tg3_get_eeprom_size(tp);
12251 }
12252}
12253
Linus Torvalds1da177e2005-04-16 15:20:36 -070012254static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12255 u32 offset, u32 len, u8 *buf)
12256{
12257 int i, j, rc = 0;
12258 u32 val;
12259
12260 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012261 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012262 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012263
12264 addr = offset + i;
12265
12266 memcpy(&data, buf + i, 4);
12267
Matt Carlson62cedd12009-04-20 14:52:29 -070012268 /*
12269 * The SEEPROM interface expects the data to always be opposite
12270 * the native endian format. We accomplish this by reversing
12271 * all the operations that would have been performed on the
12272 * data from a call to tg3_nvram_read_be32().
12273 */
12274 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012275
12276 val = tr32(GRC_EEPROM_ADDR);
12277 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12278
12279 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12280 EEPROM_ADDR_READ);
12281 tw32(GRC_EEPROM_ADDR, val |
12282 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12283 (addr & EEPROM_ADDR_ADDR_MASK) |
12284 EEPROM_ADDR_START |
12285 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012286
Michael Chan9d57f012006-12-07 00:23:25 -080012287 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012288 val = tr32(GRC_EEPROM_ADDR);
12289
12290 if (val & EEPROM_ADDR_COMPLETE)
12291 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012292 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012293 }
12294 if (!(val & EEPROM_ADDR_COMPLETE)) {
12295 rc = -EBUSY;
12296 break;
12297 }
12298 }
12299
12300 return rc;
12301}
12302
12303/* offset and length are dword aligned */
12304static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12305 u8 *buf)
12306{
12307 int ret = 0;
12308 u32 pagesize = tp->nvram_pagesize;
12309 u32 pagemask = pagesize - 1;
12310 u32 nvram_cmd;
12311 u8 *tmp;
12312
12313 tmp = kmalloc(pagesize, GFP_KERNEL);
12314 if (tmp == NULL)
12315 return -ENOMEM;
12316
12317 while (len) {
12318 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012319 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012320
12321 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012322
Linus Torvalds1da177e2005-04-16 15:20:36 -070012323 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012324 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12325 (__be32 *) (tmp + j));
12326 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012327 break;
12328 }
12329 if (ret)
12330 break;
12331
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012332 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012333 size = pagesize;
12334 if (len < size)
12335 size = len;
12336
12337 len -= size;
12338
12339 memcpy(tmp + page_off, buf, size);
12340
12341 offset = offset + (pagesize - page_off);
12342
Michael Chane6af3012005-04-21 17:12:05 -070012343 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012344
12345 /*
12346 * Before we can erase the flash page, we need
12347 * to issue a special "write enable" command.
12348 */
12349 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12350
12351 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12352 break;
12353
12354 /* Erase the target page */
12355 tw32(NVRAM_ADDR, phy_addr);
12356
12357 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12358 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12359
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012360 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012361 break;
12362
12363 /* Issue another write enable to start the write. */
12364 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12365
12366 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12367 break;
12368
12369 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012370 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012371
Al Virob9fc7dc2007-12-17 22:59:57 -080012372 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012373
Al Virob9fc7dc2007-12-17 22:59:57 -080012374 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012375
12376 tw32(NVRAM_ADDR, phy_addr + j);
12377
12378 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12379 NVRAM_CMD_WR;
12380
12381 if (j == 0)
12382 nvram_cmd |= NVRAM_CMD_FIRST;
12383 else if (j == (pagesize - 4))
12384 nvram_cmd |= NVRAM_CMD_LAST;
12385
12386 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12387 break;
12388 }
12389 if (ret)
12390 break;
12391 }
12392
12393 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12394 tg3_nvram_exec_cmd(tp, nvram_cmd);
12395
12396 kfree(tmp);
12397
12398 return ret;
12399}
12400
12401/* offset and length are dword aligned */
12402static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12403 u8 *buf)
12404{
12405 int i, ret = 0;
12406
12407 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012408 u32 page_off, phy_addr, nvram_cmd;
12409 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012410
12411 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012412 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012413
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012414 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012415
Michael Chan18201802006-03-20 22:29:15 -080012416 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012417
12418 tw32(NVRAM_ADDR, phy_addr);
12419
12420 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12421
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012422 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012423 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012424 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012425 nvram_cmd |= NVRAM_CMD_LAST;
12426
12427 if (i == (len - 4))
12428 nvram_cmd |= NVRAM_CMD_LAST;
12429
Matt Carlson321d32a2008-11-21 17:22:19 -080012430 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012431 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012432 (tp->nvram_jedecnum == JEDEC_ST) &&
12433 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012434
12435 if ((ret = tg3_nvram_exec_cmd(tp,
12436 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12437 NVRAM_CMD_DONE)))
12438
12439 break;
12440 }
Joe Perches63c3a662011-04-26 08:12:10 +000012441 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012442 /* We always do complete word writes to eeprom. */
12443 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12444 }
12445
12446 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12447 break;
12448 }
12449 return ret;
12450}
12451
12452/* offset and length are dword aligned */
12453static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12454{
12455 int ret;
12456
Joe Perches63c3a662011-04-26 08:12:10 +000012457 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012458 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12459 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012460 udelay(40);
12461 }
12462
Joe Perches63c3a662011-04-26 08:12:10 +000012463 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012464 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012465 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012466 u32 grc_mode;
12467
Michael Chanec41c7d2006-01-17 02:40:55 -080012468 ret = tg3_nvram_lock(tp);
12469 if (ret)
12470 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012471
Michael Chane6af3012005-04-21 17:12:05 -070012472 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012473 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012474 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012475
12476 grc_mode = tr32(GRC_MODE);
12477 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12478
Joe Perches63c3a662011-04-26 08:12:10 +000012479 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012480 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12481 buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012482 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012483 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12484 buf);
12485 }
12486
12487 grc_mode = tr32(GRC_MODE);
12488 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12489
Michael Chane6af3012005-04-21 17:12:05 -070012490 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012491 tg3_nvram_unlock(tp);
12492 }
12493
Joe Perches63c3a662011-04-26 08:12:10 +000012494 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012495 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012496 udelay(40);
12497 }
12498
12499 return ret;
12500}
12501
12502struct subsys_tbl_ent {
12503 u16 subsys_vendor, subsys_devid;
12504 u32 phy_id;
12505};
12506
Matt Carlson24daf2b2010-02-17 15:17:02 +000012507static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012508 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012509 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012510 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012511 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012512 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012513 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012514 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012515 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12516 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12517 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012518 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012519 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012520 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012521 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12522 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12523 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012524 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012525 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012526 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012527 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012528 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012529 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012530 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012531
12532 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012533 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012534 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012535 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012536 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012537 { TG3PCI_SUBVENDOR_ID_3COM,
12538 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12539 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012540 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012541 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012542 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012543
12544 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012545 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012546 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012547 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012548 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012549 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012550 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012551 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012552 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012553
12554 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012555 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012556 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012557 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012558 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012559 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12560 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12561 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012562 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012563 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012564 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012565
12566 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012567 { TG3PCI_SUBVENDOR_ID_IBM,
12568 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012569};
12570
Matt Carlson24daf2b2010-02-17 15:17:02 +000012571static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012572{
12573 int i;
12574
12575 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12576 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12577 tp->pdev->subsystem_vendor) &&
12578 (subsys_id_to_phy_id[i].subsys_devid ==
12579 tp->pdev->subsystem_device))
12580 return &subsys_id_to_phy_id[i];
12581 }
12582 return NULL;
12583}
12584
Michael Chan7d0c41e2005-04-21 17:06:20 -070012585static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012586{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012587 u32 val;
Michael Chancaf636c72006-03-22 01:05:31 -080012588 u16 pmcsr;
12589
12590 /* On some early chips the SRAM cannot be accessed in D3hot state,
12591 * so need make sure we're in D0.
12592 */
12593 pci_read_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, &pmcsr);
12594 pmcsr &= ~PCI_PM_CTRL_STATE_MASK;
12595 pci_write_config_word(tp->pdev, tp->pm_cap + PCI_PM_CTRL, pmcsr);
12596 msleep(1);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012597
12598 /* Make sure register accesses (indirect or otherwise)
12599 * will function correctly.
12600 */
12601 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
12602 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012603
David S. Millerf49639e2006-06-09 11:58:36 -070012604 /* The memory arbiter has to be enabled in order for SRAM accesses
12605 * to succeed. Normally on powerup the tg3 chip firmware will make
12606 * sure it is enabled, but other entities such as system netboot
12607 * code might disable it.
12608 */
12609 val = tr32(MEMARB_MODE);
12610 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
12611
Matt Carlson79eb6902010-02-17 15:17:03 +000012612 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012613 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12614
Gary Zambranoa85feb82007-05-05 11:52:19 -070012615 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000012616 tg3_flag_set(tp, EEPROM_WRITE_PROT);
12617 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080012618
Michael Chanb5d37722006-09-27 16:06:21 -070012619 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012620 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012621 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12622 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012623 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012624 val = tr32(VCPU_CFGSHDW);
12625 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000012626 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070012627 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012628 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012629 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012630 device_set_wakeup_enable(&tp->pdev->dev, true);
12631 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012632 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012633 }
12634
Linus Torvalds1da177e2005-04-16 15:20:36 -070012635 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12636 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12637 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012638 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012639 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012640
12641 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12642 tp->nic_sram_data_cfg = nic_cfg;
12643
12644 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12645 ver >>= NIC_SRAM_DATA_VER_SHIFT;
12646 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700) &&
12647 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) &&
12648 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703) &&
12649 (ver > 0) && (ver < 0x100))
12650 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12651
Matt Carlsona9daf362008-05-25 23:49:44 -070012652 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12653 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12654
Linus Torvalds1da177e2005-04-16 15:20:36 -070012655 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12656 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12657 eeprom_phy_serdes = 1;
12658
12659 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12660 if (nic_phy_id != 0) {
12661 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12662 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12663
12664 eeprom_phy_id = (id1 >> 16) << 10;
12665 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12666 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12667 } else
12668 eeprom_phy_id = 0;
12669
Michael Chan7d0c41e2005-04-21 17:06:20 -070012670 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012671 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000012672 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012673 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000012674 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012675 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070012676 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012677
Joe Perches63c3a662011-04-26 08:12:10 +000012678 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012679 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12680 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012681 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012682 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12683
12684 switch (led_cfg) {
12685 default:
12686 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12687 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12688 break;
12689
12690 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12691 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12692 break;
12693
12694 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12695 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012696
12697 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12698 * read on some older 5700/5701 bootcode.
12699 */
12700 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12701 ASIC_REV_5700 ||
12702 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12703 ASIC_REV_5701)
12704 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12705
Linus Torvalds1da177e2005-04-16 15:20:36 -070012706 break;
12707
12708 case SHASTA_EXT_LED_SHARED:
12709 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12710 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12711 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12712 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12713 LED_CTRL_MODE_PHY_2);
12714 break;
12715
12716 case SHASTA_EXT_LED_MAC:
12717 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12718 break;
12719
12720 case SHASTA_EXT_LED_COMBO:
12721 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12722 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12723 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12724 LED_CTRL_MODE_PHY_2);
12725 break;
12726
Stephen Hemminger855e1112008-04-16 16:37:28 -070012727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012728
12729 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12730 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12731 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12732 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12733
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012734 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12735 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012736
Michael Chan9d26e212006-12-07 00:21:14 -080012737 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000012738 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012739 if ((tp->pdev->subsystem_vendor ==
12740 PCI_VENDOR_ID_ARIMA) &&
12741 (tp->pdev->subsystem_device == 0x205a ||
12742 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000012743 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012744 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012745 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12746 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012748
12749 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000012750 tg3_flag_set(tp, ENABLE_ASF);
12751 if (tg3_flag(tp, 5750_PLUS))
12752 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012753 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012754
12755 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012756 tg3_flag(tp, 5750_PLUS))
12757 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012758
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012759 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070012760 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000012761 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012762
Joe Perches63c3a662011-04-26 08:12:10 +000012763 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012764 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012765 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012766 device_set_wakeup_enable(&tp->pdev->dev, true);
12767 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012768
Linus Torvalds1da177e2005-04-16 15:20:36 -070012769 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012770 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012771
12772 /* serdes signal pre-emphasis in register 0x590 set by */
12773 /* bootcode if bit 18 is set */
12774 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012775 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012776
Joe Perches63c3a662011-04-26 08:12:10 +000012777 if ((tg3_flag(tp, 57765_PLUS) ||
12778 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12779 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012780 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012781 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080012782
Joe Perches63c3a662011-04-26 08:12:10 +000012783 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000012784 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012785 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070012786 u32 cfg3;
12787
12788 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12789 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000012790 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070012791 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012792
Matt Carlson14417062010-02-17 15:16:59 +000012793 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000012794 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070012795 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012796 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070012797 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012798 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012799 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012800done:
Joe Perches63c3a662011-04-26 08:12:10 +000012801 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012802 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000012803 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012804 else
12805 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012806}
12807
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012808static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12809{
12810 int i;
12811 u32 val;
12812
12813 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12814 tw32(OTP_CTRL, cmd);
12815
12816 /* Wait for up to 1 ms for command to execute. */
12817 for (i = 0; i < 100; i++) {
12818 val = tr32(OTP_STATUS);
12819 if (val & OTP_STATUS_CMD_DONE)
12820 break;
12821 udelay(10);
12822 }
12823
12824 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
12825}
12826
12827/* Read the gphy configuration from the OTP region of the chip. The gphy
12828 * configuration is a 32-bit value that straddles the alignment boundary.
12829 * We do two 32-bit reads and then shift and merge the results.
12830 */
12831static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
12832{
12833 u32 bhalf_otp, thalf_otp;
12834
12835 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
12836
12837 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
12838 return 0;
12839
12840 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
12841
12842 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12843 return 0;
12844
12845 thalf_otp = tr32(OTP_READ_DATA);
12846
12847 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
12848
12849 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
12850 return 0;
12851
12852 bhalf_otp = tr32(OTP_READ_DATA);
12853
12854 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
12855}
12856
Matt Carlsone256f8a2011-03-09 16:58:24 +000012857static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
12858{
12859 u32 adv = ADVERTISED_Autoneg |
12860 ADVERTISED_Pause;
12861
12862 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
12863 adv |= ADVERTISED_1000baseT_Half |
12864 ADVERTISED_1000baseT_Full;
12865
12866 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
12867 adv |= ADVERTISED_100baseT_Half |
12868 ADVERTISED_100baseT_Full |
12869 ADVERTISED_10baseT_Half |
12870 ADVERTISED_10baseT_Full |
12871 ADVERTISED_TP;
12872 else
12873 adv |= ADVERTISED_FIBRE;
12874
12875 tp->link_config.advertising = adv;
12876 tp->link_config.speed = SPEED_INVALID;
12877 tp->link_config.duplex = DUPLEX_INVALID;
12878 tp->link_config.autoneg = AUTONEG_ENABLE;
12879 tp->link_config.active_speed = SPEED_INVALID;
12880 tp->link_config.active_duplex = DUPLEX_INVALID;
12881 tp->link_config.orig_speed = SPEED_INVALID;
12882 tp->link_config.orig_duplex = DUPLEX_INVALID;
12883 tp->link_config.orig_autoneg = AUTONEG_INVALID;
12884}
12885
Michael Chan7d0c41e2005-04-21 17:06:20 -070012886static int __devinit tg3_phy_probe(struct tg3 *tp)
12887{
12888 u32 hw_phy_id_1, hw_phy_id_2;
12889 u32 hw_phy_id, hw_phy_id_masked;
12890 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012891
Matt Carlsone256f8a2011-03-09 16:58:24 +000012892 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000012893 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000012894 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
12895
Joe Perches63c3a662011-04-26 08:12:10 +000012896 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070012897 return tg3_phy_init(tp);
12898
Linus Torvalds1da177e2005-04-16 15:20:36 -070012899 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010012900 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012901 */
12902 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000012903 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000012904 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012905 } else {
12906 /* Now read the physical PHY_ID from the chip and verify
12907 * that it is sane. If it doesn't look good, we fall back
12908 * to either the hard-coded table based PHY_ID and failing
12909 * that the value found in the eeprom area.
12910 */
12911 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
12912 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
12913
12914 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
12915 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
12916 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
12917
Matt Carlson79eb6902010-02-17 15:17:03 +000012918 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012919 }
12920
Matt Carlson79eb6902010-02-17 15:17:03 +000012921 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012922 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000012923 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012924 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070012925 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012926 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012927 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000012928 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070012929 /* Do nothing, phy ID already set up in
12930 * tg3_get_eeprom_hw_cfg().
12931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012932 } else {
12933 struct subsys_tbl_ent *p;
12934
12935 /* No eeprom signature? Try the hardcoded
12936 * subsys device table.
12937 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012938 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012939 if (!p)
12940 return -ENODEV;
12941
12942 tp->phy_id = p->phy_id;
12943 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000012944 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012945 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012946 }
12947 }
12948
Matt Carlsona6b68da2010-12-06 08:28:52 +000012949 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
12950 ((tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
12951 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
12952 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
12953 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000012954 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
12955
Matt Carlsone256f8a2011-03-09 16:58:24 +000012956 tg3_phy_init_link_config(tp);
12957
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012958 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012959 !tg3_flag(tp, ENABLE_APE) &&
12960 !tg3_flag(tp, ENABLE_ASF)) {
Michael Chan3600d912006-12-07 00:21:48 -080012961 u32 bmsr, adv_reg, tg3_ctrl, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012962
12963 tg3_readphy(tp, MII_BMSR, &bmsr);
12964 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
12965 (bmsr & BMSR_LSTATUS))
12966 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012967
Linus Torvalds1da177e2005-04-16 15:20:36 -070012968 err = tg3_phy_reset(tp);
12969 if (err)
12970 return err;
12971
12972 adv_reg = (ADVERTISE_10HALF | ADVERTISE_10FULL |
12973 ADVERTISE_100HALF | ADVERTISE_100FULL |
12974 ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
12975 tg3_ctrl = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012976 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012977 tg3_ctrl = (MII_TG3_CTRL_ADV_1000_HALF |
12978 MII_TG3_CTRL_ADV_1000_FULL);
12979 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
12980 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
12981 tg3_ctrl |= (MII_TG3_CTRL_AS_MASTER |
12982 MII_TG3_CTRL_ENABLE_AS_MASTER);
12983 }
12984
Michael Chan3600d912006-12-07 00:21:48 -080012985 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
12986 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
12987 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
12988 if (!tg3_copper_is_advertising_all(tp, mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012989 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
12990
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012991 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012992 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
12993
12994 tg3_writephy(tp, MII_BMCR,
12995 BMCR_ANENABLE | BMCR_ANRESTART);
12996 }
12997 tg3_phy_set_wirespeed(tp);
12998
12999 tg3_writephy(tp, MII_ADVERTISE, adv_reg);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013000 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013001 tg3_writephy(tp, MII_TG3_CTRL, tg3_ctrl);
13002 }
13003
13004skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013005 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013006 err = tg3_init_5401phy_dsp(tp);
13007 if (err)
13008 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013009
Linus Torvalds1da177e2005-04-16 15:20:36 -070013010 err = tg3_init_5401phy_dsp(tp);
13011 }
13012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013013 return err;
13014}
13015
Matt Carlson184b8902010-04-05 10:19:25 +000013016static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013017{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013018 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013019 unsigned int block_end, rosize, len;
Matt Carlson184b8902010-04-05 10:19:25 +000013020 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013021
Matt Carlsonc3e94502011-04-13 11:05:08 +000013022 vpd_data = (u8 *)tg3_vpd_readblock(tp);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013023 if (!vpd_data)
13024 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013025
Matt Carlson4181b2c2010-02-26 14:04:45 +000013026 i = pci_vpd_find_tag(vpd_data, 0, TG3_NVM_VPD_LEN,
13027 PCI_VPD_LRDT_RO_DATA);
13028 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013029 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013030
13031 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13032 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13033 i += PCI_VPD_LRDT_TAG_SIZE;
13034
13035 if (block_end > TG3_NVM_VPD_LEN)
13036 goto out_not_found;
13037
Matt Carlson184b8902010-04-05 10:19:25 +000013038 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13039 PCI_VPD_RO_KEYWORD_MFR_ID);
13040 if (j > 0) {
13041 len = pci_vpd_info_field_size(&vpd_data[j]);
13042
13043 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13044 if (j + len > block_end || len != 4 ||
13045 memcmp(&vpd_data[j], "1028", 4))
13046 goto partno;
13047
13048 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13049 PCI_VPD_RO_KEYWORD_VENDOR0);
13050 if (j < 0)
13051 goto partno;
13052
13053 len = pci_vpd_info_field_size(&vpd_data[j]);
13054
13055 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13056 if (j + len > block_end)
13057 goto partno;
13058
13059 memcpy(tp->fw_ver, &vpd_data[j], len);
13060 strncat(tp->fw_ver, " bc ", TG3_NVM_VPD_LEN - len - 1);
13061 }
13062
13063partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013064 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13065 PCI_VPD_RO_KEYWORD_PARTNO);
13066 if (i < 0)
13067 goto out_not_found;
13068
13069 len = pci_vpd_info_field_size(&vpd_data[i]);
13070
13071 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13072 if (len > TG3_BPN_SIZE ||
13073 (len + i) > TG3_NVM_VPD_LEN)
13074 goto out_not_found;
13075
13076 memcpy(tp->board_part_number, &vpd_data[i], len);
13077
Linus Torvalds1da177e2005-04-16 15:20:36 -070013078out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013079 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013080 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013081 return;
13082
13083out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013084 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13085 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13086 strcpy(tp->board_part_number, "BCM5717");
13087 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13088 strcpy(tp->board_part_number, "BCM5718");
13089 else
13090 goto nomatch;
13091 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13092 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13093 strcpy(tp->board_part_number, "BCM57780");
13094 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13095 strcpy(tp->board_part_number, "BCM57760");
13096 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13097 strcpy(tp->board_part_number, "BCM57790");
13098 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13099 strcpy(tp->board_part_number, "BCM57788");
13100 else
13101 goto nomatch;
13102 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13103 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13104 strcpy(tp->board_part_number, "BCM57761");
13105 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13106 strcpy(tp->board_part_number, "BCM57765");
13107 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13108 strcpy(tp->board_part_number, "BCM57781");
13109 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13110 strcpy(tp->board_part_number, "BCM57785");
13111 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13112 strcpy(tp->board_part_number, "BCM57791");
13113 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13114 strcpy(tp->board_part_number, "BCM57795");
13115 else
13116 goto nomatch;
13117 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013118 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013119 } else {
13120nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013121 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013123}
13124
Matt Carlson9c8a6202007-10-21 16:16:08 -070013125static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13126{
13127 u32 val;
13128
Matt Carlsone4f34112009-02-25 14:25:00 +000013129 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013130 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013131 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013132 val != 0)
13133 return 0;
13134
13135 return 1;
13136}
13137
Matt Carlsonacd9c112009-02-25 14:26:33 +000013138static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13139{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013140 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013141 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013142 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013143
13144 if (tg3_nvram_read(tp, 0xc, &offset) ||
13145 tg3_nvram_read(tp, 0x4, &start))
13146 return;
13147
13148 offset = tg3_nvram_logical_addr(tp, offset);
13149
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013150 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013151 return;
13152
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013153 if ((val & 0xfc000000) == 0x0c000000) {
13154 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013155 return;
13156
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013157 if (val == 0)
13158 newver = true;
13159 }
13160
Matt Carlson75f99362010-04-05 10:19:24 +000013161 dst_off = strlen(tp->fw_ver);
13162
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013163 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013164 if (TG3_VER_SIZE - dst_off < 16 ||
13165 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013166 return;
13167
13168 offset = offset + ver_offset - start;
13169 for (i = 0; i < 16; i += 4) {
13170 __be32 v;
13171 if (tg3_nvram_read_be32(tp, offset + i, &v))
13172 return;
13173
Matt Carlson75f99362010-04-05 10:19:24 +000013174 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013175 }
13176 } else {
13177 u32 major, minor;
13178
13179 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13180 return;
13181
13182 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13183 TG3_NVM_BCVER_MAJSFT;
13184 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013185 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13186 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013187 }
13188}
13189
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013190static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13191{
13192 u32 val, major, minor;
13193
13194 /* Use native endian representation */
13195 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13196 return;
13197
13198 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13199 TG3_NVM_HWSB_CFG1_MAJSFT;
13200 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13201 TG3_NVM_HWSB_CFG1_MINSFT;
13202
13203 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13204}
13205
Matt Carlsondfe00d72008-11-21 17:19:41 -080013206static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13207{
13208 u32 offset, major, minor, build;
13209
Matt Carlson75f99362010-04-05 10:19:24 +000013210 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013211
13212 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13213 return;
13214
13215 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13216 case TG3_EEPROM_SB_REVISION_0:
13217 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13218 break;
13219 case TG3_EEPROM_SB_REVISION_2:
13220 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13221 break;
13222 case TG3_EEPROM_SB_REVISION_3:
13223 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13224 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013225 case TG3_EEPROM_SB_REVISION_4:
13226 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13227 break;
13228 case TG3_EEPROM_SB_REVISION_5:
13229 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13230 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013231 case TG3_EEPROM_SB_REVISION_6:
13232 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13233 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013234 default:
13235 return;
13236 }
13237
Matt Carlsone4f34112009-02-25 14:25:00 +000013238 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013239 return;
13240
13241 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13242 TG3_EEPROM_SB_EDH_BLD_SHFT;
13243 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13244 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13245 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13246
13247 if (minor > 99 || build > 26)
13248 return;
13249
Matt Carlson75f99362010-04-05 10:19:24 +000013250 offset = strlen(tp->fw_ver);
13251 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13252 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013253
13254 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013255 offset = strlen(tp->fw_ver);
13256 if (offset < TG3_VER_SIZE - 1)
13257 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013258 }
13259}
13260
Matt Carlsonacd9c112009-02-25 14:26:33 +000013261static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013262{
13263 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013264 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013265
13266 for (offset = TG3_NVM_DIR_START;
13267 offset < TG3_NVM_DIR_END;
13268 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013269 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013270 return;
13271
13272 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13273 break;
13274 }
13275
13276 if (offset == TG3_NVM_DIR_END)
13277 return;
13278
Joe Perches63c3a662011-04-26 08:12:10 +000013279 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013280 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013281 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013282 return;
13283
Matt Carlsone4f34112009-02-25 14:25:00 +000013284 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013285 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013286 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013287 return;
13288
13289 offset += val - start;
13290
Matt Carlsonacd9c112009-02-25 14:26:33 +000013291 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013292
Matt Carlsonacd9c112009-02-25 14:26:33 +000013293 tp->fw_ver[vlen++] = ',';
13294 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013295
13296 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013297 __be32 v;
13298 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013299 return;
13300
Al Virob9fc7dc2007-12-17 22:59:57 -080013301 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013302
Matt Carlsonacd9c112009-02-25 14:26:33 +000013303 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13304 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013305 break;
13306 }
13307
Matt Carlsonacd9c112009-02-25 14:26:33 +000013308 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13309 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013310 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013311}
13312
Matt Carlson7fd76442009-02-25 14:27:20 +000013313static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13314{
13315 int vlen;
13316 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013317 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013318
Joe Perches63c3a662011-04-26 08:12:10 +000013319 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013320 return;
13321
13322 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13323 if (apedata != APE_SEG_SIG_MAGIC)
13324 return;
13325
13326 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13327 if (!(apedata & APE_FW_STATUS_READY))
13328 return;
13329
13330 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13331
Matt Carlsondc6d0742010-09-15 08:59:55 +000013332 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013333 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013334 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013335 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013336 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013337 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013338
Matt Carlson7fd76442009-02-25 14:27:20 +000013339 vlen = strlen(tp->fw_ver);
13340
Matt Carlsonecc79642010-08-02 11:26:01 +000013341 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13342 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013343 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13344 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13345 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13346 (apedata & APE_FW_VERSION_BLDMSK));
13347}
13348
Matt Carlsonacd9c112009-02-25 14:26:33 +000013349static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13350{
13351 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013352 bool vpd_vers = false;
13353
13354 if (tp->fw_ver[0] != 0)
13355 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013356
Joe Perches63c3a662011-04-26 08:12:10 +000013357 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013358 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013359 return;
13360 }
13361
Matt Carlsonacd9c112009-02-25 14:26:33 +000013362 if (tg3_nvram_read(tp, 0, &val))
13363 return;
13364
13365 if (val == TG3_EEPROM_MAGIC)
13366 tg3_read_bc_ver(tp);
13367 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13368 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013369 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13370 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013371 else
13372 return;
13373
Joe Perches63c3a662011-04-26 08:12:10 +000013374 if (!tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013375 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013376
13377 tg3_read_mgmtfw_ver(tp);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013378
Matt Carlson75f99362010-04-05 10:19:24 +000013379done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013380 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013381}
13382
Michael Chan7544b092007-05-05 13:08:32 -070013383static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13384
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013385static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13386{
Joe Perches63c3a662011-04-26 08:12:10 +000013387 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013388 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013389 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013390 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013391 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013392 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013393}
13394
Matt Carlson41434702011-03-09 16:58:22 +000013395static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013396 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13397 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13398 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13399 { },
13400};
13401
Linus Torvalds1da177e2005-04-16 15:20:36 -070013402static int __devinit tg3_get_invariants(struct tg3 *tp)
13403{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013404 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013405 u32 pci_state_reg, grc_misc_cfg;
13406 u32 val;
13407 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013408 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013409
Linus Torvalds1da177e2005-04-16 15:20:36 -070013410 /* Force memory write invalidate off. If we leave it on,
13411 * then on 5700_BX chips we have to enable a workaround.
13412 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13413 * to match the cacheline size. The Broadcom driver have this
13414 * workaround but turns MWI off all the times so never uses
13415 * it. This seems to suggest that the workaround is insufficient.
13416 */
13417 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13418 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13419 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13420
13421 /* It is absolutely critical that TG3PCI_MISC_HOST_CTRL
13422 * has the register indirect write enable bit set before
13423 * we try to access any of the MMIO registers. It is also
13424 * critical that the PCI-X hw workaround situation is decided
13425 * before that as well.
13426 */
13427 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13428 &misc_ctrl_reg);
13429
13430 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13431 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013432 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13433 u32 prod_id_asic_rev;
13434
Matt Carlson5001e2f2009-11-13 13:03:51 +000013435 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13436 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013437 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13438 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013439 pci_read_config_dword(tp->pdev,
13440 TG3PCI_GEN2_PRODID_ASICREV,
13441 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013442 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13443 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13444 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13445 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13446 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13447 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13448 pci_read_config_dword(tp->pdev,
13449 TG3PCI_GEN15_PRODID_ASICREV,
13450 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013451 else
13452 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13453 &prod_id_asic_rev);
13454
Matt Carlson321d32a2008-11-21 17:22:19 -080013455 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013457
Michael Chanff645be2005-04-21 17:09:53 -070013458 /* Wrong chip ID in 5752 A0. This code can be removed later
13459 * as A0 is not in production.
13460 */
13461 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13462 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13463
Michael Chan68929142005-08-09 20:17:14 -070013464 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13465 * we need to disable memory and use config. cycles
13466 * only to access all registers. The 5702/03 chips
13467 * can mistakenly decode the special cycles from the
13468 * ICH chipsets as memory write cycles, causing corruption
13469 * of register and memory space. Only certain ICH bridges
13470 * will drive special cycles with non-zero data during the
13471 * address phase which can fall within the 5703's address
13472 * range. This is not an ICH bug as the PCI spec allows
13473 * non-zero address during special cycles. However, only
13474 * these ICH bridges are known to drive non-zero addresses
13475 * during special cycles.
13476 *
13477 * Since special cycles do not cross PCI bridges, we only
13478 * enable this workaround if the 5703 is on the secondary
13479 * bus of these ICH bridges.
13480 */
13481 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13482 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13483 static struct tg3_dev_id {
13484 u32 vendor;
13485 u32 device;
13486 u32 rev;
13487 } ich_chipsets[] = {
13488 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13489 PCI_ANY_ID },
13490 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13491 PCI_ANY_ID },
13492 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13493 0xa },
13494 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13495 PCI_ANY_ID },
13496 { },
13497 };
13498 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13499 struct pci_dev *bridge = NULL;
13500
13501 while (pci_id->vendor != 0) {
13502 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13503 bridge);
13504 if (!bridge) {
13505 pci_id++;
13506 continue;
13507 }
13508 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013509 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013510 continue;
13511 }
13512 if (bridge->subordinate &&
13513 (bridge->subordinate->number ==
13514 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013515 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013516 pci_dev_put(bridge);
13517 break;
13518 }
13519 }
13520 }
13521
Matt Carlson41588ba2008-04-19 18:12:33 -070013522 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
13523 static struct tg3_dev_id {
13524 u32 vendor;
13525 u32 device;
13526 } bridge_chipsets[] = {
13527 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13528 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13529 { },
13530 };
13531 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13532 struct pci_dev *bridge = NULL;
13533
13534 while (pci_id->vendor != 0) {
13535 bridge = pci_get_device(pci_id->vendor,
13536 pci_id->device,
13537 bridge);
13538 if (!bridge) {
13539 pci_id++;
13540 continue;
13541 }
13542 if (bridge->subordinate &&
13543 (bridge->subordinate->number <=
13544 tp->pdev->bus->number) &&
13545 (bridge->subordinate->subordinate >=
13546 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013547 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070013548 pci_dev_put(bridge);
13549 break;
13550 }
13551 }
13552 }
13553
Michael Chan4a29cc22006-03-19 13:21:12 -080013554 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13555 * DMA addresses > 40-bit. This bridge may have other additional
13556 * 57xx devices behind it in some 4-port NIC designs for example.
13557 * Any tg3 device found behind the bridge will also need the 40-bit
13558 * DMA workaround.
13559 */
Michael Chana4e2b342005-10-26 15:46:52 -070013560 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13561 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000013562 tg3_flag_set(tp, 5780_CLASS);
13563 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070013564 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000013565 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080013566 struct pci_dev *bridge = NULL;
13567
13568 do {
13569 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13570 PCI_DEVICE_ID_SERVERWORKS_EPB,
13571 bridge);
13572 if (bridge && bridge->subordinate &&
13573 (bridge->subordinate->number <=
13574 tp->pdev->bus->number) &&
13575 (bridge->subordinate->subordinate >=
13576 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013577 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080013578 pci_dev_put(bridge);
13579 break;
13580 }
13581 } while (bridge);
13582 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013583
Linus Torvalds1da177e2005-04-16 15:20:36 -070013584 /* Initialize misc host control in PCI block. */
13585 tp->misc_host_ctrl |= (misc_ctrl_reg &
13586 MISC_HOST_CTRL_CHIPREV);
13587 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13588 tp->misc_host_ctrl);
13589
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013590 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
13591 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013592 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
13593 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Michael Chan7544b092007-05-05 13:08:32 -070013594 tp->pdev_peer = tg3_find_peer(tp);
13595
Matt Carlsonc885e822010-08-02 11:25:57 +000013596 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013597 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13598 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000013599 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000013600
13601 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013602 tg3_flag(tp, 5717_PLUS))
13603 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000013604
Matt Carlson321d32a2008-11-21 17:22:19 -080013605 /* Intentionally exclude ASIC_REV_5906 */
13606 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad12006-03-20 22:27:35 -080013607 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013608 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013609 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013610 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013611 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013612 tg3_flag(tp, 57765_PLUS))
13613 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013614
13615 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13616 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013617 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013618 tg3_flag(tp, 5755_PLUS) ||
13619 tg3_flag(tp, 5780_CLASS))
13620 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070013621
John W. Linville1b440c562005-04-21 17:03:18 -070013622 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) ||
Joe Perches63c3a662011-04-26 08:12:10 +000013623 tg3_flag(tp, 5750_PLUS))
13624 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070013625
Matt Carlson027455a2008-12-21 20:19:30 -080013626 /* 5700 B0 chips do not support checksumming correctly due
13627 * to hardware bugs.
13628 */
Michał Mirosławdc668912011-04-07 03:35:07 +000013629 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
13630 u32 features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
Eric Dumazet7fe876a2010-07-08 06:14:55 +000013631
Joe Perches63c3a662011-04-26 08:12:10 +000013632 if (tg3_flag(tp, 5755_PLUS))
Eric Dumazet7fe876a2010-07-08 06:14:55 +000013633 features |= NETIF_F_IPV6_CSUM;
13634 tp->dev->features |= features;
Michał Mirosławdc668912011-04-07 03:35:07 +000013635 tp->dev->hw_features |= features;
13636 tp->dev->vlan_features |= features;
Matt Carlson027455a2008-12-21 20:19:30 -080013637 }
13638
Matt Carlson507399f2009-11-13 13:03:37 +000013639 /* Determine TSO capabilities */
Matt Carlson2866d952011-02-10 20:06:46 -080013640 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlson4d163b72011-01-25 15:58:48 +000013641 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000013642 else if (tg3_flag(tp, 57765_PLUS))
13643 tg3_flag_set(tp, HW_TSO_3);
13644 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000013645 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013646 tg3_flag_set(tp, HW_TSO_2);
13647 else if (tg3_flag(tp, 5750_PLUS)) {
13648 tg3_flag_set(tp, HW_TSO_1);
13649 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013650 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13651 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000013652 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013653 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13654 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13655 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013656 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013657 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13658 tp->fw_needed = FIRMWARE_TG3TSO5;
13659 else
13660 tp->fw_needed = FIRMWARE_TG3TSO;
13661 }
13662
13663 tp->irq_max = 1;
13664
Joe Perches63c3a662011-04-26 08:12:10 +000013665 if (tg3_flag(tp, 5750_PLUS)) {
13666 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013667 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13668 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13669 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13670 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13671 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000013672 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013673
Joe Perches63c3a662011-04-26 08:12:10 +000013674 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013675 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013676 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070013677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013678
Joe Perches63c3a662011-04-26 08:12:10 +000013679 if (tg3_flag(tp, 57765_PLUS)) {
13680 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000013681 tp->irq_max = TG3_IRQ_MAX_VECS;
13682 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013683 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013684
Matt Carlson2ffcc982011-05-19 12:12:44 +000013685 /* All chips can get confused if TX buffers
13686 * straddle the 4GB address boundary.
13687 */
13688 tg3_flag_set(tp, 4G_DMA_BNDRY_BUG);
13689
13690 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000013691 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlson2ffcc982011-05-19 12:12:44 +000013692 else
Joe Perches63c3a662011-04-26 08:12:10 +000013693 tg3_flag_set(tp, 40BIT_DMA_LIMIT_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013694
Joe Perches63c3a662011-04-26 08:12:10 +000013695 if (tg3_flag(tp, 5717_PLUS))
13696 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000013697
Joe Perches63c3a662011-04-26 08:12:10 +000013698 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlson2866d952011-02-10 20:06:46 -080013699 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5719)
Joe Perches63c3a662011-04-26 08:12:10 +000013700 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000013701
Joe Perches63c3a662011-04-26 08:12:10 +000013702 if (!tg3_flag(tp, 5705_PLUS) ||
13703 tg3_flag(tp, 5780_CLASS) ||
13704 tg3_flag(tp, USE_JUMBO_BDFLAG))
13705 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070013706
Matt Carlson52f44902008-11-21 17:17:04 -080013707 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13708 &pci_state_reg);
13709
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013710 tp->pcie_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_EXP);
13711 if (tp->pcie_cap != 0) {
13712 u16 lnkctl;
13713
Joe Perches63c3a662011-04-26 08:12:10 +000013714 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013715
Matt Carlsoncf790032010-11-24 08:31:48 +000013716 tp->pcie_readrq = 4096;
Matt Carlsond78b59f2011-04-05 14:22:46 +000013717 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13718 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Matt Carlsonb4495ed2011-01-25 15:58:47 +000013719 tp->pcie_readrq = 2048;
Matt Carlsoncf790032010-11-24 08:31:48 +000013720
13721 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013722
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013723 pci_read_config_word(tp->pdev,
13724 tp->pcie_cap + PCI_EXP_LNKCTL,
13725 &lnkctl);
13726 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
13727 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013728 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013729 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013730 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013731 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13732 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000013733 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000013734 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013735 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080013736 }
Matt Carlson52f44902008-11-21 17:17:04 -080013737 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +000013738 tg3_flag_set(tp, PCI_EXPRESS);
13739 } else if (!tg3_flag(tp, 5705_PLUS) ||
13740 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080013741 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13742 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000013743 dev_err(&tp->pdev->dev,
13744 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013745 return -EIO;
13746 }
13747
13748 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000013749 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080013750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013751
Michael Chan399de502005-10-03 14:02:39 -070013752 /* If we have an AMD 762 or VIA K8T800 chipset, write
13753 * reordering to the mailbox registers done by the host
13754 * controller can cause major troubles. We read back from
13755 * every mailbox register write to force the writes to be
13756 * posted to the chip in order.
13757 */
Matt Carlson41434702011-03-09 16:58:22 +000013758 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013759 !tg3_flag(tp, PCI_EXPRESS))
13760 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070013761
Matt Carlson69fc4052008-12-21 20:19:57 -080013762 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13763 &tp->pci_cacheline_sz);
13764 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13765 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013766 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13767 tp->pci_lat_timer < 64) {
13768 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013769 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13770 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013771 }
13772
Matt Carlson52f44902008-11-21 17:17:04 -080013773 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13774 /* 5700 BX chips need to have their TX producer index
13775 * mailboxes written twice to workaround a bug.
13776 */
Joe Perches63c3a662011-04-26 08:12:10 +000013777 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070013778
Matt Carlson52f44902008-11-21 17:17:04 -080013779 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013780 *
13781 * The workaround is to use indirect register accesses
13782 * for all chip writes not to mailbox registers.
13783 */
Joe Perches63c3a662011-04-26 08:12:10 +000013784 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013785 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013786
Joe Perches63c3a662011-04-26 08:12:10 +000013787 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013788
13789 /* The chip can have it's power management PCI config
13790 * space registers clobbered due to this bug.
13791 * So explicitly force the chip into D0 here.
13792 */
Matt Carlson9974a352007-10-07 23:27:28 -070013793 pci_read_config_dword(tp->pdev,
13794 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013795 &pm_reg);
13796 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13797 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013798 pci_write_config_dword(tp->pdev,
13799 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013800 pm_reg);
13801
13802 /* Also, force SERR#/PERR# in PCI command. */
13803 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13804 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13805 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13806 }
13807 }
13808
Linus Torvalds1da177e2005-04-16 15:20:36 -070013809 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013810 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013811 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013812 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013813
13814 /* Chip-specific fixup from Broadcom driver */
13815 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13816 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13817 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13818 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13819 }
13820
Michael Chan1ee582d2005-08-09 20:16:46 -070013821 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013822 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013823 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013824 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013825 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013826 tp->write32_tx_mbox = tg3_write32;
13827 tp->write32_rx_mbox = tg3_write32;
13828
13829 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000013830 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070013831 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013832 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013833 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070013834 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
13835 /*
13836 * Back to back register writes can cause problems on these
13837 * chips, the workaround is to read back all reg writes
13838 * except those to mailbox regs.
13839 *
13840 * See tg3_write_indirect_reg32().
13841 */
Michael Chan1ee582d2005-08-09 20:16:46 -070013842 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070013843 }
13844
Joe Perches63c3a662011-04-26 08:12:10 +000013845 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070013846 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000013847 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070013848 tp->write32_rx_mbox = tg3_write_flush_reg32;
13849 }
Michael Chan20094932005-08-09 20:16:32 -070013850
Joe Perches63c3a662011-04-26 08:12:10 +000013851 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070013852 tp->read32 = tg3_read_indirect_reg32;
13853 tp->write32 = tg3_write_indirect_reg32;
13854 tp->read32_mbox = tg3_read_indirect_mbox;
13855 tp->write32_mbox = tg3_write_indirect_mbox;
13856 tp->write32_tx_mbox = tg3_write_indirect_mbox;
13857 tp->write32_rx_mbox = tg3_write_indirect_mbox;
13858
13859 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070013860 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070013861
13862 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13863 pci_cmd &= ~PCI_COMMAND_MEMORY;
13864 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13865 }
Michael Chanb5d37722006-09-27 16:06:21 -070013866 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
13867 tp->read32_mbox = tg3_read32_mbox_5906;
13868 tp->write32_mbox = tg3_write32_mbox_5906;
13869 tp->write32_tx_mbox = tg3_write32_mbox_5906;
13870 tp->write32_rx_mbox = tg3_write32_mbox_5906;
13871 }
Michael Chan68929142005-08-09 20:17:14 -070013872
Michael Chanbbadf502006-04-06 21:46:34 -070013873 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013874 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070013875 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070013876 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000013877 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070013878
Michael Chan7d0c41e2005-04-21 17:06:20 -070013879 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000013880 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070013881 * determined before calling tg3_set_power_state() so that
13882 * we know whether or not to switch out of Vaux power.
13883 * When the flag is set, it means that GPIO1 is used for eeprom
13884 * write protect and also implies that it is a LOM where GPIOs
13885 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013886 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070013887 tg3_get_eeprom_hw_cfg(tp);
13888
Joe Perches63c3a662011-04-26 08:12:10 +000013889 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070013890 /* Allow reads and writes to the
13891 * APE register and memory space.
13892 */
13893 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000013894 PCISTATE_ALLOW_APE_SHMEM_WR |
13895 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070013896 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
13897 pci_state_reg);
13898 }
13899
Matt Carlson9936bcf2007-10-10 18:03:07 -070013900 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013901 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013902 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013903 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013904 tg3_flag(tp, 57765_PLUS))
13905 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070013906
Matt Carlsonbea8a632011-04-25 12:42:49 +000013907 /* Set up tp->grc_local_ctrl before calling tg3_power_up().
Michael Chan314fba32005-04-21 17:07:04 -070013908 * GPIO1 driven high will bring 5700's external PHY out of reset.
13909 * It is also used as eeprom write protect on LOMs.
13910 */
13911 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
13912 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
Joe Perches63c3a662011-04-26 08:12:10 +000013913 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070013914 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
13915 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070013916 /* Unused GPIO3 must be driven as output on 5752 because there
13917 * are no pull-up resistors on unused GPIO pins.
13918 */
13919 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
13920 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070013921
Matt Carlson321d32a2008-11-21 17:22:19 -080013922 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000013923 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13924 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080013925 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13926
Matt Carlson8d519ab2009-04-20 06:58:01 +000013927 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
13928 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013929 /* Turn off the debug UART. */
13930 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000013931 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070013932 /* Keep VMain power. */
13933 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
13934 GRC_LCLCTRL_GPIO_OUTPUT0;
13935 }
13936
Linus Torvalds1da177e2005-04-16 15:20:36 -070013937 /* Force the chip into D0. */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000013938 err = tg3_power_up(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013939 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000013940 dev_err(&tp->pdev->dev, "Transition to D0 failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070013941 return err;
13942 }
13943
Linus Torvalds1da177e2005-04-16 15:20:36 -070013944 /* Derive initial jumbo mode from MTU assigned in
13945 * ether_setup() via the alloc_etherdev() call
13946 */
Joe Perches63c3a662011-04-26 08:12:10 +000013947 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
13948 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013949
13950 /* Determine WakeOnLan speed to use. */
13951 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
13952 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
13953 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
13954 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000013955 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013956 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013957 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013958 }
13959
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013960 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013961 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000013962
Linus Torvalds1da177e2005-04-16 15:20:36 -070013963 /* A few boards don't want Ethernet@WireSpeed phy feature */
13964 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) ||
13965 ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
13966 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070013967 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013968 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
13969 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13970 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013971
13972 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
13973 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013974 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013975 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013976 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013977
Joe Perches63c3a662011-04-26 08:12:10 +000013978 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013979 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080013980 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013981 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013982 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070013983 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013984 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013985 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
13986 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080013987 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
13988 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013989 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080013990 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013991 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080013992 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013993 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070013994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013995
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013996 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13997 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
13998 tp->phy_otp = tg3_read_otp_phycfg(tp);
13999 if (tp->phy_otp == 0)
14000 tp->phy_otp = TG3_OTP_DEFAULT;
14001 }
14002
Joe Perches63c3a662011-04-26 08:12:10 +000014003 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014004 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14005 else
14006 tp->mi_mode = MAC_MI_MODE_BASE;
14007
Linus Torvalds1da177e2005-04-16 15:20:36 -070014008 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014009 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14010 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14011 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14012
Matt Carlson4d958472011-04-20 07:57:35 +000014013 /* Set these bits to enable statistics workaround. */
14014 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14015 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14016 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14017 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14018 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14019 }
14020
Matt Carlson321d32a2008-11-21 17:22:19 -080014021 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14022 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014023 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014024
Matt Carlson158d7ab2008-05-29 01:37:54 -070014025 err = tg3_mdio_init(tp);
14026 if (err)
14027 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014028
14029 /* Initialize data/descriptor byte/word swapping. */
14030 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014031 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14032 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14033 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14034 GRC_MODE_B2HRX_ENABLE |
14035 GRC_MODE_HTX2B_ENABLE |
14036 GRC_MODE_HOST_STACKUP);
14037 else
14038 val &= GRC_MODE_HOST_STACKUP;
14039
Linus Torvalds1da177e2005-04-16 15:20:36 -070014040 tw32(GRC_MODE, val | tp->grc_mode);
14041
14042 tg3_switch_clocks(tp);
14043
14044 /* Clear this out for sanity. */
14045 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14046
14047 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14048 &pci_state_reg);
14049 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014050 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014051 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14052
14053 if (chiprevid == CHIPREV_ID_5701_A0 ||
14054 chiprevid == CHIPREV_ID_5701_B0 ||
14055 chiprevid == CHIPREV_ID_5701_B2 ||
14056 chiprevid == CHIPREV_ID_5701_B5) {
14057 void __iomem *sram_base;
14058
14059 /* Write some dummy words into the SRAM status block
14060 * area, see if it reads back correctly. If the return
14061 * value is bad, force enable the PCIX workaround.
14062 */
14063 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14064
14065 writel(0x00000000, sram_base);
14066 writel(0x00000000, sram_base + 4);
14067 writel(0xffffffff, sram_base + 4);
14068 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014069 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014070 }
14071 }
14072
14073 udelay(50);
14074 tg3_nvram_init(tp);
14075
14076 grc_misc_cfg = tr32(GRC_MISC_CFG);
14077 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14078
Linus Torvalds1da177e2005-04-16 15:20:36 -070014079 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14080 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14081 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014082 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014083
Joe Perches63c3a662011-04-26 08:12:10 +000014084 if (!tg3_flag(tp, IS_5788) &&
David S. Millerfac9b832005-05-18 22:46:34 -070014085 (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700))
Joe Perches63c3a662011-04-26 08:12:10 +000014086 tg3_flag_set(tp, TAGGED_STATUS);
14087 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014088 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14089 HOSTCC_MODE_CLRTICK_TXBD);
14090
14091 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14092 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14093 tp->misc_host_ctrl);
14094 }
14095
Matt Carlson3bda1252008-08-15 14:08:22 -070014096 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014097 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014098 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014099 else
14100 tp->mac_mode = TG3_DEF_MAC_MODE;
14101
Linus Torvalds1da177e2005-04-16 15:20:36 -070014102 /* these are limited to 10/100 only */
14103 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14104 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14105 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14106 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14107 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14108 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14109 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14110 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14111 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014112 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14113 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014114 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014115 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14116 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014117 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14118 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014119
14120 err = tg3_phy_probe(tp);
14121 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014122 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014123 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014124 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014125 }
14126
Matt Carlson184b8902010-04-05 10:19:25 +000014127 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014128 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014129
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014130 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14131 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014132 } else {
14133 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014134 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014135 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014136 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014137 }
14138
14139 /* 5700 {AX,BX} chips have a broken status block link
14140 * change bit implementation, so we must use the
14141 * status register in those cases.
14142 */
14143 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014144 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014145 else
Joe Perches63c3a662011-04-26 08:12:10 +000014146 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014147
14148 /* The led_ctrl is set during tg3_phy_probe, here we might
14149 * have to force the link status polling mechanism based
14150 * upon subsystem IDs.
14151 */
14152 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014153 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014154 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14155 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014156 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014157 }
14158
14159 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014160 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014161 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014162 else
Joe Perches63c3a662011-04-26 08:12:10 +000014163 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014164
Matt Carlsonbf933c82011-01-25 15:58:49 +000014165 tp->rx_offset = NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014166 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014167 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014168 tg3_flag(tp, PCIX_MODE)) {
Matt Carlsonbf933c82011-01-25 15:58:49 +000014169 tp->rx_offset = 0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014170#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014171 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014172#endif
14173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014174
Matt Carlson2c49a442010-09-30 10:34:35 +000014175 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14176 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014177 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14178
Matt Carlson2c49a442010-09-30 10:34:35 +000014179 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014180
14181 /* Increment the rx prod index on the rx std ring by at most
14182 * 8 for these chips to workaround hw errata.
14183 */
14184 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14185 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14186 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14187 tp->rx_std_max_post = 8;
14188
Joe Perches63c3a662011-04-26 08:12:10 +000014189 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014190 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14191 PCIE_PWR_MGMT_L1_THRESH_MSK;
14192
Linus Torvalds1da177e2005-04-16 15:20:36 -070014193 return err;
14194}
14195
David S. Miller49b6e95f2007-03-29 01:38:42 -070014196#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014197static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14198{
14199 struct net_device *dev = tp->dev;
14200 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014201 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014202 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014203 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014204
David S. Miller49b6e95f2007-03-29 01:38:42 -070014205 addr = of_get_property(dp, "local-mac-address", &len);
14206 if (addr && len == 6) {
14207 memcpy(dev->dev_addr, addr, 6);
14208 memcpy(dev->perm_addr, dev->dev_addr, 6);
14209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014210 }
14211 return -ENODEV;
14212}
14213
14214static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14215{
14216 struct net_device *dev = tp->dev;
14217
14218 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014219 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014220 return 0;
14221}
14222#endif
14223
14224static int __devinit tg3_get_device_address(struct tg3 *tp)
14225{
14226 struct net_device *dev = tp->dev;
14227 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014228 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014229
David S. Miller49b6e95f2007-03-29 01:38:42 -070014230#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014231 if (!tg3_get_macaddr_sparc(tp))
14232 return 0;
14233#endif
14234
14235 mac_offset = 0x7c;
David S. Millerf49639e2006-06-09 11:58:36 -070014236 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) ||
Joe Perches63c3a662011-04-26 08:12:10 +000014237 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014238 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14239 mac_offset = 0xcc;
14240 if (tg3_nvram_lock(tp))
14241 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14242 else
14243 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014244 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlsona50d0792010-06-05 17:24:37 +000014245 if (PCI_FUNC(tp->pdev->devfn) & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014246 mac_offset = 0xcc;
Matt Carlsona50d0792010-06-05 17:24:37 +000014247 if (PCI_FUNC(tp->pdev->devfn) > 1)
14248 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014249 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014250 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014251
14252 /* First try to get it from MAC address mailbox. */
14253 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14254 if ((hi >> 16) == 0x484b) {
14255 dev->dev_addr[0] = (hi >> 8) & 0xff;
14256 dev->dev_addr[1] = (hi >> 0) & 0xff;
14257
14258 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14259 dev->dev_addr[2] = (lo >> 24) & 0xff;
14260 dev->dev_addr[3] = (lo >> 16) & 0xff;
14261 dev->dev_addr[4] = (lo >> 8) & 0xff;
14262 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014263
Michael Chan008652b2006-03-27 23:14:53 -080014264 /* Some old bootcode may report a 0 MAC address in SRAM */
14265 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14266 }
14267 if (!addr_ok) {
14268 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014269 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014270 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014271 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014272 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14273 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014274 }
14275 /* Finally just fetch it out of the MAC control regs. */
14276 else {
14277 hi = tr32(MAC_ADDR_0_HIGH);
14278 lo = tr32(MAC_ADDR_0_LOW);
14279
14280 dev->dev_addr[5] = lo & 0xff;
14281 dev->dev_addr[4] = (lo >> 8) & 0xff;
14282 dev->dev_addr[3] = (lo >> 16) & 0xff;
14283 dev->dev_addr[2] = (lo >> 24) & 0xff;
14284 dev->dev_addr[1] = hi & 0xff;
14285 dev->dev_addr[0] = (hi >> 8) & 0xff;
14286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014287 }
14288
14289 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014290#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014291 if (!tg3_get_default_macaddr_sparc(tp))
14292 return 0;
14293#endif
14294 return -EINVAL;
14295 }
John W. Linville2ff43692005-09-12 14:44:20 -070014296 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014297 return 0;
14298}
14299
David S. Miller59e6b432005-05-18 22:50:10 -070014300#define BOUNDARY_SINGLE_CACHELINE 1
14301#define BOUNDARY_MULTI_CACHELINE 2
14302
14303static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14304{
14305 int cacheline_size;
14306 u8 byte;
14307 int goal;
14308
14309 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14310 if (byte == 0)
14311 cacheline_size = 1024;
14312 else
14313 cacheline_size = (int) byte * 4;
14314
14315 /* On 5703 and later chips, the boundary bits have no
14316 * effect.
14317 */
14318 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14319 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014320 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014321 goto out;
14322
14323#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14324 goal = BOUNDARY_MULTI_CACHELINE;
14325#else
14326#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14327 goal = BOUNDARY_SINGLE_CACHELINE;
14328#else
14329 goal = 0;
14330#endif
14331#endif
14332
Joe Perches63c3a662011-04-26 08:12:10 +000014333 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014334 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14335 goto out;
14336 }
14337
David S. Miller59e6b432005-05-18 22:50:10 -070014338 if (!goal)
14339 goto out;
14340
14341 /* PCI controllers on most RISC systems tend to disconnect
14342 * when a device tries to burst across a cache-line boundary.
14343 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14344 *
14345 * Unfortunately, for PCI-E there are only limited
14346 * write-side controls for this, and thus for reads
14347 * we will still get the disconnects. We'll also waste
14348 * these PCI cycles for both read and write for chips
14349 * other than 5700 and 5701 which do not implement the
14350 * boundary bits.
14351 */
Joe Perches63c3a662011-04-26 08:12:10 +000014352 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014353 switch (cacheline_size) {
14354 case 16:
14355 case 32:
14356 case 64:
14357 case 128:
14358 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14359 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14360 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14361 } else {
14362 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14363 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14364 }
14365 break;
14366
14367 case 256:
14368 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14369 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14370 break;
14371
14372 default:
14373 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14374 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14375 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014376 }
Joe Perches63c3a662011-04-26 08:12:10 +000014377 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014378 switch (cacheline_size) {
14379 case 16:
14380 case 32:
14381 case 64:
14382 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14383 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14384 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14385 break;
14386 }
14387 /* fallthrough */
14388 case 128:
14389 default:
14390 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14391 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14392 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014393 }
David S. Miller59e6b432005-05-18 22:50:10 -070014394 } else {
14395 switch (cacheline_size) {
14396 case 16:
14397 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14398 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14399 DMA_RWCTRL_WRITE_BNDRY_16);
14400 break;
14401 }
14402 /* fallthrough */
14403 case 32:
14404 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14405 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14406 DMA_RWCTRL_WRITE_BNDRY_32);
14407 break;
14408 }
14409 /* fallthrough */
14410 case 64:
14411 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14412 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14413 DMA_RWCTRL_WRITE_BNDRY_64);
14414 break;
14415 }
14416 /* fallthrough */
14417 case 128:
14418 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14419 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14420 DMA_RWCTRL_WRITE_BNDRY_128);
14421 break;
14422 }
14423 /* fallthrough */
14424 case 256:
14425 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14426 DMA_RWCTRL_WRITE_BNDRY_256);
14427 break;
14428 case 512:
14429 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14430 DMA_RWCTRL_WRITE_BNDRY_512);
14431 break;
14432 case 1024:
14433 default:
14434 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14435 DMA_RWCTRL_WRITE_BNDRY_1024);
14436 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014437 }
David S. Miller59e6b432005-05-18 22:50:10 -070014438 }
14439
14440out:
14441 return val;
14442}
14443
Linus Torvalds1da177e2005-04-16 15:20:36 -070014444static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14445{
14446 struct tg3_internal_buffer_desc test_desc;
14447 u32 sram_dma_descs;
14448 int i, ret;
14449
14450 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14451
14452 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14453 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14454 tw32(RDMAC_STATUS, 0);
14455 tw32(WDMAC_STATUS, 0);
14456
14457 tw32(BUFMGR_MODE, 0);
14458 tw32(FTQ_RESET, 0);
14459
14460 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14461 test_desc.addr_lo = buf_dma & 0xffffffff;
14462 test_desc.nic_mbuf = 0x00002100;
14463 test_desc.len = size;
14464
14465 /*
14466 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14467 * the *second* time the tg3 driver was getting loaded after an
14468 * initial scan.
14469 *
14470 * Broadcom tells me:
14471 * ...the DMA engine is connected to the GRC block and a DMA
14472 * reset may affect the GRC block in some unpredictable way...
14473 * The behavior of resets to individual blocks has not been tested.
14474 *
14475 * Broadcom noted the GRC reset will also reset all sub-components.
14476 */
14477 if (to_device) {
14478 test_desc.cqid_sqid = (13 << 8) | 2;
14479
14480 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14481 udelay(40);
14482 } else {
14483 test_desc.cqid_sqid = (16 << 8) | 7;
14484
14485 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14486 udelay(40);
14487 }
14488 test_desc.flags = 0x00000005;
14489
14490 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14491 u32 val;
14492
14493 val = *(((u32 *)&test_desc) + i);
14494 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14495 sram_dma_descs + (i * sizeof(u32)));
14496 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14497 }
14498 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14499
Matt Carlson859a588792010-04-05 10:19:28 +000014500 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014501 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000014502 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014503 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014504
14505 ret = -ENODEV;
14506 for (i = 0; i < 40; i++) {
14507 u32 val;
14508
14509 if (to_device)
14510 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14511 else
14512 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14513 if ((val & 0xffff) == sram_dma_descs) {
14514 ret = 0;
14515 break;
14516 }
14517
14518 udelay(100);
14519 }
14520
14521 return ret;
14522}
14523
David S. Millerded73402005-05-23 13:59:47 -070014524#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014525
Matt Carlson41434702011-03-09 16:58:22 +000014526static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014527 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14528 { },
14529};
14530
Linus Torvalds1da177e2005-04-16 15:20:36 -070014531static int __devinit tg3_test_dma(struct tg3 *tp)
14532{
14533 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014534 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014535 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014536
Matt Carlson4bae65c2010-11-24 08:31:52 +000014537 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
14538 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014539 if (!buf) {
14540 ret = -ENOMEM;
14541 goto out_nofree;
14542 }
14543
14544 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14545 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14546
David S. Miller59e6b432005-05-18 22:50:10 -070014547 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014548
Joe Perches63c3a662011-04-26 08:12:10 +000014549 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014550 goto out;
14551
Joe Perches63c3a662011-04-26 08:12:10 +000014552 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014553 /* DMA read watermark not used on PCIE */
14554 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000014555 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014556 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14557 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014558 tp->dma_rwctrl |= 0x003f0000;
14559 else
14560 tp->dma_rwctrl |= 0x003f000f;
14561 } else {
14562 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14563 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14564 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014565 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014566
Michael Chan4a29cc22006-03-19 13:21:12 -080014567 /* If the 5704 is behind the EPB bridge, we can
14568 * do the less restrictive ONE_DMA workaround for
14569 * better performance.
14570 */
Joe Perches63c3a662011-04-26 08:12:10 +000014571 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080014572 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14573 tp->dma_rwctrl |= 0x8000;
14574 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014575 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14576
Michael Chan49afdeb2007-02-13 12:17:03 -080014577 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14578 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014579 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014580 tp->dma_rwctrl |=
14581 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14582 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14583 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014584 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14585 /* 5780 always in PCIX mode */
14586 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014587 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14588 /* 5714 always in PCIX mode */
14589 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014590 } else {
14591 tp->dma_rwctrl |= 0x001b000f;
14592 }
14593 }
14594
14595 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14596 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14597 tp->dma_rwctrl &= 0xfffffff0;
14598
14599 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14600 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14601 /* Remove this if it causes problems for some boards. */
14602 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14603
14604 /* On 5700/5701 chips, we need to set this bit.
14605 * Otherwise the chip will issue cacheline transactions
14606 * to streamable DMA memory with not all the byte
14607 * enables turned on. This is an error on several
14608 * RISC PCI controllers, in particular sparc64.
14609 *
14610 * On 5703/5704 chips, this bit has been reassigned
14611 * a different meaning. In particular, it is used
14612 * on those chips to enable a PCI-X workaround.
14613 */
14614 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14615 }
14616
14617 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14618
14619#if 0
14620 /* Unneeded, already done by tg3_get_invariants. */
14621 tg3_switch_clocks(tp);
14622#endif
14623
Linus Torvalds1da177e2005-04-16 15:20:36 -070014624 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14625 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14626 goto out;
14627
David S. Miller59e6b432005-05-18 22:50:10 -070014628 /* It is best to perform DMA test with maximum write burst size
14629 * to expose the 5700/5701 write DMA bug.
14630 */
14631 saved_dma_rwctrl = tp->dma_rwctrl;
14632 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14633 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14634
Linus Torvalds1da177e2005-04-16 15:20:36 -070014635 while (1) {
14636 u32 *p = buf, i;
14637
14638 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14639 p[i] = i;
14640
14641 /* Send the buffer to the chip. */
14642 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14643 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014644 dev_err(&tp->pdev->dev,
14645 "%s: Buffer write failed. err = %d\n",
14646 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014647 break;
14648 }
14649
14650#if 0
14651 /* validate data reached card RAM correctly. */
14652 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14653 u32 val;
14654 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14655 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000014656 dev_err(&tp->pdev->dev,
14657 "%s: Buffer corrupted on device! "
14658 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014659 /* ret = -ENODEV here? */
14660 }
14661 p[i] = 0;
14662 }
14663#endif
14664 /* Now read it back. */
14665 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14666 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014667 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
14668 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014669 break;
14670 }
14671
14672 /* Verify it. */
14673 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14674 if (p[i] == i)
14675 continue;
14676
David S. Miller59e6b432005-05-18 22:50:10 -070014677 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14678 DMA_RWCTRL_WRITE_BNDRY_16) {
14679 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014680 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14681 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14682 break;
14683 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000014684 dev_err(&tp->pdev->dev,
14685 "%s: Buffer corrupted on read back! "
14686 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014687 ret = -ENODEV;
14688 goto out;
14689 }
14690 }
14691
14692 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14693 /* Success. */
14694 ret = 0;
14695 break;
14696 }
14697 }
David S. Miller59e6b432005-05-18 22:50:10 -070014698 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14699 DMA_RWCTRL_WRITE_BNDRY_16) {
14700 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014701 * now look for chipsets that are known to expose the
14702 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014703 */
Matt Carlson41434702011-03-09 16:58:22 +000014704 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014705 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14706 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000014707 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014708 /* Safe to use the calculated DMA boundary. */
14709 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000014710 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070014711
David S. Miller59e6b432005-05-18 22:50:10 -070014712 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014714
14715out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000014716 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014717out_nofree:
14718 return ret;
14719}
14720
Linus Torvalds1da177e2005-04-16 15:20:36 -070014721static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14722{
Joe Perches63c3a662011-04-26 08:12:10 +000014723 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000014724 tp->bufmgr_config.mbuf_read_dma_low_water =
14725 DEFAULT_MB_RDMA_LOW_WATER_5705;
14726 tp->bufmgr_config.mbuf_mac_rx_low_water =
14727 DEFAULT_MB_MACRX_LOW_WATER_57765;
14728 tp->bufmgr_config.mbuf_high_water =
14729 DEFAULT_MB_HIGH_WATER_57765;
14730
14731 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14732 DEFAULT_MB_RDMA_LOW_WATER_5705;
14733 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14734 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14735 tp->bufmgr_config.mbuf_high_water_jumbo =
14736 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000014737 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070014738 tp->bufmgr_config.mbuf_read_dma_low_water =
14739 DEFAULT_MB_RDMA_LOW_WATER_5705;
14740 tp->bufmgr_config.mbuf_mac_rx_low_water =
14741 DEFAULT_MB_MACRX_LOW_WATER_5705;
14742 tp->bufmgr_config.mbuf_high_water =
14743 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014744 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14745 tp->bufmgr_config.mbuf_mac_rx_low_water =
14746 DEFAULT_MB_MACRX_LOW_WATER_5906;
14747 tp->bufmgr_config.mbuf_high_water =
14748 DEFAULT_MB_HIGH_WATER_5906;
14749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014750
Michael Chanfdfec1722005-07-25 12:31:48 -070014751 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14752 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14753 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14754 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14755 tp->bufmgr_config.mbuf_high_water_jumbo =
14756 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14757 } else {
14758 tp->bufmgr_config.mbuf_read_dma_low_water =
14759 DEFAULT_MB_RDMA_LOW_WATER;
14760 tp->bufmgr_config.mbuf_mac_rx_low_water =
14761 DEFAULT_MB_MACRX_LOW_WATER;
14762 tp->bufmgr_config.mbuf_high_water =
14763 DEFAULT_MB_HIGH_WATER;
14764
14765 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14766 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14767 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14768 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14769 tp->bufmgr_config.mbuf_high_water_jumbo =
14770 DEFAULT_MB_HIGH_WATER_JUMBO;
14771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014772
14773 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14774 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14775}
14776
14777static char * __devinit tg3_phy_string(struct tg3 *tp)
14778{
Matt Carlson79eb6902010-02-17 15:17:03 +000014779 switch (tp->phy_id & TG3_PHY_ID_MASK) {
14780 case TG3_PHY_ID_BCM5400: return "5400";
14781 case TG3_PHY_ID_BCM5401: return "5401";
14782 case TG3_PHY_ID_BCM5411: return "5411";
14783 case TG3_PHY_ID_BCM5701: return "5701";
14784 case TG3_PHY_ID_BCM5703: return "5703";
14785 case TG3_PHY_ID_BCM5704: return "5704";
14786 case TG3_PHY_ID_BCM5705: return "5705";
14787 case TG3_PHY_ID_BCM5750: return "5750";
14788 case TG3_PHY_ID_BCM5752: return "5752";
14789 case TG3_PHY_ID_BCM5714: return "5714";
14790 case TG3_PHY_ID_BCM5780: return "5780";
14791 case TG3_PHY_ID_BCM5755: return "5755";
14792 case TG3_PHY_ID_BCM5787: return "5787";
14793 case TG3_PHY_ID_BCM5784: return "5784";
14794 case TG3_PHY_ID_BCM5756: return "5722/5756";
14795 case TG3_PHY_ID_BCM5906: return "5906";
14796 case TG3_PHY_ID_BCM5761: return "5761";
14797 case TG3_PHY_ID_BCM5718C: return "5718C";
14798 case TG3_PHY_ID_BCM5718S: return "5718S";
14799 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000014800 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000014801 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000014802 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014803 case 0: return "serdes";
14804 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014806}
14807
Michael Chanf9804dd2005-09-27 12:13:10 -070014808static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14809{
Joe Perches63c3a662011-04-26 08:12:10 +000014810 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014811 strcpy(str, "PCI Express");
14812 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000014813 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014814 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14815
14816 strcpy(str, "PCIX:");
14817
14818 if ((clock_ctrl == 7) ||
14819 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
14820 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
14821 strcat(str, "133MHz");
14822 else if (clock_ctrl == 0)
14823 strcat(str, "33MHz");
14824 else if (clock_ctrl == 2)
14825 strcat(str, "50MHz");
14826 else if (clock_ctrl == 4)
14827 strcat(str, "66MHz");
14828 else if (clock_ctrl == 6)
14829 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070014830 } else {
14831 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000014832 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070014833 strcat(str, "66MHz");
14834 else
14835 strcat(str, "33MHz");
14836 }
Joe Perches63c3a662011-04-26 08:12:10 +000014837 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070014838 strcat(str, ":32-bit");
14839 else
14840 strcat(str, ":64-bit");
14841 return str;
14842}
14843
Michael Chan8c2dc7e2005-12-19 16:26:02 -080014844static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014845{
14846 struct pci_dev *peer;
14847 unsigned int func, devnr = tp->pdev->devfn & ~7;
14848
14849 for (func = 0; func < 8; func++) {
14850 peer = pci_get_slot(tp->pdev->bus, devnr | func);
14851 if (peer && peer != tp->pdev)
14852 break;
14853 pci_dev_put(peer);
14854 }
Michael Chan16fe9d72005-12-13 21:09:54 -080014855 /* 5704 can be configured in single-port mode, set peer to
14856 * tp->pdev in that case.
14857 */
14858 if (!peer) {
14859 peer = tp->pdev;
14860 return peer;
14861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014862
14863 /*
14864 * We don't need to keep the refcount elevated; there's no way
14865 * to remove one half of this device without removing the other
14866 */
14867 pci_dev_put(peer);
14868
14869 return peer;
14870}
14871
David S. Miller15f98502005-05-18 22:49:26 -070014872static void __devinit tg3_init_coal(struct tg3 *tp)
14873{
14874 struct ethtool_coalesce *ec = &tp->coal;
14875
14876 memset(ec, 0, sizeof(*ec));
14877 ec->cmd = ETHTOOL_GCOALESCE;
14878 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
14879 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
14880 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
14881 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
14882 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
14883 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
14884 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
14885 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
14886 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
14887
14888 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
14889 HOSTCC_MODE_CLRTICK_TXBD)) {
14890 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
14891 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
14892 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
14893 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
14894 }
Michael Chand244c892005-07-05 14:42:33 -070014895
Joe Perches63c3a662011-04-26 08:12:10 +000014896 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070014897 ec->rx_coalesce_usecs_irq = 0;
14898 ec->tx_coalesce_usecs_irq = 0;
14899 ec->stats_block_coalesce_usecs = 0;
14900 }
David S. Miller15f98502005-05-18 22:49:26 -070014901}
14902
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080014903static const struct net_device_ops tg3_netdev_ops = {
14904 .ndo_open = tg3_open,
14905 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080014906 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000014907 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080014908 .ndo_validate_addr = eth_validate_addr,
14909 .ndo_set_multicast_list = tg3_set_rx_mode,
14910 .ndo_set_mac_address = tg3_set_mac_addr,
14911 .ndo_do_ioctl = tg3_ioctl,
14912 .ndo_tx_timeout = tg3_tx_timeout,
14913 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000014914 .ndo_fix_features = tg3_fix_features,
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000014915 .ndo_set_features = tg3_set_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080014916#ifdef CONFIG_NET_POLL_CONTROLLER
14917 .ndo_poll_controller = tg3_poll_controller,
14918#endif
14919};
14920
Linus Torvalds1da177e2005-04-16 15:20:36 -070014921static int __devinit tg3_init_one(struct pci_dev *pdev,
14922 const struct pci_device_id *ent)
14923{
Linus Torvalds1da177e2005-04-16 15:20:36 -070014924 struct net_device *dev;
14925 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000014926 int i, err, pm_cap;
14927 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070014928 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080014929 u64 dma_mask, persist_dma_mask;
Michał Mirosławdc668912011-04-07 03:35:07 +000014930 u32 hw_features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014931
Joe Perches05dbe002010-02-17 19:44:19 +000014932 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014933
14934 err = pci_enable_device(pdev);
14935 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014936 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014937 return err;
14938 }
14939
Linus Torvalds1da177e2005-04-16 15:20:36 -070014940 err = pci_request_regions(pdev, DRV_MODULE_NAME);
14941 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014942 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014943 goto err_out_disable_pdev;
14944 }
14945
14946 pci_set_master(pdev);
14947
14948 /* Find power-management capability. */
14949 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
14950 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000014951 dev_err(&pdev->dev,
14952 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014953 err = -EIO;
14954 goto err_out_free_res;
14955 }
14956
Matt Carlsonfe5f5782009-09-01 13:09:39 +000014957 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014958 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000014959 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070014960 err = -ENOMEM;
14961 goto err_out_free_res;
14962 }
14963
Linus Torvalds1da177e2005-04-16 15:20:36 -070014964 SET_NETDEV_DEV(dev, &pdev->dev);
14965
Linus Torvalds1da177e2005-04-16 15:20:36 -070014966 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014967
14968 tp = netdev_priv(dev);
14969 tp->pdev = pdev;
14970 tp->dev = dev;
14971 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014972 tp->rx_mode = TG3_DEF_RX_MODE;
14973 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070014974
Linus Torvalds1da177e2005-04-16 15:20:36 -070014975 if (tg3_debug > 0)
14976 tp->msg_enable = tg3_debug;
14977 else
14978 tp->msg_enable = TG3_DEF_MSG_ENABLE;
14979
14980 /* The word/byte swap controls here control register access byte
14981 * swapping. DMA data byte swapping is controlled in the GRC_MODE
14982 * setting below.
14983 */
14984 tp->misc_host_ctrl =
14985 MISC_HOST_CTRL_MASK_PCI_INT |
14986 MISC_HOST_CTRL_WORD_SWAP |
14987 MISC_HOST_CTRL_INDIR_ACCESS |
14988 MISC_HOST_CTRL_PCISTATE_RW;
14989
14990 /* The NONFRM (non-frame) byte/word swap controls take effect
14991 * on descriptor entries, anything which isn't packet data.
14992 *
14993 * The StrongARM chips on the board (one for tx, one for rx)
14994 * are running in big-endian mode.
14995 */
14996 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
14997 GRC_MODE_WSWAP_NONFRM_DATA);
14998#ifdef __BIG_ENDIAN
14999 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15000#endif
15001 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015002 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015003 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015004
Matt Carlsond5fe4882008-11-21 17:20:32 -080015005 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015006 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015007 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015008 err = -ENOMEM;
15009 goto err_out_free_dev;
15010 }
15011
Linus Torvalds1da177e2005-04-16 15:20:36 -070015012 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15013 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015015 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015016 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015017 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015018 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015019
15020 err = tg3_get_invariants(tp);
15021 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015022 dev_err(&pdev->dev,
15023 "Problem fetching invariants of chip, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015024 goto err_out_iounmap;
15025 }
15026
Michael Chan4a29cc22006-03-19 13:21:12 -080015027 /* The EPB bridge inside 5714, 5715, and 5780 and any
15028 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015029 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15030 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15031 * do DMA address check in tg3_start_xmit().
15032 */
Joe Perches63c3a662011-04-26 08:12:10 +000015033 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015034 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015035 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015036 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015037#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015038 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015039#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015040 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015041 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015042
15043 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015044 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015045 err = pci_set_dma_mask(pdev, dma_mask);
15046 if (!err) {
15047 dev->features |= NETIF_F_HIGHDMA;
15048 err = pci_set_consistent_dma_mask(pdev,
15049 persist_dma_mask);
15050 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015051 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15052 "DMA for consistent allocations\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015053 goto err_out_iounmap;
15054 }
15055 }
15056 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015057 if (err || dma_mask == DMA_BIT_MASK(32)) {
15058 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015059 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015060 dev_err(&pdev->dev,
15061 "No usable DMA configuration, aborting\n");
Michael Chan72f2afb2006-03-06 19:28:35 -080015062 goto err_out_iounmap;
15063 }
15064 }
15065
Michael Chanfdfec1722005-07-25 12:31:48 -070015066 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015067
Matt Carlson507399f2009-11-13 13:03:37 +000015068 /* Selectively allow TSO based on operating conditions */
Joe Perches63c3a662011-04-26 08:12:10 +000015069 if ((tg3_flag(tp, HW_TSO_1) ||
15070 tg3_flag(tp, HW_TSO_2) ||
15071 tg3_flag(tp, HW_TSO_3)) ||
15072 (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF)))
15073 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson507399f2009-11-13 13:03:37 +000015074 else {
Joe Perches63c3a662011-04-26 08:12:10 +000015075 tg3_flag_clear(tp, TSO_CAPABLE);
15076 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000015077 tp->fw_needed = NULL;
15078 }
15079
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015080 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
Matt Carlson9e9fd122009-01-19 16:57:45 -080015081 tp->fw_needed = FIRMWARE_TG3;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015082
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015083 /* TSO is on by default on chips that support hardware TSO.
15084 * Firmware TSO on older chips gives lower performance, so it
15085 * is off by default, but can be enabled using ethtool.
15086 */
Joe Perches63c3a662011-04-26 08:12:10 +000015087 if ((tg3_flag(tp, HW_TSO_1) ||
15088 tg3_flag(tp, HW_TSO_2) ||
15089 tg3_flag(tp, HW_TSO_3)) &&
Michał Mirosławdc668912011-04-07 03:35:07 +000015090 (dev->features & NETIF_F_IP_CSUM))
15091 hw_features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015092 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Michał Mirosławdc668912011-04-07 03:35:07 +000015093 if (dev->features & NETIF_F_IPV6_CSUM)
15094 hw_features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015095 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015096 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015097 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15098 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015099 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015100 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
15101 hw_features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015103
Michał Mirosławdc668912011-04-07 03:35:07 +000015104 dev->hw_features |= hw_features;
15105 dev->features |= hw_features;
15106 dev->vlan_features |= hw_features;
15107
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015108 /*
15109 * Add loopback capability only for a subset of devices that support
15110 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15111 * loopback for the remaining devices.
15112 */
15113 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15114 !tg3_flag(tp, CPMU_PRESENT))
15115 /* Add the loopback capability */
15116 dev->hw_features |= NETIF_F_LOOPBACK;
15117
Linus Torvalds1da177e2005-04-16 15:20:36 -070015118 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015119 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015120 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015121 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015122 tp->rx_pending = 63;
15123 }
15124
Linus Torvalds1da177e2005-04-16 15:20:36 -070015125 err = tg3_get_device_address(tp);
15126 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015127 dev_err(&pdev->dev,
15128 "Could not obtain valid ethernet address, aborting\n");
Matt Carlson026a6c22009-12-03 08:36:24 +000015129 goto err_out_iounmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015130 }
15131
Joe Perches63c3a662011-04-26 08:12:10 +000015132 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson63532392008-11-03 16:49:57 -080015133 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
Al Viro79ea13c2008-01-24 02:06:46 -080015134 if (!tp->aperegs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015135 dev_err(&pdev->dev,
15136 "Cannot map APE registers, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015137 err = -ENOMEM;
Matt Carlson026a6c22009-12-03 08:36:24 +000015138 goto err_out_iounmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015139 }
15140
15141 tg3_ape_lock_init(tp);
Matt Carlson7fd76442009-02-25 14:27:20 +000015142
Joe Perches63c3a662011-04-26 08:12:10 +000015143 if (tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000015144 tg3_read_dash_ver(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015145 }
15146
Matt Carlsonc88864d2007-11-12 21:07:01 -080015147 /*
15148 * Reset chip in case UNDI or EFI driver did not shutdown
15149 * DMA self test will enable WDMAC and we'll see (spurious)
15150 * pending DMA on the PCI bus at that point.
15151 */
15152 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15153 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15154 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15155 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15156 }
15157
15158 err = tg3_test_dma(tp);
15159 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015160 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015161 goto err_out_apeunmap;
15162 }
15163
Matt Carlson78f90dc2009-11-13 13:03:42 +000015164 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15165 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15166 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015167 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015168 struct tg3_napi *tnapi = &tp->napi[i];
15169
15170 tnapi->tp = tp;
15171 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15172
15173 tnapi->int_mbox = intmbx;
15174 if (i < 4)
15175 intmbx += 0x8;
15176 else
15177 intmbx += 0x4;
15178
15179 tnapi->consmbox = rcvmbx;
15180 tnapi->prodmbox = sndmbx;
15181
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015182 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015183 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015184 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015185 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015186
Joe Perches63c3a662011-04-26 08:12:10 +000015187 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015188 break;
15189
15190 /*
15191 * If we support MSIX, we'll be using RSS. If we're using
15192 * RSS, the first vector only handles link interrupts and the
15193 * remaining vectors handle rx and tx interrupts. Reuse the
15194 * mailbox values for the next iteration. The values we setup
15195 * above are still useful for the single vectored mode.
15196 */
15197 if (!i)
15198 continue;
15199
15200 rcvmbx += 0x8;
15201
15202 if (sndmbx & 0x4)
15203 sndmbx -= 0x4;
15204 else
15205 sndmbx += 0xc;
15206 }
15207
Matt Carlsonc88864d2007-11-12 21:07:01 -080015208 tg3_init_coal(tp);
15209
Michael Chanc49a1562006-12-17 17:07:29 -080015210 pci_set_drvdata(pdev, dev);
15211
Linus Torvalds1da177e2005-04-16 15:20:36 -070015212 err = register_netdev(dev);
15213 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015214 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015215 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015216 }
15217
Joe Perches05dbe002010-02-17 19:44:19 +000015218 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15219 tp->board_part_number,
15220 tp->pci_chip_rev_id,
15221 tg3_bus_string(tp, str),
15222 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015223
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015224 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015225 struct phy_device *phydev;
15226 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015227 netdev_info(dev,
15228 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015229 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015230 } else {
15231 char *ethtype;
15232
15233 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15234 ethtype = "10/100Base-TX";
15235 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15236 ethtype = "1000Base-SX";
15237 else
15238 ethtype = "10/100/1000Base-T";
15239
Matt Carlson5129c3a2010-04-05 10:19:23 +000015240 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015241 "(WireSpeed[%d], EEE[%d])\n",
15242 tg3_phy_string(tp), ethtype,
15243 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15244 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015245 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015246
Joe Perches05dbe002010-02-17 19:44:19 +000015247 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015248 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015249 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015250 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015251 tg3_flag(tp, ENABLE_ASF) != 0,
15252 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015253 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15254 tp->dma_rwctrl,
15255 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15256 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015257
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015258 pci_save_state(pdev);
15259
Linus Torvalds1da177e2005-04-16 15:20:36 -070015260 return 0;
15261
Matt Carlson0d3031d2007-10-10 18:02:43 -070015262err_out_apeunmap:
15263 if (tp->aperegs) {
15264 iounmap(tp->aperegs);
15265 tp->aperegs = NULL;
15266 }
15267
Linus Torvalds1da177e2005-04-16 15:20:36 -070015268err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015269 if (tp->regs) {
15270 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015271 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015273
15274err_out_free_dev:
15275 free_netdev(dev);
15276
15277err_out_free_res:
15278 pci_release_regions(pdev);
15279
15280err_out_disable_pdev:
15281 pci_disable_device(pdev);
15282 pci_set_drvdata(pdev, NULL);
15283 return err;
15284}
15285
15286static void __devexit tg3_remove_one(struct pci_dev *pdev)
15287{
15288 struct net_device *dev = pci_get_drvdata(pdev);
15289
15290 if (dev) {
15291 struct tg3 *tp = netdev_priv(dev);
15292
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015293 if (tp->fw)
15294 release_firmware(tp->fw);
15295
Tejun Heo23f333a2010-12-12 16:45:14 +010015296 cancel_work_sync(&tp->reset_task);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015297
Joe Perches63c3a662011-04-26 08:12:10 +000015298 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015299 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015300 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015301 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015302
Linus Torvalds1da177e2005-04-16 15:20:36 -070015303 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015304 if (tp->aperegs) {
15305 iounmap(tp->aperegs);
15306 tp->aperegs = NULL;
15307 }
Michael Chan68929142005-08-09 20:17:14 -070015308 if (tp->regs) {
15309 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015310 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015312 free_netdev(dev);
15313 pci_release_regions(pdev);
15314 pci_disable_device(pdev);
15315 pci_set_drvdata(pdev, NULL);
15316 }
15317}
15318
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015319#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015320static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015321{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015322 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015323 struct net_device *dev = pci_get_drvdata(pdev);
15324 struct tg3 *tp = netdev_priv(dev);
15325 int err;
15326
15327 if (!netif_running(dev))
15328 return 0;
15329
Tejun Heo23f333a2010-12-12 16:45:14 +010015330 flush_work_sync(&tp->reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015331 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015332 tg3_netif_stop(tp);
15333
15334 del_timer_sync(&tp->timer);
15335
David S. Millerf47c11e2005-06-24 20:18:35 -070015336 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015337 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015338 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015339
15340 netif_device_detach(dev);
15341
David S. Millerf47c11e2005-06-24 20:18:35 -070015342 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015343 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015344 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015345 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015346
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015347 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015348 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015349 int err2;
15350
David S. Millerf47c11e2005-06-24 20:18:35 -070015351 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015352
Joe Perches63c3a662011-04-26 08:12:10 +000015353 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015354 err2 = tg3_restart_hw(tp, 1);
15355 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015356 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015357
15358 tp->timer.expires = jiffies + tp->timer_offset;
15359 add_timer(&tp->timer);
15360
15361 netif_device_attach(dev);
15362 tg3_netif_start(tp);
15363
Michael Chanb9ec6c12006-07-25 16:37:27 -070015364out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015365 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015366
15367 if (!err2)
15368 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015369 }
15370
15371 return err;
15372}
15373
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015374static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015375{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015376 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015377 struct net_device *dev = pci_get_drvdata(pdev);
15378 struct tg3 *tp = netdev_priv(dev);
15379 int err;
15380
15381 if (!netif_running(dev))
15382 return 0;
15383
Linus Torvalds1da177e2005-04-16 15:20:36 -070015384 netif_device_attach(dev);
15385
David S. Millerf47c11e2005-06-24 20:18:35 -070015386 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015387
Joe Perches63c3a662011-04-26 08:12:10 +000015388 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015389 err = tg3_restart_hw(tp, 1);
15390 if (err)
15391 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015392
15393 tp->timer.expires = jiffies + tp->timer_offset;
15394 add_timer(&tp->timer);
15395
Linus Torvalds1da177e2005-04-16 15:20:36 -070015396 tg3_netif_start(tp);
15397
Michael Chanb9ec6c12006-07-25 16:37:27 -070015398out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015399 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015400
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015401 if (!err)
15402 tg3_phy_start(tp);
15403
Michael Chanb9ec6c12006-07-25 16:37:27 -070015404 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015405}
15406
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015407static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015408#define TG3_PM_OPS (&tg3_pm_ops)
15409
15410#else
15411
15412#define TG3_PM_OPS NULL
15413
15414#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015415
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015416/**
15417 * tg3_io_error_detected - called when PCI error is detected
15418 * @pdev: Pointer to PCI device
15419 * @state: The current pci connection state
15420 *
15421 * This function is called after a PCI bus error affecting
15422 * this device has been detected.
15423 */
15424static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15425 pci_channel_state_t state)
15426{
15427 struct net_device *netdev = pci_get_drvdata(pdev);
15428 struct tg3 *tp = netdev_priv(netdev);
15429 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15430
15431 netdev_info(netdev, "PCI I/O error detected\n");
15432
15433 rtnl_lock();
15434
15435 if (!netif_running(netdev))
15436 goto done;
15437
15438 tg3_phy_stop(tp);
15439
15440 tg3_netif_stop(tp);
15441
15442 del_timer_sync(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +000015443 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015444
15445 /* Want to make sure that the reset task doesn't run */
15446 cancel_work_sync(&tp->reset_task);
Joe Perches63c3a662011-04-26 08:12:10 +000015447 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
15448 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015449
15450 netif_device_detach(netdev);
15451
15452 /* Clean up software state, even if MMIO is blocked */
15453 tg3_full_lock(tp, 0);
15454 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15455 tg3_full_unlock(tp);
15456
15457done:
15458 if (state == pci_channel_io_perm_failure)
15459 err = PCI_ERS_RESULT_DISCONNECT;
15460 else
15461 pci_disable_device(pdev);
15462
15463 rtnl_unlock();
15464
15465 return err;
15466}
15467
15468/**
15469 * tg3_io_slot_reset - called after the pci bus has been reset.
15470 * @pdev: Pointer to PCI device
15471 *
15472 * Restart the card from scratch, as if from a cold-boot.
15473 * At this point, the card has exprienced a hard reset,
15474 * followed by fixups by BIOS, and has its config space
15475 * set up identically to what it was at cold boot.
15476 */
15477static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15478{
15479 struct net_device *netdev = pci_get_drvdata(pdev);
15480 struct tg3 *tp = netdev_priv(netdev);
15481 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15482 int err;
15483
15484 rtnl_lock();
15485
15486 if (pci_enable_device(pdev)) {
15487 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
15488 goto done;
15489 }
15490
15491 pci_set_master(pdev);
15492 pci_restore_state(pdev);
15493 pci_save_state(pdev);
15494
15495 if (!netif_running(netdev)) {
15496 rc = PCI_ERS_RESULT_RECOVERED;
15497 goto done;
15498 }
15499
15500 err = tg3_power_up(tp);
15501 if (err) {
15502 netdev_err(netdev, "Failed to restore register access.\n");
15503 goto done;
15504 }
15505
15506 rc = PCI_ERS_RESULT_RECOVERED;
15507
15508done:
15509 rtnl_unlock();
15510
15511 return rc;
15512}
15513
15514/**
15515 * tg3_io_resume - called when traffic can start flowing again.
15516 * @pdev: Pointer to PCI device
15517 *
15518 * This callback is called when the error recovery driver tells
15519 * us that its OK to resume normal operation.
15520 */
15521static void tg3_io_resume(struct pci_dev *pdev)
15522{
15523 struct net_device *netdev = pci_get_drvdata(pdev);
15524 struct tg3 *tp = netdev_priv(netdev);
15525 int err;
15526
15527 rtnl_lock();
15528
15529 if (!netif_running(netdev))
15530 goto done;
15531
15532 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000015533 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015534 err = tg3_restart_hw(tp, 1);
15535 tg3_full_unlock(tp);
15536 if (err) {
15537 netdev_err(netdev, "Cannot restart hardware after reset.\n");
15538 goto done;
15539 }
15540
15541 netif_device_attach(netdev);
15542
15543 tp->timer.expires = jiffies + tp->timer_offset;
15544 add_timer(&tp->timer);
15545
15546 tg3_netif_start(tp);
15547
15548 tg3_phy_start(tp);
15549
15550done:
15551 rtnl_unlock();
15552}
15553
15554static struct pci_error_handlers tg3_err_handler = {
15555 .error_detected = tg3_io_error_detected,
15556 .slot_reset = tg3_io_slot_reset,
15557 .resume = tg3_io_resume
15558};
15559
Linus Torvalds1da177e2005-04-16 15:20:36 -070015560static struct pci_driver tg3_driver = {
15561 .name = DRV_MODULE_NAME,
15562 .id_table = tg3_pci_tbl,
15563 .probe = tg3_init_one,
15564 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015565 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015566 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015567};
15568
15569static int __init tg3_init(void)
15570{
Jeff Garzik29917622006-08-19 17:48:59 -040015571 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015572}
15573
15574static void __exit tg3_cleanup(void)
15575{
15576 pci_unregister_driver(&tg3_driver);
15577}
15578
15579module_init(tg3_init);
15580module_exit(tg3_cleanup);