blob: dc3fbf61910b562bdaa2686e8bb3f861a4cc499b [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>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000029#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/ioport.h>
31#include <linux/pci.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/ethtool.h>
Matt Carlson3110f5f52010-12-06 08:28:50 +000036#include <linux/mdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mii.h>
Matt Carlson158d7ab2008-05-29 01:37:54 -070038#include <linux/phy.h>
Matt Carlsona9daf362008-05-25 23:49:44 -070039#include <linux/brcmphy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/if_vlan.h>
41#include <linux/ip.h>
42#include <linux/tcp.h>
43#include <linux/workqueue.h>
Michael Chan61487482005-09-05 17:53:19 -070044#include <linux/prefetch.h>
Tobias Klauserf9a5f7d2005-10-29 15:09:26 +020045#include <linux/dma-mapping.h>
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080046#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include <net/checksum.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030049#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/system.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000052#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/byteorder.h>
Javier Martinez Canillas27fd9de2011-03-26 16:42:31 +000054#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
David S. Miller49b6e95f2007-03-29 01:38:42 -070056#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/idprom.h>
David S. Miller49b6e95f2007-03-29 01:38:42 -070058#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
60
Matt Carlson63532392008-11-03 16:49:57 -080061#define BAR_0 0
62#define BAR_2 2
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include "tg3.h"
65
Joe Perches63c3a662011-04-26 08:12:10 +000066/* Functions & macros to verify TG3_FLAGS types */
67
68static inline int _tg3_flag(enum TG3_FLAGS flag, unsigned long *bits)
69{
70 return test_bit(flag, bits);
71}
72
73static inline void _tg3_flag_set(enum TG3_FLAGS flag, unsigned long *bits)
74{
75 set_bit(flag, bits);
76}
77
78static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
79{
80 clear_bit(flag, bits);
81}
82
83#define tg3_flag(tp, flag) \
84 _tg3_flag(TG3_FLAG_##flag, (tp)->tg3_flags)
85#define tg3_flag_set(tp, flag) \
86 _tg3_flag_set(TG3_FLAG_##flag, (tp)->tg3_flags)
87#define tg3_flag_clear(tp, flag) \
88 _tg3_flag_clear(TG3_FLAG_##flag, (tp)->tg3_flags)
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define DRV_MODULE_NAME "tg3"
Matt Carlson6867c842010-07-11 09:31:44 +000091#define TG3_MAJ_NUM 3
Matt Carlson43a5f002011-05-19 12:12:56 +000092#define TG3_MIN_NUM 119
Matt Carlson6867c842010-07-11 09:31:44 +000093#define DRV_MODULE_VERSION \
94 __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
Matt Carlson43a5f002011-05-19 12:12:56 +000095#define DRV_MODULE_RELDATE "May 18, 2011"
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#define TG3_DEF_MAC_MODE 0
98#define TG3_DEF_RX_MODE 0
99#define TG3_DEF_TX_MODE 0
100#define TG3_DEF_MSG_ENABLE \
101 (NETIF_MSG_DRV | \
102 NETIF_MSG_PROBE | \
103 NETIF_MSG_LINK | \
104 NETIF_MSG_TIMER | \
105 NETIF_MSG_IFDOWN | \
106 NETIF_MSG_IFUP | \
107 NETIF_MSG_RX_ERR | \
108 NETIF_MSG_TX_ERR)
109
Matt Carlson520b2752011-06-13 13:39:02 +0000110#define TG3_GRC_LCLCTL_PWRSW_DELAY 100
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* length of time before we decide the hardware is borked,
113 * and dev->tx_timeout() should be called to fix the problem
114 */
Joe Perches63c3a662011-04-26 08:12:10 +0000115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define TG3_TX_TIMEOUT (5 * HZ)
117
118/* hardware minimum and maximum for a single frame's data payload */
119#define TG3_MIN_MTU 60
120#define TG3_MAX_MTU(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000121 (tg3_flag(tp, JUMBO_CAPABLE) ? 9000 : 1500)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/* These numbers seem to be hard coded in the NIC firmware somehow.
124 * You can't change the ring sizes, but you can change where you place
125 * them in the NIC onboard memory.
126 */
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000127#define TG3_RX_STD_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000128 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000129 TG3_RX_STD_MAX_SIZE_5717 : TG3_RX_STD_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define TG3_DEF_RX_RING_PENDING 200
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000131#define TG3_RX_JMB_RING_SIZE(tp) \
Joe Perches63c3a662011-04-26 08:12:10 +0000132 (tg3_flag(tp, LRG_PROD_RING_CAP) ? \
Matt Carlsonde9f5232011-04-05 14:22:43 +0000133 TG3_RX_JMB_MAX_SIZE_5717 : TG3_RX_JMB_MAX_SIZE_5700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#define TG3_DEF_RX_JUMBO_RING_PENDING 100
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000135#define TG3_RSS_INDIR_TBL_SIZE 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/* Do not place this n-ring entries value into the tp struct itself,
138 * we really want to expose these constants to GCC so that modulo et
139 * al. operations are done with shifts and masks instead of with
140 * hw multiply/modulo instructions. Another solution would be to
141 * replace things like '% foo' with '& (foo - 1)'.
142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144#define TG3_TX_RING_SIZE 512
145#define TG3_DEF_TX_RING_PENDING (TG3_TX_RING_SIZE - 1)
146
Matt Carlson2c49a442010-09-30 10:34:35 +0000147#define TG3_RX_STD_RING_BYTES(tp) \
148 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_RING_SIZE(tp))
149#define TG3_RX_JMB_RING_BYTES(tp) \
150 (sizeof(struct tg3_ext_rx_buffer_desc) * TG3_RX_JMB_RING_SIZE(tp))
151#define TG3_RX_RCB_RING_BYTES(tp) \
Matt Carlson7cb32cf2010-09-30 10:34:36 +0000152 (sizeof(struct tg3_rx_buffer_desc) * (tp->rx_ret_ring_mask + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
154 TG3_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
156
Matt Carlson287be122009-08-28 13:58:46 +0000157#define TG3_DMA_BYTE_ENAB 64
158
159#define TG3_RX_STD_DMA_SZ 1536
160#define TG3_RX_JMB_DMA_SZ 9046
161
162#define TG3_RX_DMA_TO_MAP_SZ(x) ((x) + TG3_DMA_BYTE_ENAB)
163
164#define TG3_RX_STD_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_STD_DMA_SZ)
165#define TG3_RX_JMB_MAP_SZ TG3_RX_DMA_TO_MAP_SZ(TG3_RX_JMB_DMA_SZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Matt Carlson2c49a442010-09-30 10:34:35 +0000167#define TG3_RX_STD_BUFF_RING_SIZE(tp) \
168 (sizeof(struct ring_info) * TG3_RX_STD_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000169
Matt Carlson2c49a442010-09-30 10:34:35 +0000170#define TG3_RX_JMB_BUFF_RING_SIZE(tp) \
171 (sizeof(struct ring_info) * TG3_RX_JMB_RING_SIZE(tp))
Matt Carlson2b2cdb62009-11-13 13:03:48 +0000172
Matt Carlsond2757fc2010-04-12 06:58:27 +0000173/* Due to a hardware bug, the 5701 can only DMA to memory addresses
174 * that are at least dword aligned when used in PCIX mode. The driver
175 * works around this bug by double copying the packet. This workaround
176 * is built into the normal double copy length check for efficiency.
177 *
178 * However, the double copy is only necessary on those architectures
179 * where unaligned memory accesses are inefficient. For those architectures
180 * where unaligned memory accesses incur little penalty, we can reintegrate
181 * the 5701 in the normal rx path. Doing so saves a device structure
182 * dereference by hardcoding the double copy threshold in place.
183 */
184#define TG3_RX_COPY_THRESHOLD 256
185#if NET_IP_ALIGN == 0 || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
186 #define TG3_RX_COPY_THRESH(tp) TG3_RX_COPY_THRESHOLD
187#else
188 #define TG3_RX_COPY_THRESH(tp) ((tp)->rx_copy_thresh)
189#endif
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/* minimum number of free TX descriptors required to wake up TX process */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000192#define TG3_TX_WAKEUP_THRESH(tnapi) ((tnapi)->tx_pending / 4)
Matt Carlsone31aa982011-07-27 14:20:53 +0000193#define TG3_TX_BD_DMA_MAX 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Matt Carlsonad829262008-11-21 17:16:16 -0800195#define TG3_RAW_IP_ALIGN 2
196
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000197#define TG3_FW_UPDATE_TIMEOUT_SEC 5
198
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800199#define FIRMWARE_TG3 "tigon/tg3.bin"
200#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
201#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000204 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
207MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
208MODULE_LICENSE("GPL");
209MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800210MODULE_FIRMWARE(FIRMWARE_TG3);
211MODULE_FIRMWARE(FIRMWARE_TG3TSO);
212MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
215module_param(tg3_debug, int, 0);
216MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
217
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000218static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700219 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
220 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
221 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
222 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
223 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
224 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
225 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
226 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
227 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
289 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000291 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700292 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
293 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
294 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
295 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
296 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
297 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
298 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000299 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700300 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
303MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
304
Andreas Mohr50da8592006-08-14 23:54:30 -0700305static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000307} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 { "rx_octets" },
309 { "rx_fragments" },
310 { "rx_ucast_packets" },
311 { "rx_mcast_packets" },
312 { "rx_bcast_packets" },
313 { "rx_fcs_errors" },
314 { "rx_align_errors" },
315 { "rx_xon_pause_rcvd" },
316 { "rx_xoff_pause_rcvd" },
317 { "rx_mac_ctrl_rcvd" },
318 { "rx_xoff_entered" },
319 { "rx_frame_too_long_errors" },
320 { "rx_jabbers" },
321 { "rx_undersize_packets" },
322 { "rx_in_length_errors" },
323 { "rx_out_length_errors" },
324 { "rx_64_or_less_octet_packets" },
325 { "rx_65_to_127_octet_packets" },
326 { "rx_128_to_255_octet_packets" },
327 { "rx_256_to_511_octet_packets" },
328 { "rx_512_to_1023_octet_packets" },
329 { "rx_1024_to_1522_octet_packets" },
330 { "rx_1523_to_2047_octet_packets" },
331 { "rx_2048_to_4095_octet_packets" },
332 { "rx_4096_to_8191_octet_packets" },
333 { "rx_8192_to_9022_octet_packets" },
334
335 { "tx_octets" },
336 { "tx_collisions" },
337
338 { "tx_xon_sent" },
339 { "tx_xoff_sent" },
340 { "tx_flow_control" },
341 { "tx_mac_errors" },
342 { "tx_single_collisions" },
343 { "tx_mult_collisions" },
344 { "tx_deferred" },
345 { "tx_excessive_collisions" },
346 { "tx_late_collisions" },
347 { "tx_collide_2times" },
348 { "tx_collide_3times" },
349 { "tx_collide_4times" },
350 { "tx_collide_5times" },
351 { "tx_collide_6times" },
352 { "tx_collide_7times" },
353 { "tx_collide_8times" },
354 { "tx_collide_9times" },
355 { "tx_collide_10times" },
356 { "tx_collide_11times" },
357 { "tx_collide_12times" },
358 { "tx_collide_13times" },
359 { "tx_collide_14times" },
360 { "tx_collide_15times" },
361 { "tx_ucast_packets" },
362 { "tx_mcast_packets" },
363 { "tx_bcast_packets" },
364 { "tx_carrier_sense_errors" },
365 { "tx_discards" },
366 { "tx_errors" },
367
368 { "dma_writeq_full" },
369 { "dma_write_prioq_full" },
370 { "rxbds_empty" },
371 { "rx_discards" },
372 { "rx_errors" },
373 { "rx_threshold_hit" },
374
375 { "dma_readq_full" },
376 { "dma_read_prioq_full" },
377 { "tx_comp_queue_full" },
378
379 { "ring_set_send_prod_index" },
380 { "ring_status_update" },
381 { "nic_irqs" },
382 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000383 { "nic_tx_threshold_hit" },
384
385 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
Matt Carlson48fa55a2011-04-13 11:05:06 +0000388#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
389
390
Andreas Mohr50da8592006-08-14 23:54:30 -0700391static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700392 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000393} ethtool_test_keys[] = {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700394 { "nvram test (online) " },
395 { "link test (online) " },
396 { "register test (offline)" },
397 { "memory test (offline)" },
398 { "loopback test (offline)" },
399 { "interrupt test (offline)" },
400};
401
Matt Carlson48fa55a2011-04-13 11:05:06 +0000402#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
403
404
Michael Chanb401e9e2005-12-19 16:27:04 -0800405static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
406{
407 writel(val, tp->regs + off);
408}
409
410static u32 tg3_read32(struct tg3 *tp, u32 off)
411{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000412 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800413}
414
Matt Carlson0d3031d2007-10-10 18:02:43 -0700415static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
416{
417 writel(val, tp->aperegs + off);
418}
419
420static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
421{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000422 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700423}
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
426{
Michael Chan68929142005-08-09 20:17:14 -0700427 unsigned long flags;
428
429 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700430 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
431 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700432 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700433}
434
435static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
436{
437 writel(val, tp->regs + off);
438 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Michael Chan68929142005-08-09 20:17:14 -0700441static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
442{
443 unsigned long flags;
444 u32 val;
445
446 spin_lock_irqsave(&tp->indirect_lock, flags);
447 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
448 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
449 spin_unlock_irqrestore(&tp->indirect_lock, flags);
450 return val;
451}
452
453static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
454{
455 unsigned long flags;
456
457 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
458 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
459 TG3_64BIT_REG_LOW, val);
460 return;
461 }
Matt Carlson66711e62009-11-13 13:03:49 +0000462 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700463 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
464 TG3_64BIT_REG_LOW, val);
465 return;
466 }
467
468 spin_lock_irqsave(&tp->indirect_lock, flags);
469 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
470 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
471 spin_unlock_irqrestore(&tp->indirect_lock, flags);
472
473 /* In indirect mode when disabling interrupts, we also need
474 * to clear the interrupt bit in the GRC local ctrl register.
475 */
476 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
477 (val == 0x1)) {
478 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
479 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
480 }
481}
482
483static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
484{
485 unsigned long flags;
486 u32 val;
487
488 spin_lock_irqsave(&tp->indirect_lock, flags);
489 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
490 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
491 spin_unlock_irqrestore(&tp->indirect_lock, flags);
492 return val;
493}
494
Michael Chanb401e9e2005-12-19 16:27:04 -0800495/* usec_wait specifies the wait time in usec when writing to certain registers
496 * where it is unsafe to read back the register without some delay.
497 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
498 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
499 */
500static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Joe Perches63c3a662011-04-26 08:12:10 +0000502 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800503 /* Non-posted methods */
504 tp->write32(tp, off, val);
505 else {
506 /* Posted method */
507 tg3_write32(tp, off, val);
508 if (usec_wait)
509 udelay(usec_wait);
510 tp->read32(tp, off);
511 }
512 /* Wait again after the read for the posted method to guarantee that
513 * the wait time is met.
514 */
515 if (usec_wait)
516 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Michael Chan09ee9292005-08-09 20:17:00 -0700519static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
520{
521 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000522 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700523 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700524}
525
Michael Chan20094932005-08-09 20:16:32 -0700526static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 void __iomem *mbox = tp->regs + off;
529 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000530 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000532 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 readl(mbox);
534}
535
Michael Chanb5d37722006-09-27 16:06:21 -0700536static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
537{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000538 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700539}
540
541static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
542{
543 writel(val, tp->regs + off + GRCMBOX_BASE);
544}
545
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000546#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700547#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000548#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
549#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
550#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700551
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000552#define tw32(reg, val) tp->write32(tp, reg, val)
553#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
554#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
555#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
558{
Michael Chan68929142005-08-09 20:17:14 -0700559 unsigned long flags;
560
Matt Carlson6ff6f812011-05-19 12:12:54 +0000561 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700562 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
563 return;
564
Michael Chan68929142005-08-09 20:17:14 -0700565 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000566 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700567 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
568 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Michael Chanbbadf502006-04-06 21:46:34 -0700570 /* Always leave this as zero. */
571 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
572 } else {
573 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
574 tw32_f(TG3PCI_MEM_WIN_DATA, val);
575
576 /* Always leave this as zero. */
577 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
578 }
Michael Chan68929142005-08-09 20:17:14 -0700579 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
583{
Michael Chan68929142005-08-09 20:17:14 -0700584 unsigned long flags;
585
Matt Carlson6ff6f812011-05-19 12:12:54 +0000586 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700587 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
588 *val = 0;
589 return;
590 }
591
Michael Chan68929142005-08-09 20:17:14 -0700592 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000593 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700594 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
595 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Michael Chanbbadf502006-04-06 21:46:34 -0700597 /* Always leave this as zero. */
598 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
599 } else {
600 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
601 *val = tr32(TG3PCI_MEM_WIN_DATA);
602
603 /* Always leave this as zero. */
604 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
605 }
Michael Chan68929142005-08-09 20:17:14 -0700606 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Matt Carlson0d3031d2007-10-10 18:02:43 -0700609static void tg3_ape_lock_init(struct tg3 *tp)
610{
611 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000612 u32 regbase, bit;
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000613
614 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
615 regbase = TG3_APE_LOCK_GRANT;
616 else
617 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700618
619 /* Make sure the driver hasn't any stale locks. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000620 for (i = 0; i < 8; i++) {
621 if (i == TG3_APE_LOCK_GPIO)
622 continue;
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000623 tg3_ape_write32(tp, regbase + 4 * i, APE_LOCK_GRANT_DRIVER);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000624 }
625
626 /* Clear the correct bit of the GPIO lock too. */
627 if (!tp->pci_fn)
628 bit = APE_LOCK_GRANT_DRIVER;
629 else
630 bit = 1 << tp->pci_fn;
631
632 tg3_ape_write32(tp, regbase + 4 * TG3_APE_LOCK_GPIO, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700633}
634
635static int tg3_ape_lock(struct tg3 *tp, int locknum)
636{
637 int i, off;
638 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000639 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700640
Joe Perches63c3a662011-04-26 08:12:10 +0000641 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700642 return 0;
643
644 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000645 case TG3_APE_LOCK_GPIO:
646 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
647 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000648 case TG3_APE_LOCK_GRC:
649 case TG3_APE_LOCK_MEM:
650 break;
651 default:
652 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700653 }
654
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000655 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
656 req = TG3_APE_LOCK_REQ;
657 gnt = TG3_APE_LOCK_GRANT;
658 } else {
659 req = TG3_APE_PER_LOCK_REQ;
660 gnt = TG3_APE_PER_LOCK_GRANT;
661 }
662
Matt Carlson0d3031d2007-10-10 18:02:43 -0700663 off = 4 * locknum;
664
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000665 if (locknum != TG3_APE_LOCK_GPIO || !tp->pci_fn)
666 bit = APE_LOCK_REQ_DRIVER;
667 else
668 bit = 1 << tp->pci_fn;
669
670 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700671
672 /* Wait for up to 1 millisecond to acquire lock. */
673 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000674 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000675 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700676 break;
677 udelay(10);
678 }
679
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000680 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700681 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000682 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700683 ret = -EBUSY;
684 }
685
686 return ret;
687}
688
689static void tg3_ape_unlock(struct tg3 *tp, int locknum)
690{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000691 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700692
Joe Perches63c3a662011-04-26 08:12:10 +0000693 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700694 return;
695
696 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000697 case TG3_APE_LOCK_GPIO:
698 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
699 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000700 case TG3_APE_LOCK_GRC:
701 case TG3_APE_LOCK_MEM:
702 break;
703 default:
704 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700705 }
706
Matt Carlsonf92d9dc2010-06-05 17:24:30 +0000707 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
708 gnt = TG3_APE_LOCK_GRANT;
709 else
710 gnt = TG3_APE_PER_LOCK_GRANT;
711
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000712 if (locknum != TG3_APE_LOCK_GPIO || !tp->pci_fn)
713 bit = APE_LOCK_GRANT_DRIVER;
714 else
715 bit = 1 << tp->pci_fn;
716
717 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700718}
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720static void tg3_disable_ints(struct tg3 *tp)
721{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000722 int i;
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 tw32(TG3PCI_MISC_HOST_CTRL,
725 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000726 for (i = 0; i < tp->irq_max; i++)
727 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730static void tg3_enable_ints(struct tg3 *tp)
731{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000732 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000733
Michael Chanbbe832c2005-06-24 20:20:04 -0700734 tp->irq_sync = 0;
735 wmb();
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 tw32(TG3PCI_MISC_HOST_CTRL,
738 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000739
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000740 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000741 for (i = 0; i < tp->irq_cnt; i++) {
742 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000743
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000744 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000745 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000746 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
747
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000748 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000749 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000750
751 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000752 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000753 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
754 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
755 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000756 tw32(HOSTCC_MODE, tp->coal_now);
757
758 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Matt Carlson17375d22009-08-28 14:02:18 +0000761static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700762{
Matt Carlson17375d22009-08-28 14:02:18 +0000763 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000764 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700765 unsigned int work_exists = 0;
766
767 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000768 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700769 if (sblk->status & SD_STATUS_LINK_CHG)
770 work_exists = 1;
771 }
772 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000773 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000774 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700775 work_exists = 1;
776
777 return work_exists;
778}
779
Matt Carlson17375d22009-08-28 14:02:18 +0000780/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700781 * similar to tg3_enable_ints, but it accurately determines whether there
782 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400783 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 */
Matt Carlson17375d22009-08-28 14:02:18 +0000785static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Matt Carlson17375d22009-08-28 14:02:18 +0000787 struct tg3 *tp = tnapi->tp;
788
Matt Carlson898a56f2009-08-28 14:02:40 +0000789 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 mmiowb();
791
David S. Millerfac9b832005-05-18 22:46:34 -0700792 /* When doing tagged status, this work check is unnecessary.
793 * The last_tag we write above tells the chip which piece of
794 * work we've completed.
795 */
Joe Perches63c3a662011-04-26 08:12:10 +0000796 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700797 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000798 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801static void tg3_switch_clocks(struct tg3 *tp)
802{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000803 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 u32 orig_clock_ctrl;
805
Joe Perches63c3a662011-04-26 08:12:10 +0000806 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700807 return;
808
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000809 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 orig_clock_ctrl = clock_ctrl;
812 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
813 CLOCK_CTRL_CLKRUN_OENABLE |
814 0x1f);
815 tp->pci_clock_ctrl = clock_ctrl;
816
Joe Perches63c3a662011-04-26 08:12:10 +0000817 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800819 tw32_wait_f(TG3PCI_CLOCK_CTRL,
820 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800823 tw32_wait_f(TG3PCI_CLOCK_CTRL,
824 clock_ctrl |
825 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
826 40);
827 tw32_wait_f(TG3PCI_CLOCK_CTRL,
828 clock_ctrl | (CLOCK_CTRL_ALTCLK),
829 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800831 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834#define PHY_BUSY_LOOPS 5000
835
836static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
837{
838 u32 frame_val;
839 unsigned int loops;
840 int ret;
841
842 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
843 tw32_f(MAC_MI_MODE,
844 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
845 udelay(80);
846 }
847
848 *val = 0x0;
849
Matt Carlson882e9792009-09-01 13:21:36 +0000850 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 MI_COM_PHY_ADDR_MASK);
852 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
853 MI_COM_REG_ADDR_MASK);
854 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 tw32_f(MAC_MI_COM, frame_val);
857
858 loops = PHY_BUSY_LOOPS;
859 while (loops != 0) {
860 udelay(10);
861 frame_val = tr32(MAC_MI_COM);
862
863 if ((frame_val & MI_COM_BUSY) == 0) {
864 udelay(5);
865 frame_val = tr32(MAC_MI_COM);
866 break;
867 }
868 loops -= 1;
869 }
870
871 ret = -EBUSY;
872 if (loops != 0) {
873 *val = frame_val & MI_COM_DATA_MASK;
874 ret = 0;
875 }
876
877 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
878 tw32_f(MAC_MI_MODE, tp->mi_mode);
879 udelay(80);
880 }
881
882 return ret;
883}
884
885static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
886{
887 u32 frame_val;
888 unsigned int loops;
889 int ret;
890
Matt Carlsonf07e9af2010-08-02 11:26:07 +0000891 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +0000892 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -0700893 return 0;
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
896 tw32_f(MAC_MI_MODE,
897 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
898 udelay(80);
899 }
900
Matt Carlson882e9792009-09-01 13:21:36 +0000901 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 MI_COM_PHY_ADDR_MASK);
903 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
904 MI_COM_REG_ADDR_MASK);
905 frame_val |= (val & MI_COM_DATA_MASK);
906 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 tw32_f(MAC_MI_COM, frame_val);
909
910 loops = PHY_BUSY_LOOPS;
911 while (loops != 0) {
912 udelay(10);
913 frame_val = tr32(MAC_MI_COM);
914 if ((frame_val & MI_COM_BUSY) == 0) {
915 udelay(5);
916 frame_val = tr32(MAC_MI_COM);
917 break;
918 }
919 loops -= 1;
920 }
921
922 ret = -EBUSY;
923 if (loops != 0)
924 ret = 0;
925
926 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
927 tw32_f(MAC_MI_MODE, tp->mi_mode);
928 udelay(80);
929 }
930
931 return ret;
932}
933
Matt Carlsonb0988c12011-04-20 07:57:39 +0000934static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
935{
936 int err;
937
938 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
939 if (err)
940 goto done;
941
942 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
943 if (err)
944 goto done;
945
946 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
947 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
948 if (err)
949 goto done;
950
951 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
952
953done:
954 return err;
955}
956
957static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
958{
959 int err;
960
961 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
962 if (err)
963 goto done;
964
965 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
966 if (err)
967 goto done;
968
969 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
970 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
971 if (err)
972 goto done;
973
974 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
975
976done:
977 return err;
978}
979
980static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
981{
982 int err;
983
984 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
985 if (!err)
986 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
987
988 return err;
989}
990
991static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
992{
993 int err;
994
995 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
996 if (!err)
997 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
998
999 return err;
1000}
1001
Matt Carlson15ee95c2011-04-20 07:57:40 +00001002static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1003{
1004 int err;
1005
1006 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1007 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1008 MII_TG3_AUXCTL_SHDWSEL_MISC);
1009 if (!err)
1010 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1011
1012 return err;
1013}
1014
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001015static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1016{
1017 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1018 set |= MII_TG3_AUXCTL_MISC_WREN;
1019
1020 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1021}
1022
Matt Carlson1d36ba42011-04-20 07:57:42 +00001023#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
1024 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1025 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
1026 MII_TG3_AUXCTL_ACTL_TX_6DB)
1027
1028#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
1029 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1030 MII_TG3_AUXCTL_ACTL_TX_6DB);
1031
Matt Carlson95e28692008-05-25 23:44:14 -07001032static int tg3_bmcr_reset(struct tg3 *tp)
1033{
1034 u32 phy_control;
1035 int limit, err;
1036
1037 /* OK, reset it, and poll the BMCR_RESET bit until it
1038 * clears or we time out.
1039 */
1040 phy_control = BMCR_RESET;
1041 err = tg3_writephy(tp, MII_BMCR, phy_control);
1042 if (err != 0)
1043 return -EBUSY;
1044
1045 limit = 5000;
1046 while (limit--) {
1047 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1048 if (err != 0)
1049 return -EBUSY;
1050
1051 if ((phy_control & BMCR_RESET) == 0) {
1052 udelay(40);
1053 break;
1054 }
1055 udelay(10);
1056 }
Roel Kluind4675b52009-02-12 16:33:27 -08001057 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001058 return -EBUSY;
1059
1060 return 0;
1061}
1062
Matt Carlson158d7ab2008-05-29 01:37:54 -07001063static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1064{
Francois Romieu3d165432009-01-19 16:56:50 -08001065 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001066 u32 val;
1067
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001068 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001069
1070 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001071 val = -EIO;
1072
1073 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001074
1075 return val;
1076}
1077
1078static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1079{
Francois Romieu3d165432009-01-19 16:56:50 -08001080 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001081 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001082
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001083 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001084
1085 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001086 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001087
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001088 spin_unlock_bh(&tp->lock);
1089
1090 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001091}
1092
1093static int tg3_mdio_reset(struct mii_bus *bp)
1094{
1095 return 0;
1096}
1097
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001098static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001099{
1100 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001101 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001102
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001103 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001104 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001105 case PHY_ID_BCM50610:
1106 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001107 val = MAC_PHYCFG2_50610_LED_MODES;
1108 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001109 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001110 val = MAC_PHYCFG2_AC131_LED_MODES;
1111 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001112 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001113 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1114 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001115 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001116 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1117 break;
1118 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001119 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001120 }
1121
1122 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1123 tw32(MAC_PHYCFG2, val);
1124
1125 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001126 val &= ~(MAC_PHYCFG1_RGMII_INT |
1127 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1128 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001129 tw32(MAC_PHYCFG1, val);
1130
1131 return;
1132 }
1133
Joe Perches63c3a662011-04-26 08:12:10 +00001134 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001135 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1136 MAC_PHYCFG2_FMODE_MASK_MASK |
1137 MAC_PHYCFG2_GMODE_MASK_MASK |
1138 MAC_PHYCFG2_ACT_MASK_MASK |
1139 MAC_PHYCFG2_QUAL_MASK_MASK |
1140 MAC_PHYCFG2_INBAND_ENABLE;
1141
1142 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001143
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001144 val = tr32(MAC_PHYCFG1);
1145 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1146 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001147 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1148 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001149 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001150 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001151 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1152 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001153 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1154 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1155 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001156
Matt Carlsona9daf362008-05-25 23:49:44 -07001157 val = tr32(MAC_EXT_RGMII_MODE);
1158 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1159 MAC_RGMII_MODE_RX_QUALITY |
1160 MAC_RGMII_MODE_RX_ACTIVITY |
1161 MAC_RGMII_MODE_RX_ENG_DET |
1162 MAC_RGMII_MODE_TX_ENABLE |
1163 MAC_RGMII_MODE_TX_LOWPWR |
1164 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001165 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1166 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001167 val |= MAC_RGMII_MODE_RX_INT_B |
1168 MAC_RGMII_MODE_RX_QUALITY |
1169 MAC_RGMII_MODE_RX_ACTIVITY |
1170 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001171 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001172 val |= MAC_RGMII_MODE_TX_ENABLE |
1173 MAC_RGMII_MODE_TX_LOWPWR |
1174 MAC_RGMII_MODE_TX_RESET;
1175 }
1176 tw32(MAC_EXT_RGMII_MODE, val);
1177}
1178
Matt Carlson158d7ab2008-05-29 01:37:54 -07001179static void tg3_mdio_start(struct tg3 *tp)
1180{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001181 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1182 tw32_f(MAC_MI_MODE, tp->mi_mode);
1183 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001184
Joe Perches63c3a662011-04-26 08:12:10 +00001185 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001186 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1187 tg3_mdio_config_5785(tp);
1188}
1189
1190static int tg3_mdio_init(struct tg3 *tp)
1191{
1192 int i;
1193 u32 reg;
1194 struct phy_device *phydev;
1195
Joe Perches63c3a662011-04-26 08:12:10 +00001196 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001197 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001198
Matt Carlson69f11c92011-07-13 09:27:30 +00001199 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001200
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001201 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1202 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1203 else
1204 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1205 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001206 if (is_serdes)
1207 tp->phy_addr += 7;
1208 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001209 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001210
Matt Carlson158d7ab2008-05-29 01:37:54 -07001211 tg3_mdio_start(tp);
1212
Joe Perches63c3a662011-04-26 08:12:10 +00001213 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001214 return 0;
1215
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001216 tp->mdio_bus = mdiobus_alloc();
1217 if (tp->mdio_bus == NULL)
1218 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001219
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001220 tp->mdio_bus->name = "tg3 mdio bus";
1221 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001222 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001223 tp->mdio_bus->priv = tp;
1224 tp->mdio_bus->parent = &tp->pdev->dev;
1225 tp->mdio_bus->read = &tg3_mdio_read;
1226 tp->mdio_bus->write = &tg3_mdio_write;
1227 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001228 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001229 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001230
1231 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001232 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001233
1234 /* The bus registration will look for all the PHYs on the mdio bus.
1235 * Unfortunately, it does not ensure the PHY is powered up before
1236 * accessing the PHY ID registers. A chip reset is the
1237 * quickest way to bring the device back to an operational state..
1238 */
1239 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1240 tg3_bmcr_reset(tp);
1241
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001242 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001243 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001244 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001245 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001246 return i;
1247 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001248
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001249 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001250
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001251 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001252 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001253 mdiobus_unregister(tp->mdio_bus);
1254 mdiobus_free(tp->mdio_bus);
1255 return -ENODEV;
1256 }
1257
1258 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001259 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001260 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001261 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001262 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001263 case PHY_ID_BCM50610:
1264 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001265 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001266 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001267 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001268 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001269 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001270 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001271 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001272 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001273 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001274 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001275 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001276 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001277 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001278 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001279 case PHY_ID_RTL8201E:
1280 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001281 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e092009-11-02 14:31:11 +00001282 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001283 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001284 break;
1285 }
1286
Joe Perches63c3a662011-04-26 08:12:10 +00001287 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001288
1289 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1290 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001291
1292 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001293}
1294
1295static void tg3_mdio_fini(struct tg3 *tp)
1296{
Joe Perches63c3a662011-04-26 08:12:10 +00001297 if (tg3_flag(tp, MDIOBUS_INITED)) {
1298 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001299 mdiobus_unregister(tp->mdio_bus);
1300 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001301 }
1302}
1303
Matt Carlson95e28692008-05-25 23:44:14 -07001304/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001305static inline void tg3_generate_fw_event(struct tg3 *tp)
1306{
1307 u32 val;
1308
1309 val = tr32(GRC_RX_CPU_EVENT);
1310 val |= GRC_RX_CPU_DRIVER_EVENT;
1311 tw32_f(GRC_RX_CPU_EVENT, val);
1312
1313 tp->last_event_jiffies = jiffies;
1314}
1315
1316#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1317
1318/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001319static void tg3_wait_for_event_ack(struct tg3 *tp)
1320{
1321 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001322 unsigned int delay_cnt;
1323 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001324
Matt Carlson4ba526c2008-08-15 14:10:04 -07001325 /* If enough time has passed, no wait is necessary. */
1326 time_remain = (long)(tp->last_event_jiffies + 1 +
1327 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1328 (long)jiffies;
1329 if (time_remain < 0)
1330 return;
1331
1332 /* Check if we can shorten the wait time. */
1333 delay_cnt = jiffies_to_usecs(time_remain);
1334 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1335 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1336 delay_cnt = (delay_cnt >> 3) + 1;
1337
1338 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001339 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1340 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001341 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001342 }
1343}
1344
1345/* tp->lock is held. */
1346static void tg3_ump_link_report(struct tg3 *tp)
1347{
1348 u32 reg;
1349 u32 val;
1350
Joe Perches63c3a662011-04-26 08:12:10 +00001351 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson95e28692008-05-25 23:44:14 -07001352 return;
1353
1354 tg3_wait_for_event_ack(tp);
1355
1356 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1357
1358 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1359
1360 val = 0;
1361 if (!tg3_readphy(tp, MII_BMCR, &reg))
1362 val = reg << 16;
1363 if (!tg3_readphy(tp, MII_BMSR, &reg))
1364 val |= (reg & 0xffff);
1365 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1366
1367 val = 0;
1368 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1369 val = reg << 16;
1370 if (!tg3_readphy(tp, MII_LPA, &reg))
1371 val |= (reg & 0xffff);
1372 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1373
1374 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001375 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001376 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1377 val = reg << 16;
1378 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1379 val |= (reg & 0xffff);
1380 }
1381 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1382
1383 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1384 val = reg << 16;
1385 else
1386 val = 0;
1387 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1388
Matt Carlson4ba526c2008-08-15 14:10:04 -07001389 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001390}
1391
1392static void tg3_link_report(struct tg3 *tp)
1393{
1394 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001395 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001396 tg3_ump_link_report(tp);
1397 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001398 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1399 (tp->link_config.active_speed == SPEED_1000 ?
1400 1000 :
1401 (tp->link_config.active_speed == SPEED_100 ?
1402 100 : 10)),
1403 (tp->link_config.active_duplex == DUPLEX_FULL ?
1404 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001405
Joe Perches05dbe002010-02-17 19:44:19 +00001406 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1407 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1408 "on" : "off",
1409 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1410 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001411
1412 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1413 netdev_info(tp->dev, "EEE is %s\n",
1414 tp->setlpicnt ? "enabled" : "disabled");
1415
Matt Carlson95e28692008-05-25 23:44:14 -07001416 tg3_ump_link_report(tp);
1417 }
1418}
1419
1420static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1421{
1422 u16 miireg;
1423
Steve Glendinninge18ce342008-12-16 02:00:00 -08001424 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001425 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001426 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001427 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001428 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001429 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1430 else
1431 miireg = 0;
1432
1433 return miireg;
1434}
1435
1436static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1437{
1438 u16 miireg;
1439
Steve Glendinninge18ce342008-12-16 02:00:00 -08001440 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001441 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001442 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001443 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001444 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001445 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1446 else
1447 miireg = 0;
1448
1449 return miireg;
1450}
1451
Matt Carlson95e28692008-05-25 23:44:14 -07001452static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1453{
1454 u8 cap = 0;
1455
1456 if (lcladv & ADVERTISE_1000XPAUSE) {
1457 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1458 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001459 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001460 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001461 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001462 } else {
1463 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001464 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001465 }
1466 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1467 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001468 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001469 }
1470
1471 return cap;
1472}
1473
Matt Carlsonf51f3562008-05-25 23:45:08 -07001474static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001475{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001476 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001477 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001478 u32 old_rx_mode = tp->rx_mode;
1479 u32 old_tx_mode = tp->tx_mode;
1480
Joe Perches63c3a662011-04-26 08:12:10 +00001481 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001482 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001483 else
1484 autoneg = tp->link_config.autoneg;
1485
Joe Perches63c3a662011-04-26 08:12:10 +00001486 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001487 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001488 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001489 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001490 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001491 } else
1492 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001493
Matt Carlsonf51f3562008-05-25 23:45:08 -07001494 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001495
Steve Glendinninge18ce342008-12-16 02:00:00 -08001496 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001497 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1498 else
1499 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1500
Matt Carlsonf51f3562008-05-25 23:45:08 -07001501 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001502 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001503
Steve Glendinninge18ce342008-12-16 02:00:00 -08001504 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001505 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1506 else
1507 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1508
Matt Carlsonf51f3562008-05-25 23:45:08 -07001509 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001510 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001511}
1512
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001513static void tg3_adjust_link(struct net_device *dev)
1514{
1515 u8 oldflowctrl, linkmesg = 0;
1516 u32 mac_mode, lcl_adv, rmt_adv;
1517 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001518 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001519
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001520 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001521
1522 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1523 MAC_MODE_HALF_DUPLEX);
1524
1525 oldflowctrl = tp->link_config.active_flowctrl;
1526
1527 if (phydev->link) {
1528 lcl_adv = 0;
1529 rmt_adv = 0;
1530
1531 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1532 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001533 else if (phydev->speed == SPEED_1000 ||
1534 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001535 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001536 else
1537 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001538
1539 if (phydev->duplex == DUPLEX_HALF)
1540 mac_mode |= MAC_MODE_HALF_DUPLEX;
1541 else {
1542 lcl_adv = tg3_advert_flowctrl_1000T(
1543 tp->link_config.flowctrl);
1544
1545 if (phydev->pause)
1546 rmt_adv = LPA_PAUSE_CAP;
1547 if (phydev->asym_pause)
1548 rmt_adv |= LPA_PAUSE_ASYM;
1549 }
1550
1551 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1552 } else
1553 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1554
1555 if (mac_mode != tp->mac_mode) {
1556 tp->mac_mode = mac_mode;
1557 tw32_f(MAC_MODE, tp->mac_mode);
1558 udelay(40);
1559 }
1560
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001561 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1562 if (phydev->speed == SPEED_10)
1563 tw32(MAC_MI_STAT,
1564 MAC_MI_STAT_10MBPS_MODE |
1565 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1566 else
1567 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1568 }
1569
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001570 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1571 tw32(MAC_TX_LENGTHS,
1572 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1573 (6 << TX_LENGTHS_IPG_SHIFT) |
1574 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1575 else
1576 tw32(MAC_TX_LENGTHS,
1577 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1578 (6 << TX_LENGTHS_IPG_SHIFT) |
1579 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1580
1581 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1582 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1583 phydev->speed != tp->link_config.active_speed ||
1584 phydev->duplex != tp->link_config.active_duplex ||
1585 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001586 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001587
1588 tp->link_config.active_speed = phydev->speed;
1589 tp->link_config.active_duplex = phydev->duplex;
1590
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001591 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001592
1593 if (linkmesg)
1594 tg3_link_report(tp);
1595}
1596
1597static int tg3_phy_init(struct tg3 *tp)
1598{
1599 struct phy_device *phydev;
1600
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001601 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001602 return 0;
1603
1604 /* Bring the PHY back to a known state. */
1605 tg3_bmcr_reset(tp);
1606
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001607 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001608
1609 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad32008-11-10 13:55:14 -08001610 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001611 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001612 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001613 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001614 return PTR_ERR(phydev);
1615 }
1616
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001617 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001618 switch (phydev->interface) {
1619 case PHY_INTERFACE_MODE_GMII:
1620 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001621 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001622 phydev->supported &= (PHY_GBIT_FEATURES |
1623 SUPPORTED_Pause |
1624 SUPPORTED_Asym_Pause);
1625 break;
1626 }
1627 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001628 case PHY_INTERFACE_MODE_MII:
1629 phydev->supported &= (PHY_BASIC_FEATURES |
1630 SUPPORTED_Pause |
1631 SUPPORTED_Asym_Pause);
1632 break;
1633 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001634 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001635 return -EINVAL;
1636 }
1637
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001638 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001639
1640 phydev->advertising = phydev->supported;
1641
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001642 return 0;
1643}
1644
1645static void tg3_phy_start(struct tg3 *tp)
1646{
1647 struct phy_device *phydev;
1648
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001649 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001650 return;
1651
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001652 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001653
Matt Carlson80096062010-08-02 11:26:06 +00001654 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1655 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001656 phydev->speed = tp->link_config.orig_speed;
1657 phydev->duplex = tp->link_config.orig_duplex;
1658 phydev->autoneg = tp->link_config.orig_autoneg;
1659 phydev->advertising = tp->link_config.orig_advertising;
1660 }
1661
1662 phy_start(phydev);
1663
1664 phy_start_aneg(phydev);
1665}
1666
1667static void tg3_phy_stop(struct tg3 *tp)
1668{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001669 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001670 return;
1671
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001672 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001673}
1674
1675static void tg3_phy_fini(struct tg3 *tp)
1676{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001677 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001678 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001679 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001680 }
1681}
1682
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001683static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1684{
1685 u32 phytest;
1686
1687 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1688 u32 phy;
1689
1690 tg3_writephy(tp, MII_TG3_FET_TEST,
1691 phytest | MII_TG3_FET_SHADOW_EN);
1692 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1693 if (enable)
1694 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1695 else
1696 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1697 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1698 }
1699 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1700 }
1701}
1702
Matt Carlson6833c042008-11-21 17:18:59 -08001703static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1704{
1705 u32 reg;
1706
Joe Perches63c3a662011-04-26 08:12:10 +00001707 if (!tg3_flag(tp, 5705_PLUS) ||
1708 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001709 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001710 return;
1711
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001712 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001713 tg3_phy_fet_toggle_apd(tp, enable);
1714 return;
1715 }
1716
Matt Carlson6833c042008-11-21 17:18:59 -08001717 reg = MII_TG3_MISC_SHDW_WREN |
1718 MII_TG3_MISC_SHDW_SCR5_SEL |
1719 MII_TG3_MISC_SHDW_SCR5_LPED |
1720 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1721 MII_TG3_MISC_SHDW_SCR5_SDTL |
1722 MII_TG3_MISC_SHDW_SCR5_C125OE;
1723 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1724 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1725
1726 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1727
1728
1729 reg = MII_TG3_MISC_SHDW_WREN |
1730 MII_TG3_MISC_SHDW_APD_SEL |
1731 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1732 if (enable)
1733 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1734
1735 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1736}
1737
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001738static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1739{
1740 u32 phy;
1741
Joe Perches63c3a662011-04-26 08:12:10 +00001742 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001743 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001744 return;
1745
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001746 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001747 u32 ephy;
1748
Matt Carlson535ef6e2009-08-25 10:09:36 +00001749 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1750 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1751
1752 tg3_writephy(tp, MII_TG3_FET_TEST,
1753 ephy | MII_TG3_FET_SHADOW_EN);
1754 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001755 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001756 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001757 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001758 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1759 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001760 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001761 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001762 }
1763 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00001764 int ret;
1765
1766 ret = tg3_phy_auxctl_read(tp,
1767 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
1768 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001769 if (enable)
1770 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1771 else
1772 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001773 tg3_phy_auxctl_write(tp,
1774 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001775 }
1776 }
1777}
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779static void tg3_phy_set_wirespeed(struct tg3 *tp)
1780{
Matt Carlson15ee95c2011-04-20 07:57:40 +00001781 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 u32 val;
1783
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001784 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return;
1786
Matt Carlson15ee95c2011-04-20 07:57:40 +00001787 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
1788 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001789 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
1790 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001793static void tg3_phy_apply_otp(struct tg3 *tp)
1794{
1795 u32 otp, phy;
1796
1797 if (!tp->phy_otp)
1798 return;
1799
1800 otp = tp->phy_otp;
1801
Matt Carlson1d36ba42011-04-20 07:57:42 +00001802 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
1803 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001804
1805 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1806 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1807 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1808
1809 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1810 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1811 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1812
1813 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1814 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1815 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1816
1817 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1818 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1819
1820 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1821 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1822
1823 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1824 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1825 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1826
Matt Carlson1d36ba42011-04-20 07:57:42 +00001827 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001828}
1829
Matt Carlson52b02d02010-10-14 10:37:41 +00001830static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
1831{
1832 u32 val;
1833
1834 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
1835 return;
1836
1837 tp->setlpicnt = 0;
1838
1839 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
1840 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00001841 tp->link_config.active_duplex == DUPLEX_FULL &&
1842 (tp->link_config.active_speed == SPEED_100 ||
1843 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00001844 u32 eeectl;
1845
1846 if (tp->link_config.active_speed == SPEED_1000)
1847 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
1848 else
1849 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
1850
1851 tw32(TG3_CPMU_EEE_CTRL, eeectl);
1852
Matt Carlson3110f5f52010-12-06 08:28:50 +00001853 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
1854 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00001855
Matt Carlsonb0c59432011-05-19 12:12:48 +00001856 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
1857 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00001858 tp->setlpicnt = 2;
1859 }
1860
1861 if (!tp->setlpicnt) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00001862 if (current_link_up == 1 &&
1863 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
1864 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0000);
1865 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
1866 }
1867
Matt Carlson52b02d02010-10-14 10:37:41 +00001868 val = tr32(TG3_CPMU_EEE_MODE);
1869 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
1870 }
1871}
1872
Matt Carlsonb0c59432011-05-19 12:12:48 +00001873static void tg3_phy_eee_enable(struct tg3 *tp)
1874{
1875 u32 val;
1876
1877 if (tp->link_config.active_speed == SPEED_1000 &&
1878 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
1879 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
1880 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
1881 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlsonb715ce92011-07-20 10:20:52 +00001882 val = MII_TG3_DSP_TAP26_ALNOKO |
1883 MII_TG3_DSP_TAP26_RMRXSTO;
1884 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
Matt Carlsonb0c59432011-05-19 12:12:48 +00001885 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
1886 }
1887
1888 val = tr32(TG3_CPMU_EEE_MODE);
1889 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
1890}
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892static int tg3_wait_macro_done(struct tg3 *tp)
1893{
1894 int limit = 100;
1895
1896 while (limit--) {
1897 u32 tmp32;
1898
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001899 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if ((tmp32 & 0x1000) == 0)
1901 break;
1902 }
1903 }
Roel Kluind4675b52009-02-12 16:33:27 -08001904 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return -EBUSY;
1906
1907 return 0;
1908}
1909
1910static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1911{
1912 static const u32 test_pat[4][6] = {
1913 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1914 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1915 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1916 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1917 };
1918 int chan;
1919
1920 for (chan = 0; chan < 4; chan++) {
1921 int i;
1922
1923 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1924 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001925 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 for (i = 0; i < 6; i++)
1928 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1929 test_pat[chan][i]);
1930
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001931 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (tg3_wait_macro_done(tp)) {
1933 *resetp = 1;
1934 return -EBUSY;
1935 }
1936
1937 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1938 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001939 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (tg3_wait_macro_done(tp)) {
1941 *resetp = 1;
1942 return -EBUSY;
1943 }
1944
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001945 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (tg3_wait_macro_done(tp)) {
1947 *resetp = 1;
1948 return -EBUSY;
1949 }
1950
1951 for (i = 0; i < 6; i += 2) {
1952 u32 low, high;
1953
1954 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1955 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1956 tg3_wait_macro_done(tp)) {
1957 *resetp = 1;
1958 return -EBUSY;
1959 }
1960 low &= 0x7fff;
1961 high &= 0x000f;
1962 if (low != test_pat[chan][i] ||
1963 high != test_pat[chan][i+1]) {
1964 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1965 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1966 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1967
1968 return -EBUSY;
1969 }
1970 }
1971 }
1972
1973 return 0;
1974}
1975
1976static int tg3_phy_reset_chanpat(struct tg3 *tp)
1977{
1978 int chan;
1979
1980 for (chan = 0; chan < 4; chan++) {
1981 int i;
1982
1983 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1984 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001985 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 for (i = 0; i < 6; i++)
1987 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001988 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 if (tg3_wait_macro_done(tp))
1990 return -EBUSY;
1991 }
1992
1993 return 0;
1994}
1995
1996static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1997{
1998 u32 reg32, phy9_orig;
1999 int retries, do_phy_reset, err;
2000
2001 retries = 10;
2002 do_phy_reset = 1;
2003 do {
2004 if (do_phy_reset) {
2005 err = tg3_bmcr_reset(tp);
2006 if (err)
2007 return err;
2008 do_phy_reset = 0;
2009 }
2010
2011 /* Disable transmitter and interrupt. */
2012 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2013 continue;
2014
2015 reg32 |= 0x3000;
2016 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2017
2018 /* Set full-duplex, 1000 mbps. */
2019 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002020 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002023 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 continue;
2025
Matt Carlson221c5632011-06-13 13:39:01 +00002026 tg3_writephy(tp, MII_CTRL1000,
2027 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Matt Carlson1d36ba42011-04-20 07:57:42 +00002029 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2030 if (err)
2031 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002034 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2037 if (!err)
2038 break;
2039 } while (--retries);
2040
2041 err = tg3_phy_reset_chanpat(tp);
2042 if (err)
2043 return err;
2044
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002045 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002048 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Matt Carlson1d36ba42011-04-20 07:57:42 +00002050 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Matt Carlson221c5632011-06-13 13:39:01 +00002052 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2055 reg32 &= ~0x3000;
2056 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2057 } else if (!err)
2058 err = -EBUSY;
2059
2060 return err;
2061}
2062
2063/* This will reset the tigon3 PHY if there is no valid
2064 * link unless the FORCE argument is non-zero.
2065 */
2066static int tg3_phy_reset(struct tg3 *tp)
2067{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002068 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 int err;
2070
Michael Chan60189dd2006-12-17 17:08:07 -08002071 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002072 val = tr32(GRC_MISC_CFG);
2073 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2074 udelay(40);
2075 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002076 err = tg3_readphy(tp, MII_BMSR, &val);
2077 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (err != 0)
2079 return -EBUSY;
2080
Michael Chanc8e1e822006-04-29 18:55:17 -07002081 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2082 netif_carrier_off(tp->dev);
2083 tg3_link_report(tp);
2084 }
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2087 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2088 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2089 err = tg3_phy_reset_5703_4_5(tp);
2090 if (err)
2091 return err;
2092 goto out;
2093 }
2094
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002095 cpmuctrl = 0;
2096 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2097 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2098 cpmuctrl = tr32(TG3_CPMU_CTRL);
2099 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2100 tw32(TG3_CPMU_CTRL,
2101 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2102 }
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 err = tg3_bmcr_reset(tp);
2105 if (err)
2106 return err;
2107
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002108 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002109 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2110 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002111
2112 tw32(TG3_CPMU_CTRL, cpmuctrl);
2113 }
2114
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002115 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2116 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002117 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2118 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2119 CPMU_LSPD_1000MB_MACCLK_12_5) {
2120 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2121 udelay(40);
2122 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2123 }
2124 }
2125
Joe Perches63c3a662011-04-26 08:12:10 +00002126 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002127 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002128 return 0;
2129
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002130 tg3_phy_apply_otp(tp);
2131
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002132 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002133 tg3_phy_toggle_apd(tp, true);
2134 else
2135 tg3_phy_toggle_apd(tp, false);
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002138 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2139 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002140 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2141 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002142 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002144
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002145 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002146 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2147 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002149
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002150 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002151 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2152 tg3_phydsp_write(tp, 0x000a, 0x310b);
2153 tg3_phydsp_write(tp, 0x201f, 0x9506);
2154 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2155 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2156 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002157 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002158 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2159 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2160 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2161 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2162 tg3_writephy(tp, MII_TG3_TEST1,
2163 MII_TG3_TEST1_TRIM_EN | 0x4);
2164 } else
2165 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2166
2167 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2168 }
Michael Chanc424cb22006-04-29 18:56:34 -07002169 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 /* Set Extended packet length bit (bit 14) on all chips that */
2172 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002173 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002175 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002176 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002178 err = tg3_phy_auxctl_read(tp,
2179 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2180 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002181 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2182 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184
2185 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2186 * jumbo frames transmission.
2187 */
Joe Perches63c3a662011-04-26 08:12:10 +00002188 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002189 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002190 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002191 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193
Michael Chan715116a2006-09-27 16:09:25 -07002194 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002195 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002196 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002197 }
2198
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002199 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 tg3_phy_set_wirespeed(tp);
2201 return 0;
2202}
2203
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002204#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2205#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2206#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2207 TG3_GPIO_MSG_NEED_VAUX)
2208#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2209 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2210 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2211 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2212 (TG3_GPIO_MSG_DRVR_PRES << 12))
2213
2214#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2215 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2216 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2217 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2218 (TG3_GPIO_MSG_NEED_VAUX << 12))
2219
2220static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2221{
2222 u32 status, shift;
2223
2224 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2225 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2226 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2227 else
2228 status = tr32(TG3_CPMU_DRV_STATUS);
2229
2230 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2231 status &= ~(TG3_GPIO_MSG_MASK << shift);
2232 status |= (newstat << shift);
2233
2234 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2235 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2236 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2237 else
2238 tw32(TG3_CPMU_DRV_STATUS, status);
2239
2240 return status >> TG3_APE_GPIO_MSG_SHIFT;
2241}
2242
Matt Carlson520b2752011-06-13 13:39:02 +00002243static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2244{
2245 if (!tg3_flag(tp, IS_NIC))
2246 return 0;
2247
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002248 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2249 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2250 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
2251 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2252 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002253
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002254 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2255
2256 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2257 TG3_GRC_LCLCTL_PWRSW_DELAY);
2258
2259 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2260 } else {
2261 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2262 TG3_GRC_LCLCTL_PWRSW_DELAY);
2263 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002264
Matt Carlson520b2752011-06-13 13:39:02 +00002265 return 0;
2266}
2267
2268static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2269{
2270 u32 grc_local_ctrl;
2271
2272 if (!tg3_flag(tp, IS_NIC) ||
2273 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2274 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)
2275 return;
2276
2277 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2278
2279 tw32_wait_f(GRC_LOCAL_CTRL,
2280 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2281 TG3_GRC_LCLCTL_PWRSW_DELAY);
2282
2283 tw32_wait_f(GRC_LOCAL_CTRL,
2284 grc_local_ctrl,
2285 TG3_GRC_LCLCTL_PWRSW_DELAY);
2286
2287 tw32_wait_f(GRC_LOCAL_CTRL,
2288 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2289 TG3_GRC_LCLCTL_PWRSW_DELAY);
2290}
2291
2292static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2293{
2294 if (!tg3_flag(tp, IS_NIC))
2295 return;
2296
2297 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2298 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2299 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2300 (GRC_LCLCTRL_GPIO_OE0 |
2301 GRC_LCLCTRL_GPIO_OE1 |
2302 GRC_LCLCTRL_GPIO_OE2 |
2303 GRC_LCLCTRL_GPIO_OUTPUT0 |
2304 GRC_LCLCTRL_GPIO_OUTPUT1),
2305 TG3_GRC_LCLCTL_PWRSW_DELAY);
2306 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2307 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2308 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2309 u32 grc_local_ctrl = GRC_LCLCTRL_GPIO_OE0 |
2310 GRC_LCLCTRL_GPIO_OE1 |
2311 GRC_LCLCTRL_GPIO_OE2 |
2312 GRC_LCLCTRL_GPIO_OUTPUT0 |
2313 GRC_LCLCTRL_GPIO_OUTPUT1 |
2314 tp->grc_local_ctrl;
2315 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2316 TG3_GRC_LCLCTL_PWRSW_DELAY);
2317
2318 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2319 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2320 TG3_GRC_LCLCTL_PWRSW_DELAY);
2321
2322 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2323 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2324 TG3_GRC_LCLCTL_PWRSW_DELAY);
2325 } else {
2326 u32 no_gpio2;
2327 u32 grc_local_ctrl = 0;
2328
2329 /* Workaround to prevent overdrawing Amps. */
2330 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2331 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2332 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2333 grc_local_ctrl,
2334 TG3_GRC_LCLCTL_PWRSW_DELAY);
2335 }
2336
2337 /* On 5753 and variants, GPIO2 cannot be used. */
2338 no_gpio2 = tp->nic_sram_data_cfg &
2339 NIC_SRAM_DATA_CFG_NO_GPIO2;
2340
2341 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2342 GRC_LCLCTRL_GPIO_OE1 |
2343 GRC_LCLCTRL_GPIO_OE2 |
2344 GRC_LCLCTRL_GPIO_OUTPUT1 |
2345 GRC_LCLCTRL_GPIO_OUTPUT2;
2346 if (no_gpio2) {
2347 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2348 GRC_LCLCTRL_GPIO_OUTPUT2);
2349 }
2350 tw32_wait_f(GRC_LOCAL_CTRL,
2351 tp->grc_local_ctrl | grc_local_ctrl,
2352 TG3_GRC_LCLCTL_PWRSW_DELAY);
2353
2354 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2355
2356 tw32_wait_f(GRC_LOCAL_CTRL,
2357 tp->grc_local_ctrl | grc_local_ctrl,
2358 TG3_GRC_LCLCTL_PWRSW_DELAY);
2359
2360 if (!no_gpio2) {
2361 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2362 tw32_wait_f(GRC_LOCAL_CTRL,
2363 tp->grc_local_ctrl | grc_local_ctrl,
2364 TG3_GRC_LCLCTL_PWRSW_DELAY);
2365 }
2366 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002367}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002368
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002369static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002370{
2371 u32 msg = 0;
2372
2373 /* Serialize power state transitions */
2374 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2375 return;
2376
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002377 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002378 msg = TG3_GPIO_MSG_NEED_VAUX;
2379
2380 msg = tg3_set_function_status(tp, msg);
2381
2382 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2383 goto done;
2384
2385 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2386 tg3_pwrsrc_switch_to_vaux(tp);
2387 else
2388 tg3_pwrsrc_die_with_vmain(tp);
2389
2390done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002391 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002392}
2393
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002394static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Matt Carlson683644b2011-03-09 16:58:23 +00002396 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Matt Carlson334355a2010-01-20 16:58:10 +00002398 /* The GPIOs do something completely different on 57765. */
Joe Perches63c3a662011-04-26 08:12:10 +00002399 if (!tg3_flag(tp, IS_NIC) ||
Matt Carlson334355a2010-01-20 16:58:10 +00002400 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 return;
2402
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002403 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2404 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2405 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002406 tg3_frob_aux_power_5717(tp, include_wol ?
2407 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002408 return;
2409 }
2410
2411 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002412 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002414 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002415
Michael Chanbc1c7562006-03-20 17:48:03 -08002416 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002417 if (dev_peer) {
2418 struct tg3 *tp_peer = netdev_priv(dev_peer);
2419
Joe Perches63c3a662011-04-26 08:12:10 +00002420 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002421 return;
2422
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002423 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002424 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002425 need_vaux = true;
2426 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002429 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2430 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002431 need_vaux = true;
2432
Matt Carlson520b2752011-06-13 13:39:02 +00002433 if (need_vaux)
2434 tg3_pwrsrc_switch_to_vaux(tp);
2435 else
2436 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002439static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2440{
2441 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2442 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002443 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002444 if (speed != SPEED_10)
2445 return 1;
2446 } else if (speed == SPEED_10)
2447 return 1;
2448
2449 return 0;
2450}
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452static int tg3_setup_phy(struct tg3 *, int);
2453
2454#define RESET_KIND_SHUTDOWN 0
2455#define RESET_KIND_INIT 1
2456#define RESET_KIND_SUSPEND 2
2457
2458static void tg3_write_sig_post_reset(struct tg3 *, int);
2459static int tg3_halt_cpu(struct tg3 *, u32);
2460
Matt Carlson0a459aa2008-11-03 16:54:15 -08002461static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002462{
Matt Carlsonce057f02007-11-12 21:08:03 -08002463 u32 val;
2464
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002465 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002466 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2467 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2468 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2469
2470 sg_dig_ctrl |=
2471 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2472 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2473 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2474 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002475 return;
Michael Chan51297242007-02-13 12:17:57 -08002476 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002477
Michael Chan60189dd2006-12-17 17:08:07 -08002478 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002479 tg3_bmcr_reset(tp);
2480 val = tr32(GRC_MISC_CFG);
2481 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2482 udelay(40);
2483 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002484 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002485 u32 phytest;
2486 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2487 u32 phy;
2488
2489 tg3_writephy(tp, MII_ADVERTISE, 0);
2490 tg3_writephy(tp, MII_BMCR,
2491 BMCR_ANENABLE | BMCR_ANRESTART);
2492
2493 tg3_writephy(tp, MII_TG3_FET_TEST,
2494 phytest | MII_TG3_FET_SHADOW_EN);
2495 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2496 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2497 tg3_writephy(tp,
2498 MII_TG3_FET_SHDW_AUXMODE4,
2499 phy);
2500 }
2501 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2502 }
2503 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002504 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002505 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2506 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002507
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002508 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2509 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2510 MII_TG3_AUXCTL_PCTL_VREG_11V;
2511 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002512 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002513
Michael Chan15c3b692006-03-22 01:06:52 -08002514 /* The PHY should not be powered down on some chips because
2515 * of bugs.
2516 */
2517 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2518 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2519 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002520 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Michael Chan15c3b692006-03-22 01:06:52 -08002521 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002522
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002523 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2524 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002525 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2526 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2527 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2528 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2529 }
2530
Michael Chan15c3b692006-03-22 01:06:52 -08002531 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2532}
2533
Matt Carlson3f007892008-11-03 16:51:36 -08002534/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002535static int tg3_nvram_lock(struct tg3 *tp)
2536{
Joe Perches63c3a662011-04-26 08:12:10 +00002537 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002538 int i;
2539
2540 if (tp->nvram_lock_cnt == 0) {
2541 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2542 for (i = 0; i < 8000; i++) {
2543 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2544 break;
2545 udelay(20);
2546 }
2547 if (i == 8000) {
2548 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2549 return -ENODEV;
2550 }
2551 }
2552 tp->nvram_lock_cnt++;
2553 }
2554 return 0;
2555}
2556
2557/* tp->lock is held. */
2558static void tg3_nvram_unlock(struct tg3 *tp)
2559{
Joe Perches63c3a662011-04-26 08:12:10 +00002560 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002561 if (tp->nvram_lock_cnt > 0)
2562 tp->nvram_lock_cnt--;
2563 if (tp->nvram_lock_cnt == 0)
2564 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2565 }
2566}
2567
2568/* tp->lock is held. */
2569static void tg3_enable_nvram_access(struct tg3 *tp)
2570{
Joe Perches63c3a662011-04-26 08:12:10 +00002571 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002572 u32 nvaccess = tr32(NVRAM_ACCESS);
2573
2574 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2575 }
2576}
2577
2578/* tp->lock is held. */
2579static void tg3_disable_nvram_access(struct tg3 *tp)
2580{
Joe Perches63c3a662011-04-26 08:12:10 +00002581 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002582 u32 nvaccess = tr32(NVRAM_ACCESS);
2583
2584 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2585 }
2586}
2587
2588static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2589 u32 offset, u32 *val)
2590{
2591 u32 tmp;
2592 int i;
2593
2594 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2595 return -EINVAL;
2596
2597 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2598 EEPROM_ADDR_DEVID_MASK |
2599 EEPROM_ADDR_READ);
2600 tw32(GRC_EEPROM_ADDR,
2601 tmp |
2602 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2603 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2604 EEPROM_ADDR_ADDR_MASK) |
2605 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2606
2607 for (i = 0; i < 1000; i++) {
2608 tmp = tr32(GRC_EEPROM_ADDR);
2609
2610 if (tmp & EEPROM_ADDR_COMPLETE)
2611 break;
2612 msleep(1);
2613 }
2614 if (!(tmp & EEPROM_ADDR_COMPLETE))
2615 return -EBUSY;
2616
Matt Carlson62cedd12009-04-20 14:52:29 -07002617 tmp = tr32(GRC_EEPROM_DATA);
2618
2619 /*
2620 * The data will always be opposite the native endian
2621 * format. Perform a blind byteswap to compensate.
2622 */
2623 *val = swab32(tmp);
2624
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002625 return 0;
2626}
2627
2628#define NVRAM_CMD_TIMEOUT 10000
2629
2630static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2631{
2632 int i;
2633
2634 tw32(NVRAM_CMD, nvram_cmd);
2635 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2636 udelay(10);
2637 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2638 udelay(10);
2639 break;
2640 }
2641 }
2642
2643 if (i == NVRAM_CMD_TIMEOUT)
2644 return -EBUSY;
2645
2646 return 0;
2647}
2648
2649static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2650{
Joe Perches63c3a662011-04-26 08:12:10 +00002651 if (tg3_flag(tp, NVRAM) &&
2652 tg3_flag(tp, NVRAM_BUFFERED) &&
2653 tg3_flag(tp, FLASH) &&
2654 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002655 (tp->nvram_jedecnum == JEDEC_ATMEL))
2656
2657 addr = ((addr / tp->nvram_pagesize) <<
2658 ATMEL_AT45DB0X1B_PAGE_POS) +
2659 (addr % tp->nvram_pagesize);
2660
2661 return addr;
2662}
2663
2664static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2665{
Joe Perches63c3a662011-04-26 08:12:10 +00002666 if (tg3_flag(tp, NVRAM) &&
2667 tg3_flag(tp, NVRAM_BUFFERED) &&
2668 tg3_flag(tp, FLASH) &&
2669 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002670 (tp->nvram_jedecnum == JEDEC_ATMEL))
2671
2672 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2673 tp->nvram_pagesize) +
2674 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2675
2676 return addr;
2677}
2678
Matt Carlsone4f34112009-02-25 14:25:00 +00002679/* NOTE: Data read in from NVRAM is byteswapped according to
2680 * the byteswapping settings for all other register accesses.
2681 * tg3 devices are BE devices, so on a BE machine, the data
2682 * returned will be exactly as it is seen in NVRAM. On a LE
2683 * machine, the 32-bit value will be byteswapped.
2684 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002685static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2686{
2687 int ret;
2688
Joe Perches63c3a662011-04-26 08:12:10 +00002689 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002690 return tg3_nvram_read_using_eeprom(tp, offset, val);
2691
2692 offset = tg3_nvram_phys_addr(tp, offset);
2693
2694 if (offset > NVRAM_ADDR_MSK)
2695 return -EINVAL;
2696
2697 ret = tg3_nvram_lock(tp);
2698 if (ret)
2699 return ret;
2700
2701 tg3_enable_nvram_access(tp);
2702
2703 tw32(NVRAM_ADDR, offset);
2704 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2705 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2706
2707 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002708 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002709
2710 tg3_disable_nvram_access(tp);
2711
2712 tg3_nvram_unlock(tp);
2713
2714 return ret;
2715}
2716
Matt Carlsona9dc5292009-02-25 14:25:30 +00002717/* Ensures NVRAM data is in bytestream format. */
2718static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002719{
2720 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002721 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002722 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002723 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002724 return res;
2725}
2726
2727/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002728static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2729{
2730 u32 addr_high, addr_low;
2731 int i;
2732
2733 addr_high = ((tp->dev->dev_addr[0] << 8) |
2734 tp->dev->dev_addr[1]);
2735 addr_low = ((tp->dev->dev_addr[2] << 24) |
2736 (tp->dev->dev_addr[3] << 16) |
2737 (tp->dev->dev_addr[4] << 8) |
2738 (tp->dev->dev_addr[5] << 0));
2739 for (i = 0; i < 4; i++) {
2740 if (i == 1 && skip_mac_1)
2741 continue;
2742 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2743 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2744 }
2745
2746 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2747 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2748 for (i = 0; i < 12; i++) {
2749 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2750 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2751 }
2752 }
2753
2754 addr_high = (tp->dev->dev_addr[0] +
2755 tp->dev->dev_addr[1] +
2756 tp->dev->dev_addr[2] +
2757 tp->dev->dev_addr[3] +
2758 tp->dev->dev_addr[4] +
2759 tp->dev->dev_addr[5]) &
2760 TX_BACKOFF_SEED_MASK;
2761 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2762}
2763
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002764static void tg3_enable_register_access(struct tg3 *tp)
2765{
2766 /*
2767 * Make sure register accesses (indirect or otherwise) will function
2768 * correctly.
2769 */
2770 pci_write_config_dword(tp->pdev,
2771 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
2772}
2773
2774static int tg3_power_up(struct tg3 *tp)
2775{
Matt Carlsonbed98292011-07-13 09:27:29 +00002776 int err;
2777
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002778 tg3_enable_register_access(tp);
2779
Matt Carlsonbed98292011-07-13 09:27:29 +00002780 err = pci_set_power_state(tp->pdev, PCI_D0);
2781 if (!err) {
2782 /* Switch out of Vaux if it is a NIC */
2783 tg3_pwrsrc_switch_to_vmain(tp);
2784 } else {
2785 netdev_err(tp->dev, "Transition to D0 failed\n");
2786 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002787
Matt Carlsonbed98292011-07-13 09:27:29 +00002788 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002789}
2790
2791static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792{
2793 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002794 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002796 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002797
2798 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00002799 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002800 u16 lnkctl;
2801
2802 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00002803 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002804 &lnkctl);
2805 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2806 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00002807 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002808 lnkctl);
2809 }
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2812 tw32(TG3PCI_MISC_HOST_CTRL,
2813 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2814
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002815 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00002816 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002817
Joe Perches63c3a662011-04-26 08:12:10 +00002818 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002819 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002820 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00002821 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002822 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002823 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002824
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002825 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002826
Matt Carlson80096062010-08-02 11:26:06 +00002827 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002828
2829 tp->link_config.orig_speed = phydev->speed;
2830 tp->link_config.orig_duplex = phydev->duplex;
2831 tp->link_config.orig_autoneg = phydev->autoneg;
2832 tp->link_config.orig_advertising = phydev->advertising;
2833
2834 advertising = ADVERTISED_TP |
2835 ADVERTISED_Pause |
2836 ADVERTISED_Autoneg |
2837 ADVERTISED_10baseT_Half;
2838
Joe Perches63c3a662011-04-26 08:12:10 +00002839 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
2840 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002841 advertising |=
2842 ADVERTISED_100baseT_Half |
2843 ADVERTISED_100baseT_Full |
2844 ADVERTISED_10baseT_Full;
2845 else
2846 advertising |= ADVERTISED_10baseT_Full;
2847 }
2848
2849 phydev->advertising = advertising;
2850
2851 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002852
2853 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00002854 if (phyid != PHY_ID_BCMAC131) {
2855 phyid &= PHY_BCM_OUI_MASK;
2856 if (phyid == PHY_BCM_OUI_1 ||
2857 phyid == PHY_BCM_OUI_2 ||
2858 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08002859 do_low_power = true;
2860 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002861 }
Matt Carlsondd477002008-05-25 23:45:58 -07002862 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002863 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002864
Matt Carlson80096062010-08-02 11:26:06 +00002865 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
2866 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07002867 tp->link_config.orig_speed = tp->link_config.speed;
2868 tp->link_config.orig_duplex = tp->link_config.duplex;
2869 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002872 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07002873 tp->link_config.speed = SPEED_10;
2874 tp->link_config.duplex = DUPLEX_HALF;
2875 tp->link_config.autoneg = AUTONEG_ENABLE;
2876 tg3_setup_phy(tp, 0);
2877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 }
2879
Michael Chanb5d37722006-09-27 16:06:21 -07002880 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2881 u32 val;
2882
2883 val = tr32(GRC_VCPU_EXT_CTRL);
2884 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00002885 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002886 int i;
2887 u32 val;
2888
2889 for (i = 0; i < 200; i++) {
2890 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2891 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2892 break;
2893 msleep(1);
2894 }
2895 }
Joe Perches63c3a662011-04-26 08:12:10 +00002896 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07002897 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2898 WOL_DRV_STATE_SHUTDOWN |
2899 WOL_DRV_WOL |
2900 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002901
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002902 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 u32 mac_mode;
2904
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002905 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002906 if (do_low_power &&
2907 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
2908 tg3_phy_auxctl_write(tp,
2909 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
2910 MII_TG3_AUXCTL_PCTL_WOL_EN |
2911 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2912 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07002913 udelay(40);
2914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002916 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07002917 mac_mode = MAC_MODE_PORT_MODE_GMII;
2918 else
2919 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002921 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2922 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2923 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00002924 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002925 SPEED_100 : SPEED_10;
2926 if (tg3_5700_link_polarity(tp, speed))
2927 mac_mode |= MAC_MODE_LINK_POLARITY;
2928 else
2929 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 } else {
2932 mac_mode = MAC_MODE_PORT_MODE_TBI;
2933 }
2934
Joe Perches63c3a662011-04-26 08:12:10 +00002935 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 tw32(MAC_LED_CTRL, tp->led_ctrl);
2937
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002938 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00002939 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
2940 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002941 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Joe Perches63c3a662011-04-26 08:12:10 +00002943 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00002944 mac_mode |= MAC_MODE_APE_TX_EN |
2945 MAC_MODE_APE_RX_EN |
2946 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07002947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 tw32_f(MAC_MODE, mac_mode);
2949 udelay(100);
2950
2951 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2952 udelay(10);
2953 }
2954
Joe Perches63c3a662011-04-26 08:12:10 +00002955 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2957 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2958 u32 base_val;
2959
2960 base_val = tp->pci_clock_ctrl;
2961 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2962 CLOCK_CTRL_TXCLK_DISABLE);
2963
Michael Chanb401e9e2005-12-19 16:27:04 -08002964 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2965 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00002966 } else if (tg3_flag(tp, 5780_CLASS) ||
2967 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00002968 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002969 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00002970 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 u32 newbits1, newbits2;
2972
2973 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2974 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2975 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2976 CLOCK_CTRL_TXCLK_DISABLE |
2977 CLOCK_CTRL_ALTCLK);
2978 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00002979 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 newbits1 = CLOCK_CTRL_625_CORE;
2981 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2982 } else {
2983 newbits1 = CLOCK_CTRL_ALTCLK;
2984 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2985 }
2986
Michael Chanb401e9e2005-12-19 16:27:04 -08002987 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2988 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Michael Chanb401e9e2005-12-19 16:27:04 -08002990 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2991 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Joe Perches63c3a662011-04-26 08:12:10 +00002993 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 u32 newbits3;
2995
2996 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2997 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2998 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2999 CLOCK_CTRL_TXCLK_DISABLE |
3000 CLOCK_CTRL_44MHZ_CORE);
3001 } else {
3002 newbits3 = CLOCK_CTRL_44MHZ_CORE;
3003 }
3004
Michael Chanb401e9e2005-12-19 16:27:04 -08003005 tw32_wait_f(TG3PCI_CLOCK_CTRL,
3006 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 }
3008 }
3009
Joe Perches63c3a662011-04-26 08:12:10 +00003010 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003011 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003012
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003013 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
3015 /* Workaround for unstable PLL clock */
3016 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3017 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3018 u32 val = tr32(0x7d00);
3019
3020 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3021 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003022 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003023 int err;
3024
3025 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003027 if (!err)
3028 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 }
3031
Michael Chanbbadf502006-04-06 21:46:34 -07003032 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 return 0;
3035}
3036
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003037static void tg3_power_down(struct tg3 *tp)
3038{
3039 tg3_power_down_prepare(tp);
3040
Joe Perches63c3a662011-04-26 08:12:10 +00003041 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003042 pci_set_power_state(tp->pdev, PCI_D3hot);
3043}
3044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3046{
3047 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3048 case MII_TG3_AUX_STAT_10HALF:
3049 *speed = SPEED_10;
3050 *duplex = DUPLEX_HALF;
3051 break;
3052
3053 case MII_TG3_AUX_STAT_10FULL:
3054 *speed = SPEED_10;
3055 *duplex = DUPLEX_FULL;
3056 break;
3057
3058 case MII_TG3_AUX_STAT_100HALF:
3059 *speed = SPEED_100;
3060 *duplex = DUPLEX_HALF;
3061 break;
3062
3063 case MII_TG3_AUX_STAT_100FULL:
3064 *speed = SPEED_100;
3065 *duplex = DUPLEX_FULL;
3066 break;
3067
3068 case MII_TG3_AUX_STAT_1000HALF:
3069 *speed = SPEED_1000;
3070 *duplex = DUPLEX_HALF;
3071 break;
3072
3073 case MII_TG3_AUX_STAT_1000FULL:
3074 *speed = SPEED_1000;
3075 *duplex = DUPLEX_FULL;
3076 break;
3077
3078 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003079 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003080 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3081 SPEED_10;
3082 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3083 DUPLEX_HALF;
3084 break;
3085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 *speed = SPEED_INVALID;
3087 *duplex = DUPLEX_INVALID;
3088 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090}
3091
Matt Carlson42b64a42011-05-19 12:12:49 +00003092static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093{
Matt Carlson42b64a42011-05-19 12:12:49 +00003094 int err = 0;
3095 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Matt Carlson42b64a42011-05-19 12:12:49 +00003097 new_adv = ADVERTISE_CSMA;
3098 if (advertise & ADVERTISED_10baseT_Half)
3099 new_adv |= ADVERTISE_10HALF;
3100 if (advertise & ADVERTISED_10baseT_Full)
3101 new_adv |= ADVERTISE_10FULL;
3102 if (advertise & ADVERTISED_100baseT_Half)
3103 new_adv |= ADVERTISE_100HALF;
3104 if (advertise & ADVERTISED_100baseT_Full)
3105 new_adv |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Matt Carlson42b64a42011-05-19 12:12:49 +00003107 new_adv |= tg3_advert_flowctrl_1000T(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Matt Carlson42b64a42011-05-19 12:12:49 +00003109 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3110 if (err)
3111 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Matt Carlson42b64a42011-05-19 12:12:49 +00003113 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3114 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003115
Matt Carlson42b64a42011-05-19 12:12:49 +00003116 new_adv = 0;
3117 if (advertise & ADVERTISED_1000baseT_Half)
Matt Carlson221c5632011-06-13 13:39:01 +00003118 new_adv |= ADVERTISE_1000HALF;
Matt Carlson42b64a42011-05-19 12:12:49 +00003119 if (advertise & ADVERTISED_1000baseT_Full)
Matt Carlson221c5632011-06-13 13:39:01 +00003120 new_adv |= ADVERTISE_1000FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003121
Matt Carlson42b64a42011-05-19 12:12:49 +00003122 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3123 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
Matt Carlson221c5632011-06-13 13:39:01 +00003124 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Matt Carlson221c5632011-06-13 13:39:01 +00003126 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
Matt Carlson42b64a42011-05-19 12:12:49 +00003127 if (err)
3128 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003129
Matt Carlson42b64a42011-05-19 12:12:49 +00003130 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3131 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Matt Carlson42b64a42011-05-19 12:12:49 +00003133 tw32(TG3_CPMU_EEE_MODE,
3134 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003135
Matt Carlson42b64a42011-05-19 12:12:49 +00003136 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3137 if (!err) {
3138 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003139
Matt Carlsona6b68da2010-12-06 08:28:52 +00003140 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003141 /* Advertise 100-BaseTX EEE ability */
3142 if (advertise & ADVERTISED_100baseT_Full)
3143 val |= MDIO_AN_EEE_ADV_100TX;
3144 /* Advertise 1000-BaseT EEE ability */
3145 if (advertise & ADVERTISED_1000baseT_Full)
3146 val |= MDIO_AN_EEE_ADV_1000T;
3147 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlsonb715ce92011-07-20 10:20:52 +00003148 if (err)
3149 val = 0;
3150
3151 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3152 case ASIC_REV_5717:
3153 case ASIC_REV_57765:
3154 case ASIC_REV_5719:
3155 /* If we advertised any eee advertisements above... */
3156 if (val)
3157 val = MII_TG3_DSP_TAP26_ALNOKO |
3158 MII_TG3_DSP_TAP26_RMRXSTO |
3159 MII_TG3_DSP_TAP26_OPCSINPT;
3160 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3161 /* Fall through */
3162 case ASIC_REV_5720:
3163 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3164 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3165 MII_TG3_DSP_CH34TP2_HIBW01);
3166 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003167
Matt Carlson42b64a42011-05-19 12:12:49 +00003168 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3169 if (!err)
3170 err = err2;
3171 }
3172
3173done:
3174 return err;
3175}
3176
3177static void tg3_phy_copper_begin(struct tg3 *tp)
3178{
3179 u32 new_adv;
3180 int i;
3181
3182 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
3183 new_adv = ADVERTISED_10baseT_Half |
3184 ADVERTISED_10baseT_Full;
3185 if (tg3_flag(tp, WOL_SPEED_100MB))
3186 new_adv |= ADVERTISED_100baseT_Half |
3187 ADVERTISED_100baseT_Full;
3188
3189 tg3_phy_autoneg_cfg(tp, new_adv,
3190 FLOW_CTRL_TX | FLOW_CTRL_RX);
3191 } else if (tp->link_config.speed == SPEED_INVALID) {
3192 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3193 tp->link_config.advertising &=
3194 ~(ADVERTISED_1000baseT_Half |
3195 ADVERTISED_1000baseT_Full);
3196
3197 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
3198 tp->link_config.flowctrl);
3199 } else {
3200 /* Asking for a specific link mode. */
3201 if (tp->link_config.speed == SPEED_1000) {
3202 if (tp->link_config.duplex == DUPLEX_FULL)
3203 new_adv = ADVERTISED_1000baseT_Full;
3204 else
3205 new_adv = ADVERTISED_1000baseT_Half;
3206 } else if (tp->link_config.speed == SPEED_100) {
3207 if (tp->link_config.duplex == DUPLEX_FULL)
3208 new_adv = ADVERTISED_100baseT_Full;
3209 else
3210 new_adv = ADVERTISED_100baseT_Half;
3211 } else {
3212 if (tp->link_config.duplex == DUPLEX_FULL)
3213 new_adv = ADVERTISED_10baseT_Full;
3214 else
3215 new_adv = ADVERTISED_10baseT_Half;
3216 }
3217
3218 tg3_phy_autoneg_cfg(tp, new_adv,
3219 tp->link_config.flowctrl);
Matt Carlson52b02d02010-10-14 10:37:41 +00003220 }
3221
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
3223 tp->link_config.speed != SPEED_INVALID) {
3224 u32 bmcr, orig_bmcr;
3225
3226 tp->link_config.active_speed = tp->link_config.speed;
3227 tp->link_config.active_duplex = tp->link_config.duplex;
3228
3229 bmcr = 0;
3230 switch (tp->link_config.speed) {
3231 default:
3232 case SPEED_10:
3233 break;
3234
3235 case SPEED_100:
3236 bmcr |= BMCR_SPEED100;
3237 break;
3238
3239 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00003240 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
3244 if (tp->link_config.duplex == DUPLEX_FULL)
3245 bmcr |= BMCR_FULLDPLX;
3246
3247 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3248 (bmcr != orig_bmcr)) {
3249 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3250 for (i = 0; i < 1500; i++) {
3251 u32 tmp;
3252
3253 udelay(10);
3254 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3255 tg3_readphy(tp, MII_BMSR, &tmp))
3256 continue;
3257 if (!(tmp & BMSR_LSTATUS)) {
3258 udelay(40);
3259 break;
3260 }
3261 }
3262 tg3_writephy(tp, MII_BMCR, bmcr);
3263 udelay(40);
3264 }
3265 } else {
3266 tg3_writephy(tp, MII_BMCR,
3267 BMCR_ANENABLE | BMCR_ANRESTART);
3268 }
3269}
3270
3271static int tg3_init_5401phy_dsp(struct tg3 *tp)
3272{
3273 int err;
3274
3275 /* Turn off tap power management. */
3276 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003277 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003279 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3280 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3281 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3282 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3283 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
3285 udelay(40);
3286
3287 return err;
3288}
3289
Michael Chan3600d912006-12-07 00:21:48 -08003290static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291{
Michael Chan3600d912006-12-07 00:21:48 -08003292 u32 adv_reg, all_mask = 0;
3293
3294 if (mask & ADVERTISED_10baseT_Half)
3295 all_mask |= ADVERTISE_10HALF;
3296 if (mask & ADVERTISED_10baseT_Full)
3297 all_mask |= ADVERTISE_10FULL;
3298 if (mask & ADVERTISED_100baseT_Half)
3299 all_mask |= ADVERTISE_100HALF;
3300 if (mask & ADVERTISED_100baseT_Full)
3301 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
3303 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
3304 return 0;
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 if ((adv_reg & all_mask) != all_mask)
3307 return 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003308 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 u32 tg3_ctrl;
3310
Michael Chan3600d912006-12-07 00:21:48 -08003311 all_mask = 0;
3312 if (mask & ADVERTISED_1000baseT_Half)
3313 all_mask |= ADVERTISE_1000HALF;
3314 if (mask & ADVERTISED_1000baseT_Full)
3315 all_mask |= ADVERTISE_1000FULL;
3316
Matt Carlson221c5632011-06-13 13:39:01 +00003317 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 return 0;
3319
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 if ((tg3_ctrl & all_mask) != all_mask)
3321 return 0;
3322 }
3323 return 1;
3324}
3325
Matt Carlsonef167e22007-12-20 20:10:01 -08003326static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3327{
3328 u32 curadv, reqadv;
3329
3330 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3331 return 1;
3332
3333 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3334 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3335
3336 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3337 if (curadv != reqadv)
3338 return 0;
3339
Joe Perches63c3a662011-04-26 08:12:10 +00003340 if (tg3_flag(tp, PAUSE_AUTONEG))
Matt Carlsonef167e22007-12-20 20:10:01 -08003341 tg3_readphy(tp, MII_LPA, rmtadv);
3342 } else {
3343 /* Reprogram the advertisement register, even if it
3344 * does not affect the current link. If the link
3345 * gets renegotiated in the future, we can save an
3346 * additional renegotiation cycle by advertising
3347 * it correctly in the first place.
3348 */
3349 if (curadv != reqadv) {
3350 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3351 ADVERTISE_PAUSE_ASYM);
3352 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3353 }
3354 }
3355
3356 return 1;
3357}
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3360{
3361 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003362 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08003363 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 u16 current_speed;
3365 u8 current_duplex;
3366 int i, err;
3367
3368 tw32(MAC_EVENT, 0);
3369
3370 tw32_f(MAC_STATUS,
3371 (MAC_STATUS_SYNC_CHANGED |
3372 MAC_STATUS_CFG_CHANGED |
3373 MAC_STATUS_MI_COMPLETION |
3374 MAC_STATUS_LNKSTATE_CHANGED));
3375 udelay(40);
3376
Matt Carlson8ef21422008-05-02 16:47:53 -07003377 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3378 tw32_f(MAC_MI_MODE,
3379 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3380 udelay(80);
3381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003383 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
3385 /* Some third-party PHYs need to be reset on link going
3386 * down.
3387 */
3388 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3389 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3390 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3391 netif_carrier_ok(tp->dev)) {
3392 tg3_readphy(tp, MII_BMSR, &bmsr);
3393 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3394 !(bmsr & BMSR_LSTATUS))
3395 force_reset = 1;
3396 }
3397 if (force_reset)
3398 tg3_phy_reset(tp);
3399
Matt Carlson79eb6902010-02-17 15:17:03 +00003400 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 tg3_readphy(tp, MII_BMSR, &bmsr);
3402 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00003403 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 bmsr = 0;
3405
3406 if (!(bmsr & BMSR_LSTATUS)) {
3407 err = tg3_init_5401phy_dsp(tp);
3408 if (err)
3409 return err;
3410
3411 tg3_readphy(tp, MII_BMSR, &bmsr);
3412 for (i = 0; i < 1000; i++) {
3413 udelay(10);
3414 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3415 (bmsr & BMSR_LSTATUS)) {
3416 udelay(40);
3417 break;
3418 }
3419 }
3420
Matt Carlson79eb6902010-02-17 15:17:03 +00003421 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3422 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 !(bmsr & BMSR_LSTATUS) &&
3424 tp->link_config.active_speed == SPEED_1000) {
3425 err = tg3_phy_reset(tp);
3426 if (!err)
3427 err = tg3_init_5401phy_dsp(tp);
3428 if (err)
3429 return err;
3430 }
3431 }
3432 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3433 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3434 /* 5701 {A0,B0} CRC bug workaround */
3435 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00003436 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
3437 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
3438 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 }
3440
3441 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003442 tg3_readphy(tp, MII_TG3_ISTAT, &val);
3443 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003445 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003447 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3449
3450 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3451 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3452 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3453 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3454 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3455 else
3456 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3457 }
3458
3459 current_link_up = 0;
3460 current_speed = SPEED_INVALID;
3461 current_duplex = DUPLEX_INVALID;
3462
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003463 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00003464 err = tg3_phy_auxctl_read(tp,
3465 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3466 &val);
3467 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003468 tg3_phy_auxctl_write(tp,
3469 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3470 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 goto relink;
3472 }
3473 }
3474
3475 bmsr = 0;
3476 for (i = 0; i < 100; i++) {
3477 tg3_readphy(tp, MII_BMSR, &bmsr);
3478 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3479 (bmsr & BMSR_LSTATUS))
3480 break;
3481 udelay(40);
3482 }
3483
3484 if (bmsr & BMSR_LSTATUS) {
3485 u32 aux_stat, bmcr;
3486
3487 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3488 for (i = 0; i < 2000; i++) {
3489 udelay(10);
3490 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3491 aux_stat)
3492 break;
3493 }
3494
3495 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3496 &current_speed,
3497 &current_duplex);
3498
3499 bmcr = 0;
3500 for (i = 0; i < 200; i++) {
3501 tg3_readphy(tp, MII_BMCR, &bmcr);
3502 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3503 continue;
3504 if (bmcr && bmcr != 0x7fff)
3505 break;
3506 udelay(10);
3507 }
3508
Matt Carlsonef167e22007-12-20 20:10:01 -08003509 lcl_adv = 0;
3510 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
Matt Carlsonef167e22007-12-20 20:10:01 -08003512 tp->link_config.active_speed = current_speed;
3513 tp->link_config.active_duplex = current_duplex;
3514
3515 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3516 if ((bmcr & BMCR_ANENABLE) &&
3517 tg3_copper_is_advertising_all(tp,
3518 tp->link_config.advertising)) {
3519 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3520 &rmt_adv))
3521 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 }
3523 } else {
3524 if (!(bmcr & BMCR_ANENABLE) &&
3525 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003526 tp->link_config.duplex == current_duplex &&
3527 tp->link_config.flowctrl ==
3528 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 }
3531 }
3532
Matt Carlsonef167e22007-12-20 20:10:01 -08003533 if (current_link_up == 1 &&
3534 tp->link_config.active_duplex == DUPLEX_FULL)
3535 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 }
3537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538relink:
Matt Carlson80096062010-08-02 11:26:06 +00003539 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 tg3_phy_copper_begin(tp);
3541
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003542 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00003543 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
3544 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 current_link_up = 1;
3546 }
3547
3548 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
3549 if (current_link_up == 1) {
3550 if (tp->link_config.active_speed == SPEED_100 ||
3551 tp->link_config.active_speed == SPEED_10)
3552 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3553 else
3554 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003555 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003556 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3557 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3559
3560 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3561 if (tp->link_config.active_duplex == DUPLEX_HALF)
3562 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003565 if (current_link_up == 1 &&
3566 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003568 else
3569 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 }
3571
3572 /* ??? Without this setting Netgear GA302T PHY does not
3573 * ??? send/receive packets...
3574 */
Matt Carlson79eb6902010-02-17 15:17:03 +00003575 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
3577 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
3578 tw32_f(MAC_MI_MODE, tp->mi_mode);
3579 udelay(80);
3580 }
3581
3582 tw32_f(MAC_MODE, tp->mac_mode);
3583 udelay(40);
3584
Matt Carlson52b02d02010-10-14 10:37:41 +00003585 tg3_phy_eee_adjust(tp, current_link_up);
3586
Joe Perches63c3a662011-04-26 08:12:10 +00003587 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 /* Polled via timer. */
3589 tw32_f(MAC_EVENT, 0);
3590 } else {
3591 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3592 }
3593 udelay(40);
3594
3595 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
3596 current_link_up == 1 &&
3597 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00003598 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 udelay(120);
3600 tw32_f(MAC_STATUS,
3601 (MAC_STATUS_SYNC_CHANGED |
3602 MAC_STATUS_CFG_CHANGED));
3603 udelay(40);
3604 tg3_write_mem(tp,
3605 NIC_SRAM_FIRMWARE_MBOX,
3606 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
3607 }
3608
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003609 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00003610 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003611 u16 oldlnkctl, newlnkctl;
3612
3613 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00003614 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003615 &oldlnkctl);
3616 if (tp->link_config.active_speed == SPEED_100 ||
3617 tp->link_config.active_speed == SPEED_10)
3618 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
3619 else
3620 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
3621 if (newlnkctl != oldlnkctl)
3622 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00003623 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003624 newlnkctl);
3625 }
3626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 if (current_link_up != netif_carrier_ok(tp->dev)) {
3628 if (current_link_up)
3629 netif_carrier_on(tp->dev);
3630 else
3631 netif_carrier_off(tp->dev);
3632 tg3_link_report(tp);
3633 }
3634
3635 return 0;
3636}
3637
3638struct tg3_fiber_aneginfo {
3639 int state;
3640#define ANEG_STATE_UNKNOWN 0
3641#define ANEG_STATE_AN_ENABLE 1
3642#define ANEG_STATE_RESTART_INIT 2
3643#define ANEG_STATE_RESTART 3
3644#define ANEG_STATE_DISABLE_LINK_OK 4
3645#define ANEG_STATE_ABILITY_DETECT_INIT 5
3646#define ANEG_STATE_ABILITY_DETECT 6
3647#define ANEG_STATE_ACK_DETECT_INIT 7
3648#define ANEG_STATE_ACK_DETECT 8
3649#define ANEG_STATE_COMPLETE_ACK_INIT 9
3650#define ANEG_STATE_COMPLETE_ACK 10
3651#define ANEG_STATE_IDLE_DETECT_INIT 11
3652#define ANEG_STATE_IDLE_DETECT 12
3653#define ANEG_STATE_LINK_OK 13
3654#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
3655#define ANEG_STATE_NEXT_PAGE_WAIT 15
3656
3657 u32 flags;
3658#define MR_AN_ENABLE 0x00000001
3659#define MR_RESTART_AN 0x00000002
3660#define MR_AN_COMPLETE 0x00000004
3661#define MR_PAGE_RX 0x00000008
3662#define MR_NP_LOADED 0x00000010
3663#define MR_TOGGLE_TX 0x00000020
3664#define MR_LP_ADV_FULL_DUPLEX 0x00000040
3665#define MR_LP_ADV_HALF_DUPLEX 0x00000080
3666#define MR_LP_ADV_SYM_PAUSE 0x00000100
3667#define MR_LP_ADV_ASYM_PAUSE 0x00000200
3668#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
3669#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
3670#define MR_LP_ADV_NEXT_PAGE 0x00001000
3671#define MR_TOGGLE_RX 0x00002000
3672#define MR_NP_RX 0x00004000
3673
3674#define MR_LINK_OK 0x80000000
3675
3676 unsigned long link_time, cur_time;
3677
3678 u32 ability_match_cfg;
3679 int ability_match_count;
3680
3681 char ability_match, idle_match, ack_match;
3682
3683 u32 txconfig, rxconfig;
3684#define ANEG_CFG_NP 0x00000080
3685#define ANEG_CFG_ACK 0x00000040
3686#define ANEG_CFG_RF2 0x00000020
3687#define ANEG_CFG_RF1 0x00000010
3688#define ANEG_CFG_PS2 0x00000001
3689#define ANEG_CFG_PS1 0x00008000
3690#define ANEG_CFG_HD 0x00004000
3691#define ANEG_CFG_FD 0x00002000
3692#define ANEG_CFG_INVAL 0x00001f06
3693
3694};
3695#define ANEG_OK 0
3696#define ANEG_DONE 1
3697#define ANEG_TIMER_ENAB 2
3698#define ANEG_FAILED -1
3699
3700#define ANEG_STATE_SETTLE_TIME 10000
3701
3702static int tg3_fiber_aneg_smachine(struct tg3 *tp,
3703 struct tg3_fiber_aneginfo *ap)
3704{
Matt Carlson5be73b42007-12-20 20:09:29 -08003705 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 unsigned long delta;
3707 u32 rx_cfg_reg;
3708 int ret;
3709
3710 if (ap->state == ANEG_STATE_UNKNOWN) {
3711 ap->rxconfig = 0;
3712 ap->link_time = 0;
3713 ap->cur_time = 0;
3714 ap->ability_match_cfg = 0;
3715 ap->ability_match_count = 0;
3716 ap->ability_match = 0;
3717 ap->idle_match = 0;
3718 ap->ack_match = 0;
3719 }
3720 ap->cur_time++;
3721
3722 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
3723 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
3724
3725 if (rx_cfg_reg != ap->ability_match_cfg) {
3726 ap->ability_match_cfg = rx_cfg_reg;
3727 ap->ability_match = 0;
3728 ap->ability_match_count = 0;
3729 } else {
3730 if (++ap->ability_match_count > 1) {
3731 ap->ability_match = 1;
3732 ap->ability_match_cfg = rx_cfg_reg;
3733 }
3734 }
3735 if (rx_cfg_reg & ANEG_CFG_ACK)
3736 ap->ack_match = 1;
3737 else
3738 ap->ack_match = 0;
3739
3740 ap->idle_match = 0;
3741 } else {
3742 ap->idle_match = 1;
3743 ap->ability_match_cfg = 0;
3744 ap->ability_match_count = 0;
3745 ap->ability_match = 0;
3746 ap->ack_match = 0;
3747
3748 rx_cfg_reg = 0;
3749 }
3750
3751 ap->rxconfig = rx_cfg_reg;
3752 ret = ANEG_OK;
3753
Matt Carlson33f401a2010-04-05 10:19:27 +00003754 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 case ANEG_STATE_UNKNOWN:
3756 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
3757 ap->state = ANEG_STATE_AN_ENABLE;
3758
3759 /* fallthru */
3760 case ANEG_STATE_AN_ENABLE:
3761 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
3762 if (ap->flags & MR_AN_ENABLE) {
3763 ap->link_time = 0;
3764 ap->cur_time = 0;
3765 ap->ability_match_cfg = 0;
3766 ap->ability_match_count = 0;
3767 ap->ability_match = 0;
3768 ap->idle_match = 0;
3769 ap->ack_match = 0;
3770
3771 ap->state = ANEG_STATE_RESTART_INIT;
3772 } else {
3773 ap->state = ANEG_STATE_DISABLE_LINK_OK;
3774 }
3775 break;
3776
3777 case ANEG_STATE_RESTART_INIT:
3778 ap->link_time = ap->cur_time;
3779 ap->flags &= ~(MR_NP_LOADED);
3780 ap->txconfig = 0;
3781 tw32(MAC_TX_AUTO_NEG, 0);
3782 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3783 tw32_f(MAC_MODE, tp->mac_mode);
3784 udelay(40);
3785
3786 ret = ANEG_TIMER_ENAB;
3787 ap->state = ANEG_STATE_RESTART;
3788
3789 /* fallthru */
3790 case ANEG_STATE_RESTART:
3791 delta = ap->cur_time - ap->link_time;
Matt Carlson859a5882010-04-05 10:19:28 +00003792 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a5882010-04-05 10:19:28 +00003794 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 break;
3797
3798 case ANEG_STATE_DISABLE_LINK_OK:
3799 ret = ANEG_DONE;
3800 break;
3801
3802 case ANEG_STATE_ABILITY_DETECT_INIT:
3803 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08003804 ap->txconfig = ANEG_CFG_FD;
3805 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3806 if (flowctrl & ADVERTISE_1000XPAUSE)
3807 ap->txconfig |= ANEG_CFG_PS1;
3808 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3809 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3811 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3812 tw32_f(MAC_MODE, tp->mac_mode);
3813 udelay(40);
3814
3815 ap->state = ANEG_STATE_ABILITY_DETECT;
3816 break;
3817
3818 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a5882010-04-05 10:19:28 +00003819 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 break;
3822
3823 case ANEG_STATE_ACK_DETECT_INIT:
3824 ap->txconfig |= ANEG_CFG_ACK;
3825 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3826 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3827 tw32_f(MAC_MODE, tp->mac_mode);
3828 udelay(40);
3829
3830 ap->state = ANEG_STATE_ACK_DETECT;
3831
3832 /* fallthru */
3833 case ANEG_STATE_ACK_DETECT:
3834 if (ap->ack_match != 0) {
3835 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
3836 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
3837 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
3838 } else {
3839 ap->state = ANEG_STATE_AN_ENABLE;
3840 }
3841 } else if (ap->ability_match != 0 &&
3842 ap->rxconfig == 0) {
3843 ap->state = ANEG_STATE_AN_ENABLE;
3844 }
3845 break;
3846
3847 case ANEG_STATE_COMPLETE_ACK_INIT:
3848 if (ap->rxconfig & ANEG_CFG_INVAL) {
3849 ret = ANEG_FAILED;
3850 break;
3851 }
3852 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
3853 MR_LP_ADV_HALF_DUPLEX |
3854 MR_LP_ADV_SYM_PAUSE |
3855 MR_LP_ADV_ASYM_PAUSE |
3856 MR_LP_ADV_REMOTE_FAULT1 |
3857 MR_LP_ADV_REMOTE_FAULT2 |
3858 MR_LP_ADV_NEXT_PAGE |
3859 MR_TOGGLE_RX |
3860 MR_NP_RX);
3861 if (ap->rxconfig & ANEG_CFG_FD)
3862 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
3863 if (ap->rxconfig & ANEG_CFG_HD)
3864 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
3865 if (ap->rxconfig & ANEG_CFG_PS1)
3866 ap->flags |= MR_LP_ADV_SYM_PAUSE;
3867 if (ap->rxconfig & ANEG_CFG_PS2)
3868 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
3869 if (ap->rxconfig & ANEG_CFG_RF1)
3870 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3871 if (ap->rxconfig & ANEG_CFG_RF2)
3872 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3873 if (ap->rxconfig & ANEG_CFG_NP)
3874 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3875
3876 ap->link_time = ap->cur_time;
3877
3878 ap->flags ^= (MR_TOGGLE_TX);
3879 if (ap->rxconfig & 0x0008)
3880 ap->flags |= MR_TOGGLE_RX;
3881 if (ap->rxconfig & ANEG_CFG_NP)
3882 ap->flags |= MR_NP_RX;
3883 ap->flags |= MR_PAGE_RX;
3884
3885 ap->state = ANEG_STATE_COMPLETE_ACK;
3886 ret = ANEG_TIMER_ENAB;
3887 break;
3888
3889 case ANEG_STATE_COMPLETE_ACK:
3890 if (ap->ability_match != 0 &&
3891 ap->rxconfig == 0) {
3892 ap->state = ANEG_STATE_AN_ENABLE;
3893 break;
3894 }
3895 delta = ap->cur_time - ap->link_time;
3896 if (delta > ANEG_STATE_SETTLE_TIME) {
3897 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3898 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3899 } else {
3900 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3901 !(ap->flags & MR_NP_RX)) {
3902 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3903 } else {
3904 ret = ANEG_FAILED;
3905 }
3906 }
3907 }
3908 break;
3909
3910 case ANEG_STATE_IDLE_DETECT_INIT:
3911 ap->link_time = ap->cur_time;
3912 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3913 tw32_f(MAC_MODE, tp->mac_mode);
3914 udelay(40);
3915
3916 ap->state = ANEG_STATE_IDLE_DETECT;
3917 ret = ANEG_TIMER_ENAB;
3918 break;
3919
3920 case ANEG_STATE_IDLE_DETECT:
3921 if (ap->ability_match != 0 &&
3922 ap->rxconfig == 0) {
3923 ap->state = ANEG_STATE_AN_ENABLE;
3924 break;
3925 }
3926 delta = ap->cur_time - ap->link_time;
3927 if (delta > ANEG_STATE_SETTLE_TIME) {
3928 /* XXX another gem from the Broadcom driver :( */
3929 ap->state = ANEG_STATE_LINK_OK;
3930 }
3931 break;
3932
3933 case ANEG_STATE_LINK_OK:
3934 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3935 ret = ANEG_DONE;
3936 break;
3937
3938 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3939 /* ??? unimplemented */
3940 break;
3941
3942 case ANEG_STATE_NEXT_PAGE_WAIT:
3943 /* ??? unimplemented */
3944 break;
3945
3946 default:
3947 ret = ANEG_FAILED;
3948 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
3951 return ret;
3952}
3953
Matt Carlson5be73b42007-12-20 20:09:29 -08003954static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
3956 int res = 0;
3957 struct tg3_fiber_aneginfo aninfo;
3958 int status = ANEG_FAILED;
3959 unsigned int tick;
3960 u32 tmp;
3961
3962 tw32_f(MAC_TX_AUTO_NEG, 0);
3963
3964 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3965 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3966 udelay(40);
3967
3968 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3969 udelay(40);
3970
3971 memset(&aninfo, 0, sizeof(aninfo));
3972 aninfo.flags |= MR_AN_ENABLE;
3973 aninfo.state = ANEG_STATE_UNKNOWN;
3974 aninfo.cur_time = 0;
3975 tick = 0;
3976 while (++tick < 195000) {
3977 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3978 if (status == ANEG_DONE || status == ANEG_FAILED)
3979 break;
3980
3981 udelay(1);
3982 }
3983
3984 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3985 tw32_f(MAC_MODE, tp->mac_mode);
3986 udelay(40);
3987
Matt Carlson5be73b42007-12-20 20:09:29 -08003988 *txflags = aninfo.txconfig;
3989 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
3991 if (status == ANEG_DONE &&
3992 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3993 MR_LP_ADV_FULL_DUPLEX)))
3994 res = 1;
3995
3996 return res;
3997}
3998
3999static void tg3_init_bcm8002(struct tg3 *tp)
4000{
4001 u32 mac_status = tr32(MAC_STATUS);
4002 int i;
4003
4004 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00004005 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 !(mac_status & MAC_STATUS_PCS_SYNCED))
4007 return;
4008
4009 /* Set PLL lock range. */
4010 tg3_writephy(tp, 0x16, 0x8007);
4011
4012 /* SW reset */
4013 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4014
4015 /* Wait for reset to complete. */
4016 /* XXX schedule_timeout() ... */
4017 for (i = 0; i < 500; i++)
4018 udelay(10);
4019
4020 /* Config mode; select PMA/Ch 1 regs. */
4021 tg3_writephy(tp, 0x10, 0x8411);
4022
4023 /* Enable auto-lock and comdet, select txclk for tx. */
4024 tg3_writephy(tp, 0x11, 0x0a10);
4025
4026 tg3_writephy(tp, 0x18, 0x00a0);
4027 tg3_writephy(tp, 0x16, 0x41ff);
4028
4029 /* Assert and deassert POR. */
4030 tg3_writephy(tp, 0x13, 0x0400);
4031 udelay(40);
4032 tg3_writephy(tp, 0x13, 0x0000);
4033
4034 tg3_writephy(tp, 0x11, 0x0a50);
4035 udelay(40);
4036 tg3_writephy(tp, 0x11, 0x0a10);
4037
4038 /* Wait for signal to stabilize */
4039 /* XXX schedule_timeout() ... */
4040 for (i = 0; i < 15000; i++)
4041 udelay(10);
4042
4043 /* Deselect the channel register so we can read the PHYID
4044 * later.
4045 */
4046 tg3_writephy(tp, 0x10, 0x8011);
4047}
4048
4049static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4050{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004051 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 u32 sg_dig_ctrl, sg_dig_status;
4053 u32 serdes_cfg, expected_sg_dig_ctrl;
4054 int workaround, port_a;
4055 int current_link_up;
4056
4057 serdes_cfg = 0;
4058 expected_sg_dig_ctrl = 0;
4059 workaround = 0;
4060 port_a = 1;
4061 current_link_up = 0;
4062
4063 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4064 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4065 workaround = 1;
4066 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4067 port_a = 0;
4068
4069 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4070 /* preserve bits 20-23 for voltage regulator */
4071 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4072 }
4073
4074 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4075
4076 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004077 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 if (workaround) {
4079 u32 val = serdes_cfg;
4080
4081 if (port_a)
4082 val |= 0xc010000;
4083 else
4084 val |= 0x4010000;
4085 tw32_f(MAC_SERDES_CFG, val);
4086 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004087
4088 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 }
4090 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4091 tg3_setup_flow_control(tp, 0, 0);
4092 current_link_up = 1;
4093 }
4094 goto out;
4095 }
4096
4097 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004098 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
Matt Carlson82cd3d12007-12-20 20:09:00 -08004100 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4101 if (flowctrl & ADVERTISE_1000XPAUSE)
4102 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4103 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4104 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
4106 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004107 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004108 tp->serdes_counter &&
4109 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4110 MAC_STATUS_RCVD_CFG)) ==
4111 MAC_STATUS_PCS_SYNCED)) {
4112 tp->serdes_counter--;
4113 current_link_up = 1;
4114 goto out;
4115 }
4116restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 if (workaround)
4118 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004119 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 udelay(5);
4121 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4122
Michael Chan3d3ebe72006-09-27 15:59:15 -07004123 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004124 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4126 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004127 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 mac_status = tr32(MAC_STATUS);
4129
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004130 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004132 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
Matt Carlson82cd3d12007-12-20 20:09:00 -08004134 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4135 local_adv |= ADVERTISE_1000XPAUSE;
4136 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4137 local_adv |= ADVERTISE_1000XPSE_ASYM;
4138
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004139 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004140 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004141 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004142 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143
4144 tg3_setup_flow_control(tp, local_adv, remote_adv);
4145 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004146 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004147 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004148 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004149 if (tp->serdes_counter)
4150 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 else {
4152 if (workaround) {
4153 u32 val = serdes_cfg;
4154
4155 if (port_a)
4156 val |= 0xc010000;
4157 else
4158 val |= 0x4010000;
4159
4160 tw32_f(MAC_SERDES_CFG, val);
4161 }
4162
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004163 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 udelay(40);
4165
4166 /* Link parallel detection - link is up */
4167 /* only if we have PCS_SYNC and not */
4168 /* receiving config code words */
4169 mac_status = tr32(MAC_STATUS);
4170 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4171 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4172 tg3_setup_flow_control(tp, 0, 0);
4173 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004174 tp->phy_flags |=
4175 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004176 tp->serdes_counter =
4177 SERDES_PARALLEL_DET_TIMEOUT;
4178 } else
4179 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 }
4181 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004182 } else {
4183 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004184 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 }
4186
4187out:
4188 return current_link_up;
4189}
4190
4191static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4192{
4193 int current_link_up = 0;
4194
Michael Chan5cf64b82007-05-05 12:11:21 -07004195 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
4198 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004199 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004201
Matt Carlson5be73b42007-12-20 20:09:29 -08004202 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4203 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Matt Carlson5be73b42007-12-20 20:09:29 -08004205 if (txflags & ANEG_CFG_PS1)
4206 local_adv |= ADVERTISE_1000XPAUSE;
4207 if (txflags & ANEG_CFG_PS2)
4208 local_adv |= ADVERTISE_1000XPSE_ASYM;
4209
4210 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4211 remote_adv |= LPA_1000XPAUSE;
4212 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4213 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
4215 tg3_setup_flow_control(tp, local_adv, remote_adv);
4216
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 current_link_up = 1;
4218 }
4219 for (i = 0; i < 30; i++) {
4220 udelay(20);
4221 tw32_f(MAC_STATUS,
4222 (MAC_STATUS_SYNC_CHANGED |
4223 MAC_STATUS_CFG_CHANGED));
4224 udelay(40);
4225 if ((tr32(MAC_STATUS) &
4226 (MAC_STATUS_SYNC_CHANGED |
4227 MAC_STATUS_CFG_CHANGED)) == 0)
4228 break;
4229 }
4230
4231 mac_status = tr32(MAC_STATUS);
4232 if (current_link_up == 0 &&
4233 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4234 !(mac_status & MAC_STATUS_RCVD_CFG))
4235 current_link_up = 1;
4236 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004237 tg3_setup_flow_control(tp, 0, 0);
4238
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 /* Forcing 1000FD link up. */
4240 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
4242 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4243 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004244
4245 tw32_f(MAC_MODE, tp->mac_mode);
4246 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 }
4248
4249out:
4250 return current_link_up;
4251}
4252
4253static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4254{
4255 u32 orig_pause_cfg;
4256 u16 orig_active_speed;
4257 u8 orig_active_duplex;
4258 u32 mac_status;
4259 int current_link_up;
4260 int i;
4261
Matt Carlson8d018622007-12-20 20:05:44 -08004262 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 orig_active_speed = tp->link_config.active_speed;
4264 orig_active_duplex = tp->link_config.active_duplex;
4265
Joe Perches63c3a662011-04-26 08:12:10 +00004266 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004268 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 mac_status = tr32(MAC_STATUS);
4270 mac_status &= (MAC_STATUS_PCS_SYNCED |
4271 MAC_STATUS_SIGNAL_DET |
4272 MAC_STATUS_CFG_CHANGED |
4273 MAC_STATUS_RCVD_CFG);
4274 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4275 MAC_STATUS_SIGNAL_DET)) {
4276 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4277 MAC_STATUS_CFG_CHANGED));
4278 return 0;
4279 }
4280 }
4281
4282 tw32_f(MAC_TX_AUTO_NEG, 0);
4283
4284 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
4285 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
4286 tw32_f(MAC_MODE, tp->mac_mode);
4287 udelay(40);
4288
Matt Carlson79eb6902010-02-17 15:17:03 +00004289 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 tg3_init_bcm8002(tp);
4291
4292 /* Enable link change event even when serdes polling. */
4293 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4294 udelay(40);
4295
4296 current_link_up = 0;
4297 mac_status = tr32(MAC_STATUS);
4298
Joe Perches63c3a662011-04-26 08:12:10 +00004299 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
4301 else
4302 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
4303
Matt Carlson898a56f2009-08-28 14:02:40 +00004304 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00004306 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
4308 for (i = 0; i < 100; i++) {
4309 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4310 MAC_STATUS_CFG_CHANGED));
4311 udelay(5);
4312 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07004313 MAC_STATUS_CFG_CHANGED |
4314 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 break;
4316 }
4317
4318 mac_status = tr32(MAC_STATUS);
4319 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
4320 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004321 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
4322 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 tw32_f(MAC_MODE, (tp->mac_mode |
4324 MAC_MODE_SEND_CONFIGS));
4325 udelay(1);
4326 tw32_f(MAC_MODE, tp->mac_mode);
4327 }
4328 }
4329
4330 if (current_link_up == 1) {
4331 tp->link_config.active_speed = SPEED_1000;
4332 tp->link_config.active_duplex = DUPLEX_FULL;
4333 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4334 LED_CTRL_LNKLED_OVERRIDE |
4335 LED_CTRL_1000MBPS_ON));
4336 } else {
4337 tp->link_config.active_speed = SPEED_INVALID;
4338 tp->link_config.active_duplex = DUPLEX_INVALID;
4339 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4340 LED_CTRL_LNKLED_OVERRIDE |
4341 LED_CTRL_TRAFFIC_OVERRIDE));
4342 }
4343
4344 if (current_link_up != netif_carrier_ok(tp->dev)) {
4345 if (current_link_up)
4346 netif_carrier_on(tp->dev);
4347 else
4348 netif_carrier_off(tp->dev);
4349 tg3_link_report(tp);
4350 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004351 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 if (orig_pause_cfg != now_pause_cfg ||
4353 orig_active_speed != tp->link_config.active_speed ||
4354 orig_active_duplex != tp->link_config.active_duplex)
4355 tg3_link_report(tp);
4356 }
4357
4358 return 0;
4359}
4360
Michael Chan747e8f82005-07-25 12:33:22 -07004361static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4362{
4363 int current_link_up, err = 0;
4364 u32 bmsr, bmcr;
4365 u16 current_speed;
4366 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004367 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004368
4369 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4370 tw32_f(MAC_MODE, tp->mac_mode);
4371 udelay(40);
4372
4373 tw32(MAC_EVENT, 0);
4374
4375 tw32_f(MAC_STATUS,
4376 (MAC_STATUS_SYNC_CHANGED |
4377 MAC_STATUS_CFG_CHANGED |
4378 MAC_STATUS_MI_COMPLETION |
4379 MAC_STATUS_LNKSTATE_CHANGED));
4380 udelay(40);
4381
4382 if (force_reset)
4383 tg3_phy_reset(tp);
4384
4385 current_link_up = 0;
4386 current_speed = SPEED_INVALID;
4387 current_duplex = DUPLEX_INVALID;
4388
4389 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4390 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004391 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4392 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4393 bmsr |= BMSR_LSTATUS;
4394 else
4395 bmsr &= ~BMSR_LSTATUS;
4396 }
Michael Chan747e8f82005-07-25 12:33:22 -07004397
4398 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4399
4400 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004401 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004402 /* do nothing, just check for link up at the end */
4403 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4404 u32 adv, new_adv;
4405
4406 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4407 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4408 ADVERTISE_1000XPAUSE |
4409 ADVERTISE_1000XPSE_ASYM |
4410 ADVERTISE_SLCT);
4411
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004412 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004413
4414 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4415 new_adv |= ADVERTISE_1000XHALF;
4416 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4417 new_adv |= ADVERTISE_1000XFULL;
4418
4419 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4420 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4421 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4422 tg3_writephy(tp, MII_BMCR, bmcr);
4423
4424 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004425 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004426 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004427
4428 return err;
4429 }
4430 } else {
4431 u32 new_bmcr;
4432
4433 bmcr &= ~BMCR_SPEED1000;
4434 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4435
4436 if (tp->link_config.duplex == DUPLEX_FULL)
4437 new_bmcr |= BMCR_FULLDPLX;
4438
4439 if (new_bmcr != bmcr) {
4440 /* BMCR_SPEED1000 is a reserved bit that needs
4441 * to be set on write.
4442 */
4443 new_bmcr |= BMCR_SPEED1000;
4444
4445 /* Force a linkdown */
4446 if (netif_carrier_ok(tp->dev)) {
4447 u32 adv;
4448
4449 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4450 adv &= ~(ADVERTISE_1000XFULL |
4451 ADVERTISE_1000XHALF |
4452 ADVERTISE_SLCT);
4453 tg3_writephy(tp, MII_ADVERTISE, adv);
4454 tg3_writephy(tp, MII_BMCR, bmcr |
4455 BMCR_ANRESTART |
4456 BMCR_ANENABLE);
4457 udelay(10);
4458 netif_carrier_off(tp->dev);
4459 }
4460 tg3_writephy(tp, MII_BMCR, new_bmcr);
4461 bmcr = new_bmcr;
4462 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4463 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004464 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4465 ASIC_REV_5714) {
4466 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4467 bmsr |= BMSR_LSTATUS;
4468 else
4469 bmsr &= ~BMSR_LSTATUS;
4470 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004471 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004472 }
4473 }
4474
4475 if (bmsr & BMSR_LSTATUS) {
4476 current_speed = SPEED_1000;
4477 current_link_up = 1;
4478 if (bmcr & BMCR_FULLDPLX)
4479 current_duplex = DUPLEX_FULL;
4480 else
4481 current_duplex = DUPLEX_HALF;
4482
Matt Carlsonef167e22007-12-20 20:10:01 -08004483 local_adv = 0;
4484 remote_adv = 0;
4485
Michael Chan747e8f82005-07-25 12:33:22 -07004486 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004487 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004488
4489 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4490 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4491 common = local_adv & remote_adv;
4492 if (common & (ADVERTISE_1000XHALF |
4493 ADVERTISE_1000XFULL)) {
4494 if (common & ADVERTISE_1000XFULL)
4495 current_duplex = DUPLEX_FULL;
4496 else
4497 current_duplex = DUPLEX_HALF;
Joe Perches63c3a662011-04-26 08:12:10 +00004498 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00004499 /* Link is up via parallel detect */
Matt Carlson859a5882010-04-05 10:19:28 +00004500 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07004501 current_link_up = 0;
Matt Carlson859a5882010-04-05 10:19:28 +00004502 }
Michael Chan747e8f82005-07-25 12:33:22 -07004503 }
4504 }
4505
Matt Carlsonef167e22007-12-20 20:10:01 -08004506 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4507 tg3_setup_flow_control(tp, local_adv, remote_adv);
4508
Michael Chan747e8f82005-07-25 12:33:22 -07004509 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4510 if (tp->link_config.active_duplex == DUPLEX_HALF)
4511 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4512
4513 tw32_f(MAC_MODE, tp->mac_mode);
4514 udelay(40);
4515
4516 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4517
4518 tp->link_config.active_speed = current_speed;
4519 tp->link_config.active_duplex = current_duplex;
4520
4521 if (current_link_up != netif_carrier_ok(tp->dev)) {
4522 if (current_link_up)
4523 netif_carrier_on(tp->dev);
4524 else {
4525 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004526 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004527 }
4528 tg3_link_report(tp);
4529 }
4530 return err;
4531}
4532
4533static void tg3_serdes_parallel_detect(struct tg3 *tp)
4534{
Michael Chan3d3ebe72006-09-27 15:59:15 -07004535 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07004536 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07004537 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07004538 return;
4539 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004540
Michael Chan747e8f82005-07-25 12:33:22 -07004541 if (!netif_carrier_ok(tp->dev) &&
4542 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
4543 u32 bmcr;
4544
4545 tg3_readphy(tp, MII_BMCR, &bmcr);
4546 if (bmcr & BMCR_ANENABLE) {
4547 u32 phy1, phy2;
4548
4549 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004550 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
4551 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07004552
4553 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004554 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4555 MII_TG3_DSP_EXP1_INT_STAT);
4556 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
4557 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004558
4559 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
4560 /* We have signal detect and not receiving
4561 * config code words, link is up by parallel
4562 * detection.
4563 */
4564
4565 bmcr &= ~BMCR_ANENABLE;
4566 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
4567 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004568 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004569 }
4570 }
Matt Carlson859a5882010-04-05 10:19:28 +00004571 } else if (netif_carrier_ok(tp->dev) &&
4572 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004573 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004574 u32 phy2;
4575
4576 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004577 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4578 MII_TG3_DSP_EXP1_INT_STAT);
4579 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004580 if (phy2 & 0x20) {
4581 u32 bmcr;
4582
4583 /* Config code words received, turn on autoneg. */
4584 tg3_readphy(tp, MII_BMCR, &bmcr);
4585 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
4586
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004587 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004588
4589 }
4590 }
4591}
4592
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593static int tg3_setup_phy(struct tg3 *tp, int force_reset)
4594{
Matt Carlsonf2096f92011-04-05 14:22:48 +00004595 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 int err;
4597
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004598 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004600 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07004601 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a5882010-04-05 10:19:28 +00004602 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
Matt Carlsonbcb37f62008-11-03 16:52:09 -08004605 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004606 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08004607
4608 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
4609 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
4610 scale = 65;
4611 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
4612 scale = 6;
4613 else
4614 scale = 12;
4615
4616 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
4617 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
4618 tw32(GRC_MISC_CFG, val);
4619 }
4620
Matt Carlsonf2096f92011-04-05 14:22:48 +00004621 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4622 (6 << TX_LENGTHS_IPG_SHIFT);
4623 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
4624 val |= tr32(MAC_TX_LENGTHS) &
4625 (TX_LENGTHS_JMB_FRM_LEN_MSK |
4626 TX_LENGTHS_CNT_DWN_VAL_MSK);
4627
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 if (tp->link_config.active_speed == SPEED_1000 &&
4629 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00004630 tw32(MAC_TX_LENGTHS, val |
4631 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00004633 tw32(MAC_TX_LENGTHS, val |
4634 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
Joe Perches63c3a662011-04-26 08:12:10 +00004636 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 if (netif_carrier_ok(tp->dev)) {
4638 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07004639 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 } else {
4641 tw32(HOSTCC_STAT_COAL_TICKS, 0);
4642 }
4643 }
4644
Joe Perches63c3a662011-04-26 08:12:10 +00004645 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004646 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07004647 if (!netif_carrier_ok(tp->dev))
4648 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
4649 tp->pwrmgmt_thresh;
4650 else
4651 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
4652 tw32(PCIE_PWR_MGMT_THRESH, val);
4653 }
4654
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 return err;
4656}
4657
Matt Carlson66cfd1b2010-09-30 10:34:30 +00004658static inline int tg3_irq_sync(struct tg3 *tp)
4659{
4660 return tp->irq_sync;
4661}
4662
Matt Carlson97bd8e42011-04-13 11:05:04 +00004663static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
4664{
4665 int i;
4666
4667 dst = (u32 *)((u8 *)dst + off);
4668 for (i = 0; i < len; i += sizeof(u32))
4669 *dst++ = tr32(off + i);
4670}
4671
4672static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
4673{
4674 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
4675 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
4676 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
4677 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
4678 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
4679 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
4680 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
4681 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
4682 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
4683 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
4684 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
4685 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
4686 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
4687 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
4688 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
4689 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
4690 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
4691 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
4692 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
4693
Joe Perches63c3a662011-04-26 08:12:10 +00004694 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004695 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
4696
4697 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
4698 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
4699 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
4700 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
4701 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
4702 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
4703 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
4704 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
4705
Joe Perches63c3a662011-04-26 08:12:10 +00004706 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004707 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
4708 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
4709 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
4710 }
4711
4712 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
4713 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
4714 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
4715 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
4716 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
4717
Joe Perches63c3a662011-04-26 08:12:10 +00004718 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004719 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
4720}
4721
4722static void tg3_dump_state(struct tg3 *tp)
4723{
4724 int i;
4725 u32 *regs;
4726
4727 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
4728 if (!regs) {
4729 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
4730 return;
4731 }
4732
Joe Perches63c3a662011-04-26 08:12:10 +00004733 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004734 /* Read up to but not including private PCI registers */
4735 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
4736 regs[i / sizeof(u32)] = tr32(i);
4737 } else
4738 tg3_dump_legacy_regs(tp, regs);
4739
4740 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
4741 if (!regs[i + 0] && !regs[i + 1] &&
4742 !regs[i + 2] && !regs[i + 3])
4743 continue;
4744
4745 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
4746 i * 4,
4747 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
4748 }
4749
4750 kfree(regs);
4751
4752 for (i = 0; i < tp->irq_cnt; i++) {
4753 struct tg3_napi *tnapi = &tp->napi[i];
4754
4755 /* SW status block */
4756 netdev_err(tp->dev,
4757 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
4758 i,
4759 tnapi->hw_status->status,
4760 tnapi->hw_status->status_tag,
4761 tnapi->hw_status->rx_jumbo_consumer,
4762 tnapi->hw_status->rx_consumer,
4763 tnapi->hw_status->rx_mini_consumer,
4764 tnapi->hw_status->idx[0].rx_producer,
4765 tnapi->hw_status->idx[0].tx_consumer);
4766
4767 netdev_err(tp->dev,
4768 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
4769 i,
4770 tnapi->last_tag, tnapi->last_irq_tag,
4771 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
4772 tnapi->rx_rcb_ptr,
4773 tnapi->prodring.rx_std_prod_idx,
4774 tnapi->prodring.rx_std_cons_idx,
4775 tnapi->prodring.rx_jmb_prod_idx,
4776 tnapi->prodring.rx_jmb_cons_idx);
4777 }
4778}
4779
Michael Chandf3e6542006-05-26 17:48:07 -07004780/* This is called whenever we suspect that the system chipset is re-
4781 * ordering the sequence of MMIO to the tx send mailbox. The symptom
4782 * is bogus tx completions. We try to recover by setting the
4783 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
4784 * in the workqueue.
4785 */
4786static void tg3_tx_recover(struct tg3 *tp)
4787{
Joe Perches63c3a662011-04-26 08:12:10 +00004788 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07004789 tp->write32_tx_mbox == tg3_write_indirect_mbox);
4790
Matt Carlson5129c3a2010-04-05 10:19:23 +00004791 netdev_warn(tp->dev,
4792 "The system may be re-ordering memory-mapped I/O "
4793 "cycles to the network device, attempting to recover. "
4794 "Please report the problem to the driver maintainer "
4795 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07004796
4797 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00004798 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07004799 spin_unlock(&tp->lock);
4800}
4801
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004802static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07004803{
Matt Carlsonf65aac12010-08-02 11:26:03 +00004804 /* Tell compiler to fetch tx indices from memory. */
4805 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004806 return tnapi->tx_pending -
4807 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07004808}
4809
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810/* Tigon3 never reports partial packet sends. So we do not
4811 * need special logic to handle SKBs that have not had all
4812 * of their frags sent yet, like SunGEM does.
4813 */
Matt Carlson17375d22009-08-28 14:02:18 +00004814static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815{
Matt Carlson17375d22009-08-28 14:02:18 +00004816 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00004817 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004818 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004819 struct netdev_queue *txq;
4820 int index = tnapi - tp->napi;
4821
Joe Perches63c3a662011-04-26 08:12:10 +00004822 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004823 index--;
4824
4825 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
4827 while (sw_idx != hw_idx) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00004828 struct tg3_tx_ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07004830 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Michael Chandf3e6542006-05-26 17:48:07 -07004832 if (unlikely(skb == NULL)) {
4833 tg3_tx_recover(tp);
4834 return;
4835 }
4836
Alexander Duyckf4188d82009-12-02 16:48:38 +00004837 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004838 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004839 skb_headlen(skb),
4840 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841
4842 ri->skb = NULL;
4843
Matt Carlsone01ee142011-07-27 14:20:50 +00004844 while (ri->fragmented) {
4845 ri->fragmented = false;
4846 sw_idx = NEXT_TX(sw_idx);
4847 ri = &tnapi->tx_buffers[sw_idx];
4848 }
4849
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 sw_idx = NEXT_TX(sw_idx);
4851
4852 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004853 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07004854 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
4855 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00004856
4857 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004858 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004859 skb_shinfo(skb)->frags[i].size,
4860 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00004861
4862 while (ri->fragmented) {
4863 ri->fragmented = false;
4864 sw_idx = NEXT_TX(sw_idx);
4865 ri = &tnapi->tx_buffers[sw_idx];
4866 }
4867
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 sw_idx = NEXT_TX(sw_idx);
4869 }
4870
David S. Millerf47c11e2005-06-24 20:18:35 -07004871 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07004872
4873 if (unlikely(tx_bug)) {
4874 tg3_tx_recover(tp);
4875 return;
4876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 }
4878
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004879 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
Michael Chan1b2a7202006-08-07 21:46:02 -07004881 /* Need to make the tx_cons update visible to tg3_start_xmit()
4882 * before checking for netif_queue_stopped(). Without the
4883 * memory barrier, there is a small possibility that tg3_start_xmit()
4884 * will miss it and cause the queue to be stopped forever.
4885 */
4886 smp_mb();
4887
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004888 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004889 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004890 __netif_tx_lock(txq, smp_processor_id());
4891 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004892 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004893 netif_tx_wake_queue(txq);
4894 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07004895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896}
4897
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004898static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
4899{
4900 if (!ri->skb)
4901 return;
4902
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004903 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004904 map_sz, PCI_DMA_FROMDEVICE);
4905 dev_kfree_skb_any(ri->skb);
4906 ri->skb = NULL;
4907}
4908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909/* Returns size of skb allocated or < 0 on error.
4910 *
4911 * We only need to fill in the address because the other members
4912 * of the RX descriptor are invariant, see tg3_init_rings.
4913 *
4914 * Note the purposeful assymetry of cpu vs. chip accesses. For
4915 * posting buffers we only dirty the first cache line of the RX
4916 * descriptor (containing the address). Whereas for the RX status
4917 * buffers the cpu only reads the last cacheline of the RX descriptor
4918 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
4919 */
Matt Carlson86b21e52009-11-13 13:03:45 +00004920static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00004921 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922{
4923 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00004924 struct ring_info *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 struct sk_buff *skb;
4926 dma_addr_t mapping;
4927 int skb_size, dest_idx;
4928
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929 switch (opaque_key) {
4930 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004931 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00004932 desc = &tpr->rx_std[dest_idx];
4933 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004934 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 break;
4936
4937 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00004938 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00004939 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00004940 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004941 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942 break;
4943
4944 default:
4945 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947
4948 /* Do not overwrite any of the map or rp information
4949 * until we are sure we can commit to a new buffer.
4950 *
4951 * Callers depend upon this behavior and assume that
4952 * we leave everything unchanged if we fail.
4953 */
Matt Carlson287be122009-08-28 13:58:46 +00004954 skb = netdev_alloc_skb(tp->dev, skb_size + tp->rx_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 if (skb == NULL)
4956 return -ENOMEM;
4957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958 skb_reserve(skb, tp->rx_offset);
4959
Matt Carlson287be122009-08-28 13:58:46 +00004960 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00004962 if (pci_dma_mapping_error(tp->pdev, mapping)) {
4963 dev_kfree_skb(skb);
4964 return -EIO;
4965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966
4967 map->skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004968 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 desc->addr_hi = ((u64)mapping >> 32);
4971 desc->addr_lo = ((u64)mapping & 0xffffffff);
4972
4973 return skb_size;
4974}
4975
4976/* We only need to move over in the address because the other
4977 * members of the RX descriptor are invariant. See notes above
4978 * tg3_alloc_rx_skb for full details.
4979 */
Matt Carlsona3896162009-11-13 13:03:44 +00004980static void tg3_recycle_rx(struct tg3_napi *tnapi,
4981 struct tg3_rx_prodring_set *dpr,
4982 u32 opaque_key, int src_idx,
4983 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984{
Matt Carlson17375d22009-08-28 14:02:18 +00004985 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
4987 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00004988 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004989 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
4991 switch (opaque_key) {
4992 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004993 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00004994 dest_desc = &dpr->rx_std[dest_idx];
4995 dest_map = &dpr->rx_std_buffers[dest_idx];
4996 src_desc = &spr->rx_std[src_idx];
4997 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 break;
4999
5000 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00005001 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00005002 dest_desc = &dpr->rx_jmb[dest_idx].std;
5003 dest_map = &dpr->rx_jmb_buffers[dest_idx];
5004 src_desc = &spr->rx_jmb[src_idx].std;
5005 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 break;
5007
5008 default:
5009 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07005010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
5012 dest_map->skb = src_map->skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005013 dma_unmap_addr_set(dest_map, mapping,
5014 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 dest_desc->addr_hi = src_desc->addr_hi;
5016 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00005017
5018 /* Ensure that the update to the skb happens after the physical
5019 * addresses have been transferred to the new BD location.
5020 */
5021 smp_wmb();
5022
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 src_map->skb = NULL;
5024}
5025
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026/* The RX ring scheme is composed of multiple rings which post fresh
5027 * buffers to the chip, and one special ring the chip uses to report
5028 * status back to the host.
5029 *
5030 * The special ring reports the status of received packets to the
5031 * host. The chip does not write into the original descriptor the
5032 * RX buffer was obtained from. The chip simply takes the original
5033 * descriptor as provided by the host, updates the status and length
5034 * field, then writes this into the next status ring entry.
5035 *
5036 * Each ring the host uses to post buffers to the chip is described
5037 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5038 * it is first placed into the on-chip ram. When the packet's length
5039 * is known, it walks down the TG3_BDINFO entries to select the ring.
5040 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5041 * which is within the range of the new packet's length is chosen.
5042 *
5043 * The "separate ring for rx status" scheme may sound queer, but it makes
5044 * sense from a cache coherency perspective. If only the host writes
5045 * to the buffer post rings, and only the chip writes to the rx status
5046 * rings, then cache lines never move beyond shared-modified state.
5047 * If both the host and chip were to write into the same ring, cache line
5048 * eviction could occur since both entities want it in an exclusive state.
5049 */
Matt Carlson17375d22009-08-28 14:02:18 +00005050static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051{
Matt Carlson17375d22009-08-28 14:02:18 +00005052 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005053 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005054 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005055 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005056 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005058 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005060 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 /*
5062 * We need to order the read of hw_idx and the read of
5063 * the opaque cookie.
5064 */
5065 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 work_mask = 0;
5067 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005068 std_prod_idx = tpr->rx_std_prod_idx;
5069 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005071 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005072 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 unsigned int len;
5074 struct sk_buff *skb;
5075 dma_addr_t dma_addr;
5076 u32 opaque_key, desc_idx, *post_ptr;
5077
5078 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5079 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5080 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005081 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005082 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00005083 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00005084 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005085 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005087 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005088 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00005089 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00005090 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005091 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093
5094 work_mask |= opaque_key;
5095
5096 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5097 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5098 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005099 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100 desc_idx, *post_ptr);
5101 drop_it_no_recycle:
5102 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005103 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 goto next_pkt;
5105 }
5106
Matt Carlsonad829262008-11-21 17:16:16 -08005107 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5108 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
Matt Carlsond2757fc2010-04-12 06:58:27 +00005110 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 int skb_size;
5112
Matt Carlson86b21e52009-11-13 13:03:45 +00005113 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00005114 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 if (skb_size < 0)
5116 goto drop_it;
5117
Matt Carlson287be122009-08-28 13:58:46 +00005118 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 PCI_DMA_FROMDEVICE);
5120
Matt Carlson61e800c2010-02-17 15:16:54 +00005121 /* Ensure that the update to the skb happens
5122 * after the usage of the old DMA mapping.
5123 */
5124 smp_wmb();
5125
5126 ri->skb = NULL;
5127
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 skb_put(skb, len);
5129 } else {
5130 struct sk_buff *copy_skb;
5131
Matt Carlsona3896162009-11-13 13:03:44 +00005132 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 desc_idx, *post_ptr);
5134
Matt Carlsonbf933c82011-01-25 15:58:49 +00005135 copy_skb = netdev_alloc_skb(tp->dev, len +
Matt Carlson9dc7a112010-04-12 06:58:28 +00005136 TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 if (copy_skb == NULL)
5138 goto drop_it_no_recycle;
5139
Matt Carlsonbf933c82011-01-25 15:58:49 +00005140 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 skb_put(copy_skb, len);
5142 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03005143 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
5145
5146 /* We'll reuse the original ring buffer. */
5147 skb = copy_skb;
5148 }
5149
Michał Mirosławdc668912011-04-07 03:35:07 +00005150 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
5152 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
5153 >> RXD_TCPCSUM_SHIFT) == 0xffff))
5154 skb->ip_summed = CHECKSUM_UNNECESSARY;
5155 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005156 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
5158 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005159
5160 if (len > (tp->dev->mtu + ETH_HLEN) &&
5161 skb->protocol != htons(ETH_P_8021Q)) {
5162 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00005163 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005164 }
5165
Matt Carlson9dc7a112010-04-12 06:58:28 +00005166 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00005167 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
5168 __vlan_hwaccel_put_tag(skb,
5169 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00005170
Matt Carlsonbf933c82011-01-25 15:58:49 +00005171 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 received++;
5174 budget--;
5175
5176next_pkt:
5177 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07005178
5179 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005180 tpr->rx_std_prod_idx = std_prod_idx &
5181 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005182 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5183 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005184 work_mask &= ~RXD_OPAQUE_RING_STD;
5185 rx_std_posted = 0;
5186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005188 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005189 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005190
5191 /* Refresh hw_idx to see if there is new work */
5192 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005193 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005194 rmb();
5195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 }
5197
5198 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005199 tnapi->rx_rcb_ptr = sw_idx;
5200 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
5202 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005203 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005204 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005205 tpr->rx_std_prod_idx = std_prod_idx &
5206 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005207 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5208 tpr->rx_std_prod_idx);
5209 }
5210 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005211 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5212 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005213 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5214 tpr->rx_jmb_prod_idx);
5215 }
5216 mmiowb();
5217 } else if (work_mask) {
5218 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5219 * updated before the producer indices can be updated.
5220 */
5221 smp_wmb();
5222
Matt Carlson2c49a442010-09-30 10:34:35 +00005223 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5224 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005225
Matt Carlsone4af1af2010-02-12 14:47:05 +00005226 if (tnapi != &tp->napi[1])
5227 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229
5230 return received;
5231}
5232
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005233static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005236 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005237 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5238
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 if (sblk->status & SD_STATUS_LINK_CHG) {
5240 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005241 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07005242 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005243 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07005244 tw32_f(MAC_STATUS,
5245 (MAC_STATUS_SYNC_CHANGED |
5246 MAC_STATUS_CFG_CHANGED |
5247 MAC_STATUS_MI_COMPLETION |
5248 MAC_STATUS_LNKSTATE_CHANGED));
5249 udelay(40);
5250 } else
5251 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07005252 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253 }
5254 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005255}
5256
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005257static int tg3_rx_prodring_xfer(struct tg3 *tp,
5258 struct tg3_rx_prodring_set *dpr,
5259 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005260{
5261 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005262 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005263
5264 while (1) {
5265 src_prod_idx = spr->rx_std_prod_idx;
5266
5267 /* Make sure updates to the rx_std_buffers[] entries and the
5268 * standard producer index are seen in the correct order.
5269 */
5270 smp_rmb();
5271
5272 if (spr->rx_std_cons_idx == src_prod_idx)
5273 break;
5274
5275 if (spr->rx_std_cons_idx < src_prod_idx)
5276 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
5277 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005278 cpycnt = tp->rx_std_ring_mask + 1 -
5279 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005280
Matt Carlson2c49a442010-09-30 10:34:35 +00005281 cpycnt = min(cpycnt,
5282 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005283
5284 si = spr->rx_std_cons_idx;
5285 di = dpr->rx_std_prod_idx;
5286
Matt Carlsone92967b2010-02-12 14:47:06 +00005287 for (i = di; i < di + cpycnt; i++) {
5288 if (dpr->rx_std_buffers[i].skb) {
5289 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005290 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005291 break;
5292 }
5293 }
5294
5295 if (!cpycnt)
5296 break;
5297
5298 /* Ensure that updates to the rx_std_buffers ring and the
5299 * shadowed hardware producer ring from tg3_recycle_skb() are
5300 * ordered correctly WRT the skb check above.
5301 */
5302 smp_rmb();
5303
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005304 memcpy(&dpr->rx_std_buffers[di],
5305 &spr->rx_std_buffers[si],
5306 cpycnt * sizeof(struct ring_info));
5307
5308 for (i = 0; i < cpycnt; i++, di++, si++) {
5309 struct tg3_rx_buffer_desc *sbd, *dbd;
5310 sbd = &spr->rx_std[si];
5311 dbd = &dpr->rx_std[di];
5312 dbd->addr_hi = sbd->addr_hi;
5313 dbd->addr_lo = sbd->addr_lo;
5314 }
5315
Matt Carlson2c49a442010-09-30 10:34:35 +00005316 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
5317 tp->rx_std_ring_mask;
5318 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
5319 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005320 }
5321
5322 while (1) {
5323 src_prod_idx = spr->rx_jmb_prod_idx;
5324
5325 /* Make sure updates to the rx_jmb_buffers[] entries and
5326 * the jumbo producer index are seen in the correct order.
5327 */
5328 smp_rmb();
5329
5330 if (spr->rx_jmb_cons_idx == src_prod_idx)
5331 break;
5332
5333 if (spr->rx_jmb_cons_idx < src_prod_idx)
5334 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
5335 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005336 cpycnt = tp->rx_jmb_ring_mask + 1 -
5337 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005338
5339 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00005340 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005341
5342 si = spr->rx_jmb_cons_idx;
5343 di = dpr->rx_jmb_prod_idx;
5344
Matt Carlsone92967b2010-02-12 14:47:06 +00005345 for (i = di; i < di + cpycnt; i++) {
5346 if (dpr->rx_jmb_buffers[i].skb) {
5347 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005348 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005349 break;
5350 }
5351 }
5352
5353 if (!cpycnt)
5354 break;
5355
5356 /* Ensure that updates to the rx_jmb_buffers ring and the
5357 * shadowed hardware producer ring from tg3_recycle_skb() are
5358 * ordered correctly WRT the skb check above.
5359 */
5360 smp_rmb();
5361
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005362 memcpy(&dpr->rx_jmb_buffers[di],
5363 &spr->rx_jmb_buffers[si],
5364 cpycnt * sizeof(struct ring_info));
5365
5366 for (i = 0; i < cpycnt; i++, di++, si++) {
5367 struct tg3_rx_buffer_desc *sbd, *dbd;
5368 sbd = &spr->rx_jmb[si].std;
5369 dbd = &dpr->rx_jmb[di].std;
5370 dbd->addr_hi = sbd->addr_hi;
5371 dbd->addr_lo = sbd->addr_lo;
5372 }
5373
Matt Carlson2c49a442010-09-30 10:34:35 +00005374 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
5375 tp->rx_jmb_ring_mask;
5376 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
5377 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005378 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005379
5380 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005381}
5382
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005383static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
5384{
5385 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
5387 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005388 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00005389 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00005390 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07005391 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392 }
5393
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 /* run RX thread, within the bounds set by NAPI.
5395 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005396 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005398 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00005399 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400
Joe Perches63c3a662011-04-26 08:12:10 +00005401 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005402 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005403 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005404 u32 std_prod_idx = dpr->rx_std_prod_idx;
5405 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005406
Matt Carlsone4af1af2010-02-12 14:47:05 +00005407 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005408 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00005409 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005410
5411 wmb();
5412
Matt Carlsone4af1af2010-02-12 14:47:05 +00005413 if (std_prod_idx != dpr->rx_std_prod_idx)
5414 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5415 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005416
Matt Carlsone4af1af2010-02-12 14:47:05 +00005417 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
5418 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5419 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005420
5421 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005422
5423 if (err)
5424 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005425 }
5426
David S. Miller6f535762007-10-11 18:08:29 -07005427 return work_done;
5428}
David S. Millerf7383c22005-05-18 22:50:53 -07005429
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005430static int tg3_poll_msix(struct napi_struct *napi, int budget)
5431{
5432 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5433 struct tg3 *tp = tnapi->tp;
5434 int work_done = 0;
5435 struct tg3_hw_status *sblk = tnapi->hw_status;
5436
5437 while (1) {
5438 work_done = tg3_poll_work(tnapi, work_done, budget);
5439
Joe Perches63c3a662011-04-26 08:12:10 +00005440 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005441 goto tx_recovery;
5442
5443 if (unlikely(work_done >= budget))
5444 break;
5445
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005446 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005447 * to tell the hw how much work has been processed,
5448 * so we must read it before checking for more work.
5449 */
5450 tnapi->last_tag = sblk->status_tag;
5451 tnapi->last_irq_tag = tnapi->last_tag;
5452 rmb();
5453
5454 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00005455 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
5456 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005457 napi_complete(napi);
5458 /* Reenable interrupts. */
5459 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5460 mmiowb();
5461 break;
5462 }
5463 }
5464
5465 return work_done;
5466
5467tx_recovery:
5468 /* work_done is guaranteed to be less than budget. */
5469 napi_complete(napi);
5470 schedule_work(&tp->reset_task);
5471 return work_done;
5472}
5473
Matt Carlsone64de4e2011-04-13 11:05:05 +00005474static void tg3_process_error(struct tg3 *tp)
5475{
5476 u32 val;
5477 bool real_error = false;
5478
Joe Perches63c3a662011-04-26 08:12:10 +00005479 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00005480 return;
5481
5482 /* Check Flow Attention register */
5483 val = tr32(HOSTCC_FLOW_ATTN);
5484 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
5485 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
5486 real_error = true;
5487 }
5488
5489 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
5490 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
5491 real_error = true;
5492 }
5493
5494 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
5495 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
5496 real_error = true;
5497 }
5498
5499 if (!real_error)
5500 return;
5501
5502 tg3_dump_state(tp);
5503
Joe Perches63c3a662011-04-26 08:12:10 +00005504 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsone64de4e2011-04-13 11:05:05 +00005505 schedule_work(&tp->reset_task);
5506}
5507
David S. Miller6f535762007-10-11 18:08:29 -07005508static int tg3_poll(struct napi_struct *napi, int budget)
5509{
Matt Carlson8ef04422009-08-28 14:01:37 +00005510 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5511 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07005512 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00005513 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07005514
5515 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00005516 if (sblk->status & SD_STATUS_ERROR)
5517 tg3_process_error(tp);
5518
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005519 tg3_poll_link(tp);
5520
Matt Carlson17375d22009-08-28 14:02:18 +00005521 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07005522
Joe Perches63c3a662011-04-26 08:12:10 +00005523 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07005524 goto tx_recovery;
5525
5526 if (unlikely(work_done >= budget))
5527 break;
5528
Joe Perches63c3a662011-04-26 08:12:10 +00005529 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00005530 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07005531 * to tell the hw how much work has been processed,
5532 * so we must read it before checking for more work.
5533 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005534 tnapi->last_tag = sblk->status_tag;
5535 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07005536 rmb();
5537 } else
5538 sblk->status &= ~SD_STATUS_UPDATED;
5539
Matt Carlson17375d22009-08-28 14:02:18 +00005540 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005541 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00005542 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07005543 break;
5544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545 }
5546
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005547 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07005548
5549tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07005550 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08005551 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07005552 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07005553 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554}
5555
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005556static void tg3_napi_disable(struct tg3 *tp)
5557{
5558 int i;
5559
5560 for (i = tp->irq_cnt - 1; i >= 0; i--)
5561 napi_disable(&tp->napi[i].napi);
5562}
5563
5564static void tg3_napi_enable(struct tg3 *tp)
5565{
5566 int i;
5567
5568 for (i = 0; i < tp->irq_cnt; i++)
5569 napi_enable(&tp->napi[i].napi);
5570}
5571
5572static void tg3_napi_init(struct tg3 *tp)
5573{
5574 int i;
5575
5576 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
5577 for (i = 1; i < tp->irq_cnt; i++)
5578 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
5579}
5580
5581static void tg3_napi_fini(struct tg3 *tp)
5582{
5583 int i;
5584
5585 for (i = 0; i < tp->irq_cnt; i++)
5586 netif_napi_del(&tp->napi[i].napi);
5587}
5588
5589static inline void tg3_netif_stop(struct tg3 *tp)
5590{
5591 tp->dev->trans_start = jiffies; /* prevent tx timeout */
5592 tg3_napi_disable(tp);
5593 netif_tx_disable(tp->dev);
5594}
5595
5596static inline void tg3_netif_start(struct tg3 *tp)
5597{
5598 /* NOTE: unconditional netif_tx_wake_all_queues is only
5599 * appropriate so long as all callers are assured to
5600 * have free tx slots (such as after tg3_init_hw)
5601 */
5602 netif_tx_wake_all_queues(tp->dev);
5603
5604 tg3_napi_enable(tp);
5605 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
5606 tg3_enable_ints(tp);
5607}
5608
David S. Millerf47c11e2005-06-24 20:18:35 -07005609static void tg3_irq_quiesce(struct tg3 *tp)
5610{
Matt Carlson4f125f42009-09-01 12:55:02 +00005611 int i;
5612
David S. Millerf47c11e2005-06-24 20:18:35 -07005613 BUG_ON(tp->irq_sync);
5614
5615 tp->irq_sync = 1;
5616 smp_mb();
5617
Matt Carlson4f125f42009-09-01 12:55:02 +00005618 for (i = 0; i < tp->irq_cnt; i++)
5619 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07005620}
5621
David S. Millerf47c11e2005-06-24 20:18:35 -07005622/* Fully shutdown all tg3 driver activity elsewhere in the system.
5623 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5624 * with as well. Most of the time, this is not necessary except when
5625 * shutting down the device.
5626 */
5627static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5628{
Michael Chan46966542007-07-11 19:47:19 -07005629 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005630 if (irq_sync)
5631 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005632}
5633
5634static inline void tg3_full_unlock(struct tg3 *tp)
5635{
David S. Millerf47c11e2005-06-24 20:18:35 -07005636 spin_unlock_bh(&tp->lock);
5637}
5638
Michael Chanfcfa0a32006-03-20 22:28:41 -08005639/* One-shot MSI handler - Chip automatically disables interrupt
5640 * after sending MSI so driver doesn't have to do it.
5641 */
David Howells7d12e782006-10-05 14:55:46 +01005642static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005643{
Matt Carlson09943a12009-08-28 14:01:57 +00005644 struct tg3_napi *tnapi = dev_id;
5645 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005646
Matt Carlson898a56f2009-08-28 14:02:40 +00005647 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005648 if (tnapi->rx_rcb)
5649 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005650
5651 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005652 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005653
5654 return IRQ_HANDLED;
5655}
5656
Michael Chan88b06bc2005-04-21 17:13:25 -07005657/* MSI ISR - No need to check for interrupt sharing and no need to
5658 * flush status block and interrupt mailbox. PCI ordering rules
5659 * guarantee that MSI will arrive after the status block.
5660 */
David Howells7d12e782006-10-05 14:55:46 +01005661static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc2005-04-21 17:13:25 -07005662{
Matt Carlson09943a12009-08-28 14:01:57 +00005663 struct tg3_napi *tnapi = dev_id;
5664 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc2005-04-21 17:13:25 -07005665
Matt Carlson898a56f2009-08-28 14:02:40 +00005666 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005667 if (tnapi->rx_rcb)
5668 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc2005-04-21 17:13:25 -07005669 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005670 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc2005-04-21 17:13:25 -07005671 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005672 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc2005-04-21 17:13:25 -07005673 * NIC to stop sending us irqs, engaging "in-intr-handler"
5674 * event coalescing.
5675 */
5676 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005677 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005678 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005679
Michael Chan88b06bc2005-04-21 17:13:25 -07005680 return IRQ_RETVAL(1);
5681}
5682
David Howells7d12e782006-10-05 14:55:46 +01005683static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684{
Matt Carlson09943a12009-08-28 14:01:57 +00005685 struct tg3_napi *tnapi = dev_id;
5686 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005687 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688 unsigned int handled = 1;
5689
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690 /* In INTx mode, it is possible for the interrupt to arrive at
5691 * the CPU before the status block posted prior to the interrupt.
5692 * Reading the PCI State register will confirm whether the
5693 * interrupt is ours and will flush the status block.
5694 */
Michael Chand18edcb2007-03-24 20:57:11 -07005695 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00005696 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005697 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5698 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005699 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005700 }
Michael Chand18edcb2007-03-24 20:57:11 -07005701 }
5702
5703 /*
5704 * Writing any value to intr-mbox-0 clears PCI INTA# and
5705 * chip-internal interrupt pending events.
5706 * Writing non-zero to intr-mbox-0 additional tells the
5707 * NIC to stop sending us irqs, engaging "in-intr-handler"
5708 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005709 *
5710 * Flush the mailbox to de-assert the IRQ immediately to prevent
5711 * spurious interrupts. The flush impacts performance but
5712 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005713 */
Michael Chanc04cb342007-05-07 00:26:15 -07005714 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005715 if (tg3_irq_sync(tp))
5716 goto out;
5717 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005718 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005719 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005720 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005721 } else {
5722 /* No work, shared interrupt perhaps? re-enable
5723 * interrupts, and flush that PCI write
5724 */
5725 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5726 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005727 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005728out:
David S. Millerfac9b832005-05-18 22:46:34 -07005729 return IRQ_RETVAL(handled);
5730}
5731
David Howells7d12e782006-10-05 14:55:46 +01005732static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005733{
Matt Carlson09943a12009-08-28 14:01:57 +00005734 struct tg3_napi *tnapi = dev_id;
5735 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005736 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005737 unsigned int handled = 1;
5738
David S. Millerfac9b832005-05-18 22:46:34 -07005739 /* In INTx mode, it is possible for the interrupt to arrive at
5740 * the CPU before the status block posted prior to the interrupt.
5741 * Reading the PCI State register will confirm whether the
5742 * interrupt is ours and will flush the status block.
5743 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005744 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00005745 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005746 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5747 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005748 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749 }
Michael Chand18edcb2007-03-24 20:57:11 -07005750 }
5751
5752 /*
5753 * writing any value to intr-mbox-0 clears PCI INTA# and
5754 * chip-internal interrupt pending events.
5755 * writing non-zero to intr-mbox-0 additional tells the
5756 * NIC to stop sending us irqs, engaging "in-intr-handler"
5757 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005758 *
5759 * Flush the mailbox to de-assert the IRQ immediately to prevent
5760 * spurious interrupts. The flush impacts performance but
5761 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005762 */
Michael Chanc04cb342007-05-07 00:26:15 -07005763 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005764
5765 /*
5766 * In a shared interrupt configuration, sometimes other devices'
5767 * interrupts will scream. We record the current status tag here
5768 * so that the above check can report that the screaming interrupts
5769 * are unhandled. Eventually they will be silenced.
5770 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005771 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005772
Michael Chand18edcb2007-03-24 20:57:11 -07005773 if (tg3_irq_sync(tp))
5774 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005775
Matt Carlson72334482009-08-28 14:03:01 +00005776 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005777
Matt Carlson09943a12009-08-28 14:01:57 +00005778 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005779
David S. Millerf47c11e2005-06-24 20:18:35 -07005780out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781 return IRQ_RETVAL(handled);
5782}
5783
Michael Chan79381092005-04-21 17:13:59 -07005784/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005785static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005786{
Matt Carlson09943a12009-08-28 14:01:57 +00005787 struct tg3_napi *tnapi = dev_id;
5788 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005789 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005790
Michael Chanf9804dd2005-09-27 12:13:10 -07005791 if ((sblk->status & SD_STATUS_UPDATED) ||
5792 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005793 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005794 return IRQ_RETVAL(1);
5795 }
5796 return IRQ_RETVAL(0);
5797}
5798
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005799static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005800static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801
Michael Chanb9ec6c12006-07-25 16:37:27 -07005802/* Restart hardware after configuration changes, self-test, etc.
5803 * Invoked with tp->lock held.
5804 */
5805static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005806 __releases(tp->lock)
5807 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005808{
5809 int err;
5810
5811 err = tg3_init_hw(tp, reset_phy);
5812 if (err) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00005813 netdev_err(tp->dev,
5814 "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07005815 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5816 tg3_full_unlock(tp);
5817 del_timer_sync(&tp->timer);
5818 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005819 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005820 dev_close(tp->dev);
5821 tg3_full_lock(tp, 0);
5822 }
5823 return err;
5824}
5825
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826#ifdef CONFIG_NET_POLL_CONTROLLER
5827static void tg3_poll_controller(struct net_device *dev)
5828{
Matt Carlson4f125f42009-09-01 12:55:02 +00005829 int i;
Michael Chan88b06bc2005-04-21 17:13:25 -07005830 struct tg3 *tp = netdev_priv(dev);
5831
Matt Carlson4f125f42009-09-01 12:55:02 +00005832 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00005833 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834}
5835#endif
5836
David Howellsc4028952006-11-22 14:57:56 +00005837static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838{
David Howellsc4028952006-11-22 14:57:56 +00005839 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005840 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841 unsigned int restart_timer;
5842
Michael Chan7faa0062006-02-02 17:29:28 -08005843 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005844
5845 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005846 tg3_full_unlock(tp);
5847 return;
5848 }
5849
5850 tg3_full_unlock(tp);
5851
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005852 tg3_phy_stop(tp);
5853
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 tg3_netif_stop(tp);
5855
David S. Millerf47c11e2005-06-24 20:18:35 -07005856 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857
Joe Perches63c3a662011-04-26 08:12:10 +00005858 restart_timer = tg3_flag(tp, RESTART_TIMER);
5859 tg3_flag_clear(tp, RESTART_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Joe Perches63c3a662011-04-26 08:12:10 +00005861 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
Michael Chandf3e6542006-05-26 17:48:07 -07005862 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5863 tp->write32_rx_mbox = tg3_write_flush_reg32;
Joe Perches63c3a662011-04-26 08:12:10 +00005864 tg3_flag_set(tp, MBOX_WRITE_REORDER);
5865 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005866 }
5867
Michael Chan944d9802005-05-29 14:57:48 -07005868 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005869 err = tg3_init_hw(tp, 1);
5870 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005871 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872
5873 tg3_netif_start(tp);
5874
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 if (restart_timer)
5876 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005877
Michael Chanb9ec6c12006-07-25 16:37:27 -07005878out:
Michael Chan7faa0062006-02-02 17:29:28 -08005879 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005880
5881 if (!err)
5882 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883}
5884
5885static void tg3_tx_timeout(struct net_device *dev)
5886{
5887 struct tg3 *tp = netdev_priv(dev);
5888
Michael Chanb0408752007-02-13 12:18:30 -08005889 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00005890 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00005891 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08005892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
5894 schedule_work(&tp->reset_task);
5895}
5896
Michael Chanc58ec932005-09-17 00:46:27 -07005897/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5898static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5899{
5900 u32 base = (u32) mapping & 0xffffffff;
5901
Eric Dumazet807540b2010-09-23 05:40:09 +00005902 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07005903}
5904
Michael Chan72f2afb2006-03-06 19:28:35 -08005905/* Test for DMA addresses > 40-bit */
5906static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5907 int len)
5908{
5909#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00005910 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00005911 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08005912 return 0;
5913#else
5914 return 0;
5915#endif
5916}
5917
Matt Carlsond1a3b732011-07-27 14:20:51 +00005918static inline void tg3_tx_set_bd(struct tg3_tx_buffer_desc *txbd,
Matt Carlson92cd3a12011-07-27 14:20:47 +00005919 dma_addr_t mapping, u32 len, u32 flags,
5920 u32 mss, u32 vlan)
Matt Carlson2ffcc982011-05-19 12:12:44 +00005921{
Matt Carlson92cd3a12011-07-27 14:20:47 +00005922 txbd->addr_hi = ((u64) mapping >> 32);
5923 txbd->addr_lo = ((u64) mapping & 0xffffffff);
5924 txbd->len_flags = (len << TXD_LEN_SHIFT) | (flags & 0x0000ffff);
5925 txbd->vlan_tag = (mss << TXD_MSS_SHIFT) | (vlan << TXD_VLAN_TAG_SHIFT);
Matt Carlson2ffcc982011-05-19 12:12:44 +00005926}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927
Matt Carlson84b67b22011-07-27 14:20:52 +00005928static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget,
Matt Carlsond1a3b732011-07-27 14:20:51 +00005929 dma_addr_t map, u32 len, u32 flags,
5930 u32 mss, u32 vlan)
5931{
5932 struct tg3 *tp = tnapi->tp;
5933 bool hwbug = false;
5934
5935 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
5936 hwbug = 1;
5937
5938 if (tg3_4g_overflow_test(map, len))
5939 hwbug = 1;
5940
5941 if (tg3_40bit_overflow_test(tp, map, len))
5942 hwbug = 1;
5943
Matt Carlsone31aa982011-07-27 14:20:53 +00005944 if (tg3_flag(tp, 4K_FIFO_LIMIT)) {
5945 u32 tmp_flag = flags & ~TXD_FLAG_END;
5946 while (len > TG3_TX_BD_DMA_MAX) {
5947 u32 frag_len = TG3_TX_BD_DMA_MAX;
5948 len -= TG3_TX_BD_DMA_MAX;
5949
5950 if (len) {
5951 tnapi->tx_buffers[*entry].fragmented = true;
5952 /* Avoid the 8byte DMA problem */
5953 if (len <= 8) {
5954 len += TG3_TX_BD_DMA_MAX / 2;
5955 frag_len = TG3_TX_BD_DMA_MAX / 2;
5956 }
5957 } else
5958 tmp_flag = flags;
5959
5960 if (*budget) {
5961 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
5962 frag_len, tmp_flag, mss, vlan);
5963 (*budget)--;
5964 *entry = NEXT_TX(*entry);
5965 } else {
5966 hwbug = 1;
5967 break;
5968 }
5969
5970 map += frag_len;
5971 }
5972
5973 if (len) {
5974 if (*budget) {
5975 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
5976 len, flags, mss, vlan);
5977 (*budget)--;
5978 *entry = NEXT_TX(*entry);
5979 } else {
5980 hwbug = 1;
5981 }
5982 }
5983 } else {
Matt Carlson84b67b22011-07-27 14:20:52 +00005984 tg3_tx_set_bd(&tnapi->tx_ring[*entry], map,
5985 len, flags, mss, vlan);
Matt Carlsone31aa982011-07-27 14:20:53 +00005986 *entry = NEXT_TX(*entry);
5987 }
Matt Carlsond1a3b732011-07-27 14:20:51 +00005988
5989 return hwbug;
5990}
5991
Matt Carlson0d681b22011-07-27 14:20:49 +00005992static void tg3_tx_skb_unmap(struct tg3_napi *tnapi, u32 entry, int last)
Matt Carlson432aa7e2011-05-19 12:12:45 +00005993{
5994 int i;
Matt Carlson0d681b22011-07-27 14:20:49 +00005995 struct sk_buff *skb;
Matt Carlsondf8944c2011-07-27 14:20:46 +00005996 struct tg3_tx_ring_info *txb = &tnapi->tx_buffers[entry];
Matt Carlson432aa7e2011-05-19 12:12:45 +00005997
Matt Carlson0d681b22011-07-27 14:20:49 +00005998 skb = txb->skb;
5999 txb->skb = NULL;
6000
Matt Carlson432aa7e2011-05-19 12:12:45 +00006001 pci_unmap_single(tnapi->tp->pdev,
6002 dma_unmap_addr(txb, mapping),
6003 skb_headlen(skb),
6004 PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006005
6006 while (txb->fragmented) {
6007 txb->fragmented = false;
6008 entry = NEXT_TX(entry);
6009 txb = &tnapi->tx_buffers[entry];
6010 }
6011
Matt Carlson9a2e0fb2011-06-02 13:01:39 +00006012 for (i = 0; i < last; i++) {
Matt Carlson432aa7e2011-05-19 12:12:45 +00006013 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6014
6015 entry = NEXT_TX(entry);
6016 txb = &tnapi->tx_buffers[entry];
6017
6018 pci_unmap_page(tnapi->tp->pdev,
6019 dma_unmap_addr(txb, mapping),
6020 frag->size, PCI_DMA_TODEVICE);
Matt Carlsone01ee142011-07-27 14:20:50 +00006021
6022 while (txb->fragmented) {
6023 txb->fragmented = false;
6024 entry = NEXT_TX(entry);
6025 txb = &tnapi->tx_buffers[entry];
6026 }
Matt Carlson432aa7e2011-05-19 12:12:45 +00006027 }
6028}
6029
Michael Chan72f2afb2006-03-06 19:28:35 -08006030/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006031static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
Matt Carlson432aa7e2011-05-19 12:12:45 +00006032 struct sk_buff *skb,
Matt Carlson84b67b22011-07-27 14:20:52 +00006033 u32 *entry, u32 *budget,
Matt Carlson92cd3a12011-07-27 14:20:47 +00006034 u32 base_flags, u32 mss, u32 vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035{
Matt Carlson24f4efd2009-11-13 13:03:35 +00006036 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07006037 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07006038 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006039 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040
Matt Carlson41588ba2008-04-19 18:12:33 -07006041 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
6042 new_skb = skb_copy(skb, GFP_ATOMIC);
6043 else {
6044 int more_headroom = 4 - ((unsigned long)skb->data & 3);
6045
6046 new_skb = skb_copy_expand(skb,
6047 skb_headroom(skb) + more_headroom,
6048 skb_tailroom(skb), GFP_ATOMIC);
6049 }
6050
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07006052 ret = -1;
6053 } else {
6054 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00006055 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
6056 PCI_DMA_TODEVICE);
6057 /* Make sure the mapping succeeded */
6058 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006059 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07006060 ret = -1;
Michael Chanc58ec932005-09-17 00:46:27 -07006061 } else {
Matt Carlson92cd3a12011-07-27 14:20:47 +00006062 base_flags |= TXD_FLAG_END;
6063
Matt Carlson84b67b22011-07-27 14:20:52 +00006064 tnapi->tx_buffers[*entry].skb = new_skb;
6065 dma_unmap_addr_set(&tnapi->tx_buffers[*entry],
Matt Carlson432aa7e2011-05-19 12:12:45 +00006066 mapping, new_addr);
6067
Matt Carlson84b67b22011-07-27 14:20:52 +00006068 if (tg3_tx_frag_set(tnapi, entry, budget, new_addr,
Matt Carlsond1a3b732011-07-27 14:20:51 +00006069 new_skb->len, base_flags,
6070 mss, vlan)) {
Matt Carlson84b67b22011-07-27 14:20:52 +00006071 tg3_tx_skb_unmap(tnapi, *entry, 0);
Matt Carlsond1a3b732011-07-27 14:20:51 +00006072 dev_kfree_skb(new_skb);
6073 ret = -1;
6074 }
Michael Chanc58ec932005-09-17 00:46:27 -07006075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 }
6077
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 dev_kfree_skb(skb);
6079
Michael Chanc58ec932005-09-17 00:46:27 -07006080 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081}
6082
Matt Carlson2ffcc982011-05-19 12:12:44 +00006083static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07006084
6085/* Use GSO to workaround a rare TSO bug that may be triggered when the
6086 * TSO header is greater than 80 bytes.
6087 */
6088static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
6089{
6090 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006091 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006092
6093 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006094 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006095 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006096
6097 /* netif_tx_stop_queue() must be done before checking
6098 * checking tx index in tg3_tx_avail() below, because in
6099 * tg3_tx(), we update tx index before checking for
6100 * netif_tx_queue_stopped().
6101 */
6102 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006103 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006104 return NETDEV_TX_BUSY;
6105
6106 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006107 }
6108
6109 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006110 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006111 goto tg3_tso_bug_end;
6112
6113 do {
6114 nskb = segs;
6115 segs = segs->next;
6116 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006117 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006118 } while (segs);
6119
6120tg3_tso_bug_end:
6121 dev_kfree_skb(skb);
6122
6123 return NETDEV_TX_OK;
6124}
Michael Chan52c0fd82006-06-29 20:15:54 -07006125
Michael Chan5a6f3072006-03-20 22:28:05 -08006126/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006127 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006128 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006129static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006130{
6131 struct tg3 *tp = netdev_priv(dev);
Matt Carlson92cd3a12011-07-27 14:20:47 +00006132 u32 len, entry, base_flags, mss, vlan = 0;
Matt Carlson84b67b22011-07-27 14:20:52 +00006133 u32 budget;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006134 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006135 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006136 struct tg3_napi *tnapi;
6137 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006138 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006139
Matt Carlson24f4efd2009-11-13 13:03:35 +00006140 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6141 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006142 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006143 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144
Matt Carlson84b67b22011-07-27 14:20:52 +00006145 budget = tg3_tx_avail(tnapi);
6146
Michael Chan00b70502006-06-17 21:58:45 -07006147 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006148 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006149 * interrupt. Furthermore, IRQ processing runs lockless so we have
6150 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006152 if (unlikely(budget <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006153 if (!netif_tx_queue_stopped(txq)) {
6154 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006155
6156 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006157 netdev_err(dev,
6158 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160 return NETDEV_TX_BUSY;
6161 }
6162
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006163 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006165 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006167
Matt Carlsonbe98da62010-07-11 09:31:46 +00006168 mss = skb_shinfo(skb)->gso_size;
6169 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006170 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006171 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172
6173 if (skb_header_cloned(skb) &&
6174 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
6175 dev_kfree_skb(skb);
6176 goto out_unlock;
6177 }
6178
Matt Carlson34195c32010-07-11 09:31:42 +00006179 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006180 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181
Matt Carlson02e96082010-09-15 08:59:59 +00006182 if (skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006183 hdr_len = skb_headlen(skb) - ETH_HLEN;
6184 } else {
6185 u32 ip_tcp_len;
6186
6187 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
6188 hdr_len = ip_tcp_len + tcp_opt_len;
6189
6190 iph->check = 0;
6191 iph->tot_len = htons(mss + hdr_len);
6192 }
6193
Michael Chan52c0fd82006-06-29 20:15:54 -07006194 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006195 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00006196 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07006197
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
6199 TXD_FLAG_CPU_POST_DMA);
6200
Joe Perches63c3a662011-04-26 08:12:10 +00006201 if (tg3_flag(tp, HW_TSO_1) ||
6202 tg3_flag(tp, HW_TSO_2) ||
6203 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006204 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006206 } else
6207 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6208 iph->daddr, 0,
6209 IPPROTO_TCP,
6210 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211
Joe Perches63c3a662011-04-26 08:12:10 +00006212 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00006213 mss |= (hdr_len & 0xc) << 12;
6214 if (hdr_len & 0x10)
6215 base_flags |= 0x00000010;
6216 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00006217 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006218 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00006219 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006220 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006221 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222 int tsflags;
6223
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006224 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225 mss |= (tsflags << 11);
6226 }
6227 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006228 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229 int tsflags;
6230
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006231 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 base_flags |= tsflags << 12;
6233 }
6234 }
6235 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00006236
Matt Carlson92cd3a12011-07-27 14:20:47 +00006237#ifdef BCM_KERNEL_SUPPORTS_8021Q
6238 if (vlan_tx_tag_present(skb)) {
6239 base_flags |= TXD_FLAG_VLAN;
6240 vlan = vlan_tx_tag_get(skb);
6241 }
6242#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243
Joe Perches63c3a662011-04-26 08:12:10 +00006244 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
Matt Carlson8fc2f992010-12-06 08:28:49 +00006245 !mss && skb->len > VLAN_ETH_FRAME_LEN)
Matt Carlson615774f2009-11-13 13:03:39 +00006246 base_flags |= TXD_FLAG_JMB_PKT;
6247
Alexander Duyckf4188d82009-12-02 16:48:38 +00006248 len = skb_headlen(skb);
6249
6250 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
6251 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07006252 dev_kfree_skb(skb);
6253 goto out_unlock;
6254 }
6255
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006256 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006257 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258
6259 would_hit_hwbug = 0;
6260
Joe Perches63c3a662011-04-26 08:12:10 +00006261 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006262 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263
Matt Carlson84b67b22011-07-27 14:20:52 +00006264 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping, len, base_flags |
Matt Carlsond1a3b732011-07-27 14:20:51 +00006265 ((skb_shinfo(skb)->nr_frags == 0) ? TXD_FLAG_END : 0),
6266 mss, vlan))
6267 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269 /* Now loop through additional data fragments, and queue them. */
6270 if (skb_shinfo(skb)->nr_frags > 0) {
Matt Carlson92cd3a12011-07-27 14:20:47 +00006271 u32 tmp_mss = mss;
6272
6273 if (!tg3_flag(tp, HW_TSO_1) &&
6274 !tg3_flag(tp, HW_TSO_2) &&
6275 !tg3_flag(tp, HW_TSO_3))
6276 tmp_mss = 0;
6277
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278 last = skb_shinfo(skb)->nr_frags - 1;
6279 for (i = 0; i <= last; i++) {
6280 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6281
6282 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006283 mapping = pci_map_page(tp->pdev,
6284 frag->page,
6285 frag->page_offset,
6286 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006288 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006289 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006290 mapping);
6291 if (pci_dma_mapping_error(tp->pdev, mapping))
6292 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
Matt Carlson84b67b22011-07-27 14:20:52 +00006294 if (tg3_tx_frag_set(tnapi, &entry, &budget, mapping,
6295 len, base_flags |
6296 ((i == last) ? TXD_FLAG_END : 0),
Matt Carlsond1a3b732011-07-27 14:20:51 +00006297 tmp_mss, vlan))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006298 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299 }
6300 }
6301
6302 if (would_hit_hwbug) {
Matt Carlson0d681b22011-07-27 14:20:49 +00006303 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304
6305 /* If the workaround fails due to memory/mapping
6306 * failure, silently drop this packet.
6307 */
Matt Carlson84b67b22011-07-27 14:20:52 +00006308 entry = tnapi->tx_prod;
6309 budget = tg3_tx_avail(tnapi);
6310 if (tigon3_dma_hwbug_workaround(tnapi, skb, &entry, &budget,
6311 base_flags, mss, vlan))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313 }
6314
Richard Cochrand515b452011-06-19 03:31:41 +00006315 skb_tx_timestamp(skb);
6316
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006318 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006320 tnapi->tx_prod = entry;
6321 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006322 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006323
6324 /* netif_tx_stop_queue() must be done before checking
6325 * checking tx index in tg3_tx_avail() below, because in
6326 * tg3_tx(), we update tx index before checking for
6327 * netif_tx_queue_stopped().
6328 */
6329 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006330 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006331 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333
6334out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006335 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336
6337 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006338
6339dma_error:
Matt Carlson0d681b22011-07-27 14:20:49 +00006340 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod, i);
Alexander Duyckf4188d82009-12-02 16:48:38 +00006341 dev_kfree_skb(skb);
Matt Carlson432aa7e2011-05-19 12:12:45 +00006342 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006343 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344}
6345
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006346static void tg3_set_loopback(struct net_device *dev, u32 features)
6347{
6348 struct tg3 *tp = netdev_priv(dev);
6349
6350 if (features & NETIF_F_LOOPBACK) {
6351 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
6352 return;
6353
6354 /*
6355 * Clear MAC_MODE_HALF_DUPLEX or you won't get packets back in
6356 * loopback mode if Half-Duplex mode was negotiated earlier.
6357 */
6358 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
6359
6360 /* Enable internal MAC loopback mode */
6361 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
6362 spin_lock_bh(&tp->lock);
6363 tw32(MAC_MODE, tp->mac_mode);
6364 netif_carrier_on(tp->dev);
6365 spin_unlock_bh(&tp->lock);
6366 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
6367 } else {
6368 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
6369 return;
6370
6371 /* Disable internal MAC loopback mode */
6372 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
6373 spin_lock_bh(&tp->lock);
6374 tw32(MAC_MODE, tp->mac_mode);
6375 /* Force link status check */
6376 tg3_setup_phy(tp, 1);
6377 spin_unlock_bh(&tp->lock);
6378 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
6379 }
6380}
6381
Michał Mirosławdc668912011-04-07 03:35:07 +00006382static u32 tg3_fix_features(struct net_device *dev, u32 features)
6383{
6384 struct tg3 *tp = netdev_priv(dev);
6385
Joe Perches63c3a662011-04-26 08:12:10 +00006386 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00006387 features &= ~NETIF_F_ALL_TSO;
6388
6389 return features;
6390}
6391
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006392static int tg3_set_features(struct net_device *dev, u32 features)
6393{
6394 u32 changed = dev->features ^ features;
6395
6396 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
6397 tg3_set_loopback(dev, features);
6398
6399 return 0;
6400}
6401
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
6403 int new_mtu)
6404{
6405 dev->mtu = new_mtu;
6406
Michael Chanef7f5ec2005-07-25 12:32:25 -07006407 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00006408 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00006409 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00006410 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a5882010-04-05 10:19:28 +00006411 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006412 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a5882010-04-05 10:19:28 +00006413 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07006414 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006415 if (tg3_flag(tp, 5780_CLASS)) {
6416 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00006417 netdev_update_features(dev);
6418 }
Joe Perches63c3a662011-04-26 08:12:10 +00006419 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07006420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421}
6422
6423static int tg3_change_mtu(struct net_device *dev, int new_mtu)
6424{
6425 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006426 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
6428 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
6429 return -EINVAL;
6430
6431 if (!netif_running(dev)) {
6432 /* We'll just catch it later when the
6433 * device is up'd.
6434 */
6435 tg3_set_mtu(dev, tp, new_mtu);
6436 return 0;
6437 }
6438
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006439 tg3_phy_stop(tp);
6440
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006442
6443 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444
Michael Chan944d9802005-05-29 14:57:48 -07006445 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446
6447 tg3_set_mtu(dev, tp, new_mtu);
6448
Michael Chanb9ec6c12006-07-25 16:37:27 -07006449 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450
Michael Chanb9ec6c12006-07-25 16:37:27 -07006451 if (!err)
6452 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453
David S. Millerf47c11e2005-06-24 20:18:35 -07006454 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006456 if (!err)
6457 tg3_phy_start(tp);
6458
Michael Chanb9ec6c12006-07-25 16:37:27 -07006459 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460}
6461
Matt Carlson21f581a2009-08-28 14:00:25 +00006462static void tg3_rx_prodring_free(struct tg3 *tp,
6463 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465 int i;
6466
Matt Carlson8fea32b2010-09-15 08:59:58 +00006467 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006468 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006469 i = (i + 1) & tp->rx_std_ring_mask)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006470 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6471 tp->rx_pkt_map_sz);
6472
Joe Perches63c3a662011-04-26 08:12:10 +00006473 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006474 for (i = tpr->rx_jmb_cons_idx;
6475 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006476 i = (i + 1) & tp->rx_jmb_ring_mask) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006477 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6478 TG3_RX_JMB_MAP_SZ);
6479 }
6480 }
6481
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006482 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
Matt Carlson2c49a442010-09-30 10:34:35 +00006485 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006486 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6487 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488
Joe Perches63c3a662011-04-26 08:12:10 +00006489 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006490 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006491 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6492 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493 }
6494}
6495
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006496/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497 *
6498 * The chip has been shut down and the driver detached from
6499 * the networking, so no interrupts or new tx packets will
6500 * end up in the driver. tp->{tx,}lock are held and thus
6501 * we may not sleep.
6502 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006503static int tg3_rx_prodring_alloc(struct tg3 *tp,
6504 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505{
Matt Carlson287be122009-08-28 13:58:46 +00006506 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006508 tpr->rx_std_cons_idx = 0;
6509 tpr->rx_std_prod_idx = 0;
6510 tpr->rx_jmb_cons_idx = 0;
6511 tpr->rx_jmb_prod_idx = 0;
6512
Matt Carlson8fea32b2010-09-15 08:59:58 +00006513 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006514 memset(&tpr->rx_std_buffers[0], 0,
6515 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00006516 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006517 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00006518 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006519 goto done;
6520 }
6521
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00006523 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524
Matt Carlson287be122009-08-28 13:58:46 +00006525 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00006526 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006527 tp->dev->mtu > ETH_DATA_LEN)
6528 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6529 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07006530
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531 /* Initialize invariants of the rings, we only set this
6532 * stuff once. This works because the card does not
6533 * write into the rx buffer posting rings.
6534 */
Matt Carlson2c49a442010-09-30 10:34:35 +00006535 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536 struct tg3_rx_buffer_desc *rxd;
6537
Matt Carlson21f581a2009-08-28 14:00:25 +00006538 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006539 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6541 rxd->opaque = (RXD_OPAQUE_RING_STD |
6542 (i << RXD_OPAQUE_INDEX_SHIFT));
6543 }
6544
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006545 /* Now allocate fresh SKBs for each rx ring. */
6546 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006547 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006548 netdev_warn(tp->dev,
6549 "Using a smaller RX standard ring. Only "
6550 "%d out of %d buffers were allocated "
6551 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006552 if (i == 0)
6553 goto initfail;
6554 tp->rx_pending = i;
6555 break;
6556 }
6557 }
6558
Joe Perches63c3a662011-04-26 08:12:10 +00006559 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006560 goto done;
6561
Matt Carlson2c49a442010-09-30 10:34:35 +00006562 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006563
Joe Perches63c3a662011-04-26 08:12:10 +00006564 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00006565 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566
Matt Carlson2c49a442010-09-30 10:34:35 +00006567 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00006568 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569
Matt Carlson0d86df82010-02-17 15:17:00 +00006570 rxd = &tpr->rx_jmb[i].std;
6571 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6572 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6573 RXD_FLAG_JUMBO;
6574 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6575 (i << RXD_OPAQUE_INDEX_SHIFT));
6576 }
6577
6578 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6579 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006580 netdev_warn(tp->dev,
6581 "Using a smaller RX jumbo ring. Only %d "
6582 "out of %d buffers were allocated "
6583 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00006584 if (i == 0)
6585 goto initfail;
6586 tp->rx_jumbo_pending = i;
6587 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 }
6589 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006590
6591done:
Michael Chan32d8c572006-07-25 16:38:29 -07006592 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006593
6594initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006595 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006596 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597}
6598
Matt Carlson21f581a2009-08-28 14:00:25 +00006599static void tg3_rx_prodring_fini(struct tg3 *tp,
6600 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601{
Matt Carlson21f581a2009-08-28 14:00:25 +00006602 kfree(tpr->rx_std_buffers);
6603 tpr->rx_std_buffers = NULL;
6604 kfree(tpr->rx_jmb_buffers);
6605 tpr->rx_jmb_buffers = NULL;
6606 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006607 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
6608 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006609 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006611 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006612 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
6613 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006614 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006616}
6617
Matt Carlson21f581a2009-08-28 14:00:25 +00006618static int tg3_rx_prodring_init(struct tg3 *tp,
6619 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006620{
Matt Carlson2c49a442010-09-30 10:34:35 +00006621 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
6622 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006623 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006624 return -ENOMEM;
6625
Matt Carlson4bae65c2010-11-24 08:31:52 +00006626 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
6627 TG3_RX_STD_RING_BYTES(tp),
6628 &tpr->rx_std_mapping,
6629 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006630 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006631 goto err_out;
6632
Joe Perches63c3a662011-04-26 08:12:10 +00006633 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006634 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00006635 GFP_KERNEL);
6636 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006637 goto err_out;
6638
Matt Carlson4bae65c2010-11-24 08:31:52 +00006639 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
6640 TG3_RX_JMB_RING_BYTES(tp),
6641 &tpr->rx_jmb_mapping,
6642 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006643 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006644 goto err_out;
6645 }
6646
6647 return 0;
6648
6649err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006650 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006651 return -ENOMEM;
6652}
6653
6654/* Free up pending packets in all rx/tx rings.
6655 *
6656 * The chip has been shut down and the driver detached from
6657 * the networking, so no interrupts or new tx packets will
6658 * end up in the driver. tp->{tx,}lock is not held and we are not
6659 * in an interrupt context and thus may sleep.
6660 */
6661static void tg3_free_rings(struct tg3 *tp)
6662{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006663 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006664
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006665 for (j = 0; j < tp->irq_cnt; j++) {
6666 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006667
Matt Carlson8fea32b2010-09-15 08:59:58 +00006668 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00006669
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006670 if (!tnapi->tx_buffers)
6671 continue;
6672
Matt Carlson0d681b22011-07-27 14:20:49 +00006673 for (i = 0; i < TG3_TX_RING_SIZE; i++) {
6674 struct sk_buff *skb = tnapi->tx_buffers[i].skb;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006675
Matt Carlson0d681b22011-07-27 14:20:49 +00006676 if (!skb)
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006677 continue;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006678
Matt Carlson0d681b22011-07-27 14:20:49 +00006679 tg3_tx_skb_unmap(tnapi, i, skb_shinfo(skb)->nr_frags);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006680
6681 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006682 }
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006683 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006684}
6685
6686/* Initialize tx/rx rings for packet processing.
6687 *
6688 * The chip has been shut down and the driver detached from
6689 * the networking, so no interrupts or new tx packets will
6690 * end up in the driver. tp->{tx,}lock are held and thus
6691 * we may not sleep.
6692 */
6693static int tg3_init_rings(struct tg3 *tp)
6694{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006695 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006696
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006697 /* Free up all the SKBs. */
6698 tg3_free_rings(tp);
6699
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006700 for (i = 0; i < tp->irq_cnt; i++) {
6701 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006702
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006703 tnapi->last_tag = 0;
6704 tnapi->last_irq_tag = 0;
6705 tnapi->hw_status->status = 0;
6706 tnapi->hw_status->status_tag = 0;
6707 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6708
6709 tnapi->tx_prod = 0;
6710 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006711 if (tnapi->tx_ring)
6712 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006713
6714 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006715 if (tnapi->rx_rcb)
6716 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006717
Matt Carlson8fea32b2010-09-15 08:59:58 +00006718 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00006719 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006720 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006721 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006722 }
Matt Carlson72334482009-08-28 14:03:01 +00006723
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006724 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006725}
6726
6727/*
6728 * Must not be invoked with interrupt sources disabled and
6729 * the hardware shutdown down.
6730 */
6731static void tg3_free_consistent(struct tg3 *tp)
6732{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006733 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006734
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006735 for (i = 0; i < tp->irq_cnt; i++) {
6736 struct tg3_napi *tnapi = &tp->napi[i];
6737
6738 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006739 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006740 tnapi->tx_ring, tnapi->tx_desc_mapping);
6741 tnapi->tx_ring = NULL;
6742 }
6743
6744 kfree(tnapi->tx_buffers);
6745 tnapi->tx_buffers = NULL;
6746
6747 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006748 dma_free_coherent(&tp->pdev->dev,
6749 TG3_RX_RCB_RING_BYTES(tp),
6750 tnapi->rx_rcb,
6751 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006752 tnapi->rx_rcb = NULL;
6753 }
6754
Matt Carlson8fea32b2010-09-15 08:59:58 +00006755 tg3_rx_prodring_fini(tp, &tnapi->prodring);
6756
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006757 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006758 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
6759 tnapi->hw_status,
6760 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006761 tnapi->hw_status = NULL;
6762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006764
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006766 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
6767 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768 tp->hw_stats = NULL;
6769 }
6770}
6771
6772/*
6773 * Must not be invoked with interrupt sources disabled and
6774 * the hardware shutdown down. Can sleep.
6775 */
6776static int tg3_alloc_consistent(struct tg3 *tp)
6777{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006778 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006779
Matt Carlson4bae65c2010-11-24 08:31:52 +00006780 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
6781 sizeof(struct tg3_hw_stats),
6782 &tp->stats_mapping,
6783 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784 if (!tp->hw_stats)
6785 goto err_out;
6786
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6788
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006789 for (i = 0; i < tp->irq_cnt; i++) {
6790 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006791 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006792
Matt Carlson4bae65c2010-11-24 08:31:52 +00006793 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
6794 TG3_HW_STATUS_SIZE,
6795 &tnapi->status_mapping,
6796 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006797 if (!tnapi->hw_status)
6798 goto err_out;
6799
6800 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006801 sblk = tnapi->hw_status;
6802
Matt Carlson8fea32b2010-09-15 08:59:58 +00006803 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
6804 goto err_out;
6805
Matt Carlson19cfaec2009-12-03 08:36:20 +00006806 /* If multivector TSS is enabled, vector 0 does not handle
6807 * tx interrupts. Don't allocate any resources for it.
6808 */
Joe Perches63c3a662011-04-26 08:12:10 +00006809 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
6810 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlsondf8944c2011-07-27 14:20:46 +00006811 tnapi->tx_buffers = kzalloc(
6812 sizeof(struct tg3_tx_ring_info) *
6813 TG3_TX_RING_SIZE, GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00006814 if (!tnapi->tx_buffers)
6815 goto err_out;
6816
Matt Carlson4bae65c2010-11-24 08:31:52 +00006817 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
6818 TG3_TX_RING_BYTES,
6819 &tnapi->tx_desc_mapping,
6820 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00006821 if (!tnapi->tx_ring)
6822 goto err_out;
6823 }
6824
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006825 /*
6826 * When RSS is enabled, the status block format changes
6827 * slightly. The "rx_jumbo_consumer", "reserved",
6828 * and "rx_mini_consumer" members get mapped to the
6829 * other three rx return ring producer indexes.
6830 */
6831 switch (i) {
6832 default:
6833 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6834 break;
6835 case 2:
6836 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6837 break;
6838 case 3:
6839 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6840 break;
6841 case 4:
6842 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6843 break;
6844 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006845
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006846 /*
6847 * If multivector RSS is enabled, vector 0 does not handle
6848 * rx or tx interrupts. Don't allocate any resources for it.
6849 */
Joe Perches63c3a662011-04-26 08:12:10 +00006850 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006851 continue;
6852
Matt Carlson4bae65c2010-11-24 08:31:52 +00006853 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
6854 TG3_RX_RCB_RING_BYTES(tp),
6855 &tnapi->rx_rcb_mapping,
6856 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006857 if (!tnapi->rx_rcb)
6858 goto err_out;
6859
6860 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006861 }
6862
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863 return 0;
6864
6865err_out:
6866 tg3_free_consistent(tp);
6867 return -ENOMEM;
6868}
6869
6870#define MAX_WAIT_CNT 1000
6871
6872/* To stop a block, clear the enable bit and poll till it
6873 * clears. tp->lock is held.
6874 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006875static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876{
6877 unsigned int i;
6878 u32 val;
6879
Joe Perches63c3a662011-04-26 08:12:10 +00006880 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 switch (ofs) {
6882 case RCVLSC_MODE:
6883 case DMAC_MODE:
6884 case MBFREE_MODE:
6885 case BUFMGR_MODE:
6886 case MEMARB_MODE:
6887 /* We can't enable/disable these bits of the
6888 * 5705/5750, just say success.
6889 */
6890 return 0;
6891
6892 default:
6893 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895 }
6896
6897 val = tr32(ofs);
6898 val &= ~enable_bit;
6899 tw32_f(ofs, val);
6900
6901 for (i = 0; i < MAX_WAIT_CNT; i++) {
6902 udelay(100);
6903 val = tr32(ofs);
6904 if ((val & enable_bit) == 0)
6905 break;
6906 }
6907
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006908 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00006909 dev_err(&tp->pdev->dev,
6910 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
6911 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912 return -ENODEV;
6913 }
6914
6915 return 0;
6916}
6917
6918/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006919static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920{
6921 int i, err;
6922
6923 tg3_disable_ints(tp);
6924
6925 tp->rx_mode &= ~RX_MODE_ENABLE;
6926 tw32_f(MAC_RX_MODE, tp->rx_mode);
6927 udelay(10);
6928
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006929 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6930 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6931 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6932 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6933 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6934 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006936 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6937 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6938 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6939 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6940 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6941 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6942 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943
6944 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6945 tw32_f(MAC_MODE, tp->mac_mode);
6946 udelay(40);
6947
6948 tp->tx_mode &= ~TX_MODE_ENABLE;
6949 tw32_f(MAC_TX_MODE, tp->tx_mode);
6950
6951 for (i = 0; i < MAX_WAIT_CNT; i++) {
6952 udelay(100);
6953 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6954 break;
6955 }
6956 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00006957 dev_err(&tp->pdev->dev,
6958 "%s timed out, TX_MODE_ENABLE will not clear "
6959 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006960 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961 }
6962
Michael Chane6de8ad2005-05-05 14:42:41 -07006963 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006964 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6965 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966
6967 tw32(FTQ_RESET, 0xffffffff);
6968 tw32(FTQ_RESET, 0x00000000);
6969
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006970 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6971 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006973 for (i = 0; i < tp->irq_cnt; i++) {
6974 struct tg3_napi *tnapi = &tp->napi[i];
6975 if (tnapi->hw_status)
6976 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 if (tp->hw_stats)
6979 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6980
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981 return err;
6982}
6983
Matt Carlson0d3031d2007-10-10 18:02:43 -07006984static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6985{
6986 int i;
6987 u32 apedata;
6988
Matt Carlsondc6d0742010-09-15 08:59:55 +00006989 /* NCSI does not support APE events */
Joe Perches63c3a662011-04-26 08:12:10 +00006990 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsondc6d0742010-09-15 08:59:55 +00006991 return;
6992
Matt Carlson0d3031d2007-10-10 18:02:43 -07006993 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6994 if (apedata != APE_SEG_SIG_MAGIC)
6995 return;
6996
6997 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006998 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006999 return;
7000
7001 /* Wait for up to 1 millisecond for APE to service previous event. */
7002 for (i = 0; i < 10; i++) {
7003 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
7004 return;
7005
7006 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
7007
7008 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
7009 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
7010 event | APE_EVENT_STATUS_EVENT_PENDING);
7011
7012 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
7013
7014 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
7015 break;
7016
7017 udelay(100);
7018 }
7019
7020 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
7021 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
7022}
7023
7024static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
7025{
7026 u32 event;
7027 u32 apedata;
7028
Joe Perches63c3a662011-04-26 08:12:10 +00007029 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007030 return;
7031
7032 switch (kind) {
Matt Carlson33f401a2010-04-05 10:19:27 +00007033 case RESET_KIND_INIT:
7034 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
7035 APE_HOST_SEG_SIG_MAGIC);
7036 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
7037 APE_HOST_SEG_LEN_MAGIC);
7038 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
7039 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
7040 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
Matt Carlson6867c842010-07-11 09:31:44 +00007041 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
Matt Carlson33f401a2010-04-05 10:19:27 +00007042 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
7043 APE_HOST_BEHAV_NO_PHYLOCK);
Matt Carlsondc6d0742010-09-15 08:59:55 +00007044 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
7045 TG3_APE_HOST_DRVR_STATE_START);
Matt Carlson0d3031d2007-10-10 18:02:43 -07007046
Matt Carlson33f401a2010-04-05 10:19:27 +00007047 event = APE_EVENT_STATUS_STATE_START;
7048 break;
7049 case RESET_KIND_SHUTDOWN:
7050 /* With the interface we are currently using,
7051 * APE does not track driver state. Wiping
7052 * out the HOST SEGMENT SIGNATURE forces
7053 * the APE to assume OS absent status.
7054 */
7055 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
Matt Carlsonb2aee152008-11-03 16:51:11 -08007056
Matt Carlsondc6d0742010-09-15 08:59:55 +00007057 if (device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00007058 tg3_flag(tp, WOL_ENABLE)) {
Matt Carlsondc6d0742010-09-15 08:59:55 +00007059 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
7060 TG3_APE_HOST_WOL_SPEED_AUTO);
7061 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
7062 } else
7063 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
7064
7065 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
7066
Matt Carlson33f401a2010-04-05 10:19:27 +00007067 event = APE_EVENT_STATUS_STATE_UNLOAD;
7068 break;
7069 case RESET_KIND_SUSPEND:
7070 event = APE_EVENT_STATUS_STATE_SUSPEND;
7071 break;
7072 default:
7073 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007074 }
7075
7076 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
7077
7078 tg3_ape_send_event(tp, event);
7079}
7080
Michael Chane6af3012005-04-21 17:12:05 -07007081/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
7083{
David S. Millerf49639e2006-06-09 11:58:36 -07007084 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
7085 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086
Joe Perches63c3a662011-04-26 08:12:10 +00007087 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088 switch (kind) {
7089 case RESET_KIND_INIT:
7090 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7091 DRV_STATE_START);
7092 break;
7093
7094 case RESET_KIND_SHUTDOWN:
7095 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7096 DRV_STATE_UNLOAD);
7097 break;
7098
7099 case RESET_KIND_SUSPEND:
7100 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7101 DRV_STATE_SUSPEND);
7102 break;
7103
7104 default:
7105 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07007108
7109 if (kind == RESET_KIND_INIT ||
7110 kind == RESET_KIND_SUSPEND)
7111 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112}
7113
7114/* tp->lock is held. */
7115static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
7116{
Joe Perches63c3a662011-04-26 08:12:10 +00007117 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118 switch (kind) {
7119 case RESET_KIND_INIT:
7120 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7121 DRV_STATE_START_DONE);
7122 break;
7123
7124 case RESET_KIND_SHUTDOWN:
7125 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7126 DRV_STATE_UNLOAD_DONE);
7127 break;
7128
7129 default:
7130 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07007133
7134 if (kind == RESET_KIND_SHUTDOWN)
7135 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136}
7137
7138/* tp->lock is held. */
7139static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
7140{
Joe Perches63c3a662011-04-26 08:12:10 +00007141 if (tg3_flag(tp, ENABLE_ASF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142 switch (kind) {
7143 case RESET_KIND_INIT:
7144 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7145 DRV_STATE_START);
7146 break;
7147
7148 case RESET_KIND_SHUTDOWN:
7149 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7150 DRV_STATE_UNLOAD);
7151 break;
7152
7153 case RESET_KIND_SUSPEND:
7154 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7155 DRV_STATE_SUSPEND);
7156 break;
7157
7158 default:
7159 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161 }
7162}
7163
Michael Chan7a6f4362006-09-27 16:03:31 -07007164static int tg3_poll_fw(struct tg3 *tp)
7165{
7166 int i;
7167 u32 val;
7168
Michael Chanb5d37722006-09-27 16:06:21 -07007169 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08007170 /* Wait up to 20ms for init done. */
7171 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07007172 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
7173 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08007174 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07007175 }
7176 return -ENODEV;
7177 }
7178
Michael Chan7a6f4362006-09-27 16:03:31 -07007179 /* Wait for firmware initialization to complete. */
7180 for (i = 0; i < 100000; i++) {
7181 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
7182 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
7183 break;
7184 udelay(10);
7185 }
7186
7187 /* Chip might not be fitted with firmware. Some Sun onboard
7188 * parts are configured like that. So don't signal the timeout
7189 * of the above loop as an error, but do report the lack of
7190 * running firmware once.
7191 */
Joe Perches63c3a662011-04-26 08:12:10 +00007192 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
7193 tg3_flag_set(tp, NO_FWARE_REPORTED);
Michael Chan7a6f4362006-09-27 16:03:31 -07007194
Joe Perches05dbe002010-02-17 19:44:19 +00007195 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07007196 }
7197
Matt Carlson6b10c162010-02-12 14:47:08 +00007198 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
7199 /* The 57765 A0 needs a little more
7200 * time to do some important work.
7201 */
7202 mdelay(10);
7203 }
7204
Michael Chan7a6f4362006-09-27 16:03:31 -07007205 return 0;
7206}
7207
Michael Chanee6a99b2007-07-18 21:49:10 -07007208/* Save PCI command register before chip reset */
7209static void tg3_save_pci_state(struct tg3 *tp)
7210{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007211 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007212}
7213
7214/* Restore PCI state after chip reset */
7215static void tg3_restore_pci_state(struct tg3 *tp)
7216{
7217 u32 val;
7218
7219 /* Re-enable indirect register accesses. */
7220 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7221 tp->misc_host_ctrl);
7222
7223 /* Set MAX PCI retry to zero. */
7224 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7225 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007226 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007227 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007228 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007229 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007230 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +00007231 PCISTATE_ALLOW_APE_SHMEM_WR |
7232 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007233 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7234
Matt Carlson8a6eac92007-10-21 16:17:55 -07007235 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007236
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007237 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +00007238 if (tg3_flag(tp, PCI_EXPRESS))
Matt Carlsoncf790032010-11-24 08:31:48 +00007239 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007240 else {
7241 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7242 tp->pci_cacheline_sz);
7243 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7244 tp->pci_lat_timer);
7245 }
Michael Chan114342f2007-10-15 02:12:26 -07007246 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007247
Michael Chanee6a99b2007-07-18 21:49:10 -07007248 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007249 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007250 u16 pcix_cmd;
7251
7252 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7253 &pcix_cmd);
7254 pcix_cmd &= ~PCI_X_CMD_ERO;
7255 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7256 pcix_cmd);
7257 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007258
Joe Perches63c3a662011-04-26 08:12:10 +00007259 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007260
7261 /* Chip reset on 5780 will reset MSI enable bit,
7262 * so need to restore it.
7263 */
Joe Perches63c3a662011-04-26 08:12:10 +00007264 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007265 u16 ctrl;
7266
7267 pci_read_config_word(tp->pdev,
7268 tp->msi_cap + PCI_MSI_FLAGS,
7269 &ctrl);
7270 pci_write_config_word(tp->pdev,
7271 tp->msi_cap + PCI_MSI_FLAGS,
7272 ctrl | PCI_MSI_FLAGS_ENABLE);
7273 val = tr32(MSGINT_MODE);
7274 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7275 }
7276 }
7277}
7278
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279static void tg3_stop_fw(struct tg3 *);
7280
7281/* tp->lock is held. */
7282static int tg3_chip_reset(struct tg3 *tp)
7283{
7284 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007285 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007286 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287
David S. Millerf49639e2006-06-09 11:58:36 -07007288 tg3_nvram_lock(tp);
7289
Matt Carlson77b483f2008-08-15 14:07:24 -07007290 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7291
David S. Millerf49639e2006-06-09 11:58:36 -07007292 /* No matching tg3_nvram_unlock() after this because
7293 * chip reset below will undo the nvram lock.
7294 */
7295 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296
Michael Chanee6a99b2007-07-18 21:49:10 -07007297 /* GRC_MISC_CFG core clock reset will clear the memory
7298 * enable bit in PCI register 4 and the MSI enable bit
7299 * on some chips, so we save relevant registers here.
7300 */
7301 tg3_save_pci_state(tp);
7302
Michael Chand9ab5ad2006-03-20 22:27:35 -08007303 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007304 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad2006-03-20 22:27:35 -08007305 tw32(GRC_FASTBOOT_PC, 0);
7306
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307 /*
7308 * We must avoid the readl() that normally takes place.
7309 * It locks machines, causes machine checks, and other
7310 * fun things. So, temporarily disable the 5701
7311 * hardware workaround, while we do the reset.
7312 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007313 write_op = tp->write32;
7314 if (write_op == tg3_write_flush_reg32)
7315 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316
Michael Chand18edcb2007-03-24 20:57:11 -07007317 /* Prevent the irq handler from reading or writing PCI registers
7318 * during chip reset when the memory enable bit in the PCI command
7319 * register may be cleared. The chip does not generate interrupt
7320 * at this time, but the irq handler may still be called due to irq
7321 * sharing or irqpoll.
7322 */
Joe Perches63c3a662011-04-26 08:12:10 +00007323 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007324 for (i = 0; i < tp->irq_cnt; i++) {
7325 struct tg3_napi *tnapi = &tp->napi[i];
7326 if (tnapi->hw_status) {
7327 tnapi->hw_status->status = 0;
7328 tnapi->hw_status->status_tag = 0;
7329 }
7330 tnapi->last_tag = 0;
7331 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007332 }
Michael Chand18edcb2007-03-24 20:57:11 -07007333 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007334
7335 for (i = 0; i < tp->irq_cnt; i++)
7336 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007337
Matt Carlson255ca312009-08-25 10:07:27 +00007338 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7339 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7340 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7341 }
7342
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343 /* do the reset */
7344 val = GRC_MISC_CFG_CORECLK_RESET;
7345
Joe Perches63c3a662011-04-26 08:12:10 +00007346 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007347 /* Force PCIe 1.0a mode */
7348 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007349 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007350 tr32(TG3_PCIE_PHY_TSTCTL) ==
7351 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7352 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7353
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7355 tw32(GRC_MISC_CFG, (1 << 29));
7356 val |= (1 << 29);
7357 }
7358 }
7359
Michael Chanb5d37722006-09-27 16:06:21 -07007360 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7361 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7362 tw32(GRC_VCPU_EXT_CTRL,
7363 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7364 }
7365
Matt Carlsonf37500d2010-08-02 11:25:59 +00007366 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007367 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007369
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370 tw32(GRC_MISC_CFG, val);
7371
Michael Chan1ee582d2005-08-09 20:16:46 -07007372 /* restore 5701 hardware bug workaround write method */
7373 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374
7375 /* Unfortunately, we have to delay before the PCI read back.
7376 * Some 575X chips even will not respond to a PCI cfg access
7377 * when the reset command is given to the chip.
7378 *
7379 * How do these hardware designers expect things to work
7380 * properly if the PCI write is posted for a long period
7381 * of time? It is always necessary to have some method by
7382 * which a register read back can occur to push the write
7383 * out which does the reset.
7384 *
7385 * For most tg3 variants the trick below was working.
7386 * Ho hum...
7387 */
7388 udelay(120);
7389
7390 /* Flush PCI posted writes. The normal MMIO registers
7391 * are inaccessible at this time so this is the only
7392 * way to make this reliably (actually, this is no longer
7393 * the case, see above). I tried to use indirect
7394 * register read/write but this upset some 5701 variants.
7395 */
7396 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7397
7398 udelay(120);
7399
Jon Mason708ebb32011-06-27 12:56:50 +00007400 if (tg3_flag(tp, PCI_EXPRESS) && pci_pcie_cap(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00007401 u16 val16;
7402
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7404 int i;
7405 u32 cfg_val;
7406
7407 /* Wait for link training to complete. */
7408 for (i = 0; i < 5000; i++)
7409 udelay(100);
7410
7411 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7412 pci_write_config_dword(tp->pdev, 0xc4,
7413 cfg_val | (1 << 15));
7414 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007415
Matt Carlsone7126992009-08-25 10:08:16 +00007416 /* Clear the "no snoop" and "relaxed ordering" bits. */
7417 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007418 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007419 &val16);
7420 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7421 PCI_EXP_DEVCTL_NOSNOOP_EN);
7422 /*
7423 * Older PCIe devices only support the 128 byte
7424 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007425 */
Joe Perches63c3a662011-04-26 08:12:10 +00007426 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007427 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007428 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007429 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007430 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007431
Matt Carlsoncf790032010-11-24 08:31:48 +00007432 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007433
7434 /* Clear error status */
7435 pci_write_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +00007436 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007437 PCI_EXP_DEVSTA_CED |
7438 PCI_EXP_DEVSTA_NFED |
7439 PCI_EXP_DEVSTA_FED |
7440 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441 }
7442
Michael Chanee6a99b2007-07-18 21:49:10 -07007443 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444
Joe Perches63c3a662011-04-26 08:12:10 +00007445 tg3_flag_clear(tp, CHIP_RESETTING);
7446 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007447
Michael Chanee6a99b2007-07-18 21:49:10 -07007448 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007449 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007450 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007451 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452
7453 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7454 tg3_stop_fw(tp);
7455 tw32(0x5000, 0x400);
7456 }
7457
7458 tw32(GRC_MODE, tp->grc_mode);
7459
7460 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007461 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462
7463 tw32(0xc4, val | (1 << 15));
7464 }
7465
7466 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7467 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7468 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7469 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7470 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7471 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7472 }
7473
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007474 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007475 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007476 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007477 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007478 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007479 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007481 val = 0;
7482
7483 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484 udelay(40);
7485
Matt Carlson77b483f2008-08-15 14:07:24 -07007486 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7487
Michael Chan7a6f4362006-09-27 16:03:31 -07007488 err = tg3_poll_fw(tp);
7489 if (err)
7490 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491
Matt Carlson0a9140c2009-08-28 12:27:50 +00007492 tg3_mdio_start(tp);
7493
Joe Perches63c3a662011-04-26 08:12:10 +00007494 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007495 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7496 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007497 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007498 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
7500 tw32(0x7c00, val | (1 << 25));
7501 }
7502
Matt Carlsond78b59f2011-04-05 14:22:46 +00007503 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7504 val = tr32(TG3_CPMU_CLCK_ORIDE);
7505 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7506 }
7507
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007509 tg3_flag_clear(tp, ENABLE_ASF);
7510 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7512 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7513 u32 nic_cfg;
7514
7515 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7516 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007517 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007518 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007519 if (tg3_flag(tp, 5750_PLUS))
7520 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521 }
7522 }
7523
7524 return 0;
7525}
7526
7527/* tp->lock is held. */
7528static void tg3_stop_fw(struct tg3 *tp)
7529{
Joe Perches63c3a662011-04-26 08:12:10 +00007530 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007531 /* Wait for RX cpu to ACK the previous event. */
7532 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533
7534 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007535
7536 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537
Matt Carlson7c5026a2008-05-02 16:49:29 -07007538 /* Wait for RX cpu to ACK this event. */
7539 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540 }
7541}
7542
7543/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007544static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545{
7546 int err;
7547
7548 tg3_stop_fw(tp);
7549
Michael Chan944d9802005-05-29 14:57:48 -07007550 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007552 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553 err = tg3_chip_reset(tp);
7554
Matt Carlsondaba2a62009-04-20 06:58:52 +00007555 __tg3_set_mac_addr(tp, 0);
7556
Michael Chan944d9802005-05-29 14:57:48 -07007557 tg3_write_sig_legacy(tp, kind);
7558 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559
7560 if (err)
7561 return err;
7562
7563 return 0;
7564}
7565
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566#define RX_CPU_SCRATCH_BASE 0x30000
7567#define RX_CPU_SCRATCH_SIZE 0x04000
7568#define TX_CPU_SCRATCH_BASE 0x34000
7569#define TX_CPU_SCRATCH_SIZE 0x04000
7570
7571/* tp->lock is held. */
7572static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7573{
7574 int i;
7575
Joe Perches63c3a662011-04-26 08:12:10 +00007576 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577
Michael Chanb5d37722006-09-27 16:06:21 -07007578 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7579 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7580
7581 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7582 return 0;
7583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584 if (offset == RX_CPU_BASE) {
7585 for (i = 0; i < 10000; i++) {
7586 tw32(offset + CPU_STATE, 0xffffffff);
7587 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7588 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7589 break;
7590 }
7591
7592 tw32(offset + CPU_STATE, 0xffffffff);
7593 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7594 udelay(10);
7595 } else {
7596 for (i = 0; i < 10000; i++) {
7597 tw32(offset + CPU_STATE, 0xffffffff);
7598 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7599 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7600 break;
7601 }
7602 }
7603
7604 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007605 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7606 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607 return -ENODEV;
7608 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007609
7610 /* Clear firmware's nvram arbitration. */
Joe Perches63c3a662011-04-26 08:12:10 +00007611 if (tg3_flag(tp, NVRAM))
Michael Chanec41c7d2006-01-17 02:40:55 -08007612 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613 return 0;
7614}
7615
7616struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007617 unsigned int fw_base;
7618 unsigned int fw_len;
7619 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620};
7621
7622/* tp->lock is held. */
7623static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7624 int cpu_scratch_size, struct fw_info *info)
7625{
Michael Chanec41c7d2006-01-17 02:40:55 -08007626 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007627 void (*write_op)(struct tg3 *, u32, u32);
7628
Joe Perches63c3a662011-04-26 08:12:10 +00007629 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007630 netdev_err(tp->dev,
7631 "%s: Trying to load TX cpu firmware which is 5705\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007632 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633 return -EINVAL;
7634 }
7635
Joe Perches63c3a662011-04-26 08:12:10 +00007636 if (tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637 write_op = tg3_write_mem;
7638 else
7639 write_op = tg3_write_indirect_reg32;
7640
Michael Chan1b628152005-05-29 14:59:49 -07007641 /* It is possible that bootcode is still loading at this point.
7642 * Get the nvram lock first before halting the cpu.
7643 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007644 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007646 if (!lock_err)
7647 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648 if (err)
7649 goto out;
7650
7651 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7652 write_op(tp, cpu_scratch_base + i, 0);
7653 tw32(cpu_base + CPU_STATE, 0xffffffff);
7654 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007655 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007657 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007659 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660
7661 err = 0;
7662
7663out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664 return err;
7665}
7666
7667/* tp->lock is held. */
7668static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7669{
7670 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007671 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672 int err, i;
7673
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007674 fw_data = (void *)tp->fw->data;
7675
7676 /* Firmware blob starts with version numbers, followed by
7677 start address and length. We are setting complete length.
7678 length = end_address_of_bss - start_address_of_text.
7679 Remainder is the blob to be loaded contiguously
7680 from start address. */
7681
7682 info.fw_base = be32_to_cpu(fw_data[1]);
7683 info.fw_len = tp->fw->size - 12;
7684 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685
7686 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7687 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7688 &info);
7689 if (err)
7690 return err;
7691
7692 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7693 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7694 &info);
7695 if (err)
7696 return err;
7697
7698 /* Now startup only the RX cpu. */
7699 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007700 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701
7702 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007703 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704 break;
7705 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7706 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007707 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708 udelay(1000);
7709 }
7710 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007711 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
7712 "should be %08x\n", __func__,
Joe Perches05dbe002010-02-17 19:44:19 +00007713 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714 return -ENODEV;
7715 }
7716 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7717 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7718
7719 return 0;
7720}
7721
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722/* tp->lock is held. */
7723static int tg3_load_tso_firmware(struct tg3 *tp)
7724{
7725 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007726 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7728 int err, i;
7729
Joe Perches63c3a662011-04-26 08:12:10 +00007730 if (tg3_flag(tp, HW_TSO_1) ||
7731 tg3_flag(tp, HW_TSO_2) ||
7732 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733 return 0;
7734
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007735 fw_data = (void *)tp->fw->data;
7736
7737 /* Firmware blob starts with version numbers, followed by
7738 start address and length. We are setting complete length.
7739 length = end_address_of_bss - start_address_of_text.
7740 Remainder is the blob to be loaded contiguously
7741 from start address. */
7742
7743 info.fw_base = be32_to_cpu(fw_data[1]);
7744 cpu_scratch_size = tp->fw_len;
7745 info.fw_len = tp->fw->size - 12;
7746 info.fw_data = &fw_data[3];
7747
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749 cpu_base = RX_CPU_BASE;
7750 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007752 cpu_base = TX_CPU_BASE;
7753 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7754 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7755 }
7756
7757 err = tg3_load_firmware_cpu(tp, cpu_base,
7758 cpu_scratch_base, cpu_scratch_size,
7759 &info);
7760 if (err)
7761 return err;
7762
7763 /* Now startup the cpu. */
7764 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007765 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766
7767 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007768 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769 break;
7770 tw32(cpu_base + CPU_STATE, 0xffffffff);
7771 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007772 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773 udelay(1000);
7774 }
7775 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007776 netdev_err(tp->dev,
7777 "%s fails to set CPU PC, is %08x should be %08x\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007778 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779 return -ENODEV;
7780 }
7781 tw32(cpu_base + CPU_STATE, 0xffffffff);
7782 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7783 return 0;
7784}
7785
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787static int tg3_set_mac_addr(struct net_device *dev, void *p)
7788{
7789 struct tg3 *tp = netdev_priv(dev);
7790 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007791 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792
Michael Chanf9804dd2005-09-27 12:13:10 -07007793 if (!is_valid_ether_addr(addr->sa_data))
7794 return -EINVAL;
7795
Linus Torvalds1da177e2005-04-16 15:20:36 -07007796 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7797
Michael Chane75f7c92006-03-20 21:33:26 -08007798 if (!netif_running(dev))
7799 return 0;
7800
Joe Perches63c3a662011-04-26 08:12:10 +00007801 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007802 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007803
Michael Chan986e0ae2007-05-05 12:10:20 -07007804 addr0_high = tr32(MAC_ADDR_0_HIGH);
7805 addr0_low = tr32(MAC_ADDR_0_LOW);
7806 addr1_high = tr32(MAC_ADDR_1_HIGH);
7807 addr1_low = tr32(MAC_ADDR_1_LOW);
7808
7809 /* Skip MAC addr 1 if ASF is using it. */
7810 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7811 !(addr1_high == 0 && addr1_low == 0))
7812 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007813 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007814 spin_lock_bh(&tp->lock);
7815 __tg3_set_mac_addr(tp, skip_mac_1);
7816 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817
Michael Chanb9ec6c12006-07-25 16:37:27 -07007818 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819}
7820
7821/* tp->lock is held. */
7822static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7823 dma_addr_t mapping, u32 maxlen_flags,
7824 u32 nic_addr)
7825{
7826 tg3_write_mem(tp,
7827 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7828 ((u64) mapping >> 32));
7829 tg3_write_mem(tp,
7830 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7831 ((u64) mapping & 0xffffffff));
7832 tg3_write_mem(tp,
7833 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7834 maxlen_flags);
7835
Joe Perches63c3a662011-04-26 08:12:10 +00007836 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837 tg3_write_mem(tp,
7838 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7839 nic_addr);
7840}
7841
7842static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007843static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007844{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007845 int i;
7846
Joe Perches63c3a662011-04-26 08:12:10 +00007847 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007848 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7849 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7850 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007851 } else {
7852 tw32(HOSTCC_TXCOL_TICKS, 0);
7853 tw32(HOSTCC_TXMAX_FRAMES, 0);
7854 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007855 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007856
Joe Perches63c3a662011-04-26 08:12:10 +00007857 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007858 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7859 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7860 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7861 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007862 tw32(HOSTCC_RXCOL_TICKS, 0);
7863 tw32(HOSTCC_RXMAX_FRAMES, 0);
7864 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007865 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007866
Joe Perches63c3a662011-04-26 08:12:10 +00007867 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07007868 u32 val = ec->stats_block_coalesce_usecs;
7869
Matt Carlsonb6080e12009-09-01 13:12:00 +00007870 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7871 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7872
David S. Miller15f98502005-05-18 22:49:26 -07007873 if (!netif_carrier_ok(tp->dev))
7874 val = 0;
7875
7876 tw32(HOSTCC_STAT_COAL_TICKS, val);
7877 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007878
7879 for (i = 0; i < tp->irq_cnt - 1; i++) {
7880 u32 reg;
7881
7882 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7883 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007884 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7885 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007886 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7887 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007888
Joe Perches63c3a662011-04-26 08:12:10 +00007889 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007890 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7891 tw32(reg, ec->tx_coalesce_usecs);
7892 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7893 tw32(reg, ec->tx_max_coalesced_frames);
7894 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7895 tw32(reg, ec->tx_max_coalesced_frames_irq);
7896 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007897 }
7898
7899 for (; i < tp->irq_max - 1; i++) {
7900 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007901 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007902 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007903
Joe Perches63c3a662011-04-26 08:12:10 +00007904 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007905 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7906 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7907 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7908 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007909 }
David S. Miller15f98502005-05-18 22:49:26 -07007910}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007911
7912/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007913static void tg3_rings_reset(struct tg3 *tp)
7914{
7915 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007916 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007917 struct tg3_napi *tnapi = &tp->napi[0];
7918
7919 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007920 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007921 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00007922 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00007923 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlsonb703df62009-12-03 08:36:21 +00007924 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7925 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007926 else
7927 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7928
7929 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7930 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7931 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7932 BDINFO_FLAGS_DISABLED);
7933
7934
7935 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007936 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007937 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00007938 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007939 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007940 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7941 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007942 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7943 else
7944 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7945
7946 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7947 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7948 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7949 BDINFO_FLAGS_DISABLED);
7950
7951 /* Disable interrupts */
7952 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00007953 tp->napi[0].chk_msi_cnt = 0;
7954 tp->napi[0].last_rx_cons = 0;
7955 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007956
7957 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00007958 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00007959 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007960 tp->napi[i].tx_prod = 0;
7961 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007962 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007963 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007964 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7965 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00007966 tp->napi[0].chk_msi_cnt = 0;
7967 tp->napi[i].last_rx_cons = 0;
7968 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007969 }
Joe Perches63c3a662011-04-26 08:12:10 +00007970 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007971 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007972 } else {
7973 tp->napi[0].tx_prod = 0;
7974 tp->napi[0].tx_cons = 0;
7975 tw32_mailbox(tp->napi[0].prodmbox, 0);
7976 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7977 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007978
7979 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00007980 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00007981 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7982 for (i = 0; i < 16; i++)
7983 tw32_tx_mbox(mbox + i * 8, 0);
7984 }
7985
7986 txrcb = NIC_SRAM_SEND_RCB;
7987 rxrcb = NIC_SRAM_RCV_RET_RCB;
7988
7989 /* Clear status block in ram. */
7990 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7991
7992 /* Set status block DMA address */
7993 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7994 ((u64) tnapi->status_mapping >> 32));
7995 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7996 ((u64) tnapi->status_mapping & 0xffffffff));
7997
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007998 if (tnapi->tx_ring) {
7999 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8000 (TG3_TX_RING_SIZE <<
8001 BDINFO_FLAGS_MAXLEN_SHIFT),
8002 NIC_SRAM_TX_BUFFER_DESC);
8003 txrcb += TG3_BDINFO_SIZE;
8004 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008005
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008006 if (tnapi->rx_rcb) {
8007 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008008 (tp->rx_ret_ring_mask + 1) <<
8009 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008010 rxrcb += TG3_BDINFO_SIZE;
8011 }
8012
8013 stblk = HOSTCC_STATBLCK_RING1;
8014
8015 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
8016 u64 mapping = (u64)tnapi->status_mapping;
8017 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
8018 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
8019
8020 /* Clear status block in ram. */
8021 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
8022
Matt Carlson19cfaec2009-12-03 08:36:20 +00008023 if (tnapi->tx_ring) {
8024 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
8025 (TG3_TX_RING_SIZE <<
8026 BDINFO_FLAGS_MAXLEN_SHIFT),
8027 NIC_SRAM_TX_BUFFER_DESC);
8028 txrcb += TG3_BDINFO_SIZE;
8029 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008030
8031 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008032 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008033 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
8034
8035 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00008036 rxrcb += TG3_BDINFO_SIZE;
8037 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00008038}
8039
Matt Carlsoneb07a942011-04-20 07:57:36 +00008040static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
8041{
8042 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
8043
Joe Perches63c3a662011-04-26 08:12:10 +00008044 if (!tg3_flag(tp, 5750_PLUS) ||
8045 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00008046 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
8047 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8048 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
8049 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
8050 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
8051 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
8052 else
8053 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
8054
8055 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
8056 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
8057
8058 val = min(nic_rep_thresh, host_rep_thresh);
8059 tw32(RCVBDI_STD_THRESH, val);
8060
Joe Perches63c3a662011-04-26 08:12:10 +00008061 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008062 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8063
Joe Perches63c3a662011-04-26 08:12:10 +00008064 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008065 return;
8066
Joe Perches63c3a662011-04-26 08:12:10 +00008067 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008068 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
8069 else
8070 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5717;
8071
8072 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8073
8074 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8075 tw32(RCVBDI_JUMBO_THRESH, val);
8076
Joe Perches63c3a662011-04-26 08:12:10 +00008077 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008078 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8079}
8080
Matt Carlson2d31eca2009-09-01 12:53:31 +00008081/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008082static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083{
8084 u32 val, rdmac_mode;
8085 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008086 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087
8088 tg3_disable_ints(tp);
8089
8090 tg3_stop_fw(tp);
8091
8092 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8093
Joe Perches63c3a662011-04-26 08:12:10 +00008094 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008095 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008096
Matt Carlson699c0192010-12-06 08:28:51 +00008097 /* Enable MAC control of LPI */
8098 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8099 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8100 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8101 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8102
8103 tw32_f(TG3_CPMU_EEE_CTRL,
8104 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8105
Matt Carlsona386b902010-12-06 08:28:53 +00008106 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8107 TG3_CPMU_EEEMD_LPI_IN_TX |
8108 TG3_CPMU_EEEMD_LPI_IN_RX |
8109 TG3_CPMU_EEEMD_EEE_ENABLE;
8110
8111 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8112 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8113
Joe Perches63c3a662011-04-26 08:12:10 +00008114 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008115 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8116
8117 tw32_f(TG3_CPMU_EEE_MODE, val);
8118
8119 tw32_f(TG3_CPMU_EEE_DBTMR1,
8120 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8121 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8122
8123 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008124 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008125 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008126 }
8127
Matt Carlson603f1172010-02-12 14:47:10 +00008128 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008129 tg3_phy_reset(tp);
8130
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131 err = tg3_chip_reset(tp);
8132 if (err)
8133 return err;
8134
8135 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8136
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008137 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008138 val = tr32(TG3_CPMU_CTRL);
8139 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8140 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008141
8142 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8143 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8144 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8145 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8146
8147 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8148 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8149 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8150 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8151
8152 val = tr32(TG3_CPMU_HST_ACC);
8153 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8154 val |= CPMU_HST_ACC_MACCLK_6_25;
8155 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008156 }
8157
Matt Carlson33466d92009-04-20 06:57:41 +00008158 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8159 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8160 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8161 PCIE_PWR_MGMT_L1_THRESH_4MS;
8162 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008163
8164 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8165 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8166
8167 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00008168
Matt Carlsonf40386c2009-11-02 14:24:02 +00008169 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8170 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008171 }
8172
Joe Perches63c3a662011-04-26 08:12:10 +00008173 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b05902010-01-20 16:58:02 +00008174 u32 grc_mode = tr32(GRC_MODE);
8175
8176 /* Access the lower 1K of PL PCIE block registers. */
8177 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8178 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8179
8180 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8181 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8182 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8183
8184 tw32(GRC_MODE, grc_mode);
8185 }
8186
Matt Carlson5093eed2010-11-24 08:31:45 +00008187 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
8188 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8189 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008190
Matt Carlson5093eed2010-11-24 08:31:45 +00008191 /* Access the lower 1K of PL PCIE block registers. */
8192 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8193 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008194
Matt Carlson5093eed2010-11-24 08:31:45 +00008195 val = tr32(TG3_PCIE_TLDLPL_PORT +
8196 TG3_PCIE_PL_LO_PHYCTL5);
8197 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8198 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008199
Matt Carlson5093eed2010-11-24 08:31:45 +00008200 tw32(GRC_MODE, grc_mode);
8201 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008202
Matt Carlson1ff30a52011-05-19 12:12:46 +00008203 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8204 u32 grc_mode = tr32(GRC_MODE);
8205
8206 /* Access the lower 1K of DL PCIE block registers. */
8207 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8208 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8209
8210 val = tr32(TG3_PCIE_TLDLPL_PORT +
8211 TG3_PCIE_DL_LO_FTSMAX);
8212 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8213 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8214 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8215
8216 tw32(GRC_MODE, grc_mode);
8217 }
8218
Matt Carlsona977dbe2010-04-12 06:58:26 +00008219 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8220 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8221 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8222 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008223 }
8224
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225 /* This works around an issue with Athlon chipsets on
8226 * B3 tigon3 silicon. This bit has no effect on any
8227 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008228 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008229 */
Joe Perches63c3a662011-04-26 08:12:10 +00008230 if (!tg3_flag(tp, CPMU_PRESENT)) {
8231 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008232 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8233 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235
8236 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008237 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238 val = tr32(TG3PCI_PCISTATE);
8239 val |= PCISTATE_RETRY_SAME_DMA;
8240 tw32(TG3PCI_PCISTATE, val);
8241 }
8242
Joe Perches63c3a662011-04-26 08:12:10 +00008243 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008244 /* Allow reads and writes to the
8245 * APE register and memory space.
8246 */
8247 val = tr32(TG3PCI_PCISTATE);
8248 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +00008249 PCISTATE_ALLOW_APE_SHMEM_WR |
8250 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008251 tw32(TG3PCI_PCISTATE, val);
8252 }
8253
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8255 /* Enable some hw fixes. */
8256 val = tr32(TG3PCI_MSI_DATA);
8257 val |= (1 << 26) | (1 << 28) | (1 << 29);
8258 tw32(TG3PCI_MSI_DATA, val);
8259 }
8260
8261 /* Descriptor ring init may make accesses to the
8262 * NIC SRAM area to setup the TX descriptors, so we
8263 * can only do this after the hardware has been
8264 * successfully reset.
8265 */
Michael Chan32d8c572006-07-25 16:38:29 -07008266 err = tg3_init_rings(tp);
8267 if (err)
8268 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269
Joe Perches63c3a662011-04-26 08:12:10 +00008270 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008271 val = tr32(TG3PCI_DMA_RW_CTRL) &
8272 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008273 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8274 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson0aebff42011-04-25 12:42:45 +00008275 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
8276 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8277 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008278 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8279 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8280 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008281 /* This value is determined during the probe time DMA
8282 * engine test, tg3_test_dma.
8283 */
8284 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286
8287 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8288 GRC_MODE_4X_NIC_SEND_RINGS |
8289 GRC_MODE_NO_TX_PHDR_CSUM |
8290 GRC_MODE_NO_RX_PHDR_CSUM);
8291 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008292
8293 /* Pseudo-header checksum is done by hardware logic and not
8294 * the offload processers, so make the chip do the pseudo-
8295 * header checksums on receive. For transmit it is more
8296 * convenient to do the pseudo-header checksum in software
8297 * as Linux does that on transmit for us in all cases.
8298 */
8299 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300
8301 tw32(GRC_MODE,
8302 tp->grc_mode |
8303 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8304
8305 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8306 val = tr32(GRC_MISC_CFG);
8307 val &= ~0xff;
8308 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8309 tw32(GRC_MISC_CFG, val);
8310
8311 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008312 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313 /* Do nothing. */
8314 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8315 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8316 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8317 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8318 else
8319 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8320 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8321 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008322 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008323 int fw_len;
8324
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008325 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8327 tw32(BUFMGR_MB_POOL_ADDR,
8328 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8329 tw32(BUFMGR_MB_POOL_SIZE,
8330 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332
Michael Chan0f893dc2005-07-25 12:30:38 -07008333 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8335 tp->bufmgr_config.mbuf_read_dma_low_water);
8336 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8337 tp->bufmgr_config.mbuf_mac_rx_low_water);
8338 tw32(BUFMGR_MB_HIGH_WATER,
8339 tp->bufmgr_config.mbuf_high_water);
8340 } else {
8341 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8342 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8343 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8344 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8345 tw32(BUFMGR_MB_HIGH_WATER,
8346 tp->bufmgr_config.mbuf_high_water_jumbo);
8347 }
8348 tw32(BUFMGR_DMA_LOW_WATER,
8349 tp->bufmgr_config.dma_low_water);
8350 tw32(BUFMGR_DMA_HIGH_WATER,
8351 tp->bufmgr_config.dma_high_water);
8352
Matt Carlsond309a462010-09-30 10:34:31 +00008353 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8354 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8355 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008356 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8357 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8358 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8359 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008360 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361 for (i = 0; i < 2000; i++) {
8362 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8363 break;
8364 udelay(10);
8365 }
8366 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008367 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008368 return -ENODEV;
8369 }
8370
Matt Carlsoneb07a942011-04-20 07:57:36 +00008371 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8372 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008373
Matt Carlsoneb07a942011-04-20 07:57:36 +00008374 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008375
8376 /* Initialize TG3_BDINFO's at:
8377 * RCVDBDI_STD_BD: standard eth size rx ring
8378 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8379 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8380 *
8381 * like so:
8382 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8383 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8384 * ring attribute flags
8385 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8386 *
8387 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8388 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8389 *
8390 * The size of each ring is fixed in the firmware, but the location is
8391 * configurable.
8392 */
8393 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008394 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008396 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008397 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008398 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8399 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008401 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008402 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8404 BDINFO_FLAGS_DISABLED);
8405
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008406 /* Program the jumbo buffer descriptor ring control
8407 * blocks on those devices that have them.
8408 */
Matt Carlsona0512942011-07-27 14:20:54 +00008409 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008410 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411
Joe Perches63c3a662011-04-26 08:12:10 +00008412 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008414 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008415 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008416 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008417 val = TG3_RX_JMB_RING_SIZE(tp) <<
8418 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008420 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008421 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00008422 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson87668d32009-11-13 13:03:34 +00008423 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8424 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008425 } else {
8426 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8427 BDINFO_FLAGS_DISABLED);
8428 }
8429
Joe Perches63c3a662011-04-26 08:12:10 +00008430 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008431 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonde9f5232011-04-05 14:22:43 +00008432 val = TG3_RX_STD_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008433 else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008434 val = TG3_RX_STD_MAX_SIZE_5717;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008435 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8436 val |= (TG3_RX_STD_DMA_SZ << 2);
8437 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008438 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008439 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008440 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008441
8442 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443
Matt Carlson411da642009-11-13 13:03:46 +00008444 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008445 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446
Joe Perches63c3a662011-04-26 08:12:10 +00008447 tpr->rx_jmb_prod_idx =
8448 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008449 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450
Matt Carlson2d31eca2009-09-01 12:53:31 +00008451 tg3_rings_reset(tp);
8452
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008454 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008455
8456 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008457 tw32(MAC_RX_MTU_SIZE,
8458 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008459
8460 /* The slot time is changed by tg3_setup_phy if we
8461 * run at gigabit with half duplex.
8462 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008463 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8464 (6 << TX_LENGTHS_IPG_SHIFT) |
8465 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8466
8467 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8468 val |= tr32(MAC_TX_LENGTHS) &
8469 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8470 TX_LENGTHS_CNT_DWN_VAL_MSK);
8471
8472 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008473
8474 /* Receive rules. */
8475 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8476 tw32(RCVLPC_CONFIG, 0x0181);
8477
8478 /* Calculate RDMAC_MODE setting early, we need it to determine
8479 * the RCVLPC_STATE_ENABLE mask.
8480 */
8481 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8482 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8483 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8484 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8485 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008486
Matt Carlsondeabaac2010-11-24 08:31:50 +00008487 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008488 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8489
Matt Carlson57e69832008-05-25 23:48:31 -07008490 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008491 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8492 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008493 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8494 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8495 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8496
Matt Carlsonc5908932011-03-09 16:58:25 +00008497 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8498 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008499 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008500 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8502 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008503 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008504 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8505 }
8506 }
8507
Joe Perches63c3a662011-04-26 08:12:10 +00008508 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008509 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8510
Joe Perches63c3a662011-04-26 08:12:10 +00008511 if (tg3_flag(tp, HW_TSO_1) ||
8512 tg3_flag(tp, HW_TSO_2) ||
8513 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008514 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8515
Matt Carlson108a6c12011-05-19 12:12:47 +00008516 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008517 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008518 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8519 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520
Matt Carlsonf2096f92011-04-05 14:22:48 +00008521 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8522 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8523
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008524 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8525 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8526 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8527 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008528 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008529 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008530 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8531 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008532 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8533 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8534 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8535 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8536 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8537 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008538 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008539 tw32(TG3_RDMA_RSRVCTRL_REG,
8540 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8541 }
8542
Matt Carlsond78b59f2011-04-05 14:22:46 +00008543 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8544 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008545 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8546 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8547 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8548 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8549 }
8550
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008552 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008553 val = tr32(RCVLPC_STATS_ENABLE);
8554 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8555 tw32(RCVLPC_STATS_ENABLE, val);
8556 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008557 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558 val = tr32(RCVLPC_STATS_ENABLE);
8559 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8560 tw32(RCVLPC_STATS_ENABLE, val);
8561 } else {
8562 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8563 }
8564 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8565 tw32(SNDDATAI_STATSENAB, 0xffffff);
8566 tw32(SNDDATAI_STATSCTRL,
8567 (SNDDATAI_SCTRL_ENABLE |
8568 SNDDATAI_SCTRL_FASTUPD));
8569
8570 /* Setup host coalescing engine. */
8571 tw32(HOSTCC_MODE, 0);
8572 for (i = 0; i < 2000; i++) {
8573 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8574 break;
8575 udelay(10);
8576 }
8577
Michael Chand244c892005-07-05 14:42:33 -07008578 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008579
Joe Perches63c3a662011-04-26 08:12:10 +00008580 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008581 /* Status/statistics block address. See tg3_timer,
8582 * the tg3_periodic_fetch_stats call there, and
8583 * tg3_get_stats to see how this works for 5705/5750 chips.
8584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008585 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8586 ((u64) tp->stats_mapping >> 32));
8587 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8588 ((u64) tp->stats_mapping & 0xffffffff));
8589 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008590
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008592
8593 /* Clear statistics and status block memory areas */
8594 for (i = NIC_SRAM_STATS_BLK;
8595 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8596 i += sizeof(u32)) {
8597 tg3_write_mem(tp, i, 0);
8598 udelay(40);
8599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600 }
8601
8602 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8603
8604 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8605 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008606 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8608
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008609 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8610 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008611 /* reset to prevent losing 1st rx packet intermittently */
8612 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8613 udelay(10);
8614 }
8615
Matt Carlson3bda1252008-08-15 14:08:22 -07008616 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00008617 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
8618 MAC_MODE_FHDE_ENABLE;
8619 if (tg3_flag(tp, ENABLE_APE))
8620 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00008621 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008622 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008623 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8624 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008625 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8626 udelay(40);
8627
Michael Chan314fba32005-04-21 17:07:04 -07008628 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008629 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008630 * register to preserve the GPIO settings for LOMs. The GPIOs,
8631 * whether used as inputs or outputs, are set by boot code after
8632 * reset.
8633 */
Joe Perches63c3a662011-04-26 08:12:10 +00008634 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008635 u32 gpio_mask;
8636
Michael Chan9d26e212006-12-07 00:21:14 -08008637 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8638 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8639 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008640
8641 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8642 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8643 GRC_LCLCTRL_GPIO_OUTPUT3;
8644
Michael Chanaf36e6b2006-03-23 01:28:06 -08008645 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8646 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8647
Gary Zambranoaaf84462007-05-05 11:51:45 -07008648 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008649 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8650
8651 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008652 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008653 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8654 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008656 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8657 udelay(100);
8658
Joe Perches63c3a662011-04-26 08:12:10 +00008659 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008660 val = tr32(MSGINT_MODE);
8661 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8662 tw32(MSGINT_MODE, val);
8663 }
8664
Joe Perches63c3a662011-04-26 08:12:10 +00008665 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8667 udelay(40);
8668 }
8669
8670 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8671 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8672 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8673 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8674 WDMAC_MODE_LNGREAD_ENAB);
8675
Matt Carlsonc5908932011-03-09 16:58:25 +00008676 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8677 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008678 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8680 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8681 /* nothing */
8682 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008683 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684 val |= WDMAC_MODE_RX_ACCEL;
8685 }
8686 }
8687
Michael Chand9ab5ad2006-03-20 22:27:35 -08008688 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008689 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008690 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad2006-03-20 22:27:35 -08008691
Matt Carlson788a0352009-11-02 14:26:03 +00008692 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8693 val |= WDMAC_MODE_BURST_ALL_DATA;
8694
Linus Torvalds1da177e2005-04-16 15:20:36 -07008695 tw32_f(WDMAC_MODE, val);
8696 udelay(40);
8697
Joe Perches63c3a662011-04-26 08:12:10 +00008698 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008699 u16 pcix_cmd;
8700
8701 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8702 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008703 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008704 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8705 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008707 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8708 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709 }
Matt Carlson9974a352007-10-07 23:27:28 -07008710 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8711 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712 }
8713
8714 tw32_f(RDMAC_MODE, rdmac_mode);
8715 udelay(40);
8716
8717 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008718 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008719 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008720
8721 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8722 tw32(SNDDATAC_MODE,
8723 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8724 else
8725 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8726
Linus Torvalds1da177e2005-04-16 15:20:36 -07008727 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8728 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008729 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008730 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008731 val |= RCVDBDI_MODE_LRG_RING_SZ;
8732 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008733 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008734 if (tg3_flag(tp, HW_TSO_1) ||
8735 tg3_flag(tp, HW_TSO_2) ||
8736 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008737 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008738 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008739 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008740 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8741 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008742 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8743
8744 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8745 err = tg3_load_5701_a0_firmware_fix(tp);
8746 if (err)
8747 return err;
8748 }
8749
Joe Perches63c3a662011-04-26 08:12:10 +00008750 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751 err = tg3_load_tso_firmware(tp);
8752 if (err)
8753 return err;
8754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008755
8756 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008757
Joe Perches63c3a662011-04-26 08:12:10 +00008758 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008759 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8760 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008761
8762 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8763 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8764 tp->tx_mode &= ~val;
8765 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8766 }
8767
Linus Torvalds1da177e2005-04-16 15:20:36 -07008768 tw32_f(MAC_TX_MODE, tp->tx_mode);
8769 udelay(100);
8770
Joe Perches63c3a662011-04-26 08:12:10 +00008771 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson9d53fa12011-07-20 10:20:54 +00008772 int i = 0;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008773 u32 reg = MAC_RSS_INDIR_TBL_0;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008774
Matt Carlson9d53fa12011-07-20 10:20:54 +00008775 if (tp->irq_cnt == 2) {
8776 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i += 8) {
8777 tw32(reg, 0x0);
8778 reg += 4;
8779 }
8780 } else {
8781 u32 val;
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008782
Matt Carlson9d53fa12011-07-20 10:20:54 +00008783 while (i < TG3_RSS_INDIR_TBL_SIZE) {
8784 val = i % (tp->irq_cnt - 1);
8785 i++;
8786 for (; i % 8; i++) {
8787 val <<= 4;
8788 val |= (i % (tp->irq_cnt - 1));
8789 }
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008790 tw32(reg, val);
8791 reg += 4;
8792 }
8793 }
8794
8795 /* Setup the "secret" hash key. */
8796 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8797 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8798 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8799 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8800 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8801 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8802 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8803 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8804 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8805 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8806 }
8807
Linus Torvalds1da177e2005-04-16 15:20:36 -07008808 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008809 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008810 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8811
Joe Perches63c3a662011-04-26 08:12:10 +00008812 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008813 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8814 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8815 RX_MODE_RSS_IPV6_HASH_EN |
8816 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8817 RX_MODE_RSS_IPV4_HASH_EN |
8818 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8819
Linus Torvalds1da177e2005-04-16 15:20:36 -07008820 tw32_f(MAC_RX_MODE, tp->rx_mode);
8821 udelay(10);
8822
Linus Torvalds1da177e2005-04-16 15:20:36 -07008823 tw32(MAC_LED_CTRL, tp->led_ctrl);
8824
8825 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008826 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8828 udelay(10);
8829 }
8830 tw32_f(MAC_RX_MODE, tp->rx_mode);
8831 udelay(10);
8832
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008833 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008834 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008835 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008836 /* Set drive transmission level to 1.2V */
8837 /* only if the signal pre-emphasis bit is not set */
8838 val = tr32(MAC_SERDES_CFG);
8839 val &= 0xfffff000;
8840 val |= 0x880;
8841 tw32(MAC_SERDES_CFG, val);
8842 }
8843 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8844 tw32(MAC_SERDES_CFG, 0x616000);
8845 }
8846
8847 /* Prevent chip from dropping frames when flow control
8848 * is enabled.
8849 */
Matt Carlson666bc832010-01-20 16:58:03 +00008850 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8851 val = 1;
8852 else
8853 val = 2;
8854 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008855
8856 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008857 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008858 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00008859 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008860 }
8861
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008862 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00008863 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08008864 u32 tmp;
8865
8866 tmp = tr32(SERDES_RX_CTRL);
8867 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8868 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8869 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8870 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8871 }
8872
Joe Perches63c3a662011-04-26 08:12:10 +00008873 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson80096062010-08-02 11:26:06 +00008874 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
8875 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07008876 tp->link_config.speed = tp->link_config.orig_speed;
8877 tp->link_config.duplex = tp->link_config.orig_duplex;
8878 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880
Matt Carlsondd477002008-05-25 23:45:58 -07008881 err = tg3_setup_phy(tp, 0);
8882 if (err)
8883 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008884
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008885 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
8886 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008887 u32 tmp;
8888
8889 /* Clear CRC stats. */
8890 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8891 tg3_writephy(tp, MII_TG3_TEST1,
8892 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00008893 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07008894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008895 }
8896 }
8897
8898 __tg3_set_rx_mode(tp->dev);
8899
8900 /* Initialize receive rules. */
8901 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8902 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8903 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8904 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8905
Joe Perches63c3a662011-04-26 08:12:10 +00008906 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008907 limit = 8;
8908 else
8909 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008910 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008911 limit -= 4;
8912 switch (limit) {
8913 case 16:
8914 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8915 case 15:
8916 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8917 case 14:
8918 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8919 case 13:
8920 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8921 case 12:
8922 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8923 case 11:
8924 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8925 case 10:
8926 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8927 case 9:
8928 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8929 case 8:
8930 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8931 case 7:
8932 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8933 case 6:
8934 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8935 case 5:
8936 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8937 case 4:
8938 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8939 case 3:
8940 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8941 case 2:
8942 case 1:
8943
8944 default:
8945 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008947
Joe Perches63c3a662011-04-26 08:12:10 +00008948 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07008949 /* Write our heartbeat update interval to APE. */
8950 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8951 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008952
Linus Torvalds1da177e2005-04-16 15:20:36 -07008953 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8954
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955 return 0;
8956}
8957
8958/* Called at device open time to get the chip ready for
8959 * packet processing. Invoked with tp->lock held.
8960 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008961static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008963 tg3_switch_clocks(tp);
8964
8965 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8966
Matt Carlson2f751b62008-08-04 23:17:34 -07008967 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008968}
8969
8970#define TG3_STAT_ADD32(PSTAT, REG) \
8971do { u32 __val = tr32(REG); \
8972 (PSTAT)->low += __val; \
8973 if ((PSTAT)->low < __val) \
8974 (PSTAT)->high += 1; \
8975} while (0)
8976
8977static void tg3_periodic_fetch_stats(struct tg3 *tp)
8978{
8979 struct tg3_hw_stats *sp = tp->hw_stats;
8980
8981 if (!netif_carrier_ok(tp->dev))
8982 return;
8983
8984 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8985 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8986 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8987 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8988 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8989 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8990 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8991 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8992 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8993 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8994 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8995 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8996 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8997
8998 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8999 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
9000 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
9001 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
9002 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
9003 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
9004 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
9005 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
9006 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
9007 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
9008 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
9009 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
9010 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
9011 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07009012
9013 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00009014 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9015 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
9016 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00009017 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
9018 } else {
9019 u32 val = tr32(HOSTCC_FLOW_ATTN);
9020 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
9021 if (val) {
9022 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
9023 sp->rx_discards.low += val;
9024 if (sp->rx_discards.low < val)
9025 sp->rx_discards.high += 1;
9026 }
9027 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
9028 }
Michael Chan463d3052006-05-22 16:36:27 -07009029 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030}
9031
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009032static void tg3_chk_missed_msi(struct tg3 *tp)
9033{
9034 u32 i;
9035
9036 for (i = 0; i < tp->irq_cnt; i++) {
9037 struct tg3_napi *tnapi = &tp->napi[i];
9038
9039 if (tg3_has_work(tnapi)) {
9040 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
9041 tnapi->last_tx_cons == tnapi->tx_cons) {
9042 if (tnapi->chk_msi_cnt < 1) {
9043 tnapi->chk_msi_cnt++;
9044 return;
9045 }
9046 tw32_mailbox(tnapi->int_mbox,
9047 tnapi->last_tag << 24);
9048 }
9049 }
9050 tnapi->chk_msi_cnt = 0;
9051 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
9052 tnapi->last_tx_cons = tnapi->tx_cons;
9053 }
9054}
9055
Linus Torvalds1da177e2005-04-16 15:20:36 -07009056static void tg3_timer(unsigned long __opaque)
9057{
9058 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009059
Michael Chanf475f162006-03-27 23:20:14 -08009060 if (tp->irq_sync)
9061 goto restart_timer;
9062
David S. Millerf47c11e2005-06-24 20:18:35 -07009063 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009064
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009065 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
9066 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
9067 tg3_chk_missed_msi(tp);
9068
Joe Perches63c3a662011-04-26 08:12:10 +00009069 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009070 /* All of this garbage is because when using non-tagged
9071 * IRQ status the mailbox/status_block protocol the chip
9072 * uses with the cpu is race prone.
9073 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009074 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009075 tw32(GRC_LOCAL_CTRL,
9076 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9077 } else {
9078 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009079 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009081
David S. Millerfac9b832005-05-18 22:46:34 -07009082 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +00009083 tg3_flag_set(tp, RESTART_TIMER);
David S. Millerf47c11e2005-06-24 20:18:35 -07009084 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07009085 schedule_work(&tp->reset_task);
9086 return;
9087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009088 }
9089
Linus Torvalds1da177e2005-04-16 15:20:36 -07009090 /* This part only runs once per second. */
9091 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009092 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009093 tg3_periodic_fetch_stats(tp);
9094
Matt Carlsonb0c59432011-05-19 12:12:48 +00009095 if (tp->setlpicnt && !--tp->setlpicnt)
9096 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009097
Joe Perches63c3a662011-04-26 08:12:10 +00009098 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009099 u32 mac_stat;
9100 int phy_event;
9101
9102 mac_stat = tr32(MAC_STATUS);
9103
9104 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009105 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9107 phy_event = 1;
9108 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9109 phy_event = 1;
9110
9111 if (phy_event)
9112 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009113 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009114 u32 mac_stat = tr32(MAC_STATUS);
9115 int need_setup = 0;
9116
9117 if (netif_carrier_ok(tp->dev) &&
9118 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9119 need_setup = 1;
9120 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009121 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009122 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9123 MAC_STATUS_SIGNAL_DET))) {
9124 need_setup = 1;
9125 }
9126 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009127 if (!tp->serdes_counter) {
9128 tw32_f(MAC_MODE,
9129 (tp->mac_mode &
9130 ~MAC_MODE_PORT_MODE_MASK));
9131 udelay(40);
9132 tw32_f(MAC_MODE, tp->mac_mode);
9133 udelay(40);
9134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009135 tg3_setup_phy(tp, 0);
9136 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009137 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009138 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009139 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009141
9142 tp->timer_counter = tp->timer_multiplier;
9143 }
9144
Michael Chan130b8e42006-09-27 16:00:40 -07009145 /* Heartbeat is only sent once every 2 seconds.
9146 *
9147 * The heartbeat is to tell the ASF firmware that the host
9148 * driver is still alive. In the event that the OS crashes,
9149 * ASF needs to reset the hardware to free up the FIFO space
9150 * that may be filled with rx packets destined for the host.
9151 * If the FIFO is full, ASF will no longer function properly.
9152 *
9153 * Unintended resets have been reported on real time kernels
9154 * where the timer doesn't run on time. Netpoll will also have
9155 * same problem.
9156 *
9157 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9158 * to check the ring condition when the heartbeat is expiring
9159 * before doing the reset. This will prevent most unintended
9160 * resets.
9161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009163 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009164 tg3_wait_for_event_ack(tp);
9165
Michael Chanbbadf502006-04-06 21:46:34 -07009166 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009167 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009168 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009169 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9170 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009171
9172 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009173 }
9174 tp->asf_counter = tp->asf_multiplier;
9175 }
9176
David S. Millerf47c11e2005-06-24 20:18:35 -07009177 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009178
Michael Chanf475f162006-03-27 23:20:14 -08009179restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009180 tp->timer.expires = jiffies + tp->timer_offset;
9181 add_timer(&tp->timer);
9182}
9183
Matt Carlson4f125f42009-09-01 12:55:02 +00009184static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009185{
David Howells7d12e782006-10-05 14:55:46 +01009186 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009187 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00009188 char *name;
9189 struct tg3_napi *tnapi = &tp->napi[irq_num];
9190
9191 if (tp->irq_cnt == 1)
9192 name = tp->dev->name;
9193 else {
9194 name = &tnapi->irq_lbl[0];
9195 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
9196 name[IFNAMSIZ-1] = 0;
9197 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009198
Joe Perches63c3a662011-04-26 08:12:10 +00009199 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08009200 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00009201 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009202 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009203 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009204 } else {
9205 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00009206 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009207 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009208 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009209 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009210
9211 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009212}
9213
Michael Chan79381092005-04-21 17:13:59 -07009214static int tg3_test_interrupt(struct tg3 *tp)
9215{
Matt Carlson09943a12009-08-28 14:01:57 +00009216 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009217 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009218 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009219 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009220
Michael Chand4bc3922005-05-29 14:59:20 -07009221 if (!netif_running(dev))
9222 return -ENODEV;
9223
Michael Chan79381092005-04-21 17:13:59 -07009224 tg3_disable_ints(tp);
9225
Matt Carlson4f125f42009-09-01 12:55:02 +00009226 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009227
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009228 /*
9229 * Turn off MSI one shot mode. Otherwise this test has no
9230 * observable way to know whether the interrupt was delivered.
9231 */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009232 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009233 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9234 tw32(MSGINT_MODE, val);
9235 }
9236
Matt Carlson4f125f42009-09-01 12:55:02 +00009237 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00009238 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009239 if (err)
9240 return err;
9241
Matt Carlson898a56f2009-08-28 14:02:40 +00009242 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009243 tg3_enable_ints(tp);
9244
9245 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009246 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009247
9248 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009249 u32 int_mbox, misc_host_ctrl;
9250
Matt Carlson898a56f2009-08-28 14:02:40 +00009251 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009252 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9253
9254 if ((int_mbox != 0) ||
9255 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9256 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009257 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009258 }
9259
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009260 if (tg3_flag(tp, 57765_PLUS) &&
9261 tnapi->hw_status->status_tag != tnapi->last_tag)
9262 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
9263
Michael Chan79381092005-04-21 17:13:59 -07009264 msleep(10);
9265 }
9266
9267 tg3_disable_ints(tp);
9268
Matt Carlson4f125f42009-09-01 12:55:02 +00009269 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009270
Matt Carlson4f125f42009-09-01 12:55:02 +00009271 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009272
9273 if (err)
9274 return err;
9275
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009276 if (intr_ok) {
9277 /* Reenable MSI one shot mode. */
Matt Carlson3aa1cdf2011-07-20 10:20:55 +00009278 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009279 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9280 tw32(MSGINT_MODE, val);
9281 }
Michael Chan79381092005-04-21 17:13:59 -07009282 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009283 }
Michael Chan79381092005-04-21 17:13:59 -07009284
9285 return -EIO;
9286}
9287
9288/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9289 * successfully restored
9290 */
9291static int tg3_test_msi(struct tg3 *tp)
9292{
Michael Chan79381092005-04-21 17:13:59 -07009293 int err;
9294 u16 pci_cmd;
9295
Joe Perches63c3a662011-04-26 08:12:10 +00009296 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009297 return 0;
9298
9299 /* Turn off SERR reporting in case MSI terminates with Master
9300 * Abort.
9301 */
9302 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9303 pci_write_config_word(tp->pdev, PCI_COMMAND,
9304 pci_cmd & ~PCI_COMMAND_SERR);
9305
9306 err = tg3_test_interrupt(tp);
9307
9308 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9309
9310 if (!err)
9311 return 0;
9312
9313 /* other failures */
9314 if (err != -EIO)
9315 return err;
9316
9317 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009318 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9319 "to INTx mode. Please report this failure to the PCI "
9320 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009321
Matt Carlson4f125f42009-09-01 12:55:02 +00009322 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009323
Michael Chan79381092005-04-21 17:13:59 -07009324 pci_disable_msi(tp->pdev);
9325
Joe Perches63c3a662011-04-26 08:12:10 +00009326 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009327 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009328
Matt Carlson4f125f42009-09-01 12:55:02 +00009329 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009330 if (err)
9331 return err;
9332
9333 /* Need to reset the chip because the MSI cycle may have terminated
9334 * with Master Abort.
9335 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009336 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009337
Michael Chan944d9802005-05-29 14:57:48 -07009338 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009339 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009340
David S. Millerf47c11e2005-06-24 20:18:35 -07009341 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009342
9343 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009344 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009345
9346 return err;
9347}
9348
Matt Carlson9e9fd122009-01-19 16:57:45 -08009349static int tg3_request_firmware(struct tg3 *tp)
9350{
9351 const __be32 *fw_data;
9352
9353 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009354 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9355 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009356 return -ENOENT;
9357 }
9358
9359 fw_data = (void *)tp->fw->data;
9360
9361 /* Firmware blob starts with version numbers, followed by
9362 * start address and _full_ length including BSS sections
9363 * (which must be longer than the actual data, of course
9364 */
9365
9366 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9367 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009368 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9369 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009370 release_firmware(tp->fw);
9371 tp->fw = NULL;
9372 return -EINVAL;
9373 }
9374
9375 /* We no longer need firmware; we have it. */
9376 tp->fw_needed = NULL;
9377 return 0;
9378}
9379
Matt Carlson679563f2009-09-01 12:55:46 +00009380static bool tg3_enable_msix(struct tg3 *tp)
9381{
9382 int i, rc, cpus = num_online_cpus();
9383 struct msix_entry msix_ent[tp->irq_max];
9384
9385 if (cpus == 1)
9386 /* Just fallback to the simpler MSI mode. */
9387 return false;
9388
9389 /*
9390 * We want as many rx rings enabled as there are cpus.
9391 * The first MSIX vector only deals with link interrupts, etc,
9392 * so we add one to the number of vectors we are requesting.
9393 */
9394 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
9395
9396 for (i = 0; i < tp->irq_max; i++) {
9397 msix_ent[i].entry = i;
9398 msix_ent[i].vector = 0;
9399 }
9400
9401 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009402 if (rc < 0) {
9403 return false;
9404 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009405 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9406 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009407 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9408 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009409 tp->irq_cnt = rc;
9410 }
9411
9412 for (i = 0; i < tp->irq_max; i++)
9413 tp->napi[i].irq_vec = msix_ent[i].vector;
9414
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009415 netif_set_real_num_tx_queues(tp->dev, 1);
9416 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9417 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9418 pci_disable_msix(tp->pdev);
9419 return false;
9420 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009421
9422 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009423 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009424
9425 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9426 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009427 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009428 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9429 }
9430 }
Matt Carlson2430b032010-06-05 17:24:34 +00009431
Matt Carlson679563f2009-09-01 12:55:46 +00009432 return true;
9433}
9434
Matt Carlson07b01732009-08-28 14:01:15 +00009435static void tg3_ints_init(struct tg3 *tp)
9436{
Joe Perches63c3a662011-04-26 08:12:10 +00009437 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9438 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009439 /* All MSI supporting chips should support tagged
9440 * status. Assert that this is the case.
9441 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009442 netdev_warn(tp->dev,
9443 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009444 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009445 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009446
Joe Perches63c3a662011-04-26 08:12:10 +00009447 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9448 tg3_flag_set(tp, USING_MSIX);
9449 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9450 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009451
Joe Perches63c3a662011-04-26 08:12:10 +00009452 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009453 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009454 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009455 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00009456 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9457 }
9458defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009459 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009460 tp->irq_cnt = 1;
9461 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009462 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009463 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009464 }
Matt Carlson07b01732009-08-28 14:01:15 +00009465}
9466
9467static void tg3_ints_fini(struct tg3 *tp)
9468{
Joe Perches63c3a662011-04-26 08:12:10 +00009469 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009470 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009471 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009472 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009473 tg3_flag_clear(tp, USING_MSI);
9474 tg3_flag_clear(tp, USING_MSIX);
9475 tg3_flag_clear(tp, ENABLE_RSS);
9476 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009477}
9478
Linus Torvalds1da177e2005-04-16 15:20:36 -07009479static int tg3_open(struct net_device *dev)
9480{
9481 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009482 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009483
Matt Carlson9e9fd122009-01-19 16:57:45 -08009484 if (tp->fw_needed) {
9485 err = tg3_request_firmware(tp);
9486 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9487 if (err)
9488 return err;
9489 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009490 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009491 tg3_flag_clear(tp, TSO_CAPABLE);
9492 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009493 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009494 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009495 }
9496 }
9497
Michael Chanc49a1562006-12-17 17:07:29 -08009498 netif_carrier_off(tp->dev);
9499
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009500 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009501 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009502 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009503
9504 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009505
Linus Torvalds1da177e2005-04-16 15:20:36 -07009506 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009507 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009508
David S. Millerf47c11e2005-06-24 20:18:35 -07009509 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009510
Matt Carlson679563f2009-09-01 12:55:46 +00009511 /*
9512 * Setup interrupts first so we know how
9513 * many NAPI resources to allocate
9514 */
9515 tg3_ints_init(tp);
9516
Linus Torvalds1da177e2005-04-16 15:20:36 -07009517 /* The placement of this call is tied
9518 * to the setup and use of Host TX descriptors.
9519 */
9520 err = tg3_alloc_consistent(tp);
9521 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009522 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009523
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009524 tg3_napi_init(tp);
9525
Matt Carlsonfed97812009-09-01 13:10:19 +00009526 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009527
Matt Carlson4f125f42009-09-01 12:55:02 +00009528 for (i = 0; i < tp->irq_cnt; i++) {
9529 struct tg3_napi *tnapi = &tp->napi[i];
9530 err = tg3_request_irq(tp, i);
9531 if (err) {
9532 for (i--; i >= 0; i--)
9533 free_irq(tnapi->irq_vec, tnapi);
9534 break;
9535 }
9536 }
Matt Carlson07b01732009-08-28 14:01:15 +00009537
9538 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009539 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00009540
David S. Millerf47c11e2005-06-24 20:18:35 -07009541 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009542
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009543 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009544 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009545 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009546 tg3_free_rings(tp);
9547 } else {
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009548 if (tg3_flag(tp, TAGGED_STATUS) &&
9549 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9550 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765)
David S. Millerfac9b832005-05-18 22:46:34 -07009551 tp->timer_offset = HZ;
9552 else
9553 tp->timer_offset = HZ / 10;
9554
9555 BUG_ON(tp->timer_offset > HZ);
9556 tp->timer_counter = tp->timer_multiplier =
9557 (HZ / tp->timer_offset);
9558 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009559 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009560
9561 init_timer(&tp->timer);
9562 tp->timer.expires = jiffies + tp->timer_offset;
9563 tp->timer.data = (unsigned long) tp;
9564 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009565 }
9566
David S. Millerf47c11e2005-06-24 20:18:35 -07009567 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009568
Matt Carlson07b01732009-08-28 14:01:15 +00009569 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009570 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009571
Joe Perches63c3a662011-04-26 08:12:10 +00009572 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009573 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009574
Michael Chan79381092005-04-21 17:13:59 -07009575 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009576 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009577 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009578 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009579 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009580
Matt Carlson679563f2009-09-01 12:55:46 +00009581 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009582 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009583
Joe Perches63c3a662011-04-26 08:12:10 +00009584 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009585 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009586
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009587 tw32(PCIE_TRANSACTION_CFG,
9588 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009589 }
Michael Chan79381092005-04-21 17:13:59 -07009590 }
9591
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009592 tg3_phy_start(tp);
9593
David S. Millerf47c11e2005-06-24 20:18:35 -07009594 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009595
Michael Chan79381092005-04-21 17:13:59 -07009596 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009597 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009598 tg3_enable_ints(tp);
9599
David S. Millerf47c11e2005-06-24 20:18:35 -07009600 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009601
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009602 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009603
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00009604 /*
9605 * Reset loopback feature if it was turned on while the device was down
9606 * make sure that it's installed properly now.
9607 */
9608 if (dev->features & NETIF_F_LOOPBACK)
9609 tg3_set_loopback(dev, dev->features);
9610
Linus Torvalds1da177e2005-04-16 15:20:36 -07009611 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009612
Matt Carlson679563f2009-09-01 12:55:46 +00009613err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009614 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9615 struct tg3_napi *tnapi = &tp->napi[i];
9616 free_irq(tnapi->irq_vec, tnapi);
9617 }
Matt Carlson07b01732009-08-28 14:01:15 +00009618
Matt Carlson679563f2009-09-01 12:55:46 +00009619err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009620 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009621 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009622 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009623
9624err_out1:
9625 tg3_ints_fini(tp);
Matt Carlsoncd0d7222011-07-13 09:27:33 +00009626 tg3_frob_aux_power(tp, false);
9627 pci_set_power_state(tp->pdev, PCI_D3hot);
Matt Carlson07b01732009-08-28 14:01:15 +00009628 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009629}
9630
Eric Dumazet511d2222010-07-07 20:44:24 +00009631static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
9632 struct rtnl_link_stats64 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009633static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9634
9635static int tg3_close(struct net_device *dev)
9636{
Matt Carlson4f125f42009-09-01 12:55:02 +00009637 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009638 struct tg3 *tp = netdev_priv(dev);
9639
Matt Carlsonfed97812009-09-01 13:10:19 +00009640 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009641 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009642
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009643 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644
9645 del_timer_sync(&tp->timer);
9646
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009647 tg3_phy_stop(tp);
9648
David S. Millerf47c11e2005-06-24 20:18:35 -07009649 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009650
9651 tg3_disable_ints(tp);
9652
Michael Chan944d9802005-05-29 14:57:48 -07009653 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009654 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009655 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009656
David S. Millerf47c11e2005-06-24 20:18:35 -07009657 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009658
Matt Carlson4f125f42009-09-01 12:55:02 +00009659 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9660 struct tg3_napi *tnapi = &tp->napi[i];
9661 free_irq(tnapi->irq_vec, tnapi);
9662 }
Matt Carlson07b01732009-08-28 14:01:15 +00009663
9664 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009665
Eric Dumazet511d2222010-07-07 20:44:24 +00009666 tg3_get_stats64(tp->dev, &tp->net_stats_prev);
9667
Linus Torvalds1da177e2005-04-16 15:20:36 -07009668 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9669 sizeof(tp->estats_prev));
9670
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009671 tg3_napi_fini(tp);
9672
Linus Torvalds1da177e2005-04-16 15:20:36 -07009673 tg3_free_consistent(tp);
9674
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009675 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009676
9677 netif_carrier_off(tp->dev);
9678
Linus Torvalds1da177e2005-04-16 15:20:36 -07009679 return 0;
9680}
9681
Eric Dumazet511d2222010-07-07 20:44:24 +00009682static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009683{
9684 return ((u64)val->high << 32) | ((u64)val->low);
9685}
9686
Eric Dumazet511d2222010-07-07 20:44:24 +00009687static u64 calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009688{
9689 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9690
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009691 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009692 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9693 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009694 u32 val;
9695
David S. Millerf47c11e2005-06-24 20:18:35 -07009696 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009697 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9698 tg3_writephy(tp, MII_TG3_TEST1,
9699 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009700 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009701 } else
9702 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009703 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009704
9705 tp->phy_crc_errors += val;
9706
9707 return tp->phy_crc_errors;
9708 }
9709
9710 return get_stat64(&hw_stats->rx_fcs_errors);
9711}
9712
9713#define ESTAT_ADD(member) \
9714 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009715 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009716
9717static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9718{
9719 struct tg3_ethtool_stats *estats = &tp->estats;
9720 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9721 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9722
9723 if (!hw_stats)
9724 return old_estats;
9725
9726 ESTAT_ADD(rx_octets);
9727 ESTAT_ADD(rx_fragments);
9728 ESTAT_ADD(rx_ucast_packets);
9729 ESTAT_ADD(rx_mcast_packets);
9730 ESTAT_ADD(rx_bcast_packets);
9731 ESTAT_ADD(rx_fcs_errors);
9732 ESTAT_ADD(rx_align_errors);
9733 ESTAT_ADD(rx_xon_pause_rcvd);
9734 ESTAT_ADD(rx_xoff_pause_rcvd);
9735 ESTAT_ADD(rx_mac_ctrl_rcvd);
9736 ESTAT_ADD(rx_xoff_entered);
9737 ESTAT_ADD(rx_frame_too_long_errors);
9738 ESTAT_ADD(rx_jabbers);
9739 ESTAT_ADD(rx_undersize_packets);
9740 ESTAT_ADD(rx_in_length_errors);
9741 ESTAT_ADD(rx_out_length_errors);
9742 ESTAT_ADD(rx_64_or_less_octet_packets);
9743 ESTAT_ADD(rx_65_to_127_octet_packets);
9744 ESTAT_ADD(rx_128_to_255_octet_packets);
9745 ESTAT_ADD(rx_256_to_511_octet_packets);
9746 ESTAT_ADD(rx_512_to_1023_octet_packets);
9747 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9748 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9749 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9750 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9751 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9752
9753 ESTAT_ADD(tx_octets);
9754 ESTAT_ADD(tx_collisions);
9755 ESTAT_ADD(tx_xon_sent);
9756 ESTAT_ADD(tx_xoff_sent);
9757 ESTAT_ADD(tx_flow_control);
9758 ESTAT_ADD(tx_mac_errors);
9759 ESTAT_ADD(tx_single_collisions);
9760 ESTAT_ADD(tx_mult_collisions);
9761 ESTAT_ADD(tx_deferred);
9762 ESTAT_ADD(tx_excessive_collisions);
9763 ESTAT_ADD(tx_late_collisions);
9764 ESTAT_ADD(tx_collide_2times);
9765 ESTAT_ADD(tx_collide_3times);
9766 ESTAT_ADD(tx_collide_4times);
9767 ESTAT_ADD(tx_collide_5times);
9768 ESTAT_ADD(tx_collide_6times);
9769 ESTAT_ADD(tx_collide_7times);
9770 ESTAT_ADD(tx_collide_8times);
9771 ESTAT_ADD(tx_collide_9times);
9772 ESTAT_ADD(tx_collide_10times);
9773 ESTAT_ADD(tx_collide_11times);
9774 ESTAT_ADD(tx_collide_12times);
9775 ESTAT_ADD(tx_collide_13times);
9776 ESTAT_ADD(tx_collide_14times);
9777 ESTAT_ADD(tx_collide_15times);
9778 ESTAT_ADD(tx_ucast_packets);
9779 ESTAT_ADD(tx_mcast_packets);
9780 ESTAT_ADD(tx_bcast_packets);
9781 ESTAT_ADD(tx_carrier_sense_errors);
9782 ESTAT_ADD(tx_discards);
9783 ESTAT_ADD(tx_errors);
9784
9785 ESTAT_ADD(dma_writeq_full);
9786 ESTAT_ADD(dma_write_prioq_full);
9787 ESTAT_ADD(rxbds_empty);
9788 ESTAT_ADD(rx_discards);
9789 ESTAT_ADD(rx_errors);
9790 ESTAT_ADD(rx_threshold_hit);
9791
9792 ESTAT_ADD(dma_readq_full);
9793 ESTAT_ADD(dma_read_prioq_full);
9794 ESTAT_ADD(tx_comp_queue_full);
9795
9796 ESTAT_ADD(ring_set_send_prod_index);
9797 ESTAT_ADD(ring_status_update);
9798 ESTAT_ADD(nic_irqs);
9799 ESTAT_ADD(nic_avoided_irqs);
9800 ESTAT_ADD(nic_tx_threshold_hit);
9801
Matt Carlson4452d092011-05-19 12:12:51 +00009802 ESTAT_ADD(mbuf_lwm_thresh_hit);
9803
Linus Torvalds1da177e2005-04-16 15:20:36 -07009804 return estats;
9805}
9806
Eric Dumazet511d2222010-07-07 20:44:24 +00009807static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
9808 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009809{
9810 struct tg3 *tp = netdev_priv(dev);
Eric Dumazet511d2222010-07-07 20:44:24 +00009811 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009812 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9813
9814 if (!hw_stats)
9815 return old_stats;
9816
9817 stats->rx_packets = old_stats->rx_packets +
9818 get_stat64(&hw_stats->rx_ucast_packets) +
9819 get_stat64(&hw_stats->rx_mcast_packets) +
9820 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009821
Linus Torvalds1da177e2005-04-16 15:20:36 -07009822 stats->tx_packets = old_stats->tx_packets +
9823 get_stat64(&hw_stats->tx_ucast_packets) +
9824 get_stat64(&hw_stats->tx_mcast_packets) +
9825 get_stat64(&hw_stats->tx_bcast_packets);
9826
9827 stats->rx_bytes = old_stats->rx_bytes +
9828 get_stat64(&hw_stats->rx_octets);
9829 stats->tx_bytes = old_stats->tx_bytes +
9830 get_stat64(&hw_stats->tx_octets);
9831
9832 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009833 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009834 stats->tx_errors = old_stats->tx_errors +
9835 get_stat64(&hw_stats->tx_errors) +
9836 get_stat64(&hw_stats->tx_mac_errors) +
9837 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9838 get_stat64(&hw_stats->tx_discards);
9839
9840 stats->multicast = old_stats->multicast +
9841 get_stat64(&hw_stats->rx_mcast_packets);
9842 stats->collisions = old_stats->collisions +
9843 get_stat64(&hw_stats->tx_collisions);
9844
9845 stats->rx_length_errors = old_stats->rx_length_errors +
9846 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9847 get_stat64(&hw_stats->rx_undersize_packets);
9848
9849 stats->rx_over_errors = old_stats->rx_over_errors +
9850 get_stat64(&hw_stats->rxbds_empty);
9851 stats->rx_frame_errors = old_stats->rx_frame_errors +
9852 get_stat64(&hw_stats->rx_align_errors);
9853 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9854 get_stat64(&hw_stats->tx_discards);
9855 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9856 get_stat64(&hw_stats->tx_carrier_sense_errors);
9857
9858 stats->rx_crc_errors = old_stats->rx_crc_errors +
9859 calc_crc_errors(tp);
9860
John W. Linville4f63b872005-09-12 14:43:18 -07009861 stats->rx_missed_errors = old_stats->rx_missed_errors +
9862 get_stat64(&hw_stats->rx_discards);
9863
Eric Dumazetb0057c52010-10-10 19:55:52 +00009864 stats->rx_dropped = tp->rx_dropped;
9865
Linus Torvalds1da177e2005-04-16 15:20:36 -07009866 return stats;
9867}
9868
9869static inline u32 calc_crc(unsigned char *buf, int len)
9870{
9871 u32 reg;
9872 u32 tmp;
9873 int j, k;
9874
9875 reg = 0xffffffff;
9876
9877 for (j = 0; j < len; j++) {
9878 reg ^= buf[j];
9879
9880 for (k = 0; k < 8; k++) {
9881 tmp = reg & 0x01;
9882
9883 reg >>= 1;
9884
Matt Carlson859a5882010-04-05 10:19:28 +00009885 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009886 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009887 }
9888 }
9889
9890 return ~reg;
9891}
9892
9893static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9894{
9895 /* accept or reject all multicast frames */
9896 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9897 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9898 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9899 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9900}
9901
9902static void __tg3_set_rx_mode(struct net_device *dev)
9903{
9904 struct tg3 *tp = netdev_priv(dev);
9905 u32 rx_mode;
9906
9907 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9908 RX_MODE_KEEP_VLAN_TAG);
9909
Matt Carlsonbf933c82011-01-25 15:58:49 +00009910#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009911 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9912 * flag clear.
9913 */
Joe Perches63c3a662011-04-26 08:12:10 +00009914 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009915 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9916#endif
9917
9918 if (dev->flags & IFF_PROMISC) {
9919 /* Promiscuous mode. */
9920 rx_mode |= RX_MODE_PROMISC;
9921 } else if (dev->flags & IFF_ALLMULTI) {
9922 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009923 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009924 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009925 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009926 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009927 } else {
9928 /* Accept one or more multicast(s). */
Jiri Pirko22bedad2010-04-01 21:22:57 +00009929 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009930 u32 mc_filter[4] = { 0, };
9931 u32 regidx;
9932 u32 bit;
9933 u32 crc;
9934
Jiri Pirko22bedad2010-04-01 21:22:57 +00009935 netdev_for_each_mc_addr(ha, dev) {
9936 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009937 bit = ~crc & 0x7f;
9938 regidx = (bit & 0x60) >> 5;
9939 bit &= 0x1f;
9940 mc_filter[regidx] |= (1 << bit);
9941 }
9942
9943 tw32(MAC_HASH_REG_0, mc_filter[0]);
9944 tw32(MAC_HASH_REG_1, mc_filter[1]);
9945 tw32(MAC_HASH_REG_2, mc_filter[2]);
9946 tw32(MAC_HASH_REG_3, mc_filter[3]);
9947 }
9948
9949 if (rx_mode != tp->rx_mode) {
9950 tp->rx_mode = rx_mode;
9951 tw32_f(MAC_RX_MODE, rx_mode);
9952 udelay(10);
9953 }
9954}
9955
9956static void tg3_set_rx_mode(struct net_device *dev)
9957{
9958 struct tg3 *tp = netdev_priv(dev);
9959
Michael Chane75f7c92006-03-20 21:33:26 -08009960 if (!netif_running(dev))
9961 return;
9962
David S. Millerf47c11e2005-06-24 20:18:35 -07009963 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009965 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009966}
9967
Linus Torvalds1da177e2005-04-16 15:20:36 -07009968static int tg3_get_regs_len(struct net_device *dev)
9969{
Matt Carlson97bd8e42011-04-13 11:05:04 +00009970 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009971}
9972
9973static void tg3_get_regs(struct net_device *dev,
9974 struct ethtool_regs *regs, void *_p)
9975{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009976 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009977
9978 regs->version = 0;
9979
Matt Carlson97bd8e42011-04-13 11:05:04 +00009980 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009981
Matt Carlson80096062010-08-02 11:26:06 +00009982 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009983 return;
9984
David S. Millerf47c11e2005-06-24 20:18:35 -07009985 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009986
Matt Carlson97bd8e42011-04-13 11:05:04 +00009987 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009988
David S. Millerf47c11e2005-06-24 20:18:35 -07009989 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009990}
9991
9992static int tg3_get_eeprom_len(struct net_device *dev)
9993{
9994 struct tg3 *tp = netdev_priv(dev);
9995
9996 return tp->nvram_size;
9997}
9998
Linus Torvalds1da177e2005-04-16 15:20:36 -07009999static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10000{
10001 struct tg3 *tp = netdev_priv(dev);
10002 int ret;
10003 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -080010004 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010005 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010006
Joe Perches63c3a662011-04-26 08:12:10 +000010007 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010008 return -EINVAL;
10009
Matt Carlson80096062010-08-02 11:26:06 +000010010 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010011 return -EAGAIN;
10012
Linus Torvalds1da177e2005-04-16 15:20:36 -070010013 offset = eeprom->offset;
10014 len = eeprom->len;
10015 eeprom->len = 0;
10016
10017 eeprom->magic = TG3_EEPROM_MAGIC;
10018
10019 if (offset & 3) {
10020 /* adjustments to start on required 4 byte boundary */
10021 b_offset = offset & 3;
10022 b_count = 4 - b_offset;
10023 if (b_count > len) {
10024 /* i.e. offset=1 len=2 */
10025 b_count = len;
10026 }
Matt Carlsona9dc5292009-02-25 14:25:30 +000010027 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010028 if (ret)
10029 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +000010030 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010031 len -= b_count;
10032 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010033 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010034 }
10035
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010036 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010037 pd = &data[eeprom->len];
10038 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010039 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010040 if (ret) {
10041 eeprom->len += i;
10042 return ret;
10043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010044 memcpy(pd + i, &val, 4);
10045 }
10046 eeprom->len += i;
10047
10048 if (len & 3) {
10049 /* read last bytes not ending on 4 byte boundary */
10050 pd = &data[eeprom->len];
10051 b_count = len & 3;
10052 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010053 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010054 if (ret)
10055 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010056 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010057 eeprom->len += b_count;
10058 }
10059 return 0;
10060}
10061
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010062static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010063
10064static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
10065{
10066 struct tg3 *tp = netdev_priv(dev);
10067 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -080010068 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010069 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010070 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010071
Matt Carlson80096062010-08-02 11:26:06 +000010072 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010073 return -EAGAIN;
10074
Joe Perches63c3a662011-04-26 08:12:10 +000010075 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010076 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010077 return -EINVAL;
10078
10079 offset = eeprom->offset;
10080 len = eeprom->len;
10081
10082 if ((b_offset = (offset & 3))) {
10083 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010084 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010085 if (ret)
10086 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010087 len += b_offset;
10088 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070010089 if (len < 4)
10090 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010091 }
10092
10093 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070010094 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010095 /* adjustments to end on required 4 byte boundary */
10096 odd_len = 1;
10097 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010098 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010099 if (ret)
10100 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010101 }
10102
10103 buf = data;
10104 if (b_offset || odd_len) {
10105 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010106 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010107 return -ENOMEM;
10108 if (b_offset)
10109 memcpy(buf, &start, 4);
10110 if (odd_len)
10111 memcpy(buf+len-4, &end, 4);
10112 memcpy(buf + b_offset, data, eeprom->len);
10113 }
10114
10115 ret = tg3_nvram_write_block(tp, offset, len, buf);
10116
10117 if (buf != data)
10118 kfree(buf);
10119
10120 return ret;
10121}
10122
10123static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10124{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010125 struct tg3 *tp = netdev_priv(dev);
10126
Joe Perches63c3a662011-04-26 08:12:10 +000010127 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010128 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010129 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010130 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010131 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10132 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010133 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010134
Linus Torvalds1da177e2005-04-16 15:20:36 -070010135 cmd->supported = (SUPPORTED_Autoneg);
10136
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010137 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010138 cmd->supported |= (SUPPORTED_1000baseT_Half |
10139 SUPPORTED_1000baseT_Full);
10140
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010141 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010142 cmd->supported |= (SUPPORTED_100baseT_Half |
10143 SUPPORTED_100baseT_Full |
10144 SUPPORTED_10baseT_Half |
10145 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010146 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010147 cmd->port = PORT_TP;
10148 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010149 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010150 cmd->port = PORT_FIBRE;
10151 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010152
Linus Torvalds1da177e2005-04-16 15:20:36 -070010153 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010154 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10155 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10156 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10157 cmd->advertising |= ADVERTISED_Pause;
10158 } else {
10159 cmd->advertising |= ADVERTISED_Pause |
10160 ADVERTISED_Asym_Pause;
10161 }
10162 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10163 cmd->advertising |= ADVERTISED_Asym_Pause;
10164 }
10165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010166 if (netif_running(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010167 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson64c22182010-10-14 10:37:44 +000010169 } else {
David Decotigny70739492011-04-27 18:32:40 +000010170 ethtool_cmd_speed_set(cmd, SPEED_INVALID);
Matt Carlson64c22182010-10-14 10:37:44 +000010171 cmd->duplex = DUPLEX_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010172 }
Matt Carlson882e9792009-09-01 13:21:36 +000010173 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010174 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010175 cmd->autoneg = tp->link_config.autoneg;
10176 cmd->maxtxpkt = 0;
10177 cmd->maxrxpkt = 0;
10178 return 0;
10179}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010180
Linus Torvalds1da177e2005-04-16 15:20:36 -070010181static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10182{
10183 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010184 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010185
Joe Perches63c3a662011-04-26 08:12:10 +000010186 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010187 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010188 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010189 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010190 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10191 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010192 }
10193
Matt Carlson7e5856b2009-02-25 14:23:01 +000010194 if (cmd->autoneg != AUTONEG_ENABLE &&
10195 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010196 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010197
10198 if (cmd->autoneg == AUTONEG_DISABLE &&
10199 cmd->duplex != DUPLEX_FULL &&
10200 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010201 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010202
Matt Carlson7e5856b2009-02-25 14:23:01 +000010203 if (cmd->autoneg == AUTONEG_ENABLE) {
10204 u32 mask = ADVERTISED_Autoneg |
10205 ADVERTISED_Pause |
10206 ADVERTISED_Asym_Pause;
10207
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010208 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010209 mask |= ADVERTISED_1000baseT_Half |
10210 ADVERTISED_1000baseT_Full;
10211
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010212 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010213 mask |= ADVERTISED_100baseT_Half |
10214 ADVERTISED_100baseT_Full |
10215 ADVERTISED_10baseT_Half |
10216 ADVERTISED_10baseT_Full |
10217 ADVERTISED_TP;
10218 else
10219 mask |= ADVERTISED_FIBRE;
10220
10221 if (cmd->advertising & ~mask)
10222 return -EINVAL;
10223
10224 mask &= (ADVERTISED_1000baseT_Half |
10225 ADVERTISED_1000baseT_Full |
10226 ADVERTISED_100baseT_Half |
10227 ADVERTISED_100baseT_Full |
10228 ADVERTISED_10baseT_Half |
10229 ADVERTISED_10baseT_Full);
10230
10231 cmd->advertising &= mask;
10232 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010233 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010234 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010235 return -EINVAL;
10236
10237 if (cmd->duplex != DUPLEX_FULL)
10238 return -EINVAL;
10239 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010240 if (speed != SPEED_100 &&
10241 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010242 return -EINVAL;
10243 }
10244 }
10245
David S. Millerf47c11e2005-06-24 20:18:35 -070010246 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010247
10248 tp->link_config.autoneg = cmd->autoneg;
10249 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010250 tp->link_config.advertising = (cmd->advertising |
10251 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010252 tp->link_config.speed = SPEED_INVALID;
10253 tp->link_config.duplex = DUPLEX_INVALID;
10254 } else {
10255 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010256 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010257 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010258 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010259
Michael Chan24fcad62006-12-17 17:06:46 -080010260 tp->link_config.orig_speed = tp->link_config.speed;
10261 tp->link_config.orig_duplex = tp->link_config.duplex;
10262 tp->link_config.orig_autoneg = tp->link_config.autoneg;
10263
Linus Torvalds1da177e2005-04-16 15:20:36 -070010264 if (netif_running(dev))
10265 tg3_setup_phy(tp, 1);
10266
David S. Millerf47c11e2005-06-24 20:18:35 -070010267 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010268
Linus Torvalds1da177e2005-04-16 15:20:36 -070010269 return 0;
10270}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010271
Linus Torvalds1da177e2005-04-16 15:20:36 -070010272static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10273{
10274 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010275
Linus Torvalds1da177e2005-04-16 15:20:36 -070010276 strcpy(info->driver, DRV_MODULE_NAME);
10277 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -080010278 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010279 strcpy(info->bus_info, pci_name(tp->pdev));
10280}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010281
Linus Torvalds1da177e2005-04-16 15:20:36 -070010282static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10283{
10284 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010285
Joe Perches63c3a662011-04-26 08:12:10 +000010286 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010287 wol->supported = WAKE_MAGIC;
10288 else
10289 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010290 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010291 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010292 wol->wolopts = WAKE_MAGIC;
10293 memset(&wol->sopass, 0, sizeof(wol->sopass));
10294}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010295
Linus Torvalds1da177e2005-04-16 15:20:36 -070010296static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10297{
10298 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010299 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010300
Linus Torvalds1da177e2005-04-16 15:20:36 -070010301 if (wol->wolopts & ~WAKE_MAGIC)
10302 return -EINVAL;
10303 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010304 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010305 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010306
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010307 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10308
David S. Millerf47c11e2005-06-24 20:18:35 -070010309 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010310 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010311 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010312 else
Joe Perches63c3a662011-04-26 08:12:10 +000010313 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010314 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010315
Linus Torvalds1da177e2005-04-16 15:20:36 -070010316 return 0;
10317}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010318
Linus Torvalds1da177e2005-04-16 15:20:36 -070010319static u32 tg3_get_msglevel(struct net_device *dev)
10320{
10321 struct tg3 *tp = netdev_priv(dev);
10322 return tp->msg_enable;
10323}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010324
Linus Torvalds1da177e2005-04-16 15:20:36 -070010325static void tg3_set_msglevel(struct net_device *dev, u32 value)
10326{
10327 struct tg3 *tp = netdev_priv(dev);
10328 tp->msg_enable = value;
10329}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010330
Linus Torvalds1da177e2005-04-16 15:20:36 -070010331static int tg3_nway_reset(struct net_device *dev)
10332{
10333 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010334 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010335
Linus Torvalds1da177e2005-04-16 15:20:36 -070010336 if (!netif_running(dev))
10337 return -EAGAIN;
10338
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010339 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010340 return -EINVAL;
10341
Joe Perches63c3a662011-04-26 08:12:10 +000010342 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010343 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010344 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010345 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010346 } else {
10347 u32 bmcr;
10348
10349 spin_lock_bh(&tp->lock);
10350 r = -EINVAL;
10351 tg3_readphy(tp, MII_BMCR, &bmcr);
10352 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10353 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010354 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010355 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10356 BMCR_ANENABLE);
10357 r = 0;
10358 }
10359 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010360 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010361
Linus Torvalds1da177e2005-04-16 15:20:36 -070010362 return r;
10363}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010364
Linus Torvalds1da177e2005-04-16 15:20:36 -070010365static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10366{
10367 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010368
Matt Carlson2c49a442010-09-30 10:34:35 +000010369 ering->rx_max_pending = tp->rx_std_ring_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010370 ering->rx_mini_max_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010371 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010372 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010373 else
10374 ering->rx_jumbo_max_pending = 0;
10375
10376 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010377
10378 ering->rx_pending = tp->rx_pending;
10379 ering->rx_mini_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010380 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010381 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10382 else
10383 ering->rx_jumbo_pending = 0;
10384
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010385 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010386}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010387
Linus Torvalds1da177e2005-04-16 15:20:36 -070010388static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10389{
10390 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010391 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010392
Matt Carlson2c49a442010-09-30 10:34:35 +000010393 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10394 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010395 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10396 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010397 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010398 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010399 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010400
Michael Chanbbe832c2005-06-24 20:20:04 -070010401 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010402 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010403 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010404 irq_sync = 1;
10405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010406
Michael Chanbbe832c2005-06-24 20:20:04 -070010407 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010408
Linus Torvalds1da177e2005-04-16 15:20:36 -070010409 tp->rx_pending = ering->rx_pending;
10410
Joe Perches63c3a662011-04-26 08:12:10 +000010411 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010412 tp->rx_pending > 63)
10413 tp->rx_pending = 63;
10414 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010415
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010416 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010417 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010418
10419 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010420 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010421 err = tg3_restart_hw(tp, 1);
10422 if (!err)
10423 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010424 }
10425
David S. Millerf47c11e2005-06-24 20:18:35 -070010426 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010427
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010428 if (irq_sync && !err)
10429 tg3_phy_start(tp);
10430
Michael Chanb9ec6c12006-07-25 16:37:27 -070010431 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010432}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010433
Linus Torvalds1da177e2005-04-16 15:20:36 -070010434static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10435{
10436 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010437
Joe Perches63c3a662011-04-26 08:12:10 +000010438 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010439
Steve Glendinninge18ce342008-12-16 02:00:00 -080010440 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010441 epause->rx_pause = 1;
10442 else
10443 epause->rx_pause = 0;
10444
Steve Glendinninge18ce342008-12-16 02:00:00 -080010445 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010446 epause->tx_pause = 1;
10447 else
10448 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010449}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010450
Linus Torvalds1da177e2005-04-16 15:20:36 -070010451static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10452{
10453 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010454 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010455
Joe Perches63c3a662011-04-26 08:12:10 +000010456 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010457 u32 newadv;
10458 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010459
Matt Carlson27121682010-02-17 15:16:57 +000010460 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010461
Matt Carlson27121682010-02-17 15:16:57 +000010462 if (!(phydev->supported & SUPPORTED_Pause) ||
10463 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010464 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010465 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010466
Matt Carlson27121682010-02-17 15:16:57 +000010467 tp->link_config.flowctrl = 0;
10468 if (epause->rx_pause) {
10469 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010470
Matt Carlson27121682010-02-17 15:16:57 +000010471 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010472 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010473 newadv = ADVERTISED_Pause;
10474 } else
10475 newadv = ADVERTISED_Pause |
10476 ADVERTISED_Asym_Pause;
10477 } else if (epause->tx_pause) {
10478 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10479 newadv = ADVERTISED_Asym_Pause;
10480 } else
10481 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010482
Matt Carlson27121682010-02-17 15:16:57 +000010483 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010484 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010485 else
Joe Perches63c3a662011-04-26 08:12:10 +000010486 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010487
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010488 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010489 u32 oldadv = phydev->advertising &
10490 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10491 if (oldadv != newadv) {
10492 phydev->advertising &=
10493 ~(ADVERTISED_Pause |
10494 ADVERTISED_Asym_Pause);
10495 phydev->advertising |= newadv;
10496 if (phydev->autoneg) {
10497 /*
10498 * Always renegotiate the link to
10499 * inform our link partner of our
10500 * flow control settings, even if the
10501 * flow control is forced. Let
10502 * tg3_adjust_link() do the final
10503 * flow control setup.
10504 */
10505 return phy_start_aneg(phydev);
10506 }
10507 }
10508
10509 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010510 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010511 } else {
10512 tp->link_config.orig_advertising &=
10513 ~(ADVERTISED_Pause |
10514 ADVERTISED_Asym_Pause);
10515 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010516 }
10517 } else {
10518 int irq_sync = 0;
10519
10520 if (netif_running(dev)) {
10521 tg3_netif_stop(tp);
10522 irq_sync = 1;
10523 }
10524
10525 tg3_full_lock(tp, irq_sync);
10526
10527 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010528 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010529 else
Joe Perches63c3a662011-04-26 08:12:10 +000010530 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010531 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010532 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010533 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010534 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010535 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010536 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010537 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010538 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010539
10540 if (netif_running(dev)) {
10541 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10542 err = tg3_restart_hw(tp, 1);
10543 if (!err)
10544 tg3_netif_start(tp);
10545 }
10546
10547 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010549
Michael Chanb9ec6c12006-07-25 16:37:27 -070010550 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010551}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010552
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010553static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010554{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010555 switch (sset) {
10556 case ETH_SS_TEST:
10557 return TG3_NUM_TEST;
10558 case ETH_SS_STATS:
10559 return TG3_NUM_STATS;
10560 default:
10561 return -EOPNOTSUPP;
10562 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010563}
10564
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010565static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010566{
10567 switch (stringset) {
10568 case ETH_SS_STATS:
10569 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10570 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010571 case ETH_SS_TEST:
10572 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10573 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574 default:
10575 WARN_ON(1); /* we need a WARN() */
10576 break;
10577 }
10578}
10579
stephen hemminger81b87092011-04-04 08:43:50 +000010580static int tg3_set_phys_id(struct net_device *dev,
10581 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010582{
10583 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010584
10585 if (!netif_running(tp->dev))
10586 return -EAGAIN;
10587
stephen hemminger81b87092011-04-04 08:43:50 +000010588 switch (state) {
10589 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010590 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010591
stephen hemminger81b87092011-04-04 08:43:50 +000010592 case ETHTOOL_ID_ON:
10593 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10594 LED_CTRL_1000MBPS_ON |
10595 LED_CTRL_100MBPS_ON |
10596 LED_CTRL_10MBPS_ON |
10597 LED_CTRL_TRAFFIC_OVERRIDE |
10598 LED_CTRL_TRAFFIC_BLINK |
10599 LED_CTRL_TRAFFIC_LED);
10600 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010601
stephen hemminger81b87092011-04-04 08:43:50 +000010602 case ETHTOOL_ID_OFF:
10603 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10604 LED_CTRL_TRAFFIC_OVERRIDE);
10605 break;
Michael Chan4009a932005-09-05 17:52:54 -070010606
stephen hemminger81b87092011-04-04 08:43:50 +000010607 case ETHTOOL_ID_INACTIVE:
10608 tw32(MAC_LED_CTRL, tp->led_ctrl);
10609 break;
Michael Chan4009a932005-09-05 17:52:54 -070010610 }
stephen hemminger81b87092011-04-04 08:43:50 +000010611
Michael Chan4009a932005-09-05 17:52:54 -070010612 return 0;
10613}
10614
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010615static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010616 struct ethtool_stats *estats, u64 *tmp_stats)
10617{
10618 struct tg3 *tp = netdev_priv(dev);
10619 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10620}
10621
Matt Carlson535a4902011-07-20 10:20:56 +000010622static __be32 *tg3_vpd_readblock(struct tg3 *tp, u32 *vpdlen)
Matt Carlsonc3e94502011-04-13 11:05:08 +000010623{
10624 int i;
10625 __be32 *buf;
10626 u32 offset = 0, len = 0;
10627 u32 magic, val;
10628
Joe Perches63c3a662011-04-26 08:12:10 +000010629 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010630 return NULL;
10631
10632 if (magic == TG3_EEPROM_MAGIC) {
10633 for (offset = TG3_NVM_DIR_START;
10634 offset < TG3_NVM_DIR_END;
10635 offset += TG3_NVM_DIRENT_SIZE) {
10636 if (tg3_nvram_read(tp, offset, &val))
10637 return NULL;
10638
10639 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10640 TG3_NVM_DIRTYPE_EXTVPD)
10641 break;
10642 }
10643
10644 if (offset != TG3_NVM_DIR_END) {
10645 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10646 if (tg3_nvram_read(tp, offset + 4, &offset))
10647 return NULL;
10648
10649 offset = tg3_nvram_logical_addr(tp, offset);
10650 }
10651 }
10652
10653 if (!offset || !len) {
10654 offset = TG3_NVM_VPD_OFF;
10655 len = TG3_NVM_VPD_LEN;
10656 }
10657
10658 buf = kmalloc(len, GFP_KERNEL);
10659 if (buf == NULL)
10660 return NULL;
10661
10662 if (magic == TG3_EEPROM_MAGIC) {
10663 for (i = 0; i < len; i += 4) {
10664 /* The data is in little-endian format in NVRAM.
10665 * Use the big-endian read routines to preserve
10666 * the byte order as it exists in NVRAM.
10667 */
10668 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10669 goto error;
10670 }
10671 } else {
10672 u8 *ptr;
10673 ssize_t cnt;
10674 unsigned int pos = 0;
10675
10676 ptr = (u8 *)&buf[0];
10677 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10678 cnt = pci_read_vpd(tp->pdev, pos,
10679 len - pos, ptr);
10680 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10681 cnt = 0;
10682 else if (cnt < 0)
10683 goto error;
10684 }
10685 if (pos != len)
10686 goto error;
10687 }
10688
Matt Carlson535a4902011-07-20 10:20:56 +000010689 *vpdlen = len;
10690
Matt Carlsonc3e94502011-04-13 11:05:08 +000010691 return buf;
10692
10693error:
10694 kfree(buf);
10695 return NULL;
10696}
10697
Michael Chan566f86a2005-05-29 14:56:58 -070010698#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010699#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10700#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10701#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000010702#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
10703#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
Matt Carlsonbda18fa2011-07-20 10:20:57 +000010704#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x50
Michael Chanb16250e2006-09-27 16:10:14 -070010705#define NVRAM_SELFBOOT_HW_SIZE 0x20
10706#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010707
10708static int tg3_test_nvram(struct tg3 *tp)
10709{
Matt Carlson535a4902011-07-20 10:20:56 +000010710 u32 csum, magic, len;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010711 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010712 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010713
Joe Perches63c3a662011-04-26 08:12:10 +000010714 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010715 return 0;
10716
Matt Carlsone4f34112009-02-25 14:25:00 +000010717 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010718 return -EIO;
10719
Michael Chan1b277772006-03-20 22:27:48 -080010720 if (magic == TG3_EEPROM_MAGIC)
10721 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010722 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010723 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10724 TG3_EEPROM_SB_FORMAT_1) {
10725 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10726 case TG3_EEPROM_SB_REVISION_0:
10727 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10728 break;
10729 case TG3_EEPROM_SB_REVISION_2:
10730 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10731 break;
10732 case TG3_EEPROM_SB_REVISION_3:
10733 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10734 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000010735 case TG3_EEPROM_SB_REVISION_4:
10736 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
10737 break;
10738 case TG3_EEPROM_SB_REVISION_5:
10739 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
10740 break;
10741 case TG3_EEPROM_SB_REVISION_6:
10742 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
10743 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080010744 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000010745 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080010746 }
10747 } else
Michael Chan1b277772006-03-20 22:27:48 -080010748 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010749 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10750 size = NVRAM_SELFBOOT_HW_SIZE;
10751 else
Michael Chan1b277772006-03-20 22:27:48 -080010752 return -EIO;
10753
10754 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010755 if (buf == NULL)
10756 return -ENOMEM;
10757
Michael Chan1b277772006-03-20 22:27:48 -080010758 err = -EIO;
10759 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010760 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10761 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010762 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010763 }
Michael Chan1b277772006-03-20 22:27:48 -080010764 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010765 goto out;
10766
Michael Chan1b277772006-03-20 22:27:48 -080010767 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010768 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010769 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010770 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010771 u8 *buf8 = (u8 *) buf, csum8 = 0;
10772
Al Virob9fc7dc2007-12-17 22:59:57 -080010773 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010774 TG3_EEPROM_SB_REVISION_2) {
10775 /* For rev 2, the csum doesn't include the MBA. */
10776 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10777 csum8 += buf8[i];
10778 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10779 csum8 += buf8[i];
10780 } else {
10781 for (i = 0; i < size; i++)
10782 csum8 += buf8[i];
10783 }
Michael Chan1b277772006-03-20 22:27:48 -080010784
Adrian Bunkad96b482006-04-05 22:21:04 -070010785 if (csum8 == 0) {
10786 err = 0;
10787 goto out;
10788 }
10789
10790 err = -EIO;
10791 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010792 }
Michael Chan566f86a2005-05-29 14:56:58 -070010793
Al Virob9fc7dc2007-12-17 22:59:57 -080010794 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010795 TG3_EEPROM_MAGIC_HW) {
10796 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010797 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010798 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010799
10800 /* Separate the parity bits and the data bytes. */
10801 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10802 if ((i == 0) || (i == 8)) {
10803 int l;
10804 u8 msk;
10805
10806 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10807 parity[k++] = buf8[i] & msk;
10808 i++;
Matt Carlson859a5882010-04-05 10:19:28 +000010809 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070010810 int l;
10811 u8 msk;
10812
10813 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10814 parity[k++] = buf8[i] & msk;
10815 i++;
10816
10817 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10818 parity[k++] = buf8[i] & msk;
10819 i++;
10820 }
10821 data[j++] = buf8[i];
10822 }
10823
10824 err = -EIO;
10825 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10826 u8 hw8 = hweight8(data[i]);
10827
10828 if ((hw8 & 0x1) && parity[i])
10829 goto out;
10830 else if (!(hw8 & 0x1) && !parity[i])
10831 goto out;
10832 }
10833 err = 0;
10834 goto out;
10835 }
10836
Matt Carlson01c3a392011-03-09 16:58:20 +000010837 err = -EIO;
10838
Michael Chan566f86a2005-05-29 14:56:58 -070010839 /* Bootstrap checksum at offset 0x10 */
10840 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000010841 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010842 goto out;
10843
10844 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10845 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000010846 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000010847 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010848
Matt Carlsonc3e94502011-04-13 11:05:08 +000010849 kfree(buf);
10850
Matt Carlson535a4902011-07-20 10:20:56 +000010851 buf = tg3_vpd_readblock(tp, &len);
Matt Carlsonc3e94502011-04-13 11:05:08 +000010852 if (!buf)
10853 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000010854
Matt Carlson535a4902011-07-20 10:20:56 +000010855 i = pci_vpd_find_tag((u8 *)buf, 0, len, PCI_VPD_LRDT_RO_DATA);
Matt Carlsond4894f32011-03-09 16:58:21 +000010856 if (i > 0) {
10857 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
10858 if (j < 0)
10859 goto out;
10860
Matt Carlson535a4902011-07-20 10:20:56 +000010861 if (i + PCI_VPD_LRDT_TAG_SIZE + j > len)
Matt Carlsond4894f32011-03-09 16:58:21 +000010862 goto out;
10863
10864 i += PCI_VPD_LRDT_TAG_SIZE;
10865 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
10866 PCI_VPD_RO_KEYWORD_CHKSUM);
10867 if (j > 0) {
10868 u8 csum8 = 0;
10869
10870 j += PCI_VPD_INFO_FLD_HDR_SIZE;
10871
10872 for (i = 0; i <= j; i++)
10873 csum8 += ((u8 *)buf)[i];
10874
10875 if (csum8)
10876 goto out;
10877 }
10878 }
10879
Michael Chan566f86a2005-05-29 14:56:58 -070010880 err = 0;
10881
10882out:
10883 kfree(buf);
10884 return err;
10885}
10886
Michael Chanca430072005-05-29 14:57:23 -070010887#define TG3_SERDES_TIMEOUT_SEC 2
10888#define TG3_COPPER_TIMEOUT_SEC 6
10889
10890static int tg3_test_link(struct tg3 *tp)
10891{
10892 int i, max;
10893
10894 if (!netif_running(tp->dev))
10895 return -ENODEV;
10896
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010897 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010898 max = TG3_SERDES_TIMEOUT_SEC;
10899 else
10900 max = TG3_COPPER_TIMEOUT_SEC;
10901
10902 for (i = 0; i < max; i++) {
10903 if (netif_carrier_ok(tp->dev))
10904 return 0;
10905
10906 if (msleep_interruptible(1000))
10907 break;
10908 }
10909
10910 return -EIO;
10911}
10912
Michael Chana71116d2005-05-29 14:58:11 -070010913/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010914static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010915{
Michael Chanb16250e2006-09-27 16:10:14 -070010916 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010917 u32 offset, read_mask, write_mask, val, save_val, read_val;
10918 static struct {
10919 u16 offset;
10920 u16 flags;
10921#define TG3_FL_5705 0x1
10922#define TG3_FL_NOT_5705 0x2
10923#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010924#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010925 u32 read_mask;
10926 u32 write_mask;
10927 } reg_tbl[] = {
10928 /* MAC Control Registers */
10929 { MAC_MODE, TG3_FL_NOT_5705,
10930 0x00000000, 0x00ef6f8c },
10931 { MAC_MODE, TG3_FL_5705,
10932 0x00000000, 0x01ef6b8c },
10933 { MAC_STATUS, TG3_FL_NOT_5705,
10934 0x03800107, 0x00000000 },
10935 { MAC_STATUS, TG3_FL_5705,
10936 0x03800100, 0x00000000 },
10937 { MAC_ADDR_0_HIGH, 0x0000,
10938 0x00000000, 0x0000ffff },
10939 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010940 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070010941 { MAC_RX_MTU_SIZE, 0x0000,
10942 0x00000000, 0x0000ffff },
10943 { MAC_TX_MODE, 0x0000,
10944 0x00000000, 0x00000070 },
10945 { MAC_TX_LENGTHS, 0x0000,
10946 0x00000000, 0x00003fff },
10947 { MAC_RX_MODE, TG3_FL_NOT_5705,
10948 0x00000000, 0x000007fc },
10949 { MAC_RX_MODE, TG3_FL_5705,
10950 0x00000000, 0x000007dc },
10951 { MAC_HASH_REG_0, 0x0000,
10952 0x00000000, 0xffffffff },
10953 { MAC_HASH_REG_1, 0x0000,
10954 0x00000000, 0xffffffff },
10955 { MAC_HASH_REG_2, 0x0000,
10956 0x00000000, 0xffffffff },
10957 { MAC_HASH_REG_3, 0x0000,
10958 0x00000000, 0xffffffff },
10959
10960 /* Receive Data and Receive BD Initiator Control Registers. */
10961 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10962 0x00000000, 0xffffffff },
10963 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10964 0x00000000, 0xffffffff },
10965 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10966 0x00000000, 0x00000003 },
10967 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10968 0x00000000, 0xffffffff },
10969 { RCVDBDI_STD_BD+0, 0x0000,
10970 0x00000000, 0xffffffff },
10971 { RCVDBDI_STD_BD+4, 0x0000,
10972 0x00000000, 0xffffffff },
10973 { RCVDBDI_STD_BD+8, 0x0000,
10974 0x00000000, 0xffff0002 },
10975 { RCVDBDI_STD_BD+0xc, 0x0000,
10976 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010977
Michael Chana71116d2005-05-29 14:58:11 -070010978 /* Receive BD Initiator Control Registers. */
10979 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10980 0x00000000, 0xffffffff },
10981 { RCVBDI_STD_THRESH, TG3_FL_5705,
10982 0x00000000, 0x000003ff },
10983 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10984 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010985
Michael Chana71116d2005-05-29 14:58:11 -070010986 /* Host Coalescing Control Registers. */
10987 { HOSTCC_MODE, TG3_FL_NOT_5705,
10988 0x00000000, 0x00000004 },
10989 { HOSTCC_MODE, TG3_FL_5705,
10990 0x00000000, 0x000000f6 },
10991 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10992 0x00000000, 0xffffffff },
10993 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10994 0x00000000, 0x000003ff },
10995 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10996 0x00000000, 0xffffffff },
10997 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10998 0x00000000, 0x000003ff },
10999 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
11000 0x00000000, 0xffffffff },
11001 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11002 0x00000000, 0x000000ff },
11003 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
11004 0x00000000, 0xffffffff },
11005 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
11006 0x00000000, 0x000000ff },
11007 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
11008 0x00000000, 0xffffffff },
11009 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
11010 0x00000000, 0xffffffff },
11011 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11012 0x00000000, 0xffffffff },
11013 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11014 0x00000000, 0x000000ff },
11015 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
11016 0x00000000, 0xffffffff },
11017 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
11018 0x00000000, 0x000000ff },
11019 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
11020 0x00000000, 0xffffffff },
11021 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
11022 0x00000000, 0xffffffff },
11023 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
11024 0x00000000, 0xffffffff },
11025 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
11026 0x00000000, 0xffffffff },
11027 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
11028 0x00000000, 0xffffffff },
11029 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
11030 0xffffffff, 0x00000000 },
11031 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
11032 0xffffffff, 0x00000000 },
11033
11034 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070011035 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011036 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070011037 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070011038 0x00000000, 0x007fffff },
11039 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
11040 0x00000000, 0x0000003f },
11041 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
11042 0x00000000, 0x000001ff },
11043 { BUFMGR_MB_HIGH_WATER, 0x0000,
11044 0x00000000, 0x000001ff },
11045 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
11046 0xffffffff, 0x00000000 },
11047 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
11048 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011049
Michael Chana71116d2005-05-29 14:58:11 -070011050 /* Mailbox Registers */
11051 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
11052 0x00000000, 0x000001ff },
11053 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
11054 0x00000000, 0x000001ff },
11055 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
11056 0x00000000, 0x000007ff },
11057 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
11058 0x00000000, 0x000001ff },
11059
11060 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
11061 };
11062
Michael Chanb16250e2006-09-27 16:10:14 -070011063 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000011064 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070011065 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000011066 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070011067 is_5750 = 1;
11068 }
Michael Chana71116d2005-05-29 14:58:11 -070011069
11070 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
11071 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
11072 continue;
11073
11074 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11075 continue;
11076
Joe Perches63c3a662011-04-26 08:12:10 +000011077 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011078 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11079 continue;
11080
Michael Chanb16250e2006-09-27 16:10:14 -070011081 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11082 continue;
11083
Michael Chana71116d2005-05-29 14:58:11 -070011084 offset = (u32) reg_tbl[i].offset;
11085 read_mask = reg_tbl[i].read_mask;
11086 write_mask = reg_tbl[i].write_mask;
11087
11088 /* Save the original register content */
11089 save_val = tr32(offset);
11090
11091 /* Determine the read-only value. */
11092 read_val = save_val & read_mask;
11093
11094 /* Write zero to the register, then make sure the read-only bits
11095 * are not changed and the read/write bits are all zeros.
11096 */
11097 tw32(offset, 0);
11098
11099 val = tr32(offset);
11100
11101 /* Test the read-only and read/write bits. */
11102 if (((val & read_mask) != read_val) || (val & write_mask))
11103 goto out;
11104
11105 /* Write ones to all the bits defined by RdMask and WrMask, then
11106 * make sure the read-only bits are not changed and the
11107 * read/write bits are all ones.
11108 */
11109 tw32(offset, read_mask | write_mask);
11110
11111 val = tr32(offset);
11112
11113 /* Test the read-only bits. */
11114 if ((val & read_mask) != read_val)
11115 goto out;
11116
11117 /* Test the read/write bits. */
11118 if ((val & write_mask) != write_mask)
11119 goto out;
11120
11121 tw32(offset, save_val);
11122 }
11123
11124 return 0;
11125
11126out:
Michael Chan9f88f292006-12-07 00:22:54 -080011127 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011128 netdev_err(tp->dev,
11129 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011130 tw32(offset, save_val);
11131 return -EIO;
11132}
11133
Michael Chan7942e1d2005-05-29 14:58:36 -070011134static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11135{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011136 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011137 int i;
11138 u32 j;
11139
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011140 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011141 for (j = 0; j < len; j += 4) {
11142 u32 val;
11143
11144 tg3_write_mem(tp, offset + j, test_pattern[i]);
11145 tg3_read_mem(tp, offset + j, &val);
11146 if (val != test_pattern[i])
11147 return -EIO;
11148 }
11149 }
11150 return 0;
11151}
11152
11153static int tg3_test_memory(struct tg3 *tp)
11154{
11155 static struct mem_entry {
11156 u32 offset;
11157 u32 len;
11158 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011159 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011160 { 0x00002000, 0x1c000},
11161 { 0xffffffff, 0x00000}
11162 }, mem_tbl_5705[] = {
11163 { 0x00000100, 0x0000c},
11164 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011165 { 0x00004000, 0x00800},
11166 { 0x00006000, 0x01000},
11167 { 0x00008000, 0x02000},
11168 { 0x00010000, 0x0e000},
11169 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011170 }, mem_tbl_5755[] = {
11171 { 0x00000200, 0x00008},
11172 { 0x00004000, 0x00800},
11173 { 0x00006000, 0x00800},
11174 { 0x00008000, 0x02000},
11175 { 0x00010000, 0x0c000},
11176 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011177 }, mem_tbl_5906[] = {
11178 { 0x00000200, 0x00008},
11179 { 0x00004000, 0x00400},
11180 { 0x00006000, 0x00400},
11181 { 0x00008000, 0x01000},
11182 { 0x00010000, 0x01000},
11183 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011184 }, mem_tbl_5717[] = {
11185 { 0x00000200, 0x00008},
11186 { 0x00010000, 0x0a000},
11187 { 0x00020000, 0x13c00},
11188 { 0xffffffff, 0x00000}
11189 }, mem_tbl_57765[] = {
11190 { 0x00000200, 0x00008},
11191 { 0x00004000, 0x00800},
11192 { 0x00006000, 0x09800},
11193 { 0x00010000, 0x0a000},
11194 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070011195 };
11196 struct mem_entry *mem_tbl;
11197 int err = 0;
11198 int i;
11199
Joe Perches63c3a662011-04-26 08:12:10 +000011200 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011201 mem_tbl = mem_tbl_5717;
11202 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
11203 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000011204 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011205 mem_tbl = mem_tbl_5755;
11206 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11207 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000011208 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011209 mem_tbl = mem_tbl_5705;
11210 else
Michael Chan7942e1d2005-05-29 14:58:36 -070011211 mem_tbl = mem_tbl_570x;
11212
11213 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000011214 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
11215 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011216 break;
11217 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011218
Michael Chan7942e1d2005-05-29 14:58:36 -070011219 return err;
11220}
11221
Michael Chan9f40dea2005-09-05 17:53:06 -070011222#define TG3_MAC_LOOPBACK 0
11223#define TG3_PHY_LOOPBACK 1
Matt Carlsonbb158d62011-04-25 12:42:47 +000011224#define TG3_TSO_LOOPBACK 2
11225
11226#define TG3_TSO_MSS 500
11227
11228#define TG3_TSO_IP_HDR_LEN 20
11229#define TG3_TSO_TCP_HDR_LEN 20
11230#define TG3_TSO_TCP_OPT_LEN 12
11231
11232static const u8 tg3_tso_header[] = {
112330x08, 0x00,
112340x45, 0x00, 0x00, 0x00,
112350x00, 0x00, 0x40, 0x00,
112360x40, 0x06, 0x00, 0x00,
112370x0a, 0x00, 0x00, 0x01,
112380x0a, 0x00, 0x00, 0x02,
112390x0d, 0x00, 0xe0, 0x00,
112400x00, 0x00, 0x01, 0x00,
112410x00, 0x00, 0x02, 0x00,
112420x80, 0x10, 0x10, 0x00,
112430x14, 0x09, 0x00, 0x00,
112440x01, 0x01, 0x08, 0x0a,
112450x11, 0x11, 0x11, 0x11,
112460x11, 0x11, 0x11, 0x11,
11247};
Michael Chan9f40dea2005-09-05 17:53:06 -070011248
Matt Carlson4852a862011-04-13 11:05:07 +000011249static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070011250{
Michael Chan9f40dea2005-09-05 17:53:06 -070011251 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011252 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Matt Carlson84b67b22011-07-27 14:20:52 +000011253 u32 budget;
Michael Chanc76949a2005-05-29 14:58:59 -070011254 struct sk_buff *skb, *rx_skb;
11255 u8 *tx_data;
11256 dma_addr_t map;
11257 int num_pkts, tx_len, rx_len, i, err;
11258 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011259 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011260 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011261
Matt Carlsonc8873402010-02-12 14:47:11 +000011262 tnapi = &tp->napi[0];
11263 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011264 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011265 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011266 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011267 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011268 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011269 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011270 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011271
Michael Chan9f40dea2005-09-05 17:53:06 -070011272 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070011273 /* HW errata - mac loopback fails in some cases on 5780.
11274 * Normal traffic and PHY loopback are not affected by
Matt Carlsonaba49f22011-01-25 15:58:53 +000011275 * errata. Also, the MAC loopback test is deprecated for
11276 * all newer ASIC revisions.
Michael Chanc94e3942005-09-27 12:12:42 -070011277 */
Matt Carlsonaba49f22011-01-25 15:58:53 +000011278 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011279 tg3_flag(tp, CPMU_PRESENT))
Michael Chanc94e3942005-09-27 12:12:42 -070011280 return 0;
11281
Matt Carlson49692ca2011-01-25 15:58:52 +000011282 mac_mode = tp->mac_mode &
11283 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
11284 mac_mode |= MAC_MODE_PORT_INT_LPBACK;
Joe Perches63c3a662011-04-26 08:12:10 +000011285 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011286 mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011287 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Michael Chan3f7045c2006-09-27 16:02:29 -070011288 mac_mode |= MAC_MODE_PORT_MODE_MII;
11289 else
11290 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070011291 tw32(MAC_MODE, mac_mode);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011292 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011293 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +000011294 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080011295 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
11296 } else
11297 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070011298
Matt Carlson9ef8ca92007-07-11 19:48:29 -070011299 tg3_phy_toggle_automdix(tp, 0);
11300
Michael Chan3f7045c2006-09-27 16:02:29 -070011301 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070011302 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080011303
Matt Carlson49692ca2011-01-25 15:58:52 +000011304 mac_mode = tp->mac_mode &
11305 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011306 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000011307 tg3_writephy(tp, MII_TG3_FET_PTEST,
11308 MII_TG3_FET_PTEST_FRC_TX_LINK |
11309 MII_TG3_FET_PTEST_FRC_TX_LOCK);
11310 /* The write needs to be flushed for the AC131 */
11311 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11312 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080011313 mac_mode |= MAC_MODE_PORT_MODE_MII;
11314 } else
11315 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070011316
Michael Chanc94e3942005-09-27 12:12:42 -070011317 /* reset to prevent losing 1st rx packet intermittently */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011318 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Michael Chanc94e3942005-09-27 12:12:42 -070011319 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
11320 udelay(10);
11321 tw32_f(MAC_RX_MODE, tp->rx_mode);
11322 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011323 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000011324 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
11325 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011326 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000011327 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011328 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080011329 tg3_writephy(tp, MII_TG3_EXT_CTRL,
11330 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
11331 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011332 tw32(MAC_MODE, mac_mode);
Matt Carlson49692ca2011-01-25 15:58:52 +000011333
11334 /* Wait for link */
11335 for (i = 0; i < 100; i++) {
11336 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11337 break;
11338 mdelay(1);
11339 }
Matt Carlson859a5882010-04-05 10:19:28 +000011340 }
Michael Chanc76949a2005-05-29 14:58:59 -070011341
11342 err = -EIO;
11343
Matt Carlson4852a862011-04-13 11:05:07 +000011344 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011345 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011346 if (!skb)
11347 return -ENOMEM;
11348
Michael Chanc76949a2005-05-29 14:58:59 -070011349 tx_data = skb_put(skb, tx_len);
11350 memcpy(tx_data, tp->dev->dev_addr, 6);
11351 memset(tx_data + 6, 0x0, 8);
11352
Matt Carlson4852a862011-04-13 11:05:07 +000011353 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011354
Matt Carlsonbb158d62011-04-25 12:42:47 +000011355 if (loopback_mode == TG3_TSO_LOOPBACK) {
11356 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11357
11358 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11359 TG3_TSO_TCP_OPT_LEN;
11360
11361 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11362 sizeof(tg3_tso_header));
11363 mss = TG3_TSO_MSS;
11364
11365 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11366 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11367
11368 /* Set the total length field in the IP header */
11369 iph->tot_len = htons((u16)(mss + hdr_len));
11370
11371 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11372 TXD_FLAG_CPU_POST_DMA);
11373
Joe Perches63c3a662011-04-26 08:12:10 +000011374 if (tg3_flag(tp, HW_TSO_1) ||
11375 tg3_flag(tp, HW_TSO_2) ||
11376 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011377 struct tcphdr *th;
11378 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11379 th = (struct tcphdr *)&tx_data[val];
11380 th->check = 0;
11381 } else
11382 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11383
Joe Perches63c3a662011-04-26 08:12:10 +000011384 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011385 mss |= (hdr_len & 0xc) << 12;
11386 if (hdr_len & 0x10)
11387 base_flags |= 0x00000010;
11388 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011389 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011390 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011391 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011392 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11393 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11394 } else {
11395 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11396 }
11397
11398 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11399 } else {
11400 num_pkts = 1;
11401 data_off = ETH_HLEN;
11402 }
11403
11404 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011405 tx_data[i] = (u8) (i & 0xff);
11406
Alexander Duyckf4188d82009-12-02 16:48:38 +000011407 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11408 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011409 dev_kfree_skb(skb);
11410 return -EIO;
11411 }
Michael Chanc76949a2005-05-29 14:58:59 -070011412
Matt Carlson0d681b22011-07-27 14:20:49 +000011413 val = tnapi->tx_prod;
11414 tnapi->tx_buffers[val].skb = skb;
11415 dma_unmap_addr_set(&tnapi->tx_buffers[val], mapping, map);
11416
Michael Chanc76949a2005-05-29 14:58:59 -070011417 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011418 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011419
11420 udelay(10);
11421
Matt Carlson898a56f2009-08-28 14:02:40 +000011422 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011423
Matt Carlson84b67b22011-07-27 14:20:52 +000011424 budget = tg3_tx_avail(tnapi);
11425 if (tg3_tx_frag_set(tnapi, &val, &budget, map, tx_len,
Matt Carlsond1a3b732011-07-27 14:20:51 +000011426 base_flags | TXD_FLAG_END, mss, 0)) {
11427 tnapi->tx_buffers[val].skb = NULL;
11428 dev_kfree_skb(skb);
11429 return -EIO;
11430 }
Michael Chanc76949a2005-05-29 14:58:59 -070011431
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011432 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011433
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011434 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11435 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011436
11437 udelay(10);
11438
Matt Carlson303fc922009-11-02 14:27:34 +000011439 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11440 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011441 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011442 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011443
11444 udelay(10);
11445
Matt Carlson898a56f2009-08-28 14:02:40 +000011446 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11447 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011448 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011449 (rx_idx == (rx_start_idx + num_pkts)))
11450 break;
11451 }
11452
Matt Carlson0d681b22011-07-27 14:20:49 +000011453 tg3_tx_skb_unmap(tnapi, tnapi->tx_prod - 1, 0);
Michael Chanc76949a2005-05-29 14:58:59 -070011454 dev_kfree_skb(skb);
11455
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011456 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011457 goto out;
11458
11459 if (rx_idx != rx_start_idx + num_pkts)
11460 goto out;
11461
Matt Carlsonbb158d62011-04-25 12:42:47 +000011462 val = data_off;
11463 while (rx_idx != rx_start_idx) {
11464 desc = &rnapi->rx_rcb[rx_start_idx++];
11465 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11466 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011467
Matt Carlsonbb158d62011-04-25 12:42:47 +000011468 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11469 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011470 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011471
Matt Carlsonbb158d62011-04-25 12:42:47 +000011472 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11473 - ETH_FCS_LEN;
11474
11475 if (loopback_mode != TG3_TSO_LOOPBACK) {
11476 if (rx_len != tx_len)
11477 goto out;
11478
11479 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11480 if (opaque_key != RXD_OPAQUE_RING_STD)
11481 goto out;
11482 } else {
11483 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11484 goto out;
11485 }
11486 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11487 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000011488 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011489 goto out;
11490 }
11491
11492 if (opaque_key == RXD_OPAQUE_RING_STD) {
11493 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
11494 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11495 mapping);
11496 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
11497 rx_skb = tpr->rx_jmb_buffers[desc_idx].skb;
11498 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11499 mapping);
11500 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011501 goto out;
11502
Matt Carlsonbb158d62011-04-25 12:42:47 +000011503 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11504 PCI_DMA_FROMDEVICE);
11505
11506 for (i = data_off; i < rx_len; i++, val++) {
11507 if (*(rx_skb->data + i) != (u8) (val & 0xff))
11508 goto out;
11509 }
Matt Carlson4852a862011-04-13 11:05:07 +000011510 }
11511
Michael Chanc76949a2005-05-29 14:58:59 -070011512 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011513
Michael Chanc76949a2005-05-29 14:58:59 -070011514 /* tg3_free_rings will unmap and free the rx_skb */
11515out:
11516 return err;
11517}
11518
Matt Carlson00c266b2011-04-25 12:42:46 +000011519#define TG3_STD_LOOPBACK_FAILED 1
11520#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011521#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson00c266b2011-04-25 12:42:46 +000011522
11523#define TG3_MAC_LOOPBACK_SHIFT 0
11524#define TG3_PHY_LOOPBACK_SHIFT 4
Matt Carlsonbb158d62011-04-25 12:42:47 +000011525#define TG3_LOOPBACK_FAILED 0x00000077
Michael Chan9f40dea2005-09-05 17:53:06 -070011526
11527static int tg3_test_loopback(struct tg3 *tp)
11528{
11529 int err = 0;
Matt Carlsonab789042011-01-25 15:58:54 +000011530 u32 eee_cap, cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070011531
11532 if (!netif_running(tp->dev))
11533 return TG3_LOOPBACK_FAILED;
11534
Matt Carlsonab789042011-01-25 15:58:54 +000011535 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11536 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11537
Michael Chanb9ec6c12006-07-25 16:37:27 -070011538 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011539 if (err) {
11540 err = TG3_LOOPBACK_FAILED;
11541 goto done;
11542 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011543
Joe Perches63c3a662011-04-26 08:12:10 +000011544 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011545 int i;
11546
11547 /* Reroute all rx packets to the 1st queue */
11548 for (i = MAC_RSS_INDIR_TBL_0;
11549 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11550 tw32(i, 0x0);
11551 }
11552
Matt Carlson6833c042008-11-21 17:18:59 -080011553 /* Turn off gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011554 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011555 tg3_phy_toggle_apd(tp, false);
11556
Joe Perches63c3a662011-04-26 08:12:10 +000011557 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011558 int i;
11559 u32 status;
11560
11561 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
11562
11563 /* Wait for up to 40 microseconds to acquire lock. */
11564 for (i = 0; i < 4; i++) {
11565 status = tr32(TG3_CPMU_MUTEX_GNT);
11566 if (status == CPMU_MUTEX_GNT_DRIVER)
11567 break;
11568 udelay(10);
11569 }
11570
Matt Carlsonab789042011-01-25 15:58:54 +000011571 if (status != CPMU_MUTEX_GNT_DRIVER) {
11572 err = TG3_LOOPBACK_FAILED;
11573 goto done;
11574 }
Matt Carlson9936bcf2007-10-10 18:03:07 -070011575
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011576 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080011577 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070011578 tw32(TG3_CPMU_CTRL,
11579 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
11580 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070011581 }
11582
Matt Carlson4852a862011-04-13 11:05:07 +000011583 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011584 err |= TG3_STD_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson9936bcf2007-10-10 18:03:07 -070011585
Joe Perches63c3a662011-04-26 08:12:10 +000011586 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011587 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011588 err |= TG3_JMB_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson4852a862011-04-13 11:05:07 +000011589
Joe Perches63c3a662011-04-26 08:12:10 +000011590 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011591 tw32(TG3_CPMU_CTRL, cpmuctrl);
11592
11593 /* Release the mutex */
11594 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
11595 }
11596
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011597 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011598 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson4852a862011-04-13 11:05:07 +000011599 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011600 err |= TG3_STD_LOOPBACK_FAILED <<
11601 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011602 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonbb158d62011-04-25 12:42:47 +000011603 tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_TSO_LOOPBACK))
11604 err |= TG3_TSO_LOOPBACK_FAILED <<
11605 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011606 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011607 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011608 err |= TG3_JMB_LOOPBACK_FAILED <<
11609 TG3_PHY_LOOPBACK_SHIFT;
Michael Chan9f40dea2005-09-05 17:53:06 -070011610 }
11611
Matt Carlson6833c042008-11-21 17:18:59 -080011612 /* Re-enable gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011613 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011614 tg3_phy_toggle_apd(tp, true);
11615
Matt Carlsonab789042011-01-25 15:58:54 +000011616done:
11617 tp->phy_flags |= eee_cap;
11618
Michael Chan9f40dea2005-09-05 17:53:06 -070011619 return err;
11620}
11621
Michael Chan4cafd3f2005-05-29 14:56:34 -070011622static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11623 u64 *data)
11624{
Michael Chan566f86a2005-05-29 14:56:58 -070011625 struct tg3 *tp = netdev_priv(dev);
11626
Matt Carlsonbed98292011-07-13 09:27:29 +000011627 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
11628 tg3_power_up(tp)) {
11629 etest->flags |= ETH_TEST_FL_FAILED;
11630 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
11631 return;
11632 }
Michael Chanbc1c7562006-03-20 17:48:03 -080011633
Michael Chan566f86a2005-05-29 14:56:58 -070011634 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11635
11636 if (tg3_test_nvram(tp) != 0) {
11637 etest->flags |= ETH_TEST_FL_FAILED;
11638 data[0] = 1;
11639 }
Michael Chanca430072005-05-29 14:57:23 -070011640 if (tg3_test_link(tp) != 0) {
11641 etest->flags |= ETH_TEST_FL_FAILED;
11642 data[1] = 1;
11643 }
Michael Chana71116d2005-05-29 14:58:11 -070011644 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011645 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011646
Michael Chanbbe832c2005-06-24 20:20:04 -070011647 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011648 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011649 tg3_netif_stop(tp);
11650 irq_sync = 1;
11651 }
11652
11653 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011654
11655 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011656 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011657 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011658 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011659 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011660 if (!err)
11661 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011662
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011663 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad2006-03-20 22:27:35 -080011664 tg3_phy_reset(tp);
11665
Michael Chana71116d2005-05-29 14:58:11 -070011666 if (tg3_test_registers(tp) != 0) {
11667 etest->flags |= ETH_TEST_FL_FAILED;
11668 data[2] = 1;
11669 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011670 if (tg3_test_memory(tp) != 0) {
11671 etest->flags |= ETH_TEST_FL_FAILED;
11672 data[3] = 1;
11673 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011674 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011675 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011676
David S. Millerf47c11e2005-06-24 20:18:35 -070011677 tg3_full_unlock(tp);
11678
Michael Chand4bc3922005-05-29 14:59:20 -070011679 if (tg3_test_interrupt(tp) != 0) {
11680 etest->flags |= ETH_TEST_FL_FAILED;
11681 data[5] = 1;
11682 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011683
11684 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011685
Michael Chana71116d2005-05-29 14:58:11 -070011686 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11687 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011688 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011689 err2 = tg3_restart_hw(tp, 1);
11690 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011691 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011692 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011693
11694 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011695
11696 if (irq_sync && !err2)
11697 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011698 }
Matt Carlson80096062010-08-02 11:26:06 +000011699 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011700 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011701
Michael Chan4cafd3f2005-05-29 14:56:34 -070011702}
11703
Linus Torvalds1da177e2005-04-16 15:20:36 -070011704static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11705{
11706 struct mii_ioctl_data *data = if_mii(ifr);
11707 struct tg3 *tp = netdev_priv(dev);
11708 int err;
11709
Joe Perches63c3a662011-04-26 08:12:10 +000011710 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011711 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011712 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011713 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011714 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011715 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011716 }
11717
Matt Carlson33f401a2010-04-05 10:19:27 +000011718 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011719 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011720 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011721
11722 /* fallthru */
11723 case SIOCGMIIREG: {
11724 u32 mii_regval;
11725
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011726 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011727 break; /* We have no PHY */
11728
Matt Carlson34eea5a2011-04-20 07:57:38 +000011729 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011730 return -EAGAIN;
11731
David S. Millerf47c11e2005-06-24 20:18:35 -070011732 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011733 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011734 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011735
11736 data->val_out = mii_regval;
11737
11738 return err;
11739 }
11740
11741 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011742 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011743 break; /* We have no PHY */
11744
Matt Carlson34eea5a2011-04-20 07:57:38 +000011745 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011746 return -EAGAIN;
11747
David S. Millerf47c11e2005-06-24 20:18:35 -070011748 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011749 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011750 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011751
11752 return err;
11753
11754 default:
11755 /* do nothing */
11756 break;
11757 }
11758 return -EOPNOTSUPP;
11759}
11760
David S. Miller15f98502005-05-18 22:49:26 -070011761static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11762{
11763 struct tg3 *tp = netdev_priv(dev);
11764
11765 memcpy(ec, &tp->coal, sizeof(*ec));
11766 return 0;
11767}
11768
Michael Chand244c892005-07-05 14:42:33 -070011769static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11770{
11771 struct tg3 *tp = netdev_priv(dev);
11772 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11773 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11774
Joe Perches63c3a662011-04-26 08:12:10 +000011775 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011776 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11777 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11778 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11779 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11780 }
11781
11782 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11783 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11784 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11785 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11786 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11787 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11788 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11789 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11790 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11791 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11792 return -EINVAL;
11793
11794 /* No rx interrupts will be generated if both are zero */
11795 if ((ec->rx_coalesce_usecs == 0) &&
11796 (ec->rx_max_coalesced_frames == 0))
11797 return -EINVAL;
11798
11799 /* No tx interrupts will be generated if both are zero */
11800 if ((ec->tx_coalesce_usecs == 0) &&
11801 (ec->tx_max_coalesced_frames == 0))
11802 return -EINVAL;
11803
11804 /* Only copy relevant parameters, ignore all others. */
11805 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11806 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11807 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11808 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11809 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11810 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11811 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11812 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11813 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11814
11815 if (netif_running(dev)) {
11816 tg3_full_lock(tp, 0);
11817 __tg3_set_coalesce(tp, &tp->coal);
11818 tg3_full_unlock(tp);
11819 }
11820 return 0;
11821}
11822
Jeff Garzik7282d492006-09-13 14:30:00 -040011823static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011824 .get_settings = tg3_get_settings,
11825 .set_settings = tg3_set_settings,
11826 .get_drvinfo = tg3_get_drvinfo,
11827 .get_regs_len = tg3_get_regs_len,
11828 .get_regs = tg3_get_regs,
11829 .get_wol = tg3_get_wol,
11830 .set_wol = tg3_set_wol,
11831 .get_msglevel = tg3_get_msglevel,
11832 .set_msglevel = tg3_set_msglevel,
11833 .nway_reset = tg3_nway_reset,
11834 .get_link = ethtool_op_get_link,
11835 .get_eeprom_len = tg3_get_eeprom_len,
11836 .get_eeprom = tg3_get_eeprom,
11837 .set_eeprom = tg3_set_eeprom,
11838 .get_ringparam = tg3_get_ringparam,
11839 .set_ringparam = tg3_set_ringparam,
11840 .get_pauseparam = tg3_get_pauseparam,
11841 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011842 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011843 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000011844 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011845 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011846 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011847 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011848 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011849};
11850
11851static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11852{
Michael Chan1b277772006-03-20 22:27:48 -080011853 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011854
11855 tp->nvram_size = EEPROM_CHIP_SIZE;
11856
Matt Carlsone4f34112009-02-25 14:25:00 +000011857 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011858 return;
11859
Michael Chanb16250e2006-09-27 16:10:14 -070011860 if ((magic != TG3_EEPROM_MAGIC) &&
11861 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11862 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011863 return;
11864
11865 /*
11866 * Size the chip by reading offsets at increasing powers of two.
11867 * When we encounter our validation signature, we know the addressing
11868 * has wrapped around, and thus have our chip size.
11869 */
Michael Chan1b277772006-03-20 22:27:48 -080011870 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011871
11872 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011873 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011874 return;
11875
Michael Chan18201802006-03-20 22:29:15 -080011876 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011877 break;
11878
11879 cursize <<= 1;
11880 }
11881
11882 tp->nvram_size = cursize;
11883}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011884
Linus Torvalds1da177e2005-04-16 15:20:36 -070011885static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11886{
11887 u32 val;
11888
Joe Perches63c3a662011-04-26 08:12:10 +000011889 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011890 return;
11891
11892 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011893 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011894 tg3_get_eeprom_size(tp);
11895 return;
11896 }
11897
Matt Carlson6d348f22009-02-25 14:25:52 +000011898 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011899 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011900 /* This is confusing. We want to operate on the
11901 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11902 * call will read from NVRAM and byteswap the data
11903 * according to the byteswapping settings for all
11904 * other register accesses. This ensures the data we
11905 * want will always reside in the lower 16-bits.
11906 * However, the data in NVRAM is in LE format, which
11907 * means the data from the NVRAM read will always be
11908 * opposite the endianness of the CPU. The 16-bit
11909 * byteswap then brings the data to CPU endianness.
11910 */
11911 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011912 return;
11913 }
11914 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011915 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011916}
11917
11918static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11919{
11920 u32 nvcfg1;
11921
11922 nvcfg1 = tr32(NVRAM_CFG1);
11923 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000011924 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011925 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011926 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11927 tw32(NVRAM_CFG1, nvcfg1);
11928 }
11929
Matt Carlson6ff6f812011-05-19 12:12:54 +000011930 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011931 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011932 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011933 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11934 tp->nvram_jedecnum = JEDEC_ATMEL;
11935 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011936 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011937 break;
11938 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11939 tp->nvram_jedecnum = JEDEC_ATMEL;
11940 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11941 break;
11942 case FLASH_VENDOR_ATMEL_EEPROM:
11943 tp->nvram_jedecnum = JEDEC_ATMEL;
11944 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011945 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011946 break;
11947 case FLASH_VENDOR_ST:
11948 tp->nvram_jedecnum = JEDEC_ST;
11949 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011950 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011951 break;
11952 case FLASH_VENDOR_SAIFUN:
11953 tp->nvram_jedecnum = JEDEC_SAIFUN;
11954 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11955 break;
11956 case FLASH_VENDOR_SST_SMALL:
11957 case FLASH_VENDOR_SST_LARGE:
11958 tp->nvram_jedecnum = JEDEC_SST;
11959 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11960 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011961 }
Matt Carlson8590a602009-08-28 12:29:16 +000011962 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011963 tp->nvram_jedecnum = JEDEC_ATMEL;
11964 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011965 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011966 }
11967}
11968
Matt Carlsona1b950d2009-09-01 13:20:17 +000011969static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11970{
11971 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11972 case FLASH_5752PAGE_SIZE_256:
11973 tp->nvram_pagesize = 256;
11974 break;
11975 case FLASH_5752PAGE_SIZE_512:
11976 tp->nvram_pagesize = 512;
11977 break;
11978 case FLASH_5752PAGE_SIZE_1K:
11979 tp->nvram_pagesize = 1024;
11980 break;
11981 case FLASH_5752PAGE_SIZE_2K:
11982 tp->nvram_pagesize = 2048;
11983 break;
11984 case FLASH_5752PAGE_SIZE_4K:
11985 tp->nvram_pagesize = 4096;
11986 break;
11987 case FLASH_5752PAGE_SIZE_264:
11988 tp->nvram_pagesize = 264;
11989 break;
11990 case FLASH_5752PAGE_SIZE_528:
11991 tp->nvram_pagesize = 528;
11992 break;
11993 }
11994}
11995
Michael Chan361b4ac2005-04-21 17:11:21 -070011996static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11997{
11998 u32 nvcfg1;
11999
12000 nvcfg1 = tr32(NVRAM_CFG1);
12001
Michael Chane6af3012005-04-21 17:12:05 -070012002 /* NVRAM protection for TPM */
12003 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000012004 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070012005
Michael Chan361b4ac2005-04-21 17:11:21 -070012006 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012007 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
12008 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
12009 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012010 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012011 break;
12012 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12013 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012014 tg3_flag_set(tp, NVRAM_BUFFERED);
12015 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012016 break;
12017 case FLASH_5752VENDOR_ST_M45PE10:
12018 case FLASH_5752VENDOR_ST_M45PE20:
12019 case FLASH_5752VENDOR_ST_M45PE40:
12020 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012021 tg3_flag_set(tp, NVRAM_BUFFERED);
12022 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012023 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070012024 }
12025
Joe Perches63c3a662011-04-26 08:12:10 +000012026 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000012027 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000012028 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070012029 /* For eeprom, set pagesize to maximum eeprom size */
12030 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12031
12032 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12033 tw32(NVRAM_CFG1, nvcfg1);
12034 }
12035}
12036
Michael Chand3c7b882006-03-23 01:28:25 -080012037static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
12038{
Matt Carlson989a9d22007-05-05 11:51:05 -070012039 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080012040
12041 nvcfg1 = tr32(NVRAM_CFG1);
12042
12043 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070012044 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012045 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070012046 protect = 1;
12047 }
Michael Chand3c7b882006-03-23 01:28:25 -080012048
Matt Carlson989a9d22007-05-05 11:51:05 -070012049 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12050 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012051 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12052 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12053 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12054 case FLASH_5755VENDOR_ATMEL_FLASH_5:
12055 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012056 tg3_flag_set(tp, NVRAM_BUFFERED);
12057 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012058 tp->nvram_pagesize = 264;
12059 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
12060 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
12061 tp->nvram_size = (protect ? 0x3e200 :
12062 TG3_NVRAM_SIZE_512KB);
12063 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
12064 tp->nvram_size = (protect ? 0x1f200 :
12065 TG3_NVRAM_SIZE_256KB);
12066 else
12067 tp->nvram_size = (protect ? 0x1f200 :
12068 TG3_NVRAM_SIZE_128KB);
12069 break;
12070 case FLASH_5752VENDOR_ST_M45PE10:
12071 case FLASH_5752VENDOR_ST_M45PE20:
12072 case FLASH_5752VENDOR_ST_M45PE40:
12073 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012074 tg3_flag_set(tp, NVRAM_BUFFERED);
12075 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012076 tp->nvram_pagesize = 256;
12077 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
12078 tp->nvram_size = (protect ?
12079 TG3_NVRAM_SIZE_64KB :
12080 TG3_NVRAM_SIZE_128KB);
12081 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
12082 tp->nvram_size = (protect ?
12083 TG3_NVRAM_SIZE_64KB :
12084 TG3_NVRAM_SIZE_256KB);
12085 else
12086 tp->nvram_size = (protect ?
12087 TG3_NVRAM_SIZE_128KB :
12088 TG3_NVRAM_SIZE_512KB);
12089 break;
Michael Chand3c7b882006-03-23 01:28:25 -080012090 }
12091}
12092
Michael Chan1b277772006-03-20 22:27:48 -080012093static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
12094{
12095 u32 nvcfg1;
12096
12097 nvcfg1 = tr32(NVRAM_CFG1);
12098
12099 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012100 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
12101 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12102 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
12103 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12104 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012105 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012106 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080012107
Matt Carlson8590a602009-08-28 12:29:16 +000012108 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12109 tw32(NVRAM_CFG1, nvcfg1);
12110 break;
12111 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12112 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12113 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12114 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12115 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012116 tg3_flag_set(tp, NVRAM_BUFFERED);
12117 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012118 tp->nvram_pagesize = 264;
12119 break;
12120 case FLASH_5752VENDOR_ST_M45PE10:
12121 case FLASH_5752VENDOR_ST_M45PE20:
12122 case FLASH_5752VENDOR_ST_M45PE40:
12123 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012124 tg3_flag_set(tp, NVRAM_BUFFERED);
12125 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012126 tp->nvram_pagesize = 256;
12127 break;
Michael Chan1b277772006-03-20 22:27:48 -080012128 }
12129}
12130
Matt Carlson6b91fa02007-10-10 18:01:09 -070012131static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
12132{
12133 u32 nvcfg1, protect = 0;
12134
12135 nvcfg1 = tr32(NVRAM_CFG1);
12136
12137 /* NVRAM protection for TPM */
12138 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012139 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012140 protect = 1;
12141 }
12142
12143 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12144 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012145 case FLASH_5761VENDOR_ATMEL_ADB021D:
12146 case FLASH_5761VENDOR_ATMEL_ADB041D:
12147 case FLASH_5761VENDOR_ATMEL_ADB081D:
12148 case FLASH_5761VENDOR_ATMEL_ADB161D:
12149 case FLASH_5761VENDOR_ATMEL_MDB021D:
12150 case FLASH_5761VENDOR_ATMEL_MDB041D:
12151 case FLASH_5761VENDOR_ATMEL_MDB081D:
12152 case FLASH_5761VENDOR_ATMEL_MDB161D:
12153 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012154 tg3_flag_set(tp, NVRAM_BUFFERED);
12155 tg3_flag_set(tp, FLASH);
12156 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000012157 tp->nvram_pagesize = 256;
12158 break;
12159 case FLASH_5761VENDOR_ST_A_M45PE20:
12160 case FLASH_5761VENDOR_ST_A_M45PE40:
12161 case FLASH_5761VENDOR_ST_A_M45PE80:
12162 case FLASH_5761VENDOR_ST_A_M45PE16:
12163 case FLASH_5761VENDOR_ST_M_M45PE20:
12164 case FLASH_5761VENDOR_ST_M_M45PE40:
12165 case FLASH_5761VENDOR_ST_M_M45PE80:
12166 case FLASH_5761VENDOR_ST_M_M45PE16:
12167 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012168 tg3_flag_set(tp, NVRAM_BUFFERED);
12169 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012170 tp->nvram_pagesize = 256;
12171 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012172 }
12173
12174 if (protect) {
12175 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
12176 } else {
12177 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012178 case FLASH_5761VENDOR_ATMEL_ADB161D:
12179 case FLASH_5761VENDOR_ATMEL_MDB161D:
12180 case FLASH_5761VENDOR_ST_A_M45PE16:
12181 case FLASH_5761VENDOR_ST_M_M45PE16:
12182 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
12183 break;
12184 case FLASH_5761VENDOR_ATMEL_ADB081D:
12185 case FLASH_5761VENDOR_ATMEL_MDB081D:
12186 case FLASH_5761VENDOR_ST_A_M45PE80:
12187 case FLASH_5761VENDOR_ST_M_M45PE80:
12188 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12189 break;
12190 case FLASH_5761VENDOR_ATMEL_ADB041D:
12191 case FLASH_5761VENDOR_ATMEL_MDB041D:
12192 case FLASH_5761VENDOR_ST_A_M45PE40:
12193 case FLASH_5761VENDOR_ST_M_M45PE40:
12194 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12195 break;
12196 case FLASH_5761VENDOR_ATMEL_ADB021D:
12197 case FLASH_5761VENDOR_ATMEL_MDB021D:
12198 case FLASH_5761VENDOR_ST_A_M45PE20:
12199 case FLASH_5761VENDOR_ST_M_M45PE20:
12200 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12201 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012202 }
12203 }
12204}
12205
Michael Chanb5d37722006-09-27 16:06:21 -070012206static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
12207{
12208 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012209 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070012210 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12211}
12212
Matt Carlson321d32a2008-11-21 17:22:19 -080012213static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
12214{
12215 u32 nvcfg1;
12216
12217 nvcfg1 = tr32(NVRAM_CFG1);
12218
12219 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12220 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12221 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12222 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012223 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080012224 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12225
12226 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12227 tw32(NVRAM_CFG1, nvcfg1);
12228 return;
12229 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12230 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12231 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12232 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12233 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12234 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12235 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12236 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012237 tg3_flag_set(tp, NVRAM_BUFFERED);
12238 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012239
12240 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12241 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12242 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12243 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12244 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12245 break;
12246 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12247 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12248 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12249 break;
12250 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12251 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12252 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12253 break;
12254 }
12255 break;
12256 case FLASH_5752VENDOR_ST_M45PE10:
12257 case FLASH_5752VENDOR_ST_M45PE20:
12258 case FLASH_5752VENDOR_ST_M45PE40:
12259 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012260 tg3_flag_set(tp, NVRAM_BUFFERED);
12261 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012262
12263 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12264 case FLASH_5752VENDOR_ST_M45PE10:
12265 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12266 break;
12267 case FLASH_5752VENDOR_ST_M45PE20:
12268 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12269 break;
12270 case FLASH_5752VENDOR_ST_M45PE40:
12271 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12272 break;
12273 }
12274 break;
12275 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012276 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012277 return;
12278 }
12279
Matt Carlsona1b950d2009-09-01 13:20:17 +000012280 tg3_nvram_get_pagesize(tp, nvcfg1);
12281 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012282 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012283}
12284
12285
12286static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12287{
12288 u32 nvcfg1;
12289
12290 nvcfg1 = tr32(NVRAM_CFG1);
12291
12292 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12293 case FLASH_5717VENDOR_ATMEL_EEPROM:
12294 case FLASH_5717VENDOR_MICRO_EEPROM:
12295 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012296 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012297 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12298
12299 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12300 tw32(NVRAM_CFG1, nvcfg1);
12301 return;
12302 case FLASH_5717VENDOR_ATMEL_MDB011D:
12303 case FLASH_5717VENDOR_ATMEL_ADB011B:
12304 case FLASH_5717VENDOR_ATMEL_ADB011D:
12305 case FLASH_5717VENDOR_ATMEL_MDB021D:
12306 case FLASH_5717VENDOR_ATMEL_ADB021B:
12307 case FLASH_5717VENDOR_ATMEL_ADB021D:
12308 case FLASH_5717VENDOR_ATMEL_45USPT:
12309 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012310 tg3_flag_set(tp, NVRAM_BUFFERED);
12311 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012312
12313 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12314 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012315 /* Detect size with tg3_nvram_get_size() */
12316 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012317 case FLASH_5717VENDOR_ATMEL_ADB021B:
12318 case FLASH_5717VENDOR_ATMEL_ADB021D:
12319 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12320 break;
12321 default:
12322 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12323 break;
12324 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012325 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012326 case FLASH_5717VENDOR_ST_M_M25PE10:
12327 case FLASH_5717VENDOR_ST_A_M25PE10:
12328 case FLASH_5717VENDOR_ST_M_M45PE10:
12329 case FLASH_5717VENDOR_ST_A_M45PE10:
12330 case FLASH_5717VENDOR_ST_M_M25PE20:
12331 case FLASH_5717VENDOR_ST_A_M25PE20:
12332 case FLASH_5717VENDOR_ST_M_M45PE20:
12333 case FLASH_5717VENDOR_ST_A_M45PE20:
12334 case FLASH_5717VENDOR_ST_25USPT:
12335 case FLASH_5717VENDOR_ST_45USPT:
12336 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012337 tg3_flag_set(tp, NVRAM_BUFFERED);
12338 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012339
12340 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12341 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012342 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012343 /* Detect size with tg3_nvram_get_size() */
12344 break;
12345 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012346 case FLASH_5717VENDOR_ST_A_M45PE20:
12347 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12348 break;
12349 default:
12350 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12351 break;
12352 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012353 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012354 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012355 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012356 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012357 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012358
12359 tg3_nvram_get_pagesize(tp, nvcfg1);
12360 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012361 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012362}
12363
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012364static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12365{
12366 u32 nvcfg1, nvmpinstrp;
12367
12368 nvcfg1 = tr32(NVRAM_CFG1);
12369 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12370
12371 switch (nvmpinstrp) {
12372 case FLASH_5720_EEPROM_HD:
12373 case FLASH_5720_EEPROM_LD:
12374 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012375 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012376
12377 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12378 tw32(NVRAM_CFG1, nvcfg1);
12379 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12380 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12381 else
12382 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12383 return;
12384 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12385 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12386 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12387 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12388 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12389 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12390 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12391 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12392 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12393 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12394 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12395 case FLASH_5720VENDOR_ATMEL_45USPT:
12396 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012397 tg3_flag_set(tp, NVRAM_BUFFERED);
12398 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012399
12400 switch (nvmpinstrp) {
12401 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12402 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12403 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12404 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12405 break;
12406 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12407 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12408 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12409 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12410 break;
12411 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12412 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12413 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12414 break;
12415 default:
12416 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12417 break;
12418 }
12419 break;
12420 case FLASH_5720VENDOR_M_ST_M25PE10:
12421 case FLASH_5720VENDOR_M_ST_M45PE10:
12422 case FLASH_5720VENDOR_A_ST_M25PE10:
12423 case FLASH_5720VENDOR_A_ST_M45PE10:
12424 case FLASH_5720VENDOR_M_ST_M25PE20:
12425 case FLASH_5720VENDOR_M_ST_M45PE20:
12426 case FLASH_5720VENDOR_A_ST_M25PE20:
12427 case FLASH_5720VENDOR_A_ST_M45PE20:
12428 case FLASH_5720VENDOR_M_ST_M25PE40:
12429 case FLASH_5720VENDOR_M_ST_M45PE40:
12430 case FLASH_5720VENDOR_A_ST_M25PE40:
12431 case FLASH_5720VENDOR_A_ST_M45PE40:
12432 case FLASH_5720VENDOR_M_ST_M25PE80:
12433 case FLASH_5720VENDOR_M_ST_M45PE80:
12434 case FLASH_5720VENDOR_A_ST_M25PE80:
12435 case FLASH_5720VENDOR_A_ST_M45PE80:
12436 case FLASH_5720VENDOR_ST_25USPT:
12437 case FLASH_5720VENDOR_ST_45USPT:
12438 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012439 tg3_flag_set(tp, NVRAM_BUFFERED);
12440 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012441
12442 switch (nvmpinstrp) {
12443 case FLASH_5720VENDOR_M_ST_M25PE20:
12444 case FLASH_5720VENDOR_M_ST_M45PE20:
12445 case FLASH_5720VENDOR_A_ST_M25PE20:
12446 case FLASH_5720VENDOR_A_ST_M45PE20:
12447 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12448 break;
12449 case FLASH_5720VENDOR_M_ST_M25PE40:
12450 case FLASH_5720VENDOR_M_ST_M45PE40:
12451 case FLASH_5720VENDOR_A_ST_M25PE40:
12452 case FLASH_5720VENDOR_A_ST_M45PE40:
12453 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12454 break;
12455 case FLASH_5720VENDOR_M_ST_M25PE80:
12456 case FLASH_5720VENDOR_M_ST_M45PE80:
12457 case FLASH_5720VENDOR_A_ST_M25PE80:
12458 case FLASH_5720VENDOR_A_ST_M45PE80:
12459 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12460 break;
12461 default:
12462 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12463 break;
12464 }
12465 break;
12466 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012467 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012468 return;
12469 }
12470
12471 tg3_nvram_get_pagesize(tp, nvcfg1);
12472 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012473 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012474}
12475
Linus Torvalds1da177e2005-04-16 15:20:36 -070012476/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12477static void __devinit tg3_nvram_init(struct tg3 *tp)
12478{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012479 tw32_f(GRC_EEPROM_ADDR,
12480 (EEPROM_ADDR_FSM_RESET |
12481 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12482 EEPROM_ADDR_CLKPERD_SHIFT)));
12483
Michael Chan9d57f012006-12-07 00:23:25 -080012484 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012485
12486 /* Enable seeprom accesses. */
12487 tw32_f(GRC_LOCAL_CTRL,
12488 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12489 udelay(100);
12490
12491 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12492 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012493 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012494
Michael Chanec41c7d2006-01-17 02:40:55 -080012495 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012496 netdev_warn(tp->dev,
12497 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012498 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012499 return;
12500 }
Michael Chane6af3012005-04-21 17:12:05 -070012501 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012502
Matt Carlson989a9d22007-05-05 11:51:05 -070012503 tp->nvram_size = 0;
12504
Michael Chan361b4ac2005-04-21 17:11:21 -070012505 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12506 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012507 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12508 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012509 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012510 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12511 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012512 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012513 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12514 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012515 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12516 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012517 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12518 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080012519 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012520 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12521 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012522 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012523 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12524 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012525 else
12526 tg3_get_nvram_info(tp);
12527
Matt Carlson989a9d22007-05-05 11:51:05 -070012528 if (tp->nvram_size == 0)
12529 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012530
Michael Chane6af3012005-04-21 17:12:05 -070012531 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012532 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012533
12534 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012535 tg3_flag_clear(tp, NVRAM);
12536 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012537
12538 tg3_get_eeprom_size(tp);
12539 }
12540}
12541
Linus Torvalds1da177e2005-04-16 15:20:36 -070012542static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12543 u32 offset, u32 len, u8 *buf)
12544{
12545 int i, j, rc = 0;
12546 u32 val;
12547
12548 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012549 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012550 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012551
12552 addr = offset + i;
12553
12554 memcpy(&data, buf + i, 4);
12555
Matt Carlson62cedd12009-04-20 14:52:29 -070012556 /*
12557 * The SEEPROM interface expects the data to always be opposite
12558 * the native endian format. We accomplish this by reversing
12559 * all the operations that would have been performed on the
12560 * data from a call to tg3_nvram_read_be32().
12561 */
12562 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012563
12564 val = tr32(GRC_EEPROM_ADDR);
12565 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12566
12567 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12568 EEPROM_ADDR_READ);
12569 tw32(GRC_EEPROM_ADDR, val |
12570 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12571 (addr & EEPROM_ADDR_ADDR_MASK) |
12572 EEPROM_ADDR_START |
12573 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012574
Michael Chan9d57f012006-12-07 00:23:25 -080012575 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012576 val = tr32(GRC_EEPROM_ADDR);
12577
12578 if (val & EEPROM_ADDR_COMPLETE)
12579 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012580 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012581 }
12582 if (!(val & EEPROM_ADDR_COMPLETE)) {
12583 rc = -EBUSY;
12584 break;
12585 }
12586 }
12587
12588 return rc;
12589}
12590
12591/* offset and length are dword aligned */
12592static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12593 u8 *buf)
12594{
12595 int ret = 0;
12596 u32 pagesize = tp->nvram_pagesize;
12597 u32 pagemask = pagesize - 1;
12598 u32 nvram_cmd;
12599 u8 *tmp;
12600
12601 tmp = kmalloc(pagesize, GFP_KERNEL);
12602 if (tmp == NULL)
12603 return -ENOMEM;
12604
12605 while (len) {
12606 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012607 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012608
12609 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012610
Linus Torvalds1da177e2005-04-16 15:20:36 -070012611 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012612 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12613 (__be32 *) (tmp + j));
12614 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012615 break;
12616 }
12617 if (ret)
12618 break;
12619
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012620 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012621 size = pagesize;
12622 if (len < size)
12623 size = len;
12624
12625 len -= size;
12626
12627 memcpy(tmp + page_off, buf, size);
12628
12629 offset = offset + (pagesize - page_off);
12630
Michael Chane6af3012005-04-21 17:12:05 -070012631 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012632
12633 /*
12634 * Before we can erase the flash page, we need
12635 * to issue a special "write enable" command.
12636 */
12637 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12638
12639 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12640 break;
12641
12642 /* Erase the target page */
12643 tw32(NVRAM_ADDR, phy_addr);
12644
12645 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12646 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12647
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012648 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012649 break;
12650
12651 /* Issue another write enable to start the write. */
12652 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12653
12654 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12655 break;
12656
12657 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012658 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012659
Al Virob9fc7dc2007-12-17 22:59:57 -080012660 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012661
Al Virob9fc7dc2007-12-17 22:59:57 -080012662 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012663
12664 tw32(NVRAM_ADDR, phy_addr + j);
12665
12666 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12667 NVRAM_CMD_WR;
12668
12669 if (j == 0)
12670 nvram_cmd |= NVRAM_CMD_FIRST;
12671 else if (j == (pagesize - 4))
12672 nvram_cmd |= NVRAM_CMD_LAST;
12673
12674 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12675 break;
12676 }
12677 if (ret)
12678 break;
12679 }
12680
12681 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12682 tg3_nvram_exec_cmd(tp, nvram_cmd);
12683
12684 kfree(tmp);
12685
12686 return ret;
12687}
12688
12689/* offset and length are dword aligned */
12690static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12691 u8 *buf)
12692{
12693 int i, ret = 0;
12694
12695 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012696 u32 page_off, phy_addr, nvram_cmd;
12697 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012698
12699 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012700 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012701
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012702 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012703
Michael Chan18201802006-03-20 22:29:15 -080012704 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012705
12706 tw32(NVRAM_ADDR, phy_addr);
12707
12708 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12709
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012710 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012711 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012712 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012713 nvram_cmd |= NVRAM_CMD_LAST;
12714
12715 if (i == (len - 4))
12716 nvram_cmd |= NVRAM_CMD_LAST;
12717
Matt Carlson321d32a2008-11-21 17:22:19 -080012718 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012719 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012720 (tp->nvram_jedecnum == JEDEC_ST) &&
12721 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012722
12723 if ((ret = tg3_nvram_exec_cmd(tp,
12724 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12725 NVRAM_CMD_DONE)))
12726
12727 break;
12728 }
Joe Perches63c3a662011-04-26 08:12:10 +000012729 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012730 /* We always do complete word writes to eeprom. */
12731 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12732 }
12733
12734 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12735 break;
12736 }
12737 return ret;
12738}
12739
12740/* offset and length are dword aligned */
12741static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12742{
12743 int ret;
12744
Joe Perches63c3a662011-04-26 08:12:10 +000012745 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012746 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12747 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012748 udelay(40);
12749 }
12750
Joe Perches63c3a662011-04-26 08:12:10 +000012751 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012752 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a5882010-04-05 10:19:28 +000012753 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012754 u32 grc_mode;
12755
Michael Chanec41c7d2006-01-17 02:40:55 -080012756 ret = tg3_nvram_lock(tp);
12757 if (ret)
12758 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012759
Michael Chane6af3012005-04-21 17:12:05 -070012760 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012761 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012762 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012763
12764 grc_mode = tr32(GRC_MODE);
12765 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12766
Joe Perches63c3a662011-04-26 08:12:10 +000012767 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012768 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12769 buf);
Matt Carlson859a5882010-04-05 10:19:28 +000012770 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012771 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12772 buf);
12773 }
12774
12775 grc_mode = tr32(GRC_MODE);
12776 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12777
Michael Chane6af3012005-04-21 17:12:05 -070012778 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012779 tg3_nvram_unlock(tp);
12780 }
12781
Joe Perches63c3a662011-04-26 08:12:10 +000012782 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012783 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012784 udelay(40);
12785 }
12786
12787 return ret;
12788}
12789
12790struct subsys_tbl_ent {
12791 u16 subsys_vendor, subsys_devid;
12792 u32 phy_id;
12793};
12794
Matt Carlson24daf2b2010-02-17 15:17:02 +000012795static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012796 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012797 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012798 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012799 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012800 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012801 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012802 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012803 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12804 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12805 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012806 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012807 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012808 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012809 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12810 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12811 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012812 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012813 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012814 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012815 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012816 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012817 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012818 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012819
12820 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012821 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012822 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012823 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012824 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012825 { TG3PCI_SUBVENDOR_ID_3COM,
12826 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12827 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012828 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012829 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012830 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012831
12832 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012833 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012834 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012835 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012836 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012837 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012838 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012839 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012840 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012841
12842 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012843 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012844 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012845 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012846 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012847 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12848 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12849 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012850 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012851 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012852 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012853
12854 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012855 { TG3PCI_SUBVENDOR_ID_IBM,
12856 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012857};
12858
Matt Carlson24daf2b2010-02-17 15:17:02 +000012859static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012860{
12861 int i;
12862
12863 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12864 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12865 tp->pdev->subsystem_vendor) &&
12866 (subsys_id_to_phy_id[i].subsys_devid ==
12867 tp->pdev->subsystem_device))
12868 return &subsys_id_to_phy_id[i];
12869 }
12870 return NULL;
12871}
12872
Michael Chan7d0c41e2005-04-21 17:06:20 -070012873static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012874{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012875 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070012876
Matt Carlson79eb6902010-02-17 15:17:03 +000012877 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012878 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12879
Gary Zambranoa85feb82007-05-05 11:52:19 -070012880 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000012881 tg3_flag_set(tp, EEPROM_WRITE_PROT);
12882 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080012883
Michael Chanb5d37722006-09-27 16:06:21 -070012884 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012885 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012886 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12887 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012888 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012889 val = tr32(VCPU_CFGSHDW);
12890 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000012891 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070012892 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012893 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012894 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012895 device_set_wakeup_enable(&tp->pdev->dev, true);
12896 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012897 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012898 }
12899
Linus Torvalds1da177e2005-04-16 15:20:36 -070012900 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12901 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12902 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012903 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012904 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012905
12906 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12907 tp->nic_sram_data_cfg = nic_cfg;
12908
12909 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12910 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000012911 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12912 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
12913 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012914 (ver > 0) && (ver < 0x100))
12915 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12916
Matt Carlsona9daf362008-05-25 23:49:44 -070012917 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12918 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12919
Linus Torvalds1da177e2005-04-16 15:20:36 -070012920 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12921 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12922 eeprom_phy_serdes = 1;
12923
12924 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12925 if (nic_phy_id != 0) {
12926 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12927 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12928
12929 eeprom_phy_id = (id1 >> 16) << 10;
12930 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12931 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12932 } else
12933 eeprom_phy_id = 0;
12934
Michael Chan7d0c41e2005-04-21 17:06:20 -070012935 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012936 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000012937 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012938 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000012939 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012940 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070012941 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012942
Joe Perches63c3a662011-04-26 08:12:10 +000012943 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012944 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12945 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012946 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012947 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12948
12949 switch (led_cfg) {
12950 default:
12951 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12952 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12953 break;
12954
12955 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12956 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12957 break;
12958
12959 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12960 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012961
12962 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12963 * read on some older 5700/5701 bootcode.
12964 */
12965 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12966 ASIC_REV_5700 ||
12967 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12968 ASIC_REV_5701)
12969 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12970
Linus Torvalds1da177e2005-04-16 15:20:36 -070012971 break;
12972
12973 case SHASTA_EXT_LED_SHARED:
12974 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12975 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12976 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12977 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12978 LED_CTRL_MODE_PHY_2);
12979 break;
12980
12981 case SHASTA_EXT_LED_MAC:
12982 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12983 break;
12984
12985 case SHASTA_EXT_LED_COMBO:
12986 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12987 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12988 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12989 LED_CTRL_MODE_PHY_2);
12990 break;
12991
Stephen Hemminger855e1112008-04-16 16:37:28 -070012992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012993
12994 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
12995 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) &&
12996 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12997 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12998
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012999 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
13000 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080013001
Michael Chan9d26e212006-12-07 00:21:14 -080013002 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000013003 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013004 if ((tp->pdev->subsystem_vendor ==
13005 PCI_VENDOR_ID_ARIMA) &&
13006 (tp->pdev->subsystem_device == 0x205a ||
13007 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000013008 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080013009 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000013010 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
13011 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080013012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013013
13014 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000013015 tg3_flag_set(tp, ENABLE_ASF);
13016 if (tg3_flag(tp, 5750_PLUS))
13017 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013018 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013019
13020 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013021 tg3_flag(tp, 5750_PLUS))
13022 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080013023
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013024 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070013025 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000013026 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013027
Joe Perches63c3a662011-04-26 08:12:10 +000013028 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013029 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013030 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000013031 device_set_wakeup_enable(&tp->pdev->dev, true);
13032 }
Matt Carlson0527ba32007-10-10 18:03:30 -070013033
Linus Torvalds1da177e2005-04-16 15:20:36 -070013034 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013035 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013036
13037 /* serdes signal pre-emphasis in register 0x590 set by */
13038 /* bootcode if bit 18 is set */
13039 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013040 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070013041
Joe Perches63c3a662011-04-26 08:12:10 +000013042 if ((tg3_flag(tp, 57765_PLUS) ||
13043 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
13044 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080013045 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013046 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080013047
Joe Perches63c3a662011-04-26 08:12:10 +000013048 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000013049 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000013050 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070013051 u32 cfg3;
13052
13053 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
13054 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000013055 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070013056 }
Matt Carlsona9daf362008-05-25 23:49:44 -070013057
Matt Carlson14417062010-02-17 15:16:59 +000013058 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000013059 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070013060 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013061 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070013062 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000013063 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013064 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080013065done:
Joe Perches63c3a662011-04-26 08:12:10 +000013066 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013067 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000013068 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000013069 else
13070 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070013071}
13072
Matt Carlsonb2a5c192008-04-03 21:44:44 -070013073static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
13074{
13075 int i;
13076 u32 val;
13077
13078 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
13079 tw32(OTP_CTRL, cmd);
13080
13081 /* Wait for up to 1 ms for command to execute. */
13082 for (i = 0; i < 100; i++) {
13083 val = tr32(OTP_STATUS);
13084 if (val & OTP_STATUS_CMD_DONE)
13085 break;
13086 udelay(10);
13087 }
13088
13089 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13090}
13091
13092/* Read the gphy configuration from the OTP region of the chip. The gphy
13093 * configuration is a 32-bit value that straddles the alignment boundary.
13094 * We do two 32-bit reads and then shift and merge the results.
13095 */
13096static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13097{
13098 u32 bhalf_otp, thalf_otp;
13099
13100 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13101
13102 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13103 return 0;
13104
13105 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13106
13107 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13108 return 0;
13109
13110 thalf_otp = tr32(OTP_READ_DATA);
13111
13112 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13113
13114 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13115 return 0;
13116
13117 bhalf_otp = tr32(OTP_READ_DATA);
13118
13119 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13120}
13121
Matt Carlsone256f8a2011-03-09 16:58:24 +000013122static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13123{
13124 u32 adv = ADVERTISED_Autoneg |
13125 ADVERTISED_Pause;
13126
13127 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13128 adv |= ADVERTISED_1000baseT_Half |
13129 ADVERTISED_1000baseT_Full;
13130
13131 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13132 adv |= ADVERTISED_100baseT_Half |
13133 ADVERTISED_100baseT_Full |
13134 ADVERTISED_10baseT_Half |
13135 ADVERTISED_10baseT_Full |
13136 ADVERTISED_TP;
13137 else
13138 adv |= ADVERTISED_FIBRE;
13139
13140 tp->link_config.advertising = adv;
13141 tp->link_config.speed = SPEED_INVALID;
13142 tp->link_config.duplex = DUPLEX_INVALID;
13143 tp->link_config.autoneg = AUTONEG_ENABLE;
13144 tp->link_config.active_speed = SPEED_INVALID;
13145 tp->link_config.active_duplex = DUPLEX_INVALID;
13146 tp->link_config.orig_speed = SPEED_INVALID;
13147 tp->link_config.orig_duplex = DUPLEX_INVALID;
13148 tp->link_config.orig_autoneg = AUTONEG_INVALID;
13149}
13150
Michael Chan7d0c41e2005-04-21 17:06:20 -070013151static int __devinit tg3_phy_probe(struct tg3 *tp)
13152{
13153 u32 hw_phy_id_1, hw_phy_id_2;
13154 u32 hw_phy_id, hw_phy_id_masked;
13155 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013156
Matt Carlsone256f8a2011-03-09 16:58:24 +000013157 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013158 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013159 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13160
Joe Perches63c3a662011-04-26 08:12:10 +000013161 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013162 return tg3_phy_init(tp);
13163
Linus Torvalds1da177e2005-04-16 15:20:36 -070013164 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013165 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013166 */
13167 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013168 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013169 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013170 } else {
13171 /* Now read the physical PHY_ID from the chip and verify
13172 * that it is sane. If it doesn't look good, we fall back
13173 * to either the hard-coded table based PHY_ID and failing
13174 * that the value found in the eeprom area.
13175 */
13176 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13177 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13178
13179 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13180 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13181 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13182
Matt Carlson79eb6902010-02-17 15:17:03 +000013183 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013184 }
13185
Matt Carlson79eb6902010-02-17 15:17:03 +000013186 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013187 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013188 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013189 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013190 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013191 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013192 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013193 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013194 /* Do nothing, phy ID already set up in
13195 * tg3_get_eeprom_hw_cfg().
13196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013197 } else {
13198 struct subsys_tbl_ent *p;
13199
13200 /* No eeprom signature? Try the hardcoded
13201 * subsys device table.
13202 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013203 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013204 if (!p)
13205 return -ENODEV;
13206
13207 tp->phy_id = p->phy_id;
13208 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013209 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013210 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013211 }
13212 }
13213
Matt Carlsona6b68da2010-12-06 08:28:52 +000013214 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Matt Carlson5baa5e92011-07-20 10:20:53 +000013215 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13216 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720 ||
13217 (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +000013218 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13219 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13220 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013221 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13222
Matt Carlsone256f8a2011-03-09 16:58:24 +000013223 tg3_phy_init_link_config(tp);
13224
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013225 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013226 !tg3_flag(tp, ENABLE_APE) &&
13227 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013228 u32 bmsr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013229
13230 tg3_readphy(tp, MII_BMSR, &bmsr);
13231 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13232 (bmsr & BMSR_LSTATUS))
13233 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013234
Linus Torvalds1da177e2005-04-16 15:20:36 -070013235 err = tg3_phy_reset(tp);
13236 if (err)
13237 return err;
13238
Matt Carlson42b64a42011-05-19 12:12:49 +000013239 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013240
Michael Chan3600d912006-12-07 00:21:48 -080013241 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
13242 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
13243 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
13244 if (!tg3_copper_is_advertising_all(tp, mask)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013245 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13246 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013247
13248 tg3_writephy(tp, MII_BMCR,
13249 BMCR_ANENABLE | BMCR_ANRESTART);
13250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013251 }
13252
13253skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013254 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013255 err = tg3_init_5401phy_dsp(tp);
13256 if (err)
13257 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013258
Linus Torvalds1da177e2005-04-16 15:20:36 -070013259 err = tg3_init_5401phy_dsp(tp);
13260 }
13261
Linus Torvalds1da177e2005-04-16 15:20:36 -070013262 return err;
13263}
13264
Matt Carlson184b8902010-04-05 10:19:25 +000013265static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013266{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013267 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013268 unsigned int block_end, rosize, len;
Matt Carlson535a4902011-07-20 10:20:56 +000013269 u32 vpdlen;
Matt Carlson184b8902010-04-05 10:19:25 +000013270 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013271
Matt Carlson535a4902011-07-20 10:20:56 +000013272 vpd_data = (u8 *)tg3_vpd_readblock(tp, &vpdlen);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013273 if (!vpd_data)
13274 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013275
Matt Carlson535a4902011-07-20 10:20:56 +000013276 i = pci_vpd_find_tag(vpd_data, 0, vpdlen, PCI_VPD_LRDT_RO_DATA);
Matt Carlson4181b2c2010-02-26 14:04:45 +000013277 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013278 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013279
13280 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13281 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13282 i += PCI_VPD_LRDT_TAG_SIZE;
13283
Matt Carlson535a4902011-07-20 10:20:56 +000013284 if (block_end > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013285 goto out_not_found;
13286
Matt Carlson184b8902010-04-05 10:19:25 +000013287 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13288 PCI_VPD_RO_KEYWORD_MFR_ID);
13289 if (j > 0) {
13290 len = pci_vpd_info_field_size(&vpd_data[j]);
13291
13292 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13293 if (j + len > block_end || len != 4 ||
13294 memcmp(&vpd_data[j], "1028", 4))
13295 goto partno;
13296
13297 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13298 PCI_VPD_RO_KEYWORD_VENDOR0);
13299 if (j < 0)
13300 goto partno;
13301
13302 len = pci_vpd_info_field_size(&vpd_data[j]);
13303
13304 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13305 if (j + len > block_end)
13306 goto partno;
13307
13308 memcpy(tp->fw_ver, &vpd_data[j], len);
Matt Carlson535a4902011-07-20 10:20:56 +000013309 strncat(tp->fw_ver, " bc ", vpdlen - len - 1);
Matt Carlson184b8902010-04-05 10:19:25 +000013310 }
13311
13312partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013313 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13314 PCI_VPD_RO_KEYWORD_PARTNO);
13315 if (i < 0)
13316 goto out_not_found;
13317
13318 len = pci_vpd_info_field_size(&vpd_data[i]);
13319
13320 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13321 if (len > TG3_BPN_SIZE ||
Matt Carlson535a4902011-07-20 10:20:56 +000013322 (len + i) > vpdlen)
Matt Carlson4181b2c2010-02-26 14:04:45 +000013323 goto out_not_found;
13324
13325 memcpy(tp->board_part_number, &vpd_data[i], len);
13326
Linus Torvalds1da177e2005-04-16 15:20:36 -070013327out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013328 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013329 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013330 return;
13331
13332out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013333 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13334 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13335 strcpy(tp->board_part_number, "BCM5717");
13336 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13337 strcpy(tp->board_part_number, "BCM5718");
13338 else
13339 goto nomatch;
13340 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13341 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13342 strcpy(tp->board_part_number, "BCM57780");
13343 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13344 strcpy(tp->board_part_number, "BCM57760");
13345 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13346 strcpy(tp->board_part_number, "BCM57790");
13347 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13348 strcpy(tp->board_part_number, "BCM57788");
13349 else
13350 goto nomatch;
13351 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13352 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13353 strcpy(tp->board_part_number, "BCM57761");
13354 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13355 strcpy(tp->board_part_number, "BCM57765");
13356 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13357 strcpy(tp->board_part_number, "BCM57781");
13358 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13359 strcpy(tp->board_part_number, "BCM57785");
13360 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13361 strcpy(tp->board_part_number, "BCM57791");
13362 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13363 strcpy(tp->board_part_number, "BCM57795");
13364 else
13365 goto nomatch;
13366 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013367 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013368 } else {
13369nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013370 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013372}
13373
Matt Carlson9c8a6202007-10-21 16:16:08 -070013374static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13375{
13376 u32 val;
13377
Matt Carlsone4f34112009-02-25 14:25:00 +000013378 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013379 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013380 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013381 val != 0)
13382 return 0;
13383
13384 return 1;
13385}
13386
Matt Carlsonacd9c112009-02-25 14:26:33 +000013387static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13388{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013389 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013390 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013391 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013392
13393 if (tg3_nvram_read(tp, 0xc, &offset) ||
13394 tg3_nvram_read(tp, 0x4, &start))
13395 return;
13396
13397 offset = tg3_nvram_logical_addr(tp, offset);
13398
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013399 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013400 return;
13401
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013402 if ((val & 0xfc000000) == 0x0c000000) {
13403 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013404 return;
13405
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013406 if (val == 0)
13407 newver = true;
13408 }
13409
Matt Carlson75f99362010-04-05 10:19:24 +000013410 dst_off = strlen(tp->fw_ver);
13411
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013412 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013413 if (TG3_VER_SIZE - dst_off < 16 ||
13414 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013415 return;
13416
13417 offset = offset + ver_offset - start;
13418 for (i = 0; i < 16; i += 4) {
13419 __be32 v;
13420 if (tg3_nvram_read_be32(tp, offset + i, &v))
13421 return;
13422
Matt Carlson75f99362010-04-05 10:19:24 +000013423 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013424 }
13425 } else {
13426 u32 major, minor;
13427
13428 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13429 return;
13430
13431 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13432 TG3_NVM_BCVER_MAJSFT;
13433 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013434 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13435 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013436 }
13437}
13438
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013439static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13440{
13441 u32 val, major, minor;
13442
13443 /* Use native endian representation */
13444 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13445 return;
13446
13447 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13448 TG3_NVM_HWSB_CFG1_MAJSFT;
13449 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13450 TG3_NVM_HWSB_CFG1_MINSFT;
13451
13452 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13453}
13454
Matt Carlsondfe00d72008-11-21 17:19:41 -080013455static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13456{
13457 u32 offset, major, minor, build;
13458
Matt Carlson75f99362010-04-05 10:19:24 +000013459 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013460
13461 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13462 return;
13463
13464 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13465 case TG3_EEPROM_SB_REVISION_0:
13466 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13467 break;
13468 case TG3_EEPROM_SB_REVISION_2:
13469 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13470 break;
13471 case TG3_EEPROM_SB_REVISION_3:
13472 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13473 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013474 case TG3_EEPROM_SB_REVISION_4:
13475 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13476 break;
13477 case TG3_EEPROM_SB_REVISION_5:
13478 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13479 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013480 case TG3_EEPROM_SB_REVISION_6:
13481 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13482 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013483 default:
13484 return;
13485 }
13486
Matt Carlsone4f34112009-02-25 14:25:00 +000013487 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013488 return;
13489
13490 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13491 TG3_EEPROM_SB_EDH_BLD_SHFT;
13492 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13493 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13494 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13495
13496 if (minor > 99 || build > 26)
13497 return;
13498
Matt Carlson75f99362010-04-05 10:19:24 +000013499 offset = strlen(tp->fw_ver);
13500 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13501 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013502
13503 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013504 offset = strlen(tp->fw_ver);
13505 if (offset < TG3_VER_SIZE - 1)
13506 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013507 }
13508}
13509
Matt Carlsonacd9c112009-02-25 14:26:33 +000013510static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013511{
13512 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013513 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013514
13515 for (offset = TG3_NVM_DIR_START;
13516 offset < TG3_NVM_DIR_END;
13517 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013518 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013519 return;
13520
13521 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13522 break;
13523 }
13524
13525 if (offset == TG3_NVM_DIR_END)
13526 return;
13527
Joe Perches63c3a662011-04-26 08:12:10 +000013528 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013529 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013530 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013531 return;
13532
Matt Carlsone4f34112009-02-25 14:25:00 +000013533 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013534 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013535 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013536 return;
13537
13538 offset += val - start;
13539
Matt Carlsonacd9c112009-02-25 14:26:33 +000013540 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013541
Matt Carlsonacd9c112009-02-25 14:26:33 +000013542 tp->fw_ver[vlen++] = ',';
13543 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013544
13545 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013546 __be32 v;
13547 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013548 return;
13549
Al Virob9fc7dc2007-12-17 22:59:57 -080013550 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013551
Matt Carlsonacd9c112009-02-25 14:26:33 +000013552 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13553 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013554 break;
13555 }
13556
Matt Carlsonacd9c112009-02-25 14:26:33 +000013557 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13558 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013559 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013560}
13561
Matt Carlson7fd76442009-02-25 14:27:20 +000013562static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13563{
13564 int vlen;
13565 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013566 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013567
Joe Perches63c3a662011-04-26 08:12:10 +000013568 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013569 return;
13570
13571 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13572 if (apedata != APE_SEG_SIG_MAGIC)
13573 return;
13574
13575 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13576 if (!(apedata & APE_FW_STATUS_READY))
13577 return;
13578
13579 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13580
Matt Carlsondc6d0742010-09-15 08:59:55 +000013581 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013582 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013583 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013584 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013585 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013586 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013587
Matt Carlson7fd76442009-02-25 14:27:20 +000013588 vlen = strlen(tp->fw_ver);
13589
Matt Carlsonecc79642010-08-02 11:26:01 +000013590 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13591 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013592 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13593 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13594 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13595 (apedata & APE_FW_VERSION_BLDMSK));
13596}
13597
Matt Carlsonacd9c112009-02-25 14:26:33 +000013598static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13599{
13600 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013601 bool vpd_vers = false;
13602
13603 if (tp->fw_ver[0] != 0)
13604 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013605
Joe Perches63c3a662011-04-26 08:12:10 +000013606 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013607 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013608 return;
13609 }
13610
Matt Carlsonacd9c112009-02-25 14:26:33 +000013611 if (tg3_nvram_read(tp, 0, &val))
13612 return;
13613
13614 if (val == TG3_EEPROM_MAGIC)
13615 tg3_read_bc_ver(tp);
13616 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13617 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013618 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13619 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013620 else
13621 return;
13622
Matt Carlsonc9cab242011-07-13 09:27:27 +000013623 if (vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013624 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013625
Matt Carlsonc9cab242011-07-13 09:27:27 +000013626 if (tg3_flag(tp, ENABLE_APE)) {
13627 if (tg3_flag(tp, ENABLE_ASF))
13628 tg3_read_dash_ver(tp);
13629 } else if (tg3_flag(tp, ENABLE_ASF)) {
13630 tg3_read_mgmtfw_ver(tp);
13631 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070013632
Matt Carlson75f99362010-04-05 10:19:24 +000013633done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013634 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013635}
13636
Michael Chan7544b092007-05-05 13:08:32 -070013637static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13638
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013639static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13640{
Joe Perches63c3a662011-04-26 08:12:10 +000013641 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013642 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013643 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013644 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013645 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013646 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013647}
13648
Matt Carlson41434702011-03-09 16:58:22 +000013649static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013650 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13651 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13652 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13653 { },
13654};
13655
Linus Torvalds1da177e2005-04-16 15:20:36 -070013656static int __devinit tg3_get_invariants(struct tg3 *tp)
13657{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013658 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013659 u32 pci_state_reg, grc_misc_cfg;
13660 u32 val;
13661 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013662 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013663
Linus Torvalds1da177e2005-04-16 15:20:36 -070013664 /* Force memory write invalidate off. If we leave it on,
13665 * then on 5700_BX chips we have to enable a workaround.
13666 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13667 * to match the cacheline size. The Broadcom driver have this
13668 * workaround but turns MWI off all the times so never uses
13669 * it. This seems to suggest that the workaround is insufficient.
13670 */
13671 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13672 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13673 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13674
Matt Carlson16821282011-07-13 09:27:28 +000013675 /* Important! -- Make sure register accesses are byteswapped
13676 * correctly. Also, for those chips that require it, make
13677 * sure that indirect register accesses are enabled before
13678 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013679 */
13680 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13681 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000013682 tp->misc_host_ctrl |= (misc_ctrl_reg &
13683 MISC_HOST_CTRL_CHIPREV);
13684 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13685 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013686
13687 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13688 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013689 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13690 u32 prod_id_asic_rev;
13691
Matt Carlson5001e2f2009-11-13 13:03:51 +000013692 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13693 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013694 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13695 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013696 pci_read_config_dword(tp->pdev,
13697 TG3PCI_GEN2_PRODID_ASICREV,
13698 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013699 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13700 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13701 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13702 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13703 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13704 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13705 pci_read_config_dword(tp->pdev,
13706 TG3PCI_GEN15_PRODID_ASICREV,
13707 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013708 else
13709 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13710 &prod_id_asic_rev);
13711
Matt Carlson321d32a2008-11-21 17:22:19 -080013712 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013714
Michael Chanff645be2005-04-21 17:09:53 -070013715 /* Wrong chip ID in 5752 A0. This code can be removed later
13716 * as A0 is not in production.
13717 */
13718 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13719 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13720
Michael Chan68929142005-08-09 20:17:14 -070013721 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13722 * we need to disable memory and use config. cycles
13723 * only to access all registers. The 5702/03 chips
13724 * can mistakenly decode the special cycles from the
13725 * ICH chipsets as memory write cycles, causing corruption
13726 * of register and memory space. Only certain ICH bridges
13727 * will drive special cycles with non-zero data during the
13728 * address phase which can fall within the 5703's address
13729 * range. This is not an ICH bug as the PCI spec allows
13730 * non-zero address during special cycles. However, only
13731 * these ICH bridges are known to drive non-zero addresses
13732 * during special cycles.
13733 *
13734 * Since special cycles do not cross PCI bridges, we only
13735 * enable this workaround if the 5703 is on the secondary
13736 * bus of these ICH bridges.
13737 */
13738 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13739 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13740 static struct tg3_dev_id {
13741 u32 vendor;
13742 u32 device;
13743 u32 rev;
13744 } ich_chipsets[] = {
13745 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13746 PCI_ANY_ID },
13747 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13748 PCI_ANY_ID },
13749 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13750 0xa },
13751 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13752 PCI_ANY_ID },
13753 { },
13754 };
13755 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13756 struct pci_dev *bridge = NULL;
13757
13758 while (pci_id->vendor != 0) {
13759 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13760 bridge);
13761 if (!bridge) {
13762 pci_id++;
13763 continue;
13764 }
13765 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013766 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013767 continue;
13768 }
13769 if (bridge->subordinate &&
13770 (bridge->subordinate->number ==
13771 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013772 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013773 pci_dev_put(bridge);
13774 break;
13775 }
13776 }
13777 }
13778
Matt Carlson6ff6f812011-05-19 12:12:54 +000013779 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070013780 static struct tg3_dev_id {
13781 u32 vendor;
13782 u32 device;
13783 } bridge_chipsets[] = {
13784 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13785 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13786 { },
13787 };
13788 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13789 struct pci_dev *bridge = NULL;
13790
13791 while (pci_id->vendor != 0) {
13792 bridge = pci_get_device(pci_id->vendor,
13793 pci_id->device,
13794 bridge);
13795 if (!bridge) {
13796 pci_id++;
13797 continue;
13798 }
13799 if (bridge->subordinate &&
13800 (bridge->subordinate->number <=
13801 tp->pdev->bus->number) &&
13802 (bridge->subordinate->subordinate >=
13803 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013804 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070013805 pci_dev_put(bridge);
13806 break;
13807 }
13808 }
13809 }
13810
Michael Chan4a29cc22006-03-19 13:21:12 -080013811 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13812 * DMA addresses > 40-bit. This bridge may have other additional
13813 * 57xx devices behind it in some 4-port NIC designs for example.
13814 * Any tg3 device found behind the bridge will also need the 40-bit
13815 * DMA workaround.
13816 */
Michael Chana4e2b342005-10-26 15:46:52 -070013817 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13818 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000013819 tg3_flag_set(tp, 5780_CLASS);
13820 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070013821 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a5882010-04-05 10:19:28 +000013822 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080013823 struct pci_dev *bridge = NULL;
13824
13825 do {
13826 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13827 PCI_DEVICE_ID_SERVERWORKS_EPB,
13828 bridge);
13829 if (bridge && bridge->subordinate &&
13830 (bridge->subordinate->number <=
13831 tp->pdev->bus->number) &&
13832 (bridge->subordinate->subordinate >=
13833 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013834 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080013835 pci_dev_put(bridge);
13836 break;
13837 }
13838 } while (bridge);
13839 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013840
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013841 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000013842 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070013843 tp->pdev_peer = tg3_find_peer(tp);
13844
Matt Carlsonc885e822010-08-02 11:25:57 +000013845 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013846 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13847 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000013848 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000013849
13850 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013851 tg3_flag(tp, 5717_PLUS))
13852 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000013853
Matt Carlson321d32a2008-11-21 17:22:19 -080013854 /* Intentionally exclude ASIC_REV_5906 */
13855 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad2006-03-20 22:27:35 -080013856 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013857 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013858 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013859 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013860 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013861 tg3_flag(tp, 57765_PLUS))
13862 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013863
13864 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13865 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013866 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013867 tg3_flag(tp, 5755_PLUS) ||
13868 tg3_flag(tp, 5780_CLASS))
13869 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070013870
Matt Carlson6ff6f812011-05-19 12:12:54 +000013871 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013872 tg3_flag(tp, 5750_PLUS))
13873 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070013874
Matt Carlson507399f2009-11-13 13:03:37 +000013875 /* Determine TSO capabilities */
Matt Carlsona0512942011-07-27 14:20:54 +000013876 if (tp->pci_chip_rev_id == CHIPREV_ID_5719_A0)
Matt Carlson4d163b72011-01-25 15:58:48 +000013877 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000013878 else if (tg3_flag(tp, 57765_PLUS))
13879 tg3_flag_set(tp, HW_TSO_3);
13880 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000013881 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013882 tg3_flag_set(tp, HW_TSO_2);
13883 else if (tg3_flag(tp, 5750_PLUS)) {
13884 tg3_flag_set(tp, HW_TSO_1);
13885 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013886 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13887 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000013888 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013889 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13890 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13891 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013892 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013893 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13894 tp->fw_needed = FIRMWARE_TG3TSO5;
13895 else
13896 tp->fw_needed = FIRMWARE_TG3TSO;
13897 }
13898
Matt Carlsondabc5c62011-05-19 12:12:52 +000013899 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000013900 if (tg3_flag(tp, HW_TSO_1) ||
13901 tg3_flag(tp, HW_TSO_2) ||
13902 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsondabc5c62011-05-19 12:12:52 +000013903 (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF)))
13904 tg3_flag_set(tp, TSO_CAPABLE);
13905 else {
13906 tg3_flag_clear(tp, TSO_CAPABLE);
13907 tg3_flag_clear(tp, TSO_BUG);
13908 tp->fw_needed = NULL;
13909 }
13910
13911 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
13912 tp->fw_needed = FIRMWARE_TG3;
13913
Matt Carlson507399f2009-11-13 13:03:37 +000013914 tp->irq_max = 1;
13915
Joe Perches63c3a662011-04-26 08:12:10 +000013916 if (tg3_flag(tp, 5750_PLUS)) {
13917 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013918 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13919 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13920 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13921 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13922 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000013923 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013924
Joe Perches63c3a662011-04-26 08:12:10 +000013925 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013926 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013927 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070013928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013929
Joe Perches63c3a662011-04-26 08:12:10 +000013930 if (tg3_flag(tp, 57765_PLUS)) {
13931 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000013932 tp->irq_max = TG3_IRQ_MAX_VECS;
13933 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013934 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013935
Matt Carlson2ffcc982011-05-19 12:12:44 +000013936 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000013937 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013938
Matt Carlsone31aa982011-07-27 14:20:53 +000013939 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
13940 tg3_flag_set(tp, 4K_FIFO_LIMIT);
13941
Joe Perches63c3a662011-04-26 08:12:10 +000013942 if (tg3_flag(tp, 5717_PLUS))
13943 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000013944
Joe Perches63c3a662011-04-26 08:12:10 +000013945 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlsona0512942011-07-27 14:20:54 +000013946 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0)
Joe Perches63c3a662011-04-26 08:12:10 +000013947 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000013948
Joe Perches63c3a662011-04-26 08:12:10 +000013949 if (!tg3_flag(tp, 5705_PLUS) ||
13950 tg3_flag(tp, 5780_CLASS) ||
13951 tg3_flag(tp, USE_JUMBO_BDFLAG))
13952 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070013953
Matt Carlson52f44902008-11-21 17:17:04 -080013954 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13955 &pci_state_reg);
13956
Jon Mason708ebb32011-06-27 12:56:50 +000013957 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013958 u16 lnkctl;
13959
Joe Perches63c3a662011-04-26 08:12:10 +000013960 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013961
Matt Carlsoncf790032010-11-24 08:31:48 +000013962 tp->pcie_readrq = 4096;
Matt Carlsond78b59f2011-04-05 14:22:46 +000013963 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13964 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Matt Carlsonb4495ed2011-01-25 15:58:47 +000013965 tp->pcie_readrq = 2048;
Matt Carlsoncf790032010-11-24 08:31:48 +000013966
13967 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013968
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013969 pci_read_config_word(tp->pdev,
Jon Mason708ebb32011-06-27 12:56:50 +000013970 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013971 &lnkctl);
13972 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000013973 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13974 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013975 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000013976 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000013977 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013978 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013979 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013980 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13981 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000013982 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b05902010-01-20 16:58:02 +000013983 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013984 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080013985 }
Matt Carlson52f44902008-11-21 17:17:04 -080013986 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb32011-06-27 12:56:50 +000013987 /* BCM5785 devices are effectively PCIe devices, and should
13988 * follow PCIe codepaths, but do not have a PCIe capabilities
13989 * section.
13990 */
Joe Perches63c3a662011-04-26 08:12:10 +000013991 tg3_flag_set(tp, PCI_EXPRESS);
13992 } else if (!tg3_flag(tp, 5705_PLUS) ||
13993 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080013994 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13995 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000013996 dev_err(&tp->pdev->dev,
13997 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013998 return -EIO;
13999 }
14000
14001 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000014002 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080014003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014004
Michael Chan399de502005-10-03 14:02:39 -070014005 /* If we have an AMD 762 or VIA K8T800 chipset, write
14006 * reordering to the mailbox registers done by the host
14007 * controller can cause major troubles. We read back from
14008 * every mailbox register write to force the writes to be
14009 * posted to the chip in order.
14010 */
Matt Carlson41434702011-03-09 16:58:22 +000014011 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000014012 !tg3_flag(tp, PCI_EXPRESS))
14013 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070014014
Matt Carlson69fc4052008-12-21 20:19:57 -080014015 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
14016 &tp->pci_cacheline_sz);
14017 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14018 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014019 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14020 tp->pci_lat_timer < 64) {
14021 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080014022 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
14023 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014024 }
14025
Matt Carlson16821282011-07-13 09:27:28 +000014026 /* Important! -- It is critical that the PCI-X hw workaround
14027 * situation is decided before the first MMIO register access.
14028 */
Matt Carlson52f44902008-11-21 17:17:04 -080014029 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
14030 /* 5700 BX chips need to have their TX producer index
14031 * mailboxes written twice to workaround a bug.
14032 */
Joe Perches63c3a662011-04-26 08:12:10 +000014033 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070014034
Matt Carlson52f44902008-11-21 17:17:04 -080014035 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014036 *
14037 * The workaround is to use indirect register accesses
14038 * for all chip writes not to mailbox registers.
14039 */
Joe Perches63c3a662011-04-26 08:12:10 +000014040 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014041 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014042
Joe Perches63c3a662011-04-26 08:12:10 +000014043 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014044
14045 /* The chip can have it's power management PCI config
14046 * space registers clobbered due to this bug.
14047 * So explicitly force the chip into D0 here.
14048 */
Matt Carlson9974a352007-10-07 23:27:28 -070014049 pci_read_config_dword(tp->pdev,
14050 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014051 &pm_reg);
14052 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
14053 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070014054 pci_write_config_dword(tp->pdev,
14055 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014056 pm_reg);
14057
14058 /* Also, force SERR#/PERR# in PCI command. */
14059 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14060 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
14061 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14062 }
14063 }
14064
Linus Torvalds1da177e2005-04-16 15:20:36 -070014065 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014066 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014067 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000014068 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014069
14070 /* Chip-specific fixup from Broadcom driver */
14071 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
14072 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
14073 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
14074 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
14075 }
14076
Michael Chan1ee582d2005-08-09 20:16:46 -070014077 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070014078 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014079 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070014080 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070014081 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070014082 tp->write32_tx_mbox = tg3_write32;
14083 tp->write32_rx_mbox = tg3_write32;
14084
14085 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000014086 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070014087 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014088 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014089 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014090 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14091 /*
14092 * Back to back register writes can cause problems on these
14093 * chips, the workaround is to read back all reg writes
14094 * except those to mailbox regs.
14095 *
14096 * See tg3_write_indirect_reg32().
14097 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014098 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014099 }
14100
Joe Perches63c3a662011-04-26 08:12:10 +000014101 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014102 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014103 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014104 tp->write32_rx_mbox = tg3_write_flush_reg32;
14105 }
Michael Chan20094932005-08-09 20:16:32 -070014106
Joe Perches63c3a662011-04-26 08:12:10 +000014107 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014108 tp->read32 = tg3_read_indirect_reg32;
14109 tp->write32 = tg3_write_indirect_reg32;
14110 tp->read32_mbox = tg3_read_indirect_mbox;
14111 tp->write32_mbox = tg3_write_indirect_mbox;
14112 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14113 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14114
14115 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014116 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014117
14118 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14119 pci_cmd &= ~PCI_COMMAND_MEMORY;
14120 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14121 }
Michael Chanb5d37722006-09-27 16:06:21 -070014122 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14123 tp->read32_mbox = tg3_read32_mbox_5906;
14124 tp->write32_mbox = tg3_write32_mbox_5906;
14125 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14126 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14127 }
Michael Chan68929142005-08-09 20:17:14 -070014128
Michael Chanbbadf502006-04-06 21:46:34 -070014129 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014130 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014131 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014132 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014133 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014134
Matt Carlson16821282011-07-13 09:27:28 +000014135 /* The memory arbiter has to be enabled in order for SRAM accesses
14136 * to succeed. Normally on powerup the tg3 chip firmware will make
14137 * sure it is enabled, but other entities such as system netboot
14138 * code might disable it.
14139 */
14140 val = tr32(MEMARB_MODE);
14141 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14142
Matt Carlson69f11c92011-07-13 09:27:30 +000014143 if (tg3_flag(tp, PCIX_MODE)) {
14144 pci_read_config_dword(tp->pdev,
14145 tp->pcix_cap + PCI_X_STATUS, &val);
14146 tp->pci_fn = val & 0x7;
14147 } else {
14148 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14149 }
14150
Michael Chan7d0c41e2005-04-21 17:06:20 -070014151 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014152 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014153 * determined before calling tg3_set_power_state() so that
14154 * we know whether or not to switch out of Vaux power.
14155 * When the flag is set, it means that GPIO1 is used for eeprom
14156 * write protect and also implies that it is a LOM where GPIOs
14157 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014158 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014159 tg3_get_eeprom_hw_cfg(tp);
14160
Joe Perches63c3a662011-04-26 08:12:10 +000014161 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014162 /* Allow reads and writes to the
14163 * APE register and memory space.
14164 */
14165 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc2010-06-05 17:24:30 +000014166 PCISTATE_ALLOW_APE_SHMEM_WR |
14167 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014168 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14169 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014170
14171 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014172 }
14173
Matt Carlson9936bcf2007-10-10 18:03:07 -070014174 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014175 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014176 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014177 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014178 tg3_flag(tp, 57765_PLUS))
14179 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070014180
Matt Carlson16821282011-07-13 09:27:28 +000014181 /* Set up tp->grc_local_ctrl before calling
14182 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14183 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014184 * It is also used as eeprom write protect on LOMs.
14185 */
14186 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014187 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014188 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014189 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14190 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014191 /* Unused GPIO3 must be driven as output on 5752 because there
14192 * are no pull-up resistors on unused GPIO pins.
14193 */
14194 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14195 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014196
Matt Carlson321d32a2008-11-21 17:22:19 -080014197 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014198 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14199 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080014200 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14201
Matt Carlson8d519ab2009-04-20 06:58:01 +000014202 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14203 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014204 /* Turn off the debug UART. */
14205 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014206 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014207 /* Keep VMain power. */
14208 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14209 GRC_LCLCTRL_GPIO_OUTPUT0;
14210 }
14211
Matt Carlson16821282011-07-13 09:27:28 +000014212 /* Switch out of Vaux if it is a NIC */
14213 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014214
Linus Torvalds1da177e2005-04-16 15:20:36 -070014215 /* Derive initial jumbo mode from MTU assigned in
14216 * ether_setup() via the alloc_etherdev() call
14217 */
Joe Perches63c3a662011-04-26 08:12:10 +000014218 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14219 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014220
14221 /* Determine WakeOnLan speed to use. */
14222 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14223 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14224 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14225 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014226 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014227 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014228 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014229 }
14230
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014231 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014232 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014233
Linus Torvalds1da177e2005-04-16 15:20:36 -070014234 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014235 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14236 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014237 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014238 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014239 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14240 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14241 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014242
14243 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14244 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014245 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014246 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014247 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014248
Joe Perches63c3a662011-04-26 08:12:10 +000014249 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014250 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014251 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014252 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014253 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014254 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014255 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014256 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14257 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014258 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14259 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014260 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014261 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014262 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014263 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014264 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014266
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014267 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14268 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14269 tp->phy_otp = tg3_read_otp_phycfg(tp);
14270 if (tp->phy_otp == 0)
14271 tp->phy_otp = TG3_OTP_DEFAULT;
14272 }
14273
Joe Perches63c3a662011-04-26 08:12:10 +000014274 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014275 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14276 else
14277 tp->mi_mode = MAC_MI_MODE_BASE;
14278
Linus Torvalds1da177e2005-04-16 15:20:36 -070014279 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014280 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14281 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14282 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14283
Matt Carlson4d958472011-04-20 07:57:35 +000014284 /* Set these bits to enable statistics workaround. */
14285 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14286 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14287 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14288 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14289 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14290 }
14291
Matt Carlson321d32a2008-11-21 17:22:19 -080014292 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14293 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014294 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014295
Matt Carlson158d7ab2008-05-29 01:37:54 -070014296 err = tg3_mdio_init(tp);
14297 if (err)
14298 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014299
14300 /* Initialize data/descriptor byte/word swapping. */
14301 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014302 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14303 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14304 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14305 GRC_MODE_B2HRX_ENABLE |
14306 GRC_MODE_HTX2B_ENABLE |
14307 GRC_MODE_HOST_STACKUP);
14308 else
14309 val &= GRC_MODE_HOST_STACKUP;
14310
Linus Torvalds1da177e2005-04-16 15:20:36 -070014311 tw32(GRC_MODE, val | tp->grc_mode);
14312
14313 tg3_switch_clocks(tp);
14314
14315 /* Clear this out for sanity. */
14316 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14317
14318 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14319 &pci_state_reg);
14320 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014321 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014322 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14323
14324 if (chiprevid == CHIPREV_ID_5701_A0 ||
14325 chiprevid == CHIPREV_ID_5701_B0 ||
14326 chiprevid == CHIPREV_ID_5701_B2 ||
14327 chiprevid == CHIPREV_ID_5701_B5) {
14328 void __iomem *sram_base;
14329
14330 /* Write some dummy words into the SRAM status block
14331 * area, see if it reads back correctly. If the return
14332 * value is bad, force enable the PCIX workaround.
14333 */
14334 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14335
14336 writel(0x00000000, sram_base);
14337 writel(0x00000000, sram_base + 4);
14338 writel(0xffffffff, sram_base + 4);
14339 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014340 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014341 }
14342 }
14343
14344 udelay(50);
14345 tg3_nvram_init(tp);
14346
14347 grc_misc_cfg = tr32(GRC_MISC_CFG);
14348 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14349
Linus Torvalds1da177e2005-04-16 15:20:36 -070014350 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14351 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14352 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014353 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014354
Joe Perches63c3a662011-04-26 08:12:10 +000014355 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000014356 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014357 tg3_flag_set(tp, TAGGED_STATUS);
14358 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014359 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14360 HOSTCC_MODE_CLRTICK_TXBD);
14361
14362 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14363 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14364 tp->misc_host_ctrl);
14365 }
14366
Matt Carlson3bda1252008-08-15 14:08:22 -070014367 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014368 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014369 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014370 else
14371 tp->mac_mode = TG3_DEF_MAC_MODE;
14372
Linus Torvalds1da177e2005-04-16 15:20:36 -070014373 /* these are limited to 10/100 only */
14374 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14375 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14376 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14377 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14378 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14379 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14380 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14381 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14382 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014383 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14384 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014385 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014386 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14387 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014388 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14389 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014390
14391 err = tg3_phy_probe(tp);
14392 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014393 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014394 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014395 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014396 }
14397
Matt Carlson184b8902010-04-05 10:19:25 +000014398 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014399 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014400
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014401 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14402 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014403 } else {
14404 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014405 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014406 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014407 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014408 }
14409
14410 /* 5700 {AX,BX} chips have a broken status block link
14411 * change bit implementation, so we must use the
14412 * status register in those cases.
14413 */
14414 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014415 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014416 else
Joe Perches63c3a662011-04-26 08:12:10 +000014417 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014418
14419 /* The led_ctrl is set during tg3_phy_probe, here we might
14420 * have to force the link status polling mechanism based
14421 * upon subsystem IDs.
14422 */
14423 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014424 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014425 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14426 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014427 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014428 }
14429
14430 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014431 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014432 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014433 else
Joe Perches63c3a662011-04-26 08:12:10 +000014434 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014435
Matt Carlsonbf933c82011-01-25 15:58:49 +000014436 tp->rx_offset = NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014437 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014438 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014439 tg3_flag(tp, PCIX_MODE)) {
Matt Carlsonbf933c82011-01-25 15:58:49 +000014440 tp->rx_offset = 0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014441#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014442 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014443#endif
14444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014445
Matt Carlson2c49a442010-09-30 10:34:35 +000014446 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14447 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014448 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14449
Matt Carlson2c49a442010-09-30 10:34:35 +000014450 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014451
14452 /* Increment the rx prod index on the rx std ring by at most
14453 * 8 for these chips to workaround hw errata.
14454 */
14455 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14456 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14457 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14458 tp->rx_std_max_post = 8;
14459
Joe Perches63c3a662011-04-26 08:12:10 +000014460 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014461 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14462 PCIE_PWR_MGMT_L1_THRESH_MSK;
14463
Linus Torvalds1da177e2005-04-16 15:20:36 -070014464 return err;
14465}
14466
David S. Miller49b6e95f2007-03-29 01:38:42 -070014467#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014468static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14469{
14470 struct net_device *dev = tp->dev;
14471 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014472 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014473 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014474 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014475
David S. Miller49b6e95f2007-03-29 01:38:42 -070014476 addr = of_get_property(dp, "local-mac-address", &len);
14477 if (addr && len == 6) {
14478 memcpy(dev->dev_addr, addr, 6);
14479 memcpy(dev->perm_addr, dev->dev_addr, 6);
14480 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014481 }
14482 return -ENODEV;
14483}
14484
14485static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14486{
14487 struct net_device *dev = tp->dev;
14488
14489 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014490 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014491 return 0;
14492}
14493#endif
14494
14495static int __devinit tg3_get_device_address(struct tg3 *tp)
14496{
14497 struct net_device *dev = tp->dev;
14498 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014499 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014500
David S. Miller49b6e95f2007-03-29 01:38:42 -070014501#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014502 if (!tg3_get_macaddr_sparc(tp))
14503 return 0;
14504#endif
14505
14506 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014507 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014508 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014509 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14510 mac_offset = 0xcc;
14511 if (tg3_nvram_lock(tp))
14512 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14513 else
14514 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014515 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000014516 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014517 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000014518 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000014519 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014520 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014521 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014522
14523 /* First try to get it from MAC address mailbox. */
14524 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14525 if ((hi >> 16) == 0x484b) {
14526 dev->dev_addr[0] = (hi >> 8) & 0xff;
14527 dev->dev_addr[1] = (hi >> 0) & 0xff;
14528
14529 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14530 dev->dev_addr[2] = (lo >> 24) & 0xff;
14531 dev->dev_addr[3] = (lo >> 16) & 0xff;
14532 dev->dev_addr[4] = (lo >> 8) & 0xff;
14533 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014534
Michael Chan008652b2006-03-27 23:14:53 -080014535 /* Some old bootcode may report a 0 MAC address in SRAM */
14536 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14537 }
14538 if (!addr_ok) {
14539 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014540 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014541 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014542 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014543 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14544 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014545 }
14546 /* Finally just fetch it out of the MAC control regs. */
14547 else {
14548 hi = tr32(MAC_ADDR_0_HIGH);
14549 lo = tr32(MAC_ADDR_0_LOW);
14550
14551 dev->dev_addr[5] = lo & 0xff;
14552 dev->dev_addr[4] = (lo >> 8) & 0xff;
14553 dev->dev_addr[3] = (lo >> 16) & 0xff;
14554 dev->dev_addr[2] = (lo >> 24) & 0xff;
14555 dev->dev_addr[1] = hi & 0xff;
14556 dev->dev_addr[0] = (hi >> 8) & 0xff;
14557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014558 }
14559
14560 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014561#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014562 if (!tg3_get_default_macaddr_sparc(tp))
14563 return 0;
14564#endif
14565 return -EINVAL;
14566 }
John W. Linville2ff43692005-09-12 14:44:20 -070014567 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014568 return 0;
14569}
14570
David S. Miller59e6b432005-05-18 22:50:10 -070014571#define BOUNDARY_SINGLE_CACHELINE 1
14572#define BOUNDARY_MULTI_CACHELINE 2
14573
14574static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14575{
14576 int cacheline_size;
14577 u8 byte;
14578 int goal;
14579
14580 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14581 if (byte == 0)
14582 cacheline_size = 1024;
14583 else
14584 cacheline_size = (int) byte * 4;
14585
14586 /* On 5703 and later chips, the boundary bits have no
14587 * effect.
14588 */
14589 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14590 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014591 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014592 goto out;
14593
14594#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14595 goal = BOUNDARY_MULTI_CACHELINE;
14596#else
14597#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14598 goal = BOUNDARY_SINGLE_CACHELINE;
14599#else
14600 goal = 0;
14601#endif
14602#endif
14603
Joe Perches63c3a662011-04-26 08:12:10 +000014604 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014605 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14606 goto out;
14607 }
14608
David S. Miller59e6b432005-05-18 22:50:10 -070014609 if (!goal)
14610 goto out;
14611
14612 /* PCI controllers on most RISC systems tend to disconnect
14613 * when a device tries to burst across a cache-line boundary.
14614 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14615 *
14616 * Unfortunately, for PCI-E there are only limited
14617 * write-side controls for this, and thus for reads
14618 * we will still get the disconnects. We'll also waste
14619 * these PCI cycles for both read and write for chips
14620 * other than 5700 and 5701 which do not implement the
14621 * boundary bits.
14622 */
Joe Perches63c3a662011-04-26 08:12:10 +000014623 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014624 switch (cacheline_size) {
14625 case 16:
14626 case 32:
14627 case 64:
14628 case 128:
14629 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14630 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14631 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14632 } else {
14633 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14634 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14635 }
14636 break;
14637
14638 case 256:
14639 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14640 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14641 break;
14642
14643 default:
14644 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14645 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14646 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014647 }
Joe Perches63c3a662011-04-26 08:12:10 +000014648 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014649 switch (cacheline_size) {
14650 case 16:
14651 case 32:
14652 case 64:
14653 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14654 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14655 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14656 break;
14657 }
14658 /* fallthrough */
14659 case 128:
14660 default:
14661 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14662 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14663 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014664 }
David S. Miller59e6b432005-05-18 22:50:10 -070014665 } else {
14666 switch (cacheline_size) {
14667 case 16:
14668 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14669 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14670 DMA_RWCTRL_WRITE_BNDRY_16);
14671 break;
14672 }
14673 /* fallthrough */
14674 case 32:
14675 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14676 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14677 DMA_RWCTRL_WRITE_BNDRY_32);
14678 break;
14679 }
14680 /* fallthrough */
14681 case 64:
14682 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14683 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14684 DMA_RWCTRL_WRITE_BNDRY_64);
14685 break;
14686 }
14687 /* fallthrough */
14688 case 128:
14689 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14690 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14691 DMA_RWCTRL_WRITE_BNDRY_128);
14692 break;
14693 }
14694 /* fallthrough */
14695 case 256:
14696 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14697 DMA_RWCTRL_WRITE_BNDRY_256);
14698 break;
14699 case 512:
14700 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14701 DMA_RWCTRL_WRITE_BNDRY_512);
14702 break;
14703 case 1024:
14704 default:
14705 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14706 DMA_RWCTRL_WRITE_BNDRY_1024);
14707 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014708 }
David S. Miller59e6b432005-05-18 22:50:10 -070014709 }
14710
14711out:
14712 return val;
14713}
14714
Linus Torvalds1da177e2005-04-16 15:20:36 -070014715static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14716{
14717 struct tg3_internal_buffer_desc test_desc;
14718 u32 sram_dma_descs;
14719 int i, ret;
14720
14721 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14722
14723 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14724 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14725 tw32(RDMAC_STATUS, 0);
14726 tw32(WDMAC_STATUS, 0);
14727
14728 tw32(BUFMGR_MODE, 0);
14729 tw32(FTQ_RESET, 0);
14730
14731 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14732 test_desc.addr_lo = buf_dma & 0xffffffff;
14733 test_desc.nic_mbuf = 0x00002100;
14734 test_desc.len = size;
14735
14736 /*
14737 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14738 * the *second* time the tg3 driver was getting loaded after an
14739 * initial scan.
14740 *
14741 * Broadcom tells me:
14742 * ...the DMA engine is connected to the GRC block and a DMA
14743 * reset may affect the GRC block in some unpredictable way...
14744 * The behavior of resets to individual blocks has not been tested.
14745 *
14746 * Broadcom noted the GRC reset will also reset all sub-components.
14747 */
14748 if (to_device) {
14749 test_desc.cqid_sqid = (13 << 8) | 2;
14750
14751 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14752 udelay(40);
14753 } else {
14754 test_desc.cqid_sqid = (16 << 8) | 7;
14755
14756 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14757 udelay(40);
14758 }
14759 test_desc.flags = 0x00000005;
14760
14761 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14762 u32 val;
14763
14764 val = *(((u32 *)&test_desc) + i);
14765 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14766 sram_dma_descs + (i * sizeof(u32)));
14767 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14768 }
14769 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14770
Matt Carlson859a5882010-04-05 10:19:28 +000014771 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014772 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a5882010-04-05 10:19:28 +000014773 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014774 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014775
14776 ret = -ENODEV;
14777 for (i = 0; i < 40; i++) {
14778 u32 val;
14779
14780 if (to_device)
14781 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14782 else
14783 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14784 if ((val & 0xffff) == sram_dma_descs) {
14785 ret = 0;
14786 break;
14787 }
14788
14789 udelay(100);
14790 }
14791
14792 return ret;
14793}
14794
David S. Millerded73402005-05-23 13:59:47 -070014795#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014796
Matt Carlson41434702011-03-09 16:58:22 +000014797static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014798 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14799 { },
14800};
14801
Linus Torvalds1da177e2005-04-16 15:20:36 -070014802static int __devinit tg3_test_dma(struct tg3 *tp)
14803{
14804 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014805 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014806 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014807
Matt Carlson4bae65c2010-11-24 08:31:52 +000014808 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
14809 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014810 if (!buf) {
14811 ret = -ENOMEM;
14812 goto out_nofree;
14813 }
14814
14815 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14816 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14817
David S. Miller59e6b432005-05-18 22:50:10 -070014818 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014819
Joe Perches63c3a662011-04-26 08:12:10 +000014820 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014821 goto out;
14822
Joe Perches63c3a662011-04-26 08:12:10 +000014823 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014824 /* DMA read watermark not used on PCIE */
14825 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000014826 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014827 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14828 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014829 tp->dma_rwctrl |= 0x003f0000;
14830 else
14831 tp->dma_rwctrl |= 0x003f000f;
14832 } else {
14833 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14834 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14835 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014836 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014837
Michael Chan4a29cc22006-03-19 13:21:12 -080014838 /* If the 5704 is behind the EPB bridge, we can
14839 * do the less restrictive ONE_DMA workaround for
14840 * better performance.
14841 */
Joe Perches63c3a662011-04-26 08:12:10 +000014842 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080014843 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14844 tp->dma_rwctrl |= 0x8000;
14845 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014846 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14847
Michael Chan49afdeb2007-02-13 12:17:03 -080014848 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14849 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014850 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014851 tp->dma_rwctrl |=
14852 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14853 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14854 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014855 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14856 /* 5780 always in PCIX mode */
14857 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014858 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14859 /* 5714 always in PCIX mode */
14860 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014861 } else {
14862 tp->dma_rwctrl |= 0x001b000f;
14863 }
14864 }
14865
14866 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14867 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14868 tp->dma_rwctrl &= 0xfffffff0;
14869
14870 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14871 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14872 /* Remove this if it causes problems for some boards. */
14873 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14874
14875 /* On 5700/5701 chips, we need to set this bit.
14876 * Otherwise the chip will issue cacheline transactions
14877 * to streamable DMA memory with not all the byte
14878 * enables turned on. This is an error on several
14879 * RISC PCI controllers, in particular sparc64.
14880 *
14881 * On 5703/5704 chips, this bit has been reassigned
14882 * a different meaning. In particular, it is used
14883 * on those chips to enable a PCI-X workaround.
14884 */
14885 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14886 }
14887
14888 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14889
14890#if 0
14891 /* Unneeded, already done by tg3_get_invariants. */
14892 tg3_switch_clocks(tp);
14893#endif
14894
Linus Torvalds1da177e2005-04-16 15:20:36 -070014895 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14896 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14897 goto out;
14898
David S. Miller59e6b432005-05-18 22:50:10 -070014899 /* It is best to perform DMA test with maximum write burst size
14900 * to expose the 5700/5701 write DMA bug.
14901 */
14902 saved_dma_rwctrl = tp->dma_rwctrl;
14903 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14904 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14905
Linus Torvalds1da177e2005-04-16 15:20:36 -070014906 while (1) {
14907 u32 *p = buf, i;
14908
14909 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14910 p[i] = i;
14911
14912 /* Send the buffer to the chip. */
14913 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14914 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014915 dev_err(&tp->pdev->dev,
14916 "%s: Buffer write failed. err = %d\n",
14917 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014918 break;
14919 }
14920
14921#if 0
14922 /* validate data reached card RAM correctly. */
14923 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14924 u32 val;
14925 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14926 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000014927 dev_err(&tp->pdev->dev,
14928 "%s: Buffer corrupted on device! "
14929 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014930 /* ret = -ENODEV here? */
14931 }
14932 p[i] = 0;
14933 }
14934#endif
14935 /* Now read it back. */
14936 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14937 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014938 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
14939 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014940 break;
14941 }
14942
14943 /* Verify it. */
14944 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14945 if (p[i] == i)
14946 continue;
14947
David S. Miller59e6b432005-05-18 22:50:10 -070014948 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14949 DMA_RWCTRL_WRITE_BNDRY_16) {
14950 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014951 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14952 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14953 break;
14954 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000014955 dev_err(&tp->pdev->dev,
14956 "%s: Buffer corrupted on read back! "
14957 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014958 ret = -ENODEV;
14959 goto out;
14960 }
14961 }
14962
14963 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14964 /* Success. */
14965 ret = 0;
14966 break;
14967 }
14968 }
David S. Miller59e6b432005-05-18 22:50:10 -070014969 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14970 DMA_RWCTRL_WRITE_BNDRY_16) {
14971 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014972 * now look for chipsets that are known to expose the
14973 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014974 */
Matt Carlson41434702011-03-09 16:58:22 +000014975 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014976 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14977 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a5882010-04-05 10:19:28 +000014978 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014979 /* Safe to use the calculated DMA boundary. */
14980 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a5882010-04-05 10:19:28 +000014981 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070014982
David S. Miller59e6b432005-05-18 22:50:10 -070014983 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014985
14986out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000014987 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014988out_nofree:
14989 return ret;
14990}
14991
Linus Torvalds1da177e2005-04-16 15:20:36 -070014992static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14993{
Joe Perches63c3a662011-04-26 08:12:10 +000014994 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000014995 tp->bufmgr_config.mbuf_read_dma_low_water =
14996 DEFAULT_MB_RDMA_LOW_WATER_5705;
14997 tp->bufmgr_config.mbuf_mac_rx_low_water =
14998 DEFAULT_MB_MACRX_LOW_WATER_57765;
14999 tp->bufmgr_config.mbuf_high_water =
15000 DEFAULT_MB_HIGH_WATER_57765;
15001
15002 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15003 DEFAULT_MB_RDMA_LOW_WATER_5705;
15004 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15005 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
15006 tp->bufmgr_config.mbuf_high_water_jumbo =
15007 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000015008 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec172005-07-25 12:31:48 -070015009 tp->bufmgr_config.mbuf_read_dma_low_water =
15010 DEFAULT_MB_RDMA_LOW_WATER_5705;
15011 tp->bufmgr_config.mbuf_mac_rx_low_water =
15012 DEFAULT_MB_MACRX_LOW_WATER_5705;
15013 tp->bufmgr_config.mbuf_high_water =
15014 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070015015 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
15016 tp->bufmgr_config.mbuf_mac_rx_low_water =
15017 DEFAULT_MB_MACRX_LOW_WATER_5906;
15018 tp->bufmgr_config.mbuf_high_water =
15019 DEFAULT_MB_HIGH_WATER_5906;
15020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015021
Michael Chanfdfec172005-07-25 12:31:48 -070015022 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15023 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
15024 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15025 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
15026 tp->bufmgr_config.mbuf_high_water_jumbo =
15027 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
15028 } else {
15029 tp->bufmgr_config.mbuf_read_dma_low_water =
15030 DEFAULT_MB_RDMA_LOW_WATER;
15031 tp->bufmgr_config.mbuf_mac_rx_low_water =
15032 DEFAULT_MB_MACRX_LOW_WATER;
15033 tp->bufmgr_config.mbuf_high_water =
15034 DEFAULT_MB_HIGH_WATER;
15035
15036 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
15037 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
15038 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
15039 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
15040 tp->bufmgr_config.mbuf_high_water_jumbo =
15041 DEFAULT_MB_HIGH_WATER_JUMBO;
15042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015043
15044 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
15045 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
15046}
15047
15048static char * __devinit tg3_phy_string(struct tg3 *tp)
15049{
Matt Carlson79eb6902010-02-17 15:17:03 +000015050 switch (tp->phy_id & TG3_PHY_ID_MASK) {
15051 case TG3_PHY_ID_BCM5400: return "5400";
15052 case TG3_PHY_ID_BCM5401: return "5401";
15053 case TG3_PHY_ID_BCM5411: return "5411";
15054 case TG3_PHY_ID_BCM5701: return "5701";
15055 case TG3_PHY_ID_BCM5703: return "5703";
15056 case TG3_PHY_ID_BCM5704: return "5704";
15057 case TG3_PHY_ID_BCM5705: return "5705";
15058 case TG3_PHY_ID_BCM5750: return "5750";
15059 case TG3_PHY_ID_BCM5752: return "5752";
15060 case TG3_PHY_ID_BCM5714: return "5714";
15061 case TG3_PHY_ID_BCM5780: return "5780";
15062 case TG3_PHY_ID_BCM5755: return "5755";
15063 case TG3_PHY_ID_BCM5787: return "5787";
15064 case TG3_PHY_ID_BCM5784: return "5784";
15065 case TG3_PHY_ID_BCM5756: return "5722/5756";
15066 case TG3_PHY_ID_BCM5906: return "5906";
15067 case TG3_PHY_ID_BCM5761: return "5761";
15068 case TG3_PHY_ID_BCM5718C: return "5718C";
15069 case TG3_PHY_ID_BCM5718S: return "5718S";
15070 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000015071 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000015072 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000015073 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070015074 case 0: return "serdes";
15075 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070015076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015077}
15078
Michael Chanf9804dd2005-09-27 12:13:10 -070015079static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
15080{
Joe Perches63c3a662011-04-26 08:12:10 +000015081 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015082 strcpy(str, "PCI Express");
15083 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000015084 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070015085 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
15086
15087 strcpy(str, "PCIX:");
15088
15089 if ((clock_ctrl == 7) ||
15090 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15091 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15092 strcat(str, "133MHz");
15093 else if (clock_ctrl == 0)
15094 strcat(str, "33MHz");
15095 else if (clock_ctrl == 2)
15096 strcat(str, "50MHz");
15097 else if (clock_ctrl == 4)
15098 strcat(str, "66MHz");
15099 else if (clock_ctrl == 6)
15100 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015101 } else {
15102 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015103 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015104 strcat(str, "66MHz");
15105 else
15106 strcat(str, "33MHz");
15107 }
Joe Perches63c3a662011-04-26 08:12:10 +000015108 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015109 strcat(str, ":32-bit");
15110 else
15111 strcat(str, ":64-bit");
15112 return str;
15113}
15114
Michael Chan8c2dc7e2005-12-19 16:26:02 -080015115static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015116{
15117 struct pci_dev *peer;
15118 unsigned int func, devnr = tp->pdev->devfn & ~7;
15119
15120 for (func = 0; func < 8; func++) {
15121 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15122 if (peer && peer != tp->pdev)
15123 break;
15124 pci_dev_put(peer);
15125 }
Michael Chan16fe9d72005-12-13 21:09:54 -080015126 /* 5704 can be configured in single-port mode, set peer to
15127 * tp->pdev in that case.
15128 */
15129 if (!peer) {
15130 peer = tp->pdev;
15131 return peer;
15132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015133
15134 /*
15135 * We don't need to keep the refcount elevated; there's no way
15136 * to remove one half of this device without removing the other
15137 */
15138 pci_dev_put(peer);
15139
15140 return peer;
15141}
15142
David S. Miller15f98502005-05-18 22:49:26 -070015143static void __devinit tg3_init_coal(struct tg3 *tp)
15144{
15145 struct ethtool_coalesce *ec = &tp->coal;
15146
15147 memset(ec, 0, sizeof(*ec));
15148 ec->cmd = ETHTOOL_GCOALESCE;
15149 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15150 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15151 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15152 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15153 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15154 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15155 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15156 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15157 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15158
15159 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15160 HOSTCC_MODE_CLRTICK_TXBD)) {
15161 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15162 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15163 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15164 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15165 }
Michael Chand244c892005-07-05 14:42:33 -070015166
Joe Perches63c3a662011-04-26 08:12:10 +000015167 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015168 ec->rx_coalesce_usecs_irq = 0;
15169 ec->tx_coalesce_usecs_irq = 0;
15170 ec->stats_block_coalesce_usecs = 0;
15171 }
David S. Miller15f98502005-05-18 22:49:26 -070015172}
15173
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080015174static const struct net_device_ops tg3_netdev_ops = {
15175 .ndo_open = tg3_open,
15176 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080015177 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000015178 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080015179 .ndo_validate_addr = eth_validate_addr,
15180 .ndo_set_multicast_list = tg3_set_rx_mode,
15181 .ndo_set_mac_address = tg3_set_mac_addr,
15182 .ndo_do_ioctl = tg3_ioctl,
15183 .ndo_tx_timeout = tg3_tx_timeout,
15184 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000015185 .ndo_fix_features = tg3_fix_features,
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015186 .ndo_set_features = tg3_set_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080015187#ifdef CONFIG_NET_POLL_CONTROLLER
15188 .ndo_poll_controller = tg3_poll_controller,
15189#endif
15190};
15191
Linus Torvalds1da177e2005-04-16 15:20:36 -070015192static int __devinit tg3_init_one(struct pci_dev *pdev,
15193 const struct pci_device_id *ent)
15194{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015195 struct net_device *dev;
15196 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015197 int i, err, pm_cap;
15198 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015199 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015200 u64 dma_mask, persist_dma_mask;
Matt Carlson0da06062011-05-19 12:12:53 +000015201 u32 features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015202
Joe Perches05dbe002010-02-17 19:44:19 +000015203 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015204
15205 err = pci_enable_device(pdev);
15206 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015207 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015208 return err;
15209 }
15210
Linus Torvalds1da177e2005-04-16 15:20:36 -070015211 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15212 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015213 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015214 goto err_out_disable_pdev;
15215 }
15216
15217 pci_set_master(pdev);
15218
15219 /* Find power-management capability. */
15220 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15221 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015222 dev_err(&pdev->dev,
15223 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015224 err = -EIO;
15225 goto err_out_free_res;
15226 }
15227
Matt Carlson16821282011-07-13 09:27:28 +000015228 err = pci_set_power_state(pdev, PCI_D0);
15229 if (err) {
15230 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15231 goto err_out_free_res;
15232 }
15233
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015234 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015235 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000015236 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015237 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015238 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015239 }
15240
Linus Torvalds1da177e2005-04-16 15:20:36 -070015241 SET_NETDEV_DEV(dev, &pdev->dev);
15242
Linus Torvalds1da177e2005-04-16 15:20:36 -070015243 tp = netdev_priv(dev);
15244 tp->pdev = pdev;
15245 tp->dev = dev;
15246 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015247 tp->rx_mode = TG3_DEF_RX_MODE;
15248 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015249
Linus Torvalds1da177e2005-04-16 15:20:36 -070015250 if (tg3_debug > 0)
15251 tp->msg_enable = tg3_debug;
15252 else
15253 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15254
15255 /* The word/byte swap controls here control register access byte
15256 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15257 * setting below.
15258 */
15259 tp->misc_host_ctrl =
15260 MISC_HOST_CTRL_MASK_PCI_INT |
15261 MISC_HOST_CTRL_WORD_SWAP |
15262 MISC_HOST_CTRL_INDIR_ACCESS |
15263 MISC_HOST_CTRL_PCISTATE_RW;
15264
15265 /* The NONFRM (non-frame) byte/word swap controls take effect
15266 * on descriptor entries, anything which isn't packet data.
15267 *
15268 * The StrongARM chips on the board (one for tx, one for rx)
15269 * are running in big-endian mode.
15270 */
15271 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15272 GRC_MODE_WSWAP_NONFRM_DATA);
15273#ifdef __BIG_ENDIAN
15274 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15275#endif
15276 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015277 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015278 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015279
Matt Carlsond5fe4882008-11-21 17:20:32 -080015280 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015281 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015282 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015283 err = -ENOMEM;
15284 goto err_out_free_dev;
15285 }
15286
Matt Carlsonc9cab242011-07-13 09:27:27 +000015287 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15288 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
15289 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
15290 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
15291 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15292 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15293 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
15294 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
15295 tg3_flag_set(tp, ENABLE_APE);
15296 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
15297 if (!tp->aperegs) {
15298 dev_err(&pdev->dev,
15299 "Cannot map APE registers, aborting\n");
15300 err = -ENOMEM;
15301 goto err_out_iounmap;
15302 }
15303 }
15304
Linus Torvalds1da177e2005-04-16 15:20:36 -070015305 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15306 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015307
Linus Torvalds1da177e2005-04-16 15:20:36 -070015308 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015309 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015310 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015311 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015312
15313 err = tg3_get_invariants(tp);
15314 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015315 dev_err(&pdev->dev,
15316 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015317 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015318 }
15319
Michael Chan4a29cc22006-03-19 13:21:12 -080015320 /* The EPB bridge inside 5714, 5715, and 5780 and any
15321 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015322 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15323 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15324 * do DMA address check in tg3_start_xmit().
15325 */
Joe Perches63c3a662011-04-26 08:12:10 +000015326 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015327 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015328 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015329 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015330#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015331 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015332#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015333 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015334 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015335
15336 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015337 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015338 err = pci_set_dma_mask(pdev, dma_mask);
15339 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000015340 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080015341 err = pci_set_consistent_dma_mask(pdev,
15342 persist_dma_mask);
15343 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015344 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15345 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015346 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015347 }
15348 }
15349 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015350 if (err || dma_mask == DMA_BIT_MASK(32)) {
15351 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015352 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015353 dev_err(&pdev->dev,
15354 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015355 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015356 }
15357 }
15358
Michael Chanfdfec172005-07-25 12:31:48 -070015359 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015360
Matt Carlson0da06062011-05-19 12:12:53 +000015361 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
15362
15363 /* 5700 B0 chips do not support checksumming correctly due
15364 * to hardware bugs.
15365 */
15366 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
15367 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
15368
15369 if (tg3_flag(tp, 5755_PLUS))
15370 features |= NETIF_F_IPV6_CSUM;
15371 }
15372
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015373 /* TSO is on by default on chips that support hardware TSO.
15374 * Firmware TSO on older chips gives lower performance, so it
15375 * is off by default, but can be enabled using ethtool.
15376 */
Joe Perches63c3a662011-04-26 08:12:10 +000015377 if ((tg3_flag(tp, HW_TSO_1) ||
15378 tg3_flag(tp, HW_TSO_2) ||
15379 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000015380 (features & NETIF_F_IP_CSUM))
15381 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015382 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000015383 if (features & NETIF_F_IPV6_CSUM)
15384 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015385 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015386 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015387 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15388 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015389 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015390 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000015391 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015393
Matt Carlsond542fe22011-05-19 16:02:43 +000015394 dev->features |= features;
15395 dev->vlan_features |= features;
15396
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015397 /*
15398 * Add loopback capability only for a subset of devices that support
15399 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15400 * loopback for the remaining devices.
15401 */
15402 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15403 !tg3_flag(tp, CPMU_PRESENT))
15404 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000015405 features |= NETIF_F_LOOPBACK;
15406
Matt Carlson0da06062011-05-19 12:12:53 +000015407 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015408
Linus Torvalds1da177e2005-04-16 15:20:36 -070015409 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015410 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015411 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015412 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015413 tp->rx_pending = 63;
15414 }
15415
Linus Torvalds1da177e2005-04-16 15:20:36 -070015416 err = tg3_get_device_address(tp);
15417 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015418 dev_err(&pdev->dev,
15419 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015420 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015421 }
15422
Matt Carlsonc88864d2007-11-12 21:07:01 -080015423 /*
15424 * Reset chip in case UNDI or EFI driver did not shutdown
15425 * DMA self test will enable WDMAC and we'll see (spurious)
15426 * pending DMA on the PCI bus at that point.
15427 */
15428 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15429 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15430 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15431 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15432 }
15433
15434 err = tg3_test_dma(tp);
15435 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015436 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015437 goto err_out_apeunmap;
15438 }
15439
Matt Carlson78f90dc2009-11-13 13:03:42 +000015440 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15441 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15442 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015443 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015444 struct tg3_napi *tnapi = &tp->napi[i];
15445
15446 tnapi->tp = tp;
15447 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15448
15449 tnapi->int_mbox = intmbx;
15450 if (i < 4)
15451 intmbx += 0x8;
15452 else
15453 intmbx += 0x4;
15454
15455 tnapi->consmbox = rcvmbx;
15456 tnapi->prodmbox = sndmbx;
15457
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015458 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015459 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015460 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015461 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015462
Joe Perches63c3a662011-04-26 08:12:10 +000015463 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015464 break;
15465
15466 /*
15467 * If we support MSIX, we'll be using RSS. If we're using
15468 * RSS, the first vector only handles link interrupts and the
15469 * remaining vectors handle rx and tx interrupts. Reuse the
15470 * mailbox values for the next iteration. The values we setup
15471 * above are still useful for the single vectored mode.
15472 */
15473 if (!i)
15474 continue;
15475
15476 rcvmbx += 0x8;
15477
15478 if (sndmbx & 0x4)
15479 sndmbx -= 0x4;
15480 else
15481 sndmbx += 0xc;
15482 }
15483
Matt Carlsonc88864d2007-11-12 21:07:01 -080015484 tg3_init_coal(tp);
15485
Michael Chanc49a1562006-12-17 17:07:29 -080015486 pci_set_drvdata(pdev, dev);
15487
Matt Carlsoncd0d7222011-07-13 09:27:33 +000015488 if (tg3_flag(tp, 5717_PLUS)) {
15489 /* Resume a low-power mode */
15490 tg3_frob_aux_power(tp, false);
15491 }
15492
Linus Torvalds1da177e2005-04-16 15:20:36 -070015493 err = register_netdev(dev);
15494 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015495 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015496 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015497 }
15498
Joe Perches05dbe002010-02-17 19:44:19 +000015499 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15500 tp->board_part_number,
15501 tp->pci_chip_rev_id,
15502 tg3_bus_string(tp, str),
15503 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015504
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015505 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015506 struct phy_device *phydev;
15507 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015508 netdev_info(dev,
15509 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015510 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015511 } else {
15512 char *ethtype;
15513
15514 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15515 ethtype = "10/100Base-TX";
15516 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15517 ethtype = "1000Base-SX";
15518 else
15519 ethtype = "10/100/1000Base-T";
15520
Matt Carlson5129c3a2010-04-05 10:19:23 +000015521 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015522 "(WireSpeed[%d], EEE[%d])\n",
15523 tg3_phy_string(tp), ethtype,
15524 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15525 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015526 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015527
Joe Perches05dbe002010-02-17 19:44:19 +000015528 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015529 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015530 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015531 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015532 tg3_flag(tp, ENABLE_ASF) != 0,
15533 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015534 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15535 tp->dma_rwctrl,
15536 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15537 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015538
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015539 pci_save_state(pdev);
15540
Linus Torvalds1da177e2005-04-16 15:20:36 -070015541 return 0;
15542
Matt Carlson0d3031d2007-10-10 18:02:43 -070015543err_out_apeunmap:
15544 if (tp->aperegs) {
15545 iounmap(tp->aperegs);
15546 tp->aperegs = NULL;
15547 }
15548
Linus Torvalds1da177e2005-04-16 15:20:36 -070015549err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015550 if (tp->regs) {
15551 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015552 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015554
15555err_out_free_dev:
15556 free_netdev(dev);
15557
Matt Carlson16821282011-07-13 09:27:28 +000015558err_out_power_down:
15559 pci_set_power_state(pdev, PCI_D3hot);
15560
Linus Torvalds1da177e2005-04-16 15:20:36 -070015561err_out_free_res:
15562 pci_release_regions(pdev);
15563
15564err_out_disable_pdev:
15565 pci_disable_device(pdev);
15566 pci_set_drvdata(pdev, NULL);
15567 return err;
15568}
15569
15570static void __devexit tg3_remove_one(struct pci_dev *pdev)
15571{
15572 struct net_device *dev = pci_get_drvdata(pdev);
15573
15574 if (dev) {
15575 struct tg3 *tp = netdev_priv(dev);
15576
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015577 if (tp->fw)
15578 release_firmware(tp->fw);
15579
Tejun Heo23f333a2010-12-12 16:45:14 +010015580 cancel_work_sync(&tp->reset_task);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015581
Joe Perches63c3a662011-04-26 08:12:10 +000015582 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015583 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015584 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015585 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015586
Linus Torvalds1da177e2005-04-16 15:20:36 -070015587 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015588 if (tp->aperegs) {
15589 iounmap(tp->aperegs);
15590 tp->aperegs = NULL;
15591 }
Michael Chan68929142005-08-09 20:17:14 -070015592 if (tp->regs) {
15593 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015594 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015596 free_netdev(dev);
15597 pci_release_regions(pdev);
15598 pci_disable_device(pdev);
15599 pci_set_drvdata(pdev, NULL);
15600 }
15601}
15602
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015603#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015604static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015605{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015606 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015607 struct net_device *dev = pci_get_drvdata(pdev);
15608 struct tg3 *tp = netdev_priv(dev);
15609 int err;
15610
15611 if (!netif_running(dev))
15612 return 0;
15613
Tejun Heo23f333a2010-12-12 16:45:14 +010015614 flush_work_sync(&tp->reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015615 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015616 tg3_netif_stop(tp);
15617
15618 del_timer_sync(&tp->timer);
15619
David S. Millerf47c11e2005-06-24 20:18:35 -070015620 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015621 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015622 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015623
15624 netif_device_detach(dev);
15625
David S. Millerf47c11e2005-06-24 20:18:35 -070015626 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015627 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015628 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015629 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015630
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015631 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015632 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015633 int err2;
15634
David S. Millerf47c11e2005-06-24 20:18:35 -070015635 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015636
Joe Perches63c3a662011-04-26 08:12:10 +000015637 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015638 err2 = tg3_restart_hw(tp, 1);
15639 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015640 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015641
15642 tp->timer.expires = jiffies + tp->timer_offset;
15643 add_timer(&tp->timer);
15644
15645 netif_device_attach(dev);
15646 tg3_netif_start(tp);
15647
Michael Chanb9ec6c12006-07-25 16:37:27 -070015648out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015649 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015650
15651 if (!err2)
15652 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015653 }
15654
15655 return err;
15656}
15657
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015658static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015659{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015660 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015661 struct net_device *dev = pci_get_drvdata(pdev);
15662 struct tg3 *tp = netdev_priv(dev);
15663 int err;
15664
15665 if (!netif_running(dev))
15666 return 0;
15667
Linus Torvalds1da177e2005-04-16 15:20:36 -070015668 netif_device_attach(dev);
15669
David S. Millerf47c11e2005-06-24 20:18:35 -070015670 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015671
Joe Perches63c3a662011-04-26 08:12:10 +000015672 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015673 err = tg3_restart_hw(tp, 1);
15674 if (err)
15675 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015676
15677 tp->timer.expires = jiffies + tp->timer_offset;
15678 add_timer(&tp->timer);
15679
Linus Torvalds1da177e2005-04-16 15:20:36 -070015680 tg3_netif_start(tp);
15681
Michael Chanb9ec6c12006-07-25 16:37:27 -070015682out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015683 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015684
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015685 if (!err)
15686 tg3_phy_start(tp);
15687
Michael Chanb9ec6c12006-07-25 16:37:27 -070015688 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015689}
15690
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015691static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015692#define TG3_PM_OPS (&tg3_pm_ops)
15693
15694#else
15695
15696#define TG3_PM_OPS NULL
15697
15698#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015699
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015700/**
15701 * tg3_io_error_detected - called when PCI error is detected
15702 * @pdev: Pointer to PCI device
15703 * @state: The current pci connection state
15704 *
15705 * This function is called after a PCI bus error affecting
15706 * this device has been detected.
15707 */
15708static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15709 pci_channel_state_t state)
15710{
15711 struct net_device *netdev = pci_get_drvdata(pdev);
15712 struct tg3 *tp = netdev_priv(netdev);
15713 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15714
15715 netdev_info(netdev, "PCI I/O error detected\n");
15716
15717 rtnl_lock();
15718
15719 if (!netif_running(netdev))
15720 goto done;
15721
15722 tg3_phy_stop(tp);
15723
15724 tg3_netif_stop(tp);
15725
15726 del_timer_sync(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +000015727 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015728
15729 /* Want to make sure that the reset task doesn't run */
15730 cancel_work_sync(&tp->reset_task);
Joe Perches63c3a662011-04-26 08:12:10 +000015731 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
15732 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015733
15734 netif_device_detach(netdev);
15735
15736 /* Clean up software state, even if MMIO is blocked */
15737 tg3_full_lock(tp, 0);
15738 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15739 tg3_full_unlock(tp);
15740
15741done:
15742 if (state == pci_channel_io_perm_failure)
15743 err = PCI_ERS_RESULT_DISCONNECT;
15744 else
15745 pci_disable_device(pdev);
15746
15747 rtnl_unlock();
15748
15749 return err;
15750}
15751
15752/**
15753 * tg3_io_slot_reset - called after the pci bus has been reset.
15754 * @pdev: Pointer to PCI device
15755 *
15756 * Restart the card from scratch, as if from a cold-boot.
15757 * At this point, the card has exprienced a hard reset,
15758 * followed by fixups by BIOS, and has its config space
15759 * set up identically to what it was at cold boot.
15760 */
15761static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15762{
15763 struct net_device *netdev = pci_get_drvdata(pdev);
15764 struct tg3 *tp = netdev_priv(netdev);
15765 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15766 int err;
15767
15768 rtnl_lock();
15769
15770 if (pci_enable_device(pdev)) {
15771 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
15772 goto done;
15773 }
15774
15775 pci_set_master(pdev);
15776 pci_restore_state(pdev);
15777 pci_save_state(pdev);
15778
15779 if (!netif_running(netdev)) {
15780 rc = PCI_ERS_RESULT_RECOVERED;
15781 goto done;
15782 }
15783
15784 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000015785 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015786 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015787
15788 rc = PCI_ERS_RESULT_RECOVERED;
15789
15790done:
15791 rtnl_unlock();
15792
15793 return rc;
15794}
15795
15796/**
15797 * tg3_io_resume - called when traffic can start flowing again.
15798 * @pdev: Pointer to PCI device
15799 *
15800 * This callback is called when the error recovery driver tells
15801 * us that its OK to resume normal operation.
15802 */
15803static void tg3_io_resume(struct pci_dev *pdev)
15804{
15805 struct net_device *netdev = pci_get_drvdata(pdev);
15806 struct tg3 *tp = netdev_priv(netdev);
15807 int err;
15808
15809 rtnl_lock();
15810
15811 if (!netif_running(netdev))
15812 goto done;
15813
15814 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000015815 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015816 err = tg3_restart_hw(tp, 1);
15817 tg3_full_unlock(tp);
15818 if (err) {
15819 netdev_err(netdev, "Cannot restart hardware after reset.\n");
15820 goto done;
15821 }
15822
15823 netif_device_attach(netdev);
15824
15825 tp->timer.expires = jiffies + tp->timer_offset;
15826 add_timer(&tp->timer);
15827
15828 tg3_netif_start(tp);
15829
15830 tg3_phy_start(tp);
15831
15832done:
15833 rtnl_unlock();
15834}
15835
15836static struct pci_error_handlers tg3_err_handler = {
15837 .error_detected = tg3_io_error_detected,
15838 .slot_reset = tg3_io_slot_reset,
15839 .resume = tg3_io_resume
15840};
15841
Linus Torvalds1da177e2005-04-16 15:20:36 -070015842static struct pci_driver tg3_driver = {
15843 .name = DRV_MODULE_NAME,
15844 .id_table = tg3_pci_tbl,
15845 .probe = tg3_init_one,
15846 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015847 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015848 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015849};
15850
15851static int __init tg3_init(void)
15852{
Jeff Garzik29917622006-08-19 17:48:59 -040015853 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015854}
15855
15856static void __exit tg3_cleanup(void)
15857{
15858 pci_unregister_driver(&tg3_driver);
15859}
15860
15861module_init(tg3_init);
15862module_exit(tg3_cleanup);