blob: 5bf7671dc2b2e02d7309cc3d509321391b413088 [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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Matt Carlsonad829262008-11-21 17:16:16 -0800194#define TG3_RAW_IP_ALIGN 2
195
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000196#define TG3_FW_UPDATE_TIMEOUT_SEC 5
197
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800198#define FIRMWARE_TG3 "tigon/tg3.bin"
199#define FIRMWARE_TG3TSO "tigon/tg3_tso.bin"
200#define FIRMWARE_TG3TSO5 "tigon/tg3_tso5.bin"
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static char version[] __devinitdata =
Joe Perches05dbe002010-02-17 19:44:19 +0000203 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205MODULE_AUTHOR("David S. Miller (davem@redhat.com) and Jeff Garzik (jgarzik@pobox.com)");
206MODULE_DESCRIPTION("Broadcom Tigon3 ethernet driver");
207MODULE_LICENSE("GPL");
208MODULE_VERSION(DRV_MODULE_VERSION);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -0800209MODULE_FIRMWARE(FIRMWARE_TG3);
210MODULE_FIRMWARE(FIRMWARE_TG3TSO);
211MODULE_FIRMWARE(FIRMWARE_TG3TSO5);
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213static int tg3_debug = -1; /* -1 == use TG3_DEF_MSG_ENABLE as value */
214module_param(tg3_debug, int, 0);
215MODULE_PARM_DESC(tg3_debug, "Tigon3 bitmapped debugging message enable value");
216
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000217static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = {
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700218 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5700)},
219 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5701)},
220 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702)},
221 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703)},
222 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704)},
223 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702FE)},
224 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705)},
225 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705_2)},
226 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M)},
227 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705M_2)},
228 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702X)},
229 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703X)},
230 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S)},
231 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5702A3)},
232 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5703A3)},
233 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5782)},
234 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5788)},
235 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5789)},
236 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901)},
237 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5901_2)},
238 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5704S_2)},
239 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5705F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700240 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5721)},
Michael Chan126a3362006-09-27 16:03:07 -0700241 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5722)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700242 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700243 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751M)},
244 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5751F)},
245 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752)},
246 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5752M)},
247 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753)},
248 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753M)},
249 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5753F)},
250 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754)},
251 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5754M)},
252 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755)},
253 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5755M)},
Michael Chan126a3362006-09-27 16:03:07 -0700254 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5756)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700255 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)},
256 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)},
257 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)},
Michael Chan676917d2006-12-07 00:20:22 -0800258 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700259 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)},
260 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)},
261 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)},
262 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715S)},
263 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780)},
264 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5780S)},
265 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5781)},
Michael Chanb5d37722006-09-27 16:06:21 -0700266 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906)},
267 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5906M)},
Matt Carlsond30cdd22007-10-07 23:28:35 -0700268 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5784)},
269 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5764)},
Matt Carlson6c7af272007-10-21 16:12:02 -0700270 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5723)},
Matt Carlson9936bcf2007-10-10 18:03:07 -0700271 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761)},
272 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5761E)},
Matt Carlsonc88e6682008-11-03 16:49:18 -0800273 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761S)},
274 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5761SE)},
Matt Carlson2befdce2009-08-28 12:28:45 +0000275 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_G)},
276 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5785_F)},
Matt Carlson321d32a2008-11-21 17:22:19 -0800277 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57780)},
278 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57760)},
279 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57790)},
Matt Carlson5e7ccf22009-08-25 10:08:42 +0000280 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57788)},
Matt Carlson5001e2f2009-11-13 13:03:51 +0000281 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5717)},
282 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5718)},
Matt Carlsonb0f75222010-01-20 16:58:11 +0000283 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57781)},
284 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57785)},
285 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57761)},
286 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57765)},
287 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57791)},
288 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)},
Matt Carlson302b5002010-06-05 17:24:38 +0000289 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)},
Matt Carlsonba1f3c72011-04-05 14:22:50 +0000290 {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)},
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700291 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)},
292 {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)},
293 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},
294 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1001)},
295 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1003)},
296 {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC9100)},
297 {PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_TIGON3)},
Meelis Roos1dcb14d2011-05-25 05:43:47 +0000298 {PCI_DEVICE(0x10cf, 0x11a2)}, /* Fujitsu 1000base-SX with BCM5703SKHB */
Henrik Kretzschmar13185212006-08-22 00:28:33 -0700299 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300};
301
302MODULE_DEVICE_TABLE(pci, tg3_pci_tbl);
303
Andreas Mohr50da8592006-08-14 23:54:30 -0700304static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000306} ethtool_stats_keys[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 { "rx_octets" },
308 { "rx_fragments" },
309 { "rx_ucast_packets" },
310 { "rx_mcast_packets" },
311 { "rx_bcast_packets" },
312 { "rx_fcs_errors" },
313 { "rx_align_errors" },
314 { "rx_xon_pause_rcvd" },
315 { "rx_xoff_pause_rcvd" },
316 { "rx_mac_ctrl_rcvd" },
317 { "rx_xoff_entered" },
318 { "rx_frame_too_long_errors" },
319 { "rx_jabbers" },
320 { "rx_undersize_packets" },
321 { "rx_in_length_errors" },
322 { "rx_out_length_errors" },
323 { "rx_64_or_less_octet_packets" },
324 { "rx_65_to_127_octet_packets" },
325 { "rx_128_to_255_octet_packets" },
326 { "rx_256_to_511_octet_packets" },
327 { "rx_512_to_1023_octet_packets" },
328 { "rx_1024_to_1522_octet_packets" },
329 { "rx_1523_to_2047_octet_packets" },
330 { "rx_2048_to_4095_octet_packets" },
331 { "rx_4096_to_8191_octet_packets" },
332 { "rx_8192_to_9022_octet_packets" },
333
334 { "tx_octets" },
335 { "tx_collisions" },
336
337 { "tx_xon_sent" },
338 { "tx_xoff_sent" },
339 { "tx_flow_control" },
340 { "tx_mac_errors" },
341 { "tx_single_collisions" },
342 { "tx_mult_collisions" },
343 { "tx_deferred" },
344 { "tx_excessive_collisions" },
345 { "tx_late_collisions" },
346 { "tx_collide_2times" },
347 { "tx_collide_3times" },
348 { "tx_collide_4times" },
349 { "tx_collide_5times" },
350 { "tx_collide_6times" },
351 { "tx_collide_7times" },
352 { "tx_collide_8times" },
353 { "tx_collide_9times" },
354 { "tx_collide_10times" },
355 { "tx_collide_11times" },
356 { "tx_collide_12times" },
357 { "tx_collide_13times" },
358 { "tx_collide_14times" },
359 { "tx_collide_15times" },
360 { "tx_ucast_packets" },
361 { "tx_mcast_packets" },
362 { "tx_bcast_packets" },
363 { "tx_carrier_sense_errors" },
364 { "tx_discards" },
365 { "tx_errors" },
366
367 { "dma_writeq_full" },
368 { "dma_write_prioq_full" },
369 { "rxbds_empty" },
370 { "rx_discards" },
371 { "rx_errors" },
372 { "rx_threshold_hit" },
373
374 { "dma_readq_full" },
375 { "dma_read_prioq_full" },
376 { "tx_comp_queue_full" },
377
378 { "ring_set_send_prod_index" },
379 { "ring_status_update" },
380 { "nic_irqs" },
381 { "nic_avoided_irqs" },
Matt Carlson4452d092011-05-19 12:12:51 +0000382 { "nic_tx_threshold_hit" },
383
384 { "mbuf_lwm_thresh_hit" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
Matt Carlson48fa55a2011-04-13 11:05:06 +0000387#define TG3_NUM_STATS ARRAY_SIZE(ethtool_stats_keys)
388
389
Andreas Mohr50da8592006-08-14 23:54:30 -0700390static const struct {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700391 const char string[ETH_GSTRING_LEN];
Matt Carlson48fa55a2011-04-13 11:05:06 +0000392} ethtool_test_keys[] = {
Michael Chan4cafd3f2005-05-29 14:56:34 -0700393 { "nvram test (online) " },
394 { "link test (online) " },
395 { "register test (offline)" },
396 { "memory test (offline)" },
397 { "loopback test (offline)" },
398 { "interrupt test (offline)" },
399};
400
Matt Carlson48fa55a2011-04-13 11:05:06 +0000401#define TG3_NUM_TEST ARRAY_SIZE(ethtool_test_keys)
402
403
Michael Chanb401e9e2005-12-19 16:27:04 -0800404static void tg3_write32(struct tg3 *tp, u32 off, u32 val)
405{
406 writel(val, tp->regs + off);
407}
408
409static u32 tg3_read32(struct tg3 *tp, u32 off)
410{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000411 return readl(tp->regs + off);
Michael Chanb401e9e2005-12-19 16:27:04 -0800412}
413
Matt Carlson0d3031d2007-10-10 18:02:43 -0700414static void tg3_ape_write32(struct tg3 *tp, u32 off, u32 val)
415{
416 writel(val, tp->aperegs + off);
417}
418
419static u32 tg3_ape_read32(struct tg3 *tp, u32 off)
420{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000421 return readl(tp->aperegs + off);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static void tg3_write_indirect_reg32(struct tg3 *tp, u32 off, u32 val)
425{
Michael Chan68929142005-08-09 20:17:14 -0700426 unsigned long flags;
427
428 spin_lock_irqsave(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700429 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
430 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
Michael Chan68929142005-08-09 20:17:14 -0700431 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Michael Chan1ee582d2005-08-09 20:16:46 -0700432}
433
434static void tg3_write_flush_reg32(struct tg3 *tp, u32 off, u32 val)
435{
436 writel(val, tp->regs + off);
437 readl(tp->regs + off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Michael Chan68929142005-08-09 20:17:14 -0700440static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off)
441{
442 unsigned long flags;
443 u32 val;
444
445 spin_lock_irqsave(&tp->indirect_lock, flags);
446 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off);
447 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
448 spin_unlock_irqrestore(&tp->indirect_lock, flags);
449 return val;
450}
451
452static void tg3_write_indirect_mbox(struct tg3 *tp, u32 off, u32 val)
453{
454 unsigned long flags;
455
456 if (off == (MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW)) {
457 pci_write_config_dword(tp->pdev, TG3PCI_RCV_RET_RING_CON_IDX +
458 TG3_64BIT_REG_LOW, val);
459 return;
460 }
Matt Carlson66711e62009-11-13 13:03:49 +0000461 if (off == TG3_RX_STD_PROD_IDX_REG) {
Michael Chan68929142005-08-09 20:17:14 -0700462 pci_write_config_dword(tp->pdev, TG3PCI_STD_RING_PROD_IDX +
463 TG3_64BIT_REG_LOW, val);
464 return;
465 }
466
467 spin_lock_irqsave(&tp->indirect_lock, flags);
468 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
469 pci_write_config_dword(tp->pdev, TG3PCI_REG_DATA, val);
470 spin_unlock_irqrestore(&tp->indirect_lock, flags);
471
472 /* In indirect mode when disabling interrupts, we also need
473 * to clear the interrupt bit in the GRC local ctrl register.
474 */
475 if ((off == (MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW)) &&
476 (val == 0x1)) {
477 pci_write_config_dword(tp->pdev, TG3PCI_MISC_LOCAL_CTRL,
478 tp->grc_local_ctrl|GRC_LCLCTRL_CLEARINT);
479 }
480}
481
482static u32 tg3_read_indirect_mbox(struct tg3 *tp, u32 off)
483{
484 unsigned long flags;
485 u32 val;
486
487 spin_lock_irqsave(&tp->indirect_lock, flags);
488 pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off + 0x5600);
489 pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val);
490 spin_unlock_irqrestore(&tp->indirect_lock, flags);
491 return val;
492}
493
Michael Chanb401e9e2005-12-19 16:27:04 -0800494/* usec_wait specifies the wait time in usec when writing to certain registers
495 * where it is unsafe to read back the register without some delay.
496 * GRC_LOCAL_CTRL is one example if the GPIOs are toggled to switch power.
497 * TG3PCI_CLOCK_CTRL is another example if the clock frequencies are changed.
498 */
499static void _tw32_flush(struct tg3 *tp, u32 off, u32 val, u32 usec_wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Joe Perches63c3a662011-04-26 08:12:10 +0000501 if (tg3_flag(tp, PCIX_TARGET_HWBUG) || tg3_flag(tp, ICH_WORKAROUND))
Michael Chanb401e9e2005-12-19 16:27:04 -0800502 /* Non-posted methods */
503 tp->write32(tp, off, val);
504 else {
505 /* Posted method */
506 tg3_write32(tp, off, val);
507 if (usec_wait)
508 udelay(usec_wait);
509 tp->read32(tp, off);
510 }
511 /* Wait again after the read for the posted method to guarantee that
512 * the wait time is met.
513 */
514 if (usec_wait)
515 udelay(usec_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Michael Chan09ee9292005-08-09 20:17:00 -0700518static inline void tw32_mailbox_flush(struct tg3 *tp, u32 off, u32 val)
519{
520 tp->write32_mbox(tp, off, val);
Joe Perches63c3a662011-04-26 08:12:10 +0000521 if (!tg3_flag(tp, MBOX_WRITE_REORDER) && !tg3_flag(tp, ICH_WORKAROUND))
Michael Chan68929142005-08-09 20:17:14 -0700522 tp->read32_mbox(tp, off);
Michael Chan09ee9292005-08-09 20:17:00 -0700523}
524
Michael Chan20094932005-08-09 20:16:32 -0700525static void tg3_write32_tx_mbox(struct tg3 *tp, u32 off, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 void __iomem *mbox = tp->regs + off;
528 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000529 if (tg3_flag(tp, TXD_MBOX_HWBUG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 writel(val, mbox);
Joe Perches63c3a662011-04-26 08:12:10 +0000531 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 readl(mbox);
533}
534
Michael Chanb5d37722006-09-27 16:06:21 -0700535static u32 tg3_read32_mbox_5906(struct tg3 *tp, u32 off)
536{
Matt Carlsonde6f31e2010-04-12 06:58:30 +0000537 return readl(tp->regs + off + GRCMBOX_BASE);
Michael Chanb5d37722006-09-27 16:06:21 -0700538}
539
540static void tg3_write32_mbox_5906(struct tg3 *tp, u32 off, u32 val)
541{
542 writel(val, tp->regs + off + GRCMBOX_BASE);
543}
544
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000545#define tw32_mailbox(reg, val) tp->write32_mbox(tp, reg, val)
Michael Chan09ee9292005-08-09 20:17:00 -0700546#define tw32_mailbox_f(reg, val) tw32_mailbox_flush(tp, (reg), (val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000547#define tw32_rx_mbox(reg, val) tp->write32_rx_mbox(tp, reg, val)
548#define tw32_tx_mbox(reg, val) tp->write32_tx_mbox(tp, reg, val)
549#define tr32_mailbox(reg) tp->read32_mbox(tp, reg)
Michael Chan20094932005-08-09 20:16:32 -0700550
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000551#define tw32(reg, val) tp->write32(tp, reg, val)
552#define tw32_f(reg, val) _tw32_flush(tp, (reg), (val), 0)
553#define tw32_wait_f(reg, val, us) _tw32_flush(tp, (reg), (val), (us))
554#define tr32(reg) tp->read32(tp, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val)
557{
Michael Chan68929142005-08-09 20:17:14 -0700558 unsigned long flags;
559
Matt Carlson6ff6f812011-05-19 12:12:54 +0000560 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700561 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC))
562 return;
563
Michael Chan68929142005-08-09 20:17:14 -0700564 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000565 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700566 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
567 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Michael Chanbbadf502006-04-06 21:46:34 -0700569 /* Always leave this as zero. */
570 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
571 } else {
572 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
573 tw32_f(TG3PCI_MEM_WIN_DATA, val);
574
575 /* Always leave this as zero. */
576 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
577 }
Michael Chan68929142005-08-09 20:17:14 -0700578 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
582{
Michael Chan68929142005-08-09 20:17:14 -0700583 unsigned long flags;
584
Matt Carlson6ff6f812011-05-19 12:12:54 +0000585 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 &&
Michael Chanb5d37722006-09-27 16:06:21 -0700586 (off >= NIC_SRAM_STATS_BLK) && (off < NIC_SRAM_TX_BUFFER_DESC)) {
587 *val = 0;
588 return;
589 }
590
Michael Chan68929142005-08-09 20:17:14 -0700591 spin_lock_irqsave(&tp->indirect_lock, flags);
Joe Perches63c3a662011-04-26 08:12:10 +0000592 if (tg3_flag(tp, SRAM_USE_CONFIG)) {
Michael Chanbbadf502006-04-06 21:46:34 -0700593 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off);
594 pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Michael Chanbbadf502006-04-06 21:46:34 -0700596 /* Always leave this as zero. */
597 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
598 } else {
599 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off);
600 *val = tr32(TG3PCI_MEM_WIN_DATA);
601
602 /* Always leave this as zero. */
603 tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0);
604 }
Michael Chan68929142005-08-09 20:17:14 -0700605 spin_unlock_irqrestore(&tp->indirect_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Matt Carlson0d3031d2007-10-10 18:02:43 -0700608static void tg3_ape_lock_init(struct tg3 *tp)
609{
610 int i;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000611 u32 regbase, bit;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000612
613 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
614 regbase = TG3_APE_LOCK_GRANT;
615 else
616 regbase = TG3_APE_PER_LOCK_GRANT;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700617
618 /* Make sure the driver hasn't any stale locks. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000619 for (i = 0; i < 8; i++) {
620 if (i == TG3_APE_LOCK_GPIO)
621 continue;
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000622 tg3_ape_write32(tp, regbase + 4 * i, APE_LOCK_GRANT_DRIVER);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000623 }
624
625 /* Clear the correct bit of the GPIO lock too. */
626 if (!tp->pci_fn)
627 bit = APE_LOCK_GRANT_DRIVER;
628 else
629 bit = 1 << tp->pci_fn;
630
631 tg3_ape_write32(tp, regbase + 4 * TG3_APE_LOCK_GPIO, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700632}
633
634static int tg3_ape_lock(struct tg3 *tp, int locknum)
635{
636 int i, off;
637 int ret = 0;
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000638 u32 status, req, gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700639
Joe Perches63c3a662011-04-26 08:12:10 +0000640 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700641 return 0;
642
643 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000644 case TG3_APE_LOCK_GPIO:
645 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
646 return 0;
Matt Carlson33f401a2010-04-05 10:19:27 +0000647 case TG3_APE_LOCK_GRC:
648 case TG3_APE_LOCK_MEM:
649 break;
650 default:
651 return -EINVAL;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700652 }
653
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000654 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
655 req = TG3_APE_LOCK_REQ;
656 gnt = TG3_APE_LOCK_GRANT;
657 } else {
658 req = TG3_APE_PER_LOCK_REQ;
659 gnt = TG3_APE_PER_LOCK_GRANT;
660 }
661
Matt Carlson0d3031d2007-10-10 18:02:43 -0700662 off = 4 * locknum;
663
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000664 if (locknum != TG3_APE_LOCK_GPIO || !tp->pci_fn)
665 bit = APE_LOCK_REQ_DRIVER;
666 else
667 bit = 1 << tp->pci_fn;
668
669 tg3_ape_write32(tp, req + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700670
671 /* Wait for up to 1 millisecond to acquire lock. */
672 for (i = 0; i < 100; i++) {
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000673 status = tg3_ape_read32(tp, gnt + off);
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000674 if (status == bit)
Matt Carlson0d3031d2007-10-10 18:02:43 -0700675 break;
676 udelay(10);
677 }
678
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000679 if (status != bit) {
Matt Carlson0d3031d2007-10-10 18:02:43 -0700680 /* Revoke the lock request. */
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000681 tg3_ape_write32(tp, gnt + off, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700682 ret = -EBUSY;
683 }
684
685 return ret;
686}
687
688static void tg3_ape_unlock(struct tg3 *tp, int locknum)
689{
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000690 u32 gnt, bit;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700691
Joe Perches63c3a662011-04-26 08:12:10 +0000692 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -0700693 return;
694
695 switch (locknum) {
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000696 case TG3_APE_LOCK_GPIO:
697 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
698 return;
Matt Carlson33f401a2010-04-05 10:19:27 +0000699 case TG3_APE_LOCK_GRC:
700 case TG3_APE_LOCK_MEM:
701 break;
702 default:
703 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -0700704 }
705
Matt Carlsonf92d9dc12010-06-05 17:24:30 +0000706 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
707 gnt = TG3_APE_LOCK_GRANT;
708 else
709 gnt = TG3_APE_PER_LOCK_GRANT;
710
Matt Carlson6f5c8f832011-07-13 09:27:31 +0000711 if (locknum != TG3_APE_LOCK_GPIO || !tp->pci_fn)
712 bit = APE_LOCK_GRANT_DRIVER;
713 else
714 bit = 1 << tp->pci_fn;
715
716 tg3_ape_write32(tp, gnt + 4 * locknum, bit);
Matt Carlson0d3031d2007-10-10 18:02:43 -0700717}
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719static void tg3_disable_ints(struct tg3 *tp)
720{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000721 int i;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 tw32(TG3PCI_MISC_HOST_CTRL,
724 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000725 for (i = 0; i < tp->irq_max; i++)
726 tw32_mailbox_f(tp->napi[i].int_mbox, 0x00000001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729static void tg3_enable_ints(struct tg3 *tp)
730{
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000731 int i;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000732
Michael Chanbbe832c2005-06-24 20:20:04 -0700733 tp->irq_sync = 0;
734 wmb();
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 tw32(TG3PCI_MISC_HOST_CTRL,
737 (tp->misc_host_ctrl & ~MISC_HOST_CTRL_MASK_PCI_INT));
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000738
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000739 tp->coal_now = tp->coalesce_mode | HOSTCC_MODE_ENABLE;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000740 for (i = 0; i < tp->irq_cnt; i++) {
741 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsonc6cdf432010-04-05 10:19:26 +0000742
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000743 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
Joe Perches63c3a662011-04-26 08:12:10 +0000744 if (tg3_flag(tp, 1SHOT_MSI))
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000745 tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
746
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000747 tp->coal_now |= tnapi->coal_now;
Matt Carlson89aeb3b2009-09-01 13:08:58 +0000748 }
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000749
750 /* Force an initial interrupt */
Joe Perches63c3a662011-04-26 08:12:10 +0000751 if (!tg3_flag(tp, TAGGED_STATUS) &&
Matt Carlsonf19af9c2009-09-01 12:47:49 +0000752 (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
753 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
754 else
Matt Carlsonf89f38b2010-02-12 14:47:07 +0000755 tw32(HOSTCC_MODE, tp->coal_now);
756
757 tp->coal_now &= ~(tp->napi[0].coal_now | tp->napi[1].coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Matt Carlson17375d22009-08-28 14:02:18 +0000760static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)
Michael Chan04237dd2005-04-25 15:17:17 -0700761{
Matt Carlson17375d22009-08-28 14:02:18 +0000762 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +0000763 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan04237dd2005-04-25 15:17:17 -0700764 unsigned int work_exists = 0;
765
766 /* check for phy events */
Joe Perches63c3a662011-04-26 08:12:10 +0000767 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Michael Chan04237dd2005-04-25 15:17:17 -0700768 if (sblk->status & SD_STATUS_LINK_CHG)
769 work_exists = 1;
770 }
771 /* check for RX/TX work to do */
Matt Carlsonf3f3f272009-08-28 14:03:21 +0000772 if (sblk->idx[0].tx_consumer != tnapi->tx_cons ||
Matt Carlson8d9d7cf2009-09-01 13:19:05 +0000773 *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Michael Chan04237dd2005-04-25 15:17:17 -0700774 work_exists = 1;
775
776 return work_exists;
777}
778
Matt Carlson17375d22009-08-28 14:02:18 +0000779/* tg3_int_reenable
Michael Chan04237dd2005-04-25 15:17:17 -0700780 * similar to tg3_enable_ints, but it accurately determines whether there
781 * is new work pending and can return without flushing the PIO write
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400782 * which reenables interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
Matt Carlson17375d22009-08-28 14:02:18 +0000784static void tg3_int_reenable(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Matt Carlson17375d22009-08-28 14:02:18 +0000786 struct tg3 *tp = tnapi->tp;
787
Matt Carlson898a56f2009-08-28 14:02:40 +0000788 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 mmiowb();
790
David S. Millerfac9b832005-05-18 22:46:34 -0700791 /* When doing tagged status, this work check is unnecessary.
792 * The last_tag we write above tells the chip which piece of
793 * work we've completed.
794 */
Joe Perches63c3a662011-04-26 08:12:10 +0000795 if (!tg3_flag(tp, TAGGED_STATUS) && tg3_has_work(tnapi))
Michael Chan04237dd2005-04-25 15:17:17 -0700796 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +0000797 HOSTCC_MODE_ENABLE | tnapi->coal_now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800static void tg3_switch_clocks(struct tg3 *tp)
801{
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000802 u32 clock_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 u32 orig_clock_ctrl;
804
Joe Perches63c3a662011-04-26 08:12:10 +0000805 if (tg3_flag(tp, CPMU_PRESENT) || tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -0700806 return;
807
Matt Carlsonf6eb9b12009-09-01 13:19:53 +0000808 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL);
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 orig_clock_ctrl = clock_ctrl;
811 clock_ctrl &= (CLOCK_CTRL_FORCE_CLKRUN |
812 CLOCK_CTRL_CLKRUN_OENABLE |
813 0x1f);
814 tp->pci_clock_ctrl = clock_ctrl;
815
Joe Perches63c3a662011-04-26 08:12:10 +0000816 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (orig_clock_ctrl & CLOCK_CTRL_625_CORE) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800818 tw32_wait_f(TG3PCI_CLOCK_CTRL,
819 clock_ctrl | CLOCK_CTRL_625_CORE, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821 } else if ((orig_clock_ctrl & CLOCK_CTRL_44MHZ_CORE) != 0) {
Michael Chanb401e9e2005-12-19 16:27:04 -0800822 tw32_wait_f(TG3PCI_CLOCK_CTRL,
823 clock_ctrl |
824 (CLOCK_CTRL_44MHZ_CORE | CLOCK_CTRL_ALTCLK),
825 40);
826 tw32_wait_f(TG3PCI_CLOCK_CTRL,
827 clock_ctrl | (CLOCK_CTRL_ALTCLK),
828 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Michael Chanb401e9e2005-12-19 16:27:04 -0800830 tw32_wait_f(TG3PCI_CLOCK_CTRL, clock_ctrl, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
833#define PHY_BUSY_LOOPS 5000
834
835static int tg3_readphy(struct tg3 *tp, int reg, u32 *val)
836{
837 u32 frame_val;
838 unsigned int loops;
839 int ret;
840
841 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
842 tw32_f(MAC_MI_MODE,
843 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
844 udelay(80);
845 }
846
847 *val = 0x0;
848
Matt Carlson882e9792009-09-01 13:21:36 +0000849 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 MI_COM_PHY_ADDR_MASK);
851 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
852 MI_COM_REG_ADDR_MASK);
853 frame_val |= (MI_COM_CMD_READ | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 tw32_f(MAC_MI_COM, frame_val);
856
857 loops = PHY_BUSY_LOOPS;
858 while (loops != 0) {
859 udelay(10);
860 frame_val = tr32(MAC_MI_COM);
861
862 if ((frame_val & MI_COM_BUSY) == 0) {
863 udelay(5);
864 frame_val = tr32(MAC_MI_COM);
865 break;
866 }
867 loops -= 1;
868 }
869
870 ret = -EBUSY;
871 if (loops != 0) {
872 *val = frame_val & MI_COM_DATA_MASK;
873 ret = 0;
874 }
875
876 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
877 tw32_f(MAC_MI_MODE, tp->mi_mode);
878 udelay(80);
879 }
880
881 return ret;
882}
883
884static int tg3_writephy(struct tg3 *tp, int reg, u32 val)
885{
886 u32 frame_val;
887 unsigned int loops;
888 int ret;
889
Matt Carlsonf07e9af2010-08-02 11:26:07 +0000890 if ((tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson221c5632011-06-13 13:39:01 +0000891 (reg == MII_CTRL1000 || reg == MII_TG3_AUX_CTRL))
Michael Chanb5d37722006-09-27 16:06:21 -0700892 return 0;
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
895 tw32_f(MAC_MI_MODE,
896 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
897 udelay(80);
898 }
899
Matt Carlson882e9792009-09-01 13:21:36 +0000900 frame_val = ((tp->phy_addr << MI_COM_PHY_ADDR_SHIFT) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 MI_COM_PHY_ADDR_MASK);
902 frame_val |= ((reg << MI_COM_REG_ADDR_SHIFT) &
903 MI_COM_REG_ADDR_MASK);
904 frame_val |= (val & MI_COM_DATA_MASK);
905 frame_val |= (MI_COM_CMD_WRITE | MI_COM_START);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 tw32_f(MAC_MI_COM, frame_val);
908
909 loops = PHY_BUSY_LOOPS;
910 while (loops != 0) {
911 udelay(10);
912 frame_val = tr32(MAC_MI_COM);
913 if ((frame_val & MI_COM_BUSY) == 0) {
914 udelay(5);
915 frame_val = tr32(MAC_MI_COM);
916 break;
917 }
918 loops -= 1;
919 }
920
921 ret = -EBUSY;
922 if (loops != 0)
923 ret = 0;
924
925 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
926 tw32_f(MAC_MI_MODE, tp->mi_mode);
927 udelay(80);
928 }
929
930 return ret;
931}
932
Matt Carlsonb0988c12011-04-20 07:57:39 +0000933static int tg3_phy_cl45_write(struct tg3 *tp, u32 devad, u32 addr, u32 val)
934{
935 int err;
936
937 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
938 if (err)
939 goto done;
940
941 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
942 if (err)
943 goto done;
944
945 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
946 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
947 if (err)
948 goto done;
949
950 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, val);
951
952done:
953 return err;
954}
955
956static int tg3_phy_cl45_read(struct tg3 *tp, u32 devad, u32 addr, u32 *val)
957{
958 int err;
959
960 err = tg3_writephy(tp, MII_TG3_MMD_CTRL, devad);
961 if (err)
962 goto done;
963
964 err = tg3_writephy(tp, MII_TG3_MMD_ADDRESS, addr);
965 if (err)
966 goto done;
967
968 err = tg3_writephy(tp, MII_TG3_MMD_CTRL,
969 MII_TG3_MMD_CTRL_DATA_NOINC | devad);
970 if (err)
971 goto done;
972
973 err = tg3_readphy(tp, MII_TG3_MMD_ADDRESS, val);
974
975done:
976 return err;
977}
978
979static int tg3_phydsp_read(struct tg3 *tp, u32 reg, u32 *val)
980{
981 int err;
982
983 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
984 if (!err)
985 err = tg3_readphy(tp, MII_TG3_DSP_RW_PORT, val);
986
987 return err;
988}
989
990static int tg3_phydsp_write(struct tg3 *tp, u32 reg, u32 val)
991{
992 int err;
993
994 err = tg3_writephy(tp, MII_TG3_DSP_ADDRESS, reg);
995 if (!err)
996 err = tg3_writephy(tp, MII_TG3_DSP_RW_PORT, val);
997
998 return err;
999}
1000
Matt Carlson15ee95c2011-04-20 07:57:40 +00001001static int tg3_phy_auxctl_read(struct tg3 *tp, int reg, u32 *val)
1002{
1003 int err;
1004
1005 err = tg3_writephy(tp, MII_TG3_AUX_CTRL,
1006 (reg << MII_TG3_AUXCTL_MISC_RDSEL_SHIFT) |
1007 MII_TG3_AUXCTL_SHDWSEL_MISC);
1008 if (!err)
1009 err = tg3_readphy(tp, MII_TG3_AUX_CTRL, val);
1010
1011 return err;
1012}
1013
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001014static int tg3_phy_auxctl_write(struct tg3 *tp, int reg, u32 set)
1015{
1016 if (reg == MII_TG3_AUXCTL_SHDWSEL_MISC)
1017 set |= MII_TG3_AUXCTL_MISC_WREN;
1018
1019 return tg3_writephy(tp, MII_TG3_AUX_CTRL, set | reg);
1020}
1021
Matt Carlson1d36ba42011-04-20 07:57:42 +00001022#define TG3_PHY_AUXCTL_SMDSP_ENABLE(tp) \
1023 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1024 MII_TG3_AUXCTL_ACTL_SMDSP_ENA | \
1025 MII_TG3_AUXCTL_ACTL_TX_6DB)
1026
1027#define TG3_PHY_AUXCTL_SMDSP_DISABLE(tp) \
1028 tg3_phy_auxctl_write((tp), MII_TG3_AUXCTL_SHDWSEL_AUXCTL, \
1029 MII_TG3_AUXCTL_ACTL_TX_6DB);
1030
Matt Carlson95e28692008-05-25 23:44:14 -07001031static int tg3_bmcr_reset(struct tg3 *tp)
1032{
1033 u32 phy_control;
1034 int limit, err;
1035
1036 /* OK, reset it, and poll the BMCR_RESET bit until it
1037 * clears or we time out.
1038 */
1039 phy_control = BMCR_RESET;
1040 err = tg3_writephy(tp, MII_BMCR, phy_control);
1041 if (err != 0)
1042 return -EBUSY;
1043
1044 limit = 5000;
1045 while (limit--) {
1046 err = tg3_readphy(tp, MII_BMCR, &phy_control);
1047 if (err != 0)
1048 return -EBUSY;
1049
1050 if ((phy_control & BMCR_RESET) == 0) {
1051 udelay(40);
1052 break;
1053 }
1054 udelay(10);
1055 }
Roel Kluind4675b52009-02-12 16:33:27 -08001056 if (limit < 0)
Matt Carlson95e28692008-05-25 23:44:14 -07001057 return -EBUSY;
1058
1059 return 0;
1060}
1061
Matt Carlson158d7ab2008-05-29 01:37:54 -07001062static int tg3_mdio_read(struct mii_bus *bp, int mii_id, int reg)
1063{
Francois Romieu3d165432009-01-19 16:56:50 -08001064 struct tg3 *tp = bp->priv;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001065 u32 val;
1066
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001067 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001068
1069 if (tg3_readphy(tp, reg, &val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001070 val = -EIO;
1071
1072 spin_unlock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001073
1074 return val;
1075}
1076
1077static int tg3_mdio_write(struct mii_bus *bp, int mii_id, int reg, u16 val)
1078{
Francois Romieu3d165432009-01-19 16:56:50 -08001079 struct tg3 *tp = bp->priv;
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001080 u32 ret = 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001081
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001082 spin_lock_bh(&tp->lock);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001083
1084 if (tg3_writephy(tp, reg, val))
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001085 ret = -EIO;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001086
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001087 spin_unlock_bh(&tp->lock);
1088
1089 return ret;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001090}
1091
1092static int tg3_mdio_reset(struct mii_bus *bp)
1093{
1094 return 0;
1095}
1096
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001097static void tg3_mdio_config_5785(struct tg3 *tp)
Matt Carlsona9daf362008-05-25 23:49:44 -07001098{
1099 u32 val;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001100 struct phy_device *phydev;
Matt Carlsona9daf362008-05-25 23:49:44 -07001101
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001102 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001103 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001104 case PHY_ID_BCM50610:
1105 case PHY_ID_BCM50610M:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001106 val = MAC_PHYCFG2_50610_LED_MODES;
1107 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001108 case PHY_ID_BCMAC131:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001109 val = MAC_PHYCFG2_AC131_LED_MODES;
1110 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001111 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001112 val = MAC_PHYCFG2_RTL8211C_LED_MODES;
1113 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001114 case PHY_ID_RTL8201E:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001115 val = MAC_PHYCFG2_RTL8201E_LED_MODES;
1116 break;
1117 default:
Matt Carlsona9daf362008-05-25 23:49:44 -07001118 return;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001119 }
1120
1121 if (phydev->interface != PHY_INTERFACE_MODE_RGMII) {
1122 tw32(MAC_PHYCFG2, val);
1123
1124 val = tr32(MAC_PHYCFG1);
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001125 val &= ~(MAC_PHYCFG1_RGMII_INT |
1126 MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK);
1127 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001128 tw32(MAC_PHYCFG1, val);
1129
1130 return;
1131 }
1132
Joe Perches63c3a662011-04-26 08:12:10 +00001133 if (!tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001134 val |= MAC_PHYCFG2_EMODE_MASK_MASK |
1135 MAC_PHYCFG2_FMODE_MASK_MASK |
1136 MAC_PHYCFG2_GMODE_MASK_MASK |
1137 MAC_PHYCFG2_ACT_MASK_MASK |
1138 MAC_PHYCFG2_QUAL_MASK_MASK |
1139 MAC_PHYCFG2_INBAND_ENABLE;
1140
1141 tw32(MAC_PHYCFG2, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001142
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001143 val = tr32(MAC_PHYCFG1);
1144 val &= ~(MAC_PHYCFG1_RXCLK_TO_MASK | MAC_PHYCFG1_TXCLK_TO_MASK |
1145 MAC_PHYCFG1_RGMII_EXT_RX_DEC | MAC_PHYCFG1_RGMII_SND_STAT_EN);
Joe Perches63c3a662011-04-26 08:12:10 +00001146 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1147 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001148 val |= MAC_PHYCFG1_RGMII_EXT_RX_DEC;
Joe Perches63c3a662011-04-26 08:12:10 +00001149 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001150 val |= MAC_PHYCFG1_RGMII_SND_STAT_EN;
1151 }
Matt Carlsonbb85fbb2009-08-25 10:09:07 +00001152 val |= MAC_PHYCFG1_RXCLK_TIMEOUT | MAC_PHYCFG1_TXCLK_TIMEOUT |
1153 MAC_PHYCFG1_RGMII_INT | MAC_PHYCFG1_TXC_DRV;
1154 tw32(MAC_PHYCFG1, val);
Matt Carlsona9daf362008-05-25 23:49:44 -07001155
Matt Carlsona9daf362008-05-25 23:49:44 -07001156 val = tr32(MAC_EXT_RGMII_MODE);
1157 val &= ~(MAC_RGMII_MODE_RX_INT_B |
1158 MAC_RGMII_MODE_RX_QUALITY |
1159 MAC_RGMII_MODE_RX_ACTIVITY |
1160 MAC_RGMII_MODE_RX_ENG_DET |
1161 MAC_RGMII_MODE_TX_ENABLE |
1162 MAC_RGMII_MODE_TX_LOWPWR |
1163 MAC_RGMII_MODE_TX_RESET);
Joe Perches63c3a662011-04-26 08:12:10 +00001164 if (!tg3_flag(tp, RGMII_INBAND_DISABLE)) {
1165 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001166 val |= MAC_RGMII_MODE_RX_INT_B |
1167 MAC_RGMII_MODE_RX_QUALITY |
1168 MAC_RGMII_MODE_RX_ACTIVITY |
1169 MAC_RGMII_MODE_RX_ENG_DET;
Joe Perches63c3a662011-04-26 08:12:10 +00001170 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001171 val |= MAC_RGMII_MODE_TX_ENABLE |
1172 MAC_RGMII_MODE_TX_LOWPWR |
1173 MAC_RGMII_MODE_TX_RESET;
1174 }
1175 tw32(MAC_EXT_RGMII_MODE, val);
1176}
1177
Matt Carlson158d7ab2008-05-29 01:37:54 -07001178static void tg3_mdio_start(struct tg3 *tp)
1179{
Matt Carlson158d7ab2008-05-29 01:37:54 -07001180 tp->mi_mode &= ~MAC_MI_MODE_AUTO_POLL;
1181 tw32_f(MAC_MI_MODE, tp->mi_mode);
1182 udelay(80);
Matt Carlsona9daf362008-05-25 23:49:44 -07001183
Joe Perches63c3a662011-04-26 08:12:10 +00001184 if (tg3_flag(tp, MDIOBUS_INITED) &&
Matt Carlson9ea48182010-02-17 15:17:01 +00001185 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1186 tg3_mdio_config_5785(tp);
1187}
1188
1189static int tg3_mdio_init(struct tg3 *tp)
1190{
1191 int i;
1192 u32 reg;
1193 struct phy_device *phydev;
1194
Joe Perches63c3a662011-04-26 08:12:10 +00001195 if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson9c7df912010-06-05 17:24:36 +00001196 u32 is_serdes;
Matt Carlson882e9792009-09-01 13:21:36 +00001197
Matt Carlson69f11c92011-07-13 09:27:30 +00001198 tp->phy_addr = tp->pci_fn + 1;
Matt Carlson882e9792009-09-01 13:21:36 +00001199
Matt Carlsond1ec96a2010-01-12 10:11:38 +00001200 if (tp->pci_chip_rev_id != CHIPREV_ID_5717_A0)
1201 is_serdes = tr32(SG_DIG_STATUS) & SG_DIG_IS_SERDES;
1202 else
1203 is_serdes = tr32(TG3_CPMU_PHY_STRAP) &
1204 TG3_CPMU_PHY_STRAP_IS_SERDES;
Matt Carlson882e9792009-09-01 13:21:36 +00001205 if (is_serdes)
1206 tp->phy_addr += 7;
1207 } else
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001208 tp->phy_addr = TG3_PHY_MII_ADDR;
Matt Carlson882e9792009-09-01 13:21:36 +00001209
Matt Carlson158d7ab2008-05-29 01:37:54 -07001210 tg3_mdio_start(tp);
1211
Joe Perches63c3a662011-04-26 08:12:10 +00001212 if (!tg3_flag(tp, USE_PHYLIB) || tg3_flag(tp, MDIOBUS_INITED))
Matt Carlson158d7ab2008-05-29 01:37:54 -07001213 return 0;
1214
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001215 tp->mdio_bus = mdiobus_alloc();
1216 if (tp->mdio_bus == NULL)
1217 return -ENOMEM;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001218
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001219 tp->mdio_bus->name = "tg3 mdio bus";
1220 snprintf(tp->mdio_bus->id, MII_BUS_ID_SIZE, "%x",
Matt Carlson158d7ab2008-05-29 01:37:54 -07001221 (tp->pdev->bus->number << 8) | tp->pdev->devfn);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001222 tp->mdio_bus->priv = tp;
1223 tp->mdio_bus->parent = &tp->pdev->dev;
1224 tp->mdio_bus->read = &tg3_mdio_read;
1225 tp->mdio_bus->write = &tg3_mdio_write;
1226 tp->mdio_bus->reset = &tg3_mdio_reset;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001227 tp->mdio_bus->phy_mask = ~(1 << TG3_PHY_MII_ADDR);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001228 tp->mdio_bus->irq = &tp->mdio_irq[0];
Matt Carlson158d7ab2008-05-29 01:37:54 -07001229
1230 for (i = 0; i < PHY_MAX_ADDR; i++)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001231 tp->mdio_bus->irq[i] = PHY_POLL;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001232
1233 /* The bus registration will look for all the PHYs on the mdio bus.
1234 * Unfortunately, it does not ensure the PHY is powered up before
1235 * accessing the PHY ID registers. A chip reset is the
1236 * quickest way to bring the device back to an operational state..
1237 */
1238 if (tg3_readphy(tp, MII_BMCR, &reg) || (reg & BMCR_PDOWN))
1239 tg3_bmcr_reset(tp);
1240
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001241 i = mdiobus_register(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001242 if (i) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001243 dev_warn(&tp->pdev->dev, "mdiobus_reg failed (0x%x)\n", i);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001244 mdiobus_free(tp->mdio_bus);
Matt Carlsona9daf362008-05-25 23:49:44 -07001245 return i;
1246 }
Matt Carlson158d7ab2008-05-29 01:37:54 -07001247
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001248 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsona9daf362008-05-25 23:49:44 -07001249
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001250 if (!phydev || !phydev->drv) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001251 dev_warn(&tp->pdev->dev, "No PHY devices\n");
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001252 mdiobus_unregister(tp->mdio_bus);
1253 mdiobus_free(tp->mdio_bus);
1254 return -ENODEV;
1255 }
1256
1257 switch (phydev->drv->phy_id & phydev->drv->phy_id_mask) {
Matt Carlson6a443a02010-02-17 15:17:04 +00001258 case PHY_ID_BCM57780:
Matt Carlson321d32a2008-11-21 17:22:19 -08001259 phydev->interface = PHY_INTERFACE_MODE_GMII;
Matt Carlsonc704dc22009-11-02 14:32:12 +00001260 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlson321d32a2008-11-21 17:22:19 -08001261 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001262 case PHY_ID_BCM50610:
1263 case PHY_ID_BCM50610M:
Matt Carlson32e5a8d2009-11-02 14:31:39 +00001264 phydev->dev_flags |= PHY_BRCM_CLEAR_RGMII_MODE |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001265 PHY_BRCM_RX_REFCLK_UNUSED |
Matt Carlson52fae082009-11-02 14:32:38 +00001266 PHY_BRCM_DIS_TXCRXC_NOENRGY |
Matt Carlsonc704dc22009-11-02 14:32:12 +00001267 PHY_BRCM_AUTO_PWRDWN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001268 if (tg3_flag(tp, RGMII_INBAND_DISABLE))
Matt Carlsona9daf362008-05-25 23:49:44 -07001269 phydev->dev_flags |= PHY_BRCM_STD_IBND_DISABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001270 if (tg3_flag(tp, RGMII_EXT_IBND_RX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001271 phydev->dev_flags |= PHY_BRCM_EXT_IBND_RX_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00001272 if (tg3_flag(tp, RGMII_EXT_IBND_TX_EN))
Matt Carlsona9daf362008-05-25 23:49:44 -07001273 phydev->dev_flags |= PHY_BRCM_EXT_IBND_TX_ENABLE;
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001274 /* fallthru */
Matt Carlson6a443a02010-02-17 15:17:04 +00001275 case PHY_ID_RTL8211C:
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001276 phydev->interface = PHY_INTERFACE_MODE_RGMII;
Matt Carlsona9daf362008-05-25 23:49:44 -07001277 break;
Matt Carlson6a443a02010-02-17 15:17:04 +00001278 case PHY_ID_RTL8201E:
1279 case PHY_ID_BCMAC131:
Matt Carlsona9daf362008-05-25 23:49:44 -07001280 phydev->interface = PHY_INTERFACE_MODE_MII;
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +00001281 phydev->dev_flags |= PHY_BRCM_AUTO_PWRDWN_ENABLE;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001282 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlsona9daf362008-05-25 23:49:44 -07001283 break;
1284 }
1285
Joe Perches63c3a662011-04-26 08:12:10 +00001286 tg3_flag_set(tp, MDIOBUS_INITED);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001287
1288 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
1289 tg3_mdio_config_5785(tp);
Matt Carlsona9daf362008-05-25 23:49:44 -07001290
1291 return 0;
Matt Carlson158d7ab2008-05-29 01:37:54 -07001292}
1293
1294static void tg3_mdio_fini(struct tg3 *tp)
1295{
Joe Perches63c3a662011-04-26 08:12:10 +00001296 if (tg3_flag(tp, MDIOBUS_INITED)) {
1297 tg3_flag_clear(tp, MDIOBUS_INITED);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07001298 mdiobus_unregister(tp->mdio_bus);
1299 mdiobus_free(tp->mdio_bus);
Matt Carlson158d7ab2008-05-29 01:37:54 -07001300 }
1301}
1302
Matt Carlson95e28692008-05-25 23:44:14 -07001303/* tp->lock is held. */
Matt Carlson4ba526c2008-08-15 14:10:04 -07001304static inline void tg3_generate_fw_event(struct tg3 *tp)
1305{
1306 u32 val;
1307
1308 val = tr32(GRC_RX_CPU_EVENT);
1309 val |= GRC_RX_CPU_DRIVER_EVENT;
1310 tw32_f(GRC_RX_CPU_EVENT, val);
1311
1312 tp->last_event_jiffies = jiffies;
1313}
1314
1315#define TG3_FW_EVENT_TIMEOUT_USEC 2500
1316
1317/* tp->lock is held. */
Matt Carlson95e28692008-05-25 23:44:14 -07001318static void tg3_wait_for_event_ack(struct tg3 *tp)
1319{
1320 int i;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001321 unsigned int delay_cnt;
1322 long time_remain;
Matt Carlson95e28692008-05-25 23:44:14 -07001323
Matt Carlson4ba526c2008-08-15 14:10:04 -07001324 /* If enough time has passed, no wait is necessary. */
1325 time_remain = (long)(tp->last_event_jiffies + 1 +
1326 usecs_to_jiffies(TG3_FW_EVENT_TIMEOUT_USEC)) -
1327 (long)jiffies;
1328 if (time_remain < 0)
1329 return;
1330
1331 /* Check if we can shorten the wait time. */
1332 delay_cnt = jiffies_to_usecs(time_remain);
1333 if (delay_cnt > TG3_FW_EVENT_TIMEOUT_USEC)
1334 delay_cnt = TG3_FW_EVENT_TIMEOUT_USEC;
1335 delay_cnt = (delay_cnt >> 3) + 1;
1336
1337 for (i = 0; i < delay_cnt; i++) {
Matt Carlson95e28692008-05-25 23:44:14 -07001338 if (!(tr32(GRC_RX_CPU_EVENT) & GRC_RX_CPU_DRIVER_EVENT))
1339 break;
Matt Carlson4ba526c2008-08-15 14:10:04 -07001340 udelay(8);
Matt Carlson95e28692008-05-25 23:44:14 -07001341 }
1342}
1343
1344/* tp->lock is held. */
1345static void tg3_ump_link_report(struct tg3 *tp)
1346{
1347 u32 reg;
1348 u32 val;
1349
Joe Perches63c3a662011-04-26 08:12:10 +00001350 if (!tg3_flag(tp, 5780_CLASS) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson95e28692008-05-25 23:44:14 -07001351 return;
1352
1353 tg3_wait_for_event_ack(tp);
1354
1355 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_LINK_UPDATE);
1356
1357 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 14);
1358
1359 val = 0;
1360 if (!tg3_readphy(tp, MII_BMCR, &reg))
1361 val = reg << 16;
1362 if (!tg3_readphy(tp, MII_BMSR, &reg))
1363 val |= (reg & 0xffff);
1364 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, val);
1365
1366 val = 0;
1367 if (!tg3_readphy(tp, MII_ADVERTISE, &reg))
1368 val = reg << 16;
1369 if (!tg3_readphy(tp, MII_LPA, &reg))
1370 val |= (reg & 0xffff);
1371 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 4, val);
1372
1373 val = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001374 if (!(tp->phy_flags & TG3_PHYFLG_MII_SERDES)) {
Matt Carlson95e28692008-05-25 23:44:14 -07001375 if (!tg3_readphy(tp, MII_CTRL1000, &reg))
1376 val = reg << 16;
1377 if (!tg3_readphy(tp, MII_STAT1000, &reg))
1378 val |= (reg & 0xffff);
1379 }
1380 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 8, val);
1381
1382 if (!tg3_readphy(tp, MII_PHYADDR, &reg))
1383 val = reg << 16;
1384 else
1385 val = 0;
1386 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX + 12, val);
1387
Matt Carlson4ba526c2008-08-15 14:10:04 -07001388 tg3_generate_fw_event(tp);
Matt Carlson95e28692008-05-25 23:44:14 -07001389}
1390
1391static void tg3_link_report(struct tg3 *tp)
1392{
1393 if (!netif_carrier_ok(tp->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001394 netif_info(tp, link, tp->dev, "Link is down\n");
Matt Carlson95e28692008-05-25 23:44:14 -07001395 tg3_ump_link_report(tp);
1396 } else if (netif_msg_link(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00001397 netdev_info(tp->dev, "Link is up at %d Mbps, %s duplex\n",
1398 (tp->link_config.active_speed == SPEED_1000 ?
1399 1000 :
1400 (tp->link_config.active_speed == SPEED_100 ?
1401 100 : 10)),
1402 (tp->link_config.active_duplex == DUPLEX_FULL ?
1403 "full" : "half"));
Matt Carlson95e28692008-05-25 23:44:14 -07001404
Joe Perches05dbe002010-02-17 19:44:19 +00001405 netdev_info(tp->dev, "Flow control is %s for TX and %s for RX\n",
1406 (tp->link_config.active_flowctrl & FLOW_CTRL_TX) ?
1407 "on" : "off",
1408 (tp->link_config.active_flowctrl & FLOW_CTRL_RX) ?
1409 "on" : "off");
Matt Carlson47007832011-04-20 07:57:43 +00001410
1411 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP)
1412 netdev_info(tp->dev, "EEE is %s\n",
1413 tp->setlpicnt ? "enabled" : "disabled");
1414
Matt Carlson95e28692008-05-25 23:44:14 -07001415 tg3_ump_link_report(tp);
1416 }
1417}
1418
1419static u16 tg3_advert_flowctrl_1000T(u8 flow_ctrl)
1420{
1421 u16 miireg;
1422
Steve Glendinninge18ce342008-12-16 02:00:00 -08001423 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001424 miireg = ADVERTISE_PAUSE_CAP;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001425 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001426 miireg = ADVERTISE_PAUSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001427 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001428 miireg = ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
1429 else
1430 miireg = 0;
1431
1432 return miireg;
1433}
1434
1435static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl)
1436{
1437 u16 miireg;
1438
Steve Glendinninge18ce342008-12-16 02:00:00 -08001439 if ((flow_ctrl & FLOW_CTRL_TX) && (flow_ctrl & FLOW_CTRL_RX))
Matt Carlson95e28692008-05-25 23:44:14 -07001440 miireg = ADVERTISE_1000XPAUSE;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001441 else if (flow_ctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001442 miireg = ADVERTISE_1000XPSE_ASYM;
Steve Glendinninge18ce342008-12-16 02:00:00 -08001443 else if (flow_ctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001444 miireg = ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
1445 else
1446 miireg = 0;
1447
1448 return miireg;
1449}
1450
Matt Carlson95e28692008-05-25 23:44:14 -07001451static u8 tg3_resolve_flowctrl_1000X(u16 lcladv, u16 rmtadv)
1452{
1453 u8 cap = 0;
1454
1455 if (lcladv & ADVERTISE_1000XPAUSE) {
1456 if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1457 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001458 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001459 else if (rmtadv & LPA_1000XPAUSE_ASYM)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001460 cap = FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001461 } else {
1462 if (rmtadv & LPA_1000XPAUSE)
Steve Glendinninge18ce342008-12-16 02:00:00 -08001463 cap = FLOW_CTRL_TX | FLOW_CTRL_RX;
Matt Carlson95e28692008-05-25 23:44:14 -07001464 }
1465 } else if (lcladv & ADVERTISE_1000XPSE_ASYM) {
1466 if ((rmtadv & LPA_1000XPAUSE) && (rmtadv & LPA_1000XPAUSE_ASYM))
Steve Glendinninge18ce342008-12-16 02:00:00 -08001467 cap = FLOW_CTRL_TX;
Matt Carlson95e28692008-05-25 23:44:14 -07001468 }
1469
1470 return cap;
1471}
1472
Matt Carlsonf51f3562008-05-25 23:45:08 -07001473static void tg3_setup_flow_control(struct tg3 *tp, u32 lcladv, u32 rmtadv)
Matt Carlson95e28692008-05-25 23:44:14 -07001474{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001475 u8 autoneg;
Matt Carlsonf51f3562008-05-25 23:45:08 -07001476 u8 flowctrl = 0;
Matt Carlson95e28692008-05-25 23:44:14 -07001477 u32 old_rx_mode = tp->rx_mode;
1478 u32 old_tx_mode = tp->tx_mode;
1479
Joe Perches63c3a662011-04-26 08:12:10 +00001480 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001481 autoneg = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]->autoneg;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001482 else
1483 autoneg = tp->link_config.autoneg;
1484
Joe Perches63c3a662011-04-26 08:12:10 +00001485 if (autoneg == AUTONEG_ENABLE && tg3_flag(tp, PAUSE_AUTONEG)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001486 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Matt Carlsonf51f3562008-05-25 23:45:08 -07001487 flowctrl = tg3_resolve_flowctrl_1000X(lcladv, rmtadv);
Matt Carlson95e28692008-05-25 23:44:14 -07001488 else
Steve Glendinningbc02ff92008-12-16 02:00:48 -08001489 flowctrl = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Matt Carlsonf51f3562008-05-25 23:45:08 -07001490 } else
1491 flowctrl = tp->link_config.flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001492
Matt Carlsonf51f3562008-05-25 23:45:08 -07001493 tp->link_config.active_flowctrl = flowctrl;
Matt Carlson95e28692008-05-25 23:44:14 -07001494
Steve Glendinninge18ce342008-12-16 02:00:00 -08001495 if (flowctrl & FLOW_CTRL_RX)
Matt Carlson95e28692008-05-25 23:44:14 -07001496 tp->rx_mode |= RX_MODE_FLOW_CTRL_ENABLE;
1497 else
1498 tp->rx_mode &= ~RX_MODE_FLOW_CTRL_ENABLE;
1499
Matt Carlsonf51f3562008-05-25 23:45:08 -07001500 if (old_rx_mode != tp->rx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001501 tw32_f(MAC_RX_MODE, tp->rx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001502
Steve Glendinninge18ce342008-12-16 02:00:00 -08001503 if (flowctrl & FLOW_CTRL_TX)
Matt Carlson95e28692008-05-25 23:44:14 -07001504 tp->tx_mode |= TX_MODE_FLOW_CTRL_ENABLE;
1505 else
1506 tp->tx_mode &= ~TX_MODE_FLOW_CTRL_ENABLE;
1507
Matt Carlsonf51f3562008-05-25 23:45:08 -07001508 if (old_tx_mode != tp->tx_mode)
Matt Carlson95e28692008-05-25 23:44:14 -07001509 tw32_f(MAC_TX_MODE, tp->tx_mode);
Matt Carlson95e28692008-05-25 23:44:14 -07001510}
1511
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001512static void tg3_adjust_link(struct net_device *dev)
1513{
1514 u8 oldflowctrl, linkmesg = 0;
1515 u32 mac_mode, lcl_adv, rmt_adv;
1516 struct tg3 *tp = netdev_priv(dev);
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001517 struct phy_device *phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001518
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001519 spin_lock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001520
1521 mac_mode = tp->mac_mode & ~(MAC_MODE_PORT_MODE_MASK |
1522 MAC_MODE_HALF_DUPLEX);
1523
1524 oldflowctrl = tp->link_config.active_flowctrl;
1525
1526 if (phydev->link) {
1527 lcl_adv = 0;
1528 rmt_adv = 0;
1529
1530 if (phydev->speed == SPEED_100 || phydev->speed == SPEED_10)
1531 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001532 else if (phydev->speed == SPEED_1000 ||
1533 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001534 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonc3df0742009-11-02 14:27:02 +00001535 else
1536 mac_mode |= MAC_MODE_PORT_MODE_MII;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001537
1538 if (phydev->duplex == DUPLEX_HALF)
1539 mac_mode |= MAC_MODE_HALF_DUPLEX;
1540 else {
1541 lcl_adv = tg3_advert_flowctrl_1000T(
1542 tp->link_config.flowctrl);
1543
1544 if (phydev->pause)
1545 rmt_adv = LPA_PAUSE_CAP;
1546 if (phydev->asym_pause)
1547 rmt_adv |= LPA_PAUSE_ASYM;
1548 }
1549
1550 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
1551 } else
1552 mac_mode |= MAC_MODE_PORT_MODE_GMII;
1553
1554 if (mac_mode != tp->mac_mode) {
1555 tp->mac_mode = mac_mode;
1556 tw32_f(MAC_MODE, tp->mac_mode);
1557 udelay(40);
1558 }
1559
Matt Carlsonfcb389d2008-11-03 16:55:44 -08001560 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
1561 if (phydev->speed == SPEED_10)
1562 tw32(MAC_MI_STAT,
1563 MAC_MI_STAT_10MBPS_MODE |
1564 MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1565 else
1566 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
1567 }
1568
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001569 if (phydev->speed == SPEED_1000 && phydev->duplex == DUPLEX_HALF)
1570 tw32(MAC_TX_LENGTHS,
1571 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1572 (6 << TX_LENGTHS_IPG_SHIFT) |
1573 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT)));
1574 else
1575 tw32(MAC_TX_LENGTHS,
1576 ((2 << TX_LENGTHS_IPG_CRS_SHIFT) |
1577 (6 << TX_LENGTHS_IPG_SHIFT) |
1578 (32 << TX_LENGTHS_SLOT_TIME_SHIFT)));
1579
1580 if ((phydev->link && tp->link_config.active_speed == SPEED_INVALID) ||
1581 (!phydev->link && tp->link_config.active_speed != SPEED_INVALID) ||
1582 phydev->speed != tp->link_config.active_speed ||
1583 phydev->duplex != tp->link_config.active_duplex ||
1584 oldflowctrl != tp->link_config.active_flowctrl)
Matt Carlsonc6cdf432010-04-05 10:19:26 +00001585 linkmesg = 1;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001586
1587 tp->link_config.active_speed = phydev->speed;
1588 tp->link_config.active_duplex = phydev->duplex;
1589
Matt Carlson24bb4fb2009-10-05 17:55:29 +00001590 spin_unlock_bh(&tp->lock);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001591
1592 if (linkmesg)
1593 tg3_link_report(tp);
1594}
1595
1596static int tg3_phy_init(struct tg3 *tp)
1597{
1598 struct phy_device *phydev;
1599
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001600 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001601 return 0;
1602
1603 /* Bring the PHY back to a known state. */
1604 tg3_bmcr_reset(tp);
1605
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001606 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001607
1608 /* Attach the MAC to the PHY. */
Kay Sieversfb28ad352008-11-10 13:55:14 -08001609 phydev = phy_connect(tp->dev, dev_name(&phydev->dev), tg3_adjust_link,
Matt Carlsona9daf362008-05-25 23:49:44 -07001610 phydev->dev_flags, phydev->interface);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001611 if (IS_ERR(phydev)) {
Matt Carlsonab96b242010-04-05 10:19:22 +00001612 dev_err(&tp->pdev->dev, "Could not attach to PHY\n");
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001613 return PTR_ERR(phydev);
1614 }
1615
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001616 /* Mask with MAC supported features. */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001617 switch (phydev->interface) {
1618 case PHY_INTERFACE_MODE_GMII:
1619 case PHY_INTERFACE_MODE_RGMII:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001620 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Matt Carlson321d32a2008-11-21 17:22:19 -08001621 phydev->supported &= (PHY_GBIT_FEATURES |
1622 SUPPORTED_Pause |
1623 SUPPORTED_Asym_Pause);
1624 break;
1625 }
1626 /* fallthru */
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001627 case PHY_INTERFACE_MODE_MII:
1628 phydev->supported &= (PHY_BASIC_FEATURES |
1629 SUPPORTED_Pause |
1630 SUPPORTED_Asym_Pause);
1631 break;
1632 default:
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001633 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlson9c61d6b2008-11-03 16:54:56 -08001634 return -EINVAL;
1635 }
1636
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001637 tp->phy_flags |= TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001638
1639 phydev->advertising = phydev->supported;
1640
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001641 return 0;
1642}
1643
1644static void tg3_phy_start(struct tg3 *tp)
1645{
1646 struct phy_device *phydev;
1647
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001648 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001649 return;
1650
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001651 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001652
Matt Carlson80096062010-08-02 11:26:06 +00001653 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
1654 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001655 phydev->speed = tp->link_config.orig_speed;
1656 phydev->duplex = tp->link_config.orig_duplex;
1657 phydev->autoneg = tp->link_config.orig_autoneg;
1658 phydev->advertising = tp->link_config.orig_advertising;
1659 }
1660
1661 phy_start(phydev);
1662
1663 phy_start_aneg(phydev);
1664}
1665
1666static void tg3_phy_stop(struct tg3 *tp)
1667{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001668 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001669 return;
1670
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001671 phy_stop(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001672}
1673
1674static void tg3_phy_fini(struct tg3 *tp)
1675{
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001676 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00001677 phy_disconnect(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001678 tp->phy_flags &= ~TG3_PHYFLG_IS_CONNECTED;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07001679 }
1680}
1681
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001682static void tg3_phy_fet_toggle_apd(struct tg3 *tp, bool enable)
1683{
1684 u32 phytest;
1685
1686 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
1687 u32 phy;
1688
1689 tg3_writephy(tp, MII_TG3_FET_TEST,
1690 phytest | MII_TG3_FET_SHADOW_EN);
1691 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXSTAT2, &phy)) {
1692 if (enable)
1693 phy |= MII_TG3_FET_SHDW_AUXSTAT2_APD;
1694 else
1695 phy &= ~MII_TG3_FET_SHDW_AUXSTAT2_APD;
1696 tg3_writephy(tp, MII_TG3_FET_SHDW_AUXSTAT2, phy);
1697 }
1698 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
1699 }
1700}
1701
Matt Carlson6833c042008-11-21 17:18:59 -08001702static void tg3_phy_toggle_apd(struct tg3 *tp, bool enable)
1703{
1704 u32 reg;
1705
Joe Perches63c3a662011-04-26 08:12:10 +00001706 if (!tg3_flag(tp, 5705_PLUS) ||
1707 (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001708 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Matt Carlson6833c042008-11-21 17:18:59 -08001709 return;
1710
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001711 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +00001712 tg3_phy_fet_toggle_apd(tp, enable);
1713 return;
1714 }
1715
Matt Carlson6833c042008-11-21 17:18:59 -08001716 reg = MII_TG3_MISC_SHDW_WREN |
1717 MII_TG3_MISC_SHDW_SCR5_SEL |
1718 MII_TG3_MISC_SHDW_SCR5_LPED |
1719 MII_TG3_MISC_SHDW_SCR5_DLPTLM |
1720 MII_TG3_MISC_SHDW_SCR5_SDTL |
1721 MII_TG3_MISC_SHDW_SCR5_C125OE;
1722 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 || !enable)
1723 reg |= MII_TG3_MISC_SHDW_SCR5_DLLAPD;
1724
1725 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1726
1727
1728 reg = MII_TG3_MISC_SHDW_WREN |
1729 MII_TG3_MISC_SHDW_APD_SEL |
1730 MII_TG3_MISC_SHDW_APD_WKTM_84MS;
1731 if (enable)
1732 reg |= MII_TG3_MISC_SHDW_APD_ENABLE;
1733
1734 tg3_writephy(tp, MII_TG3_MISC_SHDW, reg);
1735}
1736
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001737static void tg3_phy_toggle_automdix(struct tg3 *tp, int enable)
1738{
1739 u32 phy;
1740
Joe Perches63c3a662011-04-26 08:12:10 +00001741 if (!tg3_flag(tp, 5705_PLUS) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001742 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001743 return;
1744
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001745 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001746 u32 ephy;
1747
Matt Carlson535ef6e2009-08-25 10:09:36 +00001748 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &ephy)) {
1749 u32 reg = MII_TG3_FET_SHDW_MISCCTRL;
1750
1751 tg3_writephy(tp, MII_TG3_FET_TEST,
1752 ephy | MII_TG3_FET_SHADOW_EN);
1753 if (!tg3_readphy(tp, reg, &phy)) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001754 if (enable)
Matt Carlson535ef6e2009-08-25 10:09:36 +00001755 phy |= MII_TG3_FET_SHDW_MISCCTRL_MDIX;
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001756 else
Matt Carlson535ef6e2009-08-25 10:09:36 +00001757 phy &= ~MII_TG3_FET_SHDW_MISCCTRL_MDIX;
1758 tg3_writephy(tp, reg, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001759 }
Matt Carlson535ef6e2009-08-25 10:09:36 +00001760 tg3_writephy(tp, MII_TG3_FET_TEST, ephy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001761 }
1762 } else {
Matt Carlson15ee95c2011-04-20 07:57:40 +00001763 int ret;
1764
1765 ret = tg3_phy_auxctl_read(tp,
1766 MII_TG3_AUXCTL_SHDWSEL_MISC, &phy);
1767 if (!ret) {
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001768 if (enable)
1769 phy |= MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
1770 else
1771 phy &= ~MII_TG3_AUXCTL_MISC_FORCE_AMDIX;
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001772 tg3_phy_auxctl_write(tp,
1773 MII_TG3_AUXCTL_SHDWSEL_MISC, phy);
Matt Carlson9ef8ca92007-07-11 19:48:29 -07001774 }
1775 }
1776}
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778static void tg3_phy_set_wirespeed(struct tg3 *tp)
1779{
Matt Carlson15ee95c2011-04-20 07:57:40 +00001780 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 u32 val;
1782
Matt Carlsonf07e9af2010-08-02 11:26:07 +00001783 if (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return;
1785
Matt Carlson15ee95c2011-04-20 07:57:40 +00001786 ret = tg3_phy_auxctl_read(tp, MII_TG3_AUXCTL_SHDWSEL_MISC, &val);
1787 if (!ret)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00001788 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_MISC,
1789 val | MII_TG3_AUXCTL_MISC_WIRESPD_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001792static void tg3_phy_apply_otp(struct tg3 *tp)
1793{
1794 u32 otp, phy;
1795
1796 if (!tp->phy_otp)
1797 return;
1798
1799 otp = tp->phy_otp;
1800
Matt Carlson1d36ba42011-04-20 07:57:42 +00001801 if (TG3_PHY_AUXCTL_SMDSP_ENABLE(tp))
1802 return;
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001803
1804 phy = ((otp & TG3_OTP_AGCTGT_MASK) >> TG3_OTP_AGCTGT_SHIFT);
1805 phy |= MII_TG3_DSP_TAP1_AGCTGT_DFLT;
1806 tg3_phydsp_write(tp, MII_TG3_DSP_TAP1, phy);
1807
1808 phy = ((otp & TG3_OTP_HPFFLTR_MASK) >> TG3_OTP_HPFFLTR_SHIFT) |
1809 ((otp & TG3_OTP_HPFOVER_MASK) >> TG3_OTP_HPFOVER_SHIFT);
1810 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH0, phy);
1811
1812 phy = ((otp & TG3_OTP_LPFDIS_MASK) >> TG3_OTP_LPFDIS_SHIFT);
1813 phy |= MII_TG3_DSP_AADJ1CH3_ADCCKADJ;
1814 tg3_phydsp_write(tp, MII_TG3_DSP_AADJ1CH3, phy);
1815
1816 phy = ((otp & TG3_OTP_VDAC_MASK) >> TG3_OTP_VDAC_SHIFT);
1817 tg3_phydsp_write(tp, MII_TG3_DSP_EXP75, phy);
1818
1819 phy = ((otp & TG3_OTP_10BTAMP_MASK) >> TG3_OTP_10BTAMP_SHIFT);
1820 tg3_phydsp_write(tp, MII_TG3_DSP_EXP96, phy);
1821
1822 phy = ((otp & TG3_OTP_ROFF_MASK) >> TG3_OTP_ROFF_SHIFT) |
1823 ((otp & TG3_OTP_RCOFF_MASK) >> TG3_OTP_RCOFF_SHIFT);
1824 tg3_phydsp_write(tp, MII_TG3_DSP_EXP97, phy);
1825
Matt Carlson1d36ba42011-04-20 07:57:42 +00001826 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07001827}
1828
Matt Carlson52b02d02010-10-14 10:37:41 +00001829static void tg3_phy_eee_adjust(struct tg3 *tp, u32 current_link_up)
1830{
1831 u32 val;
1832
1833 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
1834 return;
1835
1836 tp->setlpicnt = 0;
1837
1838 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
1839 current_link_up == 1 &&
Matt Carlsona6b68da2010-12-06 08:28:52 +00001840 tp->link_config.active_duplex == DUPLEX_FULL &&
1841 (tp->link_config.active_speed == SPEED_100 ||
1842 tp->link_config.active_speed == SPEED_1000)) {
Matt Carlson52b02d02010-10-14 10:37:41 +00001843 u32 eeectl;
1844
1845 if (tp->link_config.active_speed == SPEED_1000)
1846 eeectl = TG3_CPMU_EEE_CTRL_EXIT_16_5_US;
1847 else
1848 eeectl = TG3_CPMU_EEE_CTRL_EXIT_36_US;
1849
1850 tw32(TG3_CPMU_EEE_CTRL, eeectl);
1851
Matt Carlson3110f5f52010-12-06 08:28:50 +00001852 tg3_phy_cl45_read(tp, MDIO_MMD_AN,
1853 TG3_CL45_D7_EEERES_STAT, &val);
Matt Carlson52b02d02010-10-14 10:37:41 +00001854
Matt Carlsonb0c59432011-05-19 12:12:48 +00001855 if (val == TG3_CL45_D7_EEERES_STAT_LP_1000T ||
1856 val == TG3_CL45_D7_EEERES_STAT_LP_100TX)
Matt Carlson52b02d02010-10-14 10:37:41 +00001857 tp->setlpicnt = 2;
1858 }
1859
1860 if (!tp->setlpicnt) {
1861 val = tr32(TG3_CPMU_EEE_MODE);
1862 tw32(TG3_CPMU_EEE_MODE, val & ~TG3_CPMU_EEEMD_LPI_ENABLE);
1863 }
1864}
1865
Matt Carlsonb0c59432011-05-19 12:12:48 +00001866static void tg3_phy_eee_enable(struct tg3 *tp)
1867{
1868 u32 val;
1869
1870 if (tp->link_config.active_speed == SPEED_1000 &&
1871 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
1872 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
1873 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) &&
1874 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
1875 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, 0x0003);
1876 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
1877 }
1878
1879 val = tr32(TG3_CPMU_EEE_MODE);
1880 tw32(TG3_CPMU_EEE_MODE, val | TG3_CPMU_EEEMD_LPI_ENABLE);
1881}
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883static int tg3_wait_macro_done(struct tg3 *tp)
1884{
1885 int limit = 100;
1886
1887 while (limit--) {
1888 u32 tmp32;
1889
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001890 if (!tg3_readphy(tp, MII_TG3_DSP_CONTROL, &tmp32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if ((tmp32 & 0x1000) == 0)
1892 break;
1893 }
1894 }
Roel Kluind4675b52009-02-12 16:33:27 -08001895 if (limit < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 return -EBUSY;
1897
1898 return 0;
1899}
1900
1901static int tg3_phy_write_and_check_testpat(struct tg3 *tp, int *resetp)
1902{
1903 static const u32 test_pat[4][6] = {
1904 { 0x00005555, 0x00000005, 0x00002aaa, 0x0000000a, 0x00003456, 0x00000003 },
1905 { 0x00002aaa, 0x0000000a, 0x00003333, 0x00000003, 0x0000789a, 0x00000005 },
1906 { 0x00005a5a, 0x00000005, 0x00002a6a, 0x0000000a, 0x00001bcd, 0x00000003 },
1907 { 0x00002a5a, 0x0000000a, 0x000033c3, 0x00000003, 0x00002ef1, 0x00000005 }
1908 };
1909 int chan;
1910
1911 for (chan = 0; chan < 4; chan++) {
1912 int i;
1913
1914 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1915 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001916 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 for (i = 0; i < 6; i++)
1919 tg3_writephy(tp, MII_TG3_DSP_RW_PORT,
1920 test_pat[chan][i]);
1921
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001922 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (tg3_wait_macro_done(tp)) {
1924 *resetp = 1;
1925 return -EBUSY;
1926 }
1927
1928 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1929 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001930 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0082);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 if (tg3_wait_macro_done(tp)) {
1932 *resetp = 1;
1933 return -EBUSY;
1934 }
1935
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001936 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0802);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (tg3_wait_macro_done(tp)) {
1938 *resetp = 1;
1939 return -EBUSY;
1940 }
1941
1942 for (i = 0; i < 6; i += 2) {
1943 u32 low, high;
1944
1945 if (tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &low) ||
1946 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &high) ||
1947 tg3_wait_macro_done(tp)) {
1948 *resetp = 1;
1949 return -EBUSY;
1950 }
1951 low &= 0x7fff;
1952 high &= 0x000f;
1953 if (low != test_pat[chan][i] ||
1954 high != test_pat[chan][i+1]) {
1955 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000b);
1956 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4001);
1957 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x4005);
1958
1959 return -EBUSY;
1960 }
1961 }
1962 }
1963
1964 return 0;
1965}
1966
1967static int tg3_phy_reset_chanpat(struct tg3 *tp)
1968{
1969 int chan;
1970
1971 for (chan = 0; chan < 4; chan++) {
1972 int i;
1973
1974 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
1975 (chan * 0x2000) | 0x0200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001976 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0002);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 for (i = 0; i < 6; i++)
1978 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x000);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00001979 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0202);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (tg3_wait_macro_done(tp))
1981 return -EBUSY;
1982 }
1983
1984 return 0;
1985}
1986
1987static int tg3_phy_reset_5703_4_5(struct tg3 *tp)
1988{
1989 u32 reg32, phy9_orig;
1990 int retries, do_phy_reset, err;
1991
1992 retries = 10;
1993 do_phy_reset = 1;
1994 do {
1995 if (do_phy_reset) {
1996 err = tg3_bmcr_reset(tp);
1997 if (err)
1998 return err;
1999 do_phy_reset = 0;
2000 }
2001
2002 /* Disable transmitter and interrupt. */
2003 if (tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32))
2004 continue;
2005
2006 reg32 |= 0x3000;
2007 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2008
2009 /* Set full-duplex, 1000 mbps. */
2010 tg3_writephy(tp, MII_BMCR,
Matt Carlson221c5632011-06-13 13:39:01 +00002011 BMCR_FULLDPLX | BMCR_SPEED1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 /* Set to master mode. */
Matt Carlson221c5632011-06-13 13:39:01 +00002014 if (tg3_readphy(tp, MII_CTRL1000, &phy9_orig))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 continue;
2016
Matt Carlson221c5632011-06-13 13:39:01 +00002017 tg3_writephy(tp, MII_CTRL1000,
2018 CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Matt Carlson1d36ba42011-04-20 07:57:42 +00002020 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
2021 if (err)
2022 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 /* Block the PHY control access. */
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002025 tg3_phydsp_write(tp, 0x8005, 0x0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 err = tg3_phy_write_and_check_testpat(tp, &do_phy_reset);
2028 if (!err)
2029 break;
2030 } while (--retries);
2031
2032 err = tg3_phy_reset_chanpat(tp);
2033 if (err)
2034 return err;
2035
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002036 tg3_phydsp_write(tp, 0x8005, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x8200);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002039 tg3_writephy(tp, MII_TG3_DSP_CONTROL, 0x0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Matt Carlson1d36ba42011-04-20 07:57:42 +00002041 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Matt Carlson221c5632011-06-13 13:39:01 +00002043 tg3_writephy(tp, MII_CTRL1000, phy9_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &reg32)) {
2046 reg32 &= ~0x3000;
2047 tg3_writephy(tp, MII_TG3_EXT_CTRL, reg32);
2048 } else if (!err)
2049 err = -EBUSY;
2050
2051 return err;
2052}
2053
2054/* This will reset the tigon3 PHY if there is no valid
2055 * link unless the FORCE argument is non-zero.
2056 */
2057static int tg3_phy_reset(struct tg3 *tp)
2058{
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002059 u32 val, cpmuctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 int err;
2061
Michael Chan60189dd2006-12-17 17:08:07 -08002062 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002063 val = tr32(GRC_MISC_CFG);
2064 tw32_f(GRC_MISC_CFG, val & ~GRC_MISC_CFG_EPHY_IDDQ);
2065 udelay(40);
2066 }
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002067 err = tg3_readphy(tp, MII_BMSR, &val);
2068 err |= tg3_readphy(tp, MII_BMSR, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 if (err != 0)
2070 return -EBUSY;
2071
Michael Chanc8e1e822006-04-29 18:55:17 -07002072 if (netif_running(tp->dev) && netif_carrier_ok(tp->dev)) {
2073 netif_carrier_off(tp->dev);
2074 tg3_link_report(tp);
2075 }
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2078 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2079 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
2080 err = tg3_phy_reset_5703_4_5(tp);
2081 if (err)
2082 return err;
2083 goto out;
2084 }
2085
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002086 cpmuctrl = 0;
2087 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
2088 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
2089 cpmuctrl = tr32(TG3_CPMU_CTRL);
2090 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY)
2091 tw32(TG3_CPMU_CTRL,
2092 cpmuctrl & ~CPMU_CTRL_GPHY_10MB_RXONLY);
2093 }
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 err = tg3_bmcr_reset(tp);
2096 if (err)
2097 return err;
2098
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002099 if (cpmuctrl & CPMU_CTRL_GPHY_10MB_RXONLY) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002100 val = MII_TG3_DSP_EXP8_AEDW | MII_TG3_DSP_EXP8_REJ2MHz;
2101 tg3_phydsp_write(tp, MII_TG3_DSP_EXP8, val);
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002102
2103 tw32(TG3_CPMU_CTRL, cpmuctrl);
2104 }
2105
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002106 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2107 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002108 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2109 if ((val & CPMU_LSPD_1000MB_MACCLK_MASK) ==
2110 CPMU_LSPD_1000MB_MACCLK_12_5) {
2111 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2112 udelay(40);
2113 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2114 }
2115 }
2116
Joe Perches63c3a662011-04-26 08:12:10 +00002117 if (tg3_flag(tp, 5717_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002118 (tp->phy_flags & TG3_PHYFLG_MII_SERDES))
Matt Carlsonecf14102010-01-20 16:58:05 +00002119 return 0;
2120
Matt Carlsonb2a5c192008-04-03 21:44:44 -07002121 tg3_phy_apply_otp(tp);
2122
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002123 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -08002124 tg3_phy_toggle_apd(tp, true);
2125 else
2126 tg3_phy_toggle_apd(tp, false);
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128out:
Matt Carlson1d36ba42011-04-20 07:57:42 +00002129 if ((tp->phy_flags & TG3_PHYFLG_ADC_BUG) &&
2130 !TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00002131 tg3_phydsp_write(tp, 0x201f, 0x2aaa);
2132 tg3_phydsp_write(tp, 0x000a, 0x0323);
Matt Carlson1d36ba42011-04-20 07:57:42 +00002133 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002135
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002136 if (tp->phy_flags & TG3_PHYFLG_5704_A0_BUG) {
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00002137 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
2138 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002140
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002141 if (tp->phy_flags & TG3_PHYFLG_BER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002142 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2143 tg3_phydsp_write(tp, 0x000a, 0x310b);
2144 tg3_phydsp_write(tp, 0x201f, 0x9506);
2145 tg3_phydsp_write(tp, 0x401f, 0x14e2);
2146 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2147 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002148 } else if (tp->phy_flags & TG3_PHYFLG_JITTER_BUG) {
Matt Carlson1d36ba42011-04-20 07:57:42 +00002149 if (!TG3_PHY_AUXCTL_SMDSP_ENABLE(tp)) {
2150 tg3_writephy(tp, MII_TG3_DSP_ADDRESS, 0x000a);
2151 if (tp->phy_flags & TG3_PHYFLG_ADJUST_TRIM) {
2152 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x110b);
2153 tg3_writephy(tp, MII_TG3_TEST1,
2154 MII_TG3_TEST1_TRIM_EN | 0x4);
2155 } else
2156 tg3_writephy(tp, MII_TG3_DSP_RW_PORT, 0x010b);
2157
2158 TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
2159 }
Michael Chanc424cb22006-04-29 18:56:34 -07002160 }
Matt Carlson1d36ba42011-04-20 07:57:42 +00002161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 /* Set Extended packet length bit (bit 14) on all chips that */
2163 /* support jumbo frames */
Matt Carlson79eb6902010-02-17 15:17:03 +00002164 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 /* Cannot do read-modify-write on 5401 */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002166 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Joe Perches63c3a662011-04-26 08:12:10 +00002167 } else if (tg3_flag(tp, JUMBO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /* Set bit 14 with read-modify-write to preserve other bits */
Matt Carlson15ee95c2011-04-20 07:57:40 +00002169 err = tg3_phy_auxctl_read(tp,
2170 MII_TG3_AUXCTL_SHDWSEL_AUXCTL, &val);
2171 if (!err)
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002172 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL,
2173 val | MII_TG3_AUXCTL_ACTL_EXTPKTLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175
2176 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
2177 * jumbo frames transmission.
2178 */
Joe Perches63c3a662011-04-26 08:12:10 +00002179 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002180 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &val))
Matt Carlsonc6cdf432010-04-05 10:19:26 +00002181 tg3_writephy(tp, MII_TG3_EXT_CTRL,
Matt Carlsonf833c4c2010-09-15 09:00:01 +00002182 val | MII_TG3_EXT_CTRL_FIFO_ELASTIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184
Michael Chan715116a2006-09-27 16:09:25 -07002185 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan715116a2006-09-27 16:09:25 -07002186 /* adjust output voltage */
Matt Carlson535ef6e2009-08-25 10:09:36 +00002187 tg3_writephy(tp, MII_TG3_FET_PTEST, 0x12);
Michael Chan715116a2006-09-27 16:09:25 -07002188 }
2189
Matt Carlson9ef8ca92007-07-11 19:48:29 -07002190 tg3_phy_toggle_automdix(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 tg3_phy_set_wirespeed(tp);
2192 return 0;
2193}
2194
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002195#define TG3_GPIO_MSG_DRVR_PRES 0x00000001
2196#define TG3_GPIO_MSG_NEED_VAUX 0x00000002
2197#define TG3_GPIO_MSG_MASK (TG3_GPIO_MSG_DRVR_PRES | \
2198 TG3_GPIO_MSG_NEED_VAUX)
2199#define TG3_GPIO_MSG_ALL_DRVR_PRES_MASK \
2200 ((TG3_GPIO_MSG_DRVR_PRES << 0) | \
2201 (TG3_GPIO_MSG_DRVR_PRES << 4) | \
2202 (TG3_GPIO_MSG_DRVR_PRES << 8) | \
2203 (TG3_GPIO_MSG_DRVR_PRES << 12))
2204
2205#define TG3_GPIO_MSG_ALL_NEED_VAUX_MASK \
2206 ((TG3_GPIO_MSG_NEED_VAUX << 0) | \
2207 (TG3_GPIO_MSG_NEED_VAUX << 4) | \
2208 (TG3_GPIO_MSG_NEED_VAUX << 8) | \
2209 (TG3_GPIO_MSG_NEED_VAUX << 12))
2210
2211static inline u32 tg3_set_function_status(struct tg3 *tp, u32 newstat)
2212{
2213 u32 status, shift;
2214
2215 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2216 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2217 status = tg3_ape_read32(tp, TG3_APE_GPIO_MSG);
2218 else
2219 status = tr32(TG3_CPMU_DRV_STATUS);
2220
2221 shift = TG3_APE_GPIO_MSG_SHIFT + 4 * tp->pci_fn;
2222 status &= ~(TG3_GPIO_MSG_MASK << shift);
2223 status |= (newstat << shift);
2224
2225 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2226 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
2227 tg3_ape_write32(tp, TG3_APE_GPIO_MSG, status);
2228 else
2229 tw32(TG3_CPMU_DRV_STATUS, status);
2230
2231 return status >> TG3_APE_GPIO_MSG_SHIFT;
2232}
2233
Matt Carlson520b2752011-06-13 13:39:02 +00002234static inline int tg3_pwrsrc_switch_to_vmain(struct tg3 *tp)
2235{
2236 if (!tg3_flag(tp, IS_NIC))
2237 return 0;
2238
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002239 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2240 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2241 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
2242 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2243 return -EIO;
Matt Carlson520b2752011-06-13 13:39:02 +00002244
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002245 tg3_set_function_status(tp, TG3_GPIO_MSG_DRVR_PRES);
2246
2247 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2248 TG3_GRC_LCLCTL_PWRSW_DELAY);
2249
2250 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
2251 } else {
2252 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl,
2253 TG3_GRC_LCLCTL_PWRSW_DELAY);
2254 }
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002255
Matt Carlson520b2752011-06-13 13:39:02 +00002256 return 0;
2257}
2258
2259static void tg3_pwrsrc_die_with_vmain(struct tg3 *tp)
2260{
2261 u32 grc_local_ctrl;
2262
2263 if (!tg3_flag(tp, IS_NIC) ||
2264 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2265 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)
2266 return;
2267
2268 grc_local_ctrl = tp->grc_local_ctrl | GRC_LCLCTRL_GPIO_OE1;
2269
2270 tw32_wait_f(GRC_LOCAL_CTRL,
2271 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2272 TG3_GRC_LCLCTL_PWRSW_DELAY);
2273
2274 tw32_wait_f(GRC_LOCAL_CTRL,
2275 grc_local_ctrl,
2276 TG3_GRC_LCLCTL_PWRSW_DELAY);
2277
2278 tw32_wait_f(GRC_LOCAL_CTRL,
2279 grc_local_ctrl | GRC_LCLCTRL_GPIO_OUTPUT1,
2280 TG3_GRC_LCLCTL_PWRSW_DELAY);
2281}
2282
2283static void tg3_pwrsrc_switch_to_vaux(struct tg3 *tp)
2284{
2285 if (!tg3_flag(tp, IS_NIC))
2286 return;
2287
2288 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2289 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2290 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2291 (GRC_LCLCTRL_GPIO_OE0 |
2292 GRC_LCLCTRL_GPIO_OE1 |
2293 GRC_LCLCTRL_GPIO_OE2 |
2294 GRC_LCLCTRL_GPIO_OUTPUT0 |
2295 GRC_LCLCTRL_GPIO_OUTPUT1),
2296 TG3_GRC_LCLCTL_PWRSW_DELAY);
2297 } else if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
2298 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
2299 /* The 5761 non-e device swaps GPIO 0 and GPIO 2. */
2300 u32 grc_local_ctrl = 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 tp->grc_local_ctrl;
2306 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2307 TG3_GRC_LCLCTL_PWRSW_DELAY);
2308
2309 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT2;
2310 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2311 TG3_GRC_LCLCTL_PWRSW_DELAY);
2312
2313 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT0;
2314 tw32_wait_f(GRC_LOCAL_CTRL, grc_local_ctrl,
2315 TG3_GRC_LCLCTL_PWRSW_DELAY);
2316 } else {
2317 u32 no_gpio2;
2318 u32 grc_local_ctrl = 0;
2319
2320 /* Workaround to prevent overdrawing Amps. */
2321 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
2322 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
2323 tw32_wait_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl |
2324 grc_local_ctrl,
2325 TG3_GRC_LCLCTL_PWRSW_DELAY);
2326 }
2327
2328 /* On 5753 and variants, GPIO2 cannot be used. */
2329 no_gpio2 = tp->nic_sram_data_cfg &
2330 NIC_SRAM_DATA_CFG_NO_GPIO2;
2331
2332 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
2333 GRC_LCLCTRL_GPIO_OE1 |
2334 GRC_LCLCTRL_GPIO_OE2 |
2335 GRC_LCLCTRL_GPIO_OUTPUT1 |
2336 GRC_LCLCTRL_GPIO_OUTPUT2;
2337 if (no_gpio2) {
2338 grc_local_ctrl &= ~(GRC_LCLCTRL_GPIO_OE2 |
2339 GRC_LCLCTRL_GPIO_OUTPUT2);
2340 }
2341 tw32_wait_f(GRC_LOCAL_CTRL,
2342 tp->grc_local_ctrl | grc_local_ctrl,
2343 TG3_GRC_LCLCTL_PWRSW_DELAY);
2344
2345 grc_local_ctrl |= GRC_LCLCTRL_GPIO_OUTPUT0;
2346
2347 tw32_wait_f(GRC_LOCAL_CTRL,
2348 tp->grc_local_ctrl | grc_local_ctrl,
2349 TG3_GRC_LCLCTL_PWRSW_DELAY);
2350
2351 if (!no_gpio2) {
2352 grc_local_ctrl &= ~GRC_LCLCTRL_GPIO_OUTPUT2;
2353 tw32_wait_f(GRC_LOCAL_CTRL,
2354 tp->grc_local_ctrl | grc_local_ctrl,
2355 TG3_GRC_LCLCTL_PWRSW_DELAY);
2356 }
2357 }
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002358}
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002359
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002360static void tg3_frob_aux_power_5717(struct tg3 *tp, bool wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002361{
2362 u32 msg = 0;
2363
2364 /* Serialize power state transitions */
2365 if (tg3_ape_lock(tp, TG3_APE_LOCK_GPIO))
2366 return;
2367
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002368 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE) || wol_enable)
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002369 msg = TG3_GPIO_MSG_NEED_VAUX;
2370
2371 msg = tg3_set_function_status(tp, msg);
2372
2373 if (msg & TG3_GPIO_MSG_ALL_DRVR_PRES_MASK)
2374 goto done;
2375
2376 if (msg & TG3_GPIO_MSG_ALL_NEED_VAUX_MASK)
2377 tg3_pwrsrc_switch_to_vaux(tp);
2378 else
2379 tg3_pwrsrc_die_with_vmain(tp);
2380
2381done:
Matt Carlson6f5c8f832011-07-13 09:27:31 +00002382 tg3_ape_unlock(tp, TG3_APE_LOCK_GPIO);
Matt Carlson520b2752011-06-13 13:39:02 +00002383}
2384
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002385static void tg3_frob_aux_power(struct tg3 *tp, bool include_wol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Matt Carlson683644b2011-03-09 16:58:23 +00002387 bool need_vaux = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Matt Carlson334355a2010-01-20 16:58:10 +00002389 /* The GPIOs do something completely different on 57765. */
Joe Perches63c3a662011-04-26 08:12:10 +00002390 if (!tg3_flag(tp, IS_NIC) ||
Matt Carlson334355a2010-01-20 16:58:10 +00002391 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return;
2393
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002394 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
2395 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
2396 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002397 tg3_frob_aux_power_5717(tp, include_wol ?
2398 tg3_flag(tp, WOL_ENABLE) != 0 : 0);
Matt Carlson3a1e19d2011-07-13 09:27:32 +00002399 return;
2400 }
2401
2402 if (tp->pdev_peer && tp->pdev_peer != tp->pdev) {
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002403 struct net_device *dev_peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002405 dev_peer = pci_get_drvdata(tp->pdev_peer);
Matt Carlson683644b2011-03-09 16:58:23 +00002406
Michael Chanbc1c7562006-03-20 17:48:03 -08002407 /* remove_one() may have been run on the peer. */
Matt Carlson683644b2011-03-09 16:58:23 +00002408 if (dev_peer) {
2409 struct tg3 *tp_peer = netdev_priv(dev_peer);
2410
Joe Perches63c3a662011-04-26 08:12:10 +00002411 if (tg3_flag(tp_peer, INIT_COMPLETE))
Matt Carlson683644b2011-03-09 16:58:23 +00002412 return;
2413
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002414 if ((include_wol && tg3_flag(tp_peer, WOL_ENABLE)) ||
Joe Perches63c3a662011-04-26 08:12:10 +00002415 tg3_flag(tp_peer, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002416 need_vaux = true;
2417 }
Michael Chan8c2dc7e2005-12-19 16:26:02 -08002418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Matt Carlsoncd0d7222011-07-13 09:27:33 +00002420 if ((include_wol && tg3_flag(tp, WOL_ENABLE)) ||
2421 tg3_flag(tp, ENABLE_ASF))
Matt Carlson683644b2011-03-09 16:58:23 +00002422 need_vaux = true;
2423
Matt Carlson520b2752011-06-13 13:39:02 +00002424 if (need_vaux)
2425 tg3_pwrsrc_switch_to_vaux(tp);
2426 else
2427 tg3_pwrsrc_die_with_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428}
2429
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002430static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed)
2431{
2432 if (tp->led_ctrl == LED_CTRL_MODE_PHY_2)
2433 return 1;
Matt Carlson79eb6902010-02-17 15:17:03 +00002434 else if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002435 if (speed != SPEED_10)
2436 return 1;
2437 } else if (speed == SPEED_10)
2438 return 1;
2439
2440 return 0;
2441}
2442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443static int tg3_setup_phy(struct tg3 *, int);
2444
2445#define RESET_KIND_SHUTDOWN 0
2446#define RESET_KIND_INIT 1
2447#define RESET_KIND_SUSPEND 2
2448
2449static void tg3_write_sig_post_reset(struct tg3 *, int);
2450static int tg3_halt_cpu(struct tg3 *, u32);
2451
Matt Carlson0a459aa2008-11-03 16:54:15 -08002452static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power)
Michael Chan15c3b692006-03-22 01:06:52 -08002453{
Matt Carlsonce057f02007-11-12 21:08:03 -08002454 u32 val;
2455
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002456 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Michael Chan51297242007-02-13 12:17:57 -08002457 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2458 u32 sg_dig_ctrl = tr32(SG_DIG_CTRL);
2459 u32 serdes_cfg = tr32(MAC_SERDES_CFG);
2460
2461 sg_dig_ctrl |=
2462 SG_DIG_USING_HW_AUTONEG | SG_DIG_SOFT_RESET;
2463 tw32(SG_DIG_CTRL, sg_dig_ctrl);
2464 tw32(MAC_SERDES_CFG, serdes_cfg | (1 << 15));
2465 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002466 return;
Michael Chan51297242007-02-13 12:17:57 -08002467 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002468
Michael Chan60189dd2006-12-17 17:08:07 -08002469 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan60189dd2006-12-17 17:08:07 -08002470 tg3_bmcr_reset(tp);
2471 val = tr32(GRC_MISC_CFG);
2472 tw32_f(GRC_MISC_CFG, val | GRC_MISC_CFG_EPHY_IDDQ);
2473 udelay(40);
2474 return;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002475 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson0e5f7842009-11-02 14:26:38 +00002476 u32 phytest;
2477 if (!tg3_readphy(tp, MII_TG3_FET_TEST, &phytest)) {
2478 u32 phy;
2479
2480 tg3_writephy(tp, MII_ADVERTISE, 0);
2481 tg3_writephy(tp, MII_BMCR,
2482 BMCR_ANENABLE | BMCR_ANRESTART);
2483
2484 tg3_writephy(tp, MII_TG3_FET_TEST,
2485 phytest | MII_TG3_FET_SHADOW_EN);
2486 if (!tg3_readphy(tp, MII_TG3_FET_SHDW_AUXMODE4, &phy)) {
2487 phy |= MII_TG3_FET_SHDW_AUXMODE4_SBPD;
2488 tg3_writephy(tp,
2489 MII_TG3_FET_SHDW_AUXMODE4,
2490 phy);
2491 }
2492 tg3_writephy(tp, MII_TG3_FET_TEST, phytest);
2493 }
2494 return;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002495 } else if (do_low_power) {
Michael Chan715116a2006-09-27 16:09:25 -07002496 tg3_writephy(tp, MII_TG3_EXT_CTRL,
2497 MII_TG3_EXT_CTRL_FORCE_LED_OFF);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002498
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002499 val = MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2500 MII_TG3_AUXCTL_PCTL_SPR_ISOLATE |
2501 MII_TG3_AUXCTL_PCTL_VREG_11V;
2502 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, val);
Michael Chan715116a2006-09-27 16:09:25 -07002503 }
Michael Chan3f7045c2006-09-27 16:02:29 -07002504
Michael Chan15c3b692006-03-22 01:06:52 -08002505 /* The PHY should not be powered down on some chips because
2506 * of bugs.
2507 */
2508 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2509 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
2510 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002511 (tp->phy_flags & TG3_PHYFLG_MII_SERDES)))
Michael Chan15c3b692006-03-22 01:06:52 -08002512 return;
Matt Carlsonce057f02007-11-12 21:08:03 -08002513
Matt Carlsonbcb37f62008-11-03 16:52:09 -08002514 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX ||
2515 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5761_AX) {
Matt Carlsonce057f02007-11-12 21:08:03 -08002516 val = tr32(TG3_CPMU_LSPD_1000MB_CLK);
2517 val &= ~CPMU_LSPD_1000MB_MACCLK_MASK;
2518 val |= CPMU_LSPD_1000MB_MACCLK_12_5;
2519 tw32_f(TG3_CPMU_LSPD_1000MB_CLK, val);
2520 }
2521
Michael Chan15c3b692006-03-22 01:06:52 -08002522 tg3_writephy(tp, MII_BMCR, BMCR_PDOWN);
2523}
2524
Matt Carlson3f007892008-11-03 16:51:36 -08002525/* tp->lock is held. */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002526static int tg3_nvram_lock(struct tg3 *tp)
2527{
Joe Perches63c3a662011-04-26 08:12:10 +00002528 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002529 int i;
2530
2531 if (tp->nvram_lock_cnt == 0) {
2532 tw32(NVRAM_SWARB, SWARB_REQ_SET1);
2533 for (i = 0; i < 8000; i++) {
2534 if (tr32(NVRAM_SWARB) & SWARB_GNT1)
2535 break;
2536 udelay(20);
2537 }
2538 if (i == 8000) {
2539 tw32(NVRAM_SWARB, SWARB_REQ_CLR1);
2540 return -ENODEV;
2541 }
2542 }
2543 tp->nvram_lock_cnt++;
2544 }
2545 return 0;
2546}
2547
2548/* tp->lock is held. */
2549static void tg3_nvram_unlock(struct tg3 *tp)
2550{
Joe Perches63c3a662011-04-26 08:12:10 +00002551 if (tg3_flag(tp, NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002552 if (tp->nvram_lock_cnt > 0)
2553 tp->nvram_lock_cnt--;
2554 if (tp->nvram_lock_cnt == 0)
2555 tw32_f(NVRAM_SWARB, SWARB_REQ_CLR1);
2556 }
2557}
2558
2559/* tp->lock is held. */
2560static void tg3_enable_nvram_access(struct tg3 *tp)
2561{
Joe Perches63c3a662011-04-26 08:12:10 +00002562 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002563 u32 nvaccess = tr32(NVRAM_ACCESS);
2564
2565 tw32(NVRAM_ACCESS, nvaccess | ACCESS_ENABLE);
2566 }
2567}
2568
2569/* tp->lock is held. */
2570static void tg3_disable_nvram_access(struct tg3 *tp)
2571{
Joe Perches63c3a662011-04-26 08:12:10 +00002572 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM)) {
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002573 u32 nvaccess = tr32(NVRAM_ACCESS);
2574
2575 tw32(NVRAM_ACCESS, nvaccess & ~ACCESS_ENABLE);
2576 }
2577}
2578
2579static int tg3_nvram_read_using_eeprom(struct tg3 *tp,
2580 u32 offset, u32 *val)
2581{
2582 u32 tmp;
2583 int i;
2584
2585 if (offset > EEPROM_ADDR_ADDR_MASK || (offset % 4) != 0)
2586 return -EINVAL;
2587
2588 tmp = tr32(GRC_EEPROM_ADDR) & ~(EEPROM_ADDR_ADDR_MASK |
2589 EEPROM_ADDR_DEVID_MASK |
2590 EEPROM_ADDR_READ);
2591 tw32(GRC_EEPROM_ADDR,
2592 tmp |
2593 (0 << EEPROM_ADDR_DEVID_SHIFT) |
2594 ((offset << EEPROM_ADDR_ADDR_SHIFT) &
2595 EEPROM_ADDR_ADDR_MASK) |
2596 EEPROM_ADDR_READ | EEPROM_ADDR_START);
2597
2598 for (i = 0; i < 1000; i++) {
2599 tmp = tr32(GRC_EEPROM_ADDR);
2600
2601 if (tmp & EEPROM_ADDR_COMPLETE)
2602 break;
2603 msleep(1);
2604 }
2605 if (!(tmp & EEPROM_ADDR_COMPLETE))
2606 return -EBUSY;
2607
Matt Carlson62cedd12009-04-20 14:52:29 -07002608 tmp = tr32(GRC_EEPROM_DATA);
2609
2610 /*
2611 * The data will always be opposite the native endian
2612 * format. Perform a blind byteswap to compensate.
2613 */
2614 *val = swab32(tmp);
2615
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002616 return 0;
2617}
2618
2619#define NVRAM_CMD_TIMEOUT 10000
2620
2621static int tg3_nvram_exec_cmd(struct tg3 *tp, u32 nvram_cmd)
2622{
2623 int i;
2624
2625 tw32(NVRAM_CMD, nvram_cmd);
2626 for (i = 0; i < NVRAM_CMD_TIMEOUT; i++) {
2627 udelay(10);
2628 if (tr32(NVRAM_CMD) & NVRAM_CMD_DONE) {
2629 udelay(10);
2630 break;
2631 }
2632 }
2633
2634 if (i == NVRAM_CMD_TIMEOUT)
2635 return -EBUSY;
2636
2637 return 0;
2638}
2639
2640static u32 tg3_nvram_phys_addr(struct tg3 *tp, u32 addr)
2641{
Joe Perches63c3a662011-04-26 08:12:10 +00002642 if (tg3_flag(tp, NVRAM) &&
2643 tg3_flag(tp, NVRAM_BUFFERED) &&
2644 tg3_flag(tp, FLASH) &&
2645 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002646 (tp->nvram_jedecnum == JEDEC_ATMEL))
2647
2648 addr = ((addr / tp->nvram_pagesize) <<
2649 ATMEL_AT45DB0X1B_PAGE_POS) +
2650 (addr % tp->nvram_pagesize);
2651
2652 return addr;
2653}
2654
2655static u32 tg3_nvram_logical_addr(struct tg3 *tp, u32 addr)
2656{
Joe Perches63c3a662011-04-26 08:12:10 +00002657 if (tg3_flag(tp, NVRAM) &&
2658 tg3_flag(tp, NVRAM_BUFFERED) &&
2659 tg3_flag(tp, FLASH) &&
2660 !tg3_flag(tp, NO_NVRAM_ADDR_TRANS) &&
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002661 (tp->nvram_jedecnum == JEDEC_ATMEL))
2662
2663 addr = ((addr >> ATMEL_AT45DB0X1B_PAGE_POS) *
2664 tp->nvram_pagesize) +
2665 (addr & ((1 << ATMEL_AT45DB0X1B_PAGE_POS) - 1));
2666
2667 return addr;
2668}
2669
Matt Carlsone4f34112009-02-25 14:25:00 +00002670/* NOTE: Data read in from NVRAM is byteswapped according to
2671 * the byteswapping settings for all other register accesses.
2672 * tg3 devices are BE devices, so on a BE machine, the data
2673 * returned will be exactly as it is seen in NVRAM. On a LE
2674 * machine, the 32-bit value will be byteswapped.
2675 */
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002676static int tg3_nvram_read(struct tg3 *tp, u32 offset, u32 *val)
2677{
2678 int ret;
2679
Joe Perches63c3a662011-04-26 08:12:10 +00002680 if (!tg3_flag(tp, NVRAM))
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002681 return tg3_nvram_read_using_eeprom(tp, offset, val);
2682
2683 offset = tg3_nvram_phys_addr(tp, offset);
2684
2685 if (offset > NVRAM_ADDR_MSK)
2686 return -EINVAL;
2687
2688 ret = tg3_nvram_lock(tp);
2689 if (ret)
2690 return ret;
2691
2692 tg3_enable_nvram_access(tp);
2693
2694 tw32(NVRAM_ADDR, offset);
2695 ret = tg3_nvram_exec_cmd(tp, NVRAM_CMD_RD | NVRAM_CMD_GO |
2696 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_DONE);
2697
2698 if (ret == 0)
Matt Carlsone4f34112009-02-25 14:25:00 +00002699 *val = tr32(NVRAM_RDDATA);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002700
2701 tg3_disable_nvram_access(tp);
2702
2703 tg3_nvram_unlock(tp);
2704
2705 return ret;
2706}
2707
Matt Carlsona9dc5292009-02-25 14:25:30 +00002708/* Ensures NVRAM data is in bytestream format. */
2709static int tg3_nvram_read_be32(struct tg3 *tp, u32 offset, __be32 *val)
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002710{
2711 u32 v;
Matt Carlsona9dc5292009-02-25 14:25:30 +00002712 int res = tg3_nvram_read(tp, offset, &v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002713 if (!res)
Matt Carlsona9dc5292009-02-25 14:25:30 +00002714 *val = cpu_to_be32(v);
Matt Carlsonffbcfed2009-02-25 14:24:28 +00002715 return res;
2716}
2717
2718/* tp->lock is held. */
Matt Carlson3f007892008-11-03 16:51:36 -08002719static void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
2720{
2721 u32 addr_high, addr_low;
2722 int i;
2723
2724 addr_high = ((tp->dev->dev_addr[0] << 8) |
2725 tp->dev->dev_addr[1]);
2726 addr_low = ((tp->dev->dev_addr[2] << 24) |
2727 (tp->dev->dev_addr[3] << 16) |
2728 (tp->dev->dev_addr[4] << 8) |
2729 (tp->dev->dev_addr[5] << 0));
2730 for (i = 0; i < 4; i++) {
2731 if (i == 1 && skip_mac_1)
2732 continue;
2733 tw32(MAC_ADDR_0_HIGH + (i * 8), addr_high);
2734 tw32(MAC_ADDR_0_LOW + (i * 8), addr_low);
2735 }
2736
2737 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
2738 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
2739 for (i = 0; i < 12; i++) {
2740 tw32(MAC_EXTADDR_0_HIGH + (i * 8), addr_high);
2741 tw32(MAC_EXTADDR_0_LOW + (i * 8), addr_low);
2742 }
2743 }
2744
2745 addr_high = (tp->dev->dev_addr[0] +
2746 tp->dev->dev_addr[1] +
2747 tp->dev->dev_addr[2] +
2748 tp->dev->dev_addr[3] +
2749 tp->dev->dev_addr[4] +
2750 tp->dev->dev_addr[5]) &
2751 TX_BACKOFF_SEED_MASK;
2752 tw32(MAC_TX_BACKOFF_SEED, addr_high);
2753}
2754
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002755static void tg3_enable_register_access(struct tg3 *tp)
2756{
2757 /*
2758 * Make sure register accesses (indirect or otherwise) will function
2759 * correctly.
2760 */
2761 pci_write_config_dword(tp->pdev,
2762 TG3PCI_MISC_HOST_CTRL, tp->misc_host_ctrl);
2763}
2764
2765static int tg3_power_up(struct tg3 *tp)
2766{
Matt Carlsonbed98292011-07-13 09:27:29 +00002767 int err;
2768
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002769 tg3_enable_register_access(tp);
2770
Matt Carlsonbed98292011-07-13 09:27:29 +00002771 err = pci_set_power_state(tp->pdev, PCI_D0);
2772 if (!err) {
2773 /* Switch out of Vaux if it is a NIC */
2774 tg3_pwrsrc_switch_to_vmain(tp);
2775 } else {
2776 netdev_err(tp->dev, "Transition to D0 failed\n");
2777 }
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002778
Matt Carlsonbed98292011-07-13 09:27:29 +00002779 return err;
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002780}
2781
2782static int tg3_power_down_prepare(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
2784 u32 misc_host_ctrl;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002785 bool device_should_wake, do_low_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002787 tg3_enable_register_access(tp);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002788
2789 /* Restore the CLKREQ setting. */
Joe Perches63c3a662011-04-26 08:12:10 +00002790 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002791 u16 lnkctl;
2792
2793 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00002794 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002795 &lnkctl);
2796 lnkctl |= PCI_EXP_LNKCTL_CLKREQ_EN;
2797 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00002798 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08002799 lnkctl);
2800 }
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
2803 tw32(TG3PCI_MISC_HOST_CTRL,
2804 misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT);
2805
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00002806 device_should_wake = device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00002807 tg3_flag(tp, WOL_ENABLE);
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002808
Joe Perches63c3a662011-04-26 08:12:10 +00002809 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson0a459aa2008-11-03 16:54:15 -08002810 do_low_power = false;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002811 if ((tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) &&
Matt Carlson80096062010-08-02 11:26:06 +00002812 !(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002813 struct phy_device *phydev;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002814 u32 phyid, advertising;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002815
Matt Carlson3f0e3ad2009-11-02 14:24:36 +00002816 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002817
Matt Carlson80096062010-08-02 11:26:06 +00002818 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002819
2820 tp->link_config.orig_speed = phydev->speed;
2821 tp->link_config.orig_duplex = phydev->duplex;
2822 tp->link_config.orig_autoneg = phydev->autoneg;
2823 tp->link_config.orig_advertising = phydev->advertising;
2824
2825 advertising = ADVERTISED_TP |
2826 ADVERTISED_Pause |
2827 ADVERTISED_Autoneg |
2828 ADVERTISED_10baseT_Half;
2829
Joe Perches63c3a662011-04-26 08:12:10 +00002830 if (tg3_flag(tp, ENABLE_ASF) || device_should_wake) {
2831 if (tg3_flag(tp, WOL_SPEED_100MB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002832 advertising |=
2833 ADVERTISED_100baseT_Half |
2834 ADVERTISED_100baseT_Full |
2835 ADVERTISED_10baseT_Full;
2836 else
2837 advertising |= ADVERTISED_10baseT_Full;
2838 }
2839
2840 phydev->advertising = advertising;
2841
2842 phy_start_aneg(phydev);
Matt Carlson0a459aa2008-11-03 16:54:15 -08002843
2844 phyid = phydev->drv->phy_id & phydev->drv->phy_id_mask;
Matt Carlson6a443a02010-02-17 15:17:04 +00002845 if (phyid != PHY_ID_BCMAC131) {
2846 phyid &= PHY_BCM_OUI_MASK;
2847 if (phyid == PHY_BCM_OUI_1 ||
2848 phyid == PHY_BCM_OUI_2 ||
2849 phyid == PHY_BCM_OUI_3)
Matt Carlson0a459aa2008-11-03 16:54:15 -08002850 do_low_power = true;
2851 }
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07002852 }
Matt Carlsondd477002008-05-25 23:45:58 -07002853 } else {
Matt Carlson20232762008-12-21 20:18:56 -08002854 do_low_power = true;
Matt Carlson0a459aa2008-11-03 16:54:15 -08002855
Matt Carlson80096062010-08-02 11:26:06 +00002856 if (!(tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
2857 tp->phy_flags |= TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07002858 tp->link_config.orig_speed = tp->link_config.speed;
2859 tp->link_config.orig_duplex = tp->link_config.duplex;
2860 tp->link_config.orig_autoneg = tp->link_config.autoneg;
2861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002863 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Matt Carlsondd477002008-05-25 23:45:58 -07002864 tp->link_config.speed = SPEED_10;
2865 tp->link_config.duplex = DUPLEX_HALF;
2866 tp->link_config.autoneg = AUTONEG_ENABLE;
2867 tg3_setup_phy(tp, 0);
2868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
2870
Michael Chanb5d37722006-09-27 16:06:21 -07002871 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
2872 u32 val;
2873
2874 val = tr32(GRC_VCPU_EXT_CTRL);
2875 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_DISABLE_WOL);
Joe Perches63c3a662011-04-26 08:12:10 +00002876 } else if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chan6921d202005-12-13 21:15:53 -08002877 int i;
2878 u32 val;
2879
2880 for (i = 0; i < 200; i++) {
2881 tg3_read_mem(tp, NIC_SRAM_FW_ASF_STATUS_MBOX, &val);
2882 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
2883 break;
2884 msleep(1);
2885 }
2886 }
Joe Perches63c3a662011-04-26 08:12:10 +00002887 if (tg3_flag(tp, WOL_CAP))
Gary Zambranoa85feb82007-05-05 11:52:19 -07002888 tg3_write_mem(tp, NIC_SRAM_WOL_MBOX, WOL_SIGNATURE |
2889 WOL_DRV_STATE_SHUTDOWN |
2890 WOL_DRV_WOL |
2891 WOL_SET_MAGIC_PKT);
Michael Chan6921d202005-12-13 21:15:53 -08002892
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002893 if (device_should_wake) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 u32 mac_mode;
2895
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002896 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00002897 if (do_low_power &&
2898 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
2899 tg3_phy_auxctl_write(tp,
2900 MII_TG3_AUXCTL_SHDWSEL_PWRCTL,
2901 MII_TG3_AUXCTL_PCTL_WOL_EN |
2902 MII_TG3_AUXCTL_PCTL_100TX_LPWR |
2903 MII_TG3_AUXCTL_PCTL_CL_AB_TXDAC);
Matt Carlsondd477002008-05-25 23:45:58 -07002904 udelay(40);
2905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Matt Carlsonf07e9af2010-08-02 11:26:07 +00002907 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan3f7045c2006-09-27 16:02:29 -07002908 mac_mode = MAC_MODE_PORT_MODE_GMII;
2909 else
2910 mac_mode = MAC_MODE_PORT_MODE_MII;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002912 mac_mode |= tp->mac_mode & MAC_MODE_LINK_POLARITY;
2913 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
2914 ASIC_REV_5700) {
Joe Perches63c3a662011-04-26 08:12:10 +00002915 u32 speed = tg3_flag(tp, WOL_SPEED_100MB) ?
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07002916 SPEED_100 : SPEED_10;
2917 if (tg3_5700_link_polarity(tp, speed))
2918 mac_mode |= MAC_MODE_LINK_POLARITY;
2919 else
2920 mac_mode &= ~MAC_MODE_LINK_POLARITY;
2921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 } else {
2923 mac_mode = MAC_MODE_PORT_MODE_TBI;
2924 }
2925
Joe Perches63c3a662011-04-26 08:12:10 +00002926 if (!tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 tw32(MAC_LED_CTRL, tp->led_ctrl);
2928
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002929 mac_mode |= MAC_MODE_MAGIC_PKT_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00002930 if ((tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS)) &&
2931 (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)))
Matt Carlson05ac4cb2008-11-03 16:53:46 -08002932 mac_mode |= MAC_MODE_KEEP_FRAME_IN_WOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Joe Perches63c3a662011-04-26 08:12:10 +00002934 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +00002935 mac_mode |= MAC_MODE_APE_TX_EN |
2936 MAC_MODE_APE_RX_EN |
2937 MAC_MODE_TDE_ENABLE;
Matt Carlson3bda1252008-08-15 14:08:22 -07002938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 tw32_f(MAC_MODE, mac_mode);
2940 udelay(100);
2941
2942 tw32_f(MAC_RX_MODE, RX_MODE_ENABLE);
2943 udelay(10);
2944 }
2945
Joe Perches63c3a662011-04-26 08:12:10 +00002946 if (!tg3_flag(tp, WOL_SPEED_100MB) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2948 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
2949 u32 base_val;
2950
2951 base_val = tp->pci_clock_ctrl;
2952 base_val |= (CLOCK_CTRL_RXCLK_DISABLE |
2953 CLOCK_CTRL_TXCLK_DISABLE);
2954
Michael Chanb401e9e2005-12-19 16:27:04 -08002955 tw32_wait_f(TG3PCI_CLOCK_CTRL, base_val | CLOCK_CTRL_ALTCLK |
2956 CLOCK_CTRL_PWRDOWN_PLL133, 40);
Joe Perches63c3a662011-04-26 08:12:10 +00002957 } else if (tg3_flag(tp, 5780_CLASS) ||
2958 tg3_flag(tp, CPMU_PRESENT) ||
Matt Carlson6ff6f812011-05-19 12:12:54 +00002959 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan4cf78e42005-07-25 12:29:19 -07002960 /* do nothing */
Joe Perches63c3a662011-04-26 08:12:10 +00002961 } else if (!(tg3_flag(tp, 5750_PLUS) && tg3_flag(tp, ENABLE_ASF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 u32 newbits1, newbits2;
2963
2964 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2965 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2966 newbits1 = (CLOCK_CTRL_RXCLK_DISABLE |
2967 CLOCK_CTRL_TXCLK_DISABLE |
2968 CLOCK_CTRL_ALTCLK);
2969 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
Joe Perches63c3a662011-04-26 08:12:10 +00002970 } else if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 newbits1 = CLOCK_CTRL_625_CORE;
2972 newbits2 = newbits1 | CLOCK_CTRL_ALTCLK;
2973 } else {
2974 newbits1 = CLOCK_CTRL_ALTCLK;
2975 newbits2 = newbits1 | CLOCK_CTRL_44MHZ_CORE;
2976 }
2977
Michael Chanb401e9e2005-12-19 16:27:04 -08002978 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits1,
2979 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Michael Chanb401e9e2005-12-19 16:27:04 -08002981 tw32_wait_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl | newbits2,
2982 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Joe Perches63c3a662011-04-26 08:12:10 +00002984 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 u32 newbits3;
2986
2987 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
2988 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
2989 newbits3 = (CLOCK_CTRL_RXCLK_DISABLE |
2990 CLOCK_CTRL_TXCLK_DISABLE |
2991 CLOCK_CTRL_44MHZ_CORE);
2992 } else {
2993 newbits3 = CLOCK_CTRL_44MHZ_CORE;
2994 }
2995
Michael Chanb401e9e2005-12-19 16:27:04 -08002996 tw32_wait_f(TG3PCI_CLOCK_CTRL,
2997 tp->pci_clock_ctrl | newbits3, 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 }
2999 }
3000
Joe Perches63c3a662011-04-26 08:12:10 +00003001 if (!(device_should_wake) && !tg3_flag(tp, ENABLE_ASF))
Matt Carlson0a459aa2008-11-03 16:54:15 -08003002 tg3_power_down_phy(tp, do_low_power);
Michael Chan6921d202005-12-13 21:15:53 -08003003
Matt Carlsoncd0d7222011-07-13 09:27:33 +00003004 tg3_frob_aux_power(tp, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
3006 /* Workaround for unstable PLL clock */
3007 if ((GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX) ||
3008 (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX)) {
3009 u32 val = tr32(0x7d00);
3010
3011 val &= ~((1 << 16) | (1 << 4) | (1 << 2) | (1 << 1) | 1);
3012 tw32(0x7d00, val);
Joe Perches63c3a662011-04-26 08:12:10 +00003013 if (!tg3_flag(tp, ENABLE_ASF)) {
Michael Chanec41c7d2006-01-17 02:40:55 -08003014 int err;
3015
3016 err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 tg3_halt_cpu(tp, RX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -08003018 if (!err)
3019 tg3_nvram_unlock(tp);
Michael Chan6921d202005-12-13 21:15:53 -08003020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 }
3022
Michael Chanbbadf502006-04-06 21:46:34 -07003023 tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN);
3024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 return 0;
3026}
3027
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003028static void tg3_power_down(struct tg3 *tp)
3029{
3030 tg3_power_down_prepare(tp);
3031
Joe Perches63c3a662011-04-26 08:12:10 +00003032 pci_wake_from_d3(tp->pdev, tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00003033 pci_set_power_state(tp->pdev, PCI_D3hot);
3034}
3035
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036static void tg3_aux_stat_to_speed_duplex(struct tg3 *tp, u32 val, u16 *speed, u8 *duplex)
3037{
3038 switch (val & MII_TG3_AUX_STAT_SPDMASK) {
3039 case MII_TG3_AUX_STAT_10HALF:
3040 *speed = SPEED_10;
3041 *duplex = DUPLEX_HALF;
3042 break;
3043
3044 case MII_TG3_AUX_STAT_10FULL:
3045 *speed = SPEED_10;
3046 *duplex = DUPLEX_FULL;
3047 break;
3048
3049 case MII_TG3_AUX_STAT_100HALF:
3050 *speed = SPEED_100;
3051 *duplex = DUPLEX_HALF;
3052 break;
3053
3054 case MII_TG3_AUX_STAT_100FULL:
3055 *speed = SPEED_100;
3056 *duplex = DUPLEX_FULL;
3057 break;
3058
3059 case MII_TG3_AUX_STAT_1000HALF:
3060 *speed = SPEED_1000;
3061 *duplex = DUPLEX_HALF;
3062 break;
3063
3064 case MII_TG3_AUX_STAT_1000FULL:
3065 *speed = SPEED_1000;
3066 *duplex = DUPLEX_FULL;
3067 break;
3068
3069 default:
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003070 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Michael Chan715116a2006-09-27 16:09:25 -07003071 *speed = (val & MII_TG3_AUX_STAT_100) ? SPEED_100 :
3072 SPEED_10;
3073 *duplex = (val & MII_TG3_AUX_STAT_FULL) ? DUPLEX_FULL :
3074 DUPLEX_HALF;
3075 break;
3076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 *speed = SPEED_INVALID;
3078 *duplex = DUPLEX_INVALID;
3079 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081}
3082
Matt Carlson42b64a42011-05-19 12:12:49 +00003083static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
Matt Carlson42b64a42011-05-19 12:12:49 +00003085 int err = 0;
3086 u32 val, new_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Matt Carlson42b64a42011-05-19 12:12:49 +00003088 new_adv = ADVERTISE_CSMA;
3089 if (advertise & ADVERTISED_10baseT_Half)
3090 new_adv |= ADVERTISE_10HALF;
3091 if (advertise & ADVERTISED_10baseT_Full)
3092 new_adv |= ADVERTISE_10FULL;
3093 if (advertise & ADVERTISED_100baseT_Half)
3094 new_adv |= ADVERTISE_100HALF;
3095 if (advertise & ADVERTISED_100baseT_Full)
3096 new_adv |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Matt Carlson42b64a42011-05-19 12:12:49 +00003098 new_adv |= tg3_advert_flowctrl_1000T(flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Matt Carlson42b64a42011-05-19 12:12:49 +00003100 err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
3101 if (err)
3102 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Matt Carlson42b64a42011-05-19 12:12:49 +00003104 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3105 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003106
Matt Carlson42b64a42011-05-19 12:12:49 +00003107 new_adv = 0;
3108 if (advertise & ADVERTISED_1000baseT_Half)
Matt Carlson221c5632011-06-13 13:39:01 +00003109 new_adv |= ADVERTISE_1000HALF;
Matt Carlson42b64a42011-05-19 12:12:49 +00003110 if (advertise & ADVERTISED_1000baseT_Full)
Matt Carlson221c5632011-06-13 13:39:01 +00003111 new_adv |= ADVERTISE_1000FULL;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003112
Matt Carlson42b64a42011-05-19 12:12:49 +00003113 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3114 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0)
Matt Carlson221c5632011-06-13 13:39:01 +00003115 new_adv |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
Matt Carlson221c5632011-06-13 13:39:01 +00003117 err = tg3_writephy(tp, MII_CTRL1000, new_adv);
Matt Carlson42b64a42011-05-19 12:12:49 +00003118 if (err)
3119 goto done;
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003120
Matt Carlson42b64a42011-05-19 12:12:49 +00003121 if (!(tp->phy_flags & TG3_PHYFLG_EEE_CAP))
3122 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Matt Carlson42b64a42011-05-19 12:12:49 +00003124 tw32(TG3_CPMU_EEE_MODE,
3125 tr32(TG3_CPMU_EEE_MODE) & ~TG3_CPMU_EEEMD_LPI_ENABLE);
Matt Carlsonba4d07a2007-12-20 20:08:00 -08003126
Matt Carlson42b64a42011-05-19 12:12:49 +00003127 err = TG3_PHY_AUXCTL_SMDSP_ENABLE(tp);
3128 if (!err) {
3129 u32 err2;
Matt Carlson52b02d02010-10-14 10:37:41 +00003130
Matt Carlson21a00ab2011-01-25 15:58:55 +00003131 switch (GET_ASIC_REV(tp->pci_chip_rev_id)) {
3132 case ASIC_REV_5717:
3133 case ASIC_REV_57765:
3134 if (!tg3_phydsp_read(tp, MII_TG3_DSP_CH34TP2, &val))
3135 tg3_phydsp_write(tp, MII_TG3_DSP_CH34TP2, val |
3136 MII_TG3_DSP_CH34TP2_HIBW01);
3137 /* Fall through */
3138 case ASIC_REV_5719:
3139 val = MII_TG3_DSP_TAP26_ALNOKO |
3140 MII_TG3_DSP_TAP26_RMRXSTO |
3141 MII_TG3_DSP_TAP26_OPCSINPT;
3142 tg3_phydsp_write(tp, MII_TG3_DSP_TAP26, val);
3143 }
Matt Carlson52b02d02010-10-14 10:37:41 +00003144
Matt Carlsona6b68da2010-12-06 08:28:52 +00003145 val = 0;
Matt Carlson42b64a42011-05-19 12:12:49 +00003146 /* Advertise 100-BaseTX EEE ability */
3147 if (advertise & ADVERTISED_100baseT_Full)
3148 val |= MDIO_AN_EEE_ADV_100TX;
3149 /* Advertise 1000-BaseT EEE ability */
3150 if (advertise & ADVERTISED_1000baseT_Full)
3151 val |= MDIO_AN_EEE_ADV_1000T;
3152 err = tg3_phy_cl45_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, val);
Matt Carlson52b02d02010-10-14 10:37:41 +00003153
Matt Carlson42b64a42011-05-19 12:12:49 +00003154 err2 = TG3_PHY_AUXCTL_SMDSP_DISABLE(tp);
3155 if (!err)
3156 err = err2;
3157 }
3158
3159done:
3160 return err;
3161}
3162
3163static void tg3_phy_copper_begin(struct tg3 *tp)
3164{
3165 u32 new_adv;
3166 int i;
3167
3168 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
3169 new_adv = ADVERTISED_10baseT_Half |
3170 ADVERTISED_10baseT_Full;
3171 if (tg3_flag(tp, WOL_SPEED_100MB))
3172 new_adv |= ADVERTISED_100baseT_Half |
3173 ADVERTISED_100baseT_Full;
3174
3175 tg3_phy_autoneg_cfg(tp, new_adv,
3176 FLOW_CTRL_TX | FLOW_CTRL_RX);
3177 } else if (tp->link_config.speed == SPEED_INVALID) {
3178 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
3179 tp->link_config.advertising &=
3180 ~(ADVERTISED_1000baseT_Half |
3181 ADVERTISED_1000baseT_Full);
3182
3183 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
3184 tp->link_config.flowctrl);
3185 } else {
3186 /* Asking for a specific link mode. */
3187 if (tp->link_config.speed == SPEED_1000) {
3188 if (tp->link_config.duplex == DUPLEX_FULL)
3189 new_adv = ADVERTISED_1000baseT_Full;
3190 else
3191 new_adv = ADVERTISED_1000baseT_Half;
3192 } else if (tp->link_config.speed == SPEED_100) {
3193 if (tp->link_config.duplex == DUPLEX_FULL)
3194 new_adv = ADVERTISED_100baseT_Full;
3195 else
3196 new_adv = ADVERTISED_100baseT_Half;
3197 } else {
3198 if (tp->link_config.duplex == DUPLEX_FULL)
3199 new_adv = ADVERTISED_10baseT_Full;
3200 else
3201 new_adv = ADVERTISED_10baseT_Half;
3202 }
3203
3204 tg3_phy_autoneg_cfg(tp, new_adv,
3205 tp->link_config.flowctrl);
Matt Carlson52b02d02010-10-14 10:37:41 +00003206 }
3207
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 if (tp->link_config.autoneg == AUTONEG_DISABLE &&
3209 tp->link_config.speed != SPEED_INVALID) {
3210 u32 bmcr, orig_bmcr;
3211
3212 tp->link_config.active_speed = tp->link_config.speed;
3213 tp->link_config.active_duplex = tp->link_config.duplex;
3214
3215 bmcr = 0;
3216 switch (tp->link_config.speed) {
3217 default:
3218 case SPEED_10:
3219 break;
3220
3221 case SPEED_100:
3222 bmcr |= BMCR_SPEED100;
3223 break;
3224
3225 case SPEED_1000:
Matt Carlson221c5632011-06-13 13:39:01 +00003226 bmcr |= BMCR_SPEED1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230 if (tp->link_config.duplex == DUPLEX_FULL)
3231 bmcr |= BMCR_FULLDPLX;
3232
3233 if (!tg3_readphy(tp, MII_BMCR, &orig_bmcr) &&
3234 (bmcr != orig_bmcr)) {
3235 tg3_writephy(tp, MII_BMCR, BMCR_LOOPBACK);
3236 for (i = 0; i < 1500; i++) {
3237 u32 tmp;
3238
3239 udelay(10);
3240 if (tg3_readphy(tp, MII_BMSR, &tmp) ||
3241 tg3_readphy(tp, MII_BMSR, &tmp))
3242 continue;
3243 if (!(tmp & BMSR_LSTATUS)) {
3244 udelay(40);
3245 break;
3246 }
3247 }
3248 tg3_writephy(tp, MII_BMCR, bmcr);
3249 udelay(40);
3250 }
3251 } else {
3252 tg3_writephy(tp, MII_BMCR,
3253 BMCR_ANENABLE | BMCR_ANRESTART);
3254 }
3255}
3256
3257static int tg3_init_5401phy_dsp(struct tg3 *tp)
3258{
3259 int err;
3260
3261 /* Turn off tap power management. */
3262 /* Set Extended packet length bit */
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003263 err = tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_AUXCTL, 0x4c20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Matt Carlson6ee7c0a2010-08-02 11:26:04 +00003265 err |= tg3_phydsp_write(tp, 0x0012, 0x1804);
3266 err |= tg3_phydsp_write(tp, 0x0013, 0x1204);
3267 err |= tg3_phydsp_write(tp, 0x8006, 0x0132);
3268 err |= tg3_phydsp_write(tp, 0x8006, 0x0232);
3269 err |= tg3_phydsp_write(tp, 0x201f, 0x0a20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
3271 udelay(40);
3272
3273 return err;
3274}
3275
Michael Chan3600d912006-12-07 00:21:48 -08003276static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277{
Michael Chan3600d912006-12-07 00:21:48 -08003278 u32 adv_reg, all_mask = 0;
3279
3280 if (mask & ADVERTISED_10baseT_Half)
3281 all_mask |= ADVERTISE_10HALF;
3282 if (mask & ADVERTISED_10baseT_Full)
3283 all_mask |= ADVERTISE_10FULL;
3284 if (mask & ADVERTISED_100baseT_Half)
3285 all_mask |= ADVERTISE_100HALF;
3286 if (mask & ADVERTISED_100baseT_Full)
3287 all_mask |= ADVERTISE_100FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
3289 if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
3290 return 0;
3291
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 if ((adv_reg & all_mask) != all_mask)
3293 return 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003294 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 u32 tg3_ctrl;
3296
Michael Chan3600d912006-12-07 00:21:48 -08003297 all_mask = 0;
3298 if (mask & ADVERTISED_1000baseT_Half)
3299 all_mask |= ADVERTISE_1000HALF;
3300 if (mask & ADVERTISED_1000baseT_Full)
3301 all_mask |= ADVERTISE_1000FULL;
3302
Matt Carlson221c5632011-06-13 13:39:01 +00003303 if (tg3_readphy(tp, MII_CTRL1000, &tg3_ctrl))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 return 0;
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 if ((tg3_ctrl & all_mask) != all_mask)
3307 return 0;
3308 }
3309 return 1;
3310}
3311
Matt Carlsonef167e22007-12-20 20:10:01 -08003312static int tg3_adv_1000T_flowctrl_ok(struct tg3 *tp, u32 *lcladv, u32 *rmtadv)
3313{
3314 u32 curadv, reqadv;
3315
3316 if (tg3_readphy(tp, MII_ADVERTISE, lcladv))
3317 return 1;
3318
3319 curadv = *lcladv & (ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
3320 reqadv = tg3_advert_flowctrl_1000T(tp->link_config.flowctrl);
3321
3322 if (tp->link_config.active_duplex == DUPLEX_FULL) {
3323 if (curadv != reqadv)
3324 return 0;
3325
Joe Perches63c3a662011-04-26 08:12:10 +00003326 if (tg3_flag(tp, PAUSE_AUTONEG))
Matt Carlsonef167e22007-12-20 20:10:01 -08003327 tg3_readphy(tp, MII_LPA, rmtadv);
3328 } else {
3329 /* Reprogram the advertisement register, even if it
3330 * does not affect the current link. If the link
3331 * gets renegotiated in the future, we can save an
3332 * additional renegotiation cycle by advertising
3333 * it correctly in the first place.
3334 */
3335 if (curadv != reqadv) {
3336 *lcladv &= ~(ADVERTISE_PAUSE_CAP |
3337 ADVERTISE_PAUSE_ASYM);
3338 tg3_writephy(tp, MII_ADVERTISE, *lcladv | reqadv);
3339 }
3340 }
3341
3342 return 1;
3343}
3344
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345static int tg3_setup_copper_phy(struct tg3 *tp, int force_reset)
3346{
3347 int current_link_up;
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003348 u32 bmsr, val;
Matt Carlsonef167e22007-12-20 20:10:01 -08003349 u32 lcl_adv, rmt_adv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 u16 current_speed;
3351 u8 current_duplex;
3352 int i, err;
3353
3354 tw32(MAC_EVENT, 0);
3355
3356 tw32_f(MAC_STATUS,
3357 (MAC_STATUS_SYNC_CHANGED |
3358 MAC_STATUS_CFG_CHANGED |
3359 MAC_STATUS_MI_COMPLETION |
3360 MAC_STATUS_LNKSTATE_CHANGED));
3361 udelay(40);
3362
Matt Carlson8ef21422008-05-02 16:47:53 -07003363 if ((tp->mi_mode & MAC_MI_MODE_AUTO_POLL) != 0) {
3364 tw32_f(MAC_MI_MODE,
3365 (tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL));
3366 udelay(80);
3367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003369 tg3_phy_auxctl_write(tp, MII_TG3_AUXCTL_SHDWSEL_PWRCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
3371 /* Some third-party PHYs need to be reset on link going
3372 * down.
3373 */
3374 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
3375 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
3376 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) &&
3377 netif_carrier_ok(tp->dev)) {
3378 tg3_readphy(tp, MII_BMSR, &bmsr);
3379 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3380 !(bmsr & BMSR_LSTATUS))
3381 force_reset = 1;
3382 }
3383 if (force_reset)
3384 tg3_phy_reset(tp);
3385
Matt Carlson79eb6902010-02-17 15:17:03 +00003386 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 tg3_readphy(tp, MII_BMSR, &bmsr);
3388 if (tg3_readphy(tp, MII_BMSR, &bmsr) ||
Joe Perches63c3a662011-04-26 08:12:10 +00003389 !tg3_flag(tp, INIT_COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 bmsr = 0;
3391
3392 if (!(bmsr & BMSR_LSTATUS)) {
3393 err = tg3_init_5401phy_dsp(tp);
3394 if (err)
3395 return err;
3396
3397 tg3_readphy(tp, MII_BMSR, &bmsr);
3398 for (i = 0; i < 1000; i++) {
3399 udelay(10);
3400 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3401 (bmsr & BMSR_LSTATUS)) {
3402 udelay(40);
3403 break;
3404 }
3405 }
3406
Matt Carlson79eb6902010-02-17 15:17:03 +00003407 if ((tp->phy_id & TG3_PHY_ID_REV_MASK) ==
3408 TG3_PHY_REV_BCM5401_B0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 !(bmsr & BMSR_LSTATUS) &&
3410 tp->link_config.active_speed == SPEED_1000) {
3411 err = tg3_phy_reset(tp);
3412 if (!err)
3413 err = tg3_init_5401phy_dsp(tp);
3414 if (err)
3415 return err;
3416 }
3417 }
3418 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
3419 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0) {
3420 /* 5701 {A0,B0} CRC bug workaround */
3421 tg3_writephy(tp, 0x15, 0x0a75);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00003422 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
3423 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8d68);
3424 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x8c68);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 }
3426
3427 /* Clear pending interrupts... */
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003428 tg3_readphy(tp, MII_TG3_ISTAT, &val);
3429 tg3_readphy(tp, MII_TG3_ISTAT, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003431 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 tg3_writephy(tp, MII_TG3_IMASK, ~MII_TG3_INT_LINKCHG);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003433 else if (!(tp->phy_flags & TG3_PHYFLG_IS_FET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 tg3_writephy(tp, MII_TG3_IMASK, ~0);
3435
3436 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
3437 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
3438 if (tp->led_ctrl == LED_CTRL_MODE_PHY_1)
3439 tg3_writephy(tp, MII_TG3_EXT_CTRL,
3440 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
3441 else
3442 tg3_writephy(tp, MII_TG3_EXT_CTRL, 0);
3443 }
3444
3445 current_link_up = 0;
3446 current_speed = SPEED_INVALID;
3447 current_duplex = DUPLEX_INVALID;
3448
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003449 if (tp->phy_flags & TG3_PHYFLG_CAPACITIVE_COUPLING) {
Matt Carlson15ee95c2011-04-20 07:57:40 +00003450 err = tg3_phy_auxctl_read(tp,
3451 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3452 &val);
3453 if (!err && !(val & (1 << 10))) {
Matt Carlsonb4bd2922011-04-20 07:57:41 +00003454 tg3_phy_auxctl_write(tp,
3455 MII_TG3_AUXCTL_SHDWSEL_MISCTEST,
3456 val | (1 << 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 goto relink;
3458 }
3459 }
3460
3461 bmsr = 0;
3462 for (i = 0; i < 100; i++) {
3463 tg3_readphy(tp, MII_BMSR, &bmsr);
3464 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
3465 (bmsr & BMSR_LSTATUS))
3466 break;
3467 udelay(40);
3468 }
3469
3470 if (bmsr & BMSR_LSTATUS) {
3471 u32 aux_stat, bmcr;
3472
3473 tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat);
3474 for (i = 0; i < 2000; i++) {
3475 udelay(10);
3476 if (!tg3_readphy(tp, MII_TG3_AUX_STAT, &aux_stat) &&
3477 aux_stat)
3478 break;
3479 }
3480
3481 tg3_aux_stat_to_speed_duplex(tp, aux_stat,
3482 &current_speed,
3483 &current_duplex);
3484
3485 bmcr = 0;
3486 for (i = 0; i < 200; i++) {
3487 tg3_readphy(tp, MII_BMCR, &bmcr);
3488 if (tg3_readphy(tp, MII_BMCR, &bmcr))
3489 continue;
3490 if (bmcr && bmcr != 0x7fff)
3491 break;
3492 udelay(10);
3493 }
3494
Matt Carlsonef167e22007-12-20 20:10:01 -08003495 lcl_adv = 0;
3496 rmt_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Matt Carlsonef167e22007-12-20 20:10:01 -08003498 tp->link_config.active_speed = current_speed;
3499 tp->link_config.active_duplex = current_duplex;
3500
3501 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
3502 if ((bmcr & BMCR_ANENABLE) &&
3503 tg3_copper_is_advertising_all(tp,
3504 tp->link_config.advertising)) {
3505 if (tg3_adv_1000T_flowctrl_ok(tp, &lcl_adv,
3506 &rmt_adv))
3507 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 }
3509 } else {
3510 if (!(bmcr & BMCR_ANENABLE) &&
3511 tp->link_config.speed == current_speed &&
Matt Carlsonef167e22007-12-20 20:10:01 -08003512 tp->link_config.duplex == current_duplex &&
3513 tp->link_config.flowctrl ==
3514 tp->link_config.active_flowctrl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 }
3517 }
3518
Matt Carlsonef167e22007-12-20 20:10:01 -08003519 if (current_link_up == 1 &&
3520 tp->link_config.active_duplex == DUPLEX_FULL)
3521 tg3_setup_flow_control(tp, lcl_adv, rmt_adv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 }
3523
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524relink:
Matt Carlson80096062010-08-02 11:26:06 +00003525 if (current_link_up == 0 || (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 tg3_phy_copper_begin(tp);
3527
Matt Carlsonf833c4c2010-09-15 09:00:01 +00003528 tg3_readphy(tp, MII_BMSR, &bmsr);
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00003529 if ((!tg3_readphy(tp, MII_BMSR, &bmsr) && (bmsr & BMSR_LSTATUS)) ||
3530 (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 current_link_up = 1;
3532 }
3533
3534 tp->mac_mode &= ~MAC_MODE_PORT_MODE_MASK;
3535 if (current_link_up == 1) {
3536 if (tp->link_config.active_speed == SPEED_100 ||
3537 tp->link_config.active_speed == SPEED_10)
3538 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3539 else
3540 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00003541 } else if (tp->phy_flags & TG3_PHYFLG_IS_FET)
Matt Carlson7f97a4b2009-08-25 10:10:03 +00003542 tp->mac_mode |= MAC_MODE_PORT_MODE_MII;
3543 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
3545
3546 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
3547 if (tp->link_config.active_duplex == DUPLEX_HALF)
3548 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
3549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003551 if (current_link_up == 1 &&
3552 tg3_5700_link_polarity(tp, tp->link_config.active_speed))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07003554 else
3555 tp->mac_mode &= ~MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 }
3557
3558 /* ??? Without this setting Netgear GA302T PHY does not
3559 * ??? send/receive packets...
3560 */
Matt Carlson79eb6902010-02-17 15:17:03 +00003561 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5411 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 tp->pci_chip_rev_id == CHIPREV_ID_5700_ALTIMA) {
3563 tp->mi_mode |= MAC_MI_MODE_AUTO_POLL;
3564 tw32_f(MAC_MI_MODE, tp->mi_mode);
3565 udelay(80);
3566 }
3567
3568 tw32_f(MAC_MODE, tp->mac_mode);
3569 udelay(40);
3570
Matt Carlson52b02d02010-10-14 10:37:41 +00003571 tg3_phy_eee_adjust(tp, current_link_up);
3572
Joe Perches63c3a662011-04-26 08:12:10 +00003573 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 /* Polled via timer. */
3575 tw32_f(MAC_EVENT, 0);
3576 } else {
3577 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
3578 }
3579 udelay(40);
3580
3581 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 &&
3582 current_link_up == 1 &&
3583 tp->link_config.active_speed == SPEED_1000 &&
Joe Perches63c3a662011-04-26 08:12:10 +00003584 (tg3_flag(tp, PCIX_MODE) || tg3_flag(tp, PCI_HIGH_SPEED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 udelay(120);
3586 tw32_f(MAC_STATUS,
3587 (MAC_STATUS_SYNC_CHANGED |
3588 MAC_STATUS_CFG_CHANGED));
3589 udelay(40);
3590 tg3_write_mem(tp,
3591 NIC_SRAM_FIRMWARE_MBOX,
3592 NIC_SRAM_FIRMWARE_MBOX_MAGIC2);
3593 }
3594
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003595 /* Prevent send BD corruption. */
Joe Perches63c3a662011-04-26 08:12:10 +00003596 if (tg3_flag(tp, CLKREQ_BUG)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003597 u16 oldlnkctl, newlnkctl;
3598
3599 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003600 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003601 &oldlnkctl);
3602 if (tp->link_config.active_speed == SPEED_100 ||
3603 tp->link_config.active_speed == SPEED_10)
3604 newlnkctl = oldlnkctl & ~PCI_EXP_LNKCTL_CLKREQ_EN;
3605 else
3606 newlnkctl = oldlnkctl | PCI_EXP_LNKCTL_CLKREQ_EN;
3607 if (newlnkctl != oldlnkctl)
3608 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00003609 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08003610 newlnkctl);
3611 }
3612
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 if (current_link_up != netif_carrier_ok(tp->dev)) {
3614 if (current_link_up)
3615 netif_carrier_on(tp->dev);
3616 else
3617 netif_carrier_off(tp->dev);
3618 tg3_link_report(tp);
3619 }
3620
3621 return 0;
3622}
3623
3624struct tg3_fiber_aneginfo {
3625 int state;
3626#define ANEG_STATE_UNKNOWN 0
3627#define ANEG_STATE_AN_ENABLE 1
3628#define ANEG_STATE_RESTART_INIT 2
3629#define ANEG_STATE_RESTART 3
3630#define ANEG_STATE_DISABLE_LINK_OK 4
3631#define ANEG_STATE_ABILITY_DETECT_INIT 5
3632#define ANEG_STATE_ABILITY_DETECT 6
3633#define ANEG_STATE_ACK_DETECT_INIT 7
3634#define ANEG_STATE_ACK_DETECT 8
3635#define ANEG_STATE_COMPLETE_ACK_INIT 9
3636#define ANEG_STATE_COMPLETE_ACK 10
3637#define ANEG_STATE_IDLE_DETECT_INIT 11
3638#define ANEG_STATE_IDLE_DETECT 12
3639#define ANEG_STATE_LINK_OK 13
3640#define ANEG_STATE_NEXT_PAGE_WAIT_INIT 14
3641#define ANEG_STATE_NEXT_PAGE_WAIT 15
3642
3643 u32 flags;
3644#define MR_AN_ENABLE 0x00000001
3645#define MR_RESTART_AN 0x00000002
3646#define MR_AN_COMPLETE 0x00000004
3647#define MR_PAGE_RX 0x00000008
3648#define MR_NP_LOADED 0x00000010
3649#define MR_TOGGLE_TX 0x00000020
3650#define MR_LP_ADV_FULL_DUPLEX 0x00000040
3651#define MR_LP_ADV_HALF_DUPLEX 0x00000080
3652#define MR_LP_ADV_SYM_PAUSE 0x00000100
3653#define MR_LP_ADV_ASYM_PAUSE 0x00000200
3654#define MR_LP_ADV_REMOTE_FAULT1 0x00000400
3655#define MR_LP_ADV_REMOTE_FAULT2 0x00000800
3656#define MR_LP_ADV_NEXT_PAGE 0x00001000
3657#define MR_TOGGLE_RX 0x00002000
3658#define MR_NP_RX 0x00004000
3659
3660#define MR_LINK_OK 0x80000000
3661
3662 unsigned long link_time, cur_time;
3663
3664 u32 ability_match_cfg;
3665 int ability_match_count;
3666
3667 char ability_match, idle_match, ack_match;
3668
3669 u32 txconfig, rxconfig;
3670#define ANEG_CFG_NP 0x00000080
3671#define ANEG_CFG_ACK 0x00000040
3672#define ANEG_CFG_RF2 0x00000020
3673#define ANEG_CFG_RF1 0x00000010
3674#define ANEG_CFG_PS2 0x00000001
3675#define ANEG_CFG_PS1 0x00008000
3676#define ANEG_CFG_HD 0x00004000
3677#define ANEG_CFG_FD 0x00002000
3678#define ANEG_CFG_INVAL 0x00001f06
3679
3680};
3681#define ANEG_OK 0
3682#define ANEG_DONE 1
3683#define ANEG_TIMER_ENAB 2
3684#define ANEG_FAILED -1
3685
3686#define ANEG_STATE_SETTLE_TIME 10000
3687
3688static int tg3_fiber_aneg_smachine(struct tg3 *tp,
3689 struct tg3_fiber_aneginfo *ap)
3690{
Matt Carlson5be73b42007-12-20 20:09:29 -08003691 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 unsigned long delta;
3693 u32 rx_cfg_reg;
3694 int ret;
3695
3696 if (ap->state == ANEG_STATE_UNKNOWN) {
3697 ap->rxconfig = 0;
3698 ap->link_time = 0;
3699 ap->cur_time = 0;
3700 ap->ability_match_cfg = 0;
3701 ap->ability_match_count = 0;
3702 ap->ability_match = 0;
3703 ap->idle_match = 0;
3704 ap->ack_match = 0;
3705 }
3706 ap->cur_time++;
3707
3708 if (tr32(MAC_STATUS) & MAC_STATUS_RCVD_CFG) {
3709 rx_cfg_reg = tr32(MAC_RX_AUTO_NEG);
3710
3711 if (rx_cfg_reg != ap->ability_match_cfg) {
3712 ap->ability_match_cfg = rx_cfg_reg;
3713 ap->ability_match = 0;
3714 ap->ability_match_count = 0;
3715 } else {
3716 if (++ap->ability_match_count > 1) {
3717 ap->ability_match = 1;
3718 ap->ability_match_cfg = rx_cfg_reg;
3719 }
3720 }
3721 if (rx_cfg_reg & ANEG_CFG_ACK)
3722 ap->ack_match = 1;
3723 else
3724 ap->ack_match = 0;
3725
3726 ap->idle_match = 0;
3727 } else {
3728 ap->idle_match = 1;
3729 ap->ability_match_cfg = 0;
3730 ap->ability_match_count = 0;
3731 ap->ability_match = 0;
3732 ap->ack_match = 0;
3733
3734 rx_cfg_reg = 0;
3735 }
3736
3737 ap->rxconfig = rx_cfg_reg;
3738 ret = ANEG_OK;
3739
Matt Carlson33f401a2010-04-05 10:19:27 +00003740 switch (ap->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 case ANEG_STATE_UNKNOWN:
3742 if (ap->flags & (MR_AN_ENABLE | MR_RESTART_AN))
3743 ap->state = ANEG_STATE_AN_ENABLE;
3744
3745 /* fallthru */
3746 case ANEG_STATE_AN_ENABLE:
3747 ap->flags &= ~(MR_AN_COMPLETE | MR_PAGE_RX);
3748 if (ap->flags & MR_AN_ENABLE) {
3749 ap->link_time = 0;
3750 ap->cur_time = 0;
3751 ap->ability_match_cfg = 0;
3752 ap->ability_match_count = 0;
3753 ap->ability_match = 0;
3754 ap->idle_match = 0;
3755 ap->ack_match = 0;
3756
3757 ap->state = ANEG_STATE_RESTART_INIT;
3758 } else {
3759 ap->state = ANEG_STATE_DISABLE_LINK_OK;
3760 }
3761 break;
3762
3763 case ANEG_STATE_RESTART_INIT:
3764 ap->link_time = ap->cur_time;
3765 ap->flags &= ~(MR_NP_LOADED);
3766 ap->txconfig = 0;
3767 tw32(MAC_TX_AUTO_NEG, 0);
3768 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3769 tw32_f(MAC_MODE, tp->mac_mode);
3770 udelay(40);
3771
3772 ret = ANEG_TIMER_ENAB;
3773 ap->state = ANEG_STATE_RESTART;
3774
3775 /* fallthru */
3776 case ANEG_STATE_RESTART:
3777 delta = ap->cur_time - ap->link_time;
Matt Carlson859a588792010-04-05 10:19:28 +00003778 if (delta > ANEG_STATE_SETTLE_TIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 ap->state = ANEG_STATE_ABILITY_DETECT_INIT;
Matt Carlson859a588792010-04-05 10:19:28 +00003780 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 ret = ANEG_TIMER_ENAB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 break;
3783
3784 case ANEG_STATE_DISABLE_LINK_OK:
3785 ret = ANEG_DONE;
3786 break;
3787
3788 case ANEG_STATE_ABILITY_DETECT_INIT:
3789 ap->flags &= ~(MR_TOGGLE_TX);
Matt Carlson5be73b42007-12-20 20:09:29 -08003790 ap->txconfig = ANEG_CFG_FD;
3791 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
3792 if (flowctrl & ADVERTISE_1000XPAUSE)
3793 ap->txconfig |= ANEG_CFG_PS1;
3794 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
3795 ap->txconfig |= ANEG_CFG_PS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3797 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3798 tw32_f(MAC_MODE, tp->mac_mode);
3799 udelay(40);
3800
3801 ap->state = ANEG_STATE_ABILITY_DETECT;
3802 break;
3803
3804 case ANEG_STATE_ABILITY_DETECT:
Matt Carlson859a588792010-04-05 10:19:28 +00003805 if (ap->ability_match != 0 && ap->rxconfig != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 ap->state = ANEG_STATE_ACK_DETECT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 break;
3808
3809 case ANEG_STATE_ACK_DETECT_INIT:
3810 ap->txconfig |= ANEG_CFG_ACK;
3811 tw32(MAC_TX_AUTO_NEG, ap->txconfig);
3812 tp->mac_mode |= MAC_MODE_SEND_CONFIGS;
3813 tw32_f(MAC_MODE, tp->mac_mode);
3814 udelay(40);
3815
3816 ap->state = ANEG_STATE_ACK_DETECT;
3817
3818 /* fallthru */
3819 case ANEG_STATE_ACK_DETECT:
3820 if (ap->ack_match != 0) {
3821 if ((ap->rxconfig & ~ANEG_CFG_ACK) ==
3822 (ap->ability_match_cfg & ~ANEG_CFG_ACK)) {
3823 ap->state = ANEG_STATE_COMPLETE_ACK_INIT;
3824 } else {
3825 ap->state = ANEG_STATE_AN_ENABLE;
3826 }
3827 } else if (ap->ability_match != 0 &&
3828 ap->rxconfig == 0) {
3829 ap->state = ANEG_STATE_AN_ENABLE;
3830 }
3831 break;
3832
3833 case ANEG_STATE_COMPLETE_ACK_INIT:
3834 if (ap->rxconfig & ANEG_CFG_INVAL) {
3835 ret = ANEG_FAILED;
3836 break;
3837 }
3838 ap->flags &= ~(MR_LP_ADV_FULL_DUPLEX |
3839 MR_LP_ADV_HALF_DUPLEX |
3840 MR_LP_ADV_SYM_PAUSE |
3841 MR_LP_ADV_ASYM_PAUSE |
3842 MR_LP_ADV_REMOTE_FAULT1 |
3843 MR_LP_ADV_REMOTE_FAULT2 |
3844 MR_LP_ADV_NEXT_PAGE |
3845 MR_TOGGLE_RX |
3846 MR_NP_RX);
3847 if (ap->rxconfig & ANEG_CFG_FD)
3848 ap->flags |= MR_LP_ADV_FULL_DUPLEX;
3849 if (ap->rxconfig & ANEG_CFG_HD)
3850 ap->flags |= MR_LP_ADV_HALF_DUPLEX;
3851 if (ap->rxconfig & ANEG_CFG_PS1)
3852 ap->flags |= MR_LP_ADV_SYM_PAUSE;
3853 if (ap->rxconfig & ANEG_CFG_PS2)
3854 ap->flags |= MR_LP_ADV_ASYM_PAUSE;
3855 if (ap->rxconfig & ANEG_CFG_RF1)
3856 ap->flags |= MR_LP_ADV_REMOTE_FAULT1;
3857 if (ap->rxconfig & ANEG_CFG_RF2)
3858 ap->flags |= MR_LP_ADV_REMOTE_FAULT2;
3859 if (ap->rxconfig & ANEG_CFG_NP)
3860 ap->flags |= MR_LP_ADV_NEXT_PAGE;
3861
3862 ap->link_time = ap->cur_time;
3863
3864 ap->flags ^= (MR_TOGGLE_TX);
3865 if (ap->rxconfig & 0x0008)
3866 ap->flags |= MR_TOGGLE_RX;
3867 if (ap->rxconfig & ANEG_CFG_NP)
3868 ap->flags |= MR_NP_RX;
3869 ap->flags |= MR_PAGE_RX;
3870
3871 ap->state = ANEG_STATE_COMPLETE_ACK;
3872 ret = ANEG_TIMER_ENAB;
3873 break;
3874
3875 case ANEG_STATE_COMPLETE_ACK:
3876 if (ap->ability_match != 0 &&
3877 ap->rxconfig == 0) {
3878 ap->state = ANEG_STATE_AN_ENABLE;
3879 break;
3880 }
3881 delta = ap->cur_time - ap->link_time;
3882 if (delta > ANEG_STATE_SETTLE_TIME) {
3883 if (!(ap->flags & (MR_LP_ADV_NEXT_PAGE))) {
3884 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3885 } else {
3886 if ((ap->txconfig & ANEG_CFG_NP) == 0 &&
3887 !(ap->flags & MR_NP_RX)) {
3888 ap->state = ANEG_STATE_IDLE_DETECT_INIT;
3889 } else {
3890 ret = ANEG_FAILED;
3891 }
3892 }
3893 }
3894 break;
3895
3896 case ANEG_STATE_IDLE_DETECT_INIT:
3897 ap->link_time = ap->cur_time;
3898 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3899 tw32_f(MAC_MODE, tp->mac_mode);
3900 udelay(40);
3901
3902 ap->state = ANEG_STATE_IDLE_DETECT;
3903 ret = ANEG_TIMER_ENAB;
3904 break;
3905
3906 case ANEG_STATE_IDLE_DETECT:
3907 if (ap->ability_match != 0 &&
3908 ap->rxconfig == 0) {
3909 ap->state = ANEG_STATE_AN_ENABLE;
3910 break;
3911 }
3912 delta = ap->cur_time - ap->link_time;
3913 if (delta > ANEG_STATE_SETTLE_TIME) {
3914 /* XXX another gem from the Broadcom driver :( */
3915 ap->state = ANEG_STATE_LINK_OK;
3916 }
3917 break;
3918
3919 case ANEG_STATE_LINK_OK:
3920 ap->flags |= (MR_AN_COMPLETE | MR_LINK_OK);
3921 ret = ANEG_DONE;
3922 break;
3923
3924 case ANEG_STATE_NEXT_PAGE_WAIT_INIT:
3925 /* ??? unimplemented */
3926 break;
3927
3928 case ANEG_STATE_NEXT_PAGE_WAIT:
3929 /* ??? unimplemented */
3930 break;
3931
3932 default:
3933 ret = ANEG_FAILED;
3934 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07003935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
3937 return ret;
3938}
3939
Matt Carlson5be73b42007-12-20 20:09:29 -08003940static int fiber_autoneg(struct tg3 *tp, u32 *txflags, u32 *rxflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941{
3942 int res = 0;
3943 struct tg3_fiber_aneginfo aninfo;
3944 int status = ANEG_FAILED;
3945 unsigned int tick;
3946 u32 tmp;
3947
3948 tw32_f(MAC_TX_AUTO_NEG, 0);
3949
3950 tmp = tp->mac_mode & ~MAC_MODE_PORT_MODE_MASK;
3951 tw32_f(MAC_MODE, tmp | MAC_MODE_PORT_MODE_GMII);
3952 udelay(40);
3953
3954 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_SEND_CONFIGS);
3955 udelay(40);
3956
3957 memset(&aninfo, 0, sizeof(aninfo));
3958 aninfo.flags |= MR_AN_ENABLE;
3959 aninfo.state = ANEG_STATE_UNKNOWN;
3960 aninfo.cur_time = 0;
3961 tick = 0;
3962 while (++tick < 195000) {
3963 status = tg3_fiber_aneg_smachine(tp, &aninfo);
3964 if (status == ANEG_DONE || status == ANEG_FAILED)
3965 break;
3966
3967 udelay(1);
3968 }
3969
3970 tp->mac_mode &= ~MAC_MODE_SEND_CONFIGS;
3971 tw32_f(MAC_MODE, tp->mac_mode);
3972 udelay(40);
3973
Matt Carlson5be73b42007-12-20 20:09:29 -08003974 *txflags = aninfo.txconfig;
3975 *rxflags = aninfo.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
3977 if (status == ANEG_DONE &&
3978 (aninfo.flags & (MR_AN_COMPLETE | MR_LINK_OK |
3979 MR_LP_ADV_FULL_DUPLEX)))
3980 res = 1;
3981
3982 return res;
3983}
3984
3985static void tg3_init_bcm8002(struct tg3 *tp)
3986{
3987 u32 mac_status = tr32(MAC_STATUS);
3988 int i;
3989
3990 /* Reset when initting first time or we have a link. */
Joe Perches63c3a662011-04-26 08:12:10 +00003991 if (tg3_flag(tp, INIT_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 !(mac_status & MAC_STATUS_PCS_SYNCED))
3993 return;
3994
3995 /* Set PLL lock range. */
3996 tg3_writephy(tp, 0x16, 0x8007);
3997
3998 /* SW reset */
3999 tg3_writephy(tp, MII_BMCR, BMCR_RESET);
4000
4001 /* Wait for reset to complete. */
4002 /* XXX schedule_timeout() ... */
4003 for (i = 0; i < 500; i++)
4004 udelay(10);
4005
4006 /* Config mode; select PMA/Ch 1 regs. */
4007 tg3_writephy(tp, 0x10, 0x8411);
4008
4009 /* Enable auto-lock and comdet, select txclk for tx. */
4010 tg3_writephy(tp, 0x11, 0x0a10);
4011
4012 tg3_writephy(tp, 0x18, 0x00a0);
4013 tg3_writephy(tp, 0x16, 0x41ff);
4014
4015 /* Assert and deassert POR. */
4016 tg3_writephy(tp, 0x13, 0x0400);
4017 udelay(40);
4018 tg3_writephy(tp, 0x13, 0x0000);
4019
4020 tg3_writephy(tp, 0x11, 0x0a50);
4021 udelay(40);
4022 tg3_writephy(tp, 0x11, 0x0a10);
4023
4024 /* Wait for signal to stabilize */
4025 /* XXX schedule_timeout() ... */
4026 for (i = 0; i < 15000; i++)
4027 udelay(10);
4028
4029 /* Deselect the channel register so we can read the PHYID
4030 * later.
4031 */
4032 tg3_writephy(tp, 0x10, 0x8011);
4033}
4034
4035static int tg3_setup_fiber_hw_autoneg(struct tg3 *tp, u32 mac_status)
4036{
Matt Carlson82cd3d12007-12-20 20:09:00 -08004037 u16 flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 u32 sg_dig_ctrl, sg_dig_status;
4039 u32 serdes_cfg, expected_sg_dig_ctrl;
4040 int workaround, port_a;
4041 int current_link_up;
4042
4043 serdes_cfg = 0;
4044 expected_sg_dig_ctrl = 0;
4045 workaround = 0;
4046 port_a = 1;
4047 current_link_up = 0;
4048
4049 if (tp->pci_chip_rev_id != CHIPREV_ID_5704_A0 &&
4050 tp->pci_chip_rev_id != CHIPREV_ID_5704_A1) {
4051 workaround = 1;
4052 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
4053 port_a = 0;
4054
4055 /* preserve bits 0-11,13,14 for signal pre-emphasis */
4056 /* preserve bits 20-23 for voltage regulator */
4057 serdes_cfg = tr32(MAC_SERDES_CFG) & 0x00f06fff;
4058 }
4059
4060 sg_dig_ctrl = tr32(SG_DIG_CTRL);
4061
4062 if (tp->link_config.autoneg != AUTONEG_ENABLE) {
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004063 if (sg_dig_ctrl & SG_DIG_USING_HW_AUTONEG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 if (workaround) {
4065 u32 val = serdes_cfg;
4066
4067 if (port_a)
4068 val |= 0xc010000;
4069 else
4070 val |= 0x4010000;
4071 tw32_f(MAC_SERDES_CFG, val);
4072 }
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004073
4074 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 }
4076 if (mac_status & MAC_STATUS_PCS_SYNCED) {
4077 tg3_setup_flow_control(tp, 0, 0);
4078 current_link_up = 1;
4079 }
4080 goto out;
4081 }
4082
4083 /* Want auto-negotiation. */
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004084 expected_sg_dig_ctrl = SG_DIG_USING_HW_AUTONEG | SG_DIG_COMMON_SETUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Matt Carlson82cd3d12007-12-20 20:09:00 -08004086 flowctrl = tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
4087 if (flowctrl & ADVERTISE_1000XPAUSE)
4088 expected_sg_dig_ctrl |= SG_DIG_PAUSE_CAP;
4089 if (flowctrl & ADVERTISE_1000XPSE_ASYM)
4090 expected_sg_dig_ctrl |= SG_DIG_ASYM_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
4092 if (sg_dig_ctrl != expected_sg_dig_ctrl) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004093 if ((tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT) &&
Michael Chan3d3ebe72006-09-27 15:59:15 -07004094 tp->serdes_counter &&
4095 ((mac_status & (MAC_STATUS_PCS_SYNCED |
4096 MAC_STATUS_RCVD_CFG)) ==
4097 MAC_STATUS_PCS_SYNCED)) {
4098 tp->serdes_counter--;
4099 current_link_up = 1;
4100 goto out;
4101 }
4102restart_autoneg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 if (workaround)
4104 tw32_f(MAC_SERDES_CFG, serdes_cfg | 0xc011000);
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004105 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl | SG_DIG_SOFT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 udelay(5);
4107 tw32_f(SG_DIG_CTRL, expected_sg_dig_ctrl);
4108
Michael Chan3d3ebe72006-09-27 15:59:15 -07004109 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004110 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 } else if (mac_status & (MAC_STATUS_PCS_SYNCED |
4112 MAC_STATUS_SIGNAL_DET)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004113 sg_dig_status = tr32(SG_DIG_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 mac_status = tr32(MAC_STATUS);
4115
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004116 if ((sg_dig_status & SG_DIG_AUTONEG_COMPLETE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 (mac_status & MAC_STATUS_PCS_SYNCED)) {
Matt Carlson82cd3d12007-12-20 20:09:00 -08004118 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Matt Carlson82cd3d12007-12-20 20:09:00 -08004120 if (sg_dig_ctrl & SG_DIG_PAUSE_CAP)
4121 local_adv |= ADVERTISE_1000XPAUSE;
4122 if (sg_dig_ctrl & SG_DIG_ASYM_PAUSE)
4123 local_adv |= ADVERTISE_1000XPSE_ASYM;
4124
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004125 if (sg_dig_status & SG_DIG_PARTNER_PAUSE_CAPABLE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004126 remote_adv |= LPA_1000XPAUSE;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004127 if (sg_dig_status & SG_DIG_PARTNER_ASYM_PAUSE)
Matt Carlson82cd3d12007-12-20 20:09:00 -08004128 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
4130 tg3_setup_flow_control(tp, local_adv, remote_adv);
4131 current_link_up = 1;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004132 tp->serdes_counter = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004133 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004134 } else if (!(sg_dig_status & SG_DIG_AUTONEG_COMPLETE)) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07004135 if (tp->serdes_counter)
4136 tp->serdes_counter--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 else {
4138 if (workaround) {
4139 u32 val = serdes_cfg;
4140
4141 if (port_a)
4142 val |= 0xc010000;
4143 else
4144 val |= 0x4010000;
4145
4146 tw32_f(MAC_SERDES_CFG, val);
4147 }
4148
Matt Carlsonc98f6e32007-12-20 20:08:32 -08004149 tw32_f(SG_DIG_CTRL, SG_DIG_COMMON_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 udelay(40);
4151
4152 /* Link parallel detection - link is up */
4153 /* only if we have PCS_SYNC and not */
4154 /* receiving config code words */
4155 mac_status = tr32(MAC_STATUS);
4156 if ((mac_status & MAC_STATUS_PCS_SYNCED) &&
4157 !(mac_status & MAC_STATUS_RCVD_CFG)) {
4158 tg3_setup_flow_control(tp, 0, 0);
4159 current_link_up = 1;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004160 tp->phy_flags |=
4161 TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004162 tp->serdes_counter =
4163 SERDES_PARALLEL_DET_TIMEOUT;
4164 } else
4165 goto restart_autoneg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 }
4167 }
Michael Chan3d3ebe72006-09-27 15:59:15 -07004168 } else {
4169 tp->serdes_counter = SERDES_AN_TIMEOUT_5704S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004170 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 }
4172
4173out:
4174 return current_link_up;
4175}
4176
4177static int tg3_setup_fiber_by_hand(struct tg3 *tp, u32 mac_status)
4178{
4179 int current_link_up = 0;
4180
Michael Chan5cf64b8a2007-05-05 12:11:21 -07004181 if (!(mac_status & MAC_STATUS_PCS_SYNCED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
4184 if (tp->link_config.autoneg == AUTONEG_ENABLE) {
Matt Carlson5be73b42007-12-20 20:09:29 -08004185 u32 txflags, rxflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 int i;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04004187
Matt Carlson5be73b42007-12-20 20:09:29 -08004188 if (fiber_autoneg(tp, &txflags, &rxflags)) {
4189 u32 local_adv = 0, remote_adv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Matt Carlson5be73b42007-12-20 20:09:29 -08004191 if (txflags & ANEG_CFG_PS1)
4192 local_adv |= ADVERTISE_1000XPAUSE;
4193 if (txflags & ANEG_CFG_PS2)
4194 local_adv |= ADVERTISE_1000XPSE_ASYM;
4195
4196 if (rxflags & MR_LP_ADV_SYM_PAUSE)
4197 remote_adv |= LPA_1000XPAUSE;
4198 if (rxflags & MR_LP_ADV_ASYM_PAUSE)
4199 remote_adv |= LPA_1000XPAUSE_ASYM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
4201 tg3_setup_flow_control(tp, local_adv, remote_adv);
4202
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 current_link_up = 1;
4204 }
4205 for (i = 0; i < 30; i++) {
4206 udelay(20);
4207 tw32_f(MAC_STATUS,
4208 (MAC_STATUS_SYNC_CHANGED |
4209 MAC_STATUS_CFG_CHANGED));
4210 udelay(40);
4211 if ((tr32(MAC_STATUS) &
4212 (MAC_STATUS_SYNC_CHANGED |
4213 MAC_STATUS_CFG_CHANGED)) == 0)
4214 break;
4215 }
4216
4217 mac_status = tr32(MAC_STATUS);
4218 if (current_link_up == 0 &&
4219 (mac_status & MAC_STATUS_PCS_SYNCED) &&
4220 !(mac_status & MAC_STATUS_RCVD_CFG))
4221 current_link_up = 1;
4222 } else {
Matt Carlson5be73b42007-12-20 20:09:29 -08004223 tg3_setup_flow_control(tp, 0, 0);
4224
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 /* Forcing 1000FD link up. */
4226 current_link_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
4228 tw32_f(MAC_MODE, (tp->mac_mode | MAC_MODE_SEND_CONFIGS));
4229 udelay(40);
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07004230
4231 tw32_f(MAC_MODE, tp->mac_mode);
4232 udelay(40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 }
4234
4235out:
4236 return current_link_up;
4237}
4238
4239static int tg3_setup_fiber_phy(struct tg3 *tp, int force_reset)
4240{
4241 u32 orig_pause_cfg;
4242 u16 orig_active_speed;
4243 u8 orig_active_duplex;
4244 u32 mac_status;
4245 int current_link_up;
4246 int i;
4247
Matt Carlson8d018622007-12-20 20:05:44 -08004248 orig_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 orig_active_speed = tp->link_config.active_speed;
4250 orig_active_duplex = tp->link_config.active_duplex;
4251
Joe Perches63c3a662011-04-26 08:12:10 +00004252 if (!tg3_flag(tp, HW_AUTONEG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 netif_carrier_ok(tp->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00004254 tg3_flag(tp, INIT_COMPLETE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 mac_status = tr32(MAC_STATUS);
4256 mac_status &= (MAC_STATUS_PCS_SYNCED |
4257 MAC_STATUS_SIGNAL_DET |
4258 MAC_STATUS_CFG_CHANGED |
4259 MAC_STATUS_RCVD_CFG);
4260 if (mac_status == (MAC_STATUS_PCS_SYNCED |
4261 MAC_STATUS_SIGNAL_DET)) {
4262 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4263 MAC_STATUS_CFG_CHANGED));
4264 return 0;
4265 }
4266 }
4267
4268 tw32_f(MAC_TX_AUTO_NEG, 0);
4269
4270 tp->mac_mode &= ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
4271 tp->mac_mode |= MAC_MODE_PORT_MODE_TBI;
4272 tw32_f(MAC_MODE, tp->mac_mode);
4273 udelay(40);
4274
Matt Carlson79eb6902010-02-17 15:17:03 +00004275 if (tp->phy_id == TG3_PHY_ID_BCM8002)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 tg3_init_bcm8002(tp);
4277
4278 /* Enable link change event even when serdes polling. */
4279 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4280 udelay(40);
4281
4282 current_link_up = 0;
4283 mac_status = tr32(MAC_STATUS);
4284
Joe Perches63c3a662011-04-26 08:12:10 +00004285 if (tg3_flag(tp, HW_AUTONEG))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 current_link_up = tg3_setup_fiber_hw_autoneg(tp, mac_status);
4287 else
4288 current_link_up = tg3_setup_fiber_by_hand(tp, mac_status);
4289
Matt Carlson898a56f2009-08-28 14:02:40 +00004290 tp->napi[0].hw_status->status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 (SD_STATUS_UPDATED |
Matt Carlson898a56f2009-08-28 14:02:40 +00004292 (tp->napi[0].hw_status->status & ~SD_STATUS_LINK_CHG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
4294 for (i = 0; i < 100; i++) {
4295 tw32_f(MAC_STATUS, (MAC_STATUS_SYNC_CHANGED |
4296 MAC_STATUS_CFG_CHANGED));
4297 udelay(5);
4298 if ((tr32(MAC_STATUS) & (MAC_STATUS_SYNC_CHANGED |
Michael Chan3d3ebe72006-09-27 15:59:15 -07004299 MAC_STATUS_CFG_CHANGED |
4300 MAC_STATUS_LNKSTATE_CHANGED)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 break;
4302 }
4303
4304 mac_status = tr32(MAC_STATUS);
4305 if ((mac_status & MAC_STATUS_PCS_SYNCED) == 0) {
4306 current_link_up = 0;
Michael Chan3d3ebe72006-09-27 15:59:15 -07004307 if (tp->link_config.autoneg == AUTONEG_ENABLE &&
4308 tp->serdes_counter == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 tw32_f(MAC_MODE, (tp->mac_mode |
4310 MAC_MODE_SEND_CONFIGS));
4311 udelay(1);
4312 tw32_f(MAC_MODE, tp->mac_mode);
4313 }
4314 }
4315
4316 if (current_link_up == 1) {
4317 tp->link_config.active_speed = SPEED_1000;
4318 tp->link_config.active_duplex = DUPLEX_FULL;
4319 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4320 LED_CTRL_LNKLED_OVERRIDE |
4321 LED_CTRL_1000MBPS_ON));
4322 } else {
4323 tp->link_config.active_speed = SPEED_INVALID;
4324 tp->link_config.active_duplex = DUPLEX_INVALID;
4325 tw32(MAC_LED_CTRL, (tp->led_ctrl |
4326 LED_CTRL_LNKLED_OVERRIDE |
4327 LED_CTRL_TRAFFIC_OVERRIDE));
4328 }
4329
4330 if (current_link_up != netif_carrier_ok(tp->dev)) {
4331 if (current_link_up)
4332 netif_carrier_on(tp->dev);
4333 else
4334 netif_carrier_off(tp->dev);
4335 tg3_link_report(tp);
4336 } else {
Matt Carlson8d018622007-12-20 20:05:44 -08004337 u32 now_pause_cfg = tp->link_config.active_flowctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 if (orig_pause_cfg != now_pause_cfg ||
4339 orig_active_speed != tp->link_config.active_speed ||
4340 orig_active_duplex != tp->link_config.active_duplex)
4341 tg3_link_report(tp);
4342 }
4343
4344 return 0;
4345}
4346
Michael Chan747e8f82005-07-25 12:33:22 -07004347static int tg3_setup_fiber_mii_phy(struct tg3 *tp, int force_reset)
4348{
4349 int current_link_up, err = 0;
4350 u32 bmsr, bmcr;
4351 u16 current_speed;
4352 u8 current_duplex;
Matt Carlsonef167e22007-12-20 20:10:01 -08004353 u32 local_adv, remote_adv;
Michael Chan747e8f82005-07-25 12:33:22 -07004354
4355 tp->mac_mode |= MAC_MODE_PORT_MODE_GMII;
4356 tw32_f(MAC_MODE, tp->mac_mode);
4357 udelay(40);
4358
4359 tw32(MAC_EVENT, 0);
4360
4361 tw32_f(MAC_STATUS,
4362 (MAC_STATUS_SYNC_CHANGED |
4363 MAC_STATUS_CFG_CHANGED |
4364 MAC_STATUS_MI_COMPLETION |
4365 MAC_STATUS_LNKSTATE_CHANGED));
4366 udelay(40);
4367
4368 if (force_reset)
4369 tg3_phy_reset(tp);
4370
4371 current_link_up = 0;
4372 current_speed = SPEED_INVALID;
4373 current_duplex = DUPLEX_INVALID;
4374
4375 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4376 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004377 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
4378 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4379 bmsr |= BMSR_LSTATUS;
4380 else
4381 bmsr &= ~BMSR_LSTATUS;
4382 }
Michael Chan747e8f82005-07-25 12:33:22 -07004383
4384 err |= tg3_readphy(tp, MII_BMCR, &bmcr);
4385
4386 if ((tp->link_config.autoneg == AUTONEG_ENABLE) && !force_reset &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004387 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004388 /* do nothing, just check for link up at the end */
4389 } else if (tp->link_config.autoneg == AUTONEG_ENABLE) {
4390 u32 adv, new_adv;
4391
4392 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4393 new_adv = adv & ~(ADVERTISE_1000XFULL | ADVERTISE_1000XHALF |
4394 ADVERTISE_1000XPAUSE |
4395 ADVERTISE_1000XPSE_ASYM |
4396 ADVERTISE_SLCT);
4397
Matt Carlsonba4d07a2007-12-20 20:08:00 -08004398 new_adv |= tg3_advert_flowctrl_1000X(tp->link_config.flowctrl);
Michael Chan747e8f82005-07-25 12:33:22 -07004399
4400 if (tp->link_config.advertising & ADVERTISED_1000baseT_Half)
4401 new_adv |= ADVERTISE_1000XHALF;
4402 if (tp->link_config.advertising & ADVERTISED_1000baseT_Full)
4403 new_adv |= ADVERTISE_1000XFULL;
4404
4405 if ((new_adv != adv) || !(bmcr & BMCR_ANENABLE)) {
4406 tg3_writephy(tp, MII_ADVERTISE, new_adv);
4407 bmcr |= BMCR_ANENABLE | BMCR_ANRESTART;
4408 tg3_writephy(tp, MII_BMCR, bmcr);
4409
4410 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
Michael Chan3d3ebe72006-09-27 15:59:15 -07004411 tp->serdes_counter = SERDES_AN_TIMEOUT_5714S;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004412 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004413
4414 return err;
4415 }
4416 } else {
4417 u32 new_bmcr;
4418
4419 bmcr &= ~BMCR_SPEED1000;
4420 new_bmcr = bmcr & ~(BMCR_ANENABLE | BMCR_FULLDPLX);
4421
4422 if (tp->link_config.duplex == DUPLEX_FULL)
4423 new_bmcr |= BMCR_FULLDPLX;
4424
4425 if (new_bmcr != bmcr) {
4426 /* BMCR_SPEED1000 is a reserved bit that needs
4427 * to be set on write.
4428 */
4429 new_bmcr |= BMCR_SPEED1000;
4430
4431 /* Force a linkdown */
4432 if (netif_carrier_ok(tp->dev)) {
4433 u32 adv;
4434
4435 err |= tg3_readphy(tp, MII_ADVERTISE, &adv);
4436 adv &= ~(ADVERTISE_1000XFULL |
4437 ADVERTISE_1000XHALF |
4438 ADVERTISE_SLCT);
4439 tg3_writephy(tp, MII_ADVERTISE, adv);
4440 tg3_writephy(tp, MII_BMCR, bmcr |
4441 BMCR_ANRESTART |
4442 BMCR_ANENABLE);
4443 udelay(10);
4444 netif_carrier_off(tp->dev);
4445 }
4446 tg3_writephy(tp, MII_BMCR, new_bmcr);
4447 bmcr = new_bmcr;
4448 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
4449 err |= tg3_readphy(tp, MII_BMSR, &bmsr);
Michael Chand4d2c552006-03-20 17:47:20 -08004450 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
4451 ASIC_REV_5714) {
4452 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
4453 bmsr |= BMSR_LSTATUS;
4454 else
4455 bmsr &= ~BMSR_LSTATUS;
4456 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004457 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004458 }
4459 }
4460
4461 if (bmsr & BMSR_LSTATUS) {
4462 current_speed = SPEED_1000;
4463 current_link_up = 1;
4464 if (bmcr & BMCR_FULLDPLX)
4465 current_duplex = DUPLEX_FULL;
4466 else
4467 current_duplex = DUPLEX_HALF;
4468
Matt Carlsonef167e22007-12-20 20:10:01 -08004469 local_adv = 0;
4470 remote_adv = 0;
4471
Michael Chan747e8f82005-07-25 12:33:22 -07004472 if (bmcr & BMCR_ANENABLE) {
Matt Carlsonef167e22007-12-20 20:10:01 -08004473 u32 common;
Michael Chan747e8f82005-07-25 12:33:22 -07004474
4475 err |= tg3_readphy(tp, MII_ADVERTISE, &local_adv);
4476 err |= tg3_readphy(tp, MII_LPA, &remote_adv);
4477 common = local_adv & remote_adv;
4478 if (common & (ADVERTISE_1000XHALF |
4479 ADVERTISE_1000XFULL)) {
4480 if (common & ADVERTISE_1000XFULL)
4481 current_duplex = DUPLEX_FULL;
4482 else
4483 current_duplex = DUPLEX_HALF;
Joe Perches63c3a662011-04-26 08:12:10 +00004484 } else if (!tg3_flag(tp, 5780_CLASS)) {
Matt Carlson57d8b882010-06-05 17:24:35 +00004485 /* Link is up via parallel detect */
Matt Carlson859a588792010-04-05 10:19:28 +00004486 } else {
Michael Chan747e8f82005-07-25 12:33:22 -07004487 current_link_up = 0;
Matt Carlson859a588792010-04-05 10:19:28 +00004488 }
Michael Chan747e8f82005-07-25 12:33:22 -07004489 }
4490 }
4491
Matt Carlsonef167e22007-12-20 20:10:01 -08004492 if (current_link_up == 1 && current_duplex == DUPLEX_FULL)
4493 tg3_setup_flow_control(tp, local_adv, remote_adv);
4494
Michael Chan747e8f82005-07-25 12:33:22 -07004495 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
4496 if (tp->link_config.active_duplex == DUPLEX_HALF)
4497 tp->mac_mode |= MAC_MODE_HALF_DUPLEX;
4498
4499 tw32_f(MAC_MODE, tp->mac_mode);
4500 udelay(40);
4501
4502 tw32_f(MAC_EVENT, MAC_EVENT_LNKSTATE_CHANGED);
4503
4504 tp->link_config.active_speed = current_speed;
4505 tp->link_config.active_duplex = current_duplex;
4506
4507 if (current_link_up != netif_carrier_ok(tp->dev)) {
4508 if (current_link_up)
4509 netif_carrier_on(tp->dev);
4510 else {
4511 netif_carrier_off(tp->dev);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004512 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004513 }
4514 tg3_link_report(tp);
4515 }
4516 return err;
4517}
4518
4519static void tg3_serdes_parallel_detect(struct tg3 *tp)
4520{
Michael Chan3d3ebe72006-09-27 15:59:15 -07004521 if (tp->serdes_counter) {
Michael Chan747e8f82005-07-25 12:33:22 -07004522 /* Give autoneg time to complete. */
Michael Chan3d3ebe72006-09-27 15:59:15 -07004523 tp->serdes_counter--;
Michael Chan747e8f82005-07-25 12:33:22 -07004524 return;
4525 }
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004526
Michael Chan747e8f82005-07-25 12:33:22 -07004527 if (!netif_carrier_ok(tp->dev) &&
4528 (tp->link_config.autoneg == AUTONEG_ENABLE)) {
4529 u32 bmcr;
4530
4531 tg3_readphy(tp, MII_BMCR, &bmcr);
4532 if (bmcr & BMCR_ANENABLE) {
4533 u32 phy1, phy2;
4534
4535 /* Select shadow register 0x1f */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004536 tg3_writephy(tp, MII_TG3_MISC_SHDW, 0x7c00);
4537 tg3_readphy(tp, MII_TG3_MISC_SHDW, &phy1);
Michael Chan747e8f82005-07-25 12:33:22 -07004538
4539 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004540 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4541 MII_TG3_DSP_EXP1_INT_STAT);
4542 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
4543 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004544
4545 if ((phy1 & 0x10) && !(phy2 & 0x20)) {
4546 /* We have signal detect and not receiving
4547 * config code words, link is up by parallel
4548 * detection.
4549 */
4550
4551 bmcr &= ~BMCR_ANENABLE;
4552 bmcr |= BMCR_SPEED1000 | BMCR_FULLDPLX;
4553 tg3_writephy(tp, MII_BMCR, bmcr);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004554 tp->phy_flags |= TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004555 }
4556 }
Matt Carlson859a588792010-04-05 10:19:28 +00004557 } else if (netif_carrier_ok(tp->dev) &&
4558 (tp->link_config.autoneg == AUTONEG_ENABLE) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004559 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT)) {
Michael Chan747e8f82005-07-25 12:33:22 -07004560 u32 phy2;
4561
4562 /* Select expansion interrupt status register */
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00004563 tg3_writephy(tp, MII_TG3_DSP_ADDRESS,
4564 MII_TG3_DSP_EXP1_INT_STAT);
4565 tg3_readphy(tp, MII_TG3_DSP_RW_PORT, &phy2);
Michael Chan747e8f82005-07-25 12:33:22 -07004566 if (phy2 & 0x20) {
4567 u32 bmcr;
4568
4569 /* Config code words received, turn on autoneg. */
4570 tg3_readphy(tp, MII_BMCR, &bmcr);
4571 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANENABLE);
4572
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004573 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chan747e8f82005-07-25 12:33:22 -07004574
4575 }
4576 }
4577}
4578
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579static int tg3_setup_phy(struct tg3 *tp, int force_reset)
4580{
Matt Carlsonf2096f92011-04-05 14:22:48 +00004581 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 int err;
4583
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004584 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 err = tg3_setup_fiber_phy(tp, force_reset);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00004586 else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chan747e8f82005-07-25 12:33:22 -07004587 err = tg3_setup_fiber_mii_phy(tp, force_reset);
Matt Carlson859a588792010-04-05 10:19:28 +00004588 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 err = tg3_setup_copper_phy(tp, force_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Matt Carlsonbcb37f62008-11-03 16:52:09 -08004591 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004592 u32 scale;
Matt Carlsonaa6c91f2007-11-12 21:18:04 -08004593
4594 val = tr32(TG3_CPMU_CLCK_STAT) & CPMU_CLCK_STAT_MAC_CLCK_MASK;
4595 if (val == CPMU_CLCK_STAT_MAC_CLCK_62_5)
4596 scale = 65;
4597 else if (val == CPMU_CLCK_STAT_MAC_CLCK_6_25)
4598 scale = 6;
4599 else
4600 scale = 12;
4601
4602 val = tr32(GRC_MISC_CFG) & ~GRC_MISC_CFG_PRESCALAR_MASK;
4603 val |= (scale << GRC_MISC_CFG_PRESCALAR_SHIFT);
4604 tw32(GRC_MISC_CFG, val);
4605 }
4606
Matt Carlsonf2096f92011-04-05 14:22:48 +00004607 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
4608 (6 << TX_LENGTHS_IPG_SHIFT);
4609 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
4610 val |= tr32(MAC_TX_LENGTHS) &
4611 (TX_LENGTHS_JMB_FRM_LEN_MSK |
4612 TX_LENGTHS_CNT_DWN_VAL_MSK);
4613
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 if (tp->link_config.active_speed == SPEED_1000 &&
4615 tp->link_config.active_duplex == DUPLEX_HALF)
Matt Carlsonf2096f92011-04-05 14:22:48 +00004616 tw32(MAC_TX_LENGTHS, val |
4617 (0xff << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 else
Matt Carlsonf2096f92011-04-05 14:22:48 +00004619 tw32(MAC_TX_LENGTHS, val |
4620 (32 << TX_LENGTHS_SLOT_TIME_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
Joe Perches63c3a662011-04-26 08:12:10 +00004622 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 if (netif_carrier_ok(tp->dev)) {
4624 tw32(HOSTCC_STAT_COAL_TICKS,
David S. Miller15f98502005-05-18 22:49:26 -07004625 tp->coal.stats_block_coalesce_usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 } else {
4627 tw32(HOSTCC_STAT_COAL_TICKS, 0);
4628 }
4629 }
4630
Joe Perches63c3a662011-04-26 08:12:10 +00004631 if (tg3_flag(tp, ASPM_WORKAROUND)) {
Matt Carlsonf2096f92011-04-05 14:22:48 +00004632 val = tr32(PCIE_PWR_MGMT_THRESH);
Matt Carlson8ed5d972007-05-07 00:25:49 -07004633 if (!netif_carrier_ok(tp->dev))
4634 val = (val & ~PCIE_PWR_MGMT_L1_THRESH_MSK) |
4635 tp->pwrmgmt_thresh;
4636 else
4637 val |= PCIE_PWR_MGMT_L1_THRESH_MSK;
4638 tw32(PCIE_PWR_MGMT_THRESH, val);
4639 }
4640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 return err;
4642}
4643
Matt Carlson66cfd1b2010-09-30 10:34:30 +00004644static inline int tg3_irq_sync(struct tg3 *tp)
4645{
4646 return tp->irq_sync;
4647}
4648
Matt Carlson97bd8e42011-04-13 11:05:04 +00004649static inline void tg3_rd32_loop(struct tg3 *tp, u32 *dst, u32 off, u32 len)
4650{
4651 int i;
4652
4653 dst = (u32 *)((u8 *)dst + off);
4654 for (i = 0; i < len; i += sizeof(u32))
4655 *dst++ = tr32(off + i);
4656}
4657
4658static void tg3_dump_legacy_regs(struct tg3 *tp, u32 *regs)
4659{
4660 tg3_rd32_loop(tp, regs, TG3PCI_VENDOR, 0xb0);
4661 tg3_rd32_loop(tp, regs, MAILBOX_INTERRUPT_0, 0x200);
4662 tg3_rd32_loop(tp, regs, MAC_MODE, 0x4f0);
4663 tg3_rd32_loop(tp, regs, SNDDATAI_MODE, 0xe0);
4664 tg3_rd32_loop(tp, regs, SNDDATAC_MODE, 0x04);
4665 tg3_rd32_loop(tp, regs, SNDBDS_MODE, 0x80);
4666 tg3_rd32_loop(tp, regs, SNDBDI_MODE, 0x48);
4667 tg3_rd32_loop(tp, regs, SNDBDC_MODE, 0x04);
4668 tg3_rd32_loop(tp, regs, RCVLPC_MODE, 0x20);
4669 tg3_rd32_loop(tp, regs, RCVLPC_SELLST_BASE, 0x15c);
4670 tg3_rd32_loop(tp, regs, RCVDBDI_MODE, 0x0c);
4671 tg3_rd32_loop(tp, regs, RCVDBDI_JUMBO_BD, 0x3c);
4672 tg3_rd32_loop(tp, regs, RCVDBDI_BD_PROD_IDX_0, 0x44);
4673 tg3_rd32_loop(tp, regs, RCVDCC_MODE, 0x04);
4674 tg3_rd32_loop(tp, regs, RCVBDI_MODE, 0x20);
4675 tg3_rd32_loop(tp, regs, RCVCC_MODE, 0x14);
4676 tg3_rd32_loop(tp, regs, RCVLSC_MODE, 0x08);
4677 tg3_rd32_loop(tp, regs, MBFREE_MODE, 0x08);
4678 tg3_rd32_loop(tp, regs, HOSTCC_MODE, 0x100);
4679
Joe Perches63c3a662011-04-26 08:12:10 +00004680 if (tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004681 tg3_rd32_loop(tp, regs, HOSTCC_RXCOL_TICKS_VEC1, 0x180);
4682
4683 tg3_rd32_loop(tp, regs, MEMARB_MODE, 0x10);
4684 tg3_rd32_loop(tp, regs, BUFMGR_MODE, 0x58);
4685 tg3_rd32_loop(tp, regs, RDMAC_MODE, 0x08);
4686 tg3_rd32_loop(tp, regs, WDMAC_MODE, 0x08);
4687 tg3_rd32_loop(tp, regs, RX_CPU_MODE, 0x04);
4688 tg3_rd32_loop(tp, regs, RX_CPU_STATE, 0x04);
4689 tg3_rd32_loop(tp, regs, RX_CPU_PGMCTR, 0x04);
4690 tg3_rd32_loop(tp, regs, RX_CPU_HWBKPT, 0x04);
4691
Joe Perches63c3a662011-04-26 08:12:10 +00004692 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004693 tg3_rd32_loop(tp, regs, TX_CPU_MODE, 0x04);
4694 tg3_rd32_loop(tp, regs, TX_CPU_STATE, 0x04);
4695 tg3_rd32_loop(tp, regs, TX_CPU_PGMCTR, 0x04);
4696 }
4697
4698 tg3_rd32_loop(tp, regs, GRCMBOX_INTERRUPT_0, 0x110);
4699 tg3_rd32_loop(tp, regs, FTQ_RESET, 0x120);
4700 tg3_rd32_loop(tp, regs, MSGINT_MODE, 0x0c);
4701 tg3_rd32_loop(tp, regs, DMAC_MODE, 0x04);
4702 tg3_rd32_loop(tp, regs, GRC_MODE, 0x4c);
4703
Joe Perches63c3a662011-04-26 08:12:10 +00004704 if (tg3_flag(tp, NVRAM))
Matt Carlson97bd8e42011-04-13 11:05:04 +00004705 tg3_rd32_loop(tp, regs, NVRAM_CMD, 0x24);
4706}
4707
4708static void tg3_dump_state(struct tg3 *tp)
4709{
4710 int i;
4711 u32 *regs;
4712
4713 regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC);
4714 if (!regs) {
4715 netdev_err(tp->dev, "Failed allocating register dump buffer\n");
4716 return;
4717 }
4718
Joe Perches63c3a662011-04-26 08:12:10 +00004719 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson97bd8e42011-04-13 11:05:04 +00004720 /* Read up to but not including private PCI registers */
4721 for (i = 0; i < TG3_PCIE_TLDLPL_PORT; i += sizeof(u32))
4722 regs[i / sizeof(u32)] = tr32(i);
4723 } else
4724 tg3_dump_legacy_regs(tp, regs);
4725
4726 for (i = 0; i < TG3_REG_BLK_SIZE / sizeof(u32); i += 4) {
4727 if (!regs[i + 0] && !regs[i + 1] &&
4728 !regs[i + 2] && !regs[i + 3])
4729 continue;
4730
4731 netdev_err(tp->dev, "0x%08x: 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
4732 i * 4,
4733 regs[i + 0], regs[i + 1], regs[i + 2], regs[i + 3]);
4734 }
4735
4736 kfree(regs);
4737
4738 for (i = 0; i < tp->irq_cnt; i++) {
4739 struct tg3_napi *tnapi = &tp->napi[i];
4740
4741 /* SW status block */
4742 netdev_err(tp->dev,
4743 "%d: Host status block [%08x:%08x:(%04x:%04x:%04x):(%04x:%04x)]\n",
4744 i,
4745 tnapi->hw_status->status,
4746 tnapi->hw_status->status_tag,
4747 tnapi->hw_status->rx_jumbo_consumer,
4748 tnapi->hw_status->rx_consumer,
4749 tnapi->hw_status->rx_mini_consumer,
4750 tnapi->hw_status->idx[0].rx_producer,
4751 tnapi->hw_status->idx[0].tx_consumer);
4752
4753 netdev_err(tp->dev,
4754 "%d: NAPI info [%08x:%08x:(%04x:%04x:%04x):%04x:(%04x:%04x:%04x:%04x)]\n",
4755 i,
4756 tnapi->last_tag, tnapi->last_irq_tag,
4757 tnapi->tx_prod, tnapi->tx_cons, tnapi->tx_pending,
4758 tnapi->rx_rcb_ptr,
4759 tnapi->prodring.rx_std_prod_idx,
4760 tnapi->prodring.rx_std_cons_idx,
4761 tnapi->prodring.rx_jmb_prod_idx,
4762 tnapi->prodring.rx_jmb_cons_idx);
4763 }
4764}
4765
Michael Chandf3e6542006-05-26 17:48:07 -07004766/* This is called whenever we suspect that the system chipset is re-
4767 * ordering the sequence of MMIO to the tx send mailbox. The symptom
4768 * is bogus tx completions. We try to recover by setting the
4769 * TG3_FLAG_MBOX_WRITE_REORDER flag and resetting the chip later
4770 * in the workqueue.
4771 */
4772static void tg3_tx_recover(struct tg3 *tp)
4773{
Joe Perches63c3a662011-04-26 08:12:10 +00004774 BUG_ON(tg3_flag(tp, MBOX_WRITE_REORDER) ||
Michael Chandf3e6542006-05-26 17:48:07 -07004775 tp->write32_tx_mbox == tg3_write_indirect_mbox);
4776
Matt Carlson5129c3a2010-04-05 10:19:23 +00004777 netdev_warn(tp->dev,
4778 "The system may be re-ordering memory-mapped I/O "
4779 "cycles to the network device, attempting to recover. "
4780 "Please report the problem to the driver maintainer "
4781 "and include system chipset information.\n");
Michael Chandf3e6542006-05-26 17:48:07 -07004782
4783 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00004784 tg3_flag_set(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07004785 spin_unlock(&tp->lock);
4786}
4787
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004788static inline u32 tg3_tx_avail(struct tg3_napi *tnapi)
Michael Chan1b2a7202006-08-07 21:46:02 -07004789{
Matt Carlsonf65aac12010-08-02 11:26:03 +00004790 /* Tell compiler to fetch tx indices from memory. */
4791 barrier();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004792 return tnapi->tx_pending -
4793 ((tnapi->tx_prod - tnapi->tx_cons) & (TG3_TX_RING_SIZE - 1));
Michael Chan1b2a7202006-08-07 21:46:02 -07004794}
4795
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796/* Tigon3 never reports partial packet sends. So we do not
4797 * need special logic to handle SKBs that have not had all
4798 * of their frags sent yet, like SunGEM does.
4799 */
Matt Carlson17375d22009-08-28 14:02:18 +00004800static void tg3_tx(struct tg3_napi *tnapi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801{
Matt Carlson17375d22009-08-28 14:02:18 +00004802 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00004803 u32 hw_idx = tnapi->hw_status->idx[0].tx_consumer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004804 u32 sw_idx = tnapi->tx_cons;
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004805 struct netdev_queue *txq;
4806 int index = tnapi - tp->napi;
4807
Joe Perches63c3a662011-04-26 08:12:10 +00004808 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004809 index--;
4810
4811 txq = netdev_get_tx_queue(tp->dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
4813 while (sw_idx != hw_idx) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00004814 struct ring_info *ri = &tnapi->tx_buffers[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 struct sk_buff *skb = ri->skb;
Michael Chandf3e6542006-05-26 17:48:07 -07004816 int i, tx_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817
Michael Chandf3e6542006-05-26 17:48:07 -07004818 if (unlikely(skb == NULL)) {
4819 tg3_tx_recover(tp);
4820 return;
4821 }
4822
Alexander Duyckf4188d82009-12-02 16:48:38 +00004823 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004824 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004825 skb_headlen(skb),
4826 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
4828 ri->skb = NULL;
4829
4830 sw_idx = NEXT_TX(sw_idx);
4831
4832 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004833 ri = &tnapi->tx_buffers[sw_idx];
Michael Chandf3e6542006-05-26 17:48:07 -07004834 if (unlikely(ri->skb != NULL || sw_idx == hw_idx))
4835 tx_bug = 1;
Alexander Duyckf4188d82009-12-02 16:48:38 +00004836
4837 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004838 dma_unmap_addr(ri, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00004839 skb_shinfo(skb)->frags[i].size,
4840 PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 sw_idx = NEXT_TX(sw_idx);
4842 }
4843
David S. Millerf47c11e2005-06-24 20:18:35 -07004844 dev_kfree_skb(skb);
Michael Chandf3e6542006-05-26 17:48:07 -07004845
4846 if (unlikely(tx_bug)) {
4847 tg3_tx_recover(tp);
4848 return;
4849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 }
4851
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004852 tnapi->tx_cons = sw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
Michael Chan1b2a7202006-08-07 21:46:02 -07004854 /* Need to make the tx_cons update visible to tg3_start_xmit()
4855 * before checking for netif_queue_stopped(). Without the
4856 * memory barrier, there is a small possibility that tg3_start_xmit()
4857 * will miss it and cause the queue to be stopped forever.
4858 */
4859 smp_mb();
4860
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004861 if (unlikely(netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004862 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))) {
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004863 __netif_tx_lock(txq, smp_processor_id());
4864 if (netif_tx_queue_stopped(txq) &&
Matt Carlsonf3f3f272009-08-28 14:03:21 +00004865 (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi)))
Matt Carlsonfe5f5782009-09-01 13:09:39 +00004866 netif_tx_wake_queue(txq);
4867 __netif_tx_unlock(txq);
Michael Chan51b91462005-09-01 17:41:28 -07004868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869}
4870
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004871static void tg3_rx_skb_free(struct tg3 *tp, struct ring_info *ri, u32 map_sz)
4872{
4873 if (!ri->skb)
4874 return;
4875
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004876 pci_unmap_single(tp->pdev, dma_unmap_addr(ri, mapping),
Matt Carlson2b2cdb62009-11-13 13:03:48 +00004877 map_sz, PCI_DMA_FROMDEVICE);
4878 dev_kfree_skb_any(ri->skb);
4879 ri->skb = NULL;
4880}
4881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882/* Returns size of skb allocated or < 0 on error.
4883 *
4884 * We only need to fill in the address because the other members
4885 * of the RX descriptor are invariant, see tg3_init_rings.
4886 *
4887 * Note the purposeful assymetry of cpu vs. chip accesses. For
4888 * posting buffers we only dirty the first cache line of the RX
4889 * descriptor (containing the address). Whereas for the RX status
4890 * buffers the cpu only reads the last cacheline of the RX descriptor
4891 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
4892 */
Matt Carlson86b21e52009-11-13 13:03:45 +00004893static int tg3_alloc_rx_skb(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
Matt Carlsona3896162009-11-13 13:03:44 +00004894 u32 opaque_key, u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895{
4896 struct tg3_rx_buffer_desc *desc;
Matt Carlsonf94e2902010-10-14 10:37:42 +00004897 struct ring_info *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 struct sk_buff *skb;
4899 dma_addr_t mapping;
4900 int skb_size, dest_idx;
4901
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 switch (opaque_key) {
4903 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004904 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlson21f581a2009-08-28 14:00:25 +00004905 desc = &tpr->rx_std[dest_idx];
4906 map = &tpr->rx_std_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004907 skb_size = tp->rx_pkt_map_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 break;
4909
4910 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00004911 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlson79ed5ac2009-08-28 14:00:55 +00004912 desc = &tpr->rx_jmb[dest_idx].std;
Matt Carlson21f581a2009-08-28 14:00:25 +00004913 map = &tpr->rx_jmb_buffers[dest_idx];
Matt Carlson287be122009-08-28 13:58:46 +00004914 skb_size = TG3_RX_JMB_MAP_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 break;
4916
4917 default:
4918 return -EINVAL;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
4921 /* Do not overwrite any of the map or rp information
4922 * until we are sure we can commit to a new buffer.
4923 *
4924 * Callers depend upon this behavior and assume that
4925 * we leave everything unchanged if we fail.
4926 */
Matt Carlson287be122009-08-28 13:58:46 +00004927 skb = netdev_alloc_skb(tp->dev, skb_size + tp->rx_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 if (skb == NULL)
4929 return -ENOMEM;
4930
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 skb_reserve(skb, tp->rx_offset);
4932
Matt Carlson287be122009-08-28 13:58:46 +00004933 mapping = pci_map_single(tp->pdev, skb->data, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 PCI_DMA_FROMDEVICE);
Matt Carlsona21771d2009-11-02 14:25:31 +00004935 if (pci_dma_mapping_error(tp->pdev, mapping)) {
4936 dev_kfree_skb(skb);
4937 return -EIO;
4938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
4940 map->skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004941 dma_unmap_addr_set(map, mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 desc->addr_hi = ((u64)mapping >> 32);
4944 desc->addr_lo = ((u64)mapping & 0xffffffff);
4945
4946 return skb_size;
4947}
4948
4949/* We only need to move over in the address because the other
4950 * members of the RX descriptor are invariant. See notes above
4951 * tg3_alloc_rx_skb for full details.
4952 */
Matt Carlsona3896162009-11-13 13:03:44 +00004953static void tg3_recycle_rx(struct tg3_napi *tnapi,
4954 struct tg3_rx_prodring_set *dpr,
4955 u32 opaque_key, int src_idx,
4956 u32 dest_idx_unmasked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957{
Matt Carlson17375d22009-08-28 14:02:18 +00004958 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 struct tg3_rx_buffer_desc *src_desc, *dest_desc;
4960 struct ring_info *src_map, *dest_map;
Matt Carlson8fea32b2010-09-15 08:59:58 +00004961 struct tg3_rx_prodring_set *spr = &tp->napi[0].prodring;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00004962 int dest_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964 switch (opaque_key) {
4965 case RXD_OPAQUE_RING_STD:
Matt Carlson2c49a442010-09-30 10:34:35 +00004966 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00004967 dest_desc = &dpr->rx_std[dest_idx];
4968 dest_map = &dpr->rx_std_buffers[dest_idx];
4969 src_desc = &spr->rx_std[src_idx];
4970 src_map = &spr->rx_std_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 break;
4972
4973 case RXD_OPAQUE_RING_JUMBO:
Matt Carlson2c49a442010-09-30 10:34:35 +00004974 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask;
Matt Carlsona3896162009-11-13 13:03:44 +00004975 dest_desc = &dpr->rx_jmb[dest_idx].std;
4976 dest_map = &dpr->rx_jmb_buffers[dest_idx];
4977 src_desc = &spr->rx_jmb[src_idx].std;
4978 src_map = &spr->rx_jmb_buffers[src_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 break;
4980
4981 default:
4982 return;
Stephen Hemminger855e1112008-04-16 16:37:28 -07004983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
4985 dest_map->skb = src_map->skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00004986 dma_unmap_addr_set(dest_map, mapping,
4987 dma_unmap_addr(src_map, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 dest_desc->addr_hi = src_desc->addr_hi;
4989 dest_desc->addr_lo = src_desc->addr_lo;
Matt Carlsone92967b2010-02-12 14:47:06 +00004990
4991 /* Ensure that the update to the skb happens after the physical
4992 * addresses have been transferred to the new BD location.
4993 */
4994 smp_wmb();
4995
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 src_map->skb = NULL;
4997}
4998
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999/* The RX ring scheme is composed of multiple rings which post fresh
5000 * buffers to the chip, and one special ring the chip uses to report
5001 * status back to the host.
5002 *
5003 * The special ring reports the status of received packets to the
5004 * host. The chip does not write into the original descriptor the
5005 * RX buffer was obtained from. The chip simply takes the original
5006 * descriptor as provided by the host, updates the status and length
5007 * field, then writes this into the next status ring entry.
5008 *
5009 * Each ring the host uses to post buffers to the chip is described
5010 * by a TG3_BDINFO entry in the chips SRAM area. When a packet arrives,
5011 * it is first placed into the on-chip ram. When the packet's length
5012 * is known, it walks down the TG3_BDINFO entries to select the ring.
5013 * Each TG3_BDINFO specifies a MAXLEN field and the first TG3_BDINFO
5014 * which is within the range of the new packet's length is chosen.
5015 *
5016 * The "separate ring for rx status" scheme may sound queer, but it makes
5017 * sense from a cache coherency perspective. If only the host writes
5018 * to the buffer post rings, and only the chip writes to the rx status
5019 * rings, then cache lines never move beyond shared-modified state.
5020 * If both the host and chip were to write into the same ring, cache line
5021 * eviction could occur since both entities want it in an exclusive state.
5022 */
Matt Carlson17375d22009-08-28 14:02:18 +00005023static int tg3_rx(struct tg3_napi *tnapi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024{
Matt Carlson17375d22009-08-28 14:02:18 +00005025 struct tg3 *tp = tnapi->tp;
Michael Chanf92905d2006-06-29 20:14:29 -07005026 u32 work_mask, rx_std_posted = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005027 u32 std_prod_idx, jmb_prod_idx;
Matt Carlson72334482009-08-28 14:03:01 +00005028 u32 sw_idx = tnapi->rx_rcb_ptr;
Michael Chan483ba502005-04-25 15:14:03 -07005029 u16 hw_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 int received;
Matt Carlson8fea32b2010-09-15 08:59:58 +00005031 struct tg3_rx_prodring_set *tpr = &tnapi->prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005033 hw_idx = *(tnapi->rx_rcb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 /*
5035 * We need to order the read of hw_idx and the read of
5036 * the opaque cookie.
5037 */
5038 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 work_mask = 0;
5040 received = 0;
Matt Carlson43619352009-11-13 13:03:47 +00005041 std_prod_idx = tpr->rx_std_prod_idx;
5042 jmb_prod_idx = tpr->rx_jmb_prod_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 while (sw_idx != hw_idx && budget > 0) {
Matt Carlsonafc081f2009-11-13 13:03:43 +00005044 struct ring_info *ri;
Matt Carlson72334482009-08-28 14:03:01 +00005045 struct tg3_rx_buffer_desc *desc = &tnapi->rx_rcb[sw_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046 unsigned int len;
5047 struct sk_buff *skb;
5048 dma_addr_t dma_addr;
5049 u32 opaque_key, desc_idx, *post_ptr;
5050
5051 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
5052 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
5053 if (opaque_key == RXD_OPAQUE_RING_STD) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005054 ri = &tp->napi[0].prodring.rx_std_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005055 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00005056 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00005057 post_ptr = &std_prod_idx;
Michael Chanf92905d2006-06-29 20:14:29 -07005058 rx_std_posted++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005060 ri = &tp->napi[0].prodring.rx_jmb_buffers[desc_idx];
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00005061 dma_addr = dma_unmap_addr(ri, mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00005062 skb = ri->skb;
Matt Carlson43619352009-11-13 13:03:47 +00005063 post_ptr = &jmb_prod_idx;
Matt Carlson21f581a2009-08-28 14:00:25 +00005064 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065 goto next_pkt_nopost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
5067 work_mask |= opaque_key;
5068
5069 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
5070 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
5071 drop_it:
Matt Carlsona3896162009-11-13 13:03:44 +00005072 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 desc_idx, *post_ptr);
5074 drop_it_no_recycle:
5075 /* Other statistics kept track of by card. */
Eric Dumazetb0057c52010-10-10 19:55:52 +00005076 tp->rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 goto next_pkt;
5078 }
5079
Matt Carlsonad829262008-11-21 17:16:16 -08005080 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
5081 ETH_FCS_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
Matt Carlsond2757fc2010-04-12 06:58:27 +00005083 if (len > TG3_RX_COPY_THRESH(tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 int skb_size;
5085
Matt Carlson86b21e52009-11-13 13:03:45 +00005086 skb_size = tg3_alloc_rx_skb(tp, tpr, opaque_key,
Matt Carlsonafc081f2009-11-13 13:03:43 +00005087 *post_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 if (skb_size < 0)
5089 goto drop_it;
5090
Matt Carlson287be122009-08-28 13:58:46 +00005091 pci_unmap_single(tp->pdev, dma_addr, skb_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 PCI_DMA_FROMDEVICE);
5093
Matt Carlson61e800c2010-02-17 15:16:54 +00005094 /* Ensure that the update to the skb happens
5095 * after the usage of the old DMA mapping.
5096 */
5097 smp_wmb();
5098
5099 ri->skb = NULL;
5100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 skb_put(skb, len);
5102 } else {
5103 struct sk_buff *copy_skb;
5104
Matt Carlsona3896162009-11-13 13:03:44 +00005105 tg3_recycle_rx(tnapi, tpr, opaque_key,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 desc_idx, *post_ptr);
5107
Matt Carlsonbf933c82011-01-25 15:58:49 +00005108 copy_skb = netdev_alloc_skb(tp->dev, len +
Matt Carlson9dc7a112010-04-12 06:58:28 +00005109 TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 if (copy_skb == NULL)
5111 goto drop_it_no_recycle;
5112
Matt Carlsonbf933c82011-01-25 15:58:49 +00005113 skb_reserve(copy_skb, TG3_RAW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 skb_put(copy_skb, len);
5115 pci_dma_sync_single_for_cpu(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03005116 skb_copy_from_linear_data(skb, copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 pci_dma_sync_single_for_device(tp->pdev, dma_addr, len, PCI_DMA_FROMDEVICE);
5118
5119 /* We'll reuse the original ring buffer. */
5120 skb = copy_skb;
5121 }
5122
Michał Mirosławdc668912011-04-07 03:35:07 +00005123 if ((tp->dev->features & NETIF_F_RXCSUM) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 (desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
5125 (((desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
5126 >> RXD_TCPCSUM_SHIFT) == 0xffff))
5127 skb->ip_summed = CHECKSUM_UNNECESSARY;
5128 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07005129 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
5131 skb->protocol = eth_type_trans(skb, tp->dev);
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005132
5133 if (len > (tp->dev->mtu + ETH_HLEN) &&
5134 skb->protocol != htons(ETH_P_8021Q)) {
5135 dev_kfree_skb(skb);
Eric Dumazetb0057c52010-10-10 19:55:52 +00005136 goto drop_it_no_recycle;
Matt Carlsonf7b493e2009-02-25 14:21:52 +00005137 }
5138
Matt Carlson9dc7a112010-04-12 06:58:28 +00005139 if (desc->type_flags & RXD_FLAG_VLAN &&
Matt Carlsonbf933c82011-01-25 15:58:49 +00005140 !(tp->rx_mode & RX_MODE_KEEP_VLAN_TAG))
5141 __vlan_hwaccel_put_tag(skb,
5142 desc->err_vlan & RXD_VLAN_MASK);
Matt Carlson9dc7a112010-04-12 06:58:28 +00005143
Matt Carlsonbf933c82011-01-25 15:58:49 +00005144 napi_gro_receive(&tnapi->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 received++;
5147 budget--;
5148
5149next_pkt:
5150 (*post_ptr)++;
Michael Chanf92905d2006-06-29 20:14:29 -07005151
5152 if (unlikely(rx_std_posted >= tp->rx_std_max_post)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005153 tpr->rx_std_prod_idx = std_prod_idx &
5154 tp->rx_std_ring_mask;
Matt Carlson86cfe4f2010-01-12 10:11:37 +00005155 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5156 tpr->rx_std_prod_idx);
Michael Chanf92905d2006-06-29 20:14:29 -07005157 work_mask &= ~RXD_OPAQUE_RING_STD;
5158 rx_std_posted = 0;
5159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160next_pkt_nopost:
Michael Chan483ba502005-04-25 15:14:03 -07005161 sw_idx++;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00005162 sw_idx &= tp->rx_ret_ring_mask;
Michael Chan52f6d692005-04-25 15:14:32 -07005163
5164 /* Refresh hw_idx to see if there is new work */
5165 if (sw_idx == hw_idx) {
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005166 hw_idx = *(tnapi->rx_rcb_prod_idx);
Michael Chan52f6d692005-04-25 15:14:32 -07005167 rmb();
5168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 }
5170
5171 /* ACK the status ring. */
Matt Carlson72334482009-08-28 14:03:01 +00005172 tnapi->rx_rcb_ptr = sw_idx;
5173 tw32_rx_mbox(tnapi->consmbox, sw_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
5175 /* Refill RX ring(s). */
Joe Perches63c3a662011-04-26 08:12:10 +00005176 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005177 if (work_mask & RXD_OPAQUE_RING_STD) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005178 tpr->rx_std_prod_idx = std_prod_idx &
5179 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005180 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5181 tpr->rx_std_prod_idx);
5182 }
5183 if (work_mask & RXD_OPAQUE_RING_JUMBO) {
Matt Carlson2c49a442010-09-30 10:34:35 +00005184 tpr->rx_jmb_prod_idx = jmb_prod_idx &
5185 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005186 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5187 tpr->rx_jmb_prod_idx);
5188 }
5189 mmiowb();
5190 } else if (work_mask) {
5191 /* rx_std_buffers[] and rx_jmb_buffers[] entries must be
5192 * updated before the producer indices can be updated.
5193 */
5194 smp_wmb();
5195
Matt Carlson2c49a442010-09-30 10:34:35 +00005196 tpr->rx_std_prod_idx = std_prod_idx & tp->rx_std_ring_mask;
5197 tpr->rx_jmb_prod_idx = jmb_prod_idx & tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005198
Matt Carlsone4af1af2010-02-12 14:47:05 +00005199 if (tnapi != &tp->napi[1])
5200 napi_schedule(&tp->napi[1].napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
5203 return received;
5204}
5205
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005206static void tg3_poll_link(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 /* handle link change and other phy events */
Joe Perches63c3a662011-04-26 08:12:10 +00005209 if (!(tg3_flag(tp, USE_LINKCHG_REG) || tg3_flag(tp, POLL_SERDES))) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005210 struct tg3_hw_status *sblk = tp->napi[0].hw_status;
5211
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 if (sblk->status & SD_STATUS_LINK_CHG) {
5213 sblk->status = SD_STATUS_UPDATED |
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005214 (sblk->status & ~SD_STATUS_LINK_CHG);
David S. Millerf47c11e2005-06-24 20:18:35 -07005215 spin_lock(&tp->lock);
Joe Perches63c3a662011-04-26 08:12:10 +00005216 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsondd477002008-05-25 23:45:58 -07005217 tw32_f(MAC_STATUS,
5218 (MAC_STATUS_SYNC_CHANGED |
5219 MAC_STATUS_CFG_CHANGED |
5220 MAC_STATUS_MI_COMPLETION |
5221 MAC_STATUS_LNKSTATE_CHANGED));
5222 udelay(40);
5223 } else
5224 tg3_setup_phy(tp, 0);
David S. Millerf47c11e2005-06-24 20:18:35 -07005225 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 }
5227 }
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005228}
5229
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005230static int tg3_rx_prodring_xfer(struct tg3 *tp,
5231 struct tg3_rx_prodring_set *dpr,
5232 struct tg3_rx_prodring_set *spr)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005233{
5234 u32 si, di, cpycnt, src_prod_idx;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005235 int i, err = 0;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005236
5237 while (1) {
5238 src_prod_idx = spr->rx_std_prod_idx;
5239
5240 /* Make sure updates to the rx_std_buffers[] entries and the
5241 * standard producer index are seen in the correct order.
5242 */
5243 smp_rmb();
5244
5245 if (spr->rx_std_cons_idx == src_prod_idx)
5246 break;
5247
5248 if (spr->rx_std_cons_idx < src_prod_idx)
5249 cpycnt = src_prod_idx - spr->rx_std_cons_idx;
5250 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005251 cpycnt = tp->rx_std_ring_mask + 1 -
5252 spr->rx_std_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005253
Matt Carlson2c49a442010-09-30 10:34:35 +00005254 cpycnt = min(cpycnt,
5255 tp->rx_std_ring_mask + 1 - dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005256
5257 si = spr->rx_std_cons_idx;
5258 di = dpr->rx_std_prod_idx;
5259
Matt Carlsone92967b2010-02-12 14:47:06 +00005260 for (i = di; i < di + cpycnt; i++) {
5261 if (dpr->rx_std_buffers[i].skb) {
5262 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005263 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005264 break;
5265 }
5266 }
5267
5268 if (!cpycnt)
5269 break;
5270
5271 /* Ensure that updates to the rx_std_buffers ring and the
5272 * shadowed hardware producer ring from tg3_recycle_skb() are
5273 * ordered correctly WRT the skb check above.
5274 */
5275 smp_rmb();
5276
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005277 memcpy(&dpr->rx_std_buffers[di],
5278 &spr->rx_std_buffers[si],
5279 cpycnt * sizeof(struct ring_info));
5280
5281 for (i = 0; i < cpycnt; i++, di++, si++) {
5282 struct tg3_rx_buffer_desc *sbd, *dbd;
5283 sbd = &spr->rx_std[si];
5284 dbd = &dpr->rx_std[di];
5285 dbd->addr_hi = sbd->addr_hi;
5286 dbd->addr_lo = sbd->addr_lo;
5287 }
5288
Matt Carlson2c49a442010-09-30 10:34:35 +00005289 spr->rx_std_cons_idx = (spr->rx_std_cons_idx + cpycnt) &
5290 tp->rx_std_ring_mask;
5291 dpr->rx_std_prod_idx = (dpr->rx_std_prod_idx + cpycnt) &
5292 tp->rx_std_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005293 }
5294
5295 while (1) {
5296 src_prod_idx = spr->rx_jmb_prod_idx;
5297
5298 /* Make sure updates to the rx_jmb_buffers[] entries and
5299 * the jumbo producer index are seen in the correct order.
5300 */
5301 smp_rmb();
5302
5303 if (spr->rx_jmb_cons_idx == src_prod_idx)
5304 break;
5305
5306 if (spr->rx_jmb_cons_idx < src_prod_idx)
5307 cpycnt = src_prod_idx - spr->rx_jmb_cons_idx;
5308 else
Matt Carlson2c49a442010-09-30 10:34:35 +00005309 cpycnt = tp->rx_jmb_ring_mask + 1 -
5310 spr->rx_jmb_cons_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005311
5312 cpycnt = min(cpycnt,
Matt Carlson2c49a442010-09-30 10:34:35 +00005313 tp->rx_jmb_ring_mask + 1 - dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005314
5315 si = spr->rx_jmb_cons_idx;
5316 di = dpr->rx_jmb_prod_idx;
5317
Matt Carlsone92967b2010-02-12 14:47:06 +00005318 for (i = di; i < di + cpycnt; i++) {
5319 if (dpr->rx_jmb_buffers[i].skb) {
5320 cpycnt = i - di;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005321 err = -ENOSPC;
Matt Carlsone92967b2010-02-12 14:47:06 +00005322 break;
5323 }
5324 }
5325
5326 if (!cpycnt)
5327 break;
5328
5329 /* Ensure that updates to the rx_jmb_buffers ring and the
5330 * shadowed hardware producer ring from tg3_recycle_skb() are
5331 * ordered correctly WRT the skb check above.
5332 */
5333 smp_rmb();
5334
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005335 memcpy(&dpr->rx_jmb_buffers[di],
5336 &spr->rx_jmb_buffers[si],
5337 cpycnt * sizeof(struct ring_info));
5338
5339 for (i = 0; i < cpycnt; i++, di++, si++) {
5340 struct tg3_rx_buffer_desc *sbd, *dbd;
5341 sbd = &spr->rx_jmb[si].std;
5342 dbd = &dpr->rx_jmb[di].std;
5343 dbd->addr_hi = sbd->addr_hi;
5344 dbd->addr_lo = sbd->addr_lo;
5345 }
5346
Matt Carlson2c49a442010-09-30 10:34:35 +00005347 spr->rx_jmb_cons_idx = (spr->rx_jmb_cons_idx + cpycnt) &
5348 tp->rx_jmb_ring_mask;
5349 dpr->rx_jmb_prod_idx = (dpr->rx_jmb_prod_idx + cpycnt) &
5350 tp->rx_jmb_ring_mask;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005351 }
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005352
5353 return err;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005354}
5355
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005356static int tg3_poll_work(struct tg3_napi *tnapi, int work_done, int budget)
5357{
5358 struct tg3 *tp = tnapi->tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
5360 /* run TX completion thread */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005361 if (tnapi->hw_status->idx[0].tx_consumer != tnapi->tx_cons) {
Matt Carlson17375d22009-08-28 14:02:18 +00005362 tg3_tx(tnapi);
Joe Perches63c3a662011-04-26 08:12:10 +00005363 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Michael Chan4fd7ab52007-10-12 01:39:50 -07005364 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365 }
5366
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 /* run RX thread, within the bounds set by NAPI.
5368 * All RX "locking" is done by ensuring outside
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005369 * code synchronizes with tg3->napi.poll()
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 */
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00005371 if (*(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr)
Matt Carlson17375d22009-08-28 14:02:18 +00005372 work_done += tg3_rx(tnapi, budget - work_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373
Joe Perches63c3a662011-04-26 08:12:10 +00005374 if (tg3_flag(tp, ENABLE_RSS) && tnapi == &tp->napi[1]) {
Matt Carlson8fea32b2010-09-15 08:59:58 +00005375 struct tg3_rx_prodring_set *dpr = &tp->napi[0].prodring;
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005376 int i, err = 0;
Matt Carlsone4af1af2010-02-12 14:47:05 +00005377 u32 std_prod_idx = dpr->rx_std_prod_idx;
5378 u32 jmb_prod_idx = dpr->rx_jmb_prod_idx;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005379
Matt Carlsone4af1af2010-02-12 14:47:05 +00005380 for (i = 1; i < tp->irq_cnt; i++)
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005381 err |= tg3_rx_prodring_xfer(tp, dpr,
Matt Carlson8fea32b2010-09-15 08:59:58 +00005382 &tp->napi[i].prodring);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005383
5384 wmb();
5385
Matt Carlsone4af1af2010-02-12 14:47:05 +00005386 if (std_prod_idx != dpr->rx_std_prod_idx)
5387 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG,
5388 dpr->rx_std_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005389
Matt Carlsone4af1af2010-02-12 14:47:05 +00005390 if (jmb_prod_idx != dpr->rx_jmb_prod_idx)
5391 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG,
5392 dpr->rx_jmb_prod_idx);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005393
5394 mmiowb();
Matt Carlsonf89f38b2010-02-12 14:47:07 +00005395
5396 if (err)
5397 tw32_f(HOSTCC_MODE, tp->coal_now);
Matt Carlsonb196c7e2009-11-13 13:03:50 +00005398 }
5399
David S. Miller6f535762007-10-11 18:08:29 -07005400 return work_done;
5401}
David S. Millerf7383c22005-05-18 22:50:53 -07005402
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005403static int tg3_poll_msix(struct napi_struct *napi, int budget)
5404{
5405 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5406 struct tg3 *tp = tnapi->tp;
5407 int work_done = 0;
5408 struct tg3_hw_status *sblk = tnapi->hw_status;
5409
5410 while (1) {
5411 work_done = tg3_poll_work(tnapi, work_done, budget);
5412
Joe Perches63c3a662011-04-26 08:12:10 +00005413 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005414 goto tx_recovery;
5415
5416 if (unlikely(work_done >= budget))
5417 break;
5418
Matt Carlsonc6cdf432010-04-05 10:19:26 +00005419 /* tp->last_tag is used in tg3_int_reenable() below
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005420 * to tell the hw how much work has been processed,
5421 * so we must read it before checking for more work.
5422 */
5423 tnapi->last_tag = sblk->status_tag;
5424 tnapi->last_irq_tag = tnapi->last_tag;
5425 rmb();
5426
5427 /* check for RX/TX work to do */
Matt Carlson6d40db72010-04-05 10:19:20 +00005428 if (likely(sblk->idx[0].tx_consumer == tnapi->tx_cons &&
5429 *(tnapi->rx_rcb_prod_idx) == tnapi->rx_rcb_ptr)) {
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005430 napi_complete(napi);
5431 /* Reenable interrupts. */
5432 tw32_mailbox(tnapi->int_mbox, tnapi->last_tag << 24);
5433 mmiowb();
5434 break;
5435 }
5436 }
5437
5438 return work_done;
5439
5440tx_recovery:
5441 /* work_done is guaranteed to be less than budget. */
5442 napi_complete(napi);
5443 schedule_work(&tp->reset_task);
5444 return work_done;
5445}
5446
Matt Carlsone64de4e2011-04-13 11:05:05 +00005447static void tg3_process_error(struct tg3 *tp)
5448{
5449 u32 val;
5450 bool real_error = false;
5451
Joe Perches63c3a662011-04-26 08:12:10 +00005452 if (tg3_flag(tp, ERROR_PROCESSED))
Matt Carlsone64de4e2011-04-13 11:05:05 +00005453 return;
5454
5455 /* Check Flow Attention register */
5456 val = tr32(HOSTCC_FLOW_ATTN);
5457 if (val & ~HOSTCC_FLOW_ATTN_MBUF_LWM) {
5458 netdev_err(tp->dev, "FLOW Attention error. Resetting chip.\n");
5459 real_error = true;
5460 }
5461
5462 if (tr32(MSGINT_STATUS) & ~MSGINT_STATUS_MSI_REQ) {
5463 netdev_err(tp->dev, "MSI Status error. Resetting chip.\n");
5464 real_error = true;
5465 }
5466
5467 if (tr32(RDMAC_STATUS) || tr32(WDMAC_STATUS)) {
5468 netdev_err(tp->dev, "DMA Status error. Resetting chip.\n");
5469 real_error = true;
5470 }
5471
5472 if (!real_error)
5473 return;
5474
5475 tg3_dump_state(tp);
5476
Joe Perches63c3a662011-04-26 08:12:10 +00005477 tg3_flag_set(tp, ERROR_PROCESSED);
Matt Carlsone64de4e2011-04-13 11:05:05 +00005478 schedule_work(&tp->reset_task);
5479}
5480
David S. Miller6f535762007-10-11 18:08:29 -07005481static int tg3_poll(struct napi_struct *napi, int budget)
5482{
Matt Carlson8ef04422009-08-28 14:01:37 +00005483 struct tg3_napi *tnapi = container_of(napi, struct tg3_napi, napi);
5484 struct tg3 *tp = tnapi->tp;
David S. Miller6f535762007-10-11 18:08:29 -07005485 int work_done = 0;
Matt Carlson898a56f2009-08-28 14:02:40 +00005486 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Miller6f535762007-10-11 18:08:29 -07005487
5488 while (1) {
Matt Carlsone64de4e2011-04-13 11:05:05 +00005489 if (sblk->status & SD_STATUS_ERROR)
5490 tg3_process_error(tp);
5491
Matt Carlson35f2d7d2009-11-13 13:03:41 +00005492 tg3_poll_link(tp);
5493
Matt Carlson17375d22009-08-28 14:02:18 +00005494 work_done = tg3_poll_work(tnapi, work_done, budget);
David S. Miller6f535762007-10-11 18:08:29 -07005495
Joe Perches63c3a662011-04-26 08:12:10 +00005496 if (unlikely(tg3_flag(tp, TX_RECOVERY_PENDING)))
David S. Miller6f535762007-10-11 18:08:29 -07005497 goto tx_recovery;
5498
5499 if (unlikely(work_done >= budget))
5500 break;
5501
Joe Perches63c3a662011-04-26 08:12:10 +00005502 if (tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson17375d22009-08-28 14:02:18 +00005503 /* tp->last_tag is used in tg3_int_reenable() below
Michael Chan4fd7ab52007-10-12 01:39:50 -07005504 * to tell the hw how much work has been processed,
5505 * so we must read it before checking for more work.
5506 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005507 tnapi->last_tag = sblk->status_tag;
5508 tnapi->last_irq_tag = tnapi->last_tag;
Michael Chan4fd7ab52007-10-12 01:39:50 -07005509 rmb();
5510 } else
5511 sblk->status &= ~SD_STATUS_UPDATED;
5512
Matt Carlson17375d22009-08-28 14:02:18 +00005513 if (likely(!tg3_has_work(tnapi))) {
Ben Hutchings288379f2009-01-19 16:43:59 -08005514 napi_complete(napi);
Matt Carlson17375d22009-08-28 14:02:18 +00005515 tg3_int_reenable(tnapi);
David S. Miller6f535762007-10-11 18:08:29 -07005516 break;
5517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 }
5519
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005520 return work_done;
David S. Miller6f535762007-10-11 18:08:29 -07005521
5522tx_recovery:
Michael Chan4fd7ab52007-10-12 01:39:50 -07005523 /* work_done is guaranteed to be less than budget. */
Ben Hutchings288379f2009-01-19 16:43:59 -08005524 napi_complete(napi);
David S. Miller6f535762007-10-11 18:08:29 -07005525 schedule_work(&tp->reset_task);
Michael Chan4fd7ab52007-10-12 01:39:50 -07005526 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527}
5528
Matt Carlson66cfd1b2010-09-30 10:34:30 +00005529static void tg3_napi_disable(struct tg3 *tp)
5530{
5531 int i;
5532
5533 for (i = tp->irq_cnt - 1; i >= 0; i--)
5534 napi_disable(&tp->napi[i].napi);
5535}
5536
5537static void tg3_napi_enable(struct tg3 *tp)
5538{
5539 int i;
5540
5541 for (i = 0; i < tp->irq_cnt; i++)
5542 napi_enable(&tp->napi[i].napi);
5543}
5544
5545static void tg3_napi_init(struct tg3 *tp)
5546{
5547 int i;
5548
5549 netif_napi_add(tp->dev, &tp->napi[0].napi, tg3_poll, 64);
5550 for (i = 1; i < tp->irq_cnt; i++)
5551 netif_napi_add(tp->dev, &tp->napi[i].napi, tg3_poll_msix, 64);
5552}
5553
5554static void tg3_napi_fini(struct tg3 *tp)
5555{
5556 int i;
5557
5558 for (i = 0; i < tp->irq_cnt; i++)
5559 netif_napi_del(&tp->napi[i].napi);
5560}
5561
5562static inline void tg3_netif_stop(struct tg3 *tp)
5563{
5564 tp->dev->trans_start = jiffies; /* prevent tx timeout */
5565 tg3_napi_disable(tp);
5566 netif_tx_disable(tp->dev);
5567}
5568
5569static inline void tg3_netif_start(struct tg3 *tp)
5570{
5571 /* NOTE: unconditional netif_tx_wake_all_queues is only
5572 * appropriate so long as all callers are assured to
5573 * have free tx slots (such as after tg3_init_hw)
5574 */
5575 netif_tx_wake_all_queues(tp->dev);
5576
5577 tg3_napi_enable(tp);
5578 tp->napi[0].hw_status->status |= SD_STATUS_UPDATED;
5579 tg3_enable_ints(tp);
5580}
5581
David S. Millerf47c11e2005-06-24 20:18:35 -07005582static void tg3_irq_quiesce(struct tg3 *tp)
5583{
Matt Carlson4f125f42009-09-01 12:55:02 +00005584 int i;
5585
David S. Millerf47c11e2005-06-24 20:18:35 -07005586 BUG_ON(tp->irq_sync);
5587
5588 tp->irq_sync = 1;
5589 smp_mb();
5590
Matt Carlson4f125f42009-09-01 12:55:02 +00005591 for (i = 0; i < tp->irq_cnt; i++)
5592 synchronize_irq(tp->napi[i].irq_vec);
David S. Millerf47c11e2005-06-24 20:18:35 -07005593}
5594
David S. Millerf47c11e2005-06-24 20:18:35 -07005595/* Fully shutdown all tg3 driver activity elsewhere in the system.
5596 * If irq_sync is non-zero, then the IRQ handler must be synchronized
5597 * with as well. Most of the time, this is not necessary except when
5598 * shutting down the device.
5599 */
5600static inline void tg3_full_lock(struct tg3 *tp, int irq_sync)
5601{
Michael Chan46966542007-07-11 19:47:19 -07005602 spin_lock_bh(&tp->lock);
David S. Millerf47c11e2005-06-24 20:18:35 -07005603 if (irq_sync)
5604 tg3_irq_quiesce(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07005605}
5606
5607static inline void tg3_full_unlock(struct tg3 *tp)
5608{
David S. Millerf47c11e2005-06-24 20:18:35 -07005609 spin_unlock_bh(&tp->lock);
5610}
5611
Michael Chanfcfa0a32006-03-20 22:28:41 -08005612/* One-shot MSI handler - Chip automatically disables interrupt
5613 * after sending MSI so driver doesn't have to do it.
5614 */
David Howells7d12e782006-10-05 14:55:46 +01005615static irqreturn_t tg3_msi_1shot(int irq, void *dev_id)
Michael Chanfcfa0a32006-03-20 22:28:41 -08005616{
Matt Carlson09943a12009-08-28 14:01:57 +00005617 struct tg3_napi *tnapi = dev_id;
5618 struct tg3 *tp = tnapi->tp;
Michael Chanfcfa0a32006-03-20 22:28:41 -08005619
Matt Carlson898a56f2009-08-28 14:02:40 +00005620 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005621 if (tnapi->rx_rcb)
5622 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005623
5624 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005625 napi_schedule(&tnapi->napi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08005626
5627 return IRQ_HANDLED;
5628}
5629
Michael Chan88b06bc22005-04-21 17:13:25 -07005630/* MSI ISR - No need to check for interrupt sharing and no need to
5631 * flush status block and interrupt mailbox. PCI ordering rules
5632 * guarantee that MSI will arrive after the status block.
5633 */
David Howells7d12e782006-10-05 14:55:46 +01005634static irqreturn_t tg3_msi(int irq, void *dev_id)
Michael Chan88b06bc22005-04-21 17:13:25 -07005635{
Matt Carlson09943a12009-08-28 14:01:57 +00005636 struct tg3_napi *tnapi = dev_id;
5637 struct tg3 *tp = tnapi->tp;
Michael Chan88b06bc22005-04-21 17:13:25 -07005638
Matt Carlson898a56f2009-08-28 14:02:40 +00005639 prefetch(tnapi->hw_status);
Matt Carlson0c1d0e22009-09-01 13:16:33 +00005640 if (tnapi->rx_rcb)
5641 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Michael Chan88b06bc22005-04-21 17:13:25 -07005642 /*
David S. Millerfac9b832005-05-18 22:46:34 -07005643 * Writing any value to intr-mbox-0 clears PCI INTA# and
Michael Chan88b06bc22005-04-21 17:13:25 -07005644 * chip-internal interrupt pending events.
David S. Millerfac9b832005-05-18 22:46:34 -07005645 * Writing non-zero to intr-mbox-0 additional tells the
Michael Chan88b06bc22005-04-21 17:13:25 -07005646 * NIC to stop sending us irqs, engaging "in-intr-handler"
5647 * event coalescing.
5648 */
5649 tw32_mailbox(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chan61487482005-09-05 17:53:19 -07005650 if (likely(!tg3_irq_sync(tp)))
Matt Carlson09943a12009-08-28 14:01:57 +00005651 napi_schedule(&tnapi->napi);
Michael Chan61487482005-09-05 17:53:19 -07005652
Michael Chan88b06bc22005-04-21 17:13:25 -07005653 return IRQ_RETVAL(1);
5654}
5655
David Howells7d12e782006-10-05 14:55:46 +01005656static irqreturn_t tg3_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657{
Matt Carlson09943a12009-08-28 14:01:57 +00005658 struct tg3_napi *tnapi = dev_id;
5659 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005660 struct tg3_hw_status *sblk = tnapi->hw_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 unsigned int handled = 1;
5662
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 /* In INTx mode, it is possible for the interrupt to arrive at
5664 * the CPU before the status block posted prior to the interrupt.
5665 * Reading the PCI State register will confirm whether the
5666 * interrupt is ours and will flush the status block.
5667 */
Michael Chand18edcb2007-03-24 20:57:11 -07005668 if (unlikely(!(sblk->status & SD_STATUS_UPDATED))) {
Joe Perches63c3a662011-04-26 08:12:10 +00005669 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005670 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5671 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005672 goto out;
David S. Millerfac9b832005-05-18 22:46:34 -07005673 }
Michael Chand18edcb2007-03-24 20:57:11 -07005674 }
5675
5676 /*
5677 * Writing any value to intr-mbox-0 clears PCI INTA# and
5678 * chip-internal interrupt pending events.
5679 * Writing non-zero to intr-mbox-0 additional tells the
5680 * NIC to stop sending us irqs, engaging "in-intr-handler"
5681 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005682 *
5683 * Flush the mailbox to de-assert the IRQ immediately to prevent
5684 * spurious interrupts. The flush impacts performance but
5685 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005686 */
Michael Chanc04cb342007-05-07 00:26:15 -07005687 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Michael Chand18edcb2007-03-24 20:57:11 -07005688 if (tg3_irq_sync(tp))
5689 goto out;
5690 sblk->status &= ~SD_STATUS_UPDATED;
Matt Carlson17375d22009-08-28 14:02:18 +00005691 if (likely(tg3_has_work(tnapi))) {
Matt Carlson72334482009-08-28 14:03:01 +00005692 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson09943a12009-08-28 14:01:57 +00005693 napi_schedule(&tnapi->napi);
Michael Chand18edcb2007-03-24 20:57:11 -07005694 } else {
5695 /* No work, shared interrupt perhaps? re-enable
5696 * interrupts, and flush that PCI write
5697 */
5698 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW,
5699 0x00000000);
David S. Millerfac9b832005-05-18 22:46:34 -07005700 }
David S. Millerf47c11e2005-06-24 20:18:35 -07005701out:
David S. Millerfac9b832005-05-18 22:46:34 -07005702 return IRQ_RETVAL(handled);
5703}
5704
David Howells7d12e782006-10-05 14:55:46 +01005705static irqreturn_t tg3_interrupt_tagged(int irq, void *dev_id)
David S. Millerfac9b832005-05-18 22:46:34 -07005706{
Matt Carlson09943a12009-08-28 14:01:57 +00005707 struct tg3_napi *tnapi = dev_id;
5708 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005709 struct tg3_hw_status *sblk = tnapi->hw_status;
David S. Millerfac9b832005-05-18 22:46:34 -07005710 unsigned int handled = 1;
5711
David S. Millerfac9b832005-05-18 22:46:34 -07005712 /* In INTx mode, it is possible for the interrupt to arrive at
5713 * the CPU before the status block posted prior to the interrupt.
5714 * Reading the PCI State register will confirm whether the
5715 * interrupt is ours and will flush the status block.
5716 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005717 if (unlikely(sblk->status_tag == tnapi->last_irq_tag)) {
Joe Perches63c3a662011-04-26 08:12:10 +00005718 if (tg3_flag(tp, CHIP_RESETTING) ||
Michael Chand18edcb2007-03-24 20:57:11 -07005719 (tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
5720 handled = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07005721 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 }
Michael Chand18edcb2007-03-24 20:57:11 -07005723 }
5724
5725 /*
5726 * writing any value to intr-mbox-0 clears PCI INTA# and
5727 * chip-internal interrupt pending events.
5728 * writing non-zero to intr-mbox-0 additional tells the
5729 * NIC to stop sending us irqs, engaging "in-intr-handler"
5730 * event coalescing.
Michael Chanc04cb342007-05-07 00:26:15 -07005731 *
5732 * Flush the mailbox to de-assert the IRQ immediately to prevent
5733 * spurious interrupts. The flush impacts performance but
5734 * excessive spurious interrupts can be worse in some cases.
Michael Chand18edcb2007-03-24 20:57:11 -07005735 */
Michael Chanc04cb342007-05-07 00:26:15 -07005736 tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00000001);
Matt Carlson624f8e52009-04-20 06:55:01 +00005737
5738 /*
5739 * In a shared interrupt configuration, sometimes other devices'
5740 * interrupts will scream. We record the current status tag here
5741 * so that the above check can report that the screaming interrupts
5742 * are unhandled. Eventually they will be silenced.
5743 */
Matt Carlson898a56f2009-08-28 14:02:40 +00005744 tnapi->last_irq_tag = sblk->status_tag;
Matt Carlson624f8e52009-04-20 06:55:01 +00005745
Michael Chand18edcb2007-03-24 20:57:11 -07005746 if (tg3_irq_sync(tp))
5747 goto out;
Matt Carlson624f8e52009-04-20 06:55:01 +00005748
Matt Carlson72334482009-08-28 14:03:01 +00005749 prefetch(&tnapi->rx_rcb[tnapi->rx_rcb_ptr]);
Matt Carlson624f8e52009-04-20 06:55:01 +00005750
Matt Carlson09943a12009-08-28 14:01:57 +00005751 napi_schedule(&tnapi->napi);
Matt Carlson624f8e52009-04-20 06:55:01 +00005752
David S. Millerf47c11e2005-06-24 20:18:35 -07005753out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 return IRQ_RETVAL(handled);
5755}
5756
Michael Chan79381092005-04-21 17:13:59 -07005757/* ISR for interrupt test */
David Howells7d12e782006-10-05 14:55:46 +01005758static irqreturn_t tg3_test_isr(int irq, void *dev_id)
Michael Chan79381092005-04-21 17:13:59 -07005759{
Matt Carlson09943a12009-08-28 14:01:57 +00005760 struct tg3_napi *tnapi = dev_id;
5761 struct tg3 *tp = tnapi->tp;
Matt Carlson898a56f2009-08-28 14:02:40 +00005762 struct tg3_hw_status *sblk = tnapi->hw_status;
Michael Chan79381092005-04-21 17:13:59 -07005763
Michael Chanf9804dd2005-09-27 12:13:10 -07005764 if ((sblk->status & SD_STATUS_UPDATED) ||
5765 !(tr32(TG3PCI_PCISTATE) & PCISTATE_INT_NOT_ACTIVE)) {
Michael Chanb16250e2006-09-27 16:10:14 -07005766 tg3_disable_ints(tp);
Michael Chan79381092005-04-21 17:13:59 -07005767 return IRQ_RETVAL(1);
5768 }
5769 return IRQ_RETVAL(0);
5770}
5771
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07005772static int tg3_init_hw(struct tg3 *, int);
Michael Chan944d9802005-05-29 14:57:48 -07005773static int tg3_halt(struct tg3 *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
Michael Chanb9ec6c12006-07-25 16:37:27 -07005775/* Restart hardware after configuration changes, self-test, etc.
5776 * Invoked with tp->lock held.
5777 */
5778static int tg3_restart_hw(struct tg3 *tp, int reset_phy)
Eric Dumazet78c61462008-04-24 23:33:06 -07005779 __releases(tp->lock)
5780 __acquires(tp->lock)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005781{
5782 int err;
5783
5784 err = tg3_init_hw(tp, reset_phy);
5785 if (err) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00005786 netdev_err(tp->dev,
5787 "Failed to re-initialize device, aborting\n");
Michael Chanb9ec6c12006-07-25 16:37:27 -07005788 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
5789 tg3_full_unlock(tp);
5790 del_timer_sync(&tp->timer);
5791 tp->irq_sync = 0;
Matt Carlsonfed97812009-09-01 13:10:19 +00005792 tg3_napi_enable(tp);
Michael Chanb9ec6c12006-07-25 16:37:27 -07005793 dev_close(tp->dev);
5794 tg3_full_lock(tp, 0);
5795 }
5796 return err;
5797}
5798
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799#ifdef CONFIG_NET_POLL_CONTROLLER
5800static void tg3_poll_controller(struct net_device *dev)
5801{
Matt Carlson4f125f42009-09-01 12:55:02 +00005802 int i;
Michael Chan88b06bc22005-04-21 17:13:25 -07005803 struct tg3 *tp = netdev_priv(dev);
5804
Matt Carlson4f125f42009-09-01 12:55:02 +00005805 for (i = 0; i < tp->irq_cnt; i++)
Louis Rillingfe234f02010-03-09 06:14:41 +00005806 tg3_interrupt(tp->napi[i].irq_vec, &tp->napi[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807}
5808#endif
5809
David Howellsc4028952006-11-22 14:57:56 +00005810static void tg3_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811{
David Howellsc4028952006-11-22 14:57:56 +00005812 struct tg3 *tp = container_of(work, struct tg3, reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005813 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814 unsigned int restart_timer;
5815
Michael Chan7faa0062006-02-02 17:29:28 -08005816 tg3_full_lock(tp, 0);
Michael Chan7faa0062006-02-02 17:29:28 -08005817
5818 if (!netif_running(tp->dev)) {
Michael Chan7faa0062006-02-02 17:29:28 -08005819 tg3_full_unlock(tp);
5820 return;
5821 }
5822
5823 tg3_full_unlock(tp);
5824
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005825 tg3_phy_stop(tp);
5826
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827 tg3_netif_stop(tp);
5828
David S. Millerf47c11e2005-06-24 20:18:35 -07005829 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
Joe Perches63c3a662011-04-26 08:12:10 +00005831 restart_timer = tg3_flag(tp, RESTART_TIMER);
5832 tg3_flag_clear(tp, RESTART_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833
Joe Perches63c3a662011-04-26 08:12:10 +00005834 if (tg3_flag(tp, TX_RECOVERY_PENDING)) {
Michael Chandf3e6542006-05-26 17:48:07 -07005835 tp->write32_tx_mbox = tg3_write32_tx_mbox;
5836 tp->write32_rx_mbox = tg3_write_flush_reg32;
Joe Perches63c3a662011-04-26 08:12:10 +00005837 tg3_flag_set(tp, MBOX_WRITE_REORDER);
5838 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
Michael Chandf3e6542006-05-26 17:48:07 -07005839 }
5840
Michael Chan944d9802005-05-29 14:57:48 -07005841 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005842 err = tg3_init_hw(tp, 1);
5843 if (err)
Michael Chanb9ec6c12006-07-25 16:37:27 -07005844 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845
5846 tg3_netif_start(tp);
5847
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 if (restart_timer)
5849 mod_timer(&tp->timer, jiffies + 1);
Michael Chan7faa0062006-02-02 17:29:28 -08005850
Michael Chanb9ec6c12006-07-25 16:37:27 -07005851out:
Michael Chan7faa0062006-02-02 17:29:28 -08005852 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07005853
5854 if (!err)
5855 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856}
5857
5858static void tg3_tx_timeout(struct net_device *dev)
5859{
5860 struct tg3 *tp = netdev_priv(dev);
5861
Michael Chanb0408752007-02-13 12:18:30 -08005862 if (netif_msg_tx_err(tp)) {
Joe Perches05dbe002010-02-17 19:44:19 +00005863 netdev_err(dev, "transmit timed out, resetting\n");
Matt Carlson97bd8e42011-04-13 11:05:04 +00005864 tg3_dump_state(tp);
Michael Chanb0408752007-02-13 12:18:30 -08005865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
5867 schedule_work(&tp->reset_task);
5868}
5869
Michael Chanc58ec932005-09-17 00:46:27 -07005870/* Test for DMA buffers crossing any 4GB boundaries: 4G, 8G, etc */
5871static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len)
5872{
5873 u32 base = (u32) mapping & 0xffffffff;
5874
Eric Dumazet807540b2010-09-23 05:40:09 +00005875 return (base > 0xffffdcc0) && (base + len + 8 < base);
Michael Chanc58ec932005-09-17 00:46:27 -07005876}
5877
Michael Chan72f2afb2006-03-06 19:28:35 -08005878/* Test for DMA addresses > 40-bit */
5879static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping,
5880 int len)
5881{
5882#if defined(CONFIG_HIGHMEM) && (BITS_PER_LONG == 64)
Joe Perches63c3a662011-04-26 08:12:10 +00005883 if (tg3_flag(tp, 40BIT_DMA_BUG))
Eric Dumazet807540b2010-09-23 05:40:09 +00005884 return ((u64) mapping + len) > DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -08005885 return 0;
5886#else
5887 return 0;
5888#endif
5889}
5890
Matt Carlson2ffcc982011-05-19 12:12:44 +00005891static void tg3_set_txd(struct tg3_napi *tnapi, int entry,
5892 dma_addr_t mapping, int len, u32 flags,
5893 u32 mss_and_is_end)
5894{
5895 struct tg3_tx_buffer_desc *txd = &tnapi->tx_ring[entry];
5896 int is_end = (mss_and_is_end & 0x1);
5897 u32 mss = (mss_and_is_end >> 1);
5898 u32 vlan_tag = 0;
5899
5900 if (is_end)
5901 flags |= TXD_FLAG_END;
5902 if (flags & TXD_FLAG_VLAN) {
5903 vlan_tag = flags >> 16;
5904 flags &= 0xffff;
5905 }
5906 vlan_tag |= (mss << TXD_MSS_SHIFT);
5907
5908 txd->addr_hi = ((u64) mapping >> 32);
5909 txd->addr_lo = ((u64) mapping & 0xffffffff);
5910 txd->len_flags = (len << TXD_LEN_SHIFT) | flags;
5911 txd->vlan_tag = vlan_tag << TXD_VLAN_TAG_SHIFT;
5912}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913
Matt Carlson432aa7e2011-05-19 12:12:45 +00005914static void tg3_skb_error_unmap(struct tg3_napi *tnapi,
5915 struct sk_buff *skb, int last)
5916{
5917 int i;
5918 u32 entry = tnapi->tx_prod;
5919 struct ring_info *txb = &tnapi->tx_buffers[entry];
5920
5921 pci_unmap_single(tnapi->tp->pdev,
5922 dma_unmap_addr(txb, mapping),
5923 skb_headlen(skb),
5924 PCI_DMA_TODEVICE);
Matt Carlson9a2e0fb2011-06-02 13:01:39 +00005925 for (i = 0; i < last; i++) {
Matt Carlson432aa7e2011-05-19 12:12:45 +00005926 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5927
5928 entry = NEXT_TX(entry);
5929 txb = &tnapi->tx_buffers[entry];
5930
5931 pci_unmap_page(tnapi->tp->pdev,
5932 dma_unmap_addr(txb, mapping),
5933 frag->size, PCI_DMA_TODEVICE);
5934 }
5935}
5936
Michael Chan72f2afb2006-03-06 19:28:35 -08005937/* Workaround 4GB and 40-bit hardware DMA bugs. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00005938static int tigon3_dma_hwbug_workaround(struct tg3_napi *tnapi,
Matt Carlson432aa7e2011-05-19 12:12:45 +00005939 struct sk_buff *skb,
5940 u32 base_flags, u32 mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941{
Matt Carlson24f4efd2009-11-13 13:03:35 +00005942 struct tg3 *tp = tnapi->tp;
Matt Carlson41588ba2008-04-19 18:12:33 -07005943 struct sk_buff *new_skb;
Michael Chanc58ec932005-09-17 00:46:27 -07005944 dma_addr_t new_addr = 0;
Matt Carlson432aa7e2011-05-19 12:12:45 +00005945 u32 entry = tnapi->tx_prod;
5946 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947
Matt Carlson41588ba2008-04-19 18:12:33 -07005948 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
5949 new_skb = skb_copy(skb, GFP_ATOMIC);
5950 else {
5951 int more_headroom = 4 - ((unsigned long)skb->data & 3);
5952
5953 new_skb = skb_copy_expand(skb,
5954 skb_headroom(skb) + more_headroom,
5955 skb_tailroom(skb), GFP_ATOMIC);
5956 }
5957
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958 if (!new_skb) {
Michael Chanc58ec932005-09-17 00:46:27 -07005959 ret = -1;
5960 } else {
5961 /* New SKB is guaranteed to be linear. */
Alexander Duyckf4188d82009-12-02 16:48:38 +00005962 new_addr = pci_map_single(tp->pdev, new_skb->data, new_skb->len,
5963 PCI_DMA_TODEVICE);
5964 /* Make sure the mapping succeeded */
5965 if (pci_dma_mapping_error(tp->pdev, new_addr)) {
5966 ret = -1;
5967 dev_kfree_skb(new_skb);
David S. Miller90079ce2008-09-11 04:52:51 -07005968
Michael Chanc58ec932005-09-17 00:46:27 -07005969 /* Make sure new skb does not cross any 4G boundaries.
5970 * Drop the packet if it does.
5971 */
Matt Carlsoneb69d562011-06-13 13:38:57 +00005972 } else if (tg3_4g_overflow_test(new_addr, new_skb->len)) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00005973 pci_unmap_single(tp->pdev, new_addr, new_skb->len,
5974 PCI_DMA_TODEVICE);
Michael Chanc58ec932005-09-17 00:46:27 -07005975 ret = -1;
5976 dev_kfree_skb(new_skb);
Michael Chanc58ec932005-09-17 00:46:27 -07005977 } else {
Matt Carlson432aa7e2011-05-19 12:12:45 +00005978 tnapi->tx_buffers[entry].skb = new_skb;
5979 dma_unmap_addr_set(&tnapi->tx_buffers[entry],
5980 mapping, new_addr);
5981
Matt Carlsonf3f3f272009-08-28 14:03:21 +00005982 tg3_set_txd(tnapi, entry, new_addr, new_skb->len,
Michael Chanc58ec932005-09-17 00:46:27 -07005983 base_flags, 1 | (mss << 1));
Michael Chanc58ec932005-09-17 00:46:27 -07005984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 }
5986
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 dev_kfree_skb(skb);
5988
Michael Chanc58ec932005-09-17 00:46:27 -07005989 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990}
5991
Matt Carlson2ffcc982011-05-19 12:12:44 +00005992static netdev_tx_t tg3_start_xmit(struct sk_buff *, struct net_device *);
Michael Chan52c0fd82006-06-29 20:15:54 -07005993
5994/* Use GSO to workaround a rare TSO bug that may be triggered when the
5995 * TSO header is greater than 80 bytes.
5996 */
5997static int tg3_tso_bug(struct tg3 *tp, struct sk_buff *skb)
5998{
5999 struct sk_buff *segs, *nskb;
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006000 u32 frag_cnt_est = skb_shinfo(skb)->gso_segs * 3;
Michael Chan52c0fd82006-06-29 20:15:54 -07006001
6002 /* Estimate the number of fragments in the worst case */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006003 if (unlikely(tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)) {
Michael Chan52c0fd82006-06-29 20:15:54 -07006004 netif_stop_queue(tp->dev);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006005
6006 /* netif_tx_stop_queue() must be done before checking
6007 * checking tx index in tg3_tx_avail() below, because in
6008 * tg3_tx(), we update tx index before checking for
6009 * netif_tx_queue_stopped().
6010 */
6011 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006012 if (tg3_tx_avail(&tp->napi[0]) <= frag_cnt_est)
Michael Chan7f62ad52007-02-20 23:25:40 -08006013 return NETDEV_TX_BUSY;
6014
6015 netif_wake_queue(tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006016 }
6017
6018 segs = skb_gso_segment(skb, tp->dev->features & ~NETIF_F_TSO);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07006019 if (IS_ERR(segs))
Michael Chan52c0fd82006-06-29 20:15:54 -07006020 goto tg3_tso_bug_end;
6021
6022 do {
6023 nskb = segs;
6024 segs = segs->next;
6025 nskb->next = NULL;
Matt Carlson2ffcc982011-05-19 12:12:44 +00006026 tg3_start_xmit(nskb, tp->dev);
Michael Chan52c0fd82006-06-29 20:15:54 -07006027 } while (segs);
6028
6029tg3_tso_bug_end:
6030 dev_kfree_skb(skb);
6031
6032 return NETDEV_TX_OK;
6033}
Michael Chan52c0fd82006-06-29 20:15:54 -07006034
Michael Chan5a6f3072006-03-20 22:28:05 -08006035/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
Joe Perches63c3a662011-04-26 08:12:10 +00006036 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
Michael Chan5a6f3072006-03-20 22:28:05 -08006037 */
Matt Carlson2ffcc982011-05-19 12:12:44 +00006038static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev)
Michael Chan5a6f3072006-03-20 22:28:05 -08006039{
6040 struct tg3 *tp = netdev_priv(dev);
Michael Chan5a6f3072006-03-20 22:28:05 -08006041 u32 len, entry, base_flags, mss;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006042 int i = -1, would_hit_hwbug;
David S. Miller90079ce2008-09-11 04:52:51 -07006043 dma_addr_t mapping;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006044 struct tg3_napi *tnapi;
6045 struct netdev_queue *txq;
Matt Carlson432aa7e2011-05-19 12:12:45 +00006046 unsigned int last;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006047
Matt Carlson24f4efd2009-11-13 13:03:35 +00006048 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
6049 tnapi = &tp->napi[skb_get_queue_mapping(skb)];
Joe Perches63c3a662011-04-26 08:12:10 +00006050 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006051 tnapi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
Michael Chan00b70502006-06-17 21:58:45 -07006053 /* We are running in BH disabled context with netif_tx_lock
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006054 * and TX reclaim runs via tp->napi.poll inside of a software
David S. Millerf47c11e2005-06-24 20:18:35 -07006055 * interrupt. Furthermore, IRQ processing runs lockless so we have
6056 * no IRQ context deadlocks to worry about either. Rejoice!
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 */
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006058 if (unlikely(tg3_tx_avail(tnapi) <= (skb_shinfo(skb)->nr_frags + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006059 if (!netif_tx_queue_stopped(txq)) {
6060 netif_tx_stop_queue(txq);
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006061
6062 /* This is a hard error, log it. */
Matt Carlson5129c3a2010-04-05 10:19:23 +00006063 netdev_err(dev,
6064 "BUG! Tx Ring full when queue awake!\n");
Stephen Hemminger1f064a82005-12-06 17:36:44 -08006065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 return NETDEV_TX_BUSY;
6067 }
6068
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006069 entry = tnapi->tx_prod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 base_flags = 0;
Patrick McHardy84fa7932006-08-29 16:44:56 -07006071 if (skb->ip_summed == CHECKSUM_PARTIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072 base_flags |= TXD_FLAG_TCPUDP_CSUM;
Matt Carlson24f4efd2009-11-13 13:03:35 +00006073
Matt Carlsonbe98da62010-07-11 09:31:46 +00006074 mss = skb_shinfo(skb)->gso_size;
6075 if (mss) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006076 struct iphdr *iph;
Matt Carlson34195c32010-07-11 09:31:42 +00006077 u32 tcp_opt_len, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078
6079 if (skb_header_cloned(skb) &&
6080 pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) {
6081 dev_kfree_skb(skb);
6082 goto out_unlock;
6083 }
6084
Matt Carlson34195c32010-07-11 09:31:42 +00006085 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07006086 tcp_opt_len = tcp_optlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087
Matt Carlson02e96082010-09-15 08:59:59 +00006088 if (skb_is_gso_v6(skb)) {
Matt Carlson34195c32010-07-11 09:31:42 +00006089 hdr_len = skb_headlen(skb) - ETH_HLEN;
6090 } else {
6091 u32 ip_tcp_len;
6092
6093 ip_tcp_len = ip_hdrlen(skb) + sizeof(struct tcphdr);
6094 hdr_len = ip_tcp_len + tcp_opt_len;
6095
6096 iph->check = 0;
6097 iph->tot_len = htons(mss + hdr_len);
6098 }
6099
Michael Chan52c0fd82006-06-29 20:15:54 -07006100 if (unlikely((ETH_HLEN + hdr_len) > 80) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006101 tg3_flag(tp, TSO_BUG))
Matt Carlsonde6f31e2010-04-12 06:58:30 +00006102 return tg3_tso_bug(tp, skb);
Michael Chan52c0fd82006-06-29 20:15:54 -07006103
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 base_flags |= (TXD_FLAG_CPU_PRE_DMA |
6105 TXD_FLAG_CPU_POST_DMA);
6106
Joe Perches63c3a662011-04-26 08:12:10 +00006107 if (tg3_flag(tp, HW_TSO_1) ||
6108 tg3_flag(tp, HW_TSO_2) ||
6109 tg3_flag(tp, HW_TSO_3)) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006110 tcp_hdr(skb)->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111 base_flags &= ~TXD_FLAG_TCPUDP_CSUM;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07006112 } else
6113 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6114 iph->daddr, 0,
6115 IPPROTO_TCP,
6116 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117
Joe Perches63c3a662011-04-26 08:12:10 +00006118 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlson615774f2009-11-13 13:03:39 +00006119 mss |= (hdr_len & 0xc) << 12;
6120 if (hdr_len & 0x10)
6121 base_flags |= 0x00000010;
6122 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +00006123 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006124 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +00006125 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006126 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006127 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128 int tsflags;
6129
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006130 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131 mss |= (tsflags << 11);
6132 }
6133 } else {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006134 if (tcp_opt_len || iph->ihl > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135 int tsflags;
6136
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07006137 tsflags = (iph->ihl - 5) + (tcp_opt_len >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 base_flags |= tsflags << 12;
6139 }
6140 }
6141 }
Matt Carlsonbf933c82011-01-25 15:58:49 +00006142
Jesse Grosseab6d182010-10-20 13:56:03 +00006143 if (vlan_tx_tag_present(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144 base_flags |= (TXD_FLAG_VLAN |
6145 (vlan_tx_tag_get(skb) << 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146
Joe Perches63c3a662011-04-26 08:12:10 +00006147 if (tg3_flag(tp, USE_JUMBO_BDFLAG) &&
Matt Carlson8fc2f992010-12-06 08:28:49 +00006148 !mss && skb->len > VLAN_ETH_FRAME_LEN)
Matt Carlson615774f2009-11-13 13:03:39 +00006149 base_flags |= TXD_FLAG_JMB_PKT;
6150
Alexander Duyckf4188d82009-12-02 16:48:38 +00006151 len = skb_headlen(skb);
6152
6153 mapping = pci_map_single(tp->pdev, skb->data, len, PCI_DMA_TODEVICE);
6154 if (pci_dma_mapping_error(tp->pdev, mapping)) {
David S. Miller90079ce2008-09-11 04:52:51 -07006155 dev_kfree_skb(skb);
6156 goto out_unlock;
6157 }
6158
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006159 tnapi->tx_buffers[entry].skb = skb;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006160 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping, mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161
6162 would_hit_hwbug = 0;
6163
Joe Perches63c3a662011-04-26 08:12:10 +00006164 if (tg3_flag(tp, SHORT_DMA_BUG) && len <= 8)
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006165 would_hit_hwbug = 1;
6166
Matt Carlsoneb69d562011-06-13 13:38:57 +00006167 if (tg3_4g_overflow_test(mapping, len))
Matt Carlson41588ba2008-04-19 18:12:33 -07006168 would_hit_hwbug = 1;
Matt Carlson0e1406d2009-11-02 12:33:33 +00006169
Matt Carlsondaf9a552011-06-13 13:38:56 +00006170 if (tg3_40bit_overflow_test(tp, mapping, len))
Matt Carlson0e1406d2009-11-02 12:33:33 +00006171 would_hit_hwbug = 1;
6172
Joe Perches63c3a662011-04-26 08:12:10 +00006173 if (tg3_flag(tp, 5701_DMA_BUG))
Michael Chanc58ec932005-09-17 00:46:27 -07006174 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006176 tg3_set_txd(tnapi, entry, mapping, len, base_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177 (skb_shinfo(skb)->nr_frags == 0) | (mss << 1));
6178
6179 entry = NEXT_TX(entry);
6180
6181 /* Now loop through additional data fragments, and queue them. */
6182 if (skb_shinfo(skb)->nr_frags > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183 last = skb_shinfo(skb)->nr_frags - 1;
6184 for (i = 0; i <= last; i++) {
6185 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
6186
6187 len = frag->size;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006188 mapping = pci_map_page(tp->pdev,
6189 frag->page,
6190 frag->page_offset,
6191 len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006193 tnapi->tx_buffers[entry].skb = NULL;
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006194 dma_unmap_addr_set(&tnapi->tx_buffers[entry], mapping,
Alexander Duyckf4188d82009-12-02 16:48:38 +00006195 mapping);
6196 if (pci_dma_mapping_error(tp->pdev, mapping))
6197 goto dma_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198
Joe Perches63c3a662011-04-26 08:12:10 +00006199 if (tg3_flag(tp, SHORT_DMA_BUG) &&
Matt Carlson92c6b8d2009-11-02 14:23:27 +00006200 len <= 8)
6201 would_hit_hwbug = 1;
6202
Matt Carlsoneb69d562011-06-13 13:38:57 +00006203 if (tg3_4g_overflow_test(mapping, len))
Michael Chanc58ec932005-09-17 00:46:27 -07006204 would_hit_hwbug = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205
Matt Carlsondaf9a552011-06-13 13:38:56 +00006206 if (tg3_40bit_overflow_test(tp, mapping, len))
Michael Chan72f2afb2006-03-06 19:28:35 -08006207 would_hit_hwbug = 1;
6208
Joe Perches63c3a662011-04-26 08:12:10 +00006209 if (tg3_flag(tp, HW_TSO_1) ||
6210 tg3_flag(tp, HW_TSO_2) ||
6211 tg3_flag(tp, HW_TSO_3))
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006212 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 base_flags, (i == last)|(mss << 1));
6214 else
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006215 tg3_set_txd(tnapi, entry, mapping, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216 base_flags, (i == last));
6217
6218 entry = NEXT_TX(entry);
6219 }
6220 }
6221
6222 if (would_hit_hwbug) {
Matt Carlson432aa7e2011-05-19 12:12:45 +00006223 tg3_skb_error_unmap(tnapi, skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224
6225 /* If the workaround fails due to memory/mapping
6226 * failure, silently drop this packet.
6227 */
Matt Carlson432aa7e2011-05-19 12:12:45 +00006228 if (tigon3_dma_hwbug_workaround(tnapi, skb, base_flags, mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229 goto out_unlock;
6230
Matt Carlson432aa7e2011-05-19 12:12:45 +00006231 entry = NEXT_TX(tnapi->tx_prod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 }
6233
Richard Cochrand515b452011-06-19 03:31:41 +00006234 skb_tx_timestamp(skb);
6235
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236 /* Packets are ready, update Tx producer idx local and on card. */
Matt Carlson24f4efd2009-11-13 13:03:35 +00006237 tw32_tx_mbox(tnapi->prodmbox, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006239 tnapi->tx_prod = entry;
6240 if (unlikely(tg3_tx_avail(tnapi) <= (MAX_SKB_FRAGS + 1))) {
Matt Carlson24f4efd2009-11-13 13:03:35 +00006241 netif_tx_stop_queue(txq);
Matt Carlsonf65aac12010-08-02 11:26:03 +00006242
6243 /* netif_tx_stop_queue() must be done before checking
6244 * checking tx index in tg3_tx_avail() below, because in
6245 * tg3_tx(), we update tx index before checking for
6246 * netif_tx_queue_stopped().
6247 */
6248 smp_mb();
Matt Carlsonf3f3f272009-08-28 14:03:21 +00006249 if (tg3_tx_avail(tnapi) > TG3_TX_WAKEUP_THRESH(tnapi))
Matt Carlson24f4efd2009-11-13 13:03:35 +00006250 netif_tx_wake_queue(txq);
Michael Chan51b91462005-09-01 17:41:28 -07006251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252
6253out_unlock:
Eric Dumazetcdd0db02009-05-28 00:00:41 +00006254 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
6256 return NETDEV_TX_OK;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006257
6258dma_error:
Matt Carlson432aa7e2011-05-19 12:12:45 +00006259 tg3_skb_error_unmap(tnapi, skb, i);
Alexander Duyckf4188d82009-12-02 16:48:38 +00006260 dev_kfree_skb(skb);
Matt Carlson432aa7e2011-05-19 12:12:45 +00006261 tnapi->tx_buffers[tnapi->tx_prod].skb = NULL;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006262 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263}
6264
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006265static void tg3_set_loopback(struct net_device *dev, u32 features)
6266{
6267 struct tg3 *tp = netdev_priv(dev);
6268
6269 if (features & NETIF_F_LOOPBACK) {
6270 if (tp->mac_mode & MAC_MODE_PORT_INT_LPBACK)
6271 return;
6272
6273 /*
6274 * Clear MAC_MODE_HALF_DUPLEX or you won't get packets back in
6275 * loopback mode if Half-Duplex mode was negotiated earlier.
6276 */
6277 tp->mac_mode &= ~MAC_MODE_HALF_DUPLEX;
6278
6279 /* Enable internal MAC loopback mode */
6280 tp->mac_mode |= MAC_MODE_PORT_INT_LPBACK;
6281 spin_lock_bh(&tp->lock);
6282 tw32(MAC_MODE, tp->mac_mode);
6283 netif_carrier_on(tp->dev);
6284 spin_unlock_bh(&tp->lock);
6285 netdev_info(dev, "Internal MAC loopback mode enabled.\n");
6286 } else {
6287 if (!(tp->mac_mode & MAC_MODE_PORT_INT_LPBACK))
6288 return;
6289
6290 /* Disable internal MAC loopback mode */
6291 tp->mac_mode &= ~MAC_MODE_PORT_INT_LPBACK;
6292 spin_lock_bh(&tp->lock);
6293 tw32(MAC_MODE, tp->mac_mode);
6294 /* Force link status check */
6295 tg3_setup_phy(tp, 1);
6296 spin_unlock_bh(&tp->lock);
6297 netdev_info(dev, "Internal MAC loopback mode disabled.\n");
6298 }
6299}
6300
Michał Mirosławdc668912011-04-07 03:35:07 +00006301static u32 tg3_fix_features(struct net_device *dev, u32 features)
6302{
6303 struct tg3 *tp = netdev_priv(dev);
6304
Joe Perches63c3a662011-04-26 08:12:10 +00006305 if (dev->mtu > ETH_DATA_LEN && tg3_flag(tp, 5780_CLASS))
Michał Mirosławdc668912011-04-07 03:35:07 +00006306 features &= ~NETIF_F_ALL_TSO;
6307
6308 return features;
6309}
6310
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00006311static int tg3_set_features(struct net_device *dev, u32 features)
6312{
6313 u32 changed = dev->features ^ features;
6314
6315 if ((changed & NETIF_F_LOOPBACK) && netif_running(dev))
6316 tg3_set_loopback(dev, features);
6317
6318 return 0;
6319}
6320
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321static inline void tg3_set_mtu(struct net_device *dev, struct tg3 *tp,
6322 int new_mtu)
6323{
6324 dev->mtu = new_mtu;
6325
Michael Chanef7f5ec2005-07-25 12:32:25 -07006326 if (new_mtu > ETH_DATA_LEN) {
Joe Perches63c3a662011-04-26 08:12:10 +00006327 if (tg3_flag(tp, 5780_CLASS)) {
Michał Mirosławdc668912011-04-07 03:35:07 +00006328 netdev_update_features(dev);
Joe Perches63c3a662011-04-26 08:12:10 +00006329 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006330 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006331 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Matt Carlson859a588792010-04-05 10:19:28 +00006332 }
Michael Chanef7f5ec2005-07-25 12:32:25 -07006333 } else {
Joe Perches63c3a662011-04-26 08:12:10 +00006334 if (tg3_flag(tp, 5780_CLASS)) {
6335 tg3_flag_set(tp, TSO_CAPABLE);
Michał Mirosławdc668912011-04-07 03:35:07 +00006336 netdev_update_features(dev);
6337 }
Joe Perches63c3a662011-04-26 08:12:10 +00006338 tg3_flag_clear(tp, JUMBO_RING_ENABLE);
Michael Chanef7f5ec2005-07-25 12:32:25 -07006339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340}
6341
6342static int tg3_change_mtu(struct net_device *dev, int new_mtu)
6343{
6344 struct tg3 *tp = netdev_priv(dev);
Michael Chanb9ec6c12006-07-25 16:37:27 -07006345 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346
6347 if (new_mtu < TG3_MIN_MTU || new_mtu > TG3_MAX_MTU(tp))
6348 return -EINVAL;
6349
6350 if (!netif_running(dev)) {
6351 /* We'll just catch it later when the
6352 * device is up'd.
6353 */
6354 tg3_set_mtu(dev, tp, new_mtu);
6355 return 0;
6356 }
6357
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006358 tg3_phy_stop(tp);
6359
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360 tg3_netif_stop(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07006361
6362 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363
Michael Chan944d9802005-05-29 14:57:48 -07006364 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
6366 tg3_set_mtu(dev, tp, new_mtu);
6367
Michael Chanb9ec6c12006-07-25 16:37:27 -07006368 err = tg3_restart_hw(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369
Michael Chanb9ec6c12006-07-25 16:37:27 -07006370 if (!err)
6371 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372
David S. Millerf47c11e2005-06-24 20:18:35 -07006373 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07006375 if (!err)
6376 tg3_phy_start(tp);
6377
Michael Chanb9ec6c12006-07-25 16:37:27 -07006378 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379}
6380
Matt Carlson21f581a2009-08-28 14:00:25 +00006381static void tg3_rx_prodring_free(struct tg3 *tp,
6382 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 int i;
6385
Matt Carlson8fea32b2010-09-15 08:59:58 +00006386 if (tpr != &tp->napi[0].prodring) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006387 for (i = tpr->rx_std_cons_idx; i != tpr->rx_std_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006388 i = (i + 1) & tp->rx_std_ring_mask)
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006389 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6390 tp->rx_pkt_map_sz);
6391
Joe Perches63c3a662011-04-26 08:12:10 +00006392 if (tg3_flag(tp, JUMBO_CAPABLE)) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006393 for (i = tpr->rx_jmb_cons_idx;
6394 i != tpr->rx_jmb_prod_idx;
Matt Carlson2c49a442010-09-30 10:34:35 +00006395 i = (i + 1) & tp->rx_jmb_ring_mask) {
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006396 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6397 TG3_RX_JMB_MAP_SZ);
6398 }
6399 }
6400
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006401 return;
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
Matt Carlson2c49a442010-09-30 10:34:35 +00006404 for (i = 0; i <= tp->rx_std_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006405 tg3_rx_skb_free(tp, &tpr->rx_std_buffers[i],
6406 tp->rx_pkt_map_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407
Joe Perches63c3a662011-04-26 08:12:10 +00006408 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006409 for (i = 0; i <= tp->rx_jmb_ring_mask; i++)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006410 tg3_rx_skb_free(tp, &tpr->rx_jmb_buffers[i],
6411 TG3_RX_JMB_MAP_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 }
6413}
6414
Matt Carlsonc6cdf432010-04-05 10:19:26 +00006415/* Initialize rx rings for packet processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 *
6417 * The chip has been shut down and the driver detached from
6418 * the networking, so no interrupts or new tx packets will
6419 * end up in the driver. tp->{tx,}lock are held and thus
6420 * we may not sleep.
6421 */
Matt Carlson21f581a2009-08-28 14:00:25 +00006422static int tg3_rx_prodring_alloc(struct tg3 *tp,
6423 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424{
Matt Carlson287be122009-08-28 13:58:46 +00006425 u32 i, rx_pkt_dma_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
Matt Carlsonb196c7e2009-11-13 13:03:50 +00006427 tpr->rx_std_cons_idx = 0;
6428 tpr->rx_std_prod_idx = 0;
6429 tpr->rx_jmb_cons_idx = 0;
6430 tpr->rx_jmb_prod_idx = 0;
6431
Matt Carlson8fea32b2010-09-15 08:59:58 +00006432 if (tpr != &tp->napi[0].prodring) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006433 memset(&tpr->rx_std_buffers[0], 0,
6434 TG3_RX_STD_BUFF_RING_SIZE(tp));
Matt Carlson48035722010-10-14 10:37:43 +00006435 if (tpr->rx_jmb_buffers)
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006436 memset(&tpr->rx_jmb_buffers[0], 0,
Matt Carlson2c49a442010-09-30 10:34:35 +00006437 TG3_RX_JMB_BUFF_RING_SIZE(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006438 goto done;
6439 }
6440
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 /* Zero out all descriptors. */
Matt Carlson2c49a442010-09-30 10:34:35 +00006442 memset(tpr->rx_std, 0, TG3_RX_STD_RING_BYTES(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443
Matt Carlson287be122009-08-28 13:58:46 +00006444 rx_pkt_dma_sz = TG3_RX_STD_DMA_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00006445 if (tg3_flag(tp, 5780_CLASS) &&
Matt Carlson287be122009-08-28 13:58:46 +00006446 tp->dev->mtu > ETH_DATA_LEN)
6447 rx_pkt_dma_sz = TG3_RX_JMB_DMA_SZ;
6448 tp->rx_pkt_map_sz = TG3_RX_DMA_TO_MAP_SZ(rx_pkt_dma_sz);
Michael Chan7e72aad2005-07-25 12:31:17 -07006449
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 /* Initialize invariants of the rings, we only set this
6451 * stuff once. This works because the card does not
6452 * write into the rx buffer posting rings.
6453 */
Matt Carlson2c49a442010-09-30 10:34:35 +00006454 for (i = 0; i <= tp->rx_std_ring_mask; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455 struct tg3_rx_buffer_desc *rxd;
6456
Matt Carlson21f581a2009-08-28 14:00:25 +00006457 rxd = &tpr->rx_std[i];
Matt Carlson287be122009-08-28 13:58:46 +00006458 rxd->idx_len = rx_pkt_dma_sz << RXD_LEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
6460 rxd->opaque = (RXD_OPAQUE_RING_STD |
6461 (i << RXD_OPAQUE_INDEX_SHIFT));
6462 }
6463
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006464 /* Now allocate fresh SKBs for each rx ring. */
6465 for (i = 0; i < tp->rx_pending; i++) {
Matt Carlson86b21e52009-11-13 13:03:45 +00006466 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_STD, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006467 netdev_warn(tp->dev,
6468 "Using a smaller RX standard ring. Only "
6469 "%d out of %d buffers were allocated "
6470 "successfully\n", i, tp->rx_pending);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006471 if (i == 0)
6472 goto initfail;
6473 tp->rx_pending = i;
6474 break;
6475 }
6476 }
6477
Joe Perches63c3a662011-04-26 08:12:10 +00006478 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006479 goto done;
6480
Matt Carlson2c49a442010-09-30 10:34:35 +00006481 memset(tpr->rx_jmb, 0, TG3_RX_JMB_RING_BYTES(tp));
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006482
Joe Perches63c3a662011-04-26 08:12:10 +00006483 if (!tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson0d86df82010-02-17 15:17:00 +00006484 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485
Matt Carlson2c49a442010-09-30 10:34:35 +00006486 for (i = 0; i <= tp->rx_jmb_ring_mask; i++) {
Matt Carlson0d86df82010-02-17 15:17:00 +00006487 struct tg3_rx_buffer_desc *rxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488
Matt Carlson0d86df82010-02-17 15:17:00 +00006489 rxd = &tpr->rx_jmb[i].std;
6490 rxd->idx_len = TG3_RX_JMB_DMA_SZ << RXD_LEN_SHIFT;
6491 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT) |
6492 RXD_FLAG_JUMBO;
6493 rxd->opaque = (RXD_OPAQUE_RING_JUMBO |
6494 (i << RXD_OPAQUE_INDEX_SHIFT));
6495 }
6496
6497 for (i = 0; i < tp->rx_jumbo_pending; i++) {
6498 if (tg3_alloc_rx_skb(tp, tpr, RXD_OPAQUE_RING_JUMBO, i) < 0) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00006499 netdev_warn(tp->dev,
6500 "Using a smaller RX jumbo ring. Only %d "
6501 "out of %d buffers were allocated "
6502 "successfully\n", i, tp->rx_jumbo_pending);
Matt Carlson0d86df82010-02-17 15:17:00 +00006503 if (i == 0)
6504 goto initfail;
6505 tp->rx_jumbo_pending = i;
6506 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507 }
6508 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006509
6510done:
Michael Chan32d8c572006-07-25 16:38:29 -07006511 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006512
6513initfail:
Matt Carlson21f581a2009-08-28 14:00:25 +00006514 tg3_rx_prodring_free(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006515 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516}
6517
Matt Carlson21f581a2009-08-28 14:00:25 +00006518static void tg3_rx_prodring_fini(struct tg3 *tp,
6519 struct tg3_rx_prodring_set *tpr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520{
Matt Carlson21f581a2009-08-28 14:00:25 +00006521 kfree(tpr->rx_std_buffers);
6522 tpr->rx_std_buffers = NULL;
6523 kfree(tpr->rx_jmb_buffers);
6524 tpr->rx_jmb_buffers = NULL;
6525 if (tpr->rx_std) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006526 dma_free_coherent(&tp->pdev->dev, TG3_RX_STD_RING_BYTES(tp),
6527 tpr->rx_std, tpr->rx_std_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006528 tpr->rx_std = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529 }
Matt Carlson21f581a2009-08-28 14:00:25 +00006530 if (tpr->rx_jmb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006531 dma_free_coherent(&tp->pdev->dev, TG3_RX_JMB_RING_BYTES(tp),
6532 tpr->rx_jmb, tpr->rx_jmb_mapping);
Matt Carlson21f581a2009-08-28 14:00:25 +00006533 tpr->rx_jmb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006535}
6536
Matt Carlson21f581a2009-08-28 14:00:25 +00006537static int tg3_rx_prodring_init(struct tg3 *tp,
6538 struct tg3_rx_prodring_set *tpr)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006539{
Matt Carlson2c49a442010-09-30 10:34:35 +00006540 tpr->rx_std_buffers = kzalloc(TG3_RX_STD_BUFF_RING_SIZE(tp),
6541 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006542 if (!tpr->rx_std_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006543 return -ENOMEM;
6544
Matt Carlson4bae65c2010-11-24 08:31:52 +00006545 tpr->rx_std = dma_alloc_coherent(&tp->pdev->dev,
6546 TG3_RX_STD_RING_BYTES(tp),
6547 &tpr->rx_std_mapping,
6548 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006549 if (!tpr->rx_std)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006550 goto err_out;
6551
Joe Perches63c3a662011-04-26 08:12:10 +00006552 if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS)) {
Matt Carlson2c49a442010-09-30 10:34:35 +00006553 tpr->rx_jmb_buffers = kzalloc(TG3_RX_JMB_BUFF_RING_SIZE(tp),
Matt Carlson21f581a2009-08-28 14:00:25 +00006554 GFP_KERNEL);
6555 if (!tpr->rx_jmb_buffers)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006556 goto err_out;
6557
Matt Carlson4bae65c2010-11-24 08:31:52 +00006558 tpr->rx_jmb = dma_alloc_coherent(&tp->pdev->dev,
6559 TG3_RX_JMB_RING_BYTES(tp),
6560 &tpr->rx_jmb_mapping,
6561 GFP_KERNEL);
Matt Carlson21f581a2009-08-28 14:00:25 +00006562 if (!tpr->rx_jmb)
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006563 goto err_out;
6564 }
6565
6566 return 0;
6567
6568err_out:
Matt Carlson21f581a2009-08-28 14:00:25 +00006569 tg3_rx_prodring_fini(tp, tpr);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006570 return -ENOMEM;
6571}
6572
6573/* Free up pending packets in all rx/tx rings.
6574 *
6575 * The chip has been shut down and the driver detached from
6576 * the networking, so no interrupts or new tx packets will
6577 * end up in the driver. tp->{tx,}lock is not held and we are not
6578 * in an interrupt context and thus may sleep.
6579 */
6580static void tg3_free_rings(struct tg3 *tp)
6581{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006582 int i, j;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006583
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006584 for (j = 0; j < tp->irq_cnt; j++) {
6585 struct tg3_napi *tnapi = &tp->napi[j];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006586
Matt Carlson8fea32b2010-09-15 08:59:58 +00006587 tg3_rx_prodring_free(tp, &tnapi->prodring);
Matt Carlsonb28f6422010-06-05 17:24:32 +00006588
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006589 if (!tnapi->tx_buffers)
6590 continue;
6591
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006592 for (i = 0; i < TG3_TX_RING_SIZE; ) {
Alexander Duyckf4188d82009-12-02 16:48:38 +00006593 struct ring_info *txp;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006594 struct sk_buff *skb;
Alexander Duyckf4188d82009-12-02 16:48:38 +00006595 unsigned int k;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006596
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006597 txp = &tnapi->tx_buffers[i];
6598 skb = txp->skb;
6599
6600 if (skb == NULL) {
6601 i++;
6602 continue;
6603 }
6604
Alexander Duyckf4188d82009-12-02 16:48:38 +00006605 pci_unmap_single(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006606 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006607 skb_headlen(skb),
6608 PCI_DMA_TODEVICE);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006609 txp->skb = NULL;
6610
Alexander Duyckf4188d82009-12-02 16:48:38 +00006611 i++;
6612
6613 for (k = 0; k < skb_shinfo(skb)->nr_frags; k++) {
6614 txp = &tnapi->tx_buffers[i & (TG3_TX_RING_SIZE - 1)];
6615 pci_unmap_page(tp->pdev,
FUJITA Tomonori4e5e4f02010-04-12 14:32:09 +00006616 dma_unmap_addr(txp, mapping),
Alexander Duyckf4188d82009-12-02 16:48:38 +00006617 skb_shinfo(skb)->frags[k].size,
6618 PCI_DMA_TODEVICE);
6619 i++;
6620 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006621
6622 dev_kfree_skb_any(skb);
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006623 }
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006624 }
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006625}
6626
6627/* Initialize tx/rx rings for packet processing.
6628 *
6629 * The chip has been shut down and the driver detached from
6630 * the networking, so no interrupts or new tx packets will
6631 * end up in the driver. tp->{tx,}lock are held and thus
6632 * we may not sleep.
6633 */
6634static int tg3_init_rings(struct tg3 *tp)
6635{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006636 int i;
Matt Carlson72334482009-08-28 14:03:01 +00006637
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006638 /* Free up all the SKBs. */
6639 tg3_free_rings(tp);
6640
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006641 for (i = 0; i < tp->irq_cnt; i++) {
6642 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006643
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006644 tnapi->last_tag = 0;
6645 tnapi->last_irq_tag = 0;
6646 tnapi->hw_status->status = 0;
6647 tnapi->hw_status->status_tag = 0;
6648 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6649
6650 tnapi->tx_prod = 0;
6651 tnapi->tx_cons = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006652 if (tnapi->tx_ring)
6653 memset(tnapi->tx_ring, 0, TG3_TX_RING_BYTES);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006654
6655 tnapi->rx_rcb_ptr = 0;
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006656 if (tnapi->rx_rcb)
6657 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006658
Matt Carlson8fea32b2010-09-15 08:59:58 +00006659 if (tg3_rx_prodring_alloc(tp, &tnapi->prodring)) {
Matt Carlsone4af1af2010-02-12 14:47:05 +00006660 tg3_free_rings(tp);
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006661 return -ENOMEM;
Matt Carlsone4af1af2010-02-12 14:47:05 +00006662 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006663 }
Matt Carlson72334482009-08-28 14:03:01 +00006664
Matt Carlson2b2cdb62009-11-13 13:03:48 +00006665 return 0;
Matt Carlsoncf7a7292009-08-28 13:59:57 +00006666}
6667
6668/*
6669 * Must not be invoked with interrupt sources disabled and
6670 * the hardware shutdown down.
6671 */
6672static void tg3_free_consistent(struct tg3 *tp)
6673{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006674 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006675
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006676 for (i = 0; i < tp->irq_cnt; i++) {
6677 struct tg3_napi *tnapi = &tp->napi[i];
6678
6679 if (tnapi->tx_ring) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006680 dma_free_coherent(&tp->pdev->dev, TG3_TX_RING_BYTES,
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006681 tnapi->tx_ring, tnapi->tx_desc_mapping);
6682 tnapi->tx_ring = NULL;
6683 }
6684
6685 kfree(tnapi->tx_buffers);
6686 tnapi->tx_buffers = NULL;
6687
6688 if (tnapi->rx_rcb) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006689 dma_free_coherent(&tp->pdev->dev,
6690 TG3_RX_RCB_RING_BYTES(tp),
6691 tnapi->rx_rcb,
6692 tnapi->rx_rcb_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006693 tnapi->rx_rcb = NULL;
6694 }
6695
Matt Carlson8fea32b2010-09-15 08:59:58 +00006696 tg3_rx_prodring_fini(tp, &tnapi->prodring);
6697
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006698 if (tnapi->hw_status) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006699 dma_free_coherent(&tp->pdev->dev, TG3_HW_STATUS_SIZE,
6700 tnapi->hw_status,
6701 tnapi->status_mapping);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006702 tnapi->hw_status = NULL;
6703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006705
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706 if (tp->hw_stats) {
Matt Carlson4bae65c2010-11-24 08:31:52 +00006707 dma_free_coherent(&tp->pdev->dev, sizeof(struct tg3_hw_stats),
6708 tp->hw_stats, tp->stats_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709 tp->hw_stats = NULL;
6710 }
6711}
6712
6713/*
6714 * Must not be invoked with interrupt sources disabled and
6715 * the hardware shutdown down. Can sleep.
6716 */
6717static int tg3_alloc_consistent(struct tg3 *tp)
6718{
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006719 int i;
Matt Carlson898a56f2009-08-28 14:02:40 +00006720
Matt Carlson4bae65c2010-11-24 08:31:52 +00006721 tp->hw_stats = dma_alloc_coherent(&tp->pdev->dev,
6722 sizeof(struct tg3_hw_stats),
6723 &tp->stats_mapping,
6724 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725 if (!tp->hw_stats)
6726 goto err_out;
6727
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6729
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006730 for (i = 0; i < tp->irq_cnt; i++) {
6731 struct tg3_napi *tnapi = &tp->napi[i];
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006732 struct tg3_hw_status *sblk;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006733
Matt Carlson4bae65c2010-11-24 08:31:52 +00006734 tnapi->hw_status = dma_alloc_coherent(&tp->pdev->dev,
6735 TG3_HW_STATUS_SIZE,
6736 &tnapi->status_mapping,
6737 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006738 if (!tnapi->hw_status)
6739 goto err_out;
6740
6741 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006742 sblk = tnapi->hw_status;
6743
Matt Carlson8fea32b2010-09-15 08:59:58 +00006744 if (tg3_rx_prodring_init(tp, &tnapi->prodring))
6745 goto err_out;
6746
Matt Carlson19cfaec2009-12-03 08:36:20 +00006747 /* If multivector TSS is enabled, vector 0 does not handle
6748 * tx interrupts. Don't allocate any resources for it.
6749 */
Joe Perches63c3a662011-04-26 08:12:10 +00006750 if ((!i && !tg3_flag(tp, ENABLE_TSS)) ||
6751 (i && tg3_flag(tp, ENABLE_TSS))) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00006752 tnapi->tx_buffers = kzalloc(sizeof(struct ring_info) *
6753 TG3_TX_RING_SIZE,
6754 GFP_KERNEL);
6755 if (!tnapi->tx_buffers)
6756 goto err_out;
6757
Matt Carlson4bae65c2010-11-24 08:31:52 +00006758 tnapi->tx_ring = dma_alloc_coherent(&tp->pdev->dev,
6759 TG3_TX_RING_BYTES,
6760 &tnapi->tx_desc_mapping,
6761 GFP_KERNEL);
Matt Carlson19cfaec2009-12-03 08:36:20 +00006762 if (!tnapi->tx_ring)
6763 goto err_out;
6764 }
6765
Matt Carlson8d9d7cf2009-09-01 13:19:05 +00006766 /*
6767 * When RSS is enabled, the status block format changes
6768 * slightly. The "rx_jumbo_consumer", "reserved",
6769 * and "rx_mini_consumer" members get mapped to the
6770 * other three rx return ring producer indexes.
6771 */
6772 switch (i) {
6773 default:
6774 tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
6775 break;
6776 case 2:
6777 tnapi->rx_rcb_prod_idx = &sblk->rx_jumbo_consumer;
6778 break;
6779 case 3:
6780 tnapi->rx_rcb_prod_idx = &sblk->reserved;
6781 break;
6782 case 4:
6783 tnapi->rx_rcb_prod_idx = &sblk->rx_mini_consumer;
6784 break;
6785 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006786
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006787 /*
6788 * If multivector RSS is enabled, vector 0 does not handle
6789 * rx or tx interrupts. Don't allocate any resources for it.
6790 */
Joe Perches63c3a662011-04-26 08:12:10 +00006791 if (!i && tg3_flag(tp, ENABLE_RSS))
Matt Carlson0c1d0e22009-09-01 13:16:33 +00006792 continue;
6793
Matt Carlson4bae65c2010-11-24 08:31:52 +00006794 tnapi->rx_rcb = dma_alloc_coherent(&tp->pdev->dev,
6795 TG3_RX_RCB_RING_BYTES(tp),
6796 &tnapi->rx_rcb_mapping,
6797 GFP_KERNEL);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006798 if (!tnapi->rx_rcb)
6799 goto err_out;
6800
6801 memset(tnapi->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006802 }
6803
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804 return 0;
6805
6806err_out:
6807 tg3_free_consistent(tp);
6808 return -ENOMEM;
6809}
6810
6811#define MAX_WAIT_CNT 1000
6812
6813/* To stop a block, clear the enable bit and poll till it
6814 * clears. tp->lock is held.
6815 */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006816static int tg3_stop_block(struct tg3 *tp, unsigned long ofs, u32 enable_bit, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817{
6818 unsigned int i;
6819 u32 val;
6820
Joe Perches63c3a662011-04-26 08:12:10 +00006821 if (tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822 switch (ofs) {
6823 case RCVLSC_MODE:
6824 case DMAC_MODE:
6825 case MBFREE_MODE:
6826 case BUFMGR_MODE:
6827 case MEMARB_MODE:
6828 /* We can't enable/disable these bits of the
6829 * 5705/5750, just say success.
6830 */
6831 return 0;
6832
6833 default:
6834 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07006835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836 }
6837
6838 val = tr32(ofs);
6839 val &= ~enable_bit;
6840 tw32_f(ofs, val);
6841
6842 for (i = 0; i < MAX_WAIT_CNT; i++) {
6843 udelay(100);
6844 val = tr32(ofs);
6845 if ((val & enable_bit) == 0)
6846 break;
6847 }
6848
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006849 if (i == MAX_WAIT_CNT && !silent) {
Matt Carlson2445e462010-04-05 10:19:21 +00006850 dev_err(&tp->pdev->dev,
6851 "tg3_stop_block timed out, ofs=%lx enable_bit=%x\n",
6852 ofs, enable_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853 return -ENODEV;
6854 }
6855
6856 return 0;
6857}
6858
6859/* tp->lock is held. */
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006860static int tg3_abort_hw(struct tg3 *tp, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861{
6862 int i, err;
6863
6864 tg3_disable_ints(tp);
6865
6866 tp->rx_mode &= ~RX_MODE_ENABLE;
6867 tw32_f(MAC_RX_MODE, tp->rx_mode);
6868 udelay(10);
6869
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006870 err = tg3_stop_block(tp, RCVBDI_MODE, RCVBDI_MODE_ENABLE, silent);
6871 err |= tg3_stop_block(tp, RCVLPC_MODE, RCVLPC_MODE_ENABLE, silent);
6872 err |= tg3_stop_block(tp, RCVLSC_MODE, RCVLSC_MODE_ENABLE, silent);
6873 err |= tg3_stop_block(tp, RCVDBDI_MODE, RCVDBDI_MODE_ENABLE, silent);
6874 err |= tg3_stop_block(tp, RCVDCC_MODE, RCVDCC_MODE_ENABLE, silent);
6875 err |= tg3_stop_block(tp, RCVCC_MODE, RCVCC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006877 err |= tg3_stop_block(tp, SNDBDS_MODE, SNDBDS_MODE_ENABLE, silent);
6878 err |= tg3_stop_block(tp, SNDBDI_MODE, SNDBDI_MODE_ENABLE, silent);
6879 err |= tg3_stop_block(tp, SNDDATAI_MODE, SNDDATAI_MODE_ENABLE, silent);
6880 err |= tg3_stop_block(tp, RDMAC_MODE, RDMAC_MODE_ENABLE, silent);
6881 err |= tg3_stop_block(tp, SNDDATAC_MODE, SNDDATAC_MODE_ENABLE, silent);
6882 err |= tg3_stop_block(tp, DMAC_MODE, DMAC_MODE_ENABLE, silent);
6883 err |= tg3_stop_block(tp, SNDBDC_MODE, SNDBDC_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884
6885 tp->mac_mode &= ~MAC_MODE_TDE_ENABLE;
6886 tw32_f(MAC_MODE, tp->mac_mode);
6887 udelay(40);
6888
6889 tp->tx_mode &= ~TX_MODE_ENABLE;
6890 tw32_f(MAC_TX_MODE, tp->tx_mode);
6891
6892 for (i = 0; i < MAX_WAIT_CNT; i++) {
6893 udelay(100);
6894 if (!(tr32(MAC_TX_MODE) & TX_MODE_ENABLE))
6895 break;
6896 }
6897 if (i >= MAX_WAIT_CNT) {
Matt Carlsonab96b242010-04-05 10:19:22 +00006898 dev_err(&tp->pdev->dev,
6899 "%s timed out, TX_MODE_ENABLE will not clear "
6900 "MAC_TX_MODE=%08x\n", __func__, tr32(MAC_TX_MODE));
Michael Chane6de8ad2005-05-05 14:42:41 -07006901 err |= -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902 }
6903
Michael Chane6de8ad2005-05-05 14:42:41 -07006904 err |= tg3_stop_block(tp, HOSTCC_MODE, HOSTCC_MODE_ENABLE, silent);
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006905 err |= tg3_stop_block(tp, WDMAC_MODE, WDMAC_MODE_ENABLE, silent);
6906 err |= tg3_stop_block(tp, MBFREE_MODE, MBFREE_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907
6908 tw32(FTQ_RESET, 0xffffffff);
6909 tw32(FTQ_RESET, 0x00000000);
6910
David S. Millerb3b7d6b2005-05-05 14:40:20 -07006911 err |= tg3_stop_block(tp, BUFMGR_MODE, BUFMGR_MODE_ENABLE, silent);
6912 err |= tg3_stop_block(tp, MEMARB_MODE, MEMARB_MODE_ENABLE, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913
Matt Carlsonf77a6a82009-09-01 13:04:37 +00006914 for (i = 0; i < tp->irq_cnt; i++) {
6915 struct tg3_napi *tnapi = &tp->napi[i];
6916 if (tnapi->hw_status)
6917 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
6918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919 if (tp->hw_stats)
6920 memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats));
6921
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922 return err;
6923}
6924
Matt Carlson0d3031d2007-10-10 18:02:43 -07006925static void tg3_ape_send_event(struct tg3 *tp, u32 event)
6926{
6927 int i;
6928 u32 apedata;
6929
Matt Carlsondc6d0742010-09-15 08:59:55 +00006930 /* NCSI does not support APE events */
Joe Perches63c3a662011-04-26 08:12:10 +00006931 if (tg3_flag(tp, APE_HAS_NCSI))
Matt Carlsondc6d0742010-09-15 08:59:55 +00006932 return;
6933
Matt Carlson0d3031d2007-10-10 18:02:43 -07006934 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
6935 if (apedata != APE_SEG_SIG_MAGIC)
6936 return;
6937
6938 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
Matt Carlson731fd792008-08-15 14:07:51 -07006939 if (!(apedata & APE_FW_STATUS_READY))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006940 return;
6941
6942 /* Wait for up to 1 millisecond for APE to service previous event. */
6943 for (i = 0; i < 10; i++) {
6944 if (tg3_ape_lock(tp, TG3_APE_LOCK_MEM))
6945 return;
6946
6947 apedata = tg3_ape_read32(tp, TG3_APE_EVENT_STATUS);
6948
6949 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6950 tg3_ape_write32(tp, TG3_APE_EVENT_STATUS,
6951 event | APE_EVENT_STATUS_EVENT_PENDING);
6952
6953 tg3_ape_unlock(tp, TG3_APE_LOCK_MEM);
6954
6955 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6956 break;
6957
6958 udelay(100);
6959 }
6960
6961 if (!(apedata & APE_EVENT_STATUS_EVENT_PENDING))
6962 tg3_ape_write32(tp, TG3_APE_EVENT, APE_EVENT_1);
6963}
6964
6965static void tg3_ape_driver_state_change(struct tg3 *tp, int kind)
6966{
6967 u32 event;
6968 u32 apedata;
6969
Joe Perches63c3a662011-04-26 08:12:10 +00006970 if (!tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07006971 return;
6972
6973 switch (kind) {
Matt Carlson33f401a2010-04-05 10:19:27 +00006974 case RESET_KIND_INIT:
6975 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG,
6976 APE_HOST_SEG_SIG_MAGIC);
6977 tg3_ape_write32(tp, TG3_APE_HOST_SEG_LEN,
6978 APE_HOST_SEG_LEN_MAGIC);
6979 apedata = tg3_ape_read32(tp, TG3_APE_HOST_INIT_COUNT);
6980 tg3_ape_write32(tp, TG3_APE_HOST_INIT_COUNT, ++apedata);
6981 tg3_ape_write32(tp, TG3_APE_HOST_DRIVER_ID,
Matt Carlson6867c842010-07-11 09:31:44 +00006982 APE_HOST_DRIVER_ID_MAGIC(TG3_MAJ_NUM, TG3_MIN_NUM));
Matt Carlson33f401a2010-04-05 10:19:27 +00006983 tg3_ape_write32(tp, TG3_APE_HOST_BEHAVIOR,
6984 APE_HOST_BEHAV_NO_PHYLOCK);
Matt Carlsondc6d0742010-09-15 08:59:55 +00006985 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE,
6986 TG3_APE_HOST_DRVR_STATE_START);
Matt Carlson0d3031d2007-10-10 18:02:43 -07006987
Matt Carlson33f401a2010-04-05 10:19:27 +00006988 event = APE_EVENT_STATUS_STATE_START;
6989 break;
6990 case RESET_KIND_SHUTDOWN:
6991 /* With the interface we are currently using,
6992 * APE does not track driver state. Wiping
6993 * out the HOST SEGMENT SIGNATURE forces
6994 * the APE to assume OS absent status.
6995 */
6996 tg3_ape_write32(tp, TG3_APE_HOST_SEG_SIG, 0x0);
Matt Carlsonb2aee152008-11-03 16:51:11 -08006997
Matt Carlsondc6d0742010-09-15 08:59:55 +00006998 if (device_may_wakeup(&tp->pdev->dev) &&
Joe Perches63c3a662011-04-26 08:12:10 +00006999 tg3_flag(tp, WOL_ENABLE)) {
Matt Carlsondc6d0742010-09-15 08:59:55 +00007000 tg3_ape_write32(tp, TG3_APE_HOST_WOL_SPEED,
7001 TG3_APE_HOST_WOL_SPEED_AUTO);
7002 apedata = TG3_APE_HOST_DRVR_STATE_WOL;
7003 } else
7004 apedata = TG3_APE_HOST_DRVR_STATE_UNLOAD;
7005
7006 tg3_ape_write32(tp, TG3_APE_HOST_DRVR_STATE, apedata);
7007
Matt Carlson33f401a2010-04-05 10:19:27 +00007008 event = APE_EVENT_STATUS_STATE_UNLOAD;
7009 break;
7010 case RESET_KIND_SUSPEND:
7011 event = APE_EVENT_STATUS_STATE_SUSPEND;
7012 break;
7013 default:
7014 return;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007015 }
7016
7017 event |= APE_EVENT_STATUS_DRIVER_EVNT | APE_EVENT_STATUS_STATE_CHNGE;
7018
7019 tg3_ape_send_event(tp, event);
7020}
7021
Michael Chane6af3012005-04-21 17:12:05 -07007022/* tp->lock is held. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023static void tg3_write_sig_pre_reset(struct tg3 *tp, int kind)
7024{
David S. Millerf49639e2006-06-09 11:58:36 -07007025 tg3_write_mem(tp, NIC_SRAM_FIRMWARE_MBOX,
7026 NIC_SRAM_FIRMWARE_MBOX_MAGIC1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027
Joe Perches63c3a662011-04-26 08:12:10 +00007028 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029 switch (kind) {
7030 case RESET_KIND_INIT:
7031 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7032 DRV_STATE_START);
7033 break;
7034
7035 case RESET_KIND_SHUTDOWN:
7036 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7037 DRV_STATE_UNLOAD);
7038 break;
7039
7040 case RESET_KIND_SUSPEND:
7041 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7042 DRV_STATE_SUSPEND);
7043 break;
7044
7045 default:
7046 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07007049
7050 if (kind == RESET_KIND_INIT ||
7051 kind == RESET_KIND_SUSPEND)
7052 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053}
7054
7055/* tp->lock is held. */
7056static void tg3_write_sig_post_reset(struct tg3 *tp, int kind)
7057{
Joe Perches63c3a662011-04-26 08:12:10 +00007058 if (tg3_flag(tp, ASF_NEW_HANDSHAKE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059 switch (kind) {
7060 case RESET_KIND_INIT:
7061 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7062 DRV_STATE_START_DONE);
7063 break;
7064
7065 case RESET_KIND_SHUTDOWN:
7066 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7067 DRV_STATE_UNLOAD_DONE);
7068 break;
7069
7070 default:
7071 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073 }
Matt Carlson0d3031d2007-10-10 18:02:43 -07007074
7075 if (kind == RESET_KIND_SHUTDOWN)
7076 tg3_ape_driver_state_change(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077}
7078
7079/* tp->lock is held. */
7080static void tg3_write_sig_legacy(struct tg3 *tp, int kind)
7081{
Joe Perches63c3a662011-04-26 08:12:10 +00007082 if (tg3_flag(tp, ENABLE_ASF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083 switch (kind) {
7084 case RESET_KIND_INIT:
7085 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7086 DRV_STATE_START);
7087 break;
7088
7089 case RESET_KIND_SHUTDOWN:
7090 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7091 DRV_STATE_UNLOAD);
7092 break;
7093
7094 case RESET_KIND_SUSPEND:
7095 tg3_write_mem(tp, NIC_SRAM_FW_DRV_STATE_MBOX,
7096 DRV_STATE_SUSPEND);
7097 break;
7098
7099 default:
7100 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07007101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102 }
7103}
7104
Michael Chan7a6f4362006-09-27 16:03:31 -07007105static int tg3_poll_fw(struct tg3 *tp)
7106{
7107 int i;
7108 u32 val;
7109
Michael Chanb5d37722006-09-27 16:06:21 -07007110 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Gary Zambrano0ccead12006-11-14 16:34:00 -08007111 /* Wait up to 20ms for init done. */
7112 for (i = 0; i < 200; i++) {
Michael Chanb5d37722006-09-27 16:06:21 -07007113 if (tr32(VCPU_STATUS) & VCPU_STATUS_INIT_DONE)
7114 return 0;
Gary Zambrano0ccead12006-11-14 16:34:00 -08007115 udelay(100);
Michael Chanb5d37722006-09-27 16:06:21 -07007116 }
7117 return -ENODEV;
7118 }
7119
Michael Chan7a6f4362006-09-27 16:03:31 -07007120 /* Wait for firmware initialization to complete. */
7121 for (i = 0; i < 100000; i++) {
7122 tg3_read_mem(tp, NIC_SRAM_FIRMWARE_MBOX, &val);
7123 if (val == ~NIC_SRAM_FIRMWARE_MBOX_MAGIC1)
7124 break;
7125 udelay(10);
7126 }
7127
7128 /* Chip might not be fitted with firmware. Some Sun onboard
7129 * parts are configured like that. So don't signal the timeout
7130 * of the above loop as an error, but do report the lack of
7131 * running firmware once.
7132 */
Joe Perches63c3a662011-04-26 08:12:10 +00007133 if (i >= 100000 && !tg3_flag(tp, NO_FWARE_REPORTED)) {
7134 tg3_flag_set(tp, NO_FWARE_REPORTED);
Michael Chan7a6f4362006-09-27 16:03:31 -07007135
Joe Perches05dbe002010-02-17 19:44:19 +00007136 netdev_info(tp->dev, "No firmware running\n");
Michael Chan7a6f4362006-09-27 16:03:31 -07007137 }
7138
Matt Carlson6b10c162010-02-12 14:47:08 +00007139 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
7140 /* The 57765 A0 needs a little more
7141 * time to do some important work.
7142 */
7143 mdelay(10);
7144 }
7145
Michael Chan7a6f4362006-09-27 16:03:31 -07007146 return 0;
7147}
7148
Michael Chanee6a99b2007-07-18 21:49:10 -07007149/* Save PCI command register before chip reset */
7150static void tg3_save_pci_state(struct tg3 *tp)
7151{
Matt Carlson8a6eac92007-10-21 16:17:55 -07007152 pci_read_config_word(tp->pdev, PCI_COMMAND, &tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007153}
7154
7155/* Restore PCI state after chip reset */
7156static void tg3_restore_pci_state(struct tg3 *tp)
7157{
7158 u32 val;
7159
7160 /* Re-enable indirect register accesses. */
7161 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
7162 tp->misc_host_ctrl);
7163
7164 /* Set MAX PCI retry to zero. */
7165 val = (PCISTATE_ROM_ENABLE | PCISTATE_ROM_RETRY_ENABLE);
7166 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007167 tg3_flag(tp, PCIX_MODE))
Michael Chanee6a99b2007-07-18 21:49:10 -07007168 val |= PCISTATE_RETRY_SAME_DMA;
Matt Carlson0d3031d2007-10-10 18:02:43 -07007169 /* Allow reads and writes to the APE register and memory space. */
Joe Perches63c3a662011-04-26 08:12:10 +00007170 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson0d3031d2007-10-10 18:02:43 -07007171 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00007172 PCISTATE_ALLOW_APE_SHMEM_WR |
7173 PCISTATE_ALLOW_APE_PSPACE_WR;
Michael Chanee6a99b2007-07-18 21:49:10 -07007174 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, val);
7175
Matt Carlson8a6eac92007-10-21 16:17:55 -07007176 pci_write_config_word(tp->pdev, PCI_COMMAND, tp->pci_cmd);
Michael Chanee6a99b2007-07-18 21:49:10 -07007177
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007178 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785) {
Joe Perches63c3a662011-04-26 08:12:10 +00007179 if (tg3_flag(tp, PCI_EXPRESS))
Matt Carlsoncf790032010-11-24 08:31:48 +00007180 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlsonfcb389d2008-11-03 16:55:44 -08007181 else {
7182 pci_write_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
7183 tp->pci_cacheline_sz);
7184 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
7185 tp->pci_lat_timer);
7186 }
Michael Chan114342f2007-10-15 02:12:26 -07007187 }
Matt Carlson5f5c51e2007-11-12 21:19:37 -08007188
Michael Chanee6a99b2007-07-18 21:49:10 -07007189 /* Make sure PCI-X relaxed ordering bit is clear. */
Joe Perches63c3a662011-04-26 08:12:10 +00007190 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07007191 u16 pcix_cmd;
7192
7193 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7194 &pcix_cmd);
7195 pcix_cmd &= ~PCI_X_CMD_ERO;
7196 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
7197 pcix_cmd);
7198 }
Michael Chanee6a99b2007-07-18 21:49:10 -07007199
Joe Perches63c3a662011-04-26 08:12:10 +00007200 if (tg3_flag(tp, 5780_CLASS)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007201
7202 /* Chip reset on 5780 will reset MSI enable bit,
7203 * so need to restore it.
7204 */
Joe Perches63c3a662011-04-26 08:12:10 +00007205 if (tg3_flag(tp, USING_MSI)) {
Michael Chanee6a99b2007-07-18 21:49:10 -07007206 u16 ctrl;
7207
7208 pci_read_config_word(tp->pdev,
7209 tp->msi_cap + PCI_MSI_FLAGS,
7210 &ctrl);
7211 pci_write_config_word(tp->pdev,
7212 tp->msi_cap + PCI_MSI_FLAGS,
7213 ctrl | PCI_MSI_FLAGS_ENABLE);
7214 val = tr32(MSGINT_MODE);
7215 tw32(MSGINT_MODE, val | MSGINT_MODE_ENABLE);
7216 }
7217 }
7218}
7219
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220static void tg3_stop_fw(struct tg3 *);
7221
7222/* tp->lock is held. */
7223static int tg3_chip_reset(struct tg3 *tp)
7224{
7225 u32 val;
Michael Chan1ee582d2005-08-09 20:16:46 -07007226 void (*write_op)(struct tg3 *, u32, u32);
Matt Carlson4f125f42009-09-01 12:55:02 +00007227 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228
David S. Millerf49639e2006-06-09 11:58:36 -07007229 tg3_nvram_lock(tp);
7230
Matt Carlson77b483f2008-08-15 14:07:24 -07007231 tg3_ape_lock(tp, TG3_APE_LOCK_GRC);
7232
David S. Millerf49639e2006-06-09 11:58:36 -07007233 /* No matching tg3_nvram_unlock() after this because
7234 * chip reset below will undo the nvram lock.
7235 */
7236 tp->nvram_lock_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237
Michael Chanee6a99b2007-07-18 21:49:10 -07007238 /* GRC_MISC_CFG core clock reset will clear the memory
7239 * enable bit in PCI register 4 and the MSI enable bit
7240 * on some chips, so we save relevant registers here.
7241 */
7242 tg3_save_pci_state(tp);
7243
Michael Chand9ab5ad12006-03-20 22:27:35 -08007244 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Joe Perches63c3a662011-04-26 08:12:10 +00007245 tg3_flag(tp, 5755_PLUS))
Michael Chand9ab5ad12006-03-20 22:27:35 -08007246 tw32(GRC_FASTBOOT_PC, 0);
7247
Linus Torvalds1da177e2005-04-16 15:20:36 -07007248 /*
7249 * We must avoid the readl() that normally takes place.
7250 * It locks machines, causes machine checks, and other
7251 * fun things. So, temporarily disable the 5701
7252 * hardware workaround, while we do the reset.
7253 */
Michael Chan1ee582d2005-08-09 20:16:46 -07007254 write_op = tp->write32;
7255 if (write_op == tg3_write_flush_reg32)
7256 tp->write32 = tg3_write32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257
Michael Chand18edcb2007-03-24 20:57:11 -07007258 /* Prevent the irq handler from reading or writing PCI registers
7259 * during chip reset when the memory enable bit in the PCI command
7260 * register may be cleared. The chip does not generate interrupt
7261 * at this time, but the irq handler may still be called due to irq
7262 * sharing or irqpoll.
7263 */
Joe Perches63c3a662011-04-26 08:12:10 +00007264 tg3_flag_set(tp, CHIP_RESETTING);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007265 for (i = 0; i < tp->irq_cnt; i++) {
7266 struct tg3_napi *tnapi = &tp->napi[i];
7267 if (tnapi->hw_status) {
7268 tnapi->hw_status->status = 0;
7269 tnapi->hw_status->status_tag = 0;
7270 }
7271 tnapi->last_tag = 0;
7272 tnapi->last_irq_tag = 0;
Michael Chanb8fa2f32007-04-06 17:35:37 -07007273 }
Michael Chand18edcb2007-03-24 20:57:11 -07007274 smp_mb();
Matt Carlson4f125f42009-09-01 12:55:02 +00007275
7276 for (i = 0; i < tp->irq_cnt; i++)
7277 synchronize_irq(tp->napi[i].irq_vec);
Michael Chand18edcb2007-03-24 20:57:11 -07007278
Matt Carlson255ca312009-08-25 10:07:27 +00007279 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
7280 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
7281 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
7282 }
7283
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284 /* do the reset */
7285 val = GRC_MISC_CFG_CORECLK_RESET;
7286
Joe Perches63c3a662011-04-26 08:12:10 +00007287 if (tg3_flag(tp, PCI_EXPRESS)) {
Matt Carlson88075d92010-08-02 11:25:58 +00007288 /* Force PCIe 1.0a mode */
7289 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007290 !tg3_flag(tp, 57765_PLUS) &&
Matt Carlson88075d92010-08-02 11:25:58 +00007291 tr32(TG3_PCIE_PHY_TSTCTL) ==
7292 (TG3_PCIE_PHY_TSTCTL_PCIE10 | TG3_PCIE_PHY_TSTCTL_PSCRAM))
7293 tw32(TG3_PCIE_PHY_TSTCTL, TG3_PCIE_PHY_TSTCTL_PSCRAM);
7294
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0) {
7296 tw32(GRC_MISC_CFG, (1 << 29));
7297 val |= (1 << 29);
7298 }
7299 }
7300
Michael Chanb5d37722006-09-27 16:06:21 -07007301 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7302 tw32(VCPU_STATUS, tr32(VCPU_STATUS) | VCPU_STATUS_DRV_RESET);
7303 tw32(GRC_VCPU_EXT_CTRL,
7304 tr32(GRC_VCPU_EXT_CTRL) & ~GRC_VCPU_EXT_CTRL_HALT_CPU);
7305 }
7306
Matt Carlsonf37500d2010-08-02 11:25:59 +00007307 /* Manage gphy power for all CPMU absent PCIe devices. */
Joe Perches63c3a662011-04-26 08:12:10 +00007308 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, CPMU_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309 val |= GRC_MISC_CFG_KEEP_GPHY_POWER;
Matt Carlsonf37500d2010-08-02 11:25:59 +00007310
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311 tw32(GRC_MISC_CFG, val);
7312
Michael Chan1ee582d2005-08-09 20:16:46 -07007313 /* restore 5701 hardware bug workaround write method */
7314 tp->write32 = write_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315
7316 /* Unfortunately, we have to delay before the PCI read back.
7317 * Some 575X chips even will not respond to a PCI cfg access
7318 * when the reset command is given to the chip.
7319 *
7320 * How do these hardware designers expect things to work
7321 * properly if the PCI write is posted for a long period
7322 * of time? It is always necessary to have some method by
7323 * which a register read back can occur to push the write
7324 * out which does the reset.
7325 *
7326 * For most tg3 variants the trick below was working.
7327 * Ho hum...
7328 */
7329 udelay(120);
7330
7331 /* Flush PCI posted writes. The normal MMIO registers
7332 * are inaccessible at this time so this is the only
7333 * way to make this reliably (actually, this is no longer
7334 * the case, see above). I tried to use indirect
7335 * register read/write but this upset some 5701 variants.
7336 */
7337 pci_read_config_dword(tp->pdev, PCI_COMMAND, &val);
7338
7339 udelay(120);
7340
Jon Mason708ebb3a2011-06-27 12:56:50 +00007341 if (tg3_flag(tp, PCI_EXPRESS) && pci_pcie_cap(tp->pdev)) {
Matt Carlsone7126992009-08-25 10:08:16 +00007342 u16 val16;
7343
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A0) {
7345 int i;
7346 u32 cfg_val;
7347
7348 /* Wait for link training to complete. */
7349 for (i = 0; i < 5000; i++)
7350 udelay(100);
7351
7352 pci_read_config_dword(tp->pdev, 0xc4, &cfg_val);
7353 pci_write_config_dword(tp->pdev, 0xc4,
7354 cfg_val | (1 << 15));
7355 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007356
Matt Carlsone7126992009-08-25 10:08:16 +00007357 /* Clear the "no snoop" and "relaxed ordering" bits. */
7358 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007359 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007360 &val16);
7361 val16 &= ~(PCI_EXP_DEVCTL_RELAX_EN |
7362 PCI_EXP_DEVCTL_NOSNOOP_EN);
7363 /*
7364 * Older PCIe devices only support the 128 byte
7365 * MPS setting. Enforce the restriction.
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007366 */
Joe Perches63c3a662011-04-26 08:12:10 +00007367 if (!tg3_flag(tp, CPMU_PRESENT))
Matt Carlsone7126992009-08-25 10:08:16 +00007368 val16 &= ~PCI_EXP_DEVCTL_PAYLOAD;
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007369 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007370 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVCTL,
Matt Carlsone7126992009-08-25 10:08:16 +00007371 val16);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007372
Matt Carlsoncf790032010-11-24 08:31:48 +00007373 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007374
7375 /* Clear error status */
7376 pci_write_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +00007377 pci_pcie_cap(tp->pdev) + PCI_EXP_DEVSTA,
Matt Carlson5e7dfd02008-11-21 17:18:16 -08007378 PCI_EXP_DEVSTA_CED |
7379 PCI_EXP_DEVSTA_NFED |
7380 PCI_EXP_DEVSTA_FED |
7381 PCI_EXP_DEVSTA_URD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382 }
7383
Michael Chanee6a99b2007-07-18 21:49:10 -07007384 tg3_restore_pci_state(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385
Joe Perches63c3a662011-04-26 08:12:10 +00007386 tg3_flag_clear(tp, CHIP_RESETTING);
7387 tg3_flag_clear(tp, ERROR_PROCESSED);
Michael Chand18edcb2007-03-24 20:57:11 -07007388
Michael Chanee6a99b2007-07-18 21:49:10 -07007389 val = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007390 if (tg3_flag(tp, 5780_CLASS))
Michael Chan4cf78e42005-07-25 12:29:19 -07007391 val = tr32(MEMARB_MODE);
Michael Chanee6a99b2007-07-18 21:49:10 -07007392 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393
7394 if (tp->pci_chip_rev_id == CHIPREV_ID_5750_A3) {
7395 tg3_stop_fw(tp);
7396 tw32(0x5000, 0x400);
7397 }
7398
7399 tw32(GRC_MODE, tp->grc_mode);
7400
7401 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007402 val = tr32(0xc4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403
7404 tw32(0xc4, val | (1 << 15));
7405 }
7406
7407 if ((tp->nic_sram_data_cfg & NIC_SRAM_DATA_CFG_MINI_PCI) != 0 &&
7408 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
7409 tp->pci_clock_ctrl |= CLOCK_CTRL_CLKRUN_OENABLE;
7410 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A0)
7411 tp->pci_clock_ctrl |= CLOCK_CTRL_FORCE_CLKRUN;
7412 tw32(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
7413 }
7414
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007415 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007416 tp->mac_mode = MAC_MODE_PORT_MODE_TBI;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007417 val = tp->mac_mode;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00007418 } else if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Matt Carlson9e975cc2011-07-20 10:20:50 +00007419 tp->mac_mode = MAC_MODE_PORT_MODE_GMII;
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007420 val = tp->mac_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421 } else
Matt Carlsond2394e6b2010-11-24 08:31:47 +00007422 val = 0;
7423
7424 tw32_f(MAC_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425 udelay(40);
7426
Matt Carlson77b483f2008-08-15 14:07:24 -07007427 tg3_ape_unlock(tp, TG3_APE_LOCK_GRC);
7428
Michael Chan7a6f4362006-09-27 16:03:31 -07007429 err = tg3_poll_fw(tp);
7430 if (err)
7431 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432
Matt Carlson0a9140c2009-08-28 12:27:50 +00007433 tg3_mdio_start(tp);
7434
Joe Perches63c3a662011-04-26 08:12:10 +00007435 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007436 tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
7437 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +00007438 !tg3_flag(tp, 57765_PLUS)) {
Andy Gospodarekab0049b2007-09-06 20:42:14 +01007439 val = tr32(0x7c00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440
7441 tw32(0x7c00, val | (1 << 25));
7442 }
7443
Matt Carlsond78b59f2011-04-05 14:22:46 +00007444 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
7445 val = tr32(TG3_CPMU_CLCK_ORIDE);
7446 tw32(TG3_CPMU_CLCK_ORIDE, val & ~CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
7447 }
7448
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449 /* Reprobe ASF enable state. */
Joe Perches63c3a662011-04-26 08:12:10 +00007450 tg3_flag_clear(tp, ENABLE_ASF);
7451 tg3_flag_clear(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
7453 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
7454 u32 nic_cfg;
7455
7456 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
7457 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +00007458 tg3_flag_set(tp, ENABLE_ASF);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007459 tp->last_event_jiffies = jiffies;
Joe Perches63c3a662011-04-26 08:12:10 +00007460 if (tg3_flag(tp, 5750_PLUS))
7461 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462 }
7463 }
7464
7465 return 0;
7466}
7467
7468/* tp->lock is held. */
7469static void tg3_stop_fw(struct tg3 *tp)
7470{
Joe Perches63c3a662011-04-26 08:12:10 +00007471 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07007472 /* Wait for RX cpu to ACK the previous event. */
7473 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474
7475 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, FWCMD_NICDRV_PAUSE_FW);
Matt Carlson4ba526c2008-08-15 14:10:04 -07007476
7477 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478
Matt Carlson7c5026a2008-05-02 16:49:29 -07007479 /* Wait for RX cpu to ACK this event. */
7480 tg3_wait_for_event_ack(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 }
7482}
7483
7484/* tp->lock is held. */
Michael Chan944d9802005-05-29 14:57:48 -07007485static int tg3_halt(struct tg3 *tp, int kind, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007486{
7487 int err;
7488
7489 tg3_stop_fw(tp);
7490
Michael Chan944d9802005-05-29 14:57:48 -07007491 tg3_write_sig_pre_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492
David S. Millerb3b7d6b2005-05-05 14:40:20 -07007493 tg3_abort_hw(tp, silent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494 err = tg3_chip_reset(tp);
7495
Matt Carlsondaba2a62009-04-20 06:58:52 +00007496 __tg3_set_mac_addr(tp, 0);
7497
Michael Chan944d9802005-05-29 14:57:48 -07007498 tg3_write_sig_legacy(tp, kind);
7499 tg3_write_sig_post_reset(tp, kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500
7501 if (err)
7502 return err;
7503
7504 return 0;
7505}
7506
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507#define RX_CPU_SCRATCH_BASE 0x30000
7508#define RX_CPU_SCRATCH_SIZE 0x04000
7509#define TX_CPU_SCRATCH_BASE 0x34000
7510#define TX_CPU_SCRATCH_SIZE 0x04000
7511
7512/* tp->lock is held. */
7513static int tg3_halt_cpu(struct tg3 *tp, u32 offset)
7514{
7515 int i;
7516
Joe Perches63c3a662011-04-26 08:12:10 +00007517 BUG_ON(offset == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518
Michael Chanb5d37722006-09-27 16:06:21 -07007519 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
7520 u32 val = tr32(GRC_VCPU_EXT_CTRL);
7521
7522 tw32(GRC_VCPU_EXT_CTRL, val | GRC_VCPU_EXT_CTRL_HALT_CPU);
7523 return 0;
7524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007525 if (offset == RX_CPU_BASE) {
7526 for (i = 0; i < 10000; i++) {
7527 tw32(offset + CPU_STATE, 0xffffffff);
7528 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7529 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7530 break;
7531 }
7532
7533 tw32(offset + CPU_STATE, 0xffffffff);
7534 tw32_f(offset + CPU_MODE, CPU_MODE_HALT);
7535 udelay(10);
7536 } else {
7537 for (i = 0; i < 10000; i++) {
7538 tw32(offset + CPU_STATE, 0xffffffff);
7539 tw32(offset + CPU_MODE, CPU_MODE_HALT);
7540 if (tr32(offset + CPU_MODE) & CPU_MODE_HALT)
7541 break;
7542 }
7543 }
7544
7545 if (i >= 10000) {
Joe Perches05dbe002010-02-17 19:44:19 +00007546 netdev_err(tp->dev, "%s timed out, %s CPU\n",
7547 __func__, offset == RX_CPU_BASE ? "RX" : "TX");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007548 return -ENODEV;
7549 }
Michael Chanec41c7d2006-01-17 02:40:55 -08007550
7551 /* Clear firmware's nvram arbitration. */
Joe Perches63c3a662011-04-26 08:12:10 +00007552 if (tg3_flag(tp, NVRAM))
Michael Chanec41c7d2006-01-17 02:40:55 -08007553 tw32(NVRAM_SWARB, SWARB_REQ_CLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554 return 0;
7555}
7556
7557struct fw_info {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007558 unsigned int fw_base;
7559 unsigned int fw_len;
7560 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561};
7562
7563/* tp->lock is held. */
7564static int tg3_load_firmware_cpu(struct tg3 *tp, u32 cpu_base, u32 cpu_scratch_base,
7565 int cpu_scratch_size, struct fw_info *info)
7566{
Michael Chanec41c7d2006-01-17 02:40:55 -08007567 int err, lock_err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568 void (*write_op)(struct tg3 *, u32, u32);
7569
Joe Perches63c3a662011-04-26 08:12:10 +00007570 if (cpu_base == TX_CPU_BASE && tg3_flag(tp, 5705_PLUS)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007571 netdev_err(tp->dev,
7572 "%s: Trying to load TX cpu firmware which is 5705\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007573 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574 return -EINVAL;
7575 }
7576
Joe Perches63c3a662011-04-26 08:12:10 +00007577 if (tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007578 write_op = tg3_write_mem;
7579 else
7580 write_op = tg3_write_indirect_reg32;
7581
Michael Chan1b628152005-05-29 14:59:49 -07007582 /* It is possible that bootcode is still loading at this point.
7583 * Get the nvram lock first before halting the cpu.
7584 */
Michael Chanec41c7d2006-01-17 02:40:55 -08007585 lock_err = tg3_nvram_lock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586 err = tg3_halt_cpu(tp, cpu_base);
Michael Chanec41c7d2006-01-17 02:40:55 -08007587 if (!lock_err)
7588 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007589 if (err)
7590 goto out;
7591
7592 for (i = 0; i < cpu_scratch_size; i += sizeof(u32))
7593 write_op(tp, cpu_scratch_base + i, 0);
7594 tw32(cpu_base + CPU_STATE, 0xffffffff);
7595 tw32(cpu_base + CPU_MODE, tr32(cpu_base+CPU_MODE)|CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007596 for (i = 0; i < (info->fw_len / sizeof(u32)); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597 write_op(tp, (cpu_scratch_base +
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007598 (info->fw_base & 0xffff) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599 (i * sizeof(u32))),
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007600 be32_to_cpu(info->fw_data[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601
7602 err = 0;
7603
7604out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605 return err;
7606}
7607
7608/* tp->lock is held. */
7609static int tg3_load_5701_a0_firmware_fix(struct tg3 *tp)
7610{
7611 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007612 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613 int err, i;
7614
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007615 fw_data = (void *)tp->fw->data;
7616
7617 /* Firmware blob starts with version numbers, followed by
7618 start address and length. We are setting complete length.
7619 length = end_address_of_bss - start_address_of_text.
7620 Remainder is the blob to be loaded contiguously
7621 from start address. */
7622
7623 info.fw_base = be32_to_cpu(fw_data[1]);
7624 info.fw_len = tp->fw->size - 12;
7625 info.fw_data = &fw_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626
7627 err = tg3_load_firmware_cpu(tp, RX_CPU_BASE,
7628 RX_CPU_SCRATCH_BASE, RX_CPU_SCRATCH_SIZE,
7629 &info);
7630 if (err)
7631 return err;
7632
7633 err = tg3_load_firmware_cpu(tp, TX_CPU_BASE,
7634 TX_CPU_SCRATCH_BASE, TX_CPU_SCRATCH_SIZE,
7635 &info);
7636 if (err)
7637 return err;
7638
7639 /* Now startup only the RX cpu. */
7640 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007641 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642
7643 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007644 if (tr32(RX_CPU_BASE + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645 break;
7646 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7647 tw32(RX_CPU_BASE + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007648 tw32_f(RX_CPU_BASE + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649 udelay(1000);
7650 }
7651 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007652 netdev_err(tp->dev, "%s fails to set RX CPU PC, is %08x "
7653 "should be %08x\n", __func__,
Joe Perches05dbe002010-02-17 19:44:19 +00007654 tr32(RX_CPU_BASE + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007655 return -ENODEV;
7656 }
7657 tw32(RX_CPU_BASE + CPU_STATE, 0xffffffff);
7658 tw32_f(RX_CPU_BASE + CPU_MODE, 0x00000000);
7659
7660 return 0;
7661}
7662
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663/* tp->lock is held. */
7664static int tg3_load_tso_firmware(struct tg3 *tp)
7665{
7666 struct fw_info info;
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007667 const __be32 *fw_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668 unsigned long cpu_base, cpu_scratch_base, cpu_scratch_size;
7669 int err, i;
7670
Joe Perches63c3a662011-04-26 08:12:10 +00007671 if (tg3_flag(tp, HW_TSO_1) ||
7672 tg3_flag(tp, HW_TSO_2) ||
7673 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674 return 0;
7675
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007676 fw_data = (void *)tp->fw->data;
7677
7678 /* Firmware blob starts with version numbers, followed by
7679 start address and length. We are setting complete length.
7680 length = end_address_of_bss - start_address_of_text.
7681 Remainder is the blob to be loaded contiguously
7682 from start address. */
7683
7684 info.fw_base = be32_to_cpu(fw_data[1]);
7685 cpu_scratch_size = tp->fw_len;
7686 info.fw_len = tp->fw->size - 12;
7687 info.fw_data = &fw_data[3];
7688
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690 cpu_base = RX_CPU_BASE;
7691 cpu_scratch_base = NIC_SRAM_MBUF_POOL_BASE5705;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693 cpu_base = TX_CPU_BASE;
7694 cpu_scratch_base = TX_CPU_SCRATCH_BASE;
7695 cpu_scratch_size = TX_CPU_SCRATCH_SIZE;
7696 }
7697
7698 err = tg3_load_firmware_cpu(tp, cpu_base,
7699 cpu_scratch_base, cpu_scratch_size,
7700 &info);
7701 if (err)
7702 return err;
7703
7704 /* Now startup the cpu. */
7705 tw32(cpu_base + CPU_STATE, 0xffffffff);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007706 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707
7708 for (i = 0; i < 5; i++) {
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007709 if (tr32(cpu_base + CPU_PC) == info.fw_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710 break;
7711 tw32(cpu_base + CPU_STATE, 0xffffffff);
7712 tw32(cpu_base + CPU_MODE, CPU_MODE_HALT);
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08007713 tw32_f(cpu_base + CPU_PC, info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714 udelay(1000);
7715 }
7716 if (i >= 5) {
Matt Carlson5129c3a2010-04-05 10:19:23 +00007717 netdev_err(tp->dev,
7718 "%s fails to set CPU PC, is %08x should be %08x\n",
Joe Perches05dbe002010-02-17 19:44:19 +00007719 __func__, tr32(cpu_base + CPU_PC), info.fw_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720 return -ENODEV;
7721 }
7722 tw32(cpu_base + CPU_STATE, 0xffffffff);
7723 tw32_f(cpu_base + CPU_MODE, 0x00000000);
7724 return 0;
7725}
7726
Linus Torvalds1da177e2005-04-16 15:20:36 -07007727
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728static int tg3_set_mac_addr(struct net_device *dev, void *p)
7729{
7730 struct tg3 *tp = netdev_priv(dev);
7731 struct sockaddr *addr = p;
Michael Chan986e0ae2007-05-05 12:10:20 -07007732 int err = 0, skip_mac_1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733
Michael Chanf9804dd2005-09-27 12:13:10 -07007734 if (!is_valid_ether_addr(addr->sa_data))
7735 return -EINVAL;
7736
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7738
Michael Chane75f7c92006-03-20 21:33:26 -08007739 if (!netif_running(dev))
7740 return 0;
7741
Joe Perches63c3a662011-04-26 08:12:10 +00007742 if (tg3_flag(tp, ENABLE_ASF)) {
Michael Chan986e0ae2007-05-05 12:10:20 -07007743 u32 addr0_high, addr0_low, addr1_high, addr1_low;
Michael Chan58712ef2006-04-29 18:58:01 -07007744
Michael Chan986e0ae2007-05-05 12:10:20 -07007745 addr0_high = tr32(MAC_ADDR_0_HIGH);
7746 addr0_low = tr32(MAC_ADDR_0_LOW);
7747 addr1_high = tr32(MAC_ADDR_1_HIGH);
7748 addr1_low = tr32(MAC_ADDR_1_LOW);
7749
7750 /* Skip MAC addr 1 if ASF is using it. */
7751 if ((addr0_high != addr1_high || addr0_low != addr1_low) &&
7752 !(addr1_high == 0 && addr1_low == 0))
7753 skip_mac_1 = 1;
Michael Chan58712ef2006-04-29 18:58:01 -07007754 }
Michael Chan986e0ae2007-05-05 12:10:20 -07007755 spin_lock_bh(&tp->lock);
7756 __tg3_set_mac_addr(tp, skip_mac_1);
7757 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758
Michael Chanb9ec6c12006-07-25 16:37:27 -07007759 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760}
7761
7762/* tp->lock is held. */
7763static void tg3_set_bdinfo(struct tg3 *tp, u32 bdinfo_addr,
7764 dma_addr_t mapping, u32 maxlen_flags,
7765 u32 nic_addr)
7766{
7767 tg3_write_mem(tp,
7768 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH),
7769 ((u64) mapping >> 32));
7770 tg3_write_mem(tp,
7771 (bdinfo_addr + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW),
7772 ((u64) mapping & 0xffffffff));
7773 tg3_write_mem(tp,
7774 (bdinfo_addr + TG3_BDINFO_MAXLEN_FLAGS),
7775 maxlen_flags);
7776
Joe Perches63c3a662011-04-26 08:12:10 +00007777 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778 tg3_write_mem(tp,
7779 (bdinfo_addr + TG3_BDINFO_NIC_ADDR),
7780 nic_addr);
7781}
7782
7783static void __tg3_set_rx_mode(struct net_device *);
Michael Chand244c892005-07-05 14:42:33 -07007784static void __tg3_set_coalesce(struct tg3 *tp, struct ethtool_coalesce *ec)
David S. Miller15f98502005-05-18 22:49:26 -07007785{
Matt Carlsonb6080e12009-09-01 13:12:00 +00007786 int i;
7787
Joe Perches63c3a662011-04-26 08:12:10 +00007788 if (!tg3_flag(tp, ENABLE_TSS)) {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007789 tw32(HOSTCC_TXCOL_TICKS, ec->tx_coalesce_usecs);
7790 tw32(HOSTCC_TXMAX_FRAMES, ec->tx_max_coalesced_frames);
7791 tw32(HOSTCC_TXCOAL_MAXF_INT, ec->tx_max_coalesced_frames_irq);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007792 } else {
7793 tw32(HOSTCC_TXCOL_TICKS, 0);
7794 tw32(HOSTCC_TXMAX_FRAMES, 0);
7795 tw32(HOSTCC_TXCOAL_MAXF_INT, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007796 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007797
Joe Perches63c3a662011-04-26 08:12:10 +00007798 if (!tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007799 tw32(HOSTCC_RXCOL_TICKS, ec->rx_coalesce_usecs);
7800 tw32(HOSTCC_RXMAX_FRAMES, ec->rx_max_coalesced_frames);
7801 tw32(HOSTCC_RXCOAL_MAXF_INT, ec->rx_max_coalesced_frames_irq);
7802 } else {
Matt Carlsonb6080e12009-09-01 13:12:00 +00007803 tw32(HOSTCC_RXCOL_TICKS, 0);
7804 tw32(HOSTCC_RXMAX_FRAMES, 0);
7805 tw32(HOSTCC_RXCOAL_MAXF_INT, 0);
David S. Miller15f98502005-05-18 22:49:26 -07007806 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007807
Joe Perches63c3a662011-04-26 08:12:10 +00007808 if (!tg3_flag(tp, 5705_PLUS)) {
David S. Miller15f98502005-05-18 22:49:26 -07007809 u32 val = ec->stats_block_coalesce_usecs;
7810
Matt Carlsonb6080e12009-09-01 13:12:00 +00007811 tw32(HOSTCC_RXCOAL_TICK_INT, ec->rx_coalesce_usecs_irq);
7812 tw32(HOSTCC_TXCOAL_TICK_INT, ec->tx_coalesce_usecs_irq);
7813
David S. Miller15f98502005-05-18 22:49:26 -07007814 if (!netif_carrier_ok(tp->dev))
7815 val = 0;
7816
7817 tw32(HOSTCC_STAT_COAL_TICKS, val);
7818 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007819
7820 for (i = 0; i < tp->irq_cnt - 1; i++) {
7821 u32 reg;
7822
7823 reg = HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18;
7824 tw32(reg, ec->rx_coalesce_usecs);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007825 reg = HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18;
7826 tw32(reg, ec->rx_max_coalesced_frames);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007827 reg = HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18;
7828 tw32(reg, ec->rx_max_coalesced_frames_irq);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007829
Joe Perches63c3a662011-04-26 08:12:10 +00007830 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007831 reg = HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18;
7832 tw32(reg, ec->tx_coalesce_usecs);
7833 reg = HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18;
7834 tw32(reg, ec->tx_max_coalesced_frames);
7835 reg = HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18;
7836 tw32(reg, ec->tx_max_coalesced_frames_irq);
7837 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007838 }
7839
7840 for (; i < tp->irq_max - 1; i++) {
7841 tw32(HOSTCC_RXCOL_TICKS_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007842 tw32(HOSTCC_RXMAX_FRAMES_VEC1 + i * 0x18, 0);
Matt Carlsonb6080e12009-09-01 13:12:00 +00007843 tw32(HOSTCC_RXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
Matt Carlson19cfaec2009-12-03 08:36:20 +00007844
Joe Perches63c3a662011-04-26 08:12:10 +00007845 if (tg3_flag(tp, ENABLE_TSS)) {
Matt Carlson19cfaec2009-12-03 08:36:20 +00007846 tw32(HOSTCC_TXCOL_TICKS_VEC1 + i * 0x18, 0);
7847 tw32(HOSTCC_TXMAX_FRAMES_VEC1 + i * 0x18, 0);
7848 tw32(HOSTCC_TXCOAL_MAXF_INT_VEC1 + i * 0x18, 0);
7849 }
Matt Carlsonb6080e12009-09-01 13:12:00 +00007850 }
David S. Miller15f98502005-05-18 22:49:26 -07007851}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852
7853/* tp->lock is held. */
Matt Carlson2d31eca2009-09-01 12:53:31 +00007854static void tg3_rings_reset(struct tg3 *tp)
7855{
7856 int i;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007857 u32 stblk, txrcb, rxrcb, limit;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007858 struct tg3_napi *tnapi = &tp->napi[0];
7859
7860 /* Disable all transmit rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007861 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007862 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
Joe Perches63c3a662011-04-26 08:12:10 +00007863 else if (tg3_flag(tp, 5717_PLUS))
Matt Carlson3d377282010-10-14 10:37:39 +00007864 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
Matt Carlsonb703df62009-12-03 08:36:21 +00007865 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7866 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007867 else
7868 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7869
7870 for (txrcb = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE;
7871 txrcb < limit; txrcb += TG3_BDINFO_SIZE)
7872 tg3_write_mem(tp, txrcb + TG3_BDINFO_MAXLEN_FLAGS,
7873 BDINFO_FLAGS_DISABLED);
7874
7875
7876 /* Disable all receive return rings but the first. */
Joe Perches63c3a662011-04-26 08:12:10 +00007877 if (tg3_flag(tp, 5717_PLUS))
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00007878 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 17;
Joe Perches63c3a662011-04-26 08:12:10 +00007879 else if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson2d31eca2009-09-01 12:53:31 +00007880 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 16;
Matt Carlsonb703df62009-12-03 08:36:21 +00007881 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7882 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson2d31eca2009-09-01 12:53:31 +00007883 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE * 4;
7884 else
7885 limit = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7886
7887 for (rxrcb = NIC_SRAM_RCV_RET_RCB + TG3_BDINFO_SIZE;
7888 rxrcb < limit; rxrcb += TG3_BDINFO_SIZE)
7889 tg3_write_mem(tp, rxrcb + TG3_BDINFO_MAXLEN_FLAGS,
7890 BDINFO_FLAGS_DISABLED);
7891
7892 /* Disable interrupts */
7893 tw32_mailbox_f(tp->napi[0].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00007894 tp->napi[0].chk_msi_cnt = 0;
7895 tp->napi[0].last_rx_cons = 0;
7896 tp->napi[0].last_tx_cons = 0;
Matt Carlson2d31eca2009-09-01 12:53:31 +00007897
7898 /* Zero mailbox registers. */
Joe Perches63c3a662011-04-26 08:12:10 +00007899 if (tg3_flag(tp, SUPPORT_MSIX)) {
Matt Carlson6fd45cb2010-09-15 08:59:57 +00007900 for (i = 1; i < tp->irq_max; i++) {
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007901 tp->napi[i].tx_prod = 0;
7902 tp->napi[i].tx_cons = 0;
Joe Perches63c3a662011-04-26 08:12:10 +00007903 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007904 tw32_mailbox(tp->napi[i].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007905 tw32_rx_mbox(tp->napi[i].consmbox, 0);
7906 tw32_mailbox_f(tp->napi[i].int_mbox, 1);
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00007907 tp->napi[0].chk_msi_cnt = 0;
7908 tp->napi[i].last_rx_cons = 0;
7909 tp->napi[i].last_tx_cons = 0;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007910 }
Joe Perches63c3a662011-04-26 08:12:10 +00007911 if (!tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc2353a32010-01-20 16:58:08 +00007912 tw32_mailbox(tp->napi[0].prodmbox, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007913 } else {
7914 tp->napi[0].tx_prod = 0;
7915 tp->napi[0].tx_cons = 0;
7916 tw32_mailbox(tp->napi[0].prodmbox, 0);
7917 tw32_rx_mbox(tp->napi[0].consmbox, 0);
7918 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007919
7920 /* Make sure the NIC-based send BD rings are disabled. */
Joe Perches63c3a662011-04-26 08:12:10 +00007921 if (!tg3_flag(tp, 5705_PLUS)) {
Matt Carlson2d31eca2009-09-01 12:53:31 +00007922 u32 mbox = MAILBOX_SNDNIC_PROD_IDX_0 + TG3_64BIT_REG_LOW;
7923 for (i = 0; i < 16; i++)
7924 tw32_tx_mbox(mbox + i * 8, 0);
7925 }
7926
7927 txrcb = NIC_SRAM_SEND_RCB;
7928 rxrcb = NIC_SRAM_RCV_RET_RCB;
7929
7930 /* Clear status block in ram. */
7931 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7932
7933 /* Set status block DMA address */
7934 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
7935 ((u64) tnapi->status_mapping >> 32));
7936 tw32(HOSTCC_STATUS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
7937 ((u64) tnapi->status_mapping & 0xffffffff));
7938
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007939 if (tnapi->tx_ring) {
7940 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7941 (TG3_TX_RING_SIZE <<
7942 BDINFO_FLAGS_MAXLEN_SHIFT),
7943 NIC_SRAM_TX_BUFFER_DESC);
7944 txrcb += TG3_BDINFO_SIZE;
7945 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007946
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007947 if (tnapi->rx_rcb) {
7948 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007949 (tp->rx_ret_ring_mask + 1) <<
7950 BDINFO_FLAGS_MAXLEN_SHIFT, 0);
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007951 rxrcb += TG3_BDINFO_SIZE;
7952 }
7953
7954 stblk = HOSTCC_STATBLCK_RING1;
7955
7956 for (i = 1, tnapi++; i < tp->irq_cnt; i++, tnapi++) {
7957 u64 mapping = (u64)tnapi->status_mapping;
7958 tw32(stblk + TG3_64BIT_REG_HIGH, mapping >> 32);
7959 tw32(stblk + TG3_64BIT_REG_LOW, mapping & 0xffffffff);
7960
7961 /* Clear status block in ram. */
7962 memset(tnapi->hw_status, 0, TG3_HW_STATUS_SIZE);
7963
Matt Carlson19cfaec2009-12-03 08:36:20 +00007964 if (tnapi->tx_ring) {
7965 tg3_set_bdinfo(tp, txrcb, tnapi->tx_desc_mapping,
7966 (TG3_TX_RING_SIZE <<
7967 BDINFO_FLAGS_MAXLEN_SHIFT),
7968 NIC_SRAM_TX_BUFFER_DESC);
7969 txrcb += TG3_BDINFO_SIZE;
7970 }
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007971
7972 tg3_set_bdinfo(tp, rxrcb, tnapi->rx_rcb_mapping,
Matt Carlson7cb32cf2010-09-30 10:34:36 +00007973 ((tp->rx_ret_ring_mask + 1) <<
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007974 BDINFO_FLAGS_MAXLEN_SHIFT), 0);
7975
7976 stblk += 8;
Matt Carlsonf77a6a82009-09-01 13:04:37 +00007977 rxrcb += TG3_BDINFO_SIZE;
7978 }
Matt Carlson2d31eca2009-09-01 12:53:31 +00007979}
7980
Matt Carlsoneb07a942011-04-20 07:57:36 +00007981static void tg3_setup_rxbd_thresholds(struct tg3 *tp)
7982{
7983 u32 val, bdcache_maxcnt, host_rep_thresh, nic_rep_thresh;
7984
Joe Perches63c3a662011-04-26 08:12:10 +00007985 if (!tg3_flag(tp, 5750_PLUS) ||
7986 tg3_flag(tp, 5780_CLASS) ||
Matt Carlsoneb07a942011-04-20 07:57:36 +00007987 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
7988 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
7989 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5700;
7990 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
7991 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787)
7992 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5755;
7993 else
7994 bdcache_maxcnt = TG3_SRAM_RX_STD_BDCACHE_SIZE_5906;
7995
7996 nic_rep_thresh = min(bdcache_maxcnt / 2, tp->rx_std_max_post);
7997 host_rep_thresh = max_t(u32, tp->rx_pending / 8, 1);
7998
7999 val = min(nic_rep_thresh, host_rep_thresh);
8000 tw32(RCVBDI_STD_THRESH, val);
8001
Joe Perches63c3a662011-04-26 08:12:10 +00008002 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008003 tw32(STD_REPLENISH_LWM, bdcache_maxcnt);
8004
Joe Perches63c3a662011-04-26 08:12:10 +00008005 if (!tg3_flag(tp, JUMBO_CAPABLE) || tg3_flag(tp, 5780_CLASS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008006 return;
8007
Joe Perches63c3a662011-04-26 08:12:10 +00008008 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008009 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5700;
8010 else
8011 bdcache_maxcnt = TG3_SRAM_RX_JMB_BDCACHE_SIZE_5717;
8012
8013 host_rep_thresh = max_t(u32, tp->rx_jumbo_pending / 8, 1);
8014
8015 val = min(bdcache_maxcnt / 2, host_rep_thresh);
8016 tw32(RCVBDI_JUMBO_THRESH, val);
8017
Joe Perches63c3a662011-04-26 08:12:10 +00008018 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoneb07a942011-04-20 07:57:36 +00008019 tw32(JMB_REPLENISH_LWM, bdcache_maxcnt);
8020}
8021
Matt Carlson2d31eca2009-09-01 12:53:31 +00008022/* tp->lock is held. */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008023static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024{
8025 u32 val, rdmac_mode;
8026 int i, err, limit;
Matt Carlson8fea32b2010-09-15 08:59:58 +00008027 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028
8029 tg3_disable_ints(tp);
8030
8031 tg3_stop_fw(tp);
8032
8033 tg3_write_sig_pre_reset(tp, RESET_KIND_INIT);
8034
Joe Perches63c3a662011-04-26 08:12:10 +00008035 if (tg3_flag(tp, INIT_COMPLETE))
Michael Chane6de8ad2005-05-05 14:42:41 -07008036 tg3_abort_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037
Matt Carlson699c0192010-12-06 08:28:51 +00008038 /* Enable MAC control of LPI */
8039 if (tp->phy_flags & TG3_PHYFLG_EEE_CAP) {
8040 tw32_f(TG3_CPMU_EEE_LNKIDL_CTRL,
8041 TG3_CPMU_EEE_LNKIDL_PCIE_NL0 |
8042 TG3_CPMU_EEE_LNKIDL_UART_IDL);
8043
8044 tw32_f(TG3_CPMU_EEE_CTRL,
8045 TG3_CPMU_EEE_CTRL_EXIT_20_1_US);
8046
Matt Carlsona386b902010-12-06 08:28:53 +00008047 val = TG3_CPMU_EEEMD_ERLY_L1_XIT_DET |
8048 TG3_CPMU_EEEMD_LPI_IN_TX |
8049 TG3_CPMU_EEEMD_LPI_IN_RX |
8050 TG3_CPMU_EEEMD_EEE_ENABLE;
8051
8052 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8053 val |= TG3_CPMU_EEEMD_SND_IDX_DET_EN;
8054
Joe Perches63c3a662011-04-26 08:12:10 +00008055 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsona386b902010-12-06 08:28:53 +00008056 val |= TG3_CPMU_EEEMD_APE_TX_DET_EN;
8057
8058 tw32_f(TG3_CPMU_EEE_MODE, val);
8059
8060 tw32_f(TG3_CPMU_EEE_DBTMR1,
8061 TG3_CPMU_DBTMR1_PCIEXIT_2047US |
8062 TG3_CPMU_DBTMR1_LNKIDLE_2047US);
8063
8064 tw32_f(TG3_CPMU_EEE_DBTMR2,
Matt Carlsond7f2ab22011-01-25 15:58:56 +00008065 TG3_CPMU_DBTMR2_APE_TX_2047US |
Matt Carlsona386b902010-12-06 08:28:53 +00008066 TG3_CPMU_DBTMR2_TXIDXEQ_2047US);
Matt Carlson699c0192010-12-06 08:28:51 +00008067 }
8068
Matt Carlson603f1172010-02-12 14:47:10 +00008069 if (reset_phy)
Michael Chand4d2c552006-03-20 17:47:20 -08008070 tg3_phy_reset(tp);
8071
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072 err = tg3_chip_reset(tp);
8073 if (err)
8074 return err;
8075
8076 tg3_write_sig_legacy(tp, RESET_KIND_INIT);
8077
Matt Carlsonbcb37f62008-11-03 16:52:09 -08008078 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008079 val = tr32(TG3_CPMU_CTRL);
8080 val &= ~(CPMU_CTRL_LINK_AWARE_MODE | CPMU_CTRL_LINK_IDLE_MODE);
8081 tw32(TG3_CPMU_CTRL, val);
Matt Carlson9acb9612007-11-12 21:10:06 -08008082
8083 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8084 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8085 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8086 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
8087
8088 val = tr32(TG3_CPMU_LNK_AWARE_PWRMD);
8089 val &= ~CPMU_LNK_AWARE_MACCLK_MASK;
8090 val |= CPMU_LNK_AWARE_MACCLK_6_25;
8091 tw32(TG3_CPMU_LNK_AWARE_PWRMD, val);
8092
8093 val = tr32(TG3_CPMU_HST_ACC);
8094 val &= ~CPMU_HST_ACC_MACCLK_MASK;
8095 val |= CPMU_HST_ACC_MACCLK_6_25;
8096 tw32(TG3_CPMU_HST_ACC, val);
Matt Carlsond30cdd22007-10-07 23:28:35 -07008097 }
8098
Matt Carlson33466d92009-04-20 06:57:41 +00008099 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
8100 val = tr32(PCIE_PWR_MGMT_THRESH) & ~PCIE_PWR_MGMT_L1_THRESH_MSK;
8101 val |= PCIE_PWR_MGMT_EXT_ASPM_TMR_EN |
8102 PCIE_PWR_MGMT_L1_THRESH_4MS;
8103 tw32(PCIE_PWR_MGMT_THRESH, val);
Matt Carlson521e6b92009-08-25 10:06:01 +00008104
8105 val = tr32(TG3_PCIE_EIDLE_DELAY) & ~TG3_PCIE_EIDLE_DELAY_MASK;
8106 tw32(TG3_PCIE_EIDLE_DELAY, val | TG3_PCIE_EIDLE_DELAY_13_CLKS);
8107
8108 tw32(TG3_CORR_ERR_STAT, TG3_CORR_ERR_STAT_CLEAR);
Matt Carlson33466d92009-04-20 06:57:41 +00008109
Matt Carlsonf40386c2009-11-02 14:24:02 +00008110 val = tr32(TG3_PCIE_LNKCTL) & ~TG3_PCIE_LNKCTL_L1_PLL_PD_EN;
8111 tw32(TG3_PCIE_LNKCTL, val | TG3_PCIE_LNKCTL_L1_PLL_PD_DIS);
Matt Carlson255ca312009-08-25 10:07:27 +00008112 }
8113
Joe Perches63c3a662011-04-26 08:12:10 +00008114 if (tg3_flag(tp, L1PLLPD_EN)) {
Matt Carlson614b0592010-01-20 16:58:02 +00008115 u32 grc_mode = tr32(GRC_MODE);
8116
8117 /* Access the lower 1K of PL PCIE block registers. */
8118 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8119 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
8120
8121 val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1);
8122 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL1,
8123 val | TG3_PCIE_PL_LO_PHYCTL1_L1PLLPD_EN);
8124
8125 tw32(GRC_MODE, grc_mode);
8126 }
8127
Matt Carlson5093eed2010-11-24 08:31:45 +00008128 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
8129 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) {
8130 u32 grc_mode = tr32(GRC_MODE);
Matt Carlsoncea46462010-04-12 06:58:24 +00008131
Matt Carlson5093eed2010-11-24 08:31:45 +00008132 /* Access the lower 1K of PL PCIE block registers. */
8133 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8134 tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL);
Matt Carlsoncea46462010-04-12 06:58:24 +00008135
Matt Carlson5093eed2010-11-24 08:31:45 +00008136 val = tr32(TG3_PCIE_TLDLPL_PORT +
8137 TG3_PCIE_PL_LO_PHYCTL5);
8138 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5,
8139 val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ);
Matt Carlsoncea46462010-04-12 06:58:24 +00008140
Matt Carlson5093eed2010-11-24 08:31:45 +00008141 tw32(GRC_MODE, grc_mode);
8142 }
Matt Carlsona977dbe2010-04-12 06:58:26 +00008143
Matt Carlson1ff30a52011-05-19 12:12:46 +00008144 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_57765_AX) {
8145 u32 grc_mode = tr32(GRC_MODE);
8146
8147 /* Access the lower 1K of DL PCIE block registers. */
8148 val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK;
8149 tw32(GRC_MODE, val | GRC_MODE_PCIE_DL_SEL);
8150
8151 val = tr32(TG3_PCIE_TLDLPL_PORT +
8152 TG3_PCIE_DL_LO_FTSMAX);
8153 val &= ~TG3_PCIE_DL_LO_FTSMAX_MSK;
8154 tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_DL_LO_FTSMAX,
8155 val | TG3_PCIE_DL_LO_FTSMAX_VAL);
8156
8157 tw32(GRC_MODE, grc_mode);
8158 }
8159
Matt Carlsona977dbe2010-04-12 06:58:26 +00008160 val = tr32(TG3_CPMU_LSPD_10MB_CLK);
8161 val &= ~CPMU_LSPD_10MB_MACCLK_MASK;
8162 val |= CPMU_LSPD_10MB_MACCLK_6_25;
8163 tw32(TG3_CPMU_LSPD_10MB_CLK, val);
Matt Carlsoncea46462010-04-12 06:58:24 +00008164 }
8165
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166 /* This works around an issue with Athlon chipsets on
8167 * B3 tigon3 silicon. This bit has no effect on any
8168 * other revision. But do not set this on PCI Express
Matt Carlson795d01c2007-10-07 23:28:17 -07008169 * chips and don't even touch the clocks if the CPMU is present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170 */
Joe Perches63c3a662011-04-26 08:12:10 +00008171 if (!tg3_flag(tp, CPMU_PRESENT)) {
8172 if (!tg3_flag(tp, PCI_EXPRESS))
Matt Carlson795d01c2007-10-07 23:28:17 -07008173 tp->pci_clock_ctrl |= CLOCK_CTRL_DELAY_PCI_GRANT;
8174 tw32_f(TG3PCI_CLOCK_CTRL, tp->pci_clock_ctrl);
8175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176
8177 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0 &&
Joe Perches63c3a662011-04-26 08:12:10 +00008178 tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179 val = tr32(TG3PCI_PCISTATE);
8180 val |= PCISTATE_RETRY_SAME_DMA;
8181 tw32(TG3PCI_PCISTATE, val);
8182 }
8183
Joe Perches63c3a662011-04-26 08:12:10 +00008184 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -07008185 /* Allow reads and writes to the
8186 * APE register and memory space.
8187 */
8188 val = tr32(TG3PCI_PCISTATE);
8189 val |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +00008190 PCISTATE_ALLOW_APE_SHMEM_WR |
8191 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -07008192 tw32(TG3PCI_PCISTATE, val);
8193 }
8194
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_BX) {
8196 /* Enable some hw fixes. */
8197 val = tr32(TG3PCI_MSI_DATA);
8198 val |= (1 << 26) | (1 << 28) | (1 << 29);
8199 tw32(TG3PCI_MSI_DATA, val);
8200 }
8201
8202 /* Descriptor ring init may make accesses to the
8203 * NIC SRAM area to setup the TX descriptors, so we
8204 * can only do this after the hardware has been
8205 * successfully reset.
8206 */
Michael Chan32d8c572006-07-25 16:38:29 -07008207 err = tg3_init_rings(tp);
8208 if (err)
8209 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210
Joe Perches63c3a662011-04-26 08:12:10 +00008211 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008212 val = tr32(TG3PCI_DMA_RW_CTRL) &
8213 ~DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
Matt Carlson1a319022010-04-12 06:58:25 +00008214 if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0)
8215 val &= ~DMA_RWCTRL_CRDRDR_RDMA_MRRS_MSK;
Matt Carlson0aebff42011-04-25 12:42:45 +00008216 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765 &&
8217 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717)
8218 val |= DMA_RWCTRL_TAGGED_STAT_WA;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +00008219 tw32(TG3PCI_DMA_RW_CTRL, val | tp->dma_rwctrl);
8220 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5784 &&
8221 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5761) {
Matt Carlsond30cdd22007-10-07 23:28:35 -07008222 /* This value is determined during the probe time DMA
8223 * engine test, tg3_test_dma.
8224 */
8225 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
8226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227
8228 tp->grc_mode &= ~(GRC_MODE_HOST_SENDBDS |
8229 GRC_MODE_4X_NIC_SEND_RINGS |
8230 GRC_MODE_NO_TX_PHDR_CSUM |
8231 GRC_MODE_NO_RX_PHDR_CSUM);
8232 tp->grc_mode |= GRC_MODE_HOST_SENDBDS;
Michael Chand2d746f2006-04-06 21:45:39 -07008233
8234 /* Pseudo-header checksum is done by hardware logic and not
8235 * the offload processers, so make the chip do the pseudo-
8236 * header checksums on receive. For transmit it is more
8237 * convenient to do the pseudo-header checksum in software
8238 * as Linux does that on transmit for us in all cases.
8239 */
8240 tp->grc_mode |= GRC_MODE_NO_TX_PHDR_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241
8242 tw32(GRC_MODE,
8243 tp->grc_mode |
8244 (GRC_MODE_IRQ_ON_MAC_ATTN | GRC_MODE_HOST_STACKUP));
8245
8246 /* Setup the timer prescalar register. Clock is always 66Mhz. */
8247 val = tr32(GRC_MISC_CFG);
8248 val &= ~0xff;
8249 val |= (65 << GRC_MISC_CFG_PRESCALAR_SHIFT);
8250 tw32(GRC_MISC_CFG, val);
8251
8252 /* Initialize MBUF/DESC pool. */
Joe Perches63c3a662011-04-26 08:12:10 +00008253 if (tg3_flag(tp, 5750_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254 /* Do nothing. */
8255 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) {
8256 tw32(BUFMGR_MB_POOL_ADDR, NIC_SRAM_MBUF_POOL_BASE);
8257 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
8258 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE64);
8259 else
8260 tw32(BUFMGR_MB_POOL_SIZE, NIC_SRAM_MBUF_POOL_SIZE96);
8261 tw32(BUFMGR_DMA_DESC_POOL_ADDR, NIC_SRAM_DMA_DESC_POOL_BASE);
8262 tw32(BUFMGR_DMA_DESC_POOL_SIZE, NIC_SRAM_DMA_DESC_POOL_SIZE);
Joe Perches63c3a662011-04-26 08:12:10 +00008263 } else if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264 int fw_len;
8265
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -08008266 fw_len = tp->fw_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267 fw_len = (fw_len + (0x80 - 1)) & ~(0x80 - 1);
8268 tw32(BUFMGR_MB_POOL_ADDR,
8269 NIC_SRAM_MBUF_POOL_BASE5705 + fw_len);
8270 tw32(BUFMGR_MB_POOL_SIZE,
8271 NIC_SRAM_MBUF_POOL_SIZE5705 - fw_len - 0xa00);
8272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273
Michael Chan0f893dc2005-07-25 12:30:38 -07008274 if (tp->dev->mtu <= ETH_DATA_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8276 tp->bufmgr_config.mbuf_read_dma_low_water);
8277 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8278 tp->bufmgr_config.mbuf_mac_rx_low_water);
8279 tw32(BUFMGR_MB_HIGH_WATER,
8280 tp->bufmgr_config.mbuf_high_water);
8281 } else {
8282 tw32(BUFMGR_MB_RDMA_LOW_WATER,
8283 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo);
8284 tw32(BUFMGR_MB_MACRX_LOW_WATER,
8285 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo);
8286 tw32(BUFMGR_MB_HIGH_WATER,
8287 tp->bufmgr_config.mbuf_high_water_jumbo);
8288 }
8289 tw32(BUFMGR_DMA_LOW_WATER,
8290 tp->bufmgr_config.dma_low_water);
8291 tw32(BUFMGR_DMA_HIGH_WATER,
8292 tp->bufmgr_config.dma_high_water);
8293
Matt Carlsond309a462010-09-30 10:34:31 +00008294 val = BUFMGR_MODE_ENABLE | BUFMGR_MODE_ATTN_ENABLE;
8295 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
8296 val |= BUFMGR_MODE_NO_TX_UNDERRUN;
Matt Carlson4d958472011-04-20 07:57:35 +00008297 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8298 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
8299 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0)
8300 val |= BUFMGR_MODE_MBLOW_ATTN_ENAB;
Matt Carlsond309a462010-09-30 10:34:31 +00008301 tw32(BUFMGR_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008302 for (i = 0; i < 2000; i++) {
8303 if (tr32(BUFMGR_MODE) & BUFMGR_MODE_ENABLE)
8304 break;
8305 udelay(10);
8306 }
8307 if (i >= 2000) {
Joe Perches05dbe002010-02-17 19:44:19 +00008308 netdev_err(tp->dev, "%s cannot enable BUFMGR\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309 return -ENODEV;
8310 }
8311
Matt Carlsoneb07a942011-04-20 07:57:36 +00008312 if (tp->pci_chip_rev_id == CHIPREV_ID_5906_A1)
8313 tw32(ISO_PKT_TX, (tr32(ISO_PKT_TX) & ~0x3) | 0x2);
Michael Chanb5d37722006-09-27 16:06:21 -07008314
Matt Carlsoneb07a942011-04-20 07:57:36 +00008315 tg3_setup_rxbd_thresholds(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316
8317 /* Initialize TG3_BDINFO's at:
8318 * RCVDBDI_STD_BD: standard eth size rx ring
8319 * RCVDBDI_JUMBO_BD: jumbo frame rx ring
8320 * RCVDBDI_MINI_BD: small frame rx ring (??? does not work)
8321 *
8322 * like so:
8323 * TG3_BDINFO_HOST_ADDR: high/low parts of DMA address of ring
8324 * TG3_BDINFO_MAXLEN_FLAGS: (rx max buffer size << 16) |
8325 * ring attribute flags
8326 * TG3_BDINFO_NIC_ADDR: location of descriptors in nic SRAM
8327 *
8328 * Standard receive ring @ NIC_SRAM_RX_BUFFER_DESC, 512 entries.
8329 * Jumbo receive ring @ NIC_SRAM_RX_JUMBO_BUFFER_DESC, 256 entries.
8330 *
8331 * The size of each ring is fixed in the firmware, but the location is
8332 * configurable.
8333 */
8334 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008335 ((u64) tpr->rx_std_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336 tw32(RCVDBDI_STD_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008337 ((u64) tpr->rx_std_mapping & 0xffffffff));
Joe Perches63c3a662011-04-26 08:12:10 +00008338 if (!tg3_flag(tp, 5717_PLUS))
Matt Carlson87668d32009-11-13 13:03:34 +00008339 tw32(RCVDBDI_STD_BD + TG3_BDINFO_NIC_ADDR,
8340 NIC_SRAM_RX_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008341
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008342 /* Disable the mini ring */
Joe Perches63c3a662011-04-26 08:12:10 +00008343 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344 tw32(RCVDBDI_MINI_BD + TG3_BDINFO_MAXLEN_FLAGS,
8345 BDINFO_FLAGS_DISABLED);
8346
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008347 /* Program the jumbo buffer descriptor ring control
8348 * blocks on those devices that have them.
8349 */
Matt Carlsonbb18bb92011-03-09 16:58:19 +00008350 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008351 (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008352
Joe Perches63c3a662011-04-26 08:12:10 +00008353 if (tg3_flag(tp, JUMBO_RING_ENABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_HIGH,
Matt Carlson21f581a2009-08-28 14:00:25 +00008355 ((u64) tpr->rx_jmb_mapping >> 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07008356 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_HOST_ADDR + TG3_64BIT_REG_LOW,
Matt Carlson21f581a2009-08-28 14:00:25 +00008357 ((u64) tpr->rx_jmb_mapping & 0xffffffff));
Matt Carlsonde9f5232011-04-05 14:22:43 +00008358 val = TG3_RX_JMB_RING_SIZE(tp) <<
8359 BDINFO_FLAGS_MAXLEN_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
Matt Carlsonde9f5232011-04-05 14:22:43 +00008361 val | BDINFO_FLAGS_USE_EXT_RECV);
Joe Perches63c3a662011-04-26 08:12:10 +00008362 if (!tg3_flag(tp, USE_JUMBO_BDFLAG) ||
Matt Carlsona50d0792010-06-05 17:24:37 +00008363 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson87668d32009-11-13 13:03:34 +00008364 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_NIC_ADDR,
8365 NIC_SRAM_RX_JUMBO_BUFFER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366 } else {
8367 tw32(RCVDBDI_JUMBO_BD + TG3_BDINFO_MAXLEN_FLAGS,
8368 BDINFO_FLAGS_DISABLED);
8369 }
8370
Joe Perches63c3a662011-04-26 08:12:10 +00008371 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008372 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlsonde9f5232011-04-05 14:22:43 +00008373 val = TG3_RX_STD_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008374 else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008375 val = TG3_RX_STD_MAX_SIZE_5717;
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008376 val <<= BDINFO_FLAGS_MAXLEN_SHIFT;
8377 val |= (TG3_RX_STD_DMA_SZ << 2);
8378 } else
Matt Carlson04380d42010-04-12 06:58:29 +00008379 val = TG3_RX_STD_DMA_SZ << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008380 } else
Matt Carlsonde9f5232011-04-05 14:22:43 +00008381 val = TG3_RX_STD_MAX_SIZE_5700 << BDINFO_FLAGS_MAXLEN_SHIFT;
Matt Carlsonfdb72b32009-08-28 13:57:12 +00008382
8383 tw32(RCVDBDI_STD_BD + TG3_BDINFO_MAXLEN_FLAGS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384
Matt Carlson411da642009-11-13 13:03:46 +00008385 tpr->rx_std_prod_idx = tp->rx_pending;
Matt Carlson66711e62009-11-13 13:03:49 +00008386 tw32_rx_mbox(TG3_RX_STD_PROD_IDX_REG, tpr->rx_std_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387
Joe Perches63c3a662011-04-26 08:12:10 +00008388 tpr->rx_jmb_prod_idx =
8389 tg3_flag(tp, JUMBO_RING_ENABLE) ? tp->rx_jumbo_pending : 0;
Matt Carlson66711e62009-11-13 13:03:49 +00008390 tw32_rx_mbox(TG3_RX_JMB_PROD_IDX_REG, tpr->rx_jmb_prod_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008391
Matt Carlson2d31eca2009-09-01 12:53:31 +00008392 tg3_rings_reset(tp);
8393
Linus Torvalds1da177e2005-04-16 15:20:36 -07008394 /* Initialize MAC address and backoff seed. */
Michael Chan986e0ae2007-05-05 12:10:20 -07008395 __tg3_set_mac_addr(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396
8397 /* MTU + ethernet header + FCS + optional VLAN tag */
Matt Carlsonf7b493e2009-02-25 14:21:52 +00008398 tw32(MAC_RX_MTU_SIZE,
8399 tp->dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400
8401 /* The slot time is changed by tg3_setup_phy if we
8402 * run at gigabit with half duplex.
8403 */
Matt Carlsonf2096f92011-04-05 14:22:48 +00008404 val = (2 << TX_LENGTHS_IPG_CRS_SHIFT) |
8405 (6 << TX_LENGTHS_IPG_SHIFT) |
8406 (32 << TX_LENGTHS_SLOT_TIME_SHIFT);
8407
8408 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8409 val |= tr32(MAC_TX_LENGTHS) &
8410 (TX_LENGTHS_JMB_FRM_LEN_MSK |
8411 TX_LENGTHS_CNT_DWN_VAL_MSK);
8412
8413 tw32(MAC_TX_LENGTHS, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414
8415 /* Receive rules. */
8416 tw32(MAC_RCV_RULE_CFG, RCV_RULE_CFG_DEFAULT_CLASS);
8417 tw32(RCVLPC_CONFIG, 0x0181);
8418
8419 /* Calculate RDMAC_MODE setting early, we need it to determine
8420 * the RCVLPC_STATE_ENABLE mask.
8421 */
8422 rdmac_mode = (RDMAC_MODE_ENABLE | RDMAC_MODE_TGTABORT_ENAB |
8423 RDMAC_MODE_MSTABORT_ENAB | RDMAC_MODE_PARITYERR_ENAB |
8424 RDMAC_MODE_ADDROFLOW_ENAB | RDMAC_MODE_FIFOOFLOW_ENAB |
8425 RDMAC_MODE_FIFOURUN_ENAB | RDMAC_MODE_FIFOOREAD_ENAB |
8426 RDMAC_MODE_LNGREAD_ENAB);
Michael Chan85e94ce2005-04-21 17:05:28 -07008427
Matt Carlsondeabaac2010-11-24 08:31:50 +00008428 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717)
Matt Carlson0339e4e2010-02-12 14:47:09 +00008429 rdmac_mode |= RDMAC_MODE_MULT_DMA_RD_DIS;
8430
Matt Carlson57e69832008-05-25 23:48:31 -07008431 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -08008432 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8433 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlsond30cdd22007-10-07 23:28:35 -07008434 rdmac_mode |= RDMAC_MODE_BD_SBD_CRPT_ENAB |
8435 RDMAC_MODE_MBUF_RBD_CRPT_ENAB |
8436 RDMAC_MODE_MBUF_SBD_CRPT_ENAB;
8437
Matt Carlsonc5908932011-03-09 16:58:25 +00008438 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8439 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008440 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonc13e3712007-05-05 11:50:04 -07008441 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442 rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
8443 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008444 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8446 }
8447 }
8448
Joe Perches63c3a662011-04-26 08:12:10 +00008449 if (tg3_flag(tp, PCI_EXPRESS))
Michael Chan85e94ce2005-04-21 17:05:28 -07008450 rdmac_mode |= RDMAC_MODE_FIFO_LONG_BURST;
8451
Joe Perches63c3a662011-04-26 08:12:10 +00008452 if (tg3_flag(tp, HW_TSO_1) ||
8453 tg3_flag(tp, HW_TSO_2) ||
8454 tg3_flag(tp, HW_TSO_3))
Matt Carlson027455a2008-12-21 20:19:30 -08008455 rdmac_mode |= RDMAC_MODE_IPV4_LSO_EN;
8456
Matt Carlson108a6c12011-05-19 12:12:47 +00008457 if (tg3_flag(tp, 57765_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +00008458 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlson027455a2008-12-21 20:19:30 -08008459 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
8460 rdmac_mode |= RDMAC_MODE_IPV6_LSO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008461
Matt Carlsonf2096f92011-04-05 14:22:48 +00008462 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
8463 rdmac_mode |= tr32(RDMAC_MODE) & RDMAC_MODE_H2BNC_VLAN_DET;
8464
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008465 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
8466 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
8467 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
8468 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +00008469 tg3_flag(tp, 57765_PLUS)) {
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008470 val = tr32(TG3_RDMA_RSRVCTRL_REG);
Matt Carlsond78b59f2011-04-05 14:22:46 +00008471 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8472 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsonb4495ed2011-01-25 15:58:47 +00008473 val &= ~(TG3_RDMA_RSRVCTRL_TXMRGN_MASK |
8474 TG3_RDMA_RSRVCTRL_FIFO_LWM_MASK |
8475 TG3_RDMA_RSRVCTRL_FIFO_HWM_MASK);
8476 val |= TG3_RDMA_RSRVCTRL_TXMRGN_320B |
8477 TG3_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
8478 TG3_RDMA_RSRVCTRL_FIFO_HWM_1_5K;
Matt Carlsonb75cc0e2010-11-24 08:31:46 +00008479 }
Matt Carlson41a8a7e2010-09-15 08:59:53 +00008480 tw32(TG3_RDMA_RSRVCTRL_REG,
8481 val | TG3_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
8482 }
8483
Matt Carlsond78b59f2011-04-05 14:22:46 +00008484 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
8485 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Matt Carlsond309a462010-09-30 10:34:31 +00008486 val = tr32(TG3_LSO_RD_DMA_CRPTEN_CTRL);
8487 tw32(TG3_LSO_RD_DMA_CRPTEN_CTRL, val |
8488 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_BD_4K |
8489 TG3_LSO_RD_DMA_CRPTEN_CTRL_BLEN_LSO_4K);
8490 }
8491
Linus Torvalds1da177e2005-04-16 15:20:36 -07008492 /* Receive/send statistics. */
Joe Perches63c3a662011-04-26 08:12:10 +00008493 if (tg3_flag(tp, 5750_PLUS)) {
Michael Chan16613942006-06-29 20:15:13 -07008494 val = tr32(RCVLPC_STATS_ENABLE);
8495 val &= ~RCVLPC_STATSENAB_DACK_FIX;
8496 tw32(RCVLPC_STATS_ENABLE, val);
8497 } else if ((rdmac_mode & RDMAC_MODE_FIFO_SIZE_128) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008498 tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008499 val = tr32(RCVLPC_STATS_ENABLE);
8500 val &= ~RCVLPC_STATSENAB_LNGBRST_RFIX;
8501 tw32(RCVLPC_STATS_ENABLE, val);
8502 } else {
8503 tw32(RCVLPC_STATS_ENABLE, 0xffffff);
8504 }
8505 tw32(RCVLPC_STATSCTRL, RCVLPC_STATSCTRL_ENABLE);
8506 tw32(SNDDATAI_STATSENAB, 0xffffff);
8507 tw32(SNDDATAI_STATSCTRL,
8508 (SNDDATAI_SCTRL_ENABLE |
8509 SNDDATAI_SCTRL_FASTUPD));
8510
8511 /* Setup host coalescing engine. */
8512 tw32(HOSTCC_MODE, 0);
8513 for (i = 0; i < 2000; i++) {
8514 if (!(tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE))
8515 break;
8516 udelay(10);
8517 }
8518
Michael Chand244c892005-07-05 14:42:33 -07008519 __tg3_set_coalesce(tp, &tp->coal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520
Joe Perches63c3a662011-04-26 08:12:10 +00008521 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008522 /* Status/statistics block address. See tg3_timer,
8523 * the tg3_periodic_fetch_stats call there, and
8524 * tg3_get_stats to see how this works for 5705/5750 chips.
8525 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008526 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_HIGH,
8527 ((u64) tp->stats_mapping >> 32));
8528 tw32(HOSTCC_STATS_BLK_HOST_ADDR + TG3_64BIT_REG_LOW,
8529 ((u64) tp->stats_mapping & 0xffffffff));
8530 tw32(HOSTCC_STATS_BLK_NIC_ADDR, NIC_SRAM_STATS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008531
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532 tw32(HOSTCC_STATUS_BLK_NIC_ADDR, NIC_SRAM_STATUS_BLK);
Matt Carlson2d31eca2009-09-01 12:53:31 +00008533
8534 /* Clear statistics and status block memory areas */
8535 for (i = NIC_SRAM_STATS_BLK;
8536 i < NIC_SRAM_STATUS_BLK + TG3_HW_STATUS_SIZE;
8537 i += sizeof(u32)) {
8538 tg3_write_mem(tp, i, 0);
8539 udelay(40);
8540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541 }
8542
8543 tw32(HOSTCC_MODE, HOSTCC_MODE_ENABLE | tp->coalesce_mode);
8544
8545 tw32(RCVCC_MODE, RCVCC_MODE_ENABLE | RCVCC_MODE_ATTN_ENABLE);
8546 tw32(RCVLPC_MODE, RCVLPC_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008547 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548 tw32(RCVLSC_MODE, RCVLSC_MODE_ENABLE | RCVLSC_MODE_ATTN_ENABLE);
8549
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008550 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
8551 tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;
Michael Chanc94e3942005-09-27 12:12:42 -07008552 /* reset to prevent losing 1st rx packet intermittently */
8553 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8554 udelay(10);
8555 }
8556
Matt Carlson3bda1252008-08-15 14:08:22 -07008557 tp->mac_mode |= MAC_MODE_TXSTAT_ENABLE | MAC_MODE_RXSTAT_ENABLE |
Matt Carlson9e975cc2011-07-20 10:20:50 +00008558 MAC_MODE_TDE_ENABLE | MAC_MODE_RDE_ENABLE |
8559 MAC_MODE_FHDE_ENABLE;
8560 if (tg3_flag(tp, ENABLE_APE))
8561 tp->mac_mode |= MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Joe Perches63c3a662011-04-26 08:12:10 +00008562 if (!tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008563 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Matt Carlsone8f3f6c2007-07-11 19:47:55 -07008564 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
8565 tp->mac_mode |= MAC_MODE_LINK_POLARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008566 tw32_f(MAC_MODE, tp->mac_mode | MAC_MODE_RXSTAT_CLEAR | MAC_MODE_TXSTAT_CLEAR);
8567 udelay(40);
8568
Michael Chan314fba32005-04-21 17:07:04 -07008569 /* tp->grc_local_ctrl is partially set up during tg3_get_invariants().
Joe Perches63c3a662011-04-26 08:12:10 +00008570 * If TG3_FLAG_IS_NIC is zero, we should read the
Michael Chan314fba32005-04-21 17:07:04 -07008571 * register to preserve the GPIO settings for LOMs. The GPIOs,
8572 * whether used as inputs or outputs, are set by boot code after
8573 * reset.
8574 */
Joe Perches63c3a662011-04-26 08:12:10 +00008575 if (!tg3_flag(tp, IS_NIC)) {
Michael Chan314fba32005-04-21 17:07:04 -07008576 u32 gpio_mask;
8577
Michael Chan9d26e212006-12-07 00:21:14 -08008578 gpio_mask = GRC_LCLCTRL_GPIO_OE0 | GRC_LCLCTRL_GPIO_OE1 |
8579 GRC_LCLCTRL_GPIO_OE2 | GRC_LCLCTRL_GPIO_OUTPUT0 |
8580 GRC_LCLCTRL_GPIO_OUTPUT1 | GRC_LCLCTRL_GPIO_OUTPUT2;
Michael Chan3e7d83b2005-04-21 17:10:36 -07008581
8582 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
8583 gpio_mask |= GRC_LCLCTRL_GPIO_OE3 |
8584 GRC_LCLCTRL_GPIO_OUTPUT3;
8585
Michael Chanaf36e6b2006-03-23 01:28:06 -08008586 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
8587 gpio_mask |= GRC_LCLCTRL_GPIO_UART_SEL;
8588
Gary Zambranoaaf84462007-05-05 11:51:45 -07008589 tp->grc_local_ctrl &= ~gpio_mask;
Michael Chan314fba32005-04-21 17:07:04 -07008590 tp->grc_local_ctrl |= tr32(GRC_LOCAL_CTRL) & gpio_mask;
8591
8592 /* GPIO1 must be driven high for eeprom write protect */
Joe Perches63c3a662011-04-26 08:12:10 +00008593 if (tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan9d26e212006-12-07 00:21:14 -08008594 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
8595 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan314fba32005-04-21 17:07:04 -07008596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8598 udelay(100);
8599
Joe Perches63c3a662011-04-26 08:12:10 +00008600 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008601 val = tr32(MSGINT_MODE);
8602 val |= MSGINT_MODE_MULTIVEC_EN | MSGINT_MODE_ENABLE;
8603 tw32(MSGINT_MODE, val);
8604 }
8605
Joe Perches63c3a662011-04-26 08:12:10 +00008606 if (!tg3_flag(tp, 5705_PLUS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607 tw32_f(DMAC_MODE, DMAC_MODE_ENABLE);
8608 udelay(40);
8609 }
8610
8611 val = (WDMAC_MODE_ENABLE | WDMAC_MODE_TGTABORT_ENAB |
8612 WDMAC_MODE_MSTABORT_ENAB | WDMAC_MODE_PARITYERR_ENAB |
8613 WDMAC_MODE_ADDROFLOW_ENAB | WDMAC_MODE_FIFOOFLOW_ENAB |
8614 WDMAC_MODE_FIFOURUN_ENAB | WDMAC_MODE_FIFOOREAD_ENAB |
8615 WDMAC_MODE_LNGREAD_ENAB);
8616
Matt Carlsonc5908932011-03-09 16:58:25 +00008617 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
8618 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +00008619 if (tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07008620 (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 ||
8621 tp->pci_chip_rev_id == CHIPREV_ID_5705_A2)) {
8622 /* nothing */
8623 } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
Joe Perches63c3a662011-04-26 08:12:10 +00008624 !tg3_flag(tp, IS_5788)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008625 val |= WDMAC_MODE_RX_ACCEL;
8626 }
8627 }
8628
Michael Chand9ab5ad12006-03-20 22:27:35 -08008629 /* Enable host coalescing bug fix */
Joe Perches63c3a662011-04-26 08:12:10 +00008630 if (tg3_flag(tp, 5755_PLUS))
Matt Carlsonf51f3562008-05-25 23:45:08 -07008631 val |= WDMAC_MODE_STATUS_TAG_FIX;
Michael Chand9ab5ad12006-03-20 22:27:35 -08008632
Matt Carlson788a0352009-11-02 14:26:03 +00008633 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
8634 val |= WDMAC_MODE_BURST_ALL_DATA;
8635
Linus Torvalds1da177e2005-04-16 15:20:36 -07008636 tw32_f(WDMAC_MODE, val);
8637 udelay(40);
8638
Joe Perches63c3a662011-04-26 08:12:10 +00008639 if (tg3_flag(tp, PCIX_MODE)) {
Matt Carlson9974a352007-10-07 23:27:28 -07008640 u16 pcix_cmd;
8641
8642 pci_read_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8643 &pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008644 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703) {
Matt Carlson9974a352007-10-07 23:27:28 -07008645 pcix_cmd &= ~PCI_X_CMD_MAX_READ;
8646 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008647 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
Matt Carlson9974a352007-10-07 23:27:28 -07008648 pcix_cmd &= ~(PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ);
8649 pcix_cmd |= PCI_X_CMD_READ_2K;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650 }
Matt Carlson9974a352007-10-07 23:27:28 -07008651 pci_write_config_word(tp->pdev, tp->pcix_cap + PCI_X_CMD,
8652 pcix_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653 }
8654
8655 tw32_f(RDMAC_MODE, rdmac_mode);
8656 udelay(40);
8657
8658 tw32(RCVDCC_MODE, RCVDCC_MODE_ENABLE | RCVDCC_MODE_ATTN_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008659 if (!tg3_flag(tp, 5705_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008660 tw32(MBFREE_MODE, MBFREE_MODE_ENABLE);
Matt Carlson9936bcf2007-10-10 18:03:07 -07008661
8662 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
8663 tw32(SNDDATAC_MODE,
8664 SNDDATAC_MODE_ENABLE | SNDDATAC_MODE_CDELAY);
8665 else
8666 tw32(SNDDATAC_MODE, SNDDATAC_MODE_ENABLE);
8667
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668 tw32(SNDBDC_MODE, SNDBDC_MODE_ENABLE | SNDBDC_MODE_ATTN_ENABLE);
8669 tw32(RCVBDI_MODE, RCVBDI_MODE_ENABLE | RCVBDI_MODE_RCB_ATTN_ENAB);
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008670 val = RCVDBDI_MODE_ENABLE | RCVDBDI_MODE_INV_RING_SZ;
Joe Perches63c3a662011-04-26 08:12:10 +00008671 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlson7cb32cf2010-09-30 10:34:36 +00008672 val |= RCVDBDI_MODE_LRG_RING_SZ;
8673 tw32(RCVDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE);
Joe Perches63c3a662011-04-26 08:12:10 +00008675 if (tg3_flag(tp, HW_TSO_1) ||
8676 tg3_flag(tp, HW_TSO_2) ||
8677 tg3_flag(tp, HW_TSO_3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008678 tw32(SNDDATAI_MODE, SNDDATAI_MODE_ENABLE | 0x8);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008679 val = SNDBDI_MODE_ENABLE | SNDBDI_MODE_ATTN_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008680 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008681 val |= SNDBDI_MODE_MULTI_TXQ_EN;
8682 tw32(SNDBDI_MODE, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008683 tw32(SNDBDS_MODE, SNDBDS_MODE_ENABLE | SNDBDS_MODE_ATTN_ENABLE);
8684
8685 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
8686 err = tg3_load_5701_a0_firmware_fix(tp);
8687 if (err)
8688 return err;
8689 }
8690
Joe Perches63c3a662011-04-26 08:12:10 +00008691 if (tg3_flag(tp, TSO_CAPABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008692 err = tg3_load_tso_firmware(tp);
8693 if (err)
8694 return err;
8695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008696
8697 tp->tx_mode = TX_MODE_ENABLE;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008698
Joe Perches63c3a662011-04-26 08:12:10 +00008699 if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsonb1d05212010-06-05 17:24:31 +00008700 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
8701 tp->tx_mode |= TX_MODE_MBUF_LOCKUP_FIX;
Matt Carlsonf2096f92011-04-05 14:22:48 +00008702
8703 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
8704 val = TX_MODE_JMB_FRM_LEN | TX_MODE_CNT_DN_MODE;
8705 tp->tx_mode &= ~val;
8706 tp->tx_mode |= tr32(MAC_TX_MODE) & val;
8707 }
8708
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709 tw32_f(MAC_TX_MODE, tp->tx_mode);
8710 udelay(100);
8711
Joe Perches63c3a662011-04-26 08:12:10 +00008712 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008713 u32 reg = MAC_RSS_INDIR_TBL_0;
8714 u8 *ent = (u8 *)&val;
8715
8716 /* Setup the indirection table */
8717 for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
8718 int idx = i % sizeof(val);
8719
Matt Carlson5efeeea2010-07-11 09:31:40 +00008720 ent[idx] = i % (tp->irq_cnt - 1);
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008721 if (idx == sizeof(val) - 1) {
8722 tw32(reg, val);
8723 reg += 4;
8724 }
8725 }
8726
8727 /* Setup the "secret" hash key. */
8728 tw32(MAC_RSS_HASH_KEY_0, 0x5f865437);
8729 tw32(MAC_RSS_HASH_KEY_1, 0xe4ac62cc);
8730 tw32(MAC_RSS_HASH_KEY_2, 0x50103a45);
8731 tw32(MAC_RSS_HASH_KEY_3, 0x36621985);
8732 tw32(MAC_RSS_HASH_KEY_4, 0xbf14c0e8);
8733 tw32(MAC_RSS_HASH_KEY_5, 0x1bc27a1e);
8734 tw32(MAC_RSS_HASH_KEY_6, 0x84f4b556);
8735 tw32(MAC_RSS_HASH_KEY_7, 0x094ea6fe);
8736 tw32(MAC_RSS_HASH_KEY_8, 0x7dda01e7);
8737 tw32(MAC_RSS_HASH_KEY_9, 0xc04d7481);
8738 }
8739
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740 tp->rx_mode = RX_MODE_ENABLE;
Joe Perches63c3a662011-04-26 08:12:10 +00008741 if (tg3_flag(tp, 5755_PLUS))
Michael Chanaf36e6b2006-03-23 01:28:06 -08008742 tp->rx_mode |= RX_MODE_IPV6_CSUM_ENABLE;
8743
Joe Perches63c3a662011-04-26 08:12:10 +00008744 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlsonbaf8a942009-09-01 13:13:00 +00008745 tp->rx_mode |= RX_MODE_RSS_ENABLE |
8746 RX_MODE_RSS_ITBL_HASH_BITS_7 |
8747 RX_MODE_RSS_IPV6_HASH_EN |
8748 RX_MODE_RSS_TCP_IPV6_HASH_EN |
8749 RX_MODE_RSS_IPV4_HASH_EN |
8750 RX_MODE_RSS_TCP_IPV4_HASH_EN;
8751
Linus Torvalds1da177e2005-04-16 15:20:36 -07008752 tw32_f(MAC_RX_MODE, tp->rx_mode);
8753 udelay(10);
8754
Linus Torvalds1da177e2005-04-16 15:20:36 -07008755 tw32(MAC_LED_CTRL, tp->led_ctrl);
8756
8757 tw32(MAC_MI_STAT, MAC_MI_STAT_LNKSTAT_ATTN_ENAB);
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008758 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008759 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
8760 udelay(10);
8761 }
8762 tw32_f(MAC_RX_MODE, tp->rx_mode);
8763 udelay(10);
8764
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008765 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008766 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008767 !(tp->phy_flags & TG3_PHYFLG_SERDES_PREEMPHASIS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008768 /* Set drive transmission level to 1.2V */
8769 /* only if the signal pre-emphasis bit is not set */
8770 val = tr32(MAC_SERDES_CFG);
8771 val &= 0xfffff000;
8772 val |= 0x880;
8773 tw32(MAC_SERDES_CFG, val);
8774 }
8775 if (tp->pci_chip_rev_id == CHIPREV_ID_5703_A1)
8776 tw32(MAC_SERDES_CFG, 0x616000);
8777 }
8778
8779 /* Prevent chip from dropping frames when flow control
8780 * is enabled.
8781 */
Matt Carlson666bc832010-01-20 16:58:03 +00008782 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8783 val = 1;
8784 else
8785 val = 2;
8786 tw32_f(MAC_LOW_WMARK_MAX_RX_FRAME, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008787
8788 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008789 (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008790 /* Use hardware link auto-negotiation */
Joe Perches63c3a662011-04-26 08:12:10 +00008791 tg3_flag_set(tp, HW_AUTONEG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008792 }
8793
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008794 if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +00008795 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Michael Chand4d2c552006-03-20 17:47:20 -08008796 u32 tmp;
8797
8798 tmp = tr32(SERDES_RX_CTRL);
8799 tw32(SERDES_RX_CTRL, tmp | SERDES_RX_SIG_DETECT);
8800 tp->grc_local_ctrl &= ~GRC_LCLCTRL_USE_EXT_SIG_DETECT;
8801 tp->grc_local_ctrl |= GRC_LCLCTRL_USE_SIG_DETECT;
8802 tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
8803 }
8804
Joe Perches63c3a662011-04-26 08:12:10 +00008805 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson80096062010-08-02 11:26:06 +00008806 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) {
8807 tp->phy_flags &= ~TG3_PHYFLG_IS_LOW_POWER;
Matt Carlsondd477002008-05-25 23:45:58 -07008808 tp->link_config.speed = tp->link_config.orig_speed;
8809 tp->link_config.duplex = tp->link_config.orig_duplex;
8810 tp->link_config.autoneg = tp->link_config.orig_autoneg;
8811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008812
Matt Carlsondd477002008-05-25 23:45:58 -07008813 err = tg3_setup_phy(tp, 0);
8814 if (err)
8815 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008816
Matt Carlsonf07e9af2010-08-02 11:26:07 +00008817 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
8818 !(tp->phy_flags & TG3_PHYFLG_IS_FET)) {
Matt Carlsondd477002008-05-25 23:45:58 -07008819 u32 tmp;
8820
8821 /* Clear CRC stats. */
8822 if (!tg3_readphy(tp, MII_TG3_TEST1, &tmp)) {
8823 tg3_writephy(tp, MII_TG3_TEST1,
8824 tmp | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00008825 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &tmp);
Matt Carlsondd477002008-05-25 23:45:58 -07008826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008827 }
8828 }
8829
8830 __tg3_set_rx_mode(tp->dev);
8831
8832 /* Initialize receive rules. */
8833 tw32(MAC_RCV_RULE_0, 0xc2000000 & RCV_RULE_DISABLE_MASK);
8834 tw32(MAC_RCV_VALUE_0, 0xffffffff & RCV_RULE_DISABLE_MASK);
8835 tw32(MAC_RCV_RULE_1, 0x86000004 & RCV_RULE_DISABLE_MASK);
8836 tw32(MAC_RCV_VALUE_1, 0xffffffff & RCV_RULE_DISABLE_MASK);
8837
Joe Perches63c3a662011-04-26 08:12:10 +00008838 if (tg3_flag(tp, 5705_PLUS) && !tg3_flag(tp, 5780_CLASS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839 limit = 8;
8840 else
8841 limit = 16;
Joe Perches63c3a662011-04-26 08:12:10 +00008842 if (tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008843 limit -= 4;
8844 switch (limit) {
8845 case 16:
8846 tw32(MAC_RCV_RULE_15, 0); tw32(MAC_RCV_VALUE_15, 0);
8847 case 15:
8848 tw32(MAC_RCV_RULE_14, 0); tw32(MAC_RCV_VALUE_14, 0);
8849 case 14:
8850 tw32(MAC_RCV_RULE_13, 0); tw32(MAC_RCV_VALUE_13, 0);
8851 case 13:
8852 tw32(MAC_RCV_RULE_12, 0); tw32(MAC_RCV_VALUE_12, 0);
8853 case 12:
8854 tw32(MAC_RCV_RULE_11, 0); tw32(MAC_RCV_VALUE_11, 0);
8855 case 11:
8856 tw32(MAC_RCV_RULE_10, 0); tw32(MAC_RCV_VALUE_10, 0);
8857 case 10:
8858 tw32(MAC_RCV_RULE_9, 0); tw32(MAC_RCV_VALUE_9, 0);
8859 case 9:
8860 tw32(MAC_RCV_RULE_8, 0); tw32(MAC_RCV_VALUE_8, 0);
8861 case 8:
8862 tw32(MAC_RCV_RULE_7, 0); tw32(MAC_RCV_VALUE_7, 0);
8863 case 7:
8864 tw32(MAC_RCV_RULE_6, 0); tw32(MAC_RCV_VALUE_6, 0);
8865 case 6:
8866 tw32(MAC_RCV_RULE_5, 0); tw32(MAC_RCV_VALUE_5, 0);
8867 case 5:
8868 tw32(MAC_RCV_RULE_4, 0); tw32(MAC_RCV_VALUE_4, 0);
8869 case 4:
8870 /* tw32(MAC_RCV_RULE_3, 0); tw32(MAC_RCV_VALUE_3, 0); */
8871 case 3:
8872 /* tw32(MAC_RCV_RULE_2, 0); tw32(MAC_RCV_VALUE_2, 0); */
8873 case 2:
8874 case 1:
8875
8876 default:
8877 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -07008878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879
Joe Perches63c3a662011-04-26 08:12:10 +00008880 if (tg3_flag(tp, ENABLE_APE))
Matt Carlson9ce768e2007-10-11 19:49:11 -07008881 /* Write our heartbeat update interval to APE. */
8882 tg3_ape_write32(tp, TG3_APE_HOST_HEARTBEAT_INT_MS,
8883 APE_HOST_HEARTBEAT_INT_DISABLE);
Matt Carlson0d3031d2007-10-10 18:02:43 -07008884
Linus Torvalds1da177e2005-04-16 15:20:36 -07008885 tg3_write_sig_post_reset(tp, RESET_KIND_INIT);
8886
Linus Torvalds1da177e2005-04-16 15:20:36 -07008887 return 0;
8888}
8889
8890/* Called at device open time to get the chip ready for
8891 * packet processing. Invoked with tp->lock held.
8892 */
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07008893static int tg3_init_hw(struct tg3 *tp, int reset_phy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008894{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008895 tg3_switch_clocks(tp);
8896
8897 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
8898
Matt Carlson2f751b62008-08-04 23:17:34 -07008899 return tg3_reset_hw(tp, reset_phy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900}
8901
8902#define TG3_STAT_ADD32(PSTAT, REG) \
8903do { u32 __val = tr32(REG); \
8904 (PSTAT)->low += __val; \
8905 if ((PSTAT)->low < __val) \
8906 (PSTAT)->high += 1; \
8907} while (0)
8908
8909static void tg3_periodic_fetch_stats(struct tg3 *tp)
8910{
8911 struct tg3_hw_stats *sp = tp->hw_stats;
8912
8913 if (!netif_carrier_ok(tp->dev))
8914 return;
8915
8916 TG3_STAT_ADD32(&sp->tx_octets, MAC_TX_STATS_OCTETS);
8917 TG3_STAT_ADD32(&sp->tx_collisions, MAC_TX_STATS_COLLISIONS);
8918 TG3_STAT_ADD32(&sp->tx_xon_sent, MAC_TX_STATS_XON_SENT);
8919 TG3_STAT_ADD32(&sp->tx_xoff_sent, MAC_TX_STATS_XOFF_SENT);
8920 TG3_STAT_ADD32(&sp->tx_mac_errors, MAC_TX_STATS_MAC_ERRORS);
8921 TG3_STAT_ADD32(&sp->tx_single_collisions, MAC_TX_STATS_SINGLE_COLLISIONS);
8922 TG3_STAT_ADD32(&sp->tx_mult_collisions, MAC_TX_STATS_MULT_COLLISIONS);
8923 TG3_STAT_ADD32(&sp->tx_deferred, MAC_TX_STATS_DEFERRED);
8924 TG3_STAT_ADD32(&sp->tx_excessive_collisions, MAC_TX_STATS_EXCESSIVE_COL);
8925 TG3_STAT_ADD32(&sp->tx_late_collisions, MAC_TX_STATS_LATE_COL);
8926 TG3_STAT_ADD32(&sp->tx_ucast_packets, MAC_TX_STATS_UCAST);
8927 TG3_STAT_ADD32(&sp->tx_mcast_packets, MAC_TX_STATS_MCAST);
8928 TG3_STAT_ADD32(&sp->tx_bcast_packets, MAC_TX_STATS_BCAST);
8929
8930 TG3_STAT_ADD32(&sp->rx_octets, MAC_RX_STATS_OCTETS);
8931 TG3_STAT_ADD32(&sp->rx_fragments, MAC_RX_STATS_FRAGMENTS);
8932 TG3_STAT_ADD32(&sp->rx_ucast_packets, MAC_RX_STATS_UCAST);
8933 TG3_STAT_ADD32(&sp->rx_mcast_packets, MAC_RX_STATS_MCAST);
8934 TG3_STAT_ADD32(&sp->rx_bcast_packets, MAC_RX_STATS_BCAST);
8935 TG3_STAT_ADD32(&sp->rx_fcs_errors, MAC_RX_STATS_FCS_ERRORS);
8936 TG3_STAT_ADD32(&sp->rx_align_errors, MAC_RX_STATS_ALIGN_ERRORS);
8937 TG3_STAT_ADD32(&sp->rx_xon_pause_rcvd, MAC_RX_STATS_XON_PAUSE_RECVD);
8938 TG3_STAT_ADD32(&sp->rx_xoff_pause_rcvd, MAC_RX_STATS_XOFF_PAUSE_RECVD);
8939 TG3_STAT_ADD32(&sp->rx_mac_ctrl_rcvd, MAC_RX_STATS_MAC_CTRL_RECVD);
8940 TG3_STAT_ADD32(&sp->rx_xoff_entered, MAC_RX_STATS_XOFF_ENTERED);
8941 TG3_STAT_ADD32(&sp->rx_frame_too_long_errors, MAC_RX_STATS_FRAME_TOO_LONG);
8942 TG3_STAT_ADD32(&sp->rx_jabbers, MAC_RX_STATS_JABBERS);
8943 TG3_STAT_ADD32(&sp->rx_undersize_packets, MAC_RX_STATS_UNDERSIZE);
Michael Chan463d3052006-05-22 16:36:27 -07008944
8945 TG3_STAT_ADD32(&sp->rxbds_empty, RCVLPC_NO_RCV_BD_CNT);
Matt Carlson310050f2011-05-19 12:12:55 +00008946 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
8947 tp->pci_chip_rev_id != CHIPREV_ID_5719_A0 &&
8948 tp->pci_chip_rev_id != CHIPREV_ID_5720_A0) {
Matt Carlson4d958472011-04-20 07:57:35 +00008949 TG3_STAT_ADD32(&sp->rx_discards, RCVLPC_IN_DISCARDS_CNT);
8950 } else {
8951 u32 val = tr32(HOSTCC_FLOW_ATTN);
8952 val = (val & HOSTCC_FLOW_ATTN_MBUF_LWM) ? 1 : 0;
8953 if (val) {
8954 tw32(HOSTCC_FLOW_ATTN, HOSTCC_FLOW_ATTN_MBUF_LWM);
8955 sp->rx_discards.low += val;
8956 if (sp->rx_discards.low < val)
8957 sp->rx_discards.high += 1;
8958 }
8959 sp->mbuf_lwm_thresh_hit = sp->rx_discards;
8960 }
Michael Chan463d3052006-05-22 16:36:27 -07008961 TG3_STAT_ADD32(&sp->rx_errors, RCVLPC_IN_ERRORS_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962}
8963
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008964static void tg3_chk_missed_msi(struct tg3 *tp)
8965{
8966 u32 i;
8967
8968 for (i = 0; i < tp->irq_cnt; i++) {
8969 struct tg3_napi *tnapi = &tp->napi[i];
8970
8971 if (tg3_has_work(tnapi)) {
8972 if (tnapi->last_rx_cons == tnapi->rx_rcb_ptr &&
8973 tnapi->last_tx_cons == tnapi->tx_cons) {
8974 if (tnapi->chk_msi_cnt < 1) {
8975 tnapi->chk_msi_cnt++;
8976 return;
8977 }
8978 tw32_mailbox(tnapi->int_mbox,
8979 tnapi->last_tag << 24);
8980 }
8981 }
8982 tnapi->chk_msi_cnt = 0;
8983 tnapi->last_rx_cons = tnapi->rx_rcb_ptr;
8984 tnapi->last_tx_cons = tnapi->tx_cons;
8985 }
8986}
8987
Linus Torvalds1da177e2005-04-16 15:20:36 -07008988static void tg3_timer(unsigned long __opaque)
8989{
8990 struct tg3 *tp = (struct tg3 *) __opaque;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008991
Michael Chanf475f162006-03-27 23:20:14 -08008992 if (tp->irq_sync)
8993 goto restart_timer;
8994
David S. Millerf47c11e2005-06-24 20:18:35 -07008995 spin_lock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00008997 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
8998 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
8999 tg3_chk_missed_msi(tp);
9000
Joe Perches63c3a662011-04-26 08:12:10 +00009001 if (!tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -07009002 /* All of this garbage is because when using non-tagged
9003 * IRQ status the mailbox/status_block protocol the chip
9004 * uses with the cpu is race prone.
9005 */
Matt Carlson898a56f2009-08-28 14:02:40 +00009006 if (tp->napi[0].hw_status->status & SD_STATUS_UPDATED) {
David S. Millerfac9b832005-05-18 22:46:34 -07009007 tw32(GRC_LOCAL_CTRL,
9008 tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
9009 } else {
9010 tw32(HOSTCC_MODE, tp->coalesce_mode |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009011 HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW);
David S. Millerfac9b832005-05-18 22:46:34 -07009012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013
David S. Millerfac9b832005-05-18 22:46:34 -07009014 if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +00009015 tg3_flag_set(tp, RESTART_TIMER);
David S. Millerf47c11e2005-06-24 20:18:35 -07009016 spin_unlock(&tp->lock);
David S. Millerfac9b832005-05-18 22:46:34 -07009017 schedule_work(&tp->reset_task);
9018 return;
9019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009020 }
9021
Linus Torvalds1da177e2005-04-16 15:20:36 -07009022 /* This part only runs once per second. */
9023 if (!--tp->timer_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009024 if (tg3_flag(tp, 5705_PLUS))
David S. Millerfac9b832005-05-18 22:46:34 -07009025 tg3_periodic_fetch_stats(tp);
9026
Matt Carlsonb0c59432011-05-19 12:12:48 +00009027 if (tp->setlpicnt && !--tp->setlpicnt)
9028 tg3_phy_eee_enable(tp);
Matt Carlson52b02d02010-10-14 10:37:41 +00009029
Joe Perches63c3a662011-04-26 08:12:10 +00009030 if (tg3_flag(tp, USE_LINKCHG_REG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009031 u32 mac_stat;
9032 int phy_event;
9033
9034 mac_stat = tr32(MAC_STATUS);
9035
9036 phy_event = 0;
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009037 if (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009038 if (mac_stat & MAC_STATUS_MI_INTERRUPT)
9039 phy_event = 1;
9040 } else if (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)
9041 phy_event = 1;
9042
9043 if (phy_event)
9044 tg3_setup_phy(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +00009045 } else if (tg3_flag(tp, POLL_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009046 u32 mac_stat = tr32(MAC_STATUS);
9047 int need_setup = 0;
9048
9049 if (netif_carrier_ok(tp->dev) &&
9050 (mac_stat & MAC_STATUS_LNKSTATE_CHANGED)) {
9051 need_setup = 1;
9052 }
Matt Carlsonbe98da62010-07-11 09:31:46 +00009053 if (!netif_carrier_ok(tp->dev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009054 (mac_stat & (MAC_STATUS_PCS_SYNCED |
9055 MAC_STATUS_SIGNAL_DET))) {
9056 need_setup = 1;
9057 }
9058 if (need_setup) {
Michael Chan3d3ebe72006-09-27 15:59:15 -07009059 if (!tp->serdes_counter) {
9060 tw32_f(MAC_MODE,
9061 (tp->mac_mode &
9062 ~MAC_MODE_PORT_MODE_MASK));
9063 udelay(40);
9064 tw32_f(MAC_MODE, tp->mac_mode);
9065 udelay(40);
9066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009067 tg3_setup_phy(tp, 0);
9068 }
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009069 } else if ((tp->phy_flags & TG3_PHYFLG_MII_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +00009070 tg3_flag(tp, 5780_CLASS)) {
Michael Chan747e8f82005-07-25 12:33:22 -07009071 tg3_serdes_parallel_detect(tp);
Matt Carlson57d8b882010-06-05 17:24:35 +00009072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009073
9074 tp->timer_counter = tp->timer_multiplier;
9075 }
9076
Michael Chan130b8e42006-09-27 16:00:40 -07009077 /* Heartbeat is only sent once every 2 seconds.
9078 *
9079 * The heartbeat is to tell the ASF firmware that the host
9080 * driver is still alive. In the event that the OS crashes,
9081 * ASF needs to reset the hardware to free up the FIFO space
9082 * that may be filled with rx packets destined for the host.
9083 * If the FIFO is full, ASF will no longer function properly.
9084 *
9085 * Unintended resets have been reported on real time kernels
9086 * where the timer doesn't run on time. Netpoll will also have
9087 * same problem.
9088 *
9089 * The new FWCMD_NICDRV_ALIVE3 command tells the ASF firmware
9090 * to check the ring condition when the heartbeat is expiring
9091 * before doing the reset. This will prevent most unintended
9092 * resets.
9093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009094 if (!--tp->asf_counter) {
Joe Perches63c3a662011-04-26 08:12:10 +00009095 if (tg3_flag(tp, ENABLE_ASF) && !tg3_flag(tp, ENABLE_APE)) {
Matt Carlson7c5026a2008-05-02 16:49:29 -07009096 tg3_wait_for_event_ack(tp);
9097
Michael Chanbbadf502006-04-06 21:46:34 -07009098 tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX,
Michael Chan130b8e42006-09-27 16:00:40 -07009099 FWCMD_NICDRV_ALIVE3);
Michael Chanbbadf502006-04-06 21:46:34 -07009100 tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4);
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009101 tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX,
9102 TG3_FW_UPDATE_TIMEOUT_SEC);
Matt Carlson4ba526c2008-08-15 14:10:04 -07009103
9104 tg3_generate_fw_event(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009105 }
9106 tp->asf_counter = tp->asf_multiplier;
9107 }
9108
David S. Millerf47c11e2005-06-24 20:18:35 -07009109 spin_unlock(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009110
Michael Chanf475f162006-03-27 23:20:14 -08009111restart_timer:
Linus Torvalds1da177e2005-04-16 15:20:36 -07009112 tp->timer.expires = jiffies + tp->timer_offset;
9113 add_timer(&tp->timer);
9114}
9115
Matt Carlson4f125f42009-09-01 12:55:02 +00009116static int tg3_request_irq(struct tg3 *tp, int irq_num)
Michael Chanfcfa0a32006-03-20 22:28:41 -08009117{
David Howells7d12e782006-10-05 14:55:46 +01009118 irq_handler_t fn;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009119 unsigned long flags;
Matt Carlson4f125f42009-09-01 12:55:02 +00009120 char *name;
9121 struct tg3_napi *tnapi = &tp->napi[irq_num];
9122
9123 if (tp->irq_cnt == 1)
9124 name = tp->dev->name;
9125 else {
9126 name = &tnapi->irq_lbl[0];
9127 snprintf(name, IFNAMSIZ, "%s-%d", tp->dev->name, irq_num);
9128 name[IFNAMSIZ-1] = 0;
9129 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009130
Joe Perches63c3a662011-04-26 08:12:10 +00009131 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Michael Chanfcfa0a32006-03-20 22:28:41 -08009132 fn = tg3_msi;
Joe Perches63c3a662011-04-26 08:12:10 +00009133 if (tg3_flag(tp, 1SHOT_MSI))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009134 fn = tg3_msi_1shot;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009135 flags = 0;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009136 } else {
9137 fn = tg3_interrupt;
Joe Perches63c3a662011-04-26 08:12:10 +00009138 if (tg3_flag(tp, TAGGED_STATUS))
Michael Chanfcfa0a32006-03-20 22:28:41 -08009139 fn = tg3_interrupt_tagged;
Javier Martinez Canillasab392d22011-03-28 16:27:31 +00009140 flags = IRQF_SHARED;
Michael Chanfcfa0a32006-03-20 22:28:41 -08009141 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009142
9143 return request_irq(tnapi->irq_vec, fn, flags, name, tnapi);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009144}
9145
Michael Chan79381092005-04-21 17:13:59 -07009146static int tg3_test_interrupt(struct tg3 *tp)
9147{
Matt Carlson09943a12009-08-28 14:01:57 +00009148 struct tg3_napi *tnapi = &tp->napi[0];
Michael Chan79381092005-04-21 17:13:59 -07009149 struct net_device *dev = tp->dev;
Michael Chanb16250e2006-09-27 16:10:14 -07009150 int err, i, intr_ok = 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009151 u32 val;
Michael Chan79381092005-04-21 17:13:59 -07009152
Michael Chand4bc3922005-05-29 14:59:20 -07009153 if (!netif_running(dev))
9154 return -ENODEV;
9155
Michael Chan79381092005-04-21 17:13:59 -07009156 tg3_disable_ints(tp);
9157
Matt Carlson4f125f42009-09-01 12:55:02 +00009158 free_irq(tnapi->irq_vec, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009159
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009160 /*
9161 * Turn off MSI one shot mode. Otherwise this test has no
9162 * observable way to know whether the interrupt was delivered.
9163 */
Joe Perches63c3a662011-04-26 08:12:10 +00009164 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009165 val = tr32(MSGINT_MODE) | MSGINT_MODE_ONE_SHOT_DISABLE;
9166 tw32(MSGINT_MODE, val);
9167 }
9168
Matt Carlson4f125f42009-09-01 12:55:02 +00009169 err = request_irq(tnapi->irq_vec, tg3_test_isr,
Matt Carlson09943a12009-08-28 14:01:57 +00009170 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, tnapi);
Michael Chan79381092005-04-21 17:13:59 -07009171 if (err)
9172 return err;
9173
Matt Carlson898a56f2009-08-28 14:02:40 +00009174 tnapi->hw_status->status &= ~SD_STATUS_UPDATED;
Michael Chan79381092005-04-21 17:13:59 -07009175 tg3_enable_ints(tp);
9176
9177 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +00009178 tnapi->coal_now);
Michael Chan79381092005-04-21 17:13:59 -07009179
9180 for (i = 0; i < 5; i++) {
Michael Chanb16250e2006-09-27 16:10:14 -07009181 u32 int_mbox, misc_host_ctrl;
9182
Matt Carlson898a56f2009-08-28 14:02:40 +00009183 int_mbox = tr32_mailbox(tnapi->int_mbox);
Michael Chanb16250e2006-09-27 16:10:14 -07009184 misc_host_ctrl = tr32(TG3PCI_MISC_HOST_CTRL);
9185
9186 if ((int_mbox != 0) ||
9187 (misc_host_ctrl & MISC_HOST_CTRL_MASK_PCI_INT)) {
9188 intr_ok = 1;
Michael Chan79381092005-04-21 17:13:59 -07009189 break;
Michael Chanb16250e2006-09-27 16:10:14 -07009190 }
9191
Michael Chan79381092005-04-21 17:13:59 -07009192 msleep(10);
9193 }
9194
9195 tg3_disable_ints(tp);
9196
Matt Carlson4f125f42009-09-01 12:55:02 +00009197 free_irq(tnapi->irq_vec, tnapi);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009198
Matt Carlson4f125f42009-09-01 12:55:02 +00009199 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009200
9201 if (err)
9202 return err;
9203
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009204 if (intr_ok) {
9205 /* Reenable MSI one shot mode. */
Joe Perches63c3a662011-04-26 08:12:10 +00009206 if (tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009207 val = tr32(MSGINT_MODE) & ~MSGINT_MODE_ONE_SHOT_DISABLE;
9208 tw32(MSGINT_MODE, val);
9209 }
Michael Chan79381092005-04-21 17:13:59 -07009210 return 0;
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009211 }
Michael Chan79381092005-04-21 17:13:59 -07009212
9213 return -EIO;
9214}
9215
9216/* Returns 0 if MSI test succeeds or MSI test fails and INTx mode is
9217 * successfully restored
9218 */
9219static int tg3_test_msi(struct tg3 *tp)
9220{
Michael Chan79381092005-04-21 17:13:59 -07009221 int err;
9222 u16 pci_cmd;
9223
Joe Perches63c3a662011-04-26 08:12:10 +00009224 if (!tg3_flag(tp, USING_MSI))
Michael Chan79381092005-04-21 17:13:59 -07009225 return 0;
9226
9227 /* Turn off SERR reporting in case MSI terminates with Master
9228 * Abort.
9229 */
9230 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
9231 pci_write_config_word(tp->pdev, PCI_COMMAND,
9232 pci_cmd & ~PCI_COMMAND_SERR);
9233
9234 err = tg3_test_interrupt(tp);
9235
9236 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
9237
9238 if (!err)
9239 return 0;
9240
9241 /* other failures */
9242 if (err != -EIO)
9243 return err;
9244
9245 /* MSI test failed, go back to INTx mode */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009246 netdev_warn(tp->dev, "No interrupt was generated using MSI. Switching "
9247 "to INTx mode. Please report this failure to the PCI "
9248 "maintainer and include system chipset information\n");
Michael Chan79381092005-04-21 17:13:59 -07009249
Matt Carlson4f125f42009-09-01 12:55:02 +00009250 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Matt Carlson09943a12009-08-28 14:01:57 +00009251
Michael Chan79381092005-04-21 17:13:59 -07009252 pci_disable_msi(tp->pdev);
9253
Joe Perches63c3a662011-04-26 08:12:10 +00009254 tg3_flag_clear(tp, USING_MSI);
Andre Detschdc8bf1b2010-04-26 07:27:07 +00009255 tp->napi[0].irq_vec = tp->pdev->irq;
Michael Chan79381092005-04-21 17:13:59 -07009256
Matt Carlson4f125f42009-09-01 12:55:02 +00009257 err = tg3_request_irq(tp, 0);
Michael Chan79381092005-04-21 17:13:59 -07009258 if (err)
9259 return err;
9260
9261 /* Need to reset the chip because the MSI cycle may have terminated
9262 * with Master Abort.
9263 */
David S. Millerf47c11e2005-06-24 20:18:35 -07009264 tg3_full_lock(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009265
Michael Chan944d9802005-05-29 14:57:48 -07009266 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009267 err = tg3_init_hw(tp, 1);
Michael Chan79381092005-04-21 17:13:59 -07009268
David S. Millerf47c11e2005-06-24 20:18:35 -07009269 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009270
9271 if (err)
Matt Carlson4f125f42009-09-01 12:55:02 +00009272 free_irq(tp->napi[0].irq_vec, &tp->napi[0]);
Michael Chan79381092005-04-21 17:13:59 -07009273
9274 return err;
9275}
9276
Matt Carlson9e9fd122009-01-19 16:57:45 -08009277static int tg3_request_firmware(struct tg3 *tp)
9278{
9279 const __be32 *fw_data;
9280
9281 if (request_firmware(&tp->fw, tp->fw_needed, &tp->pdev->dev)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009282 netdev_err(tp->dev, "Failed to load firmware \"%s\"\n",
9283 tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009284 return -ENOENT;
9285 }
9286
9287 fw_data = (void *)tp->fw->data;
9288
9289 /* Firmware blob starts with version numbers, followed by
9290 * start address and _full_ length including BSS sections
9291 * (which must be longer than the actual data, of course
9292 */
9293
9294 tp->fw_len = be32_to_cpu(fw_data[2]); /* includes bss */
9295 if (tp->fw_len < (tp->fw->size - 12)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009296 netdev_err(tp->dev, "bogus length %d in \"%s\"\n",
9297 tp->fw_len, tp->fw_needed);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009298 release_firmware(tp->fw);
9299 tp->fw = NULL;
9300 return -EINVAL;
9301 }
9302
9303 /* We no longer need firmware; we have it. */
9304 tp->fw_needed = NULL;
9305 return 0;
9306}
9307
Matt Carlson679563f2009-09-01 12:55:46 +00009308static bool tg3_enable_msix(struct tg3 *tp)
9309{
9310 int i, rc, cpus = num_online_cpus();
9311 struct msix_entry msix_ent[tp->irq_max];
9312
9313 if (cpus == 1)
9314 /* Just fallback to the simpler MSI mode. */
9315 return false;
9316
9317 /*
9318 * We want as many rx rings enabled as there are cpus.
9319 * The first MSIX vector only deals with link interrupts, etc,
9320 * so we add one to the number of vectors we are requesting.
9321 */
9322 tp->irq_cnt = min_t(unsigned, cpus + 1, tp->irq_max);
9323
9324 for (i = 0; i < tp->irq_max; i++) {
9325 msix_ent[i].entry = i;
9326 msix_ent[i].vector = 0;
9327 }
9328
9329 rc = pci_enable_msix(tp->pdev, msix_ent, tp->irq_cnt);
Matt Carlson2430b032010-06-05 17:24:34 +00009330 if (rc < 0) {
9331 return false;
9332 } else if (rc != 0) {
Matt Carlson679563f2009-09-01 12:55:46 +00009333 if (pci_enable_msix(tp->pdev, msix_ent, rc))
9334 return false;
Joe Perches05dbe002010-02-17 19:44:19 +00009335 netdev_notice(tp->dev, "Requested %d MSI-X vectors, received %d\n",
9336 tp->irq_cnt, rc);
Matt Carlson679563f2009-09-01 12:55:46 +00009337 tp->irq_cnt = rc;
9338 }
9339
9340 for (i = 0; i < tp->irq_max; i++)
9341 tp->napi[i].irq_vec = msix_ent[i].vector;
9342
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009343 netif_set_real_num_tx_queues(tp->dev, 1);
9344 rc = tp->irq_cnt > 1 ? tp->irq_cnt - 1 : 1;
9345 if (netif_set_real_num_rx_queues(tp->dev, rc)) {
9346 pci_disable_msix(tp->pdev);
9347 return false;
9348 }
Matt Carlsonb92b9042010-11-24 08:31:51 +00009349
9350 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +00009351 tg3_flag_set(tp, ENABLE_RSS);
Matt Carlsond78b59f2011-04-05 14:22:46 +00009352
9353 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
9354 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720) {
Joe Perches63c3a662011-04-26 08:12:10 +00009355 tg3_flag_set(tp, ENABLE_TSS);
Matt Carlsonb92b9042010-11-24 08:31:51 +00009356 netif_set_real_num_tx_queues(tp->dev, tp->irq_cnt - 1);
9357 }
9358 }
Matt Carlson2430b032010-06-05 17:24:34 +00009359
Matt Carlson679563f2009-09-01 12:55:46 +00009360 return true;
9361}
9362
Matt Carlson07b01732009-08-28 14:01:15 +00009363static void tg3_ints_init(struct tg3 *tp)
9364{
Joe Perches63c3a662011-04-26 08:12:10 +00009365 if ((tg3_flag(tp, SUPPORT_MSI) || tg3_flag(tp, SUPPORT_MSIX)) &&
9366 !tg3_flag(tp, TAGGED_STATUS)) {
Matt Carlson07b01732009-08-28 14:01:15 +00009367 /* All MSI supporting chips should support tagged
9368 * status. Assert that this is the case.
9369 */
Matt Carlson5129c3a2010-04-05 10:19:23 +00009370 netdev_warn(tp->dev,
9371 "MSI without TAGGED_STATUS? Not using MSI\n");
Matt Carlson679563f2009-09-01 12:55:46 +00009372 goto defcfg;
Matt Carlson07b01732009-08-28 14:01:15 +00009373 }
Matt Carlson4f125f42009-09-01 12:55:02 +00009374
Joe Perches63c3a662011-04-26 08:12:10 +00009375 if (tg3_flag(tp, SUPPORT_MSIX) && tg3_enable_msix(tp))
9376 tg3_flag_set(tp, USING_MSIX);
9377 else if (tg3_flag(tp, SUPPORT_MSI) && pci_enable_msi(tp->pdev) == 0)
9378 tg3_flag_set(tp, USING_MSI);
Matt Carlson679563f2009-09-01 12:55:46 +00009379
Joe Perches63c3a662011-04-26 08:12:10 +00009380 if (tg3_flag(tp, USING_MSI) || tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009381 u32 msi_mode = tr32(MSGINT_MODE);
Joe Perches63c3a662011-04-26 08:12:10 +00009382 if (tg3_flag(tp, USING_MSIX) && tp->irq_cnt > 1)
Matt Carlsonbaf8a942009-09-01 13:13:00 +00009383 msi_mode |= MSGINT_MODE_MULTIVEC_EN;
Matt Carlson679563f2009-09-01 12:55:46 +00009384 tw32(MSGINT_MODE, msi_mode | MSGINT_MODE_ENABLE);
9385 }
9386defcfg:
Joe Perches63c3a662011-04-26 08:12:10 +00009387 if (!tg3_flag(tp, USING_MSIX)) {
Matt Carlson679563f2009-09-01 12:55:46 +00009388 tp->irq_cnt = 1;
9389 tp->napi[0].irq_vec = tp->pdev->irq;
Ben Hutchings2ddaad32010-09-27 22:11:51 -07009390 netif_set_real_num_tx_queues(tp->dev, 1);
Matt Carlson85407882010-10-06 13:40:58 -07009391 netif_set_real_num_rx_queues(tp->dev, 1);
Matt Carlson679563f2009-09-01 12:55:46 +00009392 }
Matt Carlson07b01732009-08-28 14:01:15 +00009393}
9394
9395static void tg3_ints_fini(struct tg3 *tp)
9396{
Joe Perches63c3a662011-04-26 08:12:10 +00009397 if (tg3_flag(tp, USING_MSIX))
Matt Carlson679563f2009-09-01 12:55:46 +00009398 pci_disable_msix(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009399 else if (tg3_flag(tp, USING_MSI))
Matt Carlson679563f2009-09-01 12:55:46 +00009400 pci_disable_msi(tp->pdev);
Joe Perches63c3a662011-04-26 08:12:10 +00009401 tg3_flag_clear(tp, USING_MSI);
9402 tg3_flag_clear(tp, USING_MSIX);
9403 tg3_flag_clear(tp, ENABLE_RSS);
9404 tg3_flag_clear(tp, ENABLE_TSS);
Matt Carlson07b01732009-08-28 14:01:15 +00009405}
9406
Linus Torvalds1da177e2005-04-16 15:20:36 -07009407static int tg3_open(struct net_device *dev)
9408{
9409 struct tg3 *tp = netdev_priv(dev);
Matt Carlson4f125f42009-09-01 12:55:02 +00009410 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009411
Matt Carlson9e9fd122009-01-19 16:57:45 -08009412 if (tp->fw_needed) {
9413 err = tg3_request_firmware(tp);
9414 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0) {
9415 if (err)
9416 return err;
9417 } else if (err) {
Joe Perches05dbe002010-02-17 19:44:19 +00009418 netdev_warn(tp->dev, "TSO capability disabled\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009419 tg3_flag_clear(tp, TSO_CAPABLE);
9420 } else if (!tg3_flag(tp, TSO_CAPABLE)) {
Joe Perches05dbe002010-02-17 19:44:19 +00009421 netdev_notice(tp->dev, "TSO capability restored\n");
Joe Perches63c3a662011-04-26 08:12:10 +00009422 tg3_flag_set(tp, TSO_CAPABLE);
Matt Carlson9e9fd122009-01-19 16:57:45 -08009423 }
9424 }
9425
Michael Chanc49a1562006-12-17 17:07:29 -08009426 netif_carrier_off(tp->dev);
9427
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009428 err = tg3_power_up(tp);
Matt Carlson2f751b62008-08-04 23:17:34 -07009429 if (err)
Michael Chanbc1c7562006-03-20 17:48:03 -08009430 return err;
Matt Carlson2f751b62008-08-04 23:17:34 -07009431
9432 tg3_full_lock(tp, 0);
Michael Chanbc1c7562006-03-20 17:48:03 -08009433
Linus Torvalds1da177e2005-04-16 15:20:36 -07009434 tg3_disable_ints(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009435 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009436
David S. Millerf47c11e2005-06-24 20:18:35 -07009437 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009438
Matt Carlson679563f2009-09-01 12:55:46 +00009439 /*
9440 * Setup interrupts first so we know how
9441 * many NAPI resources to allocate
9442 */
9443 tg3_ints_init(tp);
9444
Linus Torvalds1da177e2005-04-16 15:20:36 -07009445 /* The placement of this call is tied
9446 * to the setup and use of Host TX descriptors.
9447 */
9448 err = tg3_alloc_consistent(tp);
9449 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009450 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009451
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009452 tg3_napi_init(tp);
9453
Matt Carlsonfed97812009-09-01 13:10:19 +00009454 tg3_napi_enable(tp);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07009455
Matt Carlson4f125f42009-09-01 12:55:02 +00009456 for (i = 0; i < tp->irq_cnt; i++) {
9457 struct tg3_napi *tnapi = &tp->napi[i];
9458 err = tg3_request_irq(tp, i);
9459 if (err) {
9460 for (i--; i >= 0; i--)
9461 free_irq(tnapi->irq_vec, tnapi);
9462 break;
9463 }
9464 }
Matt Carlson07b01732009-08-28 14:01:15 +00009465
9466 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009467 goto err_out2;
Matt Carlson07b01732009-08-28 14:01:15 +00009468
David S. Millerf47c11e2005-06-24 20:18:35 -07009469 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009470
Gary Zambrano8e7a22e2006-04-29 18:59:13 -07009471 err = tg3_init_hw(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009472 if (err) {
Michael Chan944d9802005-05-29 14:57:48 -07009473 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009474 tg3_free_rings(tp);
9475 } else {
Matt Carlson0e6cf6a2011-06-13 13:38:55 +00009476 if (tg3_flag(tp, TAGGED_STATUS) &&
9477 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5717 &&
9478 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57765)
David S. Millerfac9b832005-05-18 22:46:34 -07009479 tp->timer_offset = HZ;
9480 else
9481 tp->timer_offset = HZ / 10;
9482
9483 BUG_ON(tp->timer_offset > HZ);
9484 tp->timer_counter = tp->timer_multiplier =
9485 (HZ / tp->timer_offset);
9486 tp->asf_counter = tp->asf_multiplier =
Michael Chan28fbef72005-10-26 15:48:35 -07009487 ((HZ / tp->timer_offset) * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009488
9489 init_timer(&tp->timer);
9490 tp->timer.expires = jiffies + tp->timer_offset;
9491 tp->timer.data = (unsigned long) tp;
9492 tp->timer.function = tg3_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009493 }
9494
David S. Millerf47c11e2005-06-24 20:18:35 -07009495 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009496
Matt Carlson07b01732009-08-28 14:01:15 +00009497 if (err)
Matt Carlson679563f2009-09-01 12:55:46 +00009498 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009499
Joe Perches63c3a662011-04-26 08:12:10 +00009500 if (tg3_flag(tp, USING_MSI)) {
Michael Chan79381092005-04-21 17:13:59 -07009501 err = tg3_test_msi(tp);
David S. Millerfac9b832005-05-18 22:46:34 -07009502
Michael Chan79381092005-04-21 17:13:59 -07009503 if (err) {
David S. Millerf47c11e2005-06-24 20:18:35 -07009504 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -07009505 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chan79381092005-04-21 17:13:59 -07009506 tg3_free_rings(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -07009507 tg3_full_unlock(tp);
Michael Chan79381092005-04-21 17:13:59 -07009508
Matt Carlson679563f2009-09-01 12:55:46 +00009509 goto err_out2;
Michael Chan79381092005-04-21 17:13:59 -07009510 }
Michael Chanfcfa0a32006-03-20 22:28:41 -08009511
Joe Perches63c3a662011-04-26 08:12:10 +00009512 if (!tg3_flag(tp, 57765_PLUS) && tg3_flag(tp, USING_MSI)) {
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009513 u32 val = tr32(PCIE_TRANSACTION_CFG);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009514
Matt Carlsonf6eb9b12009-09-01 13:19:53 +00009515 tw32(PCIE_TRANSACTION_CFG,
9516 val | PCIE_TRANS_CFG_1SHOT_MSI);
Michael Chanfcfa0a32006-03-20 22:28:41 -08009517 }
Michael Chan79381092005-04-21 17:13:59 -07009518 }
9519
Matt Carlsonb02fd9e2008-05-25 23:47:41 -07009520 tg3_phy_start(tp);
9521
David S. Millerf47c11e2005-06-24 20:18:35 -07009522 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009523
Michael Chan79381092005-04-21 17:13:59 -07009524 add_timer(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +00009525 tg3_flag_set(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009526 tg3_enable_ints(tp);
9527
David S. Millerf47c11e2005-06-24 20:18:35 -07009528 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009529
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009530 netif_tx_start_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009531
Mahesh Bandewar06c03c02011-05-08 06:51:48 +00009532 /*
9533 * Reset loopback feature if it was turned on while the device was down
9534 * make sure that it's installed properly now.
9535 */
9536 if (dev->features & NETIF_F_LOOPBACK)
9537 tg3_set_loopback(dev, dev->features);
9538
Linus Torvalds1da177e2005-04-16 15:20:36 -07009539 return 0;
Matt Carlson07b01732009-08-28 14:01:15 +00009540
Matt Carlson679563f2009-09-01 12:55:46 +00009541err_out3:
Matt Carlson4f125f42009-09-01 12:55:02 +00009542 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9543 struct tg3_napi *tnapi = &tp->napi[i];
9544 free_irq(tnapi->irq_vec, tnapi);
9545 }
Matt Carlson07b01732009-08-28 14:01:15 +00009546
Matt Carlson679563f2009-09-01 12:55:46 +00009547err_out2:
Matt Carlsonfed97812009-09-01 13:10:19 +00009548 tg3_napi_disable(tp);
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009549 tg3_napi_fini(tp);
Matt Carlson07b01732009-08-28 14:01:15 +00009550 tg3_free_consistent(tp);
Matt Carlson679563f2009-09-01 12:55:46 +00009551
9552err_out1:
9553 tg3_ints_fini(tp);
Matt Carlsoncd0d7222011-07-13 09:27:33 +00009554 tg3_frob_aux_power(tp, false);
9555 pci_set_power_state(tp->pdev, PCI_D3hot);
Matt Carlson07b01732009-08-28 14:01:15 +00009556 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009557}
9558
Eric Dumazet511d2222010-07-07 20:44:24 +00009559static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
9560 struct rtnl_link_stats64 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009561static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *);
9562
9563static int tg3_close(struct net_device *dev)
9564{
Matt Carlson4f125f42009-09-01 12:55:02 +00009565 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009566 struct tg3 *tp = netdev_priv(dev);
9567
Matt Carlsonfed97812009-09-01 13:10:19 +00009568 tg3_napi_disable(tp);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07009569 cancel_work_sync(&tp->reset_task);
Michael Chan7faa0062006-02-02 17:29:28 -08009570
Matt Carlsonfe5f5782009-09-01 13:09:39 +00009571 netif_tx_stop_all_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009572
9573 del_timer_sync(&tp->timer);
9574
Matt Carlson24bb4fb2009-10-05 17:55:29 +00009575 tg3_phy_stop(tp);
9576
David S. Millerf47c11e2005-06-24 20:18:35 -07009577 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009578
9579 tg3_disable_ints(tp);
9580
Michael Chan944d9802005-05-29 14:57:48 -07009581 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009582 tg3_free_rings(tp);
Joe Perches63c3a662011-04-26 08:12:10 +00009583 tg3_flag_clear(tp, INIT_COMPLETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009584
David S. Millerf47c11e2005-06-24 20:18:35 -07009585 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009586
Matt Carlson4f125f42009-09-01 12:55:02 +00009587 for (i = tp->irq_cnt - 1; i >= 0; i--) {
9588 struct tg3_napi *tnapi = &tp->napi[i];
9589 free_irq(tnapi->irq_vec, tnapi);
9590 }
Matt Carlson07b01732009-08-28 14:01:15 +00009591
9592 tg3_ints_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009593
Eric Dumazet511d2222010-07-07 20:44:24 +00009594 tg3_get_stats64(tp->dev, &tp->net_stats_prev);
9595
Linus Torvalds1da177e2005-04-16 15:20:36 -07009596 memcpy(&tp->estats_prev, tg3_get_estats(tp),
9597 sizeof(tp->estats_prev));
9598
Matt Carlson66cfd1b2010-09-30 10:34:30 +00009599 tg3_napi_fini(tp);
9600
Linus Torvalds1da177e2005-04-16 15:20:36 -07009601 tg3_free_consistent(tp);
9602
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +00009603 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -08009604
9605 netif_carrier_off(tp->dev);
9606
Linus Torvalds1da177e2005-04-16 15:20:36 -07009607 return 0;
9608}
9609
Eric Dumazet511d2222010-07-07 20:44:24 +00009610static inline u64 get_stat64(tg3_stat64_t *val)
Stefan Buehler816f8b82008-08-15 14:10:54 -07009611{
9612 return ((u64)val->high << 32) | ((u64)val->low);
9613}
9614
Eric Dumazet511d2222010-07-07 20:44:24 +00009615static u64 calc_crc_errors(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009616{
9617 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9618
Matt Carlsonf07e9af2010-08-02 11:26:07 +00009619 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07009620 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
9621 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009622 u32 val;
9623
David S. Millerf47c11e2005-06-24 20:18:35 -07009624 spin_lock_bh(&tp->lock);
Michael Chan569a5df2007-02-13 12:18:15 -08009625 if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
9626 tg3_writephy(tp, MII_TG3_TEST1,
9627 val | MII_TG3_TEST1_CRC_EN);
Matt Carlsonf08aa1a2010-08-02 11:26:05 +00009628 tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009629 } else
9630 val = 0;
David S. Millerf47c11e2005-06-24 20:18:35 -07009631 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009632
9633 tp->phy_crc_errors += val;
9634
9635 return tp->phy_crc_errors;
9636 }
9637
9638 return get_stat64(&hw_stats->rx_fcs_errors);
9639}
9640
9641#define ESTAT_ADD(member) \
9642 estats->member = old_estats->member + \
Eric Dumazet511d2222010-07-07 20:44:24 +00009643 get_stat64(&hw_stats->member)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009644
9645static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp)
9646{
9647 struct tg3_ethtool_stats *estats = &tp->estats;
9648 struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
9649 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9650
9651 if (!hw_stats)
9652 return old_estats;
9653
9654 ESTAT_ADD(rx_octets);
9655 ESTAT_ADD(rx_fragments);
9656 ESTAT_ADD(rx_ucast_packets);
9657 ESTAT_ADD(rx_mcast_packets);
9658 ESTAT_ADD(rx_bcast_packets);
9659 ESTAT_ADD(rx_fcs_errors);
9660 ESTAT_ADD(rx_align_errors);
9661 ESTAT_ADD(rx_xon_pause_rcvd);
9662 ESTAT_ADD(rx_xoff_pause_rcvd);
9663 ESTAT_ADD(rx_mac_ctrl_rcvd);
9664 ESTAT_ADD(rx_xoff_entered);
9665 ESTAT_ADD(rx_frame_too_long_errors);
9666 ESTAT_ADD(rx_jabbers);
9667 ESTAT_ADD(rx_undersize_packets);
9668 ESTAT_ADD(rx_in_length_errors);
9669 ESTAT_ADD(rx_out_length_errors);
9670 ESTAT_ADD(rx_64_or_less_octet_packets);
9671 ESTAT_ADD(rx_65_to_127_octet_packets);
9672 ESTAT_ADD(rx_128_to_255_octet_packets);
9673 ESTAT_ADD(rx_256_to_511_octet_packets);
9674 ESTAT_ADD(rx_512_to_1023_octet_packets);
9675 ESTAT_ADD(rx_1024_to_1522_octet_packets);
9676 ESTAT_ADD(rx_1523_to_2047_octet_packets);
9677 ESTAT_ADD(rx_2048_to_4095_octet_packets);
9678 ESTAT_ADD(rx_4096_to_8191_octet_packets);
9679 ESTAT_ADD(rx_8192_to_9022_octet_packets);
9680
9681 ESTAT_ADD(tx_octets);
9682 ESTAT_ADD(tx_collisions);
9683 ESTAT_ADD(tx_xon_sent);
9684 ESTAT_ADD(tx_xoff_sent);
9685 ESTAT_ADD(tx_flow_control);
9686 ESTAT_ADD(tx_mac_errors);
9687 ESTAT_ADD(tx_single_collisions);
9688 ESTAT_ADD(tx_mult_collisions);
9689 ESTAT_ADD(tx_deferred);
9690 ESTAT_ADD(tx_excessive_collisions);
9691 ESTAT_ADD(tx_late_collisions);
9692 ESTAT_ADD(tx_collide_2times);
9693 ESTAT_ADD(tx_collide_3times);
9694 ESTAT_ADD(tx_collide_4times);
9695 ESTAT_ADD(tx_collide_5times);
9696 ESTAT_ADD(tx_collide_6times);
9697 ESTAT_ADD(tx_collide_7times);
9698 ESTAT_ADD(tx_collide_8times);
9699 ESTAT_ADD(tx_collide_9times);
9700 ESTAT_ADD(tx_collide_10times);
9701 ESTAT_ADD(tx_collide_11times);
9702 ESTAT_ADD(tx_collide_12times);
9703 ESTAT_ADD(tx_collide_13times);
9704 ESTAT_ADD(tx_collide_14times);
9705 ESTAT_ADD(tx_collide_15times);
9706 ESTAT_ADD(tx_ucast_packets);
9707 ESTAT_ADD(tx_mcast_packets);
9708 ESTAT_ADD(tx_bcast_packets);
9709 ESTAT_ADD(tx_carrier_sense_errors);
9710 ESTAT_ADD(tx_discards);
9711 ESTAT_ADD(tx_errors);
9712
9713 ESTAT_ADD(dma_writeq_full);
9714 ESTAT_ADD(dma_write_prioq_full);
9715 ESTAT_ADD(rxbds_empty);
9716 ESTAT_ADD(rx_discards);
9717 ESTAT_ADD(rx_errors);
9718 ESTAT_ADD(rx_threshold_hit);
9719
9720 ESTAT_ADD(dma_readq_full);
9721 ESTAT_ADD(dma_read_prioq_full);
9722 ESTAT_ADD(tx_comp_queue_full);
9723
9724 ESTAT_ADD(ring_set_send_prod_index);
9725 ESTAT_ADD(ring_status_update);
9726 ESTAT_ADD(nic_irqs);
9727 ESTAT_ADD(nic_avoided_irqs);
9728 ESTAT_ADD(nic_tx_threshold_hit);
9729
Matt Carlson4452d092011-05-19 12:12:51 +00009730 ESTAT_ADD(mbuf_lwm_thresh_hit);
9731
Linus Torvalds1da177e2005-04-16 15:20:36 -07009732 return estats;
9733}
9734
Eric Dumazet511d2222010-07-07 20:44:24 +00009735static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
9736 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009737{
9738 struct tg3 *tp = netdev_priv(dev);
Eric Dumazet511d2222010-07-07 20:44:24 +00009739 struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009740 struct tg3_hw_stats *hw_stats = tp->hw_stats;
9741
9742 if (!hw_stats)
9743 return old_stats;
9744
9745 stats->rx_packets = old_stats->rx_packets +
9746 get_stat64(&hw_stats->rx_ucast_packets) +
9747 get_stat64(&hw_stats->rx_mcast_packets) +
9748 get_stat64(&hw_stats->rx_bcast_packets);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009749
Linus Torvalds1da177e2005-04-16 15:20:36 -07009750 stats->tx_packets = old_stats->tx_packets +
9751 get_stat64(&hw_stats->tx_ucast_packets) +
9752 get_stat64(&hw_stats->tx_mcast_packets) +
9753 get_stat64(&hw_stats->tx_bcast_packets);
9754
9755 stats->rx_bytes = old_stats->rx_bytes +
9756 get_stat64(&hw_stats->rx_octets);
9757 stats->tx_bytes = old_stats->tx_bytes +
9758 get_stat64(&hw_stats->tx_octets);
9759
9760 stats->rx_errors = old_stats->rx_errors +
John W. Linville4f63b872005-09-12 14:43:18 -07009761 get_stat64(&hw_stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009762 stats->tx_errors = old_stats->tx_errors +
9763 get_stat64(&hw_stats->tx_errors) +
9764 get_stat64(&hw_stats->tx_mac_errors) +
9765 get_stat64(&hw_stats->tx_carrier_sense_errors) +
9766 get_stat64(&hw_stats->tx_discards);
9767
9768 stats->multicast = old_stats->multicast +
9769 get_stat64(&hw_stats->rx_mcast_packets);
9770 stats->collisions = old_stats->collisions +
9771 get_stat64(&hw_stats->tx_collisions);
9772
9773 stats->rx_length_errors = old_stats->rx_length_errors +
9774 get_stat64(&hw_stats->rx_frame_too_long_errors) +
9775 get_stat64(&hw_stats->rx_undersize_packets);
9776
9777 stats->rx_over_errors = old_stats->rx_over_errors +
9778 get_stat64(&hw_stats->rxbds_empty);
9779 stats->rx_frame_errors = old_stats->rx_frame_errors +
9780 get_stat64(&hw_stats->rx_align_errors);
9781 stats->tx_aborted_errors = old_stats->tx_aborted_errors +
9782 get_stat64(&hw_stats->tx_discards);
9783 stats->tx_carrier_errors = old_stats->tx_carrier_errors +
9784 get_stat64(&hw_stats->tx_carrier_sense_errors);
9785
9786 stats->rx_crc_errors = old_stats->rx_crc_errors +
9787 calc_crc_errors(tp);
9788
John W. Linville4f63b872005-09-12 14:43:18 -07009789 stats->rx_missed_errors = old_stats->rx_missed_errors +
9790 get_stat64(&hw_stats->rx_discards);
9791
Eric Dumazetb0057c52010-10-10 19:55:52 +00009792 stats->rx_dropped = tp->rx_dropped;
9793
Linus Torvalds1da177e2005-04-16 15:20:36 -07009794 return stats;
9795}
9796
9797static inline u32 calc_crc(unsigned char *buf, int len)
9798{
9799 u32 reg;
9800 u32 tmp;
9801 int j, k;
9802
9803 reg = 0xffffffff;
9804
9805 for (j = 0; j < len; j++) {
9806 reg ^= buf[j];
9807
9808 for (k = 0; k < 8; k++) {
9809 tmp = reg & 0x01;
9810
9811 reg >>= 1;
9812
Matt Carlson859a588792010-04-05 10:19:28 +00009813 if (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009814 reg ^= 0xedb88320;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009815 }
9816 }
9817
9818 return ~reg;
9819}
9820
9821static void tg3_set_multi(struct tg3 *tp, unsigned int accept_all)
9822{
9823 /* accept or reject all multicast frames */
9824 tw32(MAC_HASH_REG_0, accept_all ? 0xffffffff : 0);
9825 tw32(MAC_HASH_REG_1, accept_all ? 0xffffffff : 0);
9826 tw32(MAC_HASH_REG_2, accept_all ? 0xffffffff : 0);
9827 tw32(MAC_HASH_REG_3, accept_all ? 0xffffffff : 0);
9828}
9829
9830static void __tg3_set_rx_mode(struct net_device *dev)
9831{
9832 struct tg3 *tp = netdev_priv(dev);
9833 u32 rx_mode;
9834
9835 rx_mode = tp->rx_mode & ~(RX_MODE_PROMISC |
9836 RX_MODE_KEEP_VLAN_TAG);
9837
Matt Carlsonbf933c82011-01-25 15:58:49 +00009838#if !defined(CONFIG_VLAN_8021Q) && !defined(CONFIG_VLAN_8021Q_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009839 /* When ASF is in use, we always keep the RX_MODE_KEEP_VLAN_TAG
9840 * flag clear.
9841 */
Joe Perches63c3a662011-04-26 08:12:10 +00009842 if (!tg3_flag(tp, ENABLE_ASF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07009843 rx_mode |= RX_MODE_KEEP_VLAN_TAG;
9844#endif
9845
9846 if (dev->flags & IFF_PROMISC) {
9847 /* Promiscuous mode. */
9848 rx_mode |= RX_MODE_PROMISC;
9849 } else if (dev->flags & IFF_ALLMULTI) {
9850 /* Accept all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009851 tg3_set_multi(tp, 1);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00009852 } else if (netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07009853 /* Reject all multicast. */
Matt Carlsonde6f31e2010-04-12 06:58:30 +00009854 tg3_set_multi(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009855 } else {
9856 /* Accept one or more multicast(s). */
Jiri Pirko22bedad32010-04-01 21:22:57 +00009857 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009858 u32 mc_filter[4] = { 0, };
9859 u32 regidx;
9860 u32 bit;
9861 u32 crc;
9862
Jiri Pirko22bedad32010-04-01 21:22:57 +00009863 netdev_for_each_mc_addr(ha, dev) {
9864 crc = calc_crc(ha->addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009865 bit = ~crc & 0x7f;
9866 regidx = (bit & 0x60) >> 5;
9867 bit &= 0x1f;
9868 mc_filter[regidx] |= (1 << bit);
9869 }
9870
9871 tw32(MAC_HASH_REG_0, mc_filter[0]);
9872 tw32(MAC_HASH_REG_1, mc_filter[1]);
9873 tw32(MAC_HASH_REG_2, mc_filter[2]);
9874 tw32(MAC_HASH_REG_3, mc_filter[3]);
9875 }
9876
9877 if (rx_mode != tp->rx_mode) {
9878 tp->rx_mode = rx_mode;
9879 tw32_f(MAC_RX_MODE, rx_mode);
9880 udelay(10);
9881 }
9882}
9883
9884static void tg3_set_rx_mode(struct net_device *dev)
9885{
9886 struct tg3 *tp = netdev_priv(dev);
9887
Michael Chane75f7c92006-03-20 21:33:26 -08009888 if (!netif_running(dev))
9889 return;
9890
David S. Millerf47c11e2005-06-24 20:18:35 -07009891 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009892 __tg3_set_rx_mode(dev);
David S. Millerf47c11e2005-06-24 20:18:35 -07009893 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009894}
9895
Linus Torvalds1da177e2005-04-16 15:20:36 -07009896static int tg3_get_regs_len(struct net_device *dev)
9897{
Matt Carlson97bd8e42011-04-13 11:05:04 +00009898 return TG3_REG_BLK_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009899}
9900
9901static void tg3_get_regs(struct net_device *dev,
9902 struct ethtool_regs *regs, void *_p)
9903{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009904 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009905
9906 regs->version = 0;
9907
Matt Carlson97bd8e42011-04-13 11:05:04 +00009908 memset(_p, 0, TG3_REG_BLK_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009909
Matt Carlson80096062010-08-02 11:26:06 +00009910 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009911 return;
9912
David S. Millerf47c11e2005-06-24 20:18:35 -07009913 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009914
Matt Carlson97bd8e42011-04-13 11:05:04 +00009915 tg3_dump_legacy_regs(tp, (u32 *)_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009916
David S. Millerf47c11e2005-06-24 20:18:35 -07009917 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009918}
9919
9920static int tg3_get_eeprom_len(struct net_device *dev)
9921{
9922 struct tg3 *tp = netdev_priv(dev);
9923
9924 return tp->nvram_size;
9925}
9926
Linus Torvalds1da177e2005-04-16 15:20:36 -07009927static int tg3_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9928{
9929 struct tg3 *tp = netdev_priv(dev);
9930 int ret;
9931 u8 *pd;
Al Virob9fc7dc2007-12-17 22:59:57 -08009932 u32 i, offset, len, b_offset, b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009933 __be32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009934
Joe Perches63c3a662011-04-26 08:12:10 +00009935 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +00009936 return -EINVAL;
9937
Matt Carlson80096062010-08-02 11:26:06 +00009938 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -08009939 return -EAGAIN;
9940
Linus Torvalds1da177e2005-04-16 15:20:36 -07009941 offset = eeprom->offset;
9942 len = eeprom->len;
9943 eeprom->len = 0;
9944
9945 eeprom->magic = TG3_EEPROM_MAGIC;
9946
9947 if (offset & 3) {
9948 /* adjustments to start on required 4 byte boundary */
9949 b_offset = offset & 3;
9950 b_count = 4 - b_offset;
9951 if (b_count > len) {
9952 /* i.e. offset=1 len=2 */
9953 b_count = len;
9954 }
Matt Carlsona9dc5292009-02-25 14:25:30 +00009955 ret = tg3_nvram_read_be32(tp, offset-b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009956 if (ret)
9957 return ret;
Matt Carlsonbe98da62010-07-11 09:31:46 +00009958 memcpy(data, ((char *)&val) + b_offset, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009959 len -= b_count;
9960 offset += b_count;
Matt Carlsonc6cdf432010-04-05 10:19:26 +00009961 eeprom->len += b_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009962 }
9963
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009964 /* read bytes up to the last 4 byte boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009965 pd = &data[eeprom->len];
9966 for (i = 0; i < (len - (len & 3)); i += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +00009967 ret = tg3_nvram_read_be32(tp, offset + i, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009968 if (ret) {
9969 eeprom->len += i;
9970 return ret;
9971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009972 memcpy(pd + i, &val, 4);
9973 }
9974 eeprom->len += i;
9975
9976 if (len & 3) {
9977 /* read last bytes not ending on 4 byte boundary */
9978 pd = &data[eeprom->len];
9979 b_count = len & 3;
9980 b_offset = offset + len - b_count;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009981 ret = tg3_nvram_read_be32(tp, b_offset, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009982 if (ret)
9983 return ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009984 memcpy(pd, &val, b_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009985 eeprom->len += b_count;
9986 }
9987 return 0;
9988}
9989
Jeff Garzik6aa20a22006-09-13 13:24:59 -04009990static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009991
9992static int tg3_set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
9993{
9994 struct tg3 *tp = netdev_priv(dev);
9995 int ret;
Al Virob9fc7dc2007-12-17 22:59:57 -08009996 u32 offset, len, b_offset, odd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009997 u8 *buf;
Matt Carlsona9dc5292009-02-25 14:25:30 +00009998 __be32 start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009999
Matt Carlson80096062010-08-02 11:26:06 +000010000 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Michael Chanbc1c7562006-03-20 17:48:03 -080010001 return -EAGAIN;
10002
Joe Perches63c3a662011-04-26 08:12:10 +000010003 if (tg3_flag(tp, NO_NVRAM) ||
Matt Carlsondf259d82009-04-20 06:57:14 +000010004 eeprom->magic != TG3_EEPROM_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010005 return -EINVAL;
10006
10007 offset = eeprom->offset;
10008 len = eeprom->len;
10009
10010 if ((b_offset = (offset & 3))) {
10011 /* adjustments to start on required 4 byte boundary */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010012 ret = tg3_nvram_read_be32(tp, offset-b_offset, &start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010013 if (ret)
10014 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010015 len += b_offset;
10016 offset &= ~3;
Michael Chan1c8594b2005-04-21 17:12:46 -070010017 if (len < 4)
10018 len = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010019 }
10020
10021 odd_len = 0;
Michael Chan1c8594b2005-04-21 17:12:46 -070010022 if (len & 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010023 /* adjustments to end on required 4 byte boundary */
10024 odd_len = 1;
10025 len = (len + 3) & ~3;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010026 ret = tg3_nvram_read_be32(tp, offset+len-4, &end);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010027 if (ret)
10028 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010029 }
10030
10031 buf = data;
10032 if (b_offset || odd_len) {
10033 buf = kmalloc(len, GFP_KERNEL);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010034 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010035 return -ENOMEM;
10036 if (b_offset)
10037 memcpy(buf, &start, 4);
10038 if (odd_len)
10039 memcpy(buf+len-4, &end, 4);
10040 memcpy(buf + b_offset, data, eeprom->len);
10041 }
10042
10043 ret = tg3_nvram_write_block(tp, offset, len, buf);
10044
10045 if (buf != data)
10046 kfree(buf);
10047
10048 return ret;
10049}
10050
10051static int tg3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10052{
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010053 struct tg3 *tp = netdev_priv(dev);
10054
Joe Perches63c3a662011-04-26 08:12:10 +000010055 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010056 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010057 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010058 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010059 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10060 return phy_ethtool_gset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010061 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010062
Linus Torvalds1da177e2005-04-16 15:20:36 -070010063 cmd->supported = (SUPPORTED_Autoneg);
10064
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010065 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010066 cmd->supported |= (SUPPORTED_1000baseT_Half |
10067 SUPPORTED_1000baseT_Full);
10068
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010069 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010070 cmd->supported |= (SUPPORTED_100baseT_Half |
10071 SUPPORTED_100baseT_Full |
10072 SUPPORTED_10baseT_Half |
10073 SUPPORTED_10baseT_Full |
Matt Carlson3bebab52007-11-12 21:22:40 -080010074 SUPPORTED_TP);
Karsten Keilef348142006-05-12 12:49:08 -070010075 cmd->port = PORT_TP;
10076 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010077 cmd->supported |= SUPPORTED_FIBRE;
Karsten Keilef348142006-05-12 12:49:08 -070010078 cmd->port = PORT_FIBRE;
10079 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010080
Linus Torvalds1da177e2005-04-16 15:20:36 -070010081 cmd->advertising = tp->link_config.advertising;
Matt Carlson5bb09772011-06-13 13:39:00 +000010082 if (tg3_flag(tp, PAUSE_AUTONEG)) {
10083 if (tp->link_config.flowctrl & FLOW_CTRL_RX) {
10084 if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10085 cmd->advertising |= ADVERTISED_Pause;
10086 } else {
10087 cmd->advertising |= ADVERTISED_Pause |
10088 ADVERTISED_Asym_Pause;
10089 }
10090 } else if (tp->link_config.flowctrl & FLOW_CTRL_TX) {
10091 cmd->advertising |= ADVERTISED_Asym_Pause;
10092 }
10093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010094 if (netif_running(dev)) {
David Decotigny70739492011-04-27 18:32:40 +000010095 ethtool_cmd_speed_set(cmd, tp->link_config.active_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010096 cmd->duplex = tp->link_config.active_duplex;
Matt Carlson64c22182010-10-14 10:37:44 +000010097 } else {
David Decotigny70739492011-04-27 18:32:40 +000010098 ethtool_cmd_speed_set(cmd, SPEED_INVALID);
Matt Carlson64c22182010-10-14 10:37:44 +000010099 cmd->duplex = DUPLEX_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010100 }
Matt Carlson882e9792009-09-01 13:21:36 +000010101 cmd->phy_address = tp->phy_addr;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010102 cmd->transceiver = XCVR_INTERNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010103 cmd->autoneg = tp->link_config.autoneg;
10104 cmd->maxtxpkt = 0;
10105 cmd->maxrxpkt = 0;
10106 return 0;
10107}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010108
Linus Torvalds1da177e2005-04-16 15:20:36 -070010109static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
10110{
10111 struct tg3 *tp = netdev_priv(dev);
David Decotigny25db0332011-04-27 18:32:39 +000010112 u32 speed = ethtool_cmd_speed(cmd);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010113
Joe Perches63c3a662011-04-26 08:12:10 +000010114 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010115 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010116 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010117 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010118 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
10119 return phy_ethtool_sset(phydev, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010120 }
10121
Matt Carlson7e5856b2009-02-25 14:23:01 +000010122 if (cmd->autoneg != AUTONEG_ENABLE &&
10123 cmd->autoneg != AUTONEG_DISABLE)
Michael Chan37ff2382005-10-26 15:49:51 -070010124 return -EINVAL;
Matt Carlson7e5856b2009-02-25 14:23:01 +000010125
10126 if (cmd->autoneg == AUTONEG_DISABLE &&
10127 cmd->duplex != DUPLEX_FULL &&
10128 cmd->duplex != DUPLEX_HALF)
Michael Chan37ff2382005-10-26 15:49:51 -070010129 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010130
Matt Carlson7e5856b2009-02-25 14:23:01 +000010131 if (cmd->autoneg == AUTONEG_ENABLE) {
10132 u32 mask = ADVERTISED_Autoneg |
10133 ADVERTISED_Pause |
10134 ADVERTISED_Asym_Pause;
10135
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010136 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010137 mask |= ADVERTISED_1000baseT_Half |
10138 ADVERTISED_1000baseT_Full;
10139
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010140 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
Matt Carlson7e5856b2009-02-25 14:23:01 +000010141 mask |= ADVERTISED_100baseT_Half |
10142 ADVERTISED_100baseT_Full |
10143 ADVERTISED_10baseT_Half |
10144 ADVERTISED_10baseT_Full |
10145 ADVERTISED_TP;
10146 else
10147 mask |= ADVERTISED_FIBRE;
10148
10149 if (cmd->advertising & ~mask)
10150 return -EINVAL;
10151
10152 mask &= (ADVERTISED_1000baseT_Half |
10153 ADVERTISED_1000baseT_Full |
10154 ADVERTISED_100baseT_Half |
10155 ADVERTISED_100baseT_Full |
10156 ADVERTISED_10baseT_Half |
10157 ADVERTISED_10baseT_Full);
10158
10159 cmd->advertising &= mask;
10160 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010161 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES) {
David Decotigny25db0332011-04-27 18:32:39 +000010162 if (speed != SPEED_1000)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010163 return -EINVAL;
10164
10165 if (cmd->duplex != DUPLEX_FULL)
10166 return -EINVAL;
10167 } else {
David Decotigny25db0332011-04-27 18:32:39 +000010168 if (speed != SPEED_100 &&
10169 speed != SPEED_10)
Matt Carlson7e5856b2009-02-25 14:23:01 +000010170 return -EINVAL;
10171 }
10172 }
10173
David S. Millerf47c11e2005-06-24 20:18:35 -070010174 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010175
10176 tp->link_config.autoneg = cmd->autoneg;
10177 if (cmd->autoneg == AUTONEG_ENABLE) {
Andy Gospodarek405d8e52007-10-08 01:08:47 -070010178 tp->link_config.advertising = (cmd->advertising |
10179 ADVERTISED_Autoneg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010180 tp->link_config.speed = SPEED_INVALID;
10181 tp->link_config.duplex = DUPLEX_INVALID;
10182 } else {
10183 tp->link_config.advertising = 0;
David Decotigny25db0332011-04-27 18:32:39 +000010184 tp->link_config.speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010185 tp->link_config.duplex = cmd->duplex;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010186 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010187
Michael Chan24fcad62006-12-17 17:06:46 -080010188 tp->link_config.orig_speed = tp->link_config.speed;
10189 tp->link_config.orig_duplex = tp->link_config.duplex;
10190 tp->link_config.orig_autoneg = tp->link_config.autoneg;
10191
Linus Torvalds1da177e2005-04-16 15:20:36 -070010192 if (netif_running(dev))
10193 tg3_setup_phy(tp, 1);
10194
David S. Millerf47c11e2005-06-24 20:18:35 -070010195 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010196
Linus Torvalds1da177e2005-04-16 15:20:36 -070010197 return 0;
10198}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010199
Linus Torvalds1da177e2005-04-16 15:20:36 -070010200static void tg3_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
10201{
10202 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010203
Linus Torvalds1da177e2005-04-16 15:20:36 -070010204 strcpy(info->driver, DRV_MODULE_NAME);
10205 strcpy(info->version, DRV_MODULE_VERSION);
Michael Chanc4e65752006-03-20 22:29:32 -080010206 strcpy(info->fw_version, tp->fw_ver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010207 strcpy(info->bus_info, pci_name(tp->pdev));
10208}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010209
Linus Torvalds1da177e2005-04-16 15:20:36 -070010210static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10211{
10212 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010213
Joe Perches63c3a662011-04-26 08:12:10 +000010214 if (tg3_flag(tp, WOL_CAP) && device_can_wakeup(&tp->pdev->dev))
Gary Zambranoa85feb82007-05-05 11:52:19 -070010215 wol->supported = WAKE_MAGIC;
10216 else
10217 wol->supported = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010218 wol->wolopts = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010219 if (tg3_flag(tp, WOL_ENABLE) && device_can_wakeup(&tp->pdev->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010220 wol->wolopts = WAKE_MAGIC;
10221 memset(&wol->sopass, 0, sizeof(wol->sopass));
10222}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010223
Linus Torvalds1da177e2005-04-16 15:20:36 -070010224static int tg3_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
10225{
10226 struct tg3 *tp = netdev_priv(dev);
Rafael J. Wysocki12dac072008-07-30 16:37:33 -070010227 struct device *dp = &tp->pdev->dev;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010228
Linus Torvalds1da177e2005-04-16 15:20:36 -070010229 if (wol->wolopts & ~WAKE_MAGIC)
10230 return -EINVAL;
10231 if ((wol->wolopts & WAKE_MAGIC) &&
Joe Perches63c3a662011-04-26 08:12:10 +000010232 !(tg3_flag(tp, WOL_CAP) && device_can_wakeup(dp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010233 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010234
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010235 device_set_wakeup_enable(dp, wol->wolopts & WAKE_MAGIC);
10236
David S. Millerf47c11e2005-06-24 20:18:35 -070010237 spin_lock_bh(&tp->lock);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010238 if (device_may_wakeup(dp))
Joe Perches63c3a662011-04-26 08:12:10 +000010239 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysockif2dc0d12010-10-25 13:01:55 +000010240 else
Joe Perches63c3a662011-04-26 08:12:10 +000010241 tg3_flag_clear(tp, WOL_ENABLE);
David S. Millerf47c11e2005-06-24 20:18:35 -070010242 spin_unlock_bh(&tp->lock);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010243
Linus Torvalds1da177e2005-04-16 15:20:36 -070010244 return 0;
10245}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010246
Linus Torvalds1da177e2005-04-16 15:20:36 -070010247static u32 tg3_get_msglevel(struct net_device *dev)
10248{
10249 struct tg3 *tp = netdev_priv(dev);
10250 return tp->msg_enable;
10251}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010252
Linus Torvalds1da177e2005-04-16 15:20:36 -070010253static void tg3_set_msglevel(struct net_device *dev, u32 value)
10254{
10255 struct tg3 *tp = netdev_priv(dev);
10256 tp->msg_enable = value;
10257}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010258
Linus Torvalds1da177e2005-04-16 15:20:36 -070010259static int tg3_nway_reset(struct net_device *dev)
10260{
10261 struct tg3 *tp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262 int r;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010263
Linus Torvalds1da177e2005-04-16 15:20:36 -070010264 if (!netif_running(dev))
10265 return -EAGAIN;
10266
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010267 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Michael Chanc94e3942005-09-27 12:12:42 -070010268 return -EINVAL;
10269
Joe Perches63c3a662011-04-26 08:12:10 +000010270 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010271 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010272 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000010273 r = phy_start_aneg(tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR]);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010274 } else {
10275 u32 bmcr;
10276
10277 spin_lock_bh(&tp->lock);
10278 r = -EINVAL;
10279 tg3_readphy(tp, MII_BMCR, &bmcr);
10280 if (!tg3_readphy(tp, MII_BMCR, &bmcr) &&
10281 ((bmcr & BMCR_ANENABLE) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010282 (tp->phy_flags & TG3_PHYFLG_PARALLEL_DETECT))) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010283 tg3_writephy(tp, MII_BMCR, bmcr | BMCR_ANRESTART |
10284 BMCR_ANENABLE);
10285 r = 0;
10286 }
10287 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010288 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010289
Linus Torvalds1da177e2005-04-16 15:20:36 -070010290 return r;
10291}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010292
Linus Torvalds1da177e2005-04-16 15:20:36 -070010293static void tg3_get_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10294{
10295 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010296
Matt Carlson2c49a442010-09-30 10:34:35 +000010297 ering->rx_max_pending = tp->rx_std_ring_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010298 ering->rx_mini_max_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010299 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Matt Carlson2c49a442010-09-30 10:34:35 +000010300 ering->rx_jumbo_max_pending = tp->rx_jmb_ring_mask;
Michael Chan4f81c322006-03-20 21:33:42 -080010301 else
10302 ering->rx_jumbo_max_pending = 0;
10303
10304 ering->tx_max_pending = TG3_TX_RING_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010305
10306 ering->rx_pending = tp->rx_pending;
10307 ering->rx_mini_pending = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010308 if (tg3_flag(tp, JUMBO_RING_ENABLE))
Michael Chan4f81c322006-03-20 21:33:42 -080010309 ering->rx_jumbo_pending = tp->rx_jumbo_pending;
10310 else
10311 ering->rx_jumbo_pending = 0;
10312
Matt Carlsonf3f3f272009-08-28 14:03:21 +000010313 ering->tx_pending = tp->napi[0].tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010314}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010315
Linus Torvalds1da177e2005-04-16 15:20:36 -070010316static int tg3_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ering)
10317{
10318 struct tg3 *tp = netdev_priv(dev);
Matt Carlson646c9ed2009-09-01 12:58:41 +000010319 int i, irq_sync = 0, err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010320
Matt Carlson2c49a442010-09-30 10:34:35 +000010321 if ((ering->rx_pending > tp->rx_std_ring_mask) ||
10322 (ering->rx_jumbo_pending > tp->rx_jmb_ring_mask) ||
Michael Chanbc3a9252006-10-18 20:55:18 -070010323 (ering->tx_pending > TG3_TX_RING_SIZE - 1) ||
10324 (ering->tx_pending <= MAX_SKB_FRAGS) ||
Joe Perches63c3a662011-04-26 08:12:10 +000010325 (tg3_flag(tp, TSO_BUG) &&
Michael Chanbc3a9252006-10-18 20:55:18 -070010326 (ering->tx_pending <= (MAX_SKB_FRAGS * 3))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010327 return -EINVAL;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010328
Michael Chanbbe832c2005-06-24 20:20:04 -070010329 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010330 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010331 tg3_netif_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010332 irq_sync = 1;
10333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010334
Michael Chanbbe832c2005-06-24 20:20:04 -070010335 tg3_full_lock(tp, irq_sync);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010336
Linus Torvalds1da177e2005-04-16 15:20:36 -070010337 tp->rx_pending = ering->rx_pending;
10338
Joe Perches63c3a662011-04-26 08:12:10 +000010339 if (tg3_flag(tp, MAX_RXPEND_64) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070010340 tp->rx_pending > 63)
10341 tp->rx_pending = 63;
10342 tp->rx_jumbo_pending = ering->rx_jumbo_pending;
Matt Carlson646c9ed2009-09-01 12:58:41 +000010343
Matt Carlson6fd45cb2010-09-15 08:59:57 +000010344 for (i = 0; i < tp->irq_max; i++)
Matt Carlson646c9ed2009-09-01 12:58:41 +000010345 tp->napi[i].tx_pending = ering->tx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010346
10347 if (netif_running(dev)) {
Michael Chan944d9802005-05-29 14:57:48 -070010348 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Michael Chanb9ec6c12006-07-25 16:37:27 -070010349 err = tg3_restart_hw(tp, 1);
10350 if (!err)
10351 tg3_netif_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010352 }
10353
David S. Millerf47c11e2005-06-24 20:18:35 -070010354 tg3_full_unlock(tp);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010355
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010356 if (irq_sync && !err)
10357 tg3_phy_start(tp);
10358
Michael Chanb9ec6c12006-07-25 16:37:27 -070010359 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010360}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010361
Linus Torvalds1da177e2005-04-16 15:20:36 -070010362static void tg3_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10363{
10364 struct tg3 *tp = netdev_priv(dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010365
Joe Perches63c3a662011-04-26 08:12:10 +000010366 epause->autoneg = !!tg3_flag(tp, PAUSE_AUTONEG);
Matt Carlson8d018622007-12-20 20:05:44 -080010367
Steve Glendinninge18ce342008-12-16 02:00:00 -080010368 if (tp->link_config.active_flowctrl & FLOW_CTRL_RX)
Matt Carlson8d018622007-12-20 20:05:44 -080010369 epause->rx_pause = 1;
10370 else
10371 epause->rx_pause = 0;
10372
Steve Glendinninge18ce342008-12-16 02:00:00 -080010373 if (tp->link_config.active_flowctrl & FLOW_CTRL_TX)
Matt Carlson8d018622007-12-20 20:05:44 -080010374 epause->tx_pause = 1;
10375 else
10376 epause->tx_pause = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010377}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010378
Linus Torvalds1da177e2005-04-16 15:20:36 -070010379static int tg3_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *epause)
10380{
10381 struct tg3 *tp = netdev_priv(dev);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010382 int err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010383
Joe Perches63c3a662011-04-26 08:12:10 +000010384 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson27121682010-02-17 15:16:57 +000010385 u32 newadv;
10386 struct phy_device *phydev;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010387
Matt Carlson27121682010-02-17 15:16:57 +000010388 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010389
Matt Carlson27121682010-02-17 15:16:57 +000010390 if (!(phydev->supported & SUPPORTED_Pause) ||
10391 (!(phydev->supported & SUPPORTED_Asym_Pause) &&
Nicolas Kaiser2259dca2010-10-07 23:29:27 +000010392 (epause->rx_pause != epause->tx_pause)))
Matt Carlson27121682010-02-17 15:16:57 +000010393 return -EINVAL;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010394
Matt Carlson27121682010-02-17 15:16:57 +000010395 tp->link_config.flowctrl = 0;
10396 if (epause->rx_pause) {
10397 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010398
Matt Carlson27121682010-02-17 15:16:57 +000010399 if (epause->tx_pause) {
Steve Glendinninge18ce342008-12-16 02:00:00 -080010400 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlson27121682010-02-17 15:16:57 +000010401 newadv = ADVERTISED_Pause;
10402 } else
10403 newadv = ADVERTISED_Pause |
10404 ADVERTISED_Asym_Pause;
10405 } else if (epause->tx_pause) {
10406 tp->link_config.flowctrl |= FLOW_CTRL_TX;
10407 newadv = ADVERTISED_Asym_Pause;
10408 } else
10409 newadv = 0;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010410
Matt Carlson27121682010-02-17 15:16:57 +000010411 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010412 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010413 else
Joe Perches63c3a662011-04-26 08:12:10 +000010414 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlson27121682010-02-17 15:16:57 +000010415
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010416 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson27121682010-02-17 15:16:57 +000010417 u32 oldadv = phydev->advertising &
10418 (ADVERTISED_Pause | ADVERTISED_Asym_Pause);
10419 if (oldadv != newadv) {
10420 phydev->advertising &=
10421 ~(ADVERTISED_Pause |
10422 ADVERTISED_Asym_Pause);
10423 phydev->advertising |= newadv;
10424 if (phydev->autoneg) {
10425 /*
10426 * Always renegotiate the link to
10427 * inform our link partner of our
10428 * flow control settings, even if the
10429 * flow control is forced. Let
10430 * tg3_adjust_link() do the final
10431 * flow control setup.
10432 */
10433 return phy_start_aneg(phydev);
10434 }
10435 }
10436
10437 if (!epause->autoneg)
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010438 tg3_setup_flow_control(tp, 0, 0);
Matt Carlson27121682010-02-17 15:16:57 +000010439 } else {
10440 tp->link_config.orig_advertising &=
10441 ~(ADVERTISED_Pause |
10442 ADVERTISED_Asym_Pause);
10443 tp->link_config.orig_advertising |= newadv;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010444 }
10445 } else {
10446 int irq_sync = 0;
10447
10448 if (netif_running(dev)) {
10449 tg3_netif_stop(tp);
10450 irq_sync = 1;
10451 }
10452
10453 tg3_full_lock(tp, irq_sync);
10454
10455 if (epause->autoneg)
Joe Perches63c3a662011-04-26 08:12:10 +000010456 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010457 else
Joe Perches63c3a662011-04-26 08:12:10 +000010458 tg3_flag_clear(tp, PAUSE_AUTONEG);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010459 if (epause->rx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010460 tp->link_config.flowctrl |= FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010461 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010462 tp->link_config.flowctrl &= ~FLOW_CTRL_RX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010463 if (epause->tx_pause)
Steve Glendinninge18ce342008-12-16 02:00:00 -080010464 tp->link_config.flowctrl |= FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010465 else
Steve Glendinninge18ce342008-12-16 02:00:00 -080010466 tp->link_config.flowctrl &= ~FLOW_CTRL_TX;
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070010467
10468 if (netif_running(dev)) {
10469 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
10470 err = tg3_restart_hw(tp, 1);
10471 if (!err)
10472 tg3_netif_start(tp);
10473 }
10474
10475 tg3_full_unlock(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070010476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010477
Michael Chanb9ec6c12006-07-25 16:37:27 -070010478 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010479}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010480
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010481static int tg3_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010482{
Jeff Garzikb9f2c042007-10-03 18:07:32 -070010483 switch (sset) {
10484 case ETH_SS_TEST:
10485 return TG3_NUM_TEST;
10486 case ETH_SS_STATS:
10487 return TG3_NUM_STATS;
10488 default:
10489 return -EOPNOTSUPP;
10490 }
Michael Chan4cafd3f2005-05-29 14:56:34 -070010491}
10492
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010493static void tg3_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010494{
10495 switch (stringset) {
10496 case ETH_SS_STATS:
10497 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
10498 break;
Michael Chan4cafd3f2005-05-29 14:56:34 -070010499 case ETH_SS_TEST:
10500 memcpy(buf, &ethtool_test_keys, sizeof(ethtool_test_keys));
10501 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010502 default:
10503 WARN_ON(1); /* we need a WARN() */
10504 break;
10505 }
10506}
10507
stephen hemminger81b87092011-04-04 08:43:50 +000010508static int tg3_set_phys_id(struct net_device *dev,
10509 enum ethtool_phys_id_state state)
Michael Chan4009a932005-09-05 17:52:54 -070010510{
10511 struct tg3 *tp = netdev_priv(dev);
Michael Chan4009a932005-09-05 17:52:54 -070010512
10513 if (!netif_running(tp->dev))
10514 return -EAGAIN;
10515
stephen hemminger81b87092011-04-04 08:43:50 +000010516 switch (state) {
10517 case ETHTOOL_ID_ACTIVE:
Allan, Bruce Wfce55922011-04-13 13:09:10 +000010518 return 1; /* cycle on/off once per second */
Michael Chan4009a932005-09-05 17:52:54 -070010519
stephen hemminger81b87092011-04-04 08:43:50 +000010520 case ETHTOOL_ID_ON:
10521 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10522 LED_CTRL_1000MBPS_ON |
10523 LED_CTRL_100MBPS_ON |
10524 LED_CTRL_10MBPS_ON |
10525 LED_CTRL_TRAFFIC_OVERRIDE |
10526 LED_CTRL_TRAFFIC_BLINK |
10527 LED_CTRL_TRAFFIC_LED);
10528 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010529
stephen hemminger81b87092011-04-04 08:43:50 +000010530 case ETHTOOL_ID_OFF:
10531 tw32(MAC_LED_CTRL, LED_CTRL_LNKLED_OVERRIDE |
10532 LED_CTRL_TRAFFIC_OVERRIDE);
10533 break;
Michael Chan4009a932005-09-05 17:52:54 -070010534
stephen hemminger81b87092011-04-04 08:43:50 +000010535 case ETHTOOL_ID_INACTIVE:
10536 tw32(MAC_LED_CTRL, tp->led_ctrl);
10537 break;
Michael Chan4009a932005-09-05 17:52:54 -070010538 }
stephen hemminger81b87092011-04-04 08:43:50 +000010539
Michael Chan4009a932005-09-05 17:52:54 -070010540 return 0;
10541}
10542
Matt Carlsonde6f31e2010-04-12 06:58:30 +000010543static void tg3_get_ethtool_stats(struct net_device *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070010544 struct ethtool_stats *estats, u64 *tmp_stats)
10545{
10546 struct tg3 *tp = netdev_priv(dev);
10547 memcpy(tmp_stats, tg3_get_estats(tp), sizeof(tp->estats));
10548}
10549
Matt Carlsonc3e94502011-04-13 11:05:08 +000010550static __be32 * tg3_vpd_readblock(struct tg3 *tp)
10551{
10552 int i;
10553 __be32 *buf;
10554 u32 offset = 0, len = 0;
10555 u32 magic, val;
10556
Joe Perches63c3a662011-04-26 08:12:10 +000010557 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &magic))
Matt Carlsonc3e94502011-04-13 11:05:08 +000010558 return NULL;
10559
10560 if (magic == TG3_EEPROM_MAGIC) {
10561 for (offset = TG3_NVM_DIR_START;
10562 offset < TG3_NVM_DIR_END;
10563 offset += TG3_NVM_DIRENT_SIZE) {
10564 if (tg3_nvram_read(tp, offset, &val))
10565 return NULL;
10566
10567 if ((val >> TG3_NVM_DIRTYPE_SHIFT) ==
10568 TG3_NVM_DIRTYPE_EXTVPD)
10569 break;
10570 }
10571
10572 if (offset != TG3_NVM_DIR_END) {
10573 len = (val & TG3_NVM_DIRTYPE_LENMSK) * 4;
10574 if (tg3_nvram_read(tp, offset + 4, &offset))
10575 return NULL;
10576
10577 offset = tg3_nvram_logical_addr(tp, offset);
10578 }
10579 }
10580
10581 if (!offset || !len) {
10582 offset = TG3_NVM_VPD_OFF;
10583 len = TG3_NVM_VPD_LEN;
10584 }
10585
10586 buf = kmalloc(len, GFP_KERNEL);
10587 if (buf == NULL)
10588 return NULL;
10589
10590 if (magic == TG3_EEPROM_MAGIC) {
10591 for (i = 0; i < len; i += 4) {
10592 /* The data is in little-endian format in NVRAM.
10593 * Use the big-endian read routines to preserve
10594 * the byte order as it exists in NVRAM.
10595 */
10596 if (tg3_nvram_read_be32(tp, offset + i, &buf[i/4]))
10597 goto error;
10598 }
10599 } else {
10600 u8 *ptr;
10601 ssize_t cnt;
10602 unsigned int pos = 0;
10603
10604 ptr = (u8 *)&buf[0];
10605 for (i = 0; pos < len && i < 3; i++, pos += cnt, ptr += cnt) {
10606 cnt = pci_read_vpd(tp->pdev, pos,
10607 len - pos, ptr);
10608 if (cnt == -ETIMEDOUT || cnt == -EINTR)
10609 cnt = 0;
10610 else if (cnt < 0)
10611 goto error;
10612 }
10613 if (pos != len)
10614 goto error;
10615 }
10616
10617 return buf;
10618
10619error:
10620 kfree(buf);
10621 return NULL;
10622}
10623
Michael Chan566f86a2005-05-29 14:56:58 -070010624#define NVRAM_TEST_SIZE 0x100
Matt Carlsona5767de2007-11-12 21:10:58 -080010625#define NVRAM_SELFBOOT_FORMAT1_0_SIZE 0x14
10626#define NVRAM_SELFBOOT_FORMAT1_2_SIZE 0x18
10627#define NVRAM_SELFBOOT_FORMAT1_3_SIZE 0x1c
Matt Carlson727a6d92011-06-13 13:38:58 +000010628#define NVRAM_SELFBOOT_FORMAT1_4_SIZE 0x20
10629#define NVRAM_SELFBOOT_FORMAT1_5_SIZE 0x24
10630#define NVRAM_SELFBOOT_FORMAT1_6_SIZE 0x4c
Michael Chanb16250e2006-09-27 16:10:14 -070010631#define NVRAM_SELFBOOT_HW_SIZE 0x20
10632#define NVRAM_SELFBOOT_DATA_SIZE 0x1c
Michael Chan566f86a2005-05-29 14:56:58 -070010633
10634static int tg3_test_nvram(struct tg3 *tp)
10635{
Al Virob9fc7dc2007-12-17 22:59:57 -080010636 u32 csum, magic;
Matt Carlsona9dc5292009-02-25 14:25:30 +000010637 __be32 *buf;
Andy Gospodarekab0049b2007-09-06 20:42:14 +010010638 int i, j, k, err = 0, size;
Michael Chan566f86a2005-05-29 14:56:58 -070010639
Joe Perches63c3a662011-04-26 08:12:10 +000010640 if (tg3_flag(tp, NO_NVRAM))
Matt Carlsondf259d82009-04-20 06:57:14 +000010641 return 0;
10642
Matt Carlsone4f34112009-02-25 14:25:00 +000010643 if (tg3_nvram_read(tp, 0, &magic) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080010644 return -EIO;
10645
Michael Chan1b277772006-03-20 22:27:48 -080010646 if (magic == TG3_EEPROM_MAGIC)
10647 size = NVRAM_TEST_SIZE;
Michael Chanb16250e2006-09-27 16:10:14 -070010648 else if ((magic & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW) {
Matt Carlsona5767de2007-11-12 21:10:58 -080010649 if ((magic & TG3_EEPROM_SB_FORMAT_MASK) ==
10650 TG3_EEPROM_SB_FORMAT_1) {
10651 switch (magic & TG3_EEPROM_SB_REVISION_MASK) {
10652 case TG3_EEPROM_SB_REVISION_0:
10653 size = NVRAM_SELFBOOT_FORMAT1_0_SIZE;
10654 break;
10655 case TG3_EEPROM_SB_REVISION_2:
10656 size = NVRAM_SELFBOOT_FORMAT1_2_SIZE;
10657 break;
10658 case TG3_EEPROM_SB_REVISION_3:
10659 size = NVRAM_SELFBOOT_FORMAT1_3_SIZE;
10660 break;
Matt Carlson727a6d92011-06-13 13:38:58 +000010661 case TG3_EEPROM_SB_REVISION_4:
10662 size = NVRAM_SELFBOOT_FORMAT1_4_SIZE;
10663 break;
10664 case TG3_EEPROM_SB_REVISION_5:
10665 size = NVRAM_SELFBOOT_FORMAT1_5_SIZE;
10666 break;
10667 case TG3_EEPROM_SB_REVISION_6:
10668 size = NVRAM_SELFBOOT_FORMAT1_6_SIZE;
10669 break;
Matt Carlsona5767de2007-11-12 21:10:58 -080010670 default:
Matt Carlson727a6d92011-06-13 13:38:58 +000010671 return -EIO;
Matt Carlsona5767de2007-11-12 21:10:58 -080010672 }
10673 } else
Michael Chan1b277772006-03-20 22:27:48 -080010674 return 0;
Michael Chanb16250e2006-09-27 16:10:14 -070010675 } else if ((magic & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
10676 size = NVRAM_SELFBOOT_HW_SIZE;
10677 else
Michael Chan1b277772006-03-20 22:27:48 -080010678 return -EIO;
10679
10680 buf = kmalloc(size, GFP_KERNEL);
Michael Chan566f86a2005-05-29 14:56:58 -070010681 if (buf == NULL)
10682 return -ENOMEM;
10683
Michael Chan1b277772006-03-20 22:27:48 -080010684 err = -EIO;
10685 for (i = 0, j = 0; i < size; i += 4, j++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000010686 err = tg3_nvram_read_be32(tp, i, &buf[j]);
10687 if (err)
Michael Chan566f86a2005-05-29 14:56:58 -070010688 break;
Michael Chan566f86a2005-05-29 14:56:58 -070010689 }
Michael Chan1b277772006-03-20 22:27:48 -080010690 if (i < size)
Michael Chan566f86a2005-05-29 14:56:58 -070010691 goto out;
10692
Michael Chan1b277772006-03-20 22:27:48 -080010693 /* Selfboot format */
Matt Carlsona9dc5292009-02-25 14:25:30 +000010694 magic = be32_to_cpu(buf[0]);
Al Virob9fc7dc2007-12-17 22:59:57 -080010695 if ((magic & TG3_EEPROM_MAGIC_FW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010696 TG3_EEPROM_MAGIC_FW) {
Michael Chan1b277772006-03-20 22:27:48 -080010697 u8 *buf8 = (u8 *) buf, csum8 = 0;
10698
Al Virob9fc7dc2007-12-17 22:59:57 -080010699 if ((magic & TG3_EEPROM_SB_REVISION_MASK) ==
Matt Carlsona5767de2007-11-12 21:10:58 -080010700 TG3_EEPROM_SB_REVISION_2) {
10701 /* For rev 2, the csum doesn't include the MBA. */
10702 for (i = 0; i < TG3_EEPROM_SB_F1R2_MBA_OFF; i++)
10703 csum8 += buf8[i];
10704 for (i = TG3_EEPROM_SB_F1R2_MBA_OFF + 4; i < size; i++)
10705 csum8 += buf8[i];
10706 } else {
10707 for (i = 0; i < size; i++)
10708 csum8 += buf8[i];
10709 }
Michael Chan1b277772006-03-20 22:27:48 -080010710
Adrian Bunkad96b482006-04-05 22:21:04 -070010711 if (csum8 == 0) {
10712 err = 0;
10713 goto out;
10714 }
10715
10716 err = -EIO;
10717 goto out;
Michael Chan1b277772006-03-20 22:27:48 -080010718 }
Michael Chan566f86a2005-05-29 14:56:58 -070010719
Al Virob9fc7dc2007-12-17 22:59:57 -080010720 if ((magic & TG3_EEPROM_MAGIC_HW_MSK) ==
Michael Chanb16250e2006-09-27 16:10:14 -070010721 TG3_EEPROM_MAGIC_HW) {
10722 u8 data[NVRAM_SELFBOOT_DATA_SIZE];
Matt Carlsona9dc5292009-02-25 14:25:30 +000010723 u8 parity[NVRAM_SELFBOOT_DATA_SIZE];
Michael Chanb16250e2006-09-27 16:10:14 -070010724 u8 *buf8 = (u8 *) buf;
Michael Chanb16250e2006-09-27 16:10:14 -070010725
10726 /* Separate the parity bits and the data bytes. */
10727 for (i = 0, j = 0, k = 0; i < NVRAM_SELFBOOT_HW_SIZE; i++) {
10728 if ((i == 0) || (i == 8)) {
10729 int l;
10730 u8 msk;
10731
10732 for (l = 0, msk = 0x80; l < 7; l++, msk >>= 1)
10733 parity[k++] = buf8[i] & msk;
10734 i++;
Matt Carlson859a588792010-04-05 10:19:28 +000010735 } else if (i == 16) {
Michael Chanb16250e2006-09-27 16:10:14 -070010736 int l;
10737 u8 msk;
10738
10739 for (l = 0, msk = 0x20; l < 6; l++, msk >>= 1)
10740 parity[k++] = buf8[i] & msk;
10741 i++;
10742
10743 for (l = 0, msk = 0x80; l < 8; l++, msk >>= 1)
10744 parity[k++] = buf8[i] & msk;
10745 i++;
10746 }
10747 data[j++] = buf8[i];
10748 }
10749
10750 err = -EIO;
10751 for (i = 0; i < NVRAM_SELFBOOT_DATA_SIZE; i++) {
10752 u8 hw8 = hweight8(data[i]);
10753
10754 if ((hw8 & 0x1) && parity[i])
10755 goto out;
10756 else if (!(hw8 & 0x1) && !parity[i])
10757 goto out;
10758 }
10759 err = 0;
10760 goto out;
10761 }
10762
Matt Carlson01c3a392011-03-09 16:58:20 +000010763 err = -EIO;
10764
Michael Chan566f86a2005-05-29 14:56:58 -070010765 /* Bootstrap checksum at offset 0x10 */
10766 csum = calc_crc((unsigned char *) buf, 0x10);
Matt Carlson01c3a392011-03-09 16:58:20 +000010767 if (csum != le32_to_cpu(buf[0x10/4]))
Michael Chan566f86a2005-05-29 14:56:58 -070010768 goto out;
10769
10770 /* Manufacturing block starts at offset 0x74, checksum at 0xfc */
10771 csum = calc_crc((unsigned char *) &buf[0x74/4], 0x88);
Matt Carlson01c3a392011-03-09 16:58:20 +000010772 if (csum != le32_to_cpu(buf[0xfc/4]))
Matt Carlsona9dc5292009-02-25 14:25:30 +000010773 goto out;
Michael Chan566f86a2005-05-29 14:56:58 -070010774
Matt Carlsonc3e94502011-04-13 11:05:08 +000010775 kfree(buf);
10776
10777 buf = tg3_vpd_readblock(tp);
10778 if (!buf)
10779 return -ENOMEM;
Matt Carlsond4894f32011-03-09 16:58:21 +000010780
10781 i = pci_vpd_find_tag((u8 *)buf, 0, TG3_NVM_VPD_LEN,
10782 PCI_VPD_LRDT_RO_DATA);
10783 if (i > 0) {
10784 j = pci_vpd_lrdt_size(&((u8 *)buf)[i]);
10785 if (j < 0)
10786 goto out;
10787
10788 if (i + PCI_VPD_LRDT_TAG_SIZE + j > TG3_NVM_VPD_LEN)
10789 goto out;
10790
10791 i += PCI_VPD_LRDT_TAG_SIZE;
10792 j = pci_vpd_find_info_keyword((u8 *)buf, i, j,
10793 PCI_VPD_RO_KEYWORD_CHKSUM);
10794 if (j > 0) {
10795 u8 csum8 = 0;
10796
10797 j += PCI_VPD_INFO_FLD_HDR_SIZE;
10798
10799 for (i = 0; i <= j; i++)
10800 csum8 += ((u8 *)buf)[i];
10801
10802 if (csum8)
10803 goto out;
10804 }
10805 }
10806
Michael Chan566f86a2005-05-29 14:56:58 -070010807 err = 0;
10808
10809out:
10810 kfree(buf);
10811 return err;
10812}
10813
Michael Chanca430072005-05-29 14:57:23 -070010814#define TG3_SERDES_TIMEOUT_SEC 2
10815#define TG3_COPPER_TIMEOUT_SEC 6
10816
10817static int tg3_test_link(struct tg3 *tp)
10818{
10819 int i, max;
10820
10821 if (!netif_running(tp->dev))
10822 return -ENODEV;
10823
Matt Carlsonf07e9af2010-08-02 11:26:07 +000010824 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
Michael Chanca430072005-05-29 14:57:23 -070010825 max = TG3_SERDES_TIMEOUT_SEC;
10826 else
10827 max = TG3_COPPER_TIMEOUT_SEC;
10828
10829 for (i = 0; i < max; i++) {
10830 if (netif_carrier_ok(tp->dev))
10831 return 0;
10832
10833 if (msleep_interruptible(1000))
10834 break;
10835 }
10836
10837 return -EIO;
10838}
10839
Michael Chana71116d2005-05-29 14:58:11 -070010840/* Only test the commonly used registers */
David S. Miller30ca3e32006-03-20 23:02:36 -080010841static int tg3_test_registers(struct tg3 *tp)
Michael Chana71116d2005-05-29 14:58:11 -070010842{
Michael Chanb16250e2006-09-27 16:10:14 -070010843 int i, is_5705, is_5750;
Michael Chana71116d2005-05-29 14:58:11 -070010844 u32 offset, read_mask, write_mask, val, save_val, read_val;
10845 static struct {
10846 u16 offset;
10847 u16 flags;
10848#define TG3_FL_5705 0x1
10849#define TG3_FL_NOT_5705 0x2
10850#define TG3_FL_NOT_5788 0x4
Michael Chanb16250e2006-09-27 16:10:14 -070010851#define TG3_FL_NOT_5750 0x8
Michael Chana71116d2005-05-29 14:58:11 -070010852 u32 read_mask;
10853 u32 write_mask;
10854 } reg_tbl[] = {
10855 /* MAC Control Registers */
10856 { MAC_MODE, TG3_FL_NOT_5705,
10857 0x00000000, 0x00ef6f8c },
10858 { MAC_MODE, TG3_FL_5705,
10859 0x00000000, 0x01ef6b8c },
10860 { MAC_STATUS, TG3_FL_NOT_5705,
10861 0x03800107, 0x00000000 },
10862 { MAC_STATUS, TG3_FL_5705,
10863 0x03800100, 0x00000000 },
10864 { MAC_ADDR_0_HIGH, 0x0000,
10865 0x00000000, 0x0000ffff },
10866 { MAC_ADDR_0_LOW, 0x0000,
Matt Carlsonc6cdf432010-04-05 10:19:26 +000010867 0x00000000, 0xffffffff },
Michael Chana71116d2005-05-29 14:58:11 -070010868 { MAC_RX_MTU_SIZE, 0x0000,
10869 0x00000000, 0x0000ffff },
10870 { MAC_TX_MODE, 0x0000,
10871 0x00000000, 0x00000070 },
10872 { MAC_TX_LENGTHS, 0x0000,
10873 0x00000000, 0x00003fff },
10874 { MAC_RX_MODE, TG3_FL_NOT_5705,
10875 0x00000000, 0x000007fc },
10876 { MAC_RX_MODE, TG3_FL_5705,
10877 0x00000000, 0x000007dc },
10878 { MAC_HASH_REG_0, 0x0000,
10879 0x00000000, 0xffffffff },
10880 { MAC_HASH_REG_1, 0x0000,
10881 0x00000000, 0xffffffff },
10882 { MAC_HASH_REG_2, 0x0000,
10883 0x00000000, 0xffffffff },
10884 { MAC_HASH_REG_3, 0x0000,
10885 0x00000000, 0xffffffff },
10886
10887 /* Receive Data and Receive BD Initiator Control Registers. */
10888 { RCVDBDI_JUMBO_BD+0, TG3_FL_NOT_5705,
10889 0x00000000, 0xffffffff },
10890 { RCVDBDI_JUMBO_BD+4, TG3_FL_NOT_5705,
10891 0x00000000, 0xffffffff },
10892 { RCVDBDI_JUMBO_BD+8, TG3_FL_NOT_5705,
10893 0x00000000, 0x00000003 },
10894 { RCVDBDI_JUMBO_BD+0xc, TG3_FL_NOT_5705,
10895 0x00000000, 0xffffffff },
10896 { RCVDBDI_STD_BD+0, 0x0000,
10897 0x00000000, 0xffffffff },
10898 { RCVDBDI_STD_BD+4, 0x0000,
10899 0x00000000, 0xffffffff },
10900 { RCVDBDI_STD_BD+8, 0x0000,
10901 0x00000000, 0xffff0002 },
10902 { RCVDBDI_STD_BD+0xc, 0x0000,
10903 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010904
Michael Chana71116d2005-05-29 14:58:11 -070010905 /* Receive BD Initiator Control Registers. */
10906 { RCVBDI_STD_THRESH, TG3_FL_NOT_5705,
10907 0x00000000, 0xffffffff },
10908 { RCVBDI_STD_THRESH, TG3_FL_5705,
10909 0x00000000, 0x000003ff },
10910 { RCVBDI_JUMBO_THRESH, TG3_FL_NOT_5705,
10911 0x00000000, 0xffffffff },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010912
Michael Chana71116d2005-05-29 14:58:11 -070010913 /* Host Coalescing Control Registers. */
10914 { HOSTCC_MODE, TG3_FL_NOT_5705,
10915 0x00000000, 0x00000004 },
10916 { HOSTCC_MODE, TG3_FL_5705,
10917 0x00000000, 0x000000f6 },
10918 { HOSTCC_RXCOL_TICKS, TG3_FL_NOT_5705,
10919 0x00000000, 0xffffffff },
10920 { HOSTCC_RXCOL_TICKS, TG3_FL_5705,
10921 0x00000000, 0x000003ff },
10922 { HOSTCC_TXCOL_TICKS, TG3_FL_NOT_5705,
10923 0x00000000, 0xffffffff },
10924 { HOSTCC_TXCOL_TICKS, TG3_FL_5705,
10925 0x00000000, 0x000003ff },
10926 { HOSTCC_RXMAX_FRAMES, TG3_FL_NOT_5705,
10927 0x00000000, 0xffffffff },
10928 { HOSTCC_RXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10929 0x00000000, 0x000000ff },
10930 { HOSTCC_TXMAX_FRAMES, TG3_FL_NOT_5705,
10931 0x00000000, 0xffffffff },
10932 { HOSTCC_TXMAX_FRAMES, TG3_FL_5705 | TG3_FL_NOT_5788,
10933 0x00000000, 0x000000ff },
10934 { HOSTCC_RXCOAL_TICK_INT, TG3_FL_NOT_5705,
10935 0x00000000, 0xffffffff },
10936 { HOSTCC_TXCOAL_TICK_INT, TG3_FL_NOT_5705,
10937 0x00000000, 0xffffffff },
10938 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10939 0x00000000, 0xffffffff },
10940 { HOSTCC_RXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10941 0x00000000, 0x000000ff },
10942 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_NOT_5705,
10943 0x00000000, 0xffffffff },
10944 { HOSTCC_TXCOAL_MAXF_INT, TG3_FL_5705 | TG3_FL_NOT_5788,
10945 0x00000000, 0x000000ff },
10946 { HOSTCC_STAT_COAL_TICKS, TG3_FL_NOT_5705,
10947 0x00000000, 0xffffffff },
10948 { HOSTCC_STATS_BLK_HOST_ADDR, TG3_FL_NOT_5705,
10949 0x00000000, 0xffffffff },
10950 { HOSTCC_STATS_BLK_HOST_ADDR+4, TG3_FL_NOT_5705,
10951 0x00000000, 0xffffffff },
10952 { HOSTCC_STATUS_BLK_HOST_ADDR, 0x0000,
10953 0x00000000, 0xffffffff },
10954 { HOSTCC_STATUS_BLK_HOST_ADDR+4, 0x0000,
10955 0x00000000, 0xffffffff },
10956 { HOSTCC_STATS_BLK_NIC_ADDR, 0x0000,
10957 0xffffffff, 0x00000000 },
10958 { HOSTCC_STATUS_BLK_NIC_ADDR, 0x0000,
10959 0xffffffff, 0x00000000 },
10960
10961 /* Buffer Manager Control Registers. */
Michael Chanb16250e2006-09-27 16:10:14 -070010962 { BUFMGR_MB_POOL_ADDR, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010963 0x00000000, 0x007fff80 },
Michael Chanb16250e2006-09-27 16:10:14 -070010964 { BUFMGR_MB_POOL_SIZE, TG3_FL_NOT_5750,
Michael Chana71116d2005-05-29 14:58:11 -070010965 0x00000000, 0x007fffff },
10966 { BUFMGR_MB_RDMA_LOW_WATER, 0x0000,
10967 0x00000000, 0x0000003f },
10968 { BUFMGR_MB_MACRX_LOW_WATER, 0x0000,
10969 0x00000000, 0x000001ff },
10970 { BUFMGR_MB_HIGH_WATER, 0x0000,
10971 0x00000000, 0x000001ff },
10972 { BUFMGR_DMA_DESC_POOL_ADDR, TG3_FL_NOT_5705,
10973 0xffffffff, 0x00000000 },
10974 { BUFMGR_DMA_DESC_POOL_SIZE, TG3_FL_NOT_5705,
10975 0xffffffff, 0x00000000 },
Jeff Garzik6aa20a22006-09-13 13:24:59 -040010976
Michael Chana71116d2005-05-29 14:58:11 -070010977 /* Mailbox Registers */
10978 { GRCMBOX_RCVSTD_PROD_IDX+4, 0x0000,
10979 0x00000000, 0x000001ff },
10980 { GRCMBOX_RCVJUMBO_PROD_IDX+4, TG3_FL_NOT_5705,
10981 0x00000000, 0x000001ff },
10982 { GRCMBOX_RCVRET_CON_IDX_0+4, 0x0000,
10983 0x00000000, 0x000007ff },
10984 { GRCMBOX_SNDHOST_PROD_IDX_0+4, 0x0000,
10985 0x00000000, 0x000001ff },
10986
10987 { 0xffff, 0x0000, 0x00000000, 0x00000000 },
10988 };
10989
Michael Chanb16250e2006-09-27 16:10:14 -070010990 is_5705 = is_5750 = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000010991 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chana71116d2005-05-29 14:58:11 -070010992 is_5705 = 1;
Joe Perches63c3a662011-04-26 08:12:10 +000010993 if (tg3_flag(tp, 5750_PLUS))
Michael Chanb16250e2006-09-27 16:10:14 -070010994 is_5750 = 1;
10995 }
Michael Chana71116d2005-05-29 14:58:11 -070010996
10997 for (i = 0; reg_tbl[i].offset != 0xffff; i++) {
10998 if (is_5705 && (reg_tbl[i].flags & TG3_FL_NOT_5705))
10999 continue;
11000
11001 if (!is_5705 && (reg_tbl[i].flags & TG3_FL_5705))
11002 continue;
11003
Joe Perches63c3a662011-04-26 08:12:10 +000011004 if (tg3_flag(tp, IS_5788) &&
Michael Chana71116d2005-05-29 14:58:11 -070011005 (reg_tbl[i].flags & TG3_FL_NOT_5788))
11006 continue;
11007
Michael Chanb16250e2006-09-27 16:10:14 -070011008 if (is_5750 && (reg_tbl[i].flags & TG3_FL_NOT_5750))
11009 continue;
11010
Michael Chana71116d2005-05-29 14:58:11 -070011011 offset = (u32) reg_tbl[i].offset;
11012 read_mask = reg_tbl[i].read_mask;
11013 write_mask = reg_tbl[i].write_mask;
11014
11015 /* Save the original register content */
11016 save_val = tr32(offset);
11017
11018 /* Determine the read-only value. */
11019 read_val = save_val & read_mask;
11020
11021 /* Write zero to the register, then make sure the read-only bits
11022 * are not changed and the read/write bits are all zeros.
11023 */
11024 tw32(offset, 0);
11025
11026 val = tr32(offset);
11027
11028 /* Test the read-only and read/write bits. */
11029 if (((val & read_mask) != read_val) || (val & write_mask))
11030 goto out;
11031
11032 /* Write ones to all the bits defined by RdMask and WrMask, then
11033 * make sure the read-only bits are not changed and the
11034 * read/write bits are all ones.
11035 */
11036 tw32(offset, read_mask | write_mask);
11037
11038 val = tr32(offset);
11039
11040 /* Test the read-only bits. */
11041 if ((val & read_mask) != read_val)
11042 goto out;
11043
11044 /* Test the read/write bits. */
11045 if ((val & write_mask) != write_mask)
11046 goto out;
11047
11048 tw32(offset, save_val);
11049 }
11050
11051 return 0;
11052
11053out:
Michael Chan9f88f292006-12-07 00:22:54 -080011054 if (netif_msg_hw(tp))
Matt Carlson2445e462010-04-05 10:19:21 +000011055 netdev_err(tp->dev,
11056 "Register test failed at offset %x\n", offset);
Michael Chana71116d2005-05-29 14:58:11 -070011057 tw32(offset, save_val);
11058 return -EIO;
11059}
11060
Michael Chan7942e1d2005-05-29 14:58:36 -070011061static int tg3_do_mem_test(struct tg3 *tp, u32 offset, u32 len)
11062{
Arjan van de Venf71e1302006-03-03 21:33:57 -050011063 static const u32 test_pattern[] = { 0x00000000, 0xffffffff, 0xaa55a55a };
Michael Chan7942e1d2005-05-29 14:58:36 -070011064 int i;
11065 u32 j;
11066
Alejandro Martinez Ruize9edda62007-10-15 03:37:43 +020011067 for (i = 0; i < ARRAY_SIZE(test_pattern); i++) {
Michael Chan7942e1d2005-05-29 14:58:36 -070011068 for (j = 0; j < len; j += 4) {
11069 u32 val;
11070
11071 tg3_write_mem(tp, offset + j, test_pattern[i]);
11072 tg3_read_mem(tp, offset + j, &val);
11073 if (val != test_pattern[i])
11074 return -EIO;
11075 }
11076 }
11077 return 0;
11078}
11079
11080static int tg3_test_memory(struct tg3 *tp)
11081{
11082 static struct mem_entry {
11083 u32 offset;
11084 u32 len;
11085 } mem_tbl_570x[] = {
Michael Chan38690192005-12-19 16:27:28 -080011086 { 0x00000000, 0x00b50},
Michael Chan7942e1d2005-05-29 14:58:36 -070011087 { 0x00002000, 0x1c000},
11088 { 0xffffffff, 0x00000}
11089 }, mem_tbl_5705[] = {
11090 { 0x00000100, 0x0000c},
11091 { 0x00000200, 0x00008},
Michael Chan7942e1d2005-05-29 14:58:36 -070011092 { 0x00004000, 0x00800},
11093 { 0x00006000, 0x01000},
11094 { 0x00008000, 0x02000},
11095 { 0x00010000, 0x0e000},
11096 { 0xffffffff, 0x00000}
Michael Chan79f4d132006-03-20 22:28:57 -080011097 }, mem_tbl_5755[] = {
11098 { 0x00000200, 0x00008},
11099 { 0x00004000, 0x00800},
11100 { 0x00006000, 0x00800},
11101 { 0x00008000, 0x02000},
11102 { 0x00010000, 0x0c000},
11103 { 0xffffffff, 0x00000}
Michael Chanb16250e2006-09-27 16:10:14 -070011104 }, mem_tbl_5906[] = {
11105 { 0x00000200, 0x00008},
11106 { 0x00004000, 0x00400},
11107 { 0x00006000, 0x00400},
11108 { 0x00008000, 0x01000},
11109 { 0x00010000, 0x01000},
11110 { 0xffffffff, 0x00000}
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011111 }, mem_tbl_5717[] = {
11112 { 0x00000200, 0x00008},
11113 { 0x00010000, 0x0a000},
11114 { 0x00020000, 0x13c00},
11115 { 0xffffffff, 0x00000}
11116 }, mem_tbl_57765[] = {
11117 { 0x00000200, 0x00008},
11118 { 0x00004000, 0x00800},
11119 { 0x00006000, 0x09800},
11120 { 0x00010000, 0x0a000},
11121 { 0xffffffff, 0x00000}
Michael Chan7942e1d2005-05-29 14:58:36 -070011122 };
11123 struct mem_entry *mem_tbl;
11124 int err = 0;
11125 int i;
11126
Joe Perches63c3a662011-04-26 08:12:10 +000011127 if (tg3_flag(tp, 5717_PLUS))
Matt Carlson8b5a6c42010-01-20 16:58:06 +000011128 mem_tbl = mem_tbl_5717;
11129 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
11130 mem_tbl = mem_tbl_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000011131 else if (tg3_flag(tp, 5755_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011132 mem_tbl = mem_tbl_5755;
11133 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
11134 mem_tbl = mem_tbl_5906;
Joe Perches63c3a662011-04-26 08:12:10 +000011135 else if (tg3_flag(tp, 5705_PLUS))
Matt Carlson321d32a2008-11-21 17:22:19 -080011136 mem_tbl = mem_tbl_5705;
11137 else
Michael Chan7942e1d2005-05-29 14:58:36 -070011138 mem_tbl = mem_tbl_570x;
11139
11140 for (i = 0; mem_tbl[i].offset != 0xffffffff; i++) {
Matt Carlsonbe98da62010-07-11 09:31:46 +000011141 err = tg3_do_mem_test(tp, mem_tbl[i].offset, mem_tbl[i].len);
11142 if (err)
Michael Chan7942e1d2005-05-29 14:58:36 -070011143 break;
11144 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011145
Michael Chan7942e1d2005-05-29 14:58:36 -070011146 return err;
11147}
11148
Michael Chan9f40dea2005-09-05 17:53:06 -070011149#define TG3_MAC_LOOPBACK 0
11150#define TG3_PHY_LOOPBACK 1
Matt Carlsonbb158d62011-04-25 12:42:47 +000011151#define TG3_TSO_LOOPBACK 2
11152
11153#define TG3_TSO_MSS 500
11154
11155#define TG3_TSO_IP_HDR_LEN 20
11156#define TG3_TSO_TCP_HDR_LEN 20
11157#define TG3_TSO_TCP_OPT_LEN 12
11158
11159static const u8 tg3_tso_header[] = {
111600x08, 0x00,
111610x45, 0x00, 0x00, 0x00,
111620x00, 0x00, 0x40, 0x00,
111630x40, 0x06, 0x00, 0x00,
111640x0a, 0x00, 0x00, 0x01,
111650x0a, 0x00, 0x00, 0x02,
111660x0d, 0x00, 0xe0, 0x00,
111670x00, 0x00, 0x01, 0x00,
111680x00, 0x00, 0x02, 0x00,
111690x80, 0x10, 0x10, 0x00,
111700x14, 0x09, 0x00, 0x00,
111710x01, 0x01, 0x08, 0x0a,
111720x11, 0x11, 0x11, 0x11,
111730x11, 0x11, 0x11, 0x11,
11174};
Michael Chan9f40dea2005-09-05 17:53:06 -070011175
Matt Carlson4852a862011-04-13 11:05:07 +000011176static int tg3_run_loopback(struct tg3 *tp, u32 pktsz, int loopback_mode)
Michael Chanc76949a2005-05-29 14:58:59 -070011177{
Michael Chan9f40dea2005-09-05 17:53:06 -070011178 u32 mac_mode, rx_start_idx, rx_idx, tx_idx, opaque_key;
Matt Carlsonbb158d62011-04-25 12:42:47 +000011179 u32 base_flags = 0, mss = 0, desc_idx, coal_now, data_off, val;
Michael Chanc76949a2005-05-29 14:58:59 -070011180 struct sk_buff *skb, *rx_skb;
11181 u8 *tx_data;
11182 dma_addr_t map;
11183 int num_pkts, tx_len, rx_len, i, err;
11184 struct tg3_rx_buffer_desc *desc;
Matt Carlson898a56f2009-08-28 14:02:40 +000011185 struct tg3_napi *tnapi, *rnapi;
Matt Carlson8fea32b2010-09-15 08:59:58 +000011186 struct tg3_rx_prodring_set *tpr = &tp->napi[0].prodring;
Michael Chanc76949a2005-05-29 14:58:59 -070011187
Matt Carlsonc8873402010-02-12 14:47:11 +000011188 tnapi = &tp->napi[0];
11189 rnapi = &tp->napi[0];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011190 if (tp->irq_cnt > 1) {
Joe Perches63c3a662011-04-26 08:12:10 +000011191 if (tg3_flag(tp, ENABLE_RSS))
Matt Carlson1da85aa2010-09-30 10:34:34 +000011192 rnapi = &tp->napi[1];
Joe Perches63c3a662011-04-26 08:12:10 +000011193 if (tg3_flag(tp, ENABLE_TSS))
Matt Carlsonc8873402010-02-12 14:47:11 +000011194 tnapi = &tp->napi[1];
Matt Carlson0c1d0e22009-09-01 13:16:33 +000011195 }
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011196 coal_now = tnapi->coal_now | rnapi->coal_now;
Matt Carlson898a56f2009-08-28 14:02:40 +000011197
Michael Chan9f40dea2005-09-05 17:53:06 -070011198 if (loopback_mode == TG3_MAC_LOOPBACK) {
Michael Chanc94e3942005-09-27 12:12:42 -070011199 /* HW errata - mac loopback fails in some cases on 5780.
11200 * Normal traffic and PHY loopback are not affected by
Matt Carlsonaba49f22011-01-25 15:58:53 +000011201 * errata. Also, the MAC loopback test is deprecated for
11202 * all newer ASIC revisions.
Michael Chanc94e3942005-09-27 12:12:42 -070011203 */
Matt Carlsonaba49f22011-01-25 15:58:53 +000011204 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011205 tg3_flag(tp, CPMU_PRESENT))
Michael Chanc94e3942005-09-27 12:12:42 -070011206 return 0;
11207
Matt Carlson49692ca2011-01-25 15:58:52 +000011208 mac_mode = tp->mac_mode &
11209 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
11210 mac_mode |= MAC_MODE_PORT_INT_LPBACK;
Joe Perches63c3a662011-04-26 08:12:10 +000011211 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011212 mac_mode |= MAC_MODE_LINK_POLARITY;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011213 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
Michael Chan3f7045c2006-09-27 16:02:29 -070011214 mac_mode |= MAC_MODE_PORT_MODE_MII;
11215 else
11216 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chan9f40dea2005-09-05 17:53:06 -070011217 tw32(MAC_MODE, mac_mode);
Matt Carlsonbb158d62011-04-25 12:42:47 +000011218 } else {
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011219 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson7f97a4b2009-08-25 10:10:03 +000011220 tg3_phy_fet_toggle_apd(tp, false);
Michael Chan5d64ad32006-12-07 00:19:40 -080011221 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED100;
11222 } else
11223 val = BMCR_LOOPBACK | BMCR_FULLDPLX | BMCR_SPEED1000;
Michael Chan3f7045c2006-09-27 16:02:29 -070011224
Matt Carlson9ef8ca92007-07-11 19:48:29 -070011225 tg3_phy_toggle_automdix(tp, 0);
11226
Michael Chan3f7045c2006-09-27 16:02:29 -070011227 tg3_writephy(tp, MII_BMCR, val);
Michael Chanc94e3942005-09-27 12:12:42 -070011228 udelay(40);
Michael Chan5d64ad32006-12-07 00:19:40 -080011229
Matt Carlson49692ca2011-01-25 15:58:52 +000011230 mac_mode = tp->mac_mode &
11231 ~(MAC_MODE_PORT_MODE_MASK | MAC_MODE_HALF_DUPLEX);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011232 if (tp->phy_flags & TG3_PHYFLG_IS_FET) {
Matt Carlson1061b7c2010-02-12 14:47:12 +000011233 tg3_writephy(tp, MII_TG3_FET_PTEST,
11234 MII_TG3_FET_PTEST_FRC_TX_LINK |
11235 MII_TG3_FET_PTEST_FRC_TX_LOCK);
11236 /* The write needs to be flushed for the AC131 */
11237 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
11238 tg3_readphy(tp, MII_TG3_FET_PTEST, &val);
Michael Chan5d64ad32006-12-07 00:19:40 -080011239 mac_mode |= MAC_MODE_PORT_MODE_MII;
11240 } else
11241 mac_mode |= MAC_MODE_PORT_MODE_GMII;
Michael Chanb16250e2006-09-27 16:10:14 -070011242
Michael Chanc94e3942005-09-27 12:12:42 -070011243 /* reset to prevent losing 1st rx packet intermittently */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011244 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) {
Michael Chanc94e3942005-09-27 12:12:42 -070011245 tw32_f(MAC_RX_MODE, RX_MODE_RESET);
11246 udelay(10);
11247 tw32_f(MAC_RX_MODE, tp->rx_mode);
11248 }
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011249 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700) {
Matt Carlson79eb6902010-02-17 15:17:03 +000011250 u32 masked_phy_id = tp->phy_id & TG3_PHY_ID_MASK;
11251 if (masked_phy_id == TG3_PHY_ID_BCM5401)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011252 mac_mode &= ~MAC_MODE_LINK_POLARITY;
Matt Carlson79eb6902010-02-17 15:17:03 +000011253 else if (masked_phy_id == TG3_PHY_ID_BCM5411)
Matt Carlsone8f3f6c2007-07-11 19:47:55 -070011254 mac_mode |= MAC_MODE_LINK_POLARITY;
Michael Chanff18ff02006-03-27 23:17:27 -080011255 tg3_writephy(tp, MII_TG3_EXT_CTRL,
11256 MII_TG3_EXT_CTRL_LNK3_LED_MODE);
11257 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011258 tw32(MAC_MODE, mac_mode);
Matt Carlson49692ca2011-01-25 15:58:52 +000011259
11260 /* Wait for link */
11261 for (i = 0; i < 100; i++) {
11262 if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
11263 break;
11264 mdelay(1);
11265 }
Matt Carlson859a588792010-04-05 10:19:28 +000011266 }
Michael Chanc76949a2005-05-29 14:58:59 -070011267
11268 err = -EIO;
11269
Matt Carlson4852a862011-04-13 11:05:07 +000011270 tx_len = pktsz;
David S. Millera20e9c62006-07-31 22:38:16 -070011271 skb = netdev_alloc_skb(tp->dev, tx_len);
Jesper Juhla50bb7b2006-05-09 23:14:35 -070011272 if (!skb)
11273 return -ENOMEM;
11274
Michael Chanc76949a2005-05-29 14:58:59 -070011275 tx_data = skb_put(skb, tx_len);
11276 memcpy(tx_data, tp->dev->dev_addr, 6);
11277 memset(tx_data + 6, 0x0, 8);
11278
Matt Carlson4852a862011-04-13 11:05:07 +000011279 tw32(MAC_RX_MTU_SIZE, tx_len + ETH_FCS_LEN);
Michael Chanc76949a2005-05-29 14:58:59 -070011280
Matt Carlsonbb158d62011-04-25 12:42:47 +000011281 if (loopback_mode == TG3_TSO_LOOPBACK) {
11282 struct iphdr *iph = (struct iphdr *)&tx_data[ETH_HLEN];
11283
11284 u32 hdr_len = TG3_TSO_IP_HDR_LEN + TG3_TSO_TCP_HDR_LEN +
11285 TG3_TSO_TCP_OPT_LEN;
11286
11287 memcpy(tx_data + ETH_ALEN * 2, tg3_tso_header,
11288 sizeof(tg3_tso_header));
11289 mss = TG3_TSO_MSS;
11290
11291 val = tx_len - ETH_ALEN * 2 - sizeof(tg3_tso_header);
11292 num_pkts = DIV_ROUND_UP(val, TG3_TSO_MSS);
11293
11294 /* Set the total length field in the IP header */
11295 iph->tot_len = htons((u16)(mss + hdr_len));
11296
11297 base_flags = (TXD_FLAG_CPU_PRE_DMA |
11298 TXD_FLAG_CPU_POST_DMA);
11299
Joe Perches63c3a662011-04-26 08:12:10 +000011300 if (tg3_flag(tp, HW_TSO_1) ||
11301 tg3_flag(tp, HW_TSO_2) ||
11302 tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011303 struct tcphdr *th;
11304 val = ETH_HLEN + TG3_TSO_IP_HDR_LEN;
11305 th = (struct tcphdr *)&tx_data[val];
11306 th->check = 0;
11307 } else
11308 base_flags |= TXD_FLAG_TCPUDP_CSUM;
11309
Joe Perches63c3a662011-04-26 08:12:10 +000011310 if (tg3_flag(tp, HW_TSO_3)) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011311 mss |= (hdr_len & 0xc) << 12;
11312 if (hdr_len & 0x10)
11313 base_flags |= 0x00000010;
11314 base_flags |= (hdr_len & 0x3e0) << 5;
Joe Perches63c3a662011-04-26 08:12:10 +000011315 } else if (tg3_flag(tp, HW_TSO_2))
Matt Carlsonbb158d62011-04-25 12:42:47 +000011316 mss |= hdr_len << 9;
Joe Perches63c3a662011-04-26 08:12:10 +000011317 else if (tg3_flag(tp, HW_TSO_1) ||
Matt Carlsonbb158d62011-04-25 12:42:47 +000011318 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705) {
11319 mss |= (TG3_TSO_TCP_OPT_LEN << 9);
11320 } else {
11321 base_flags |= (TG3_TSO_TCP_OPT_LEN << 10);
11322 }
11323
11324 data_off = ETH_ALEN * 2 + sizeof(tg3_tso_header);
11325 } else {
11326 num_pkts = 1;
11327 data_off = ETH_HLEN;
11328 }
11329
11330 for (i = data_off; i < tx_len; i++)
Michael Chanc76949a2005-05-29 14:58:59 -070011331 tx_data[i] = (u8) (i & 0xff);
11332
Alexander Duyckf4188d82009-12-02 16:48:38 +000011333 map = pci_map_single(tp->pdev, skb->data, tx_len, PCI_DMA_TODEVICE);
11334 if (pci_dma_mapping_error(tp->pdev, map)) {
Matt Carlsona21771d2009-11-02 14:25:31 +000011335 dev_kfree_skb(skb);
11336 return -EIO;
11337 }
Michael Chanc76949a2005-05-29 14:58:59 -070011338
11339 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011340 rnapi->coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011341
11342 udelay(10);
11343
Matt Carlson898a56f2009-08-28 14:02:40 +000011344 rx_start_idx = rnapi->hw_status->idx[0].rx_producer;
Michael Chanc76949a2005-05-29 14:58:59 -070011345
Matt Carlsonbb158d62011-04-25 12:42:47 +000011346 tg3_set_txd(tnapi, tnapi->tx_prod, map, tx_len,
11347 base_flags, (mss << 1) | 1);
Michael Chanc76949a2005-05-29 14:58:59 -070011348
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011349 tnapi->tx_prod++;
Michael Chanc76949a2005-05-29 14:58:59 -070011350
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011351 tw32_tx_mbox(tnapi->prodmbox, tnapi->tx_prod);
11352 tr32_mailbox(tnapi->prodmbox);
Michael Chanc76949a2005-05-29 14:58:59 -070011353
11354 udelay(10);
11355
Matt Carlson303fc922009-11-02 14:27:34 +000011356 /* 350 usec to allow enough time on some 10/100 Mbps devices. */
11357 for (i = 0; i < 35; i++) {
Michael Chanc76949a2005-05-29 14:58:59 -070011358 tw32_f(HOSTCC_MODE, tp->coalesce_mode | HOSTCC_MODE_ENABLE |
Matt Carlsonfd2ce372009-09-01 12:51:13 +000011359 coal_now);
Michael Chanc76949a2005-05-29 14:58:59 -070011360
11361 udelay(10);
11362
Matt Carlson898a56f2009-08-28 14:02:40 +000011363 tx_idx = tnapi->hw_status->idx[0].tx_consumer;
11364 rx_idx = rnapi->hw_status->idx[0].rx_producer;
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011365 if ((tx_idx == tnapi->tx_prod) &&
Michael Chanc76949a2005-05-29 14:58:59 -070011366 (rx_idx == (rx_start_idx + num_pkts)))
11367 break;
11368 }
11369
Alexander Duyckf4188d82009-12-02 16:48:38 +000011370 pci_unmap_single(tp->pdev, map, tx_len, PCI_DMA_TODEVICE);
Michael Chanc76949a2005-05-29 14:58:59 -070011371 dev_kfree_skb(skb);
11372
Matt Carlsonf3f3f272009-08-28 14:03:21 +000011373 if (tx_idx != tnapi->tx_prod)
Michael Chanc76949a2005-05-29 14:58:59 -070011374 goto out;
11375
11376 if (rx_idx != rx_start_idx + num_pkts)
11377 goto out;
11378
Matt Carlsonbb158d62011-04-25 12:42:47 +000011379 val = data_off;
11380 while (rx_idx != rx_start_idx) {
11381 desc = &rnapi->rx_rcb[rx_start_idx++];
11382 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
11383 opaque_key = desc->opaque & RXD_OPAQUE_RING_MASK;
Michael Chanc76949a2005-05-29 14:58:59 -070011384
Matt Carlsonbb158d62011-04-25 12:42:47 +000011385 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
11386 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII))
Matt Carlson4852a862011-04-13 11:05:07 +000011387 goto out;
Michael Chanc76949a2005-05-29 14:58:59 -070011388
Matt Carlsonbb158d62011-04-25 12:42:47 +000011389 rx_len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT)
11390 - ETH_FCS_LEN;
11391
11392 if (loopback_mode != TG3_TSO_LOOPBACK) {
11393 if (rx_len != tx_len)
11394 goto out;
11395
11396 if (pktsz <= TG3_RX_STD_DMA_SZ - ETH_FCS_LEN) {
11397 if (opaque_key != RXD_OPAQUE_RING_STD)
11398 goto out;
11399 } else {
11400 if (opaque_key != RXD_OPAQUE_RING_JUMBO)
11401 goto out;
11402 }
11403 } else if ((desc->type_flags & RXD_FLAG_TCPUDP_CSUM) &&
11404 (desc->ip_tcp_csum & RXD_TCPCSUM_MASK)
Matt Carlson54e0a672011-05-19 12:12:50 +000011405 >> RXD_TCPCSUM_SHIFT != 0xffff) {
Matt Carlsonbb158d62011-04-25 12:42:47 +000011406 goto out;
11407 }
11408
11409 if (opaque_key == RXD_OPAQUE_RING_STD) {
11410 rx_skb = tpr->rx_std_buffers[desc_idx].skb;
11411 map = dma_unmap_addr(&tpr->rx_std_buffers[desc_idx],
11412 mapping);
11413 } else if (opaque_key == RXD_OPAQUE_RING_JUMBO) {
11414 rx_skb = tpr->rx_jmb_buffers[desc_idx].skb;
11415 map = dma_unmap_addr(&tpr->rx_jmb_buffers[desc_idx],
11416 mapping);
11417 } else
Matt Carlson4852a862011-04-13 11:05:07 +000011418 goto out;
11419
Matt Carlsonbb158d62011-04-25 12:42:47 +000011420 pci_dma_sync_single_for_cpu(tp->pdev, map, rx_len,
11421 PCI_DMA_FROMDEVICE);
11422
11423 for (i = data_off; i < rx_len; i++, val++) {
11424 if (*(rx_skb->data + i) != (u8) (val & 0xff))
11425 goto out;
11426 }
Matt Carlson4852a862011-04-13 11:05:07 +000011427 }
11428
Michael Chanc76949a2005-05-29 14:58:59 -070011429 err = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011430
Michael Chanc76949a2005-05-29 14:58:59 -070011431 /* tg3_free_rings will unmap and free the rx_skb */
11432out:
11433 return err;
11434}
11435
Matt Carlson00c266b2011-04-25 12:42:46 +000011436#define TG3_STD_LOOPBACK_FAILED 1
11437#define TG3_JMB_LOOPBACK_FAILED 2
Matt Carlsonbb158d62011-04-25 12:42:47 +000011438#define TG3_TSO_LOOPBACK_FAILED 4
Matt Carlson00c266b2011-04-25 12:42:46 +000011439
11440#define TG3_MAC_LOOPBACK_SHIFT 0
11441#define TG3_PHY_LOOPBACK_SHIFT 4
Matt Carlsonbb158d62011-04-25 12:42:47 +000011442#define TG3_LOOPBACK_FAILED 0x00000077
Michael Chan9f40dea2005-09-05 17:53:06 -070011443
11444static int tg3_test_loopback(struct tg3 *tp)
11445{
11446 int err = 0;
Matt Carlsonab789042011-01-25 15:58:54 +000011447 u32 eee_cap, cpmuctrl = 0;
Michael Chan9f40dea2005-09-05 17:53:06 -070011448
11449 if (!netif_running(tp->dev))
11450 return TG3_LOOPBACK_FAILED;
11451
Matt Carlsonab789042011-01-25 15:58:54 +000011452 eee_cap = tp->phy_flags & TG3_PHYFLG_EEE_CAP;
11453 tp->phy_flags &= ~TG3_PHYFLG_EEE_CAP;
11454
Michael Chanb9ec6c12006-07-25 16:37:27 -070011455 err = tg3_reset_hw(tp, 1);
Matt Carlsonab789042011-01-25 15:58:54 +000011456 if (err) {
11457 err = TG3_LOOPBACK_FAILED;
11458 goto done;
11459 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011460
Joe Perches63c3a662011-04-26 08:12:10 +000011461 if (tg3_flag(tp, ENABLE_RSS)) {
Matt Carlson4a85f092011-04-20 07:57:37 +000011462 int i;
11463
11464 /* Reroute all rx packets to the 1st queue */
11465 for (i = MAC_RSS_INDIR_TBL_0;
11466 i < MAC_RSS_INDIR_TBL_0 + TG3_RSS_INDIR_TBL_SIZE; i += 4)
11467 tw32(i, 0x0);
11468 }
11469
Matt Carlson6833c042008-11-21 17:18:59 -080011470 /* Turn off gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011471 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011472 tg3_phy_toggle_apd(tp, false);
11473
Joe Perches63c3a662011-04-26 08:12:10 +000011474 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011475 int i;
11476 u32 status;
11477
11478 tw32(TG3_CPMU_MUTEX_REQ, CPMU_MUTEX_REQ_DRIVER);
11479
11480 /* Wait for up to 40 microseconds to acquire lock. */
11481 for (i = 0; i < 4; i++) {
11482 status = tr32(TG3_CPMU_MUTEX_GNT);
11483 if (status == CPMU_MUTEX_GNT_DRIVER)
11484 break;
11485 udelay(10);
11486 }
11487
Matt Carlsonab789042011-01-25 15:58:54 +000011488 if (status != CPMU_MUTEX_GNT_DRIVER) {
11489 err = TG3_LOOPBACK_FAILED;
11490 goto done;
11491 }
Matt Carlson9936bcf2007-10-10 18:03:07 -070011492
Matt Carlsonb2a5c192008-04-03 21:44:44 -070011493 /* Turn off link-based power management. */
Matt Carlsone8750932007-11-12 21:11:51 -080011494 cpmuctrl = tr32(TG3_CPMU_CTRL);
Matt Carlson109115e2008-05-02 16:48:59 -070011495 tw32(TG3_CPMU_CTRL,
11496 cpmuctrl & ~(CPMU_CTRL_LINK_SPEED_MODE |
11497 CPMU_CTRL_LINK_AWARE_MODE));
Matt Carlson9936bcf2007-10-10 18:03:07 -070011498 }
11499
Matt Carlson4852a862011-04-13 11:05:07 +000011500 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011501 err |= TG3_STD_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson9936bcf2007-10-10 18:03:07 -070011502
Joe Perches63c3a662011-04-26 08:12:10 +000011503 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011504 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_MAC_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011505 err |= TG3_JMB_LOOPBACK_FAILED << TG3_MAC_LOOPBACK_SHIFT;
Matt Carlson4852a862011-04-13 11:05:07 +000011506
Joe Perches63c3a662011-04-26 08:12:10 +000011507 if (tg3_flag(tp, CPMU_PRESENT)) {
Matt Carlson9936bcf2007-10-10 18:03:07 -070011508 tw32(TG3_CPMU_CTRL, cpmuctrl);
11509
11510 /* Release the mutex */
11511 tw32(TG3_CPMU_MUTEX_GNT, CPMU_MUTEX_GNT_DRIVER);
11512 }
11513
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011514 if (!(tp->phy_flags & TG3_PHYFLG_PHY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000011515 !tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson4852a862011-04-13 11:05:07 +000011516 if (tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011517 err |= TG3_STD_LOOPBACK_FAILED <<
11518 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011519 if (tg3_flag(tp, TSO_CAPABLE) &&
Matt Carlsonbb158d62011-04-25 12:42:47 +000011520 tg3_run_loopback(tp, ETH_FRAME_LEN, TG3_TSO_LOOPBACK))
11521 err |= TG3_TSO_LOOPBACK_FAILED <<
11522 TG3_PHY_LOOPBACK_SHIFT;
Joe Perches63c3a662011-04-26 08:12:10 +000011523 if (tg3_flag(tp, JUMBO_RING_ENABLE) &&
Matt Carlson4852a862011-04-13 11:05:07 +000011524 tg3_run_loopback(tp, 9000 + ETH_HLEN, TG3_PHY_LOOPBACK))
Matt Carlson00c266b2011-04-25 12:42:46 +000011525 err |= TG3_JMB_LOOPBACK_FAILED <<
11526 TG3_PHY_LOOPBACK_SHIFT;
Michael Chan9f40dea2005-09-05 17:53:06 -070011527 }
11528
Matt Carlson6833c042008-11-21 17:18:59 -080011529 /* Re-enable gphy autopowerdown. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011530 if (tp->phy_flags & TG3_PHYFLG_ENABLE_APD)
Matt Carlson6833c042008-11-21 17:18:59 -080011531 tg3_phy_toggle_apd(tp, true);
11532
Matt Carlsonab789042011-01-25 15:58:54 +000011533done:
11534 tp->phy_flags |= eee_cap;
11535
Michael Chan9f40dea2005-09-05 17:53:06 -070011536 return err;
11537}
11538
Michael Chan4cafd3f2005-05-29 14:56:34 -070011539static void tg3_self_test(struct net_device *dev, struct ethtool_test *etest,
11540 u64 *data)
11541{
Michael Chan566f86a2005-05-29 14:56:58 -070011542 struct tg3 *tp = netdev_priv(dev);
11543
Matt Carlsonbed98292011-07-13 09:27:29 +000011544 if ((tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER) &&
11545 tg3_power_up(tp)) {
11546 etest->flags |= ETH_TEST_FL_FAILED;
11547 memset(data, 1, sizeof(u64) * TG3_NUM_TEST);
11548 return;
11549 }
Michael Chanbc1c7562006-03-20 17:48:03 -080011550
Michael Chan566f86a2005-05-29 14:56:58 -070011551 memset(data, 0, sizeof(u64) * TG3_NUM_TEST);
11552
11553 if (tg3_test_nvram(tp) != 0) {
11554 etest->flags |= ETH_TEST_FL_FAILED;
11555 data[0] = 1;
11556 }
Michael Chanca430072005-05-29 14:57:23 -070011557 if (tg3_test_link(tp) != 0) {
11558 etest->flags |= ETH_TEST_FL_FAILED;
11559 data[1] = 1;
11560 }
Michael Chana71116d2005-05-29 14:58:11 -070011561 if (etest->flags & ETH_TEST_FL_OFFLINE) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011562 int err, err2 = 0, irq_sync = 0;
Michael Chana71116d2005-05-29 14:58:11 -070011563
Michael Chanbbe832c2005-06-24 20:20:04 -070011564 if (netif_running(dev)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011565 tg3_phy_stop(tp);
Michael Chanbbe832c2005-06-24 20:20:04 -070011566 tg3_netif_stop(tp);
11567 irq_sync = 1;
11568 }
11569
11570 tg3_full_lock(tp, irq_sync);
Michael Chana71116d2005-05-29 14:58:11 -070011571
11572 tg3_halt(tp, RESET_KIND_SUSPEND, 1);
Michael Chanec41c7d2006-01-17 02:40:55 -080011573 err = tg3_nvram_lock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011574 tg3_halt_cpu(tp, RX_CPU_BASE);
Joe Perches63c3a662011-04-26 08:12:10 +000011575 if (!tg3_flag(tp, 5705_PLUS))
Michael Chana71116d2005-05-29 14:58:11 -070011576 tg3_halt_cpu(tp, TX_CPU_BASE);
Michael Chanec41c7d2006-01-17 02:40:55 -080011577 if (!err)
11578 tg3_nvram_unlock(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011579
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011580 if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)
Michael Chand9ab5ad12006-03-20 22:27:35 -080011581 tg3_phy_reset(tp);
11582
Michael Chana71116d2005-05-29 14:58:11 -070011583 if (tg3_test_registers(tp) != 0) {
11584 etest->flags |= ETH_TEST_FL_FAILED;
11585 data[2] = 1;
11586 }
Michael Chan7942e1d2005-05-29 14:58:36 -070011587 if (tg3_test_memory(tp) != 0) {
11588 etest->flags |= ETH_TEST_FL_FAILED;
11589 data[3] = 1;
11590 }
Michael Chan9f40dea2005-09-05 17:53:06 -070011591 if ((data[4] = tg3_test_loopback(tp)) != 0)
Michael Chanc76949a2005-05-29 14:58:59 -070011592 etest->flags |= ETH_TEST_FL_FAILED;
Michael Chana71116d2005-05-29 14:58:11 -070011593
David S. Millerf47c11e2005-06-24 20:18:35 -070011594 tg3_full_unlock(tp);
11595
Michael Chand4bc3922005-05-29 14:59:20 -070011596 if (tg3_test_interrupt(tp) != 0) {
11597 etest->flags |= ETH_TEST_FL_FAILED;
11598 data[5] = 1;
11599 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011600
11601 tg3_full_lock(tp, 0);
Michael Chand4bc3922005-05-29 14:59:20 -070011602
Michael Chana71116d2005-05-29 14:58:11 -070011603 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
11604 if (netif_running(dev)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011605 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011606 err2 = tg3_restart_hw(tp, 1);
11607 if (!err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070011608 tg3_netif_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011609 }
David S. Millerf47c11e2005-06-24 20:18:35 -070011610
11611 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011612
11613 if (irq_sync && !err2)
11614 tg3_phy_start(tp);
Michael Chana71116d2005-05-29 14:58:11 -070011615 }
Matt Carlson80096062010-08-02 11:26:06 +000011616 if (tp->phy_flags & TG3_PHYFLG_IS_LOW_POWER)
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000011617 tg3_power_down(tp);
Michael Chanbc1c7562006-03-20 17:48:03 -080011618
Michael Chan4cafd3f2005-05-29 14:56:34 -070011619}
11620
Linus Torvalds1da177e2005-04-16 15:20:36 -070011621static int tg3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
11622{
11623 struct mii_ioctl_data *data = if_mii(ifr);
11624 struct tg3 *tp = netdev_priv(dev);
11625 int err;
11626
Joe Perches63c3a662011-04-26 08:12:10 +000011627 if (tg3_flag(tp, USE_PHYLIB)) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011628 struct phy_device *phydev;
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011629 if (!(tp->phy_flags & TG3_PHYFLG_IS_CONNECTED))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011630 return -EAGAIN;
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000011631 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Richard Cochran28b04112010-07-17 08:48:55 +000011632 return phy_mii_ioctl(phydev, ifr, cmd);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070011633 }
11634
Matt Carlson33f401a2010-04-05 10:19:27 +000011635 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011636 case SIOCGMIIPHY:
Matt Carlson882e9792009-09-01 13:21:36 +000011637 data->phy_id = tp->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011638
11639 /* fallthru */
11640 case SIOCGMIIREG: {
11641 u32 mii_regval;
11642
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011643 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011644 break; /* We have no PHY */
11645
Matt Carlson34eea5a2011-04-20 07:57:38 +000011646 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011647 return -EAGAIN;
11648
David S. Millerf47c11e2005-06-24 20:18:35 -070011649 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011650 err = tg3_readphy(tp, data->reg_num & 0x1f, &mii_regval);
David S. Millerf47c11e2005-06-24 20:18:35 -070011651 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011652
11653 data->val_out = mii_regval;
11654
11655 return err;
11656 }
11657
11658 case SIOCSMIIREG:
Matt Carlsonf07e9af2010-08-02 11:26:07 +000011659 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011660 break; /* We have no PHY */
11661
Matt Carlson34eea5a2011-04-20 07:57:38 +000011662 if (!netif_running(dev))
Michael Chanbc1c7562006-03-20 17:48:03 -080011663 return -EAGAIN;
11664
David S. Millerf47c11e2005-06-24 20:18:35 -070011665 spin_lock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011666 err = tg3_writephy(tp, data->reg_num & 0x1f, data->val_in);
David S. Millerf47c11e2005-06-24 20:18:35 -070011667 spin_unlock_bh(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011668
11669 return err;
11670
11671 default:
11672 /* do nothing */
11673 break;
11674 }
11675 return -EOPNOTSUPP;
11676}
11677
David S. Miller15f98502005-05-18 22:49:26 -070011678static int tg3_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11679{
11680 struct tg3 *tp = netdev_priv(dev);
11681
11682 memcpy(ec, &tp->coal, sizeof(*ec));
11683 return 0;
11684}
11685
Michael Chand244c892005-07-05 14:42:33 -070011686static int tg3_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
11687{
11688 struct tg3 *tp = netdev_priv(dev);
11689 u32 max_rxcoal_tick_int = 0, max_txcoal_tick_int = 0;
11690 u32 max_stat_coal_ticks = 0, min_stat_coal_ticks = 0;
11691
Joe Perches63c3a662011-04-26 08:12:10 +000011692 if (!tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070011693 max_rxcoal_tick_int = MAX_RXCOAL_TICK_INT;
11694 max_txcoal_tick_int = MAX_TXCOAL_TICK_INT;
11695 max_stat_coal_ticks = MAX_STAT_COAL_TICKS;
11696 min_stat_coal_ticks = MIN_STAT_COAL_TICKS;
11697 }
11698
11699 if ((ec->rx_coalesce_usecs > MAX_RXCOL_TICKS) ||
11700 (ec->tx_coalesce_usecs > MAX_TXCOL_TICKS) ||
11701 (ec->rx_max_coalesced_frames > MAX_RXMAX_FRAMES) ||
11702 (ec->tx_max_coalesced_frames > MAX_TXMAX_FRAMES) ||
11703 (ec->rx_coalesce_usecs_irq > max_rxcoal_tick_int) ||
11704 (ec->tx_coalesce_usecs_irq > max_txcoal_tick_int) ||
11705 (ec->rx_max_coalesced_frames_irq > MAX_RXCOAL_MAXF_INT) ||
11706 (ec->tx_max_coalesced_frames_irq > MAX_TXCOAL_MAXF_INT) ||
11707 (ec->stats_block_coalesce_usecs > max_stat_coal_ticks) ||
11708 (ec->stats_block_coalesce_usecs < min_stat_coal_ticks))
11709 return -EINVAL;
11710
11711 /* No rx interrupts will be generated if both are zero */
11712 if ((ec->rx_coalesce_usecs == 0) &&
11713 (ec->rx_max_coalesced_frames == 0))
11714 return -EINVAL;
11715
11716 /* No tx interrupts will be generated if both are zero */
11717 if ((ec->tx_coalesce_usecs == 0) &&
11718 (ec->tx_max_coalesced_frames == 0))
11719 return -EINVAL;
11720
11721 /* Only copy relevant parameters, ignore all others. */
11722 tp->coal.rx_coalesce_usecs = ec->rx_coalesce_usecs;
11723 tp->coal.tx_coalesce_usecs = ec->tx_coalesce_usecs;
11724 tp->coal.rx_max_coalesced_frames = ec->rx_max_coalesced_frames;
11725 tp->coal.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
11726 tp->coal.rx_coalesce_usecs_irq = ec->rx_coalesce_usecs_irq;
11727 tp->coal.tx_coalesce_usecs_irq = ec->tx_coalesce_usecs_irq;
11728 tp->coal.rx_max_coalesced_frames_irq = ec->rx_max_coalesced_frames_irq;
11729 tp->coal.tx_max_coalesced_frames_irq = ec->tx_max_coalesced_frames_irq;
11730 tp->coal.stats_block_coalesce_usecs = ec->stats_block_coalesce_usecs;
11731
11732 if (netif_running(dev)) {
11733 tg3_full_lock(tp, 0);
11734 __tg3_set_coalesce(tp, &tp->coal);
11735 tg3_full_unlock(tp);
11736 }
11737 return 0;
11738}
11739
Jeff Garzik7282d492006-09-13 14:30:00 -040011740static const struct ethtool_ops tg3_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011741 .get_settings = tg3_get_settings,
11742 .set_settings = tg3_set_settings,
11743 .get_drvinfo = tg3_get_drvinfo,
11744 .get_regs_len = tg3_get_regs_len,
11745 .get_regs = tg3_get_regs,
11746 .get_wol = tg3_get_wol,
11747 .set_wol = tg3_set_wol,
11748 .get_msglevel = tg3_get_msglevel,
11749 .set_msglevel = tg3_set_msglevel,
11750 .nway_reset = tg3_nway_reset,
11751 .get_link = ethtool_op_get_link,
11752 .get_eeprom_len = tg3_get_eeprom_len,
11753 .get_eeprom = tg3_get_eeprom,
11754 .set_eeprom = tg3_set_eeprom,
11755 .get_ringparam = tg3_get_ringparam,
11756 .set_ringparam = tg3_set_ringparam,
11757 .get_pauseparam = tg3_get_pauseparam,
11758 .set_pauseparam = tg3_set_pauseparam,
Michael Chan4cafd3f2005-05-29 14:56:34 -070011759 .self_test = tg3_self_test,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011760 .get_strings = tg3_get_strings,
stephen hemminger81b87092011-04-04 08:43:50 +000011761 .set_phys_id = tg3_set_phys_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011762 .get_ethtool_stats = tg3_get_ethtool_stats,
David S. Miller15f98502005-05-18 22:49:26 -070011763 .get_coalesce = tg3_get_coalesce,
Michael Chand244c892005-07-05 14:42:33 -070011764 .set_coalesce = tg3_set_coalesce,
Jeff Garzikb9f2c042007-10-03 18:07:32 -070011765 .get_sset_count = tg3_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -070011766};
11767
11768static void __devinit tg3_get_eeprom_size(struct tg3 *tp)
11769{
Michael Chan1b277772006-03-20 22:27:48 -080011770 u32 cursize, val, magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011771
11772 tp->nvram_size = EEPROM_CHIP_SIZE;
11773
Matt Carlsone4f34112009-02-25 14:25:00 +000011774 if (tg3_nvram_read(tp, 0, &magic) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011775 return;
11776
Michael Chanb16250e2006-09-27 16:10:14 -070011777 if ((magic != TG3_EEPROM_MAGIC) &&
11778 ((magic & TG3_EEPROM_MAGIC_FW_MSK) != TG3_EEPROM_MAGIC_FW) &&
11779 ((magic & TG3_EEPROM_MAGIC_HW_MSK) != TG3_EEPROM_MAGIC_HW))
Linus Torvalds1da177e2005-04-16 15:20:36 -070011780 return;
11781
11782 /*
11783 * Size the chip by reading offsets at increasing powers of two.
11784 * When we encounter our validation signature, we know the addressing
11785 * has wrapped around, and thus have our chip size.
11786 */
Michael Chan1b277772006-03-20 22:27:48 -080011787 cursize = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011788
11789 while (cursize < tp->nvram_size) {
Matt Carlsone4f34112009-02-25 14:25:00 +000011790 if (tg3_nvram_read(tp, cursize, &val) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011791 return;
11792
Michael Chan18201802006-03-20 22:29:15 -080011793 if (val == magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011794 break;
11795
11796 cursize <<= 1;
11797 }
11798
11799 tp->nvram_size = cursize;
11800}
Jeff Garzik6aa20a22006-09-13 13:24:59 -040011801
Linus Torvalds1da177e2005-04-16 15:20:36 -070011802static void __devinit tg3_get_nvram_size(struct tg3 *tp)
11803{
11804 u32 val;
11805
Joe Perches63c3a662011-04-26 08:12:10 +000011806 if (tg3_flag(tp, NO_NVRAM) || tg3_nvram_read(tp, 0, &val) != 0)
Michael Chan1b277772006-03-20 22:27:48 -080011807 return;
11808
11809 /* Selfboot format */
Michael Chan18201802006-03-20 22:29:15 -080011810 if (val != TG3_EEPROM_MAGIC) {
Michael Chan1b277772006-03-20 22:27:48 -080011811 tg3_get_eeprom_size(tp);
11812 return;
11813 }
11814
Matt Carlson6d348f22009-02-25 14:25:52 +000011815 if (tg3_nvram_read(tp, 0xf0, &val) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011816 if (val != 0) {
Matt Carlson6d348f22009-02-25 14:25:52 +000011817 /* This is confusing. We want to operate on the
11818 * 16-bit value at offset 0xf2. The tg3_nvram_read()
11819 * call will read from NVRAM and byteswap the data
11820 * according to the byteswapping settings for all
11821 * other register accesses. This ensures the data we
11822 * want will always reside in the lower 16-bits.
11823 * However, the data in NVRAM is in LE format, which
11824 * means the data from the NVRAM read will always be
11825 * opposite the endianness of the CPU. The 16-bit
11826 * byteswap then brings the data to CPU endianness.
11827 */
11828 tp->nvram_size = swab16((u16)(val & 0x0000ffff)) * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011829 return;
11830 }
11831 }
Matt Carlsonfd1122a2008-05-02 16:48:36 -070011832 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011833}
11834
11835static void __devinit tg3_get_nvram_info(struct tg3 *tp)
11836{
11837 u32 nvcfg1;
11838
11839 nvcfg1 = tr32(NVRAM_CFG1);
11840 if (nvcfg1 & NVRAM_CFG1_FLASHIF_ENAB) {
Joe Perches63c3a662011-04-26 08:12:10 +000011841 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011842 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011843 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11844 tw32(NVRAM_CFG1, nvcfg1);
11845 }
11846
Matt Carlson6ff6f812011-05-19 12:12:54 +000011847 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
Joe Perches63c3a662011-04-26 08:12:10 +000011848 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011849 switch (nvcfg1 & NVRAM_CFG1_VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011850 case FLASH_VENDOR_ATMEL_FLASH_BUFFERED:
11851 tp->nvram_jedecnum = JEDEC_ATMEL;
11852 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011853 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011854 break;
11855 case FLASH_VENDOR_ATMEL_FLASH_UNBUFFERED:
11856 tp->nvram_jedecnum = JEDEC_ATMEL;
11857 tp->nvram_pagesize = ATMEL_AT25F512_PAGE_SIZE;
11858 break;
11859 case FLASH_VENDOR_ATMEL_EEPROM:
11860 tp->nvram_jedecnum = JEDEC_ATMEL;
11861 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011862 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011863 break;
11864 case FLASH_VENDOR_ST:
11865 tp->nvram_jedecnum = JEDEC_ST;
11866 tp->nvram_pagesize = ST_M45PEX0_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011867 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011868 break;
11869 case FLASH_VENDOR_SAIFUN:
11870 tp->nvram_jedecnum = JEDEC_SAIFUN;
11871 tp->nvram_pagesize = SAIFUN_SA25F0XX_PAGE_SIZE;
11872 break;
11873 case FLASH_VENDOR_SST_SMALL:
11874 case FLASH_VENDOR_SST_LARGE:
11875 tp->nvram_jedecnum = JEDEC_SST;
11876 tp->nvram_pagesize = SST_25VF0X0_PAGE_SIZE;
11877 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011878 }
Matt Carlson8590a602009-08-28 12:29:16 +000011879 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070011880 tp->nvram_jedecnum = JEDEC_ATMEL;
11881 tp->nvram_pagesize = ATMEL_AT45DB0X1B_PAGE_SIZE;
Joe Perches63c3a662011-04-26 08:12:10 +000011882 tg3_flag_set(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011883 }
11884}
11885
Matt Carlsona1b950d2009-09-01 13:20:17 +000011886static void __devinit tg3_nvram_get_pagesize(struct tg3 *tp, u32 nvmcfg1)
11887{
11888 switch (nvmcfg1 & NVRAM_CFG1_5752PAGE_SIZE_MASK) {
11889 case FLASH_5752PAGE_SIZE_256:
11890 tp->nvram_pagesize = 256;
11891 break;
11892 case FLASH_5752PAGE_SIZE_512:
11893 tp->nvram_pagesize = 512;
11894 break;
11895 case FLASH_5752PAGE_SIZE_1K:
11896 tp->nvram_pagesize = 1024;
11897 break;
11898 case FLASH_5752PAGE_SIZE_2K:
11899 tp->nvram_pagesize = 2048;
11900 break;
11901 case FLASH_5752PAGE_SIZE_4K:
11902 tp->nvram_pagesize = 4096;
11903 break;
11904 case FLASH_5752PAGE_SIZE_264:
11905 tp->nvram_pagesize = 264;
11906 break;
11907 case FLASH_5752PAGE_SIZE_528:
11908 tp->nvram_pagesize = 528;
11909 break;
11910 }
11911}
11912
Michael Chan361b4ac2005-04-21 17:11:21 -070011913static void __devinit tg3_get_5752_nvram_info(struct tg3 *tp)
11914{
11915 u32 nvcfg1;
11916
11917 nvcfg1 = tr32(NVRAM_CFG1);
11918
Michael Chane6af3012005-04-21 17:12:05 -070011919 /* NVRAM protection for TPM */
11920 if (nvcfg1 & (1 << 27))
Joe Perches63c3a662011-04-26 08:12:10 +000011921 tg3_flag_set(tp, PROTECTED_NVRAM);
Michael Chane6af3012005-04-21 17:12:05 -070011922
Michael Chan361b4ac2005-04-21 17:11:21 -070011923 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000011924 case FLASH_5752VENDOR_ATMEL_EEPROM_64KHZ:
11925 case FLASH_5752VENDOR_ATMEL_EEPROM_376KHZ:
11926 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011927 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000011928 break;
11929 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
11930 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011931 tg3_flag_set(tp, NVRAM_BUFFERED);
11932 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011933 break;
11934 case FLASH_5752VENDOR_ST_M45PE10:
11935 case FLASH_5752VENDOR_ST_M45PE20:
11936 case FLASH_5752VENDOR_ST_M45PE40:
11937 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011938 tg3_flag_set(tp, NVRAM_BUFFERED);
11939 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011940 break;
Michael Chan361b4ac2005-04-21 17:11:21 -070011941 }
11942
Joe Perches63c3a662011-04-26 08:12:10 +000011943 if (tg3_flag(tp, FLASH)) {
Matt Carlsona1b950d2009-09-01 13:20:17 +000011944 tg3_nvram_get_pagesize(tp, nvcfg1);
Matt Carlson8590a602009-08-28 12:29:16 +000011945 } else {
Michael Chan361b4ac2005-04-21 17:11:21 -070011946 /* For eeprom, set pagesize to maximum eeprom size */
11947 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
11948
11949 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
11950 tw32(NVRAM_CFG1, nvcfg1);
11951 }
11952}
11953
Michael Chand3c7b882006-03-23 01:28:25 -080011954static void __devinit tg3_get_5755_nvram_info(struct tg3 *tp)
11955{
Matt Carlson989a9d22007-05-05 11:51:05 -070011956 u32 nvcfg1, protect = 0;
Michael Chand3c7b882006-03-23 01:28:25 -080011957
11958 nvcfg1 = tr32(NVRAM_CFG1);
11959
11960 /* NVRAM protection for TPM */
Matt Carlson989a9d22007-05-05 11:51:05 -070011961 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000011962 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson989a9d22007-05-05 11:51:05 -070011963 protect = 1;
11964 }
Michael Chand3c7b882006-03-23 01:28:25 -080011965
Matt Carlson989a9d22007-05-05 11:51:05 -070011966 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
11967 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000011968 case FLASH_5755VENDOR_ATMEL_FLASH_1:
11969 case FLASH_5755VENDOR_ATMEL_FLASH_2:
11970 case FLASH_5755VENDOR_ATMEL_FLASH_3:
11971 case FLASH_5755VENDOR_ATMEL_FLASH_5:
11972 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000011973 tg3_flag_set(tp, NVRAM_BUFFERED);
11974 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011975 tp->nvram_pagesize = 264;
11976 if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_1 ||
11977 nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_5)
11978 tp->nvram_size = (protect ? 0x3e200 :
11979 TG3_NVRAM_SIZE_512KB);
11980 else if (nvcfg1 == FLASH_5755VENDOR_ATMEL_FLASH_2)
11981 tp->nvram_size = (protect ? 0x1f200 :
11982 TG3_NVRAM_SIZE_256KB);
11983 else
11984 tp->nvram_size = (protect ? 0x1f200 :
11985 TG3_NVRAM_SIZE_128KB);
11986 break;
11987 case FLASH_5752VENDOR_ST_M45PE10:
11988 case FLASH_5752VENDOR_ST_M45PE20:
11989 case FLASH_5752VENDOR_ST_M45PE40:
11990 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000011991 tg3_flag_set(tp, NVRAM_BUFFERED);
11992 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000011993 tp->nvram_pagesize = 256;
11994 if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE10)
11995 tp->nvram_size = (protect ?
11996 TG3_NVRAM_SIZE_64KB :
11997 TG3_NVRAM_SIZE_128KB);
11998 else if (nvcfg1 == FLASH_5752VENDOR_ST_M45PE20)
11999 tp->nvram_size = (protect ?
12000 TG3_NVRAM_SIZE_64KB :
12001 TG3_NVRAM_SIZE_256KB);
12002 else
12003 tp->nvram_size = (protect ?
12004 TG3_NVRAM_SIZE_128KB :
12005 TG3_NVRAM_SIZE_512KB);
12006 break;
Michael Chand3c7b882006-03-23 01:28:25 -080012007 }
12008}
12009
Michael Chan1b277772006-03-20 22:27:48 -080012010static void __devinit tg3_get_5787_nvram_info(struct tg3 *tp)
12011{
12012 u32 nvcfg1;
12013
12014 nvcfg1 = tr32(NVRAM_CFG1);
12015
12016 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
Matt Carlson8590a602009-08-28 12:29:16 +000012017 case FLASH_5787VENDOR_ATMEL_EEPROM_64KHZ:
12018 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12019 case FLASH_5787VENDOR_MICRO_EEPROM_64KHZ:
12020 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12021 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012022 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson8590a602009-08-28 12:29:16 +000012023 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
Michael Chan1b277772006-03-20 22:27:48 -080012024
Matt Carlson8590a602009-08-28 12:29:16 +000012025 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12026 tw32(NVRAM_CFG1, nvcfg1);
12027 break;
12028 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12029 case FLASH_5755VENDOR_ATMEL_FLASH_1:
12030 case FLASH_5755VENDOR_ATMEL_FLASH_2:
12031 case FLASH_5755VENDOR_ATMEL_FLASH_3:
12032 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012033 tg3_flag_set(tp, NVRAM_BUFFERED);
12034 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012035 tp->nvram_pagesize = 264;
12036 break;
12037 case FLASH_5752VENDOR_ST_M45PE10:
12038 case FLASH_5752VENDOR_ST_M45PE20:
12039 case FLASH_5752VENDOR_ST_M45PE40:
12040 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012041 tg3_flag_set(tp, NVRAM_BUFFERED);
12042 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012043 tp->nvram_pagesize = 256;
12044 break;
Michael Chan1b277772006-03-20 22:27:48 -080012045 }
12046}
12047
Matt Carlson6b91fa02007-10-10 18:01:09 -070012048static void __devinit tg3_get_5761_nvram_info(struct tg3 *tp)
12049{
12050 u32 nvcfg1, protect = 0;
12051
12052 nvcfg1 = tr32(NVRAM_CFG1);
12053
12054 /* NVRAM protection for TPM */
12055 if (nvcfg1 & (1 << 27)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012056 tg3_flag_set(tp, PROTECTED_NVRAM);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012057 protect = 1;
12058 }
12059
12060 nvcfg1 &= NVRAM_CFG1_5752VENDOR_MASK;
12061 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012062 case FLASH_5761VENDOR_ATMEL_ADB021D:
12063 case FLASH_5761VENDOR_ATMEL_ADB041D:
12064 case FLASH_5761VENDOR_ATMEL_ADB081D:
12065 case FLASH_5761VENDOR_ATMEL_ADB161D:
12066 case FLASH_5761VENDOR_ATMEL_MDB021D:
12067 case FLASH_5761VENDOR_ATMEL_MDB041D:
12068 case FLASH_5761VENDOR_ATMEL_MDB081D:
12069 case FLASH_5761VENDOR_ATMEL_MDB161D:
12070 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012071 tg3_flag_set(tp, NVRAM_BUFFERED);
12072 tg3_flag_set(tp, FLASH);
12073 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson8590a602009-08-28 12:29:16 +000012074 tp->nvram_pagesize = 256;
12075 break;
12076 case FLASH_5761VENDOR_ST_A_M45PE20:
12077 case FLASH_5761VENDOR_ST_A_M45PE40:
12078 case FLASH_5761VENDOR_ST_A_M45PE80:
12079 case FLASH_5761VENDOR_ST_A_M45PE16:
12080 case FLASH_5761VENDOR_ST_M_M45PE20:
12081 case FLASH_5761VENDOR_ST_M_M45PE40:
12082 case FLASH_5761VENDOR_ST_M_M45PE80:
12083 case FLASH_5761VENDOR_ST_M_M45PE16:
12084 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012085 tg3_flag_set(tp, NVRAM_BUFFERED);
12086 tg3_flag_set(tp, FLASH);
Matt Carlson8590a602009-08-28 12:29:16 +000012087 tp->nvram_pagesize = 256;
12088 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012089 }
12090
12091 if (protect) {
12092 tp->nvram_size = tr32(NVRAM_ADDR_LOCKOUT);
12093 } else {
12094 switch (nvcfg1) {
Matt Carlson8590a602009-08-28 12:29:16 +000012095 case FLASH_5761VENDOR_ATMEL_ADB161D:
12096 case FLASH_5761VENDOR_ATMEL_MDB161D:
12097 case FLASH_5761VENDOR_ST_A_M45PE16:
12098 case FLASH_5761VENDOR_ST_M_M45PE16:
12099 tp->nvram_size = TG3_NVRAM_SIZE_2MB;
12100 break;
12101 case FLASH_5761VENDOR_ATMEL_ADB081D:
12102 case FLASH_5761VENDOR_ATMEL_MDB081D:
12103 case FLASH_5761VENDOR_ST_A_M45PE80:
12104 case FLASH_5761VENDOR_ST_M_M45PE80:
12105 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12106 break;
12107 case FLASH_5761VENDOR_ATMEL_ADB041D:
12108 case FLASH_5761VENDOR_ATMEL_MDB041D:
12109 case FLASH_5761VENDOR_ST_A_M45PE40:
12110 case FLASH_5761VENDOR_ST_M_M45PE40:
12111 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12112 break;
12113 case FLASH_5761VENDOR_ATMEL_ADB021D:
12114 case FLASH_5761VENDOR_ATMEL_MDB021D:
12115 case FLASH_5761VENDOR_ST_A_M45PE20:
12116 case FLASH_5761VENDOR_ST_M_M45PE20:
12117 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12118 break;
Matt Carlson6b91fa02007-10-10 18:01:09 -070012119 }
12120 }
12121}
12122
Michael Chanb5d37722006-09-27 16:06:21 -070012123static void __devinit tg3_get_5906_nvram_info(struct tg3 *tp)
12124{
12125 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012126 tg3_flag_set(tp, NVRAM_BUFFERED);
Michael Chanb5d37722006-09-27 16:06:21 -070012127 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12128}
12129
Matt Carlson321d32a2008-11-21 17:22:19 -080012130static void __devinit tg3_get_57780_nvram_info(struct tg3 *tp)
12131{
12132 u32 nvcfg1;
12133
12134 nvcfg1 = tr32(NVRAM_CFG1);
12135
12136 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12137 case FLASH_5787VENDOR_ATMEL_EEPROM_376KHZ:
12138 case FLASH_5787VENDOR_MICRO_EEPROM_376KHZ:
12139 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012140 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson321d32a2008-11-21 17:22:19 -080012141 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12142
12143 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12144 tw32(NVRAM_CFG1, nvcfg1);
12145 return;
12146 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12147 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12148 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12149 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12150 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12151 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12152 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
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);
Matt Carlson321d32a2008-11-21 17:22:19 -080012156
12157 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12158 case FLASH_5752VENDOR_ATMEL_FLASH_BUFFERED:
12159 case FLASH_57780VENDOR_ATMEL_AT45DB011D:
12160 case FLASH_57780VENDOR_ATMEL_AT45DB011B:
12161 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12162 break;
12163 case FLASH_57780VENDOR_ATMEL_AT45DB021D:
12164 case FLASH_57780VENDOR_ATMEL_AT45DB021B:
12165 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12166 break;
12167 case FLASH_57780VENDOR_ATMEL_AT45DB041D:
12168 case FLASH_57780VENDOR_ATMEL_AT45DB041B:
12169 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12170 break;
12171 }
12172 break;
12173 case FLASH_5752VENDOR_ST_M45PE10:
12174 case FLASH_5752VENDOR_ST_M45PE20:
12175 case FLASH_5752VENDOR_ST_M45PE40:
12176 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012177 tg3_flag_set(tp, NVRAM_BUFFERED);
12178 tg3_flag_set(tp, FLASH);
Matt Carlson321d32a2008-11-21 17:22:19 -080012179
12180 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12181 case FLASH_5752VENDOR_ST_M45PE10:
12182 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12183 break;
12184 case FLASH_5752VENDOR_ST_M45PE20:
12185 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12186 break;
12187 case FLASH_5752VENDOR_ST_M45PE40:
12188 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12189 break;
12190 }
12191 break;
12192 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012193 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson321d32a2008-11-21 17:22:19 -080012194 return;
12195 }
12196
Matt Carlsona1b950d2009-09-01 13:20:17 +000012197 tg3_nvram_get_pagesize(tp, nvcfg1);
12198 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012199 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012200}
12201
12202
12203static void __devinit tg3_get_5717_nvram_info(struct tg3 *tp)
12204{
12205 u32 nvcfg1;
12206
12207 nvcfg1 = tr32(NVRAM_CFG1);
12208
12209 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12210 case FLASH_5717VENDOR_ATMEL_EEPROM:
12211 case FLASH_5717VENDOR_MICRO_EEPROM:
12212 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012213 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012214 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12215
12216 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12217 tw32(NVRAM_CFG1, nvcfg1);
12218 return;
12219 case FLASH_5717VENDOR_ATMEL_MDB011D:
12220 case FLASH_5717VENDOR_ATMEL_ADB011B:
12221 case FLASH_5717VENDOR_ATMEL_ADB011D:
12222 case FLASH_5717VENDOR_ATMEL_MDB021D:
12223 case FLASH_5717VENDOR_ATMEL_ADB021B:
12224 case FLASH_5717VENDOR_ATMEL_ADB021D:
12225 case FLASH_5717VENDOR_ATMEL_45USPT:
12226 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012227 tg3_flag_set(tp, NVRAM_BUFFERED);
12228 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012229
12230 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12231 case FLASH_5717VENDOR_ATMEL_MDB021D:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012232 /* Detect size with tg3_nvram_get_size() */
12233 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012234 case FLASH_5717VENDOR_ATMEL_ADB021B:
12235 case FLASH_5717VENDOR_ATMEL_ADB021D:
12236 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12237 break;
12238 default:
12239 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12240 break;
12241 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012242 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012243 case FLASH_5717VENDOR_ST_M_M25PE10:
12244 case FLASH_5717VENDOR_ST_A_M25PE10:
12245 case FLASH_5717VENDOR_ST_M_M45PE10:
12246 case FLASH_5717VENDOR_ST_A_M45PE10:
12247 case FLASH_5717VENDOR_ST_M_M25PE20:
12248 case FLASH_5717VENDOR_ST_A_M25PE20:
12249 case FLASH_5717VENDOR_ST_M_M45PE20:
12250 case FLASH_5717VENDOR_ST_A_M45PE20:
12251 case FLASH_5717VENDOR_ST_25USPT:
12252 case FLASH_5717VENDOR_ST_45USPT:
12253 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012254 tg3_flag_set(tp, NVRAM_BUFFERED);
12255 tg3_flag_set(tp, FLASH);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012256
12257 switch (nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK) {
12258 case FLASH_5717VENDOR_ST_M_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012259 case FLASH_5717VENDOR_ST_M_M45PE20:
Matt Carlson66ee33b2011-04-05 14:22:51 +000012260 /* Detect size with tg3_nvram_get_size() */
12261 break;
12262 case FLASH_5717VENDOR_ST_A_M25PE20:
Matt Carlsona1b950d2009-09-01 13:20:17 +000012263 case FLASH_5717VENDOR_ST_A_M45PE20:
12264 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12265 break;
12266 default:
12267 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12268 break;
12269 }
Matt Carlson321d32a2008-11-21 17:22:19 -080012270 break;
Matt Carlsona1b950d2009-09-01 13:20:17 +000012271 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012272 tg3_flag_set(tp, NO_NVRAM);
Matt Carlsona1b950d2009-09-01 13:20:17 +000012273 return;
Matt Carlson321d32a2008-11-21 17:22:19 -080012274 }
Matt Carlsona1b950d2009-09-01 13:20:17 +000012275
12276 tg3_nvram_get_pagesize(tp, nvcfg1);
12277 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012278 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson321d32a2008-11-21 17:22:19 -080012279}
12280
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012281static void __devinit tg3_get_5720_nvram_info(struct tg3 *tp)
12282{
12283 u32 nvcfg1, nvmpinstrp;
12284
12285 nvcfg1 = tr32(NVRAM_CFG1);
12286 nvmpinstrp = nvcfg1 & NVRAM_CFG1_5752VENDOR_MASK;
12287
12288 switch (nvmpinstrp) {
12289 case FLASH_5720_EEPROM_HD:
12290 case FLASH_5720_EEPROM_LD:
12291 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012292 tg3_flag_set(tp, NVRAM_BUFFERED);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012293
12294 nvcfg1 &= ~NVRAM_CFG1_COMPAT_BYPASS;
12295 tw32(NVRAM_CFG1, nvcfg1);
12296 if (nvmpinstrp == FLASH_5720_EEPROM_HD)
12297 tp->nvram_pagesize = ATMEL_AT24C512_CHIP_SIZE;
12298 else
12299 tp->nvram_pagesize = ATMEL_AT24C02_CHIP_SIZE;
12300 return;
12301 case FLASH_5720VENDOR_M_ATMEL_DB011D:
12302 case FLASH_5720VENDOR_A_ATMEL_DB011B:
12303 case FLASH_5720VENDOR_A_ATMEL_DB011D:
12304 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12305 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12306 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12307 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12308 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12309 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12310 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12311 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12312 case FLASH_5720VENDOR_ATMEL_45USPT:
12313 tp->nvram_jedecnum = JEDEC_ATMEL;
Joe Perches63c3a662011-04-26 08:12:10 +000012314 tg3_flag_set(tp, NVRAM_BUFFERED);
12315 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012316
12317 switch (nvmpinstrp) {
12318 case FLASH_5720VENDOR_M_ATMEL_DB021D:
12319 case FLASH_5720VENDOR_A_ATMEL_DB021B:
12320 case FLASH_5720VENDOR_A_ATMEL_DB021D:
12321 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12322 break;
12323 case FLASH_5720VENDOR_M_ATMEL_DB041D:
12324 case FLASH_5720VENDOR_A_ATMEL_DB041B:
12325 case FLASH_5720VENDOR_A_ATMEL_DB041D:
12326 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12327 break;
12328 case FLASH_5720VENDOR_M_ATMEL_DB081D:
12329 case FLASH_5720VENDOR_A_ATMEL_DB081D:
12330 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12331 break;
12332 default:
12333 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12334 break;
12335 }
12336 break;
12337 case FLASH_5720VENDOR_M_ST_M25PE10:
12338 case FLASH_5720VENDOR_M_ST_M45PE10:
12339 case FLASH_5720VENDOR_A_ST_M25PE10:
12340 case FLASH_5720VENDOR_A_ST_M45PE10:
12341 case FLASH_5720VENDOR_M_ST_M25PE20:
12342 case FLASH_5720VENDOR_M_ST_M45PE20:
12343 case FLASH_5720VENDOR_A_ST_M25PE20:
12344 case FLASH_5720VENDOR_A_ST_M45PE20:
12345 case FLASH_5720VENDOR_M_ST_M25PE40:
12346 case FLASH_5720VENDOR_M_ST_M45PE40:
12347 case FLASH_5720VENDOR_A_ST_M25PE40:
12348 case FLASH_5720VENDOR_A_ST_M45PE40:
12349 case FLASH_5720VENDOR_M_ST_M25PE80:
12350 case FLASH_5720VENDOR_M_ST_M45PE80:
12351 case FLASH_5720VENDOR_A_ST_M25PE80:
12352 case FLASH_5720VENDOR_A_ST_M45PE80:
12353 case FLASH_5720VENDOR_ST_25USPT:
12354 case FLASH_5720VENDOR_ST_45USPT:
12355 tp->nvram_jedecnum = JEDEC_ST;
Joe Perches63c3a662011-04-26 08:12:10 +000012356 tg3_flag_set(tp, NVRAM_BUFFERED);
12357 tg3_flag_set(tp, FLASH);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012358
12359 switch (nvmpinstrp) {
12360 case FLASH_5720VENDOR_M_ST_M25PE20:
12361 case FLASH_5720VENDOR_M_ST_M45PE20:
12362 case FLASH_5720VENDOR_A_ST_M25PE20:
12363 case FLASH_5720VENDOR_A_ST_M45PE20:
12364 tp->nvram_size = TG3_NVRAM_SIZE_256KB;
12365 break;
12366 case FLASH_5720VENDOR_M_ST_M25PE40:
12367 case FLASH_5720VENDOR_M_ST_M45PE40:
12368 case FLASH_5720VENDOR_A_ST_M25PE40:
12369 case FLASH_5720VENDOR_A_ST_M45PE40:
12370 tp->nvram_size = TG3_NVRAM_SIZE_512KB;
12371 break;
12372 case FLASH_5720VENDOR_M_ST_M25PE80:
12373 case FLASH_5720VENDOR_M_ST_M45PE80:
12374 case FLASH_5720VENDOR_A_ST_M25PE80:
12375 case FLASH_5720VENDOR_A_ST_M45PE80:
12376 tp->nvram_size = TG3_NVRAM_SIZE_1MB;
12377 break;
12378 default:
12379 tp->nvram_size = TG3_NVRAM_SIZE_128KB;
12380 break;
12381 }
12382 break;
12383 default:
Joe Perches63c3a662011-04-26 08:12:10 +000012384 tg3_flag_set(tp, NO_NVRAM);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012385 return;
12386 }
12387
12388 tg3_nvram_get_pagesize(tp, nvcfg1);
12389 if (tp->nvram_pagesize != 264 && tp->nvram_pagesize != 528)
Joe Perches63c3a662011-04-26 08:12:10 +000012390 tg3_flag_set(tp, NO_NVRAM_ADDR_TRANS);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012391}
12392
Linus Torvalds1da177e2005-04-16 15:20:36 -070012393/* Chips other than 5700/5701 use the NVRAM for fetching info. */
12394static void __devinit tg3_nvram_init(struct tg3 *tp)
12395{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012396 tw32_f(GRC_EEPROM_ADDR,
12397 (EEPROM_ADDR_FSM_RESET |
12398 (EEPROM_DEFAULT_CLOCK_PERIOD <<
12399 EEPROM_ADDR_CLKPERD_SHIFT)));
12400
Michael Chan9d57f012006-12-07 00:23:25 -080012401 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012402
12403 /* Enable seeprom accesses. */
12404 tw32_f(GRC_LOCAL_CTRL,
12405 tr32(GRC_LOCAL_CTRL) | GRC_LCLCTRL_AUTO_SEEPROM);
12406 udelay(100);
12407
12408 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12409 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701) {
Joe Perches63c3a662011-04-26 08:12:10 +000012410 tg3_flag_set(tp, NVRAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012411
Michael Chanec41c7d2006-01-17 02:40:55 -080012412 if (tg3_nvram_lock(tp)) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000012413 netdev_warn(tp->dev,
12414 "Cannot get nvram lock, %s failed\n",
Joe Perches05dbe002010-02-17 19:44:19 +000012415 __func__);
Michael Chanec41c7d2006-01-17 02:40:55 -080012416 return;
12417 }
Michael Chane6af3012005-04-21 17:12:05 -070012418 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012419
Matt Carlson989a9d22007-05-05 11:51:05 -070012420 tp->nvram_size = 0;
12421
Michael Chan361b4ac2005-04-21 17:11:21 -070012422 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
12423 tg3_get_5752_nvram_info(tp);
Michael Chand3c7b882006-03-23 01:28:25 -080012424 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
12425 tg3_get_5755_nvram_info(tp);
Matt Carlsond30cdd22007-10-07 23:28:35 -070012426 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson57e69832008-05-25 23:48:31 -070012427 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
12428 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
Michael Chan1b277772006-03-20 22:27:48 -080012429 tg3_get_5787_nvram_info(tp);
Matt Carlson6b91fa02007-10-10 18:01:09 -070012430 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761)
12431 tg3_get_5761_nvram_info(tp);
Michael Chanb5d37722006-09-27 16:06:21 -070012432 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
12433 tg3_get_5906_nvram_info(tp);
Matt Carlsonb703df62009-12-03 08:36:21 +000012434 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
12435 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Matt Carlson321d32a2008-11-21 17:22:19 -080012436 tg3_get_57780_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012437 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
12438 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlsona1b950d2009-09-01 13:20:17 +000012439 tg3_get_5717_nvram_info(tp);
Matt Carlson9b91b5f2011-04-05 14:22:47 +000012440 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
12441 tg3_get_5720_nvram_info(tp);
Michael Chan361b4ac2005-04-21 17:11:21 -070012442 else
12443 tg3_get_nvram_info(tp);
12444
Matt Carlson989a9d22007-05-05 11:51:05 -070012445 if (tp->nvram_size == 0)
12446 tg3_get_nvram_size(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012447
Michael Chane6af3012005-04-21 17:12:05 -070012448 tg3_disable_nvram_access(tp);
Michael Chan381291b2005-12-13 21:08:21 -080012449 tg3_nvram_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012450
12451 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012452 tg3_flag_clear(tp, NVRAM);
12453 tg3_flag_clear(tp, NVRAM_BUFFERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012454
12455 tg3_get_eeprom_size(tp);
12456 }
12457}
12458
Linus Torvalds1da177e2005-04-16 15:20:36 -070012459static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp,
12460 u32 offset, u32 len, u8 *buf)
12461{
12462 int i, j, rc = 0;
12463 u32 val;
12464
12465 for (i = 0; i < len; i += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012466 u32 addr;
Matt Carlsona9dc5292009-02-25 14:25:30 +000012467 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012468
12469 addr = offset + i;
12470
12471 memcpy(&data, buf + i, 4);
12472
Matt Carlson62cedd12009-04-20 14:52:29 -070012473 /*
12474 * The SEEPROM interface expects the data to always be opposite
12475 * the native endian format. We accomplish this by reversing
12476 * all the operations that would have been performed on the
12477 * data from a call to tg3_nvram_read_be32().
12478 */
12479 tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012480
12481 val = tr32(GRC_EEPROM_ADDR);
12482 tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE);
12483
12484 val &= ~(EEPROM_ADDR_ADDR_MASK | EEPROM_ADDR_DEVID_MASK |
12485 EEPROM_ADDR_READ);
12486 tw32(GRC_EEPROM_ADDR, val |
12487 (0 << EEPROM_ADDR_DEVID_SHIFT) |
12488 (addr & EEPROM_ADDR_ADDR_MASK) |
12489 EEPROM_ADDR_START |
12490 EEPROM_ADDR_WRITE);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012491
Michael Chan9d57f012006-12-07 00:23:25 -080012492 for (j = 0; j < 1000; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012493 val = tr32(GRC_EEPROM_ADDR);
12494
12495 if (val & EEPROM_ADDR_COMPLETE)
12496 break;
Michael Chan9d57f012006-12-07 00:23:25 -080012497 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012498 }
12499 if (!(val & EEPROM_ADDR_COMPLETE)) {
12500 rc = -EBUSY;
12501 break;
12502 }
12503 }
12504
12505 return rc;
12506}
12507
12508/* offset and length are dword aligned */
12509static int tg3_nvram_write_block_unbuffered(struct tg3 *tp, u32 offset, u32 len,
12510 u8 *buf)
12511{
12512 int ret = 0;
12513 u32 pagesize = tp->nvram_pagesize;
12514 u32 pagemask = pagesize - 1;
12515 u32 nvram_cmd;
12516 u8 *tmp;
12517
12518 tmp = kmalloc(pagesize, GFP_KERNEL);
12519 if (tmp == NULL)
12520 return -ENOMEM;
12521
12522 while (len) {
12523 int j;
Michael Chane6af3012005-04-21 17:12:05 -070012524 u32 phy_addr, page_off, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012525
12526 phy_addr = offset & ~pagemask;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040012527
Linus Torvalds1da177e2005-04-16 15:20:36 -070012528 for (j = 0; j < pagesize; j += 4) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000012529 ret = tg3_nvram_read_be32(tp, phy_addr + j,
12530 (__be32 *) (tmp + j));
12531 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012532 break;
12533 }
12534 if (ret)
12535 break;
12536
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012537 page_off = offset & pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012538 size = pagesize;
12539 if (len < size)
12540 size = len;
12541
12542 len -= size;
12543
12544 memcpy(tmp + page_off, buf, size);
12545
12546 offset = offset + (pagesize - page_off);
12547
Michael Chane6af3012005-04-21 17:12:05 -070012548 tg3_enable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012549
12550 /*
12551 * Before we can erase the flash page, we need
12552 * to issue a special "write enable" command.
12553 */
12554 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12555
12556 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12557 break;
12558
12559 /* Erase the target page */
12560 tw32(NVRAM_ADDR, phy_addr);
12561
12562 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR |
12563 NVRAM_CMD_FIRST | NVRAM_CMD_LAST | NVRAM_CMD_ERASE;
12564
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012565 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012566 break;
12567
12568 /* Issue another write enable to start the write. */
12569 nvram_cmd = NVRAM_CMD_WREN | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12570
12571 if (tg3_nvram_exec_cmd(tp, nvram_cmd))
12572 break;
12573
12574 for (j = 0; j < pagesize; j += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012575 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012576
Al Virob9fc7dc2007-12-17 22:59:57 -080012577 data = *((__be32 *) (tmp + j));
Matt Carlsona9dc5292009-02-25 14:25:30 +000012578
Al Virob9fc7dc2007-12-17 22:59:57 -080012579 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012580
12581 tw32(NVRAM_ADDR, phy_addr + j);
12582
12583 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE |
12584 NVRAM_CMD_WR;
12585
12586 if (j == 0)
12587 nvram_cmd |= NVRAM_CMD_FIRST;
12588 else if (j == (pagesize - 4))
12589 nvram_cmd |= NVRAM_CMD_LAST;
12590
12591 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12592 break;
12593 }
12594 if (ret)
12595 break;
12596 }
12597
12598 nvram_cmd = NVRAM_CMD_WRDI | NVRAM_CMD_GO | NVRAM_CMD_DONE;
12599 tg3_nvram_exec_cmd(tp, nvram_cmd);
12600
12601 kfree(tmp);
12602
12603 return ret;
12604}
12605
12606/* offset and length are dword aligned */
12607static int tg3_nvram_write_block_buffered(struct tg3 *tp, u32 offset, u32 len,
12608 u8 *buf)
12609{
12610 int i, ret = 0;
12611
12612 for (i = 0; i < len; i += 4, offset += 4) {
Al Virob9fc7dc2007-12-17 22:59:57 -080012613 u32 page_off, phy_addr, nvram_cmd;
12614 __be32 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012615
12616 memcpy(&data, buf + i, 4);
Al Virob9fc7dc2007-12-17 22:59:57 -080012617 tw32(NVRAM_WRDATA, be32_to_cpu(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -070012618
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012619 page_off = offset % tp->nvram_pagesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012620
Michael Chan18201802006-03-20 22:29:15 -080012621 phy_addr = tg3_nvram_phys_addr(tp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012622
12623 tw32(NVRAM_ADDR, phy_addr);
12624
12625 nvram_cmd = NVRAM_CMD_GO | NVRAM_CMD_DONE | NVRAM_CMD_WR;
12626
Matt Carlsonc6cdf432010-04-05 10:19:26 +000012627 if (page_off == 0 || i == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012628 nvram_cmd |= NVRAM_CMD_FIRST;
Michael Chanf6d9a252006-04-29 19:00:24 -070012629 if (page_off == (tp->nvram_pagesize - 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012630 nvram_cmd |= NVRAM_CMD_LAST;
12631
12632 if (i == (len - 4))
12633 nvram_cmd |= NVRAM_CMD_LAST;
12634
Matt Carlson321d32a2008-11-21 17:22:19 -080012635 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5752 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012636 !tg3_flag(tp, 5755_PLUS) &&
Michael Chan4c987482005-09-05 17:52:38 -070012637 (tp->nvram_jedecnum == JEDEC_ST) &&
12638 (nvram_cmd & NVRAM_CMD_FIRST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012639
12640 if ((ret = tg3_nvram_exec_cmd(tp,
12641 NVRAM_CMD_WREN | NVRAM_CMD_GO |
12642 NVRAM_CMD_DONE)))
12643
12644 break;
12645 }
Joe Perches63c3a662011-04-26 08:12:10 +000012646 if (!tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012647 /* We always do complete word writes to eeprom. */
12648 nvram_cmd |= (NVRAM_CMD_FIRST | NVRAM_CMD_LAST);
12649 }
12650
12651 if ((ret = tg3_nvram_exec_cmd(tp, nvram_cmd)))
12652 break;
12653 }
12654 return ret;
12655}
12656
12657/* offset and length are dword aligned */
12658static int tg3_nvram_write_block(struct tg3 *tp, u32 offset, u32 len, u8 *buf)
12659{
12660 int ret;
12661
Joe Perches63c3a662011-04-26 08:12:10 +000012662 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012663 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl &
12664 ~GRC_LCLCTRL_GPIO_OUTPUT1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012665 udelay(40);
12666 }
12667
Joe Perches63c3a662011-04-26 08:12:10 +000012668 if (!tg3_flag(tp, NVRAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012669 ret = tg3_nvram_write_block_using_eeprom(tp, offset, len, buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012670 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012671 u32 grc_mode;
12672
Michael Chanec41c7d2006-01-17 02:40:55 -080012673 ret = tg3_nvram_lock(tp);
12674 if (ret)
12675 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012676
Michael Chane6af3012005-04-21 17:12:05 -070012677 tg3_enable_nvram_access(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000012678 if (tg3_flag(tp, 5750_PLUS) && !tg3_flag(tp, PROTECTED_NVRAM))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012679 tw32(NVRAM_WRITE1, 0x406);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012680
12681 grc_mode = tr32(GRC_MODE);
12682 tw32(GRC_MODE, grc_mode | GRC_MODE_NVRAM_WR_ENABLE);
12683
Joe Perches63c3a662011-04-26 08:12:10 +000012684 if (tg3_flag(tp, NVRAM_BUFFERED) || !tg3_flag(tp, FLASH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012685 ret = tg3_nvram_write_block_buffered(tp, offset, len,
12686 buf);
Matt Carlson859a588792010-04-05 10:19:28 +000012687 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012688 ret = tg3_nvram_write_block_unbuffered(tp, offset, len,
12689 buf);
12690 }
12691
12692 grc_mode = tr32(GRC_MODE);
12693 tw32(GRC_MODE, grc_mode & ~GRC_MODE_NVRAM_WR_ENABLE);
12694
Michael Chane6af3012005-04-21 17:12:05 -070012695 tg3_disable_nvram_access(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012696 tg3_nvram_unlock(tp);
12697 }
12698
Joe Perches63c3a662011-04-26 08:12:10 +000012699 if (tg3_flag(tp, EEPROM_WRITE_PROT)) {
Michael Chan314fba32005-04-21 17:07:04 -070012700 tw32_f(GRC_LOCAL_CTRL, tp->grc_local_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012701 udelay(40);
12702 }
12703
12704 return ret;
12705}
12706
12707struct subsys_tbl_ent {
12708 u16 subsys_vendor, subsys_devid;
12709 u32 phy_id;
12710};
12711
Matt Carlson24daf2b2010-02-17 15:17:02 +000012712static struct subsys_tbl_ent subsys_id_to_phy_id[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012713 /* Broadcom boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012714 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012715 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A6, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012716 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012717 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A5, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012718 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012719 TG3PCI_SUBDEVICE_ID_BROADCOM_95700T6, TG3_PHY_ID_BCM8002 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012720 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12721 TG3PCI_SUBDEVICE_ID_BROADCOM_95700A9, 0 },
12722 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012723 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T1, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012724 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012725 TG3PCI_SUBDEVICE_ID_BROADCOM_95701T8, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012726 { TG3PCI_SUBVENDOR_ID_BROADCOM,
12727 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A7, 0 },
12728 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012729 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A10, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012730 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012731 TG3PCI_SUBDEVICE_ID_BROADCOM_95701A12, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012732 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012733 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX1, TG3_PHY_ID_BCM5703 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012734 { TG3PCI_SUBVENDOR_ID_BROADCOM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012735 TG3PCI_SUBDEVICE_ID_BROADCOM_95703AX2, TG3_PHY_ID_BCM5703 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012736
12737 /* 3com boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012738 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012739 TG3PCI_SUBDEVICE_ID_3COM_3C996T, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012740 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012741 TG3PCI_SUBDEVICE_ID_3COM_3C996BT, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012742 { TG3PCI_SUBVENDOR_ID_3COM,
12743 TG3PCI_SUBDEVICE_ID_3COM_3C996SX, 0 },
12744 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012745 TG3PCI_SUBDEVICE_ID_3COM_3C1000T, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012746 { TG3PCI_SUBVENDOR_ID_3COM,
Matt Carlson79eb6902010-02-17 15:17:03 +000012747 TG3PCI_SUBDEVICE_ID_3COM_3C940BR01, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012748
12749 /* DELL boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012750 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012751 TG3PCI_SUBDEVICE_ID_DELL_VIPER, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012752 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012753 TG3PCI_SUBDEVICE_ID_DELL_JAGUAR, TG3_PHY_ID_BCM5401 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012754 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012755 TG3PCI_SUBDEVICE_ID_DELL_MERLOT, TG3_PHY_ID_BCM5411 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012756 { TG3PCI_SUBVENDOR_ID_DELL,
Matt Carlson79eb6902010-02-17 15:17:03 +000012757 TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT, TG3_PHY_ID_BCM5411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012758
12759 /* Compaq boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012760 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012761 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012762 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012763 TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012764 { TG3PCI_SUBVENDOR_ID_COMPAQ,
12765 TG3PCI_SUBDEVICE_ID_COMPAQ_CHANGELING, 0 },
12766 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012767 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780, TG3_PHY_ID_BCM5701 },
Matt Carlson24daf2b2010-02-17 15:17:02 +000012768 { TG3PCI_SUBVENDOR_ID_COMPAQ,
Matt Carlson79eb6902010-02-17 15:17:03 +000012769 TG3PCI_SUBDEVICE_ID_COMPAQ_NC7780_2, TG3_PHY_ID_BCM5701 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070012770
12771 /* IBM boards. */
Matt Carlson24daf2b2010-02-17 15:17:02 +000012772 { TG3PCI_SUBVENDOR_ID_IBM,
12773 TG3PCI_SUBDEVICE_ID_IBM_5703SAX2, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012774};
12775
Matt Carlson24daf2b2010-02-17 15:17:02 +000012776static struct subsys_tbl_ent * __devinit tg3_lookup_by_subsys(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012777{
12778 int i;
12779
12780 for (i = 0; i < ARRAY_SIZE(subsys_id_to_phy_id); i++) {
12781 if ((subsys_id_to_phy_id[i].subsys_vendor ==
12782 tp->pdev->subsystem_vendor) &&
12783 (subsys_id_to_phy_id[i].subsys_devid ==
12784 tp->pdev->subsystem_device))
12785 return &subsys_id_to_phy_id[i];
12786 }
12787 return NULL;
12788}
12789
Michael Chan7d0c41e2005-04-21 17:06:20 -070012790static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012791{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012792 u32 val;
David S. Millerf49639e2006-06-09 11:58:36 -070012793
Matt Carlson79eb6902010-02-17 15:17:03 +000012794 tp->phy_id = TG3_PHY_ID_INVALID;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012795 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12796
Gary Zambranoa85feb82007-05-05 11:52:19 -070012797 /* Assume an onboard device and WOL capable by default. */
Joe Perches63c3a662011-04-26 08:12:10 +000012798 tg3_flag_set(tp, EEPROM_WRITE_PROT);
12799 tg3_flag_set(tp, WOL_CAP);
David S. Miller72b845e2006-03-14 14:11:48 -080012800
Michael Chanb5d37722006-09-27 16:06:21 -070012801 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chan9d26e212006-12-07 00:21:14 -080012802 if (!(tr32(PCIE_TRANSACTION_CFG) & PCIE_TRANS_CFG_LOM)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012803 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12804 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012805 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012806 val = tr32(VCPU_CFGSHDW);
12807 if (val & VCPU_CFGSHDW_ASPM_DBNC)
Joe Perches63c3a662011-04-26 08:12:10 +000012808 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson0527ba32007-10-10 18:03:30 -070012809 if ((val & VCPU_CFGSHDW_WOL_ENABLE) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012810 (val & VCPU_CFGSHDW_WOL_MAGPKT)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012811 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012812 device_set_wakeup_enable(&tp->pdev->dev, true);
12813 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012814 goto done;
Michael Chanb5d37722006-09-27 16:06:21 -070012815 }
12816
Linus Torvalds1da177e2005-04-16 15:20:36 -070012817 tg3_read_mem(tp, NIC_SRAM_DATA_SIG, &val);
12818 if (val == NIC_SRAM_DATA_SIG_MAGIC) {
12819 u32 nic_cfg, led_cfg;
Matt Carlsona9daf362008-05-25 23:49:44 -070012820 u32 nic_phy_id, ver, cfg2 = 0, cfg4 = 0, eeprom_phy_id;
Michael Chan7d0c41e2005-04-21 17:06:20 -070012821 int eeprom_phy_serdes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012822
12823 tg3_read_mem(tp, NIC_SRAM_DATA_CFG, &nic_cfg);
12824 tp->nic_sram_data_cfg = nic_cfg;
12825
12826 tg3_read_mem(tp, NIC_SRAM_DATA_VER, &ver);
12827 ver >>= NIC_SRAM_DATA_VER_SHIFT;
Matt Carlson6ff6f812011-05-19 12:12:54 +000012828 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
12829 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
12830 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5703 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070012831 (ver > 0) && (ver < 0x100))
12832 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_2, &cfg2);
12833
Matt Carlsona9daf362008-05-25 23:49:44 -070012834 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785)
12835 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_4, &cfg4);
12836
Linus Torvalds1da177e2005-04-16 15:20:36 -070012837 if ((nic_cfg & NIC_SRAM_DATA_CFG_PHY_TYPE_MASK) ==
12838 NIC_SRAM_DATA_CFG_PHY_TYPE_FIBER)
12839 eeprom_phy_serdes = 1;
12840
12841 tg3_read_mem(tp, NIC_SRAM_DATA_PHY_ID, &nic_phy_id);
12842 if (nic_phy_id != 0) {
12843 u32 id1 = nic_phy_id & NIC_SRAM_DATA_PHY_ID1_MASK;
12844 u32 id2 = nic_phy_id & NIC_SRAM_DATA_PHY_ID2_MASK;
12845
12846 eeprom_phy_id = (id1 >> 16) << 10;
12847 eeprom_phy_id |= (id2 & 0xfc00) << 16;
12848 eeprom_phy_id |= (id2 & 0x03ff) << 0;
12849 } else
12850 eeprom_phy_id = 0;
12851
Michael Chan7d0c41e2005-04-21 17:06:20 -070012852 tp->phy_id = eeprom_phy_id;
Michael Chan747e8f82005-07-25 12:33:22 -070012853 if (eeprom_phy_serdes) {
Joe Perches63c3a662011-04-26 08:12:10 +000012854 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012855 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Matt Carlsona50d0792010-06-05 17:24:37 +000012856 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012857 tp->phy_flags |= TG3_PHYFLG_MII_SERDES;
Michael Chan747e8f82005-07-25 12:33:22 -070012858 }
Michael Chan7d0c41e2005-04-21 17:06:20 -070012859
Joe Perches63c3a662011-04-26 08:12:10 +000012860 if (tg3_flag(tp, 5750_PLUS))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012861 led_cfg = cfg2 & (NIC_SRAM_DATA_CFG_LED_MODE_MASK |
12862 SHASTA_EXT_LED_MODE_MASK);
John W. Linvillecbf46852005-04-21 17:01:29 -070012863 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070012864 led_cfg = nic_cfg & NIC_SRAM_DATA_CFG_LED_MODE_MASK;
12865
12866 switch (led_cfg) {
12867 default:
12868 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_1:
12869 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12870 break;
12871
12872 case NIC_SRAM_DATA_CFG_LED_MODE_PHY_2:
12873 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12874 break;
12875
12876 case NIC_SRAM_DATA_CFG_LED_MODE_MAC:
12877 tp->led_ctrl = LED_CTRL_MODE_MAC;
Michael Chan9ba27792005-06-06 15:16:20 -070012878
12879 /* Default to PHY_1_MODE if 0 (MAC_MODE) is
12880 * read on some older 5700/5701 bootcode.
12881 */
12882 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
12883 ASIC_REV_5700 ||
12884 GET_ASIC_REV(tp->pci_chip_rev_id) ==
12885 ASIC_REV_5701)
12886 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
12887
Linus Torvalds1da177e2005-04-16 15:20:36 -070012888 break;
12889
12890 case SHASTA_EXT_LED_SHARED:
12891 tp->led_ctrl = LED_CTRL_MODE_SHARED;
12892 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0 &&
12893 tp->pci_chip_rev_id != CHIPREV_ID_5750_A1)
12894 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12895 LED_CTRL_MODE_PHY_2);
12896 break;
12897
12898 case SHASTA_EXT_LED_MAC:
12899 tp->led_ctrl = LED_CTRL_MODE_SHASTA_MAC;
12900 break;
12901
12902 case SHASTA_EXT_LED_COMBO:
12903 tp->led_ctrl = LED_CTRL_MODE_COMBO;
12904 if (tp->pci_chip_rev_id != CHIPREV_ID_5750_A0)
12905 tp->led_ctrl |= (LED_CTRL_MODE_PHY_1 |
12906 LED_CTRL_MODE_PHY_2);
12907 break;
12908
Stephen Hemminger855e1112008-04-16 16:37:28 -070012909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012910
12911 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 tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL)
12914 tp->led_ctrl = LED_CTRL_MODE_PHY_2;
12915
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012916 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX)
12917 tp->led_ctrl = LED_CTRL_MODE_PHY_1;
Matt Carlson5f608912007-11-12 21:17:07 -080012918
Michael Chan9d26e212006-12-07 00:21:14 -080012919 if (nic_cfg & NIC_SRAM_DATA_CFG_EEPROM_WP) {
Joe Perches63c3a662011-04-26 08:12:10 +000012920 tg3_flag_set(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012921 if ((tp->pdev->subsystem_vendor ==
12922 PCI_VENDOR_ID_ARIMA) &&
12923 (tp->pdev->subsystem_device == 0x205a ||
12924 tp->pdev->subsystem_device == 0x2063))
Joe Perches63c3a662011-04-26 08:12:10 +000012925 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
Michael Chan9d26e212006-12-07 00:21:14 -080012926 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000012927 tg3_flag_clear(tp, EEPROM_WRITE_PROT);
12928 tg3_flag_set(tp, IS_NIC);
Michael Chan9d26e212006-12-07 00:21:14 -080012929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070012930
12931 if (nic_cfg & NIC_SRAM_DATA_CFG_ASF_ENABLE) {
Joe Perches63c3a662011-04-26 08:12:10 +000012932 tg3_flag_set(tp, ENABLE_ASF);
12933 if (tg3_flag(tp, 5750_PLUS))
12934 tg3_flag_set(tp, ASF_NEW_HANDSHAKE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012935 }
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012936
12937 if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) &&
Joe Perches63c3a662011-04-26 08:12:10 +000012938 tg3_flag(tp, 5750_PLUS))
12939 tg3_flag_set(tp, ENABLE_APE);
Matt Carlsonb2b98d42008-11-03 16:52:32 -080012940
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012941 if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES &&
Gary Zambranoa85feb82007-05-05 11:52:19 -070012942 !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL))
Joe Perches63c3a662011-04-26 08:12:10 +000012943 tg3_flag_clear(tp, WOL_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012944
Joe Perches63c3a662011-04-26 08:12:10 +000012945 if (tg3_flag(tp, WOL_CAP) &&
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012946 (nic_cfg & NIC_SRAM_DATA_CFG_WOL_ENABLE)) {
Joe Perches63c3a662011-04-26 08:12:10 +000012947 tg3_flag_set(tp, WOL_ENABLE);
Rafael J. Wysocki6fdbab92011-04-28 11:02:15 +000012948 device_set_wakeup_enable(&tp->pdev->dev, true);
12949 }
Matt Carlson0527ba32007-10-10 18:03:30 -070012950
Linus Torvalds1da177e2005-04-16 15:20:36 -070012951 if (cfg2 & (1 << 17))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012952 tp->phy_flags |= TG3_PHYFLG_CAPACITIVE_COUPLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012953
12954 /* serdes signal pre-emphasis in register 0x590 set by */
12955 /* bootcode if bit 18 is set */
12956 if (cfg2 & (1 << 18))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012957 tp->phy_flags |= TG3_PHYFLG_SERDES_PREEMPHASIS;
Matt Carlson8ed5d972007-05-07 00:25:49 -070012958
Joe Perches63c3a662011-04-26 08:12:10 +000012959 if ((tg3_flag(tp, 57765_PLUS) ||
12960 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
12961 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX)) &&
Matt Carlson6833c042008-11-21 17:18:59 -080012962 (cfg2 & NIC_SRAM_DATA_CFG_2_APD_EN))
Matt Carlsonf07e9af2010-08-02 11:26:07 +000012963 tp->phy_flags |= TG3_PHYFLG_ENABLE_APD;
Matt Carlson6833c042008-11-21 17:18:59 -080012964
Joe Perches63c3a662011-04-26 08:12:10 +000012965 if (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson8c69b1e2010-08-02 11:26:00 +000012966 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Joe Perches63c3a662011-04-26 08:12:10 +000012967 !tg3_flag(tp, 57765_PLUS)) {
Matt Carlson8ed5d972007-05-07 00:25:49 -070012968 u32 cfg3;
12969
12970 tg3_read_mem(tp, NIC_SRAM_DATA_CFG_3, &cfg3);
12971 if (cfg3 & NIC_SRAM_ASPM_DEBOUNCE)
Joe Perches63c3a662011-04-26 08:12:10 +000012972 tg3_flag_set(tp, ASPM_WORKAROUND);
Matt Carlson8ed5d972007-05-07 00:25:49 -070012973 }
Matt Carlsona9daf362008-05-25 23:49:44 -070012974
Matt Carlson14417062010-02-17 15:16:59 +000012975 if (cfg4 & NIC_SRAM_RGMII_INBAND_DISABLE)
Joe Perches63c3a662011-04-26 08:12:10 +000012976 tg3_flag_set(tp, RGMII_INBAND_DISABLE);
Matt Carlsona9daf362008-05-25 23:49:44 -070012977 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_RX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012978 tg3_flag_set(tp, RGMII_EXT_IBND_RX_EN);
Matt Carlsona9daf362008-05-25 23:49:44 -070012979 if (cfg4 & NIC_SRAM_RGMII_EXT_IBND_TX_EN)
Joe Perches63c3a662011-04-26 08:12:10 +000012980 tg3_flag_set(tp, RGMII_EXT_IBND_TX_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012981 }
Matt Carlson05ac4cb2008-11-03 16:53:46 -080012982done:
Joe Perches63c3a662011-04-26 08:12:10 +000012983 if (tg3_flag(tp, WOL_CAP))
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012984 device_set_wakeup_enable(&tp->pdev->dev,
Joe Perches63c3a662011-04-26 08:12:10 +000012985 tg3_flag(tp, WOL_ENABLE));
Rafael J. Wysocki43067ed2011-02-10 06:53:09 +000012986 else
12987 device_set_wakeup_capable(&tp->pdev->dev, false);
Michael Chan7d0c41e2005-04-21 17:06:20 -070012988}
12989
Matt Carlsonb2a5c192008-04-03 21:44:44 -070012990static int __devinit tg3_issue_otp_command(struct tg3 *tp, u32 cmd)
12991{
12992 int i;
12993 u32 val;
12994
12995 tw32(OTP_CTRL, cmd | OTP_CTRL_OTP_CMD_START);
12996 tw32(OTP_CTRL, cmd);
12997
12998 /* Wait for up to 1 ms for command to execute. */
12999 for (i = 0; i < 100; i++) {
13000 val = tr32(OTP_STATUS);
13001 if (val & OTP_STATUS_CMD_DONE)
13002 break;
13003 udelay(10);
13004 }
13005
13006 return (val & OTP_STATUS_CMD_DONE) ? 0 : -EBUSY;
13007}
13008
13009/* Read the gphy configuration from the OTP region of the chip. The gphy
13010 * configuration is a 32-bit value that straddles the alignment boundary.
13011 * We do two 32-bit reads and then shift and merge the results.
13012 */
13013static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
13014{
13015 u32 bhalf_otp, thalf_otp;
13016
13017 tw32(OTP_MODE, OTP_MODE_OTP_THRU_GRC);
13018
13019 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_INIT))
13020 return 0;
13021
13022 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC1);
13023
13024 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13025 return 0;
13026
13027 thalf_otp = tr32(OTP_READ_DATA);
13028
13029 tw32(OTP_ADDRESS, OTP_ADDRESS_MAGIC2);
13030
13031 if (tg3_issue_otp_command(tp, OTP_CTRL_OTP_CMD_READ))
13032 return 0;
13033
13034 bhalf_otp = tr32(OTP_READ_DATA);
13035
13036 return ((thalf_otp & 0x0000ffff) << 16) | (bhalf_otp >> 16);
13037}
13038
Matt Carlsone256f8a2011-03-09 16:58:24 +000013039static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
13040{
13041 u32 adv = ADVERTISED_Autoneg |
13042 ADVERTISED_Pause;
13043
13044 if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
13045 adv |= ADVERTISED_1000baseT_Half |
13046 ADVERTISED_1000baseT_Full;
13047
13048 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
13049 adv |= ADVERTISED_100baseT_Half |
13050 ADVERTISED_100baseT_Full |
13051 ADVERTISED_10baseT_Half |
13052 ADVERTISED_10baseT_Full |
13053 ADVERTISED_TP;
13054 else
13055 adv |= ADVERTISED_FIBRE;
13056
13057 tp->link_config.advertising = adv;
13058 tp->link_config.speed = SPEED_INVALID;
13059 tp->link_config.duplex = DUPLEX_INVALID;
13060 tp->link_config.autoneg = AUTONEG_ENABLE;
13061 tp->link_config.active_speed = SPEED_INVALID;
13062 tp->link_config.active_duplex = DUPLEX_INVALID;
13063 tp->link_config.orig_speed = SPEED_INVALID;
13064 tp->link_config.orig_duplex = DUPLEX_INVALID;
13065 tp->link_config.orig_autoneg = AUTONEG_INVALID;
13066}
13067
Michael Chan7d0c41e2005-04-21 17:06:20 -070013068static int __devinit tg3_phy_probe(struct tg3 *tp)
13069{
13070 u32 hw_phy_id_1, hw_phy_id_2;
13071 u32 hw_phy_id, hw_phy_id_masked;
13072 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013073
Matt Carlsone256f8a2011-03-09 16:58:24 +000013074 /* flow control autonegotiation is default behavior */
Joe Perches63c3a662011-04-26 08:12:10 +000013075 tg3_flag_set(tp, PAUSE_AUTONEG);
Matt Carlsone256f8a2011-03-09 16:58:24 +000013076 tp->link_config.flowctrl = FLOW_CTRL_TX | FLOW_CTRL_RX;
13077
Joe Perches63c3a662011-04-26 08:12:10 +000013078 if (tg3_flag(tp, USE_PHYLIB))
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070013079 return tg3_phy_init(tp);
13080
Linus Torvalds1da177e2005-04-16 15:20:36 -070013081 /* Reading the PHY ID register can conflict with ASF
Nick Andrew877d0312009-01-26 11:06:57 +010013082 * firmware access to the PHY hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013083 */
13084 err = 0;
Joe Perches63c3a662011-04-26 08:12:10 +000013085 if (tg3_flag(tp, ENABLE_ASF) || tg3_flag(tp, ENABLE_APE)) {
Matt Carlson79eb6902010-02-17 15:17:03 +000013086 hw_phy_id = hw_phy_id_masked = TG3_PHY_ID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013087 } else {
13088 /* Now read the physical PHY_ID from the chip and verify
13089 * that it is sane. If it doesn't look good, we fall back
13090 * to either the hard-coded table based PHY_ID and failing
13091 * that the value found in the eeprom area.
13092 */
13093 err |= tg3_readphy(tp, MII_PHYSID1, &hw_phy_id_1);
13094 err |= tg3_readphy(tp, MII_PHYSID2, &hw_phy_id_2);
13095
13096 hw_phy_id = (hw_phy_id_1 & 0xffff) << 10;
13097 hw_phy_id |= (hw_phy_id_2 & 0xfc00) << 16;
13098 hw_phy_id |= (hw_phy_id_2 & 0x03ff) << 0;
13099
Matt Carlson79eb6902010-02-17 15:17:03 +000013100 hw_phy_id_masked = hw_phy_id & TG3_PHY_ID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013101 }
13102
Matt Carlson79eb6902010-02-17 15:17:03 +000013103 if (!err && TG3_KNOWN_PHY_ID(hw_phy_id_masked)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013104 tp->phy_id = hw_phy_id;
Matt Carlson79eb6902010-02-17 15:17:03 +000013105 if (hw_phy_id_masked == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013106 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Michael Chanda6b2d02005-08-19 12:54:29 -070013107 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013108 tp->phy_flags &= ~TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013109 } else {
Matt Carlson79eb6902010-02-17 15:17:03 +000013110 if (tp->phy_id != TG3_PHY_ID_INVALID) {
Michael Chan7d0c41e2005-04-21 17:06:20 -070013111 /* Do nothing, phy ID already set up in
13112 * tg3_get_eeprom_hw_cfg().
13113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013114 } else {
13115 struct subsys_tbl_ent *p;
13116
13117 /* No eeprom signature? Try the hardcoded
13118 * subsys device table.
13119 */
Matt Carlson24daf2b2010-02-17 15:17:02 +000013120 p = tg3_lookup_by_subsys(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013121 if (!p)
13122 return -ENODEV;
13123
13124 tp->phy_id = p->phy_id;
13125 if (!tp->phy_id ||
Matt Carlson79eb6902010-02-17 15:17:03 +000013126 tp->phy_id == TG3_PHY_ID_BCM8002)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013127 tp->phy_flags |= TG3_PHYFLG_PHY_SERDES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013128 }
13129 }
13130
Matt Carlsona6b68da2010-12-06 08:28:52 +000013131 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
13132 ((tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 &&
13133 tp->pci_chip_rev_id != CHIPREV_ID_5717_A0) ||
13134 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
13135 tp->pci_chip_rev_id != CHIPREV_ID_57765_A0)))
Matt Carlson52b02d02010-10-14 10:37:41 +000013136 tp->phy_flags |= TG3_PHYFLG_EEE_CAP;
13137
Matt Carlsone256f8a2011-03-09 16:58:24 +000013138 tg3_phy_init_link_config(tp);
13139
Matt Carlsonf07e9af2010-08-02 11:26:07 +000013140 if (!(tp->phy_flags & TG3_PHYFLG_ANY_SERDES) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013141 !tg3_flag(tp, ENABLE_APE) &&
13142 !tg3_flag(tp, ENABLE_ASF)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013143 u32 bmsr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013144
13145 tg3_readphy(tp, MII_BMSR, &bmsr);
13146 if (!tg3_readphy(tp, MII_BMSR, &bmsr) &&
13147 (bmsr & BMSR_LSTATUS))
13148 goto skip_phy_reset;
Jeff Garzik6aa20a22006-09-13 13:24:59 -040013149
Linus Torvalds1da177e2005-04-16 15:20:36 -070013150 err = tg3_phy_reset(tp);
13151 if (err)
13152 return err;
13153
Matt Carlson42b64a42011-05-19 12:12:49 +000013154 tg3_phy_set_wirespeed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013155
Michael Chan3600d912006-12-07 00:21:48 -080013156 mask = (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full |
13157 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full |
13158 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full);
13159 if (!tg3_copper_is_advertising_all(tp, mask)) {
Matt Carlson42b64a42011-05-19 12:12:49 +000013160 tg3_phy_autoneg_cfg(tp, tp->link_config.advertising,
13161 tp->link_config.flowctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013162
13163 tg3_writephy(tp, MII_BMCR,
13164 BMCR_ANENABLE | BMCR_ANRESTART);
13165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013166 }
13167
13168skip_phy_reset:
Matt Carlson79eb6902010-02-17 15:17:03 +000013169 if ((tp->phy_id & TG3_PHY_ID_MASK) == TG3_PHY_ID_BCM5401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013170 err = tg3_init_5401phy_dsp(tp);
13171 if (err)
13172 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013173
Linus Torvalds1da177e2005-04-16 15:20:36 -070013174 err = tg3_init_5401phy_dsp(tp);
13175 }
13176
Linus Torvalds1da177e2005-04-16 15:20:36 -070013177 return err;
13178}
13179
Matt Carlson184b8902010-04-05 10:19:25 +000013180static void __devinit tg3_read_vpd(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013181{
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013182 u8 *vpd_data;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013183 unsigned int block_end, rosize, len;
Matt Carlson184b8902010-04-05 10:19:25 +000013184 int j, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013185
Matt Carlsonc3e94502011-04-13 11:05:08 +000013186 vpd_data = (u8 *)tg3_vpd_readblock(tp);
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013187 if (!vpd_data)
13188 goto out_no_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013189
Matt Carlson4181b2c2010-02-26 14:04:45 +000013190 i = pci_vpd_find_tag(vpd_data, 0, TG3_NVM_VPD_LEN,
13191 PCI_VPD_LRDT_RO_DATA);
13192 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013193 goto out_not_found;
Matt Carlson4181b2c2010-02-26 14:04:45 +000013194
13195 rosize = pci_vpd_lrdt_size(&vpd_data[i]);
13196 block_end = i + PCI_VPD_LRDT_TAG_SIZE + rosize;
13197 i += PCI_VPD_LRDT_TAG_SIZE;
13198
13199 if (block_end > TG3_NVM_VPD_LEN)
13200 goto out_not_found;
13201
Matt Carlson184b8902010-04-05 10:19:25 +000013202 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13203 PCI_VPD_RO_KEYWORD_MFR_ID);
13204 if (j > 0) {
13205 len = pci_vpd_info_field_size(&vpd_data[j]);
13206
13207 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13208 if (j + len > block_end || len != 4 ||
13209 memcmp(&vpd_data[j], "1028", 4))
13210 goto partno;
13211
13212 j = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13213 PCI_VPD_RO_KEYWORD_VENDOR0);
13214 if (j < 0)
13215 goto partno;
13216
13217 len = pci_vpd_info_field_size(&vpd_data[j]);
13218
13219 j += PCI_VPD_INFO_FLD_HDR_SIZE;
13220 if (j + len > block_end)
13221 goto partno;
13222
13223 memcpy(tp->fw_ver, &vpd_data[j], len);
13224 strncat(tp->fw_ver, " bc ", TG3_NVM_VPD_LEN - len - 1);
13225 }
13226
13227partno:
Matt Carlson4181b2c2010-02-26 14:04:45 +000013228 i = pci_vpd_find_info_keyword(vpd_data, i, rosize,
13229 PCI_VPD_RO_KEYWORD_PARTNO);
13230 if (i < 0)
13231 goto out_not_found;
13232
13233 len = pci_vpd_info_field_size(&vpd_data[i]);
13234
13235 i += PCI_VPD_INFO_FLD_HDR_SIZE;
13236 if (len > TG3_BPN_SIZE ||
13237 (len + i) > TG3_NVM_VPD_LEN)
13238 goto out_not_found;
13239
13240 memcpy(tp->board_part_number, &vpd_data[i], len);
13241
Linus Torvalds1da177e2005-04-16 15:20:36 -070013242out_not_found:
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013243 kfree(vpd_data);
Matt Carlson37a949c2010-09-30 10:34:33 +000013244 if (tp->board_part_number[0])
Matt Carlsona4a8bb12010-09-15 09:00:00 +000013245 return;
13246
13247out_no_vpd:
Matt Carlson37a949c2010-09-30 10:34:33 +000013248 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717) {
13249 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717)
13250 strcpy(tp->board_part_number, "BCM5717");
13251 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718)
13252 strcpy(tp->board_part_number, "BCM5718");
13253 else
13254 goto nomatch;
13255 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) {
13256 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57780)
13257 strcpy(tp->board_part_number, "BCM57780");
13258 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57760)
13259 strcpy(tp->board_part_number, "BCM57760");
13260 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790)
13261 strcpy(tp->board_part_number, "BCM57790");
13262 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
13263 strcpy(tp->board_part_number, "BCM57788");
13264 else
13265 goto nomatch;
13266 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) {
13267 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
13268 strcpy(tp->board_part_number, "BCM57761");
13269 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
13270 strcpy(tp->board_part_number, "BCM57765");
13271 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
13272 strcpy(tp->board_part_number, "BCM57781");
13273 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
13274 strcpy(tp->board_part_number, "BCM57785");
13275 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
13276 strcpy(tp->board_part_number, "BCM57791");
13277 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13278 strcpy(tp->board_part_number, "BCM57795");
13279 else
13280 goto nomatch;
13281 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Michael Chanb5d37722006-09-27 16:06:21 -070013282 strcpy(tp->board_part_number, "BCM95906");
Matt Carlson37a949c2010-09-30 10:34:33 +000013283 } else {
13284nomatch:
Michael Chanb5d37722006-09-27 16:06:21 -070013285 strcpy(tp->board_part_number, "none");
Matt Carlson37a949c2010-09-30 10:34:33 +000013286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013287}
13288
Matt Carlson9c8a6202007-10-21 16:16:08 -070013289static int __devinit tg3_fw_img_is_valid(struct tg3 *tp, u32 offset)
13290{
13291 u32 val;
13292
Matt Carlsone4f34112009-02-25 14:25:00 +000013293 if (tg3_nvram_read(tp, offset, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013294 (val & 0xfc000000) != 0x0c000000 ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013295 tg3_nvram_read(tp, offset + 4, &val) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013296 val != 0)
13297 return 0;
13298
13299 return 1;
13300}
13301
Matt Carlsonacd9c112009-02-25 14:26:33 +000013302static void __devinit tg3_read_bc_ver(struct tg3 *tp)
13303{
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013304 u32 val, offset, start, ver_offset;
Matt Carlson75f99362010-04-05 10:19:24 +000013305 int i, dst_off;
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013306 bool newver = false;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013307
13308 if (tg3_nvram_read(tp, 0xc, &offset) ||
13309 tg3_nvram_read(tp, 0x4, &start))
13310 return;
13311
13312 offset = tg3_nvram_logical_addr(tp, offset);
13313
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013314 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013315 return;
13316
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013317 if ((val & 0xfc000000) == 0x0c000000) {
13318 if (tg3_nvram_read(tp, offset + 4, &val))
Matt Carlsonacd9c112009-02-25 14:26:33 +000013319 return;
13320
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013321 if (val == 0)
13322 newver = true;
13323 }
13324
Matt Carlson75f99362010-04-05 10:19:24 +000013325 dst_off = strlen(tp->fw_ver);
13326
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013327 if (newver) {
Matt Carlson75f99362010-04-05 10:19:24 +000013328 if (TG3_VER_SIZE - dst_off < 16 ||
13329 tg3_nvram_read(tp, offset + 8, &ver_offset))
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013330 return;
13331
13332 offset = offset + ver_offset - start;
13333 for (i = 0; i < 16; i += 4) {
13334 __be32 v;
13335 if (tg3_nvram_read_be32(tp, offset + i, &v))
13336 return;
13337
Matt Carlson75f99362010-04-05 10:19:24 +000013338 memcpy(tp->fw_ver + dst_off + i, &v, sizeof(v));
Matt Carlsonff3a7cb2009-02-25 14:26:58 +000013339 }
13340 } else {
13341 u32 major, minor;
13342
13343 if (tg3_nvram_read(tp, TG3_NVM_PTREV_BCVER, &ver_offset))
13344 return;
13345
13346 major = (ver_offset & TG3_NVM_BCVER_MAJMSK) >>
13347 TG3_NVM_BCVER_MAJSFT;
13348 minor = ver_offset & TG3_NVM_BCVER_MINMSK;
Matt Carlson75f99362010-04-05 10:19:24 +000013349 snprintf(&tp->fw_ver[dst_off], TG3_VER_SIZE - dst_off,
13350 "v%d.%02d", major, minor);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013351 }
13352}
13353
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013354static void __devinit tg3_read_hwsb_ver(struct tg3 *tp)
13355{
13356 u32 val, major, minor;
13357
13358 /* Use native endian representation */
13359 if (tg3_nvram_read(tp, TG3_NVM_HWSB_CFG1, &val))
13360 return;
13361
13362 major = (val & TG3_NVM_HWSB_CFG1_MAJMSK) >>
13363 TG3_NVM_HWSB_CFG1_MAJSFT;
13364 minor = (val & TG3_NVM_HWSB_CFG1_MINMSK) >>
13365 TG3_NVM_HWSB_CFG1_MINSFT;
13366
13367 snprintf(&tp->fw_ver[0], 32, "sb v%d.%02d", major, minor);
13368}
13369
Matt Carlsondfe00d72008-11-21 17:19:41 -080013370static void __devinit tg3_read_sb_ver(struct tg3 *tp, u32 val)
13371{
13372 u32 offset, major, minor, build;
13373
Matt Carlson75f99362010-04-05 10:19:24 +000013374 strncat(tp->fw_ver, "sb", TG3_VER_SIZE - strlen(tp->fw_ver) - 1);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013375
13376 if ((val & TG3_EEPROM_SB_FORMAT_MASK) != TG3_EEPROM_SB_FORMAT_1)
13377 return;
13378
13379 switch (val & TG3_EEPROM_SB_REVISION_MASK) {
13380 case TG3_EEPROM_SB_REVISION_0:
13381 offset = TG3_EEPROM_SB_F1R0_EDH_OFF;
13382 break;
13383 case TG3_EEPROM_SB_REVISION_2:
13384 offset = TG3_EEPROM_SB_F1R2_EDH_OFF;
13385 break;
13386 case TG3_EEPROM_SB_REVISION_3:
13387 offset = TG3_EEPROM_SB_F1R3_EDH_OFF;
13388 break;
Matt Carlsona4153d42010-02-17 15:16:56 +000013389 case TG3_EEPROM_SB_REVISION_4:
13390 offset = TG3_EEPROM_SB_F1R4_EDH_OFF;
13391 break;
13392 case TG3_EEPROM_SB_REVISION_5:
13393 offset = TG3_EEPROM_SB_F1R5_EDH_OFF;
13394 break;
Matt Carlsonbba226a2010-10-14 10:37:38 +000013395 case TG3_EEPROM_SB_REVISION_6:
13396 offset = TG3_EEPROM_SB_F1R6_EDH_OFF;
13397 break;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013398 default:
13399 return;
13400 }
13401
Matt Carlsone4f34112009-02-25 14:25:00 +000013402 if (tg3_nvram_read(tp, offset, &val))
Matt Carlsondfe00d72008-11-21 17:19:41 -080013403 return;
13404
13405 build = (val & TG3_EEPROM_SB_EDH_BLD_MASK) >>
13406 TG3_EEPROM_SB_EDH_BLD_SHFT;
13407 major = (val & TG3_EEPROM_SB_EDH_MAJ_MASK) >>
13408 TG3_EEPROM_SB_EDH_MAJ_SHFT;
13409 minor = val & TG3_EEPROM_SB_EDH_MIN_MASK;
13410
13411 if (minor > 99 || build > 26)
13412 return;
13413
Matt Carlson75f99362010-04-05 10:19:24 +000013414 offset = strlen(tp->fw_ver);
13415 snprintf(&tp->fw_ver[offset], TG3_VER_SIZE - offset,
13416 " v%d.%02d", major, minor);
Matt Carlsondfe00d72008-11-21 17:19:41 -080013417
13418 if (build > 0) {
Matt Carlson75f99362010-04-05 10:19:24 +000013419 offset = strlen(tp->fw_ver);
13420 if (offset < TG3_VER_SIZE - 1)
13421 tp->fw_ver[offset] = 'a' + build - 1;
Matt Carlsondfe00d72008-11-21 17:19:41 -080013422 }
13423}
13424
Matt Carlsonacd9c112009-02-25 14:26:33 +000013425static void __devinit tg3_read_mgmtfw_ver(struct tg3 *tp)
Michael Chanc4e65752006-03-20 22:29:32 -080013426{
13427 u32 val, offset, start;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013428 int i, vlen;
Matt Carlson9c8a6202007-10-21 16:16:08 -070013429
13430 for (offset = TG3_NVM_DIR_START;
13431 offset < TG3_NVM_DIR_END;
13432 offset += TG3_NVM_DIRENT_SIZE) {
Matt Carlsone4f34112009-02-25 14:25:00 +000013433 if (tg3_nvram_read(tp, offset, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013434 return;
13435
13436 if ((val >> TG3_NVM_DIRTYPE_SHIFT) == TG3_NVM_DIRTYPE_ASFINI)
13437 break;
13438 }
13439
13440 if (offset == TG3_NVM_DIR_END)
13441 return;
13442
Joe Perches63c3a662011-04-26 08:12:10 +000013443 if (!tg3_flag(tp, 5705_PLUS))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013444 start = 0x08000000;
Matt Carlsone4f34112009-02-25 14:25:00 +000013445 else if (tg3_nvram_read(tp, offset - 4, &start))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013446 return;
13447
Matt Carlsone4f34112009-02-25 14:25:00 +000013448 if (tg3_nvram_read(tp, offset + 4, &offset) ||
Matt Carlson9c8a6202007-10-21 16:16:08 -070013449 !tg3_fw_img_is_valid(tp, offset) ||
Matt Carlsone4f34112009-02-25 14:25:00 +000013450 tg3_nvram_read(tp, offset + 8, &val))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013451 return;
13452
13453 offset += val - start;
13454
Matt Carlsonacd9c112009-02-25 14:26:33 +000013455 vlen = strlen(tp->fw_ver);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013456
Matt Carlsonacd9c112009-02-25 14:26:33 +000013457 tp->fw_ver[vlen++] = ',';
13458 tp->fw_ver[vlen++] = ' ';
Matt Carlson9c8a6202007-10-21 16:16:08 -070013459
13460 for (i = 0; i < 4; i++) {
Matt Carlsona9dc5292009-02-25 14:25:30 +000013461 __be32 v;
13462 if (tg3_nvram_read_be32(tp, offset, &v))
Matt Carlson9c8a6202007-10-21 16:16:08 -070013463 return;
13464
Al Virob9fc7dc2007-12-17 22:59:57 -080013465 offset += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013466
Matt Carlsonacd9c112009-02-25 14:26:33 +000013467 if (vlen > TG3_VER_SIZE - sizeof(v)) {
13468 memcpy(&tp->fw_ver[vlen], &v, TG3_VER_SIZE - vlen);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013469 break;
13470 }
13471
Matt Carlsonacd9c112009-02-25 14:26:33 +000013472 memcpy(&tp->fw_ver[vlen], &v, sizeof(v));
13473 vlen += sizeof(v);
Matt Carlson9c8a6202007-10-21 16:16:08 -070013474 }
Matt Carlsonacd9c112009-02-25 14:26:33 +000013475}
13476
Matt Carlson7fd76442009-02-25 14:27:20 +000013477static void __devinit tg3_read_dash_ver(struct tg3 *tp)
13478{
13479 int vlen;
13480 u32 apedata;
Matt Carlsonecc79642010-08-02 11:26:01 +000013481 char *fwtype;
Matt Carlson7fd76442009-02-25 14:27:20 +000013482
Joe Perches63c3a662011-04-26 08:12:10 +000013483 if (!tg3_flag(tp, ENABLE_APE) || !tg3_flag(tp, ENABLE_ASF))
Matt Carlson7fd76442009-02-25 14:27:20 +000013484 return;
13485
13486 apedata = tg3_ape_read32(tp, TG3_APE_SEG_SIG);
13487 if (apedata != APE_SEG_SIG_MAGIC)
13488 return;
13489
13490 apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
13491 if (!(apedata & APE_FW_STATUS_READY))
13492 return;
13493
13494 apedata = tg3_ape_read32(tp, TG3_APE_FW_VERSION);
13495
Matt Carlsondc6d0742010-09-15 08:59:55 +000013496 if (tg3_ape_read32(tp, TG3_APE_FW_FEATURES) & TG3_APE_FW_FEATURE_NCSI) {
Joe Perches63c3a662011-04-26 08:12:10 +000013497 tg3_flag_set(tp, APE_HAS_NCSI);
Matt Carlsonecc79642010-08-02 11:26:01 +000013498 fwtype = "NCSI";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013499 } else {
Matt Carlsonecc79642010-08-02 11:26:01 +000013500 fwtype = "DASH";
Matt Carlsondc6d0742010-09-15 08:59:55 +000013501 }
Matt Carlsonecc79642010-08-02 11:26:01 +000013502
Matt Carlson7fd76442009-02-25 14:27:20 +000013503 vlen = strlen(tp->fw_ver);
13504
Matt Carlsonecc79642010-08-02 11:26:01 +000013505 snprintf(&tp->fw_ver[vlen], TG3_VER_SIZE - vlen, " %s v%d.%d.%d.%d",
13506 fwtype,
Matt Carlson7fd76442009-02-25 14:27:20 +000013507 (apedata & APE_FW_VERSION_MAJMSK) >> APE_FW_VERSION_MAJSFT,
13508 (apedata & APE_FW_VERSION_MINMSK) >> APE_FW_VERSION_MINSFT,
13509 (apedata & APE_FW_VERSION_REVMSK) >> APE_FW_VERSION_REVSFT,
13510 (apedata & APE_FW_VERSION_BLDMSK));
13511}
13512
Matt Carlsonacd9c112009-02-25 14:26:33 +000013513static void __devinit tg3_read_fw_ver(struct tg3 *tp)
13514{
13515 u32 val;
Matt Carlson75f99362010-04-05 10:19:24 +000013516 bool vpd_vers = false;
13517
13518 if (tp->fw_ver[0] != 0)
13519 vpd_vers = true;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013520
Joe Perches63c3a662011-04-26 08:12:10 +000013521 if (tg3_flag(tp, NO_NVRAM)) {
Matt Carlson75f99362010-04-05 10:19:24 +000013522 strcat(tp->fw_ver, "sb");
Matt Carlsondf259d82009-04-20 06:57:14 +000013523 return;
13524 }
13525
Matt Carlsonacd9c112009-02-25 14:26:33 +000013526 if (tg3_nvram_read(tp, 0, &val))
13527 return;
13528
13529 if (val == TG3_EEPROM_MAGIC)
13530 tg3_read_bc_ver(tp);
13531 else if ((val & TG3_EEPROM_MAGIC_FW_MSK) == TG3_EEPROM_MAGIC_FW)
13532 tg3_read_sb_ver(tp, val);
Matt Carlsona6f6cb12009-02-25 14:27:43 +000013533 else if ((val & TG3_EEPROM_MAGIC_HW_MSK) == TG3_EEPROM_MAGIC_HW)
13534 tg3_read_hwsb_ver(tp);
Matt Carlsonacd9c112009-02-25 14:26:33 +000013535 else
13536 return;
13537
Matt Carlsonc9cab242011-07-13 09:27:27 +000013538 if (vpd_vers)
Matt Carlson75f99362010-04-05 10:19:24 +000013539 goto done;
Matt Carlsonacd9c112009-02-25 14:26:33 +000013540
Matt Carlsonc9cab242011-07-13 09:27:27 +000013541 if (tg3_flag(tp, ENABLE_APE)) {
13542 if (tg3_flag(tp, ENABLE_ASF))
13543 tg3_read_dash_ver(tp);
13544 } else if (tg3_flag(tp, ENABLE_ASF)) {
13545 tg3_read_mgmtfw_ver(tp);
13546 }
Matt Carlson9c8a6202007-10-21 16:16:08 -070013547
Matt Carlson75f99362010-04-05 10:19:24 +000013548done:
Matt Carlson9c8a6202007-10-21 16:16:08 -070013549 tp->fw_ver[TG3_VER_SIZE - 1] = 0;
Michael Chanc4e65752006-03-20 22:29:32 -080013550}
13551
Michael Chan7544b092007-05-05 13:08:32 -070013552static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);
13553
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013554static inline u32 tg3_rx_ret_ring_size(struct tg3 *tp)
13555{
Joe Perches63c3a662011-04-26 08:12:10 +000013556 if (tg3_flag(tp, LRG_PROD_RING_CAP))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013557 return TG3_RX_RET_MAX_SIZE_5717;
Joe Perches63c3a662011-04-26 08:12:10 +000013558 else if (tg3_flag(tp, JUMBO_CAPABLE) && !tg3_flag(tp, 5780_CLASS))
Matt Carlsonde9f5232011-04-05 14:22:43 +000013559 return TG3_RX_RET_MAX_SIZE_5700;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013560 else
Matt Carlsonde9f5232011-04-05 14:22:43 +000013561 return TG3_RX_RET_MAX_SIZE_5705;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000013562}
13563
Matt Carlson41434702011-03-09 16:58:22 +000013564static DEFINE_PCI_DEVICE_TABLE(tg3_write_reorder_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080013565 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_FE_GATE_700C) },
13566 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE) },
13567 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8385_0) },
13568 { },
13569};
13570
Linus Torvalds1da177e2005-04-16 15:20:36 -070013571static int __devinit tg3_get_invariants(struct tg3 *tp)
13572{
Linus Torvalds1da177e2005-04-16 15:20:36 -070013573 u32 misc_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013574 u32 pci_state_reg, grc_misc_cfg;
13575 u32 val;
13576 u16 pci_cmd;
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013577 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013578
Linus Torvalds1da177e2005-04-16 15:20:36 -070013579 /* Force memory write invalidate off. If we leave it on,
13580 * then on 5700_BX chips we have to enable a workaround.
13581 * The workaround is to set the TG3PCI_DMA_RW_CTRL boundary
13582 * to match the cacheline size. The Broadcom driver have this
13583 * workaround but turns MWI off all the times so never uses
13584 * it. This seems to suggest that the workaround is insufficient.
13585 */
13586 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13587 pci_cmd &= ~PCI_COMMAND_INVALIDATE;
13588 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13589
Matt Carlson16821282011-07-13 09:27:28 +000013590 /* Important! -- Make sure register accesses are byteswapped
13591 * correctly. Also, for those chips that require it, make
13592 * sure that indirect register accesses are enabled before
13593 * the first operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013594 */
13595 pci_read_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13596 &misc_ctrl_reg);
Matt Carlson16821282011-07-13 09:27:28 +000013597 tp->misc_host_ctrl |= (misc_ctrl_reg &
13598 MISC_HOST_CTRL_CHIPREV);
13599 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
13600 tp->misc_host_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013601
13602 tp->pci_chip_rev_id = (misc_ctrl_reg >>
13603 MISC_HOST_CTRL_CHIPREV_SHIFT);
Matt Carlson795d01c2007-10-07 23:28:17 -070013604 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_USE_PROD_ID_REG) {
13605 u32 prod_id_asic_rev;
13606
Matt Carlson5001e2f2009-11-13 13:03:51 +000013607 if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
13608 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013609 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
13610 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720)
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013611 pci_read_config_dword(tp->pdev,
13612 TG3PCI_GEN2_PRODID_ASICREV,
13613 &prod_id_asic_rev);
Matt Carlsonb703df62009-12-03 08:36:21 +000013614 else if (tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781 ||
13615 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785 ||
13616 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761 ||
13617 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765 ||
13618 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
13619 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
13620 pci_read_config_dword(tp->pdev,
13621 TG3PCI_GEN15_PRODID_ASICREV,
13622 &prod_id_asic_rev);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013623 else
13624 pci_read_config_dword(tp->pdev, TG3PCI_PRODID_ASICREV,
13625 &prod_id_asic_rev);
13626
Matt Carlson321d32a2008-11-21 17:22:19 -080013627 tp->pci_chip_rev_id = prod_id_asic_rev;
Matt Carlson795d01c2007-10-07 23:28:17 -070013628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013629
Michael Chanff645be2005-04-21 17:09:53 -070013630 /* Wrong chip ID in 5752 A0. This code can be removed later
13631 * as A0 is not in production.
13632 */
13633 if (tp->pci_chip_rev_id == CHIPREV_ID_5752_A0_HW)
13634 tp->pci_chip_rev_id = CHIPREV_ID_5752_A0;
13635
Michael Chan68929142005-08-09 20:17:14 -070013636 /* If we have 5702/03 A1 or A2 on certain ICH chipsets,
13637 * we need to disable memory and use config. cycles
13638 * only to access all registers. The 5702/03 chips
13639 * can mistakenly decode the special cycles from the
13640 * ICH chipsets as memory write cycles, causing corruption
13641 * of register and memory space. Only certain ICH bridges
13642 * will drive special cycles with non-zero data during the
13643 * address phase which can fall within the 5703's address
13644 * range. This is not an ICH bug as the PCI spec allows
13645 * non-zero address during special cycles. However, only
13646 * these ICH bridges are known to drive non-zero addresses
13647 * during special cycles.
13648 *
13649 * Since special cycles do not cross PCI bridges, we only
13650 * enable this workaround if the 5703 is on the secondary
13651 * bus of these ICH bridges.
13652 */
13653 if ((tp->pci_chip_rev_id == CHIPREV_ID_5703_A1) ||
13654 (tp->pci_chip_rev_id == CHIPREV_ID_5703_A2)) {
13655 static struct tg3_dev_id {
13656 u32 vendor;
13657 u32 device;
13658 u32 rev;
13659 } ich_chipsets[] = {
13660 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_8,
13661 PCI_ANY_ID },
13662 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_8,
13663 PCI_ANY_ID },
13664 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_11,
13665 0xa },
13666 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_6,
13667 PCI_ANY_ID },
13668 { },
13669 };
13670 struct tg3_dev_id *pci_id = &ich_chipsets[0];
13671 struct pci_dev *bridge = NULL;
13672
13673 while (pci_id->vendor != 0) {
13674 bridge = pci_get_device(pci_id->vendor, pci_id->device,
13675 bridge);
13676 if (!bridge) {
13677 pci_id++;
13678 continue;
13679 }
13680 if (pci_id->rev != PCI_ANY_ID) {
Auke Kok44c10132007-06-08 15:46:36 -070013681 if (bridge->revision > pci_id->rev)
Michael Chan68929142005-08-09 20:17:14 -070013682 continue;
13683 }
13684 if (bridge->subordinate &&
13685 (bridge->subordinate->number ==
13686 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013687 tg3_flag_set(tp, ICH_WORKAROUND);
Michael Chan68929142005-08-09 20:17:14 -070013688 pci_dev_put(bridge);
13689 break;
13690 }
13691 }
13692 }
13693
Matt Carlson6ff6f812011-05-19 12:12:54 +000013694 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
Matt Carlson41588ba2008-04-19 18:12:33 -070013695 static struct tg3_dev_id {
13696 u32 vendor;
13697 u32 device;
13698 } bridge_chipsets[] = {
13699 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_0 },
13700 { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PXH_1 },
13701 { },
13702 };
13703 struct tg3_dev_id *pci_id = &bridge_chipsets[0];
13704 struct pci_dev *bridge = NULL;
13705
13706 while (pci_id->vendor != 0) {
13707 bridge = pci_get_device(pci_id->vendor,
13708 pci_id->device,
13709 bridge);
13710 if (!bridge) {
13711 pci_id++;
13712 continue;
13713 }
13714 if (bridge->subordinate &&
13715 (bridge->subordinate->number <=
13716 tp->pdev->bus->number) &&
13717 (bridge->subordinate->subordinate >=
13718 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013719 tg3_flag_set(tp, 5701_DMA_BUG);
Matt Carlson41588ba2008-04-19 18:12:33 -070013720 pci_dev_put(bridge);
13721 break;
13722 }
13723 }
13724 }
13725
Michael Chan4a29cc22006-03-19 13:21:12 -080013726 /* The EPB bridge inside 5714, 5715, and 5780 cannot support
13727 * DMA addresses > 40-bit. This bridge may have other additional
13728 * 57xx devices behind it in some 4-port NIC designs for example.
13729 * Any tg3 device found behind the bridge will also need the 40-bit
13730 * DMA workaround.
13731 */
Michael Chana4e2b342005-10-26 15:46:52 -070013732 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 ||
13733 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
Joe Perches63c3a662011-04-26 08:12:10 +000013734 tg3_flag_set(tp, 5780_CLASS);
13735 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4cf78e42005-07-25 12:29:19 -070013736 tp->msi_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_MSI);
Matt Carlson859a588792010-04-05 10:19:28 +000013737 } else {
Michael Chan4a29cc22006-03-19 13:21:12 -080013738 struct pci_dev *bridge = NULL;
13739
13740 do {
13741 bridge = pci_get_device(PCI_VENDOR_ID_SERVERWORKS,
13742 PCI_DEVICE_ID_SERVERWORKS_EPB,
13743 bridge);
13744 if (bridge && bridge->subordinate &&
13745 (bridge->subordinate->number <=
13746 tp->pdev->bus->number) &&
13747 (bridge->subordinate->subordinate >=
13748 tp->pdev->bus->number)) {
Joe Perches63c3a662011-04-26 08:12:10 +000013749 tg3_flag_set(tp, 40BIT_DMA_BUG);
Michael Chan4a29cc22006-03-19 13:21:12 -080013750 pci_dev_put(bridge);
13751 break;
13752 }
13753 } while (bridge);
13754 }
Michael Chan4cf78e42005-07-25 12:29:19 -070013755
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013756 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Matt Carlson3a1e19d2011-07-13 09:27:32 +000013757 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714)
Michael Chan7544b092007-05-05 13:08:32 -070013758 tp->pdev_peer = tg3_find_peer(tp);
13759
Matt Carlsonc885e822010-08-02 11:25:57 +000013760 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
Matt Carlsond78b59f2011-04-05 14:22:46 +000013761 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13762 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Joe Perches63c3a662011-04-26 08:12:10 +000013763 tg3_flag_set(tp, 5717_PLUS);
Matt Carlson0a58d662011-04-05 14:22:45 +000013764
13765 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013766 tg3_flag(tp, 5717_PLUS))
13767 tg3_flag_set(tp, 57765_PLUS);
Matt Carlsonc885e822010-08-02 11:25:57 +000013768
Matt Carlson321d32a2008-11-21 17:22:19 -080013769 /* Intentionally exclude ASIC_REV_5906 */
13770 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Michael Chand9ab5ad12006-03-20 22:27:35 -080013771 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070013772 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070013773 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070013774 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013775 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013776 tg3_flag(tp, 57765_PLUS))
13777 tg3_flag_set(tp, 5755_PLUS);
Matt Carlson321d32a2008-11-21 17:22:19 -080013778
13779 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
13780 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
Michael Chanb5d37722006-09-27 16:06:21 -070013781 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013782 tg3_flag(tp, 5755_PLUS) ||
13783 tg3_flag(tp, 5780_CLASS))
13784 tg3_flag_set(tp, 5750_PLUS);
John W. Linville6708e5c2005-04-21 17:00:52 -070013785
Matt Carlson6ff6f812011-05-19 12:12:54 +000013786 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
Joe Perches63c3a662011-04-26 08:12:10 +000013787 tg3_flag(tp, 5750_PLUS))
13788 tg3_flag_set(tp, 5705_PLUS);
John W. Linville1b440c562005-04-21 17:03:18 -070013789
Matt Carlson507399f2009-11-13 13:03:37 +000013790 /* Determine TSO capabilities */
Matt Carlson2866d952011-02-10 20:06:46 -080013791 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
Matt Carlson4d163b72011-01-25 15:58:48 +000013792 ; /* Do nothing. HW bug. */
Joe Perches63c3a662011-04-26 08:12:10 +000013793 else if (tg3_flag(tp, 57765_PLUS))
13794 tg3_flag_set(tp, HW_TSO_3);
13795 else if (tg3_flag(tp, 5755_PLUS) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000013796 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Joe Perches63c3a662011-04-26 08:12:10 +000013797 tg3_flag_set(tp, HW_TSO_2);
13798 else if (tg3_flag(tp, 5750_PLUS)) {
13799 tg3_flag_set(tp, HW_TSO_1);
13800 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013801 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 &&
13802 tp->pci_chip_rev_id >= CHIPREV_ID_5750_C2)
Joe Perches63c3a662011-04-26 08:12:10 +000013803 tg3_flag_clear(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013804 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
13805 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
13806 tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013807 tg3_flag_set(tp, TSO_BUG);
Matt Carlson507399f2009-11-13 13:03:37 +000013808 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705)
13809 tp->fw_needed = FIRMWARE_TG3TSO5;
13810 else
13811 tp->fw_needed = FIRMWARE_TG3TSO;
13812 }
13813
Matt Carlsondabc5c62011-05-19 12:12:52 +000013814 /* Selectively allow TSO based on operating conditions */
Matt Carlson6ff6f812011-05-19 12:12:54 +000013815 if (tg3_flag(tp, HW_TSO_1) ||
13816 tg3_flag(tp, HW_TSO_2) ||
13817 tg3_flag(tp, HW_TSO_3) ||
Matt Carlsondabc5c62011-05-19 12:12:52 +000013818 (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF)))
13819 tg3_flag_set(tp, TSO_CAPABLE);
13820 else {
13821 tg3_flag_clear(tp, TSO_CAPABLE);
13822 tg3_flag_clear(tp, TSO_BUG);
13823 tp->fw_needed = NULL;
13824 }
13825
13826 if (tp->pci_chip_rev_id == CHIPREV_ID_5701_A0)
13827 tp->fw_needed = FIRMWARE_TG3;
13828
Matt Carlson507399f2009-11-13 13:03:37 +000013829 tp->irq_max = 1;
13830
Joe Perches63c3a662011-04-26 08:12:10 +000013831 if (tg3_flag(tp, 5750_PLUS)) {
13832 tg3_flag_set(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013833 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_AX ||
13834 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5750_BX ||
13835 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714 &&
13836 tp->pci_chip_rev_id <= CHIPREV_ID_5714_A2 &&
13837 tp->pdev_peer == tp->pdev))
Joe Perches63c3a662011-04-26 08:12:10 +000013838 tg3_flag_clear(tp, SUPPORT_MSI);
Michael Chan7544b092007-05-05 13:08:32 -070013839
Joe Perches63c3a662011-04-26 08:12:10 +000013840 if (tg3_flag(tp, 5755_PLUS) ||
Michael Chanb5d37722006-09-27 16:06:21 -070013841 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013842 tg3_flag_set(tp, 1SHOT_MSI);
Michael Chan52c0fd82006-06-29 20:15:54 -070013843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013844
Joe Perches63c3a662011-04-26 08:12:10 +000013845 if (tg3_flag(tp, 57765_PLUS)) {
13846 tg3_flag_set(tp, SUPPORT_MSIX);
Matt Carlson507399f2009-11-13 13:03:37 +000013847 tp->irq_max = TG3_IRQ_MAX_VECS;
13848 }
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013849 }
Matt Carlson0e1406d2009-11-02 12:33:33 +000013850
Matt Carlson2ffcc982011-05-19 12:12:44 +000013851 if (tg3_flag(tp, 5755_PLUS))
Joe Perches63c3a662011-04-26 08:12:10 +000013852 tg3_flag_set(tp, SHORT_DMA_BUG);
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000013853
Joe Perches63c3a662011-04-26 08:12:10 +000013854 if (tg3_flag(tp, 5717_PLUS))
13855 tg3_flag_set(tp, LRG_PROD_RING_CAP);
Matt Carlsonde9f5232011-04-05 14:22:43 +000013856
Joe Perches63c3a662011-04-26 08:12:10 +000013857 if (tg3_flag(tp, 57765_PLUS) &&
Matt Carlson2866d952011-02-10 20:06:46 -080013858 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5719)
Joe Perches63c3a662011-04-26 08:12:10 +000013859 tg3_flag_set(tp, USE_JUMBO_BDFLAG);
Matt Carlsonb703df62009-12-03 08:36:21 +000013860
Joe Perches63c3a662011-04-26 08:12:10 +000013861 if (!tg3_flag(tp, 5705_PLUS) ||
13862 tg3_flag(tp, 5780_CLASS) ||
13863 tg3_flag(tp, USE_JUMBO_BDFLAG))
13864 tg3_flag_set(tp, JUMBO_CAPABLE);
Michael Chan0f893dc2005-07-25 12:30:38 -070013865
Matt Carlson52f44902008-11-21 17:17:04 -080013866 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
13867 &pci_state_reg);
13868
Jon Mason708ebb3a2011-06-27 12:56:50 +000013869 if (pci_is_pcie(tp->pdev)) {
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013870 u16 lnkctl;
13871
Joe Perches63c3a662011-04-26 08:12:10 +000013872 tg3_flag_set(tp, PCI_EXPRESS);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013873
Matt Carlsoncf790032010-11-24 08:31:48 +000013874 tp->pcie_readrq = 4096;
Matt Carlsond78b59f2011-04-05 14:22:46 +000013875 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719 ||
13876 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
Matt Carlsonb4495ed2011-01-25 15:58:47 +000013877 tp->pcie_readrq = 2048;
Matt Carlsoncf790032010-11-24 08:31:48 +000013878
13879 pcie_set_readrq(tp->pdev, tp->pcie_readrq);
Matt Carlson5f5c51e2007-11-12 21:19:37 -080013880
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013881 pci_read_config_word(tp->pdev,
Jon Mason708ebb3a2011-06-27 12:56:50 +000013882 pci_pcie_cap(tp->pdev) + PCI_EXP_LNKCTL,
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013883 &lnkctl);
13884 if (lnkctl & PCI_EXP_LNKCTL_CLKREQ_EN) {
Matt Carlson7196cd62011-05-19 16:02:44 +000013885 if (GET_ASIC_REV(tp->pci_chip_rev_id) ==
13886 ASIC_REV_5906) {
Joe Perches63c3a662011-04-26 08:12:10 +000013887 tg3_flag_clear(tp, HW_TSO_2);
Matt Carlsondabc5c62011-05-19 12:12:52 +000013888 tg3_flag_clear(tp, TSO_CAPABLE);
Matt Carlson7196cd62011-05-19 16:02:44 +000013889 }
Matt Carlson5e7dfd02008-11-21 17:18:16 -080013890 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080013891 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson9cf74eb2009-04-20 06:58:27 +000013892 tp->pci_chip_rev_id == CHIPREV_ID_57780_A0 ||
13893 tp->pci_chip_rev_id == CHIPREV_ID_57780_A1)
Joe Perches63c3a662011-04-26 08:12:10 +000013894 tg3_flag_set(tp, CLKREQ_BUG);
Matt Carlson614b0592010-01-20 16:58:02 +000013895 } else if (tp->pci_chip_rev_id == CHIPREV_ID_5717_A0) {
Joe Perches63c3a662011-04-26 08:12:10 +000013896 tg3_flag_set(tp, L1PLLPD_EN);
Michael Chanc7835a72006-11-15 21:14:42 -080013897 }
Matt Carlson52f44902008-11-21 17:17:04 -080013898 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785) {
Jon Mason708ebb3a2011-06-27 12:56:50 +000013899 /* BCM5785 devices are effectively PCIe devices, and should
13900 * follow PCIe codepaths, but do not have a PCIe capabilities
13901 * section.
13902 */
Joe Perches63c3a662011-04-26 08:12:10 +000013903 tg3_flag_set(tp, PCI_EXPRESS);
13904 } else if (!tg3_flag(tp, 5705_PLUS) ||
13905 tg3_flag(tp, 5780_CLASS)) {
Matt Carlson52f44902008-11-21 17:17:04 -080013906 tp->pcix_cap = pci_find_capability(tp->pdev, PCI_CAP_ID_PCIX);
13907 if (!tp->pcix_cap) {
Matt Carlson2445e462010-04-05 10:19:21 +000013908 dev_err(&tp->pdev->dev,
13909 "Cannot find PCI-X capability, aborting\n");
Matt Carlson52f44902008-11-21 17:17:04 -080013910 return -EIO;
13911 }
13912
13913 if (!(pci_state_reg & PCISTATE_CONV_PCI_MODE))
Joe Perches63c3a662011-04-26 08:12:10 +000013914 tg3_flag_set(tp, PCIX_MODE);
Matt Carlson52f44902008-11-21 17:17:04 -080013915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070013916
Michael Chan399de502005-10-03 14:02:39 -070013917 /* If we have an AMD 762 or VIA K8T800 chipset, write
13918 * reordering to the mailbox registers done by the host
13919 * controller can cause major troubles. We read back from
13920 * every mailbox register write to force the writes to be
13921 * posted to the chip in order.
13922 */
Matt Carlson41434702011-03-09 16:58:22 +000013923 if (pci_dev_present(tg3_write_reorder_chipsets) &&
Joe Perches63c3a662011-04-26 08:12:10 +000013924 !tg3_flag(tp, PCI_EXPRESS))
13925 tg3_flag_set(tp, MBOX_WRITE_REORDER);
Michael Chan399de502005-10-03 14:02:39 -070013926
Matt Carlson69fc4052008-12-21 20:19:57 -080013927 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE,
13928 &tp->pci_cacheline_sz);
13929 pci_read_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13930 &tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013931 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
13932 tp->pci_lat_timer < 64) {
13933 tp->pci_lat_timer = 64;
Matt Carlson69fc4052008-12-21 20:19:57 -080013934 pci_write_config_byte(tp->pdev, PCI_LATENCY_TIMER,
13935 tp->pci_lat_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013936 }
13937
Matt Carlson16821282011-07-13 09:27:28 +000013938 /* Important! -- It is critical that the PCI-X hw workaround
13939 * situation is decided before the first MMIO register access.
13940 */
Matt Carlson52f44902008-11-21 17:17:04 -080013941 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5700_BX) {
13942 /* 5700 BX chips need to have their TX producer index
13943 * mailboxes written twice to workaround a bug.
13944 */
Joe Perches63c3a662011-04-26 08:12:10 +000013945 tg3_flag_set(tp, TXD_MBOX_HWBUG);
Matt Carlson9974a352007-10-07 23:27:28 -070013946
Matt Carlson52f44902008-11-21 17:17:04 -080013947 /* If we are in PCI-X mode, enable register write workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013948 *
13949 * The workaround is to use indirect register accesses
13950 * for all chip writes not to mailbox registers.
13951 */
Joe Perches63c3a662011-04-26 08:12:10 +000013952 if (tg3_flag(tp, PCIX_MODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013953 u32 pm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013954
Joe Perches63c3a662011-04-26 08:12:10 +000013955 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013956
13957 /* The chip can have it's power management PCI config
13958 * space registers clobbered due to this bug.
13959 * So explicitly force the chip into D0 here.
13960 */
Matt Carlson9974a352007-10-07 23:27:28 -070013961 pci_read_config_dword(tp->pdev,
13962 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013963 &pm_reg);
13964 pm_reg &= ~PCI_PM_CTRL_STATE_MASK;
13965 pm_reg |= PCI_PM_CTRL_PME_ENABLE | 0 /* D0 */;
Matt Carlson9974a352007-10-07 23:27:28 -070013966 pci_write_config_dword(tp->pdev,
13967 tp->pm_cap + PCI_PM_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013968 pm_reg);
13969
13970 /* Also, force SERR#/PERR# in PCI command. */
13971 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
13972 pci_cmd |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
13973 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
13974 }
13975 }
13976
Linus Torvalds1da177e2005-04-16 15:20:36 -070013977 if ((pci_state_reg & PCISTATE_BUS_SPEED_HIGH) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013978 tg3_flag_set(tp, PCI_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013979 if ((pci_state_reg & PCISTATE_BUS_32BIT) != 0)
Joe Perches63c3a662011-04-26 08:12:10 +000013980 tg3_flag_set(tp, PCI_32BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070013981
13982 /* Chip-specific fixup from Broadcom driver */
13983 if ((tp->pci_chip_rev_id == CHIPREV_ID_5704_A0) &&
13984 (!(pci_state_reg & PCISTATE_RETRY_SAME_DMA))) {
13985 pci_state_reg |= PCISTATE_RETRY_SAME_DMA;
13986 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE, pci_state_reg);
13987 }
13988
Michael Chan1ee582d2005-08-09 20:16:46 -070013989 /* Default fast path register access methods */
Michael Chan20094932005-08-09 20:16:32 -070013990 tp->read32 = tg3_read32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013991 tp->write32 = tg3_write32;
Michael Chan09ee9292005-08-09 20:17:00 -070013992 tp->read32_mbox = tg3_read32;
Michael Chan20094932005-08-09 20:16:32 -070013993 tp->write32_mbox = tg3_write32;
Michael Chan1ee582d2005-08-09 20:16:46 -070013994 tp->write32_tx_mbox = tg3_write32;
13995 tp->write32_rx_mbox = tg3_write32;
13996
13997 /* Various workaround register access methods */
Joe Perches63c3a662011-04-26 08:12:10 +000013998 if (tg3_flag(tp, PCIX_TARGET_HWBUG))
Michael Chan1ee582d2005-08-09 20:16:46 -070013999 tp->write32 = tg3_write_indirect_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014000 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014001 (tg3_flag(tp, PCI_EXPRESS) &&
Matt Carlson98efd8a2007-05-05 12:47:25 -070014002 tp->pci_chip_rev_id == CHIPREV_ID_5750_A0)) {
14003 /*
14004 * Back to back register writes can cause problems on these
14005 * chips, the workaround is to read back all reg writes
14006 * except those to mailbox regs.
14007 *
14008 * See tg3_write_indirect_reg32().
14009 */
Michael Chan1ee582d2005-08-09 20:16:46 -070014010 tp->write32 = tg3_write_flush_reg32;
Matt Carlson98efd8a2007-05-05 12:47:25 -070014011 }
14012
Joe Perches63c3a662011-04-26 08:12:10 +000014013 if (tg3_flag(tp, TXD_MBOX_HWBUG) || tg3_flag(tp, MBOX_WRITE_REORDER)) {
Michael Chan1ee582d2005-08-09 20:16:46 -070014014 tp->write32_tx_mbox = tg3_write32_tx_mbox;
Joe Perches63c3a662011-04-26 08:12:10 +000014015 if (tg3_flag(tp, MBOX_WRITE_REORDER))
Michael Chan1ee582d2005-08-09 20:16:46 -070014016 tp->write32_rx_mbox = tg3_write_flush_reg32;
14017 }
Michael Chan20094932005-08-09 20:16:32 -070014018
Joe Perches63c3a662011-04-26 08:12:10 +000014019 if (tg3_flag(tp, ICH_WORKAROUND)) {
Michael Chan68929142005-08-09 20:17:14 -070014020 tp->read32 = tg3_read_indirect_reg32;
14021 tp->write32 = tg3_write_indirect_reg32;
14022 tp->read32_mbox = tg3_read_indirect_mbox;
14023 tp->write32_mbox = tg3_write_indirect_mbox;
14024 tp->write32_tx_mbox = tg3_write_indirect_mbox;
14025 tp->write32_rx_mbox = tg3_write_indirect_mbox;
14026
14027 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070014028 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070014029
14030 pci_read_config_word(tp->pdev, PCI_COMMAND, &pci_cmd);
14031 pci_cmd &= ~PCI_COMMAND_MEMORY;
14032 pci_write_config_word(tp->pdev, PCI_COMMAND, pci_cmd);
14033 }
Michael Chanb5d37722006-09-27 16:06:21 -070014034 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14035 tp->read32_mbox = tg3_read32_mbox_5906;
14036 tp->write32_mbox = tg3_write32_mbox_5906;
14037 tp->write32_tx_mbox = tg3_write32_mbox_5906;
14038 tp->write32_rx_mbox = tg3_write32_mbox_5906;
14039 }
Michael Chan68929142005-08-09 20:17:14 -070014040
Michael Chanbbadf502006-04-06 21:46:34 -070014041 if (tp->write32 == tg3_write_indirect_reg32 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014042 (tg3_flag(tp, PCIX_MODE) &&
Michael Chanbbadf502006-04-06 21:46:34 -070014043 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
David S. Millerf49639e2006-06-09 11:58:36 -070014044 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)))
Joe Perches63c3a662011-04-26 08:12:10 +000014045 tg3_flag_set(tp, SRAM_USE_CONFIG);
Michael Chanbbadf502006-04-06 21:46:34 -070014046
Matt Carlson16821282011-07-13 09:27:28 +000014047 /* The memory arbiter has to be enabled in order for SRAM accesses
14048 * to succeed. Normally on powerup the tg3 chip firmware will make
14049 * sure it is enabled, but other entities such as system netboot
14050 * code might disable it.
14051 */
14052 val = tr32(MEMARB_MODE);
14053 tw32(MEMARB_MODE, val | MEMARB_MODE_ENABLE);
14054
Matt Carlson69f11c92011-07-13 09:27:30 +000014055 if (tg3_flag(tp, PCIX_MODE)) {
14056 pci_read_config_dword(tp->pdev,
14057 tp->pcix_cap + PCI_X_STATUS, &val);
14058 tp->pci_fn = val & 0x7;
14059 } else {
14060 tp->pci_fn = PCI_FUNC(tp->pdev->devfn) & 3;
14061 }
14062
Michael Chan7d0c41e2005-04-21 17:06:20 -070014063 /* Get eeprom hw config before calling tg3_set_power_state().
Joe Perches63c3a662011-04-26 08:12:10 +000014064 * In particular, the TG3_FLAG_IS_NIC flag must be
Michael Chan7d0c41e2005-04-21 17:06:20 -070014065 * determined before calling tg3_set_power_state() so that
14066 * we know whether or not to switch out of Vaux power.
14067 * When the flag is set, it means that GPIO1 is used for eeprom
14068 * write protect and also implies that it is a LOM where GPIOs
14069 * are not used to switch power.
Jeff Garzik6aa20a22006-09-13 13:24:59 -040014070 */
Michael Chan7d0c41e2005-04-21 17:06:20 -070014071 tg3_get_eeprom_hw_cfg(tp);
14072
Joe Perches63c3a662011-04-26 08:12:10 +000014073 if (tg3_flag(tp, ENABLE_APE)) {
Matt Carlson0d3031d2007-10-10 18:02:43 -070014074 /* Allow reads and writes to the
14075 * APE register and memory space.
14076 */
14077 pci_state_reg |= PCISTATE_ALLOW_APE_CTLSPC_WR |
Matt Carlsonf92d9dc12010-06-05 17:24:30 +000014078 PCISTATE_ALLOW_APE_SHMEM_WR |
14079 PCISTATE_ALLOW_APE_PSPACE_WR;
Matt Carlson0d3031d2007-10-10 18:02:43 -070014080 pci_write_config_dword(tp->pdev, TG3PCI_PCISTATE,
14081 pci_state_reg);
Matt Carlsonc9cab242011-07-13 09:27:27 +000014082
14083 tg3_ape_lock_init(tp);
Matt Carlson0d3031d2007-10-10 18:02:43 -070014084 }
14085
Matt Carlson9936bcf2007-10-10 18:03:07 -070014086 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
Matt Carlson57e69832008-05-25 23:48:31 -070014087 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014088 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014089 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014090 tg3_flag(tp, 57765_PLUS))
14091 tg3_flag_set(tp, CPMU_PRESENT);
Matt Carlsond30cdd22007-10-07 23:28:35 -070014092
Matt Carlson16821282011-07-13 09:27:28 +000014093 /* Set up tp->grc_local_ctrl before calling
14094 * tg3_pwrsrc_switch_to_vmain(). GPIO1 driven high
14095 * will bring 5700's external PHY out of reset.
Michael Chan314fba32005-04-21 17:07:04 -070014096 * It is also used as eeprom write protect on LOMs.
14097 */
14098 tp->grc_local_ctrl = GRC_LCLCTRL_INT_ON_ATTN | GRC_LCLCTRL_AUTO_SEEPROM;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014099 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014100 tg3_flag(tp, EEPROM_WRITE_PROT))
Michael Chan314fba32005-04-21 17:07:04 -070014101 tp->grc_local_ctrl |= (GRC_LCLCTRL_GPIO_OE1 |
14102 GRC_LCLCTRL_GPIO_OUTPUT1);
Michael Chan3e7d83b2005-04-21 17:10:36 -070014103 /* Unused GPIO3 must be driven as output on 5752 because there
14104 * are no pull-up resistors on unused GPIO pins.
14105 */
14106 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752)
14107 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
Michael Chan314fba32005-04-21 17:07:04 -070014108
Matt Carlson321d32a2008-11-21 17:22:19 -080014109 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsoncb4ed1f2010-01-20 16:58:09 +000014110 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
14111 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
Michael Chanaf36e6b2006-03-23 01:28:06 -080014112 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
14113
Matt Carlson8d519ab2009-04-20 06:58:01 +000014114 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
14115 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S) {
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014116 /* Turn off the debug UART. */
14117 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
Joe Perches63c3a662011-04-26 08:12:10 +000014118 if (tg3_flag(tp, IS_NIC))
Matt Carlson5f0c4a32008-06-09 15:41:12 -070014119 /* Keep VMain power. */
14120 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE0 |
14121 GRC_LCLCTRL_GPIO_OUTPUT0;
14122 }
14123
Matt Carlson16821282011-07-13 09:27:28 +000014124 /* Switch out of Vaux if it is a NIC */
14125 tg3_pwrsrc_switch_to_vmain(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014126
Linus Torvalds1da177e2005-04-16 15:20:36 -070014127 /* Derive initial jumbo mode from MTU assigned in
14128 * ether_setup() via the alloc_etherdev() call
14129 */
Joe Perches63c3a662011-04-26 08:12:10 +000014130 if (tp->dev->mtu > ETH_DATA_LEN && !tg3_flag(tp, 5780_CLASS))
14131 tg3_flag_set(tp, JUMBO_RING_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014132
14133 /* Determine WakeOnLan speed to use. */
14134 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14135 tp->pci_chip_rev_id == CHIPREV_ID_5701_A0 ||
14136 tp->pci_chip_rev_id == CHIPREV_ID_5701_B0 ||
14137 tp->pci_chip_rev_id == CHIPREV_ID_5701_B2) {
Joe Perches63c3a662011-04-26 08:12:10 +000014138 tg3_flag_clear(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014139 } else {
Joe Perches63c3a662011-04-26 08:12:10 +000014140 tg3_flag_set(tp, WOL_SPEED_100MB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014141 }
14142
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014143 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014144 tp->phy_flags |= TG3_PHYFLG_IS_FET;
Matt Carlson7f97a4b2009-08-25 10:10:03 +000014145
Linus Torvalds1da177e2005-04-16 15:20:36 -070014146 /* A few boards don't want Ethernet@WireSpeed phy feature */
Matt Carlson6ff6f812011-05-19 12:12:54 +000014147 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14148 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070014149 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A0) &&
Michael Chan747e8f82005-07-25 12:33:22 -070014150 (tp->pci_chip_rev_id != CHIPREV_ID_5705_A1)) ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014151 (tp->phy_flags & TG3_PHYFLG_IS_FET) ||
14152 (tp->phy_flags & TG3_PHYFLG_ANY_SERDES))
14153 tp->phy_flags |= TG3_PHYFLG_NO_ETH_WIRE_SPEED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014154
14155 if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5703_AX ||
14156 GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5704_AX)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014157 tp->phy_flags |= TG3_PHYFLG_ADC_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014158 if (tp->pci_chip_rev_id == CHIPREV_ID_5704_A0)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014159 tp->phy_flags |= TG3_PHYFLG_5704_A0_BUG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014160
Joe Perches63c3a662011-04-26 08:12:10 +000014161 if (tg3_flag(tp, 5705_PLUS) &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014162 !(tp->phy_flags & TG3_PHYFLG_IS_FET) &&
Matt Carlson321d32a2008-11-21 17:22:19 -080014163 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5785 &&
Matt Carlsonf6eb9b12009-09-01 13:19:53 +000014164 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_57780 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014165 !tg3_flag(tp, 57765_PLUS)) {
Michael Chanc424cb22006-04-29 18:56:34 -070014166 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
Matt Carlsond30cdd22007-10-07 23:28:35 -070014167 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5787 ||
Matt Carlson9936bcf2007-10-10 18:03:07 -070014168 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 ||
14169 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761) {
Michael Chand4011ad2007-02-13 12:17:25 -080014170 if (tp->pdev->device != PCI_DEVICE_ID_TIGON3_5756 &&
14171 tp->pdev->device != PCI_DEVICE_ID_TIGON3_5722)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014172 tp->phy_flags |= TG3_PHYFLG_JITTER_BUG;
Michael Chanc1d2a192007-01-08 19:57:20 -080014173 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5755M)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014174 tp->phy_flags |= TG3_PHYFLG_ADJUST_TRIM;
Matt Carlson321d32a2008-11-21 17:22:19 -080014175 } else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014176 tp->phy_flags |= TG3_PHYFLG_BER_BUG;
Michael Chanc424cb22006-04-29 18:56:34 -070014177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014178
Matt Carlsonb2a5c192008-04-03 21:44:44 -070014179 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
14180 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) {
14181 tp->phy_otp = tg3_read_otp_phycfg(tp);
14182 if (tp->phy_otp == 0)
14183 tp->phy_otp = TG3_OTP_DEFAULT;
14184 }
14185
Joe Perches63c3a662011-04-26 08:12:10 +000014186 if (tg3_flag(tp, CPMU_PRESENT))
Matt Carlson8ef21422008-05-02 16:47:53 -070014187 tp->mi_mode = MAC_MI_MODE_500KHZ_CONST;
14188 else
14189 tp->mi_mode = MAC_MI_MODE_BASE;
14190
Linus Torvalds1da177e2005-04-16 15:20:36 -070014191 tp->coalesce_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014192 if (GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_AX &&
14193 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5700_BX)
14194 tp->coalesce_mode |= HOSTCC_MODE_32BYTE;
14195
Matt Carlson4d958472011-04-20 07:57:35 +000014196 /* Set these bits to enable statistics workaround. */
14197 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
14198 tp->pci_chip_rev_id == CHIPREV_ID_5719_A0 ||
14199 tp->pci_chip_rev_id == CHIPREV_ID_5720_A0) {
14200 tp->coalesce_mode |= HOSTCC_MODE_ATTN;
14201 tp->grc_mode |= GRC_MODE_IRQ_ON_FLOW_ATTN;
14202 }
14203
Matt Carlson321d32a2008-11-21 17:22:19 -080014204 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
14205 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Joe Perches63c3a662011-04-26 08:12:10 +000014206 tg3_flag_set(tp, USE_PHYLIB);
Matt Carlson57e69832008-05-25 23:48:31 -070014207
Matt Carlson158d7ab2008-05-29 01:37:54 -070014208 err = tg3_mdio_init(tp);
14209 if (err)
14210 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014211
14212 /* Initialize data/descriptor byte/word swapping. */
14213 val = tr32(GRC_MODE);
Matt Carlsonf2096f92011-04-05 14:22:48 +000014214 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5720)
14215 val &= (GRC_MODE_BYTE_SWAP_B2HRX_DATA |
14216 GRC_MODE_WORD_SWAP_B2HRX_DATA |
14217 GRC_MODE_B2HRX_ENABLE |
14218 GRC_MODE_HTX2B_ENABLE |
14219 GRC_MODE_HOST_STACKUP);
14220 else
14221 val &= GRC_MODE_HOST_STACKUP;
14222
Linus Torvalds1da177e2005-04-16 15:20:36 -070014223 tw32(GRC_MODE, val | tp->grc_mode);
14224
14225 tg3_switch_clocks(tp);
14226
14227 /* Clear this out for sanity. */
14228 tw32(TG3PCI_MEM_WIN_BASE_ADDR, 0);
14229
14230 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
14231 &pci_state_reg);
14232 if ((pci_state_reg & PCISTATE_CONV_PCI_MODE) == 0 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014233 !tg3_flag(tp, PCIX_TARGET_HWBUG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014234 u32 chiprevid = GET_CHIP_REV_ID(tp->misc_host_ctrl);
14235
14236 if (chiprevid == CHIPREV_ID_5701_A0 ||
14237 chiprevid == CHIPREV_ID_5701_B0 ||
14238 chiprevid == CHIPREV_ID_5701_B2 ||
14239 chiprevid == CHIPREV_ID_5701_B5) {
14240 void __iomem *sram_base;
14241
14242 /* Write some dummy words into the SRAM status block
14243 * area, see if it reads back correctly. If the return
14244 * value is bad, force enable the PCIX workaround.
14245 */
14246 sram_base = tp->regs + NIC_SRAM_WIN_BASE + NIC_SRAM_STATS_BLK;
14247
14248 writel(0x00000000, sram_base);
14249 writel(0x00000000, sram_base + 4);
14250 writel(0xffffffff, sram_base + 4);
14251 if (readl(sram_base) != 0x00000000)
Joe Perches63c3a662011-04-26 08:12:10 +000014252 tg3_flag_set(tp, PCIX_TARGET_HWBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014253 }
14254 }
14255
14256 udelay(50);
14257 tg3_nvram_init(tp);
14258
14259 grc_misc_cfg = tr32(GRC_MISC_CFG);
14260 grc_misc_cfg &= GRC_MISC_CFG_BOARD_ID_MASK;
14261
Linus Torvalds1da177e2005-04-16 15:20:36 -070014262 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14263 (grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788 ||
14264 grc_misc_cfg == GRC_MISC_CFG_BOARD_ID_5788M))
Joe Perches63c3a662011-04-26 08:12:10 +000014265 tg3_flag_set(tp, IS_5788);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014266
Joe Perches63c3a662011-04-26 08:12:10 +000014267 if (!tg3_flag(tp, IS_5788) &&
Matt Carlson6ff6f812011-05-19 12:12:54 +000014268 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014269 tg3_flag_set(tp, TAGGED_STATUS);
14270 if (tg3_flag(tp, TAGGED_STATUS)) {
David S. Millerfac9b832005-05-18 22:46:34 -070014271 tp->coalesce_mode |= (HOSTCC_MODE_CLRTICK_RXBD |
14272 HOSTCC_MODE_CLRTICK_TXBD);
14273
14274 tp->misc_host_ctrl |= MISC_HOST_CTRL_TAGGED_STATUS;
14275 pci_write_config_dword(tp->pdev, TG3PCI_MISC_HOST_CTRL,
14276 tp->misc_host_ctrl);
14277 }
14278
Matt Carlson3bda1252008-08-15 14:08:22 -070014279 /* Preserve the APE MAC_MODE bits */
Joe Perches63c3a662011-04-26 08:12:10 +000014280 if (tg3_flag(tp, ENABLE_APE))
Matt Carlsond2394e6b2010-11-24 08:31:47 +000014281 tp->mac_mode = MAC_MODE_APE_TX_EN | MAC_MODE_APE_RX_EN;
Matt Carlson3bda1252008-08-15 14:08:22 -070014282 else
14283 tp->mac_mode = TG3_DEF_MAC_MODE;
14284
Linus Torvalds1da177e2005-04-16 15:20:36 -070014285 /* these are limited to 10/100 only */
14286 if ((GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 &&
14287 (grc_misc_cfg == 0x8000 || grc_misc_cfg == 0x4000)) ||
14288 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 &&
14289 tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14290 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901 ||
14291 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5901_2 ||
14292 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) ||
14293 (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM &&
14294 (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F ||
Michael Chan676917d2006-12-07 00:20:22 -080014295 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F ||
14296 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) ||
Matt Carlson321d32a2008-11-21 17:22:19 -080014297 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57790 ||
Matt Carlsond1101142010-02-17 15:16:55 +000014298 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791 ||
14299 tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795 ||
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014300 (tp->phy_flags & TG3_PHYFLG_IS_FET))
14301 tp->phy_flags |= TG3_PHYFLG_10_100_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014302
14303 err = tg3_phy_probe(tp);
14304 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000014305 dev_err(&tp->pdev->dev, "phy probe failed, err %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014306 /* ... but do not return immediately ... */
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070014307 tg3_mdio_fini(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014308 }
14309
Matt Carlson184b8902010-04-05 10:19:25 +000014310 tg3_read_vpd(tp);
Michael Chanc4e65752006-03-20 22:29:32 -080014311 tg3_read_fw_ver(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014312
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014313 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES) {
14314 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014315 } else {
14316 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014317 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014318 else
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014319 tp->phy_flags &= ~TG3_PHYFLG_USE_MI_INTERRUPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014320 }
14321
14322 /* 5700 {AX,BX} chips have a broken status block link
14323 * change bit implementation, so we must use the
14324 * status register in those cases.
14325 */
14326 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700)
Joe Perches63c3a662011-04-26 08:12:10 +000014327 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014328 else
Joe Perches63c3a662011-04-26 08:12:10 +000014329 tg3_flag_clear(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014330
14331 /* The led_ctrl is set during tg3_phy_probe, here we might
14332 * have to force the link status polling mechanism based
14333 * upon subsystem IDs.
14334 */
14335 if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
Michael Chan007a880d2007-05-31 14:49:51 -070014336 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014337 !(tp->phy_flags & TG3_PHYFLG_PHY_SERDES)) {
14338 tp->phy_flags |= TG3_PHYFLG_USE_MI_INTERRUPT;
Joe Perches63c3a662011-04-26 08:12:10 +000014339 tg3_flag_set(tp, USE_LINKCHG_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014340 }
14341
14342 /* For all SERDES we poll the MAC status register. */
Matt Carlsonf07e9af2010-08-02 11:26:07 +000014343 if (tp->phy_flags & TG3_PHYFLG_PHY_SERDES)
Joe Perches63c3a662011-04-26 08:12:10 +000014344 tg3_flag_set(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014345 else
Joe Perches63c3a662011-04-26 08:12:10 +000014346 tg3_flag_clear(tp, POLL_SERDES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014347
Matt Carlsonbf933c82011-01-25 15:58:49 +000014348 tp->rx_offset = NET_IP_ALIGN;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014349 tp->rx_copy_thresh = TG3_RX_COPY_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014350 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014351 tg3_flag(tp, PCIX_MODE)) {
Matt Carlsonbf933c82011-01-25 15:58:49 +000014352 tp->rx_offset = 0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014353#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Matt Carlson9dc7a112010-04-12 06:58:28 +000014354 tp->rx_copy_thresh = ~(u16)0;
Matt Carlsond2757fc2010-04-12 06:58:27 +000014355#endif
14356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014357
Matt Carlson2c49a442010-09-30 10:34:35 +000014358 tp->rx_std_ring_mask = TG3_RX_STD_RING_SIZE(tp) - 1;
14359 tp->rx_jmb_ring_mask = TG3_RX_JMB_RING_SIZE(tp) - 1;
Matt Carlson7cb32cf2010-09-30 10:34:36 +000014360 tp->rx_ret_ring_mask = tg3_rx_ret_ring_size(tp) - 1;
14361
Matt Carlson2c49a442010-09-30 10:34:35 +000014362 tp->rx_std_max_post = tp->rx_std_ring_mask + 1;
Michael Chanf92905d2006-06-29 20:14:29 -070014363
14364 /* Increment the rx prod index on the rx std ring by at most
14365 * 8 for these chips to workaround hw errata.
14366 */
14367 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750 ||
14368 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5752 ||
14369 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755)
14370 tp->rx_std_max_post = 8;
14371
Joe Perches63c3a662011-04-26 08:12:10 +000014372 if (tg3_flag(tp, ASPM_WORKAROUND))
Matt Carlson8ed5d972007-05-07 00:25:49 -070014373 tp->pwrmgmt_thresh = tr32(PCIE_PWR_MGMT_THRESH) &
14374 PCIE_PWR_MGMT_L1_THRESH_MSK;
14375
Linus Torvalds1da177e2005-04-16 15:20:36 -070014376 return err;
14377}
14378
David S. Miller49b6e95f2007-03-29 01:38:42 -070014379#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014380static int __devinit tg3_get_macaddr_sparc(struct tg3 *tp)
14381{
14382 struct net_device *dev = tp->dev;
14383 struct pci_dev *pdev = tp->pdev;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014384 struct device_node *dp = pci_device_to_OF_node(pdev);
David S. Miller374d4ca2007-03-29 01:57:57 -070014385 const unsigned char *addr;
David S. Miller49b6e95f2007-03-29 01:38:42 -070014386 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014387
David S. Miller49b6e95f2007-03-29 01:38:42 -070014388 addr = of_get_property(dp, "local-mac-address", &len);
14389 if (addr && len == 6) {
14390 memcpy(dev->dev_addr, addr, 6);
14391 memcpy(dev->perm_addr, dev->dev_addr, 6);
14392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014393 }
14394 return -ENODEV;
14395}
14396
14397static int __devinit tg3_get_default_macaddr_sparc(struct tg3 *tp)
14398{
14399 struct net_device *dev = tp->dev;
14400
14401 memcpy(dev->dev_addr, idprom->id_ethaddr, 6);
John W. Linville2ff43692005-09-12 14:44:20 -070014402 memcpy(dev->perm_addr, idprom->id_ethaddr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014403 return 0;
14404}
14405#endif
14406
14407static int __devinit tg3_get_device_address(struct tg3 *tp)
14408{
14409 struct net_device *dev = tp->dev;
14410 u32 hi, lo, mac_offset;
Michael Chan008652b2006-03-27 23:14:53 -080014411 int addr_ok = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014412
David S. Miller49b6e95f2007-03-29 01:38:42 -070014413#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014414 if (!tg3_get_macaddr_sparc(tp))
14415 return 0;
14416#endif
14417
14418 mac_offset = 0x7c;
Matt Carlson6ff6f812011-05-19 12:12:54 +000014419 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 ||
Joe Perches63c3a662011-04-26 08:12:10 +000014420 tg3_flag(tp, 5780_CLASS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014421 if (tr32(TG3PCI_DUAL_MAC_CTRL) & DUAL_MAC_CTRL_ID)
14422 mac_offset = 0xcc;
14423 if (tg3_nvram_lock(tp))
14424 tw32_f(NVRAM_CMD, NVRAM_CMD_RESET);
14425 else
14426 tg3_nvram_unlock(tp);
Joe Perches63c3a662011-04-26 08:12:10 +000014427 } else if (tg3_flag(tp, 5717_PLUS)) {
Matt Carlson69f11c92011-07-13 09:27:30 +000014428 if (tp->pci_fn & 1)
Matt Carlsona1b950d2009-09-01 13:20:17 +000014429 mac_offset = 0xcc;
Matt Carlson69f11c92011-07-13 09:27:30 +000014430 if (tp->pci_fn > 1)
Matt Carlsona50d0792010-06-05 17:24:37 +000014431 mac_offset += 0x18c;
Matt Carlsona1b950d2009-09-01 13:20:17 +000014432 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906)
Michael Chanb5d37722006-09-27 16:06:21 -070014433 mac_offset = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014434
14435 /* First try to get it from MAC address mailbox. */
14436 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_HIGH_MBOX, &hi);
14437 if ((hi >> 16) == 0x484b) {
14438 dev->dev_addr[0] = (hi >> 8) & 0xff;
14439 dev->dev_addr[1] = (hi >> 0) & 0xff;
14440
14441 tg3_read_mem(tp, NIC_SRAM_MAC_ADDR_LOW_MBOX, &lo);
14442 dev->dev_addr[2] = (lo >> 24) & 0xff;
14443 dev->dev_addr[3] = (lo >> 16) & 0xff;
14444 dev->dev_addr[4] = (lo >> 8) & 0xff;
14445 dev->dev_addr[5] = (lo >> 0) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014446
Michael Chan008652b2006-03-27 23:14:53 -080014447 /* Some old bootcode may report a 0 MAC address in SRAM */
14448 addr_ok = is_valid_ether_addr(&dev->dev_addr[0]);
14449 }
14450 if (!addr_ok) {
14451 /* Next, try NVRAM. */
Joe Perches63c3a662011-04-26 08:12:10 +000014452 if (!tg3_flag(tp, NO_NVRAM) &&
Matt Carlsondf259d82009-04-20 06:57:14 +000014453 !tg3_nvram_read_be32(tp, mac_offset + 0, &hi) &&
Matt Carlson6d348f22009-02-25 14:25:52 +000014454 !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) {
Matt Carlson62cedd12009-04-20 14:52:29 -070014455 memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2);
14456 memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo));
Michael Chan008652b2006-03-27 23:14:53 -080014457 }
14458 /* Finally just fetch it out of the MAC control regs. */
14459 else {
14460 hi = tr32(MAC_ADDR_0_HIGH);
14461 lo = tr32(MAC_ADDR_0_LOW);
14462
14463 dev->dev_addr[5] = lo & 0xff;
14464 dev->dev_addr[4] = (lo >> 8) & 0xff;
14465 dev->dev_addr[3] = (lo >> 16) & 0xff;
14466 dev->dev_addr[2] = (lo >> 24) & 0xff;
14467 dev->dev_addr[1] = hi & 0xff;
14468 dev->dev_addr[0] = (hi >> 8) & 0xff;
14469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014470 }
14471
14472 if (!is_valid_ether_addr(&dev->dev_addr[0])) {
David S. Miller7582a332008-03-20 15:53:15 -070014473#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -070014474 if (!tg3_get_default_macaddr_sparc(tp))
14475 return 0;
14476#endif
14477 return -EINVAL;
14478 }
John W. Linville2ff43692005-09-12 14:44:20 -070014479 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014480 return 0;
14481}
14482
David S. Miller59e6b432005-05-18 22:50:10 -070014483#define BOUNDARY_SINGLE_CACHELINE 1
14484#define BOUNDARY_MULTI_CACHELINE 2
14485
14486static u32 __devinit tg3_calc_dma_bndry(struct tg3 *tp, u32 val)
14487{
14488 int cacheline_size;
14489 u8 byte;
14490 int goal;
14491
14492 pci_read_config_byte(tp->pdev, PCI_CACHE_LINE_SIZE, &byte);
14493 if (byte == 0)
14494 cacheline_size = 1024;
14495 else
14496 cacheline_size = (int) byte * 4;
14497
14498 /* On 5703 and later chips, the boundary bits have no
14499 * effect.
14500 */
14501 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14502 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701 &&
Joe Perches63c3a662011-04-26 08:12:10 +000014503 !tg3_flag(tp, PCI_EXPRESS))
David S. Miller59e6b432005-05-18 22:50:10 -070014504 goto out;
14505
14506#if defined(CONFIG_PPC64) || defined(CONFIG_IA64) || defined(CONFIG_PARISC)
14507 goal = BOUNDARY_MULTI_CACHELINE;
14508#else
14509#if defined(CONFIG_SPARC64) || defined(CONFIG_ALPHA)
14510 goal = BOUNDARY_SINGLE_CACHELINE;
14511#else
14512 goal = 0;
14513#endif
14514#endif
14515
Joe Perches63c3a662011-04-26 08:12:10 +000014516 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014517 val = goal ? 0 : DMA_RWCTRL_DIS_CACHE_ALIGNMENT;
14518 goto out;
14519 }
14520
David S. Miller59e6b432005-05-18 22:50:10 -070014521 if (!goal)
14522 goto out;
14523
14524 /* PCI controllers on most RISC systems tend to disconnect
14525 * when a device tries to burst across a cache-line boundary.
14526 * Therefore, letting tg3 do so just wastes PCI bandwidth.
14527 *
14528 * Unfortunately, for PCI-E there are only limited
14529 * write-side controls for this, and thus for reads
14530 * we will still get the disconnects. We'll also waste
14531 * these PCI cycles for both read and write for chips
14532 * other than 5700 and 5701 which do not implement the
14533 * boundary bits.
14534 */
Joe Perches63c3a662011-04-26 08:12:10 +000014535 if (tg3_flag(tp, PCIX_MODE) && !tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014536 switch (cacheline_size) {
14537 case 16:
14538 case 32:
14539 case 64:
14540 case 128:
14541 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14542 val |= (DMA_RWCTRL_READ_BNDRY_128_PCIX |
14543 DMA_RWCTRL_WRITE_BNDRY_128_PCIX);
14544 } else {
14545 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14546 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14547 }
14548 break;
14549
14550 case 256:
14551 val |= (DMA_RWCTRL_READ_BNDRY_256_PCIX |
14552 DMA_RWCTRL_WRITE_BNDRY_256_PCIX);
14553 break;
14554
14555 default:
14556 val |= (DMA_RWCTRL_READ_BNDRY_384_PCIX |
14557 DMA_RWCTRL_WRITE_BNDRY_384_PCIX);
14558 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014559 }
Joe Perches63c3a662011-04-26 08:12:10 +000014560 } else if (tg3_flag(tp, PCI_EXPRESS)) {
David S. Miller59e6b432005-05-18 22:50:10 -070014561 switch (cacheline_size) {
14562 case 16:
14563 case 32:
14564 case 64:
14565 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14566 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14567 val |= DMA_RWCTRL_WRITE_BNDRY_64_PCIE;
14568 break;
14569 }
14570 /* fallthrough */
14571 case 128:
14572 default:
14573 val &= ~DMA_RWCTRL_WRITE_BNDRY_DISAB_PCIE;
14574 val |= DMA_RWCTRL_WRITE_BNDRY_128_PCIE;
14575 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014576 }
David S. Miller59e6b432005-05-18 22:50:10 -070014577 } else {
14578 switch (cacheline_size) {
14579 case 16:
14580 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14581 val |= (DMA_RWCTRL_READ_BNDRY_16 |
14582 DMA_RWCTRL_WRITE_BNDRY_16);
14583 break;
14584 }
14585 /* fallthrough */
14586 case 32:
14587 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14588 val |= (DMA_RWCTRL_READ_BNDRY_32 |
14589 DMA_RWCTRL_WRITE_BNDRY_32);
14590 break;
14591 }
14592 /* fallthrough */
14593 case 64:
14594 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14595 val |= (DMA_RWCTRL_READ_BNDRY_64 |
14596 DMA_RWCTRL_WRITE_BNDRY_64);
14597 break;
14598 }
14599 /* fallthrough */
14600 case 128:
14601 if (goal == BOUNDARY_SINGLE_CACHELINE) {
14602 val |= (DMA_RWCTRL_READ_BNDRY_128 |
14603 DMA_RWCTRL_WRITE_BNDRY_128);
14604 break;
14605 }
14606 /* fallthrough */
14607 case 256:
14608 val |= (DMA_RWCTRL_READ_BNDRY_256 |
14609 DMA_RWCTRL_WRITE_BNDRY_256);
14610 break;
14611 case 512:
14612 val |= (DMA_RWCTRL_READ_BNDRY_512 |
14613 DMA_RWCTRL_WRITE_BNDRY_512);
14614 break;
14615 case 1024:
14616 default:
14617 val |= (DMA_RWCTRL_READ_BNDRY_1024 |
14618 DMA_RWCTRL_WRITE_BNDRY_1024);
14619 break;
Stephen Hemminger855e1112008-04-16 16:37:28 -070014620 }
David S. Miller59e6b432005-05-18 22:50:10 -070014621 }
14622
14623out:
14624 return val;
14625}
14626
Linus Torvalds1da177e2005-04-16 15:20:36 -070014627static int __devinit tg3_do_test_dma(struct tg3 *tp, u32 *buf, dma_addr_t buf_dma, int size, int to_device)
14628{
14629 struct tg3_internal_buffer_desc test_desc;
14630 u32 sram_dma_descs;
14631 int i, ret;
14632
14633 sram_dma_descs = NIC_SRAM_DMA_DESC_POOL_BASE;
14634
14635 tw32(FTQ_RCVBD_COMP_FIFO_ENQDEQ, 0);
14636 tw32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ, 0);
14637 tw32(RDMAC_STATUS, 0);
14638 tw32(WDMAC_STATUS, 0);
14639
14640 tw32(BUFMGR_MODE, 0);
14641 tw32(FTQ_RESET, 0);
14642
14643 test_desc.addr_hi = ((u64) buf_dma) >> 32;
14644 test_desc.addr_lo = buf_dma & 0xffffffff;
14645 test_desc.nic_mbuf = 0x00002100;
14646 test_desc.len = size;
14647
14648 /*
14649 * HP ZX1 was seeing test failures for 5701 cards running at 33Mhz
14650 * the *second* time the tg3 driver was getting loaded after an
14651 * initial scan.
14652 *
14653 * Broadcom tells me:
14654 * ...the DMA engine is connected to the GRC block and a DMA
14655 * reset may affect the GRC block in some unpredictable way...
14656 * The behavior of resets to individual blocks has not been tested.
14657 *
14658 * Broadcom noted the GRC reset will also reset all sub-components.
14659 */
14660 if (to_device) {
14661 test_desc.cqid_sqid = (13 << 8) | 2;
14662
14663 tw32_f(RDMAC_MODE, RDMAC_MODE_ENABLE);
14664 udelay(40);
14665 } else {
14666 test_desc.cqid_sqid = (16 << 8) | 7;
14667
14668 tw32_f(WDMAC_MODE, WDMAC_MODE_ENABLE);
14669 udelay(40);
14670 }
14671 test_desc.flags = 0x00000005;
14672
14673 for (i = 0; i < (sizeof(test_desc) / sizeof(u32)); i++) {
14674 u32 val;
14675
14676 val = *(((u32 *)&test_desc) + i);
14677 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR,
14678 sram_dma_descs + (i * sizeof(u32)));
14679 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val);
14680 }
14681 pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0);
14682
Matt Carlson859a588792010-04-05 10:19:28 +000014683 if (to_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014684 tw32(FTQ_DMA_HIGH_READ_FIFO_ENQDEQ, sram_dma_descs);
Matt Carlson859a588792010-04-05 10:19:28 +000014685 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070014686 tw32(FTQ_DMA_HIGH_WRITE_FIFO_ENQDEQ, sram_dma_descs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014687
14688 ret = -ENODEV;
14689 for (i = 0; i < 40; i++) {
14690 u32 val;
14691
14692 if (to_device)
14693 val = tr32(FTQ_RCVBD_COMP_FIFO_ENQDEQ);
14694 else
14695 val = tr32(FTQ_RCVDATA_COMP_FIFO_ENQDEQ);
14696 if ((val & 0xffff) == sram_dma_descs) {
14697 ret = 0;
14698 break;
14699 }
14700
14701 udelay(100);
14702 }
14703
14704 return ret;
14705}
14706
David S. Millerded73402005-05-23 13:59:47 -070014707#define TEST_BUFFER_SIZE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -070014708
Matt Carlson41434702011-03-09 16:58:22 +000014709static DEFINE_PCI_DEVICE_TABLE(tg3_dma_wait_state_chipsets) = {
Joe Perches895950c2010-12-21 02:16:08 -080014710 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_PCI15) },
14711 { },
14712};
14713
Linus Torvalds1da177e2005-04-16 15:20:36 -070014714static int __devinit tg3_test_dma(struct tg3 *tp)
14715{
14716 dma_addr_t buf_dma;
David S. Miller59e6b432005-05-18 22:50:10 -070014717 u32 *buf, saved_dma_rwctrl;
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014718 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014719
Matt Carlson4bae65c2010-11-24 08:31:52 +000014720 buf = dma_alloc_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE,
14721 &buf_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014722 if (!buf) {
14723 ret = -ENOMEM;
14724 goto out_nofree;
14725 }
14726
14727 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
14728 (0x6 << DMA_RWCTRL_PCI_READ_CMD_SHIFT));
14729
David S. Miller59e6b432005-05-18 22:50:10 -070014730 tp->dma_rwctrl = tg3_calc_dma_bndry(tp, tp->dma_rwctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014731
Joe Perches63c3a662011-04-26 08:12:10 +000014732 if (tg3_flag(tp, 57765_PLUS))
Matt Carlsoncbf9ca62009-11-13 13:03:40 +000014733 goto out;
14734
Joe Perches63c3a662011-04-26 08:12:10 +000014735 if (tg3_flag(tp, PCI_EXPRESS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070014736 /* DMA read watermark not used on PCIE */
14737 tp->dma_rwctrl |= 0x00180000;
Joe Perches63c3a662011-04-26 08:12:10 +000014738 } else if (!tg3_flag(tp, PCIX_MODE)) {
Michael Chan85e94ce2005-04-21 17:05:28 -070014739 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
14740 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014741 tp->dma_rwctrl |= 0x003f0000;
14742 else
14743 tp->dma_rwctrl |= 0x003f000f;
14744 } else {
14745 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14746 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
14747 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
Michael Chan49afdeb2007-02-13 12:17:03 -080014748 u32 read_water = 0x7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014749
Michael Chan4a29cc22006-03-19 13:21:12 -080014750 /* If the 5704 is behind the EPB bridge, we can
14751 * do the less restrictive ONE_DMA workaround for
14752 * better performance.
14753 */
Joe Perches63c3a662011-04-26 08:12:10 +000014754 if (tg3_flag(tp, 40BIT_DMA_BUG) &&
Michael Chan4a29cc22006-03-19 13:21:12 -080014755 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14756 tp->dma_rwctrl |= 0x8000;
14757 else if (ccval == 0x6 || ccval == 0x7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014758 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
14759
Michael Chan49afdeb2007-02-13 12:17:03 -080014760 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
14761 read_water = 4;
David S. Miller59e6b432005-05-18 22:50:10 -070014762 /* Set bit 23 to enable PCIX hw bug fix */
Michael Chan49afdeb2007-02-13 12:17:03 -080014763 tp->dma_rwctrl |=
14764 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
14765 (0x3 << DMA_RWCTRL_WRITE_WATER_SHIFT) |
14766 (1 << 23);
Michael Chan4cf78e42005-07-25 12:29:19 -070014767 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
14768 /* 5780 always in PCIX mode */
14769 tp->dma_rwctrl |= 0x00144000;
Michael Chana4e2b342005-10-26 15:46:52 -070014770 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
14771 /* 5714 always in PCIX mode */
14772 tp->dma_rwctrl |= 0x00148000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014773 } else {
14774 tp->dma_rwctrl |= 0x001b000f;
14775 }
14776 }
14777
14778 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
14779 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
14780 tp->dma_rwctrl &= 0xfffffff0;
14781
14782 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
14783 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
14784 /* Remove this if it causes problems for some boards. */
14785 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
14786
14787 /* On 5700/5701 chips, we need to set this bit.
14788 * Otherwise the chip will issue cacheline transactions
14789 * to streamable DMA memory with not all the byte
14790 * enables turned on. This is an error on several
14791 * RISC PCI controllers, in particular sparc64.
14792 *
14793 * On 5703/5704 chips, this bit has been reassigned
14794 * a different meaning. In particular, it is used
14795 * on those chips to enable a PCI-X workaround.
14796 */
14797 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
14798 }
14799
14800 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14801
14802#if 0
14803 /* Unneeded, already done by tg3_get_invariants. */
14804 tg3_switch_clocks(tp);
14805#endif
14806
Linus Torvalds1da177e2005-04-16 15:20:36 -070014807 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
14808 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
14809 goto out;
14810
David S. Miller59e6b432005-05-18 22:50:10 -070014811 /* It is best to perform DMA test with maximum write burst size
14812 * to expose the 5700/5701 write DMA bug.
14813 */
14814 saved_dma_rwctrl = tp->dma_rwctrl;
14815 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14816 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14817
Linus Torvalds1da177e2005-04-16 15:20:36 -070014818 while (1) {
14819 u32 *p = buf, i;
14820
14821 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
14822 p[i] = i;
14823
14824 /* Send the buffer to the chip. */
14825 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
14826 if (ret) {
Matt Carlson2445e462010-04-05 10:19:21 +000014827 dev_err(&tp->pdev->dev,
14828 "%s: Buffer write failed. err = %d\n",
14829 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014830 break;
14831 }
14832
14833#if 0
14834 /* validate data reached card RAM correctly. */
14835 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14836 u32 val;
14837 tg3_read_mem(tp, 0x2100 + (i*4), &val);
14838 if (le32_to_cpu(val) != p[i]) {
Matt Carlson2445e462010-04-05 10:19:21 +000014839 dev_err(&tp->pdev->dev,
14840 "%s: Buffer corrupted on device! "
14841 "(%d != %d)\n", __func__, val, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014842 /* ret = -ENODEV here? */
14843 }
14844 p[i] = 0;
14845 }
14846#endif
14847 /* Now read it back. */
14848 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
14849 if (ret) {
Matt Carlson5129c3a2010-04-05 10:19:23 +000014850 dev_err(&tp->pdev->dev, "%s: Buffer read failed. "
14851 "err = %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014852 break;
14853 }
14854
14855 /* Verify it. */
14856 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
14857 if (p[i] == i)
14858 continue;
14859
David S. Miller59e6b432005-05-18 22:50:10 -070014860 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14861 DMA_RWCTRL_WRITE_BNDRY_16) {
14862 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014863 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
14864 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14865 break;
14866 } else {
Matt Carlson2445e462010-04-05 10:19:21 +000014867 dev_err(&tp->pdev->dev,
14868 "%s: Buffer corrupted on read back! "
14869 "(%d != %d)\n", __func__, p[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014870 ret = -ENODEV;
14871 goto out;
14872 }
14873 }
14874
14875 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
14876 /* Success. */
14877 ret = 0;
14878 break;
14879 }
14880 }
David S. Miller59e6b432005-05-18 22:50:10 -070014881 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
14882 DMA_RWCTRL_WRITE_BNDRY_16) {
14883 /* DMA test passed without adjusting DMA boundary,
Michael Chan6d1cfba2005-06-08 14:13:14 -070014884 * now look for chipsets that are known to expose the
14885 * DMA bug without failing the test.
David S. Miller59e6b432005-05-18 22:50:10 -070014886 */
Matt Carlson41434702011-03-09 16:58:22 +000014887 if (pci_dev_present(tg3_dma_wait_state_chipsets)) {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014888 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
14889 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
Matt Carlson859a588792010-04-05 10:19:28 +000014890 } else {
Michael Chan6d1cfba2005-06-08 14:13:14 -070014891 /* Safe to use the calculated DMA boundary. */
14892 tp->dma_rwctrl = saved_dma_rwctrl;
Matt Carlson859a588792010-04-05 10:19:28 +000014893 }
Michael Chan6d1cfba2005-06-08 14:13:14 -070014894
David S. Miller59e6b432005-05-18 22:50:10 -070014895 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
14896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014897
14898out:
Matt Carlson4bae65c2010-11-24 08:31:52 +000014899 dma_free_coherent(&tp->pdev->dev, TEST_BUFFER_SIZE, buf, buf_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014900out_nofree:
14901 return ret;
14902}
14903
Linus Torvalds1da177e2005-04-16 15:20:36 -070014904static void __devinit tg3_init_bufmgr_config(struct tg3 *tp)
14905{
Joe Perches63c3a662011-04-26 08:12:10 +000014906 if (tg3_flag(tp, 57765_PLUS)) {
Matt Carlson666bc832010-01-20 16:58:03 +000014907 tp->bufmgr_config.mbuf_read_dma_low_water =
14908 DEFAULT_MB_RDMA_LOW_WATER_5705;
14909 tp->bufmgr_config.mbuf_mac_rx_low_water =
14910 DEFAULT_MB_MACRX_LOW_WATER_57765;
14911 tp->bufmgr_config.mbuf_high_water =
14912 DEFAULT_MB_HIGH_WATER_57765;
14913
14914 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14915 DEFAULT_MB_RDMA_LOW_WATER_5705;
14916 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14917 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_57765;
14918 tp->bufmgr_config.mbuf_high_water_jumbo =
14919 DEFAULT_MB_HIGH_WATER_JUMBO_57765;
Joe Perches63c3a662011-04-26 08:12:10 +000014920 } else if (tg3_flag(tp, 5705_PLUS)) {
Michael Chanfdfec1722005-07-25 12:31:48 -070014921 tp->bufmgr_config.mbuf_read_dma_low_water =
14922 DEFAULT_MB_RDMA_LOW_WATER_5705;
14923 tp->bufmgr_config.mbuf_mac_rx_low_water =
14924 DEFAULT_MB_MACRX_LOW_WATER_5705;
14925 tp->bufmgr_config.mbuf_high_water =
14926 DEFAULT_MB_HIGH_WATER_5705;
Michael Chanb5d37722006-09-27 16:06:21 -070014927 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) {
14928 tp->bufmgr_config.mbuf_mac_rx_low_water =
14929 DEFAULT_MB_MACRX_LOW_WATER_5906;
14930 tp->bufmgr_config.mbuf_high_water =
14931 DEFAULT_MB_HIGH_WATER_5906;
14932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014933
Michael Chanfdfec1722005-07-25 12:31:48 -070014934 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14935 DEFAULT_MB_RDMA_LOW_WATER_JUMBO_5780;
14936 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14937 DEFAULT_MB_MACRX_LOW_WATER_JUMBO_5780;
14938 tp->bufmgr_config.mbuf_high_water_jumbo =
14939 DEFAULT_MB_HIGH_WATER_JUMBO_5780;
14940 } else {
14941 tp->bufmgr_config.mbuf_read_dma_low_water =
14942 DEFAULT_MB_RDMA_LOW_WATER;
14943 tp->bufmgr_config.mbuf_mac_rx_low_water =
14944 DEFAULT_MB_MACRX_LOW_WATER;
14945 tp->bufmgr_config.mbuf_high_water =
14946 DEFAULT_MB_HIGH_WATER;
14947
14948 tp->bufmgr_config.mbuf_read_dma_low_water_jumbo =
14949 DEFAULT_MB_RDMA_LOW_WATER_JUMBO;
14950 tp->bufmgr_config.mbuf_mac_rx_low_water_jumbo =
14951 DEFAULT_MB_MACRX_LOW_WATER_JUMBO;
14952 tp->bufmgr_config.mbuf_high_water_jumbo =
14953 DEFAULT_MB_HIGH_WATER_JUMBO;
14954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014955
14956 tp->bufmgr_config.dma_low_water = DEFAULT_DMA_LOW_WATER;
14957 tp->bufmgr_config.dma_high_water = DEFAULT_DMA_HIGH_WATER;
14958}
14959
14960static char * __devinit tg3_phy_string(struct tg3 *tp)
14961{
Matt Carlson79eb6902010-02-17 15:17:03 +000014962 switch (tp->phy_id & TG3_PHY_ID_MASK) {
14963 case TG3_PHY_ID_BCM5400: return "5400";
14964 case TG3_PHY_ID_BCM5401: return "5401";
14965 case TG3_PHY_ID_BCM5411: return "5411";
14966 case TG3_PHY_ID_BCM5701: return "5701";
14967 case TG3_PHY_ID_BCM5703: return "5703";
14968 case TG3_PHY_ID_BCM5704: return "5704";
14969 case TG3_PHY_ID_BCM5705: return "5705";
14970 case TG3_PHY_ID_BCM5750: return "5750";
14971 case TG3_PHY_ID_BCM5752: return "5752";
14972 case TG3_PHY_ID_BCM5714: return "5714";
14973 case TG3_PHY_ID_BCM5780: return "5780";
14974 case TG3_PHY_ID_BCM5755: return "5755";
14975 case TG3_PHY_ID_BCM5787: return "5787";
14976 case TG3_PHY_ID_BCM5784: return "5784";
14977 case TG3_PHY_ID_BCM5756: return "5722/5756";
14978 case TG3_PHY_ID_BCM5906: return "5906";
14979 case TG3_PHY_ID_BCM5761: return "5761";
14980 case TG3_PHY_ID_BCM5718C: return "5718C";
14981 case TG3_PHY_ID_BCM5718S: return "5718S";
14982 case TG3_PHY_ID_BCM57765: return "57765";
Matt Carlson302b5002010-06-05 17:24:38 +000014983 case TG3_PHY_ID_BCM5719C: return "5719C";
Matt Carlson6418f2c2011-04-05 14:22:49 +000014984 case TG3_PHY_ID_BCM5720C: return "5720C";
Matt Carlson79eb6902010-02-17 15:17:03 +000014985 case TG3_PHY_ID_BCM8002: return "8002/serdes";
Linus Torvalds1da177e2005-04-16 15:20:36 -070014986 case 0: return "serdes";
14987 default: return "unknown";
Stephen Hemminger855e1112008-04-16 16:37:28 -070014988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070014989}
14990
Michael Chanf9804dd2005-09-27 12:13:10 -070014991static char * __devinit tg3_bus_string(struct tg3 *tp, char *str)
14992{
Joe Perches63c3a662011-04-26 08:12:10 +000014993 if (tg3_flag(tp, PCI_EXPRESS)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014994 strcpy(str, "PCI Express");
14995 return str;
Joe Perches63c3a662011-04-26 08:12:10 +000014996 } else if (tg3_flag(tp, PCIX_MODE)) {
Michael Chanf9804dd2005-09-27 12:13:10 -070014997 u32 clock_ctrl = tr32(TG3PCI_CLOCK_CTRL) & 0x1f;
14998
14999 strcpy(str, "PCIX:");
15000
15001 if ((clock_ctrl == 7) ||
15002 ((tr32(GRC_MISC_CFG) & GRC_MISC_CFG_BOARD_ID_MASK) ==
15003 GRC_MISC_CFG_BOARD_ID_5704CIOBE))
15004 strcat(str, "133MHz");
15005 else if (clock_ctrl == 0)
15006 strcat(str, "33MHz");
15007 else if (clock_ctrl == 2)
15008 strcat(str, "50MHz");
15009 else if (clock_ctrl == 4)
15010 strcat(str, "66MHz");
15011 else if (clock_ctrl == 6)
15012 strcat(str, "100MHz");
Michael Chanf9804dd2005-09-27 12:13:10 -070015013 } else {
15014 strcpy(str, "PCI:");
Joe Perches63c3a662011-04-26 08:12:10 +000015015 if (tg3_flag(tp, PCI_HIGH_SPEED))
Michael Chanf9804dd2005-09-27 12:13:10 -070015016 strcat(str, "66MHz");
15017 else
15018 strcat(str, "33MHz");
15019 }
Joe Perches63c3a662011-04-26 08:12:10 +000015020 if (tg3_flag(tp, PCI_32BIT))
Michael Chanf9804dd2005-09-27 12:13:10 -070015021 strcat(str, ":32-bit");
15022 else
15023 strcat(str, ":64-bit");
15024 return str;
15025}
15026
Michael Chan8c2dc7e2005-12-19 16:26:02 -080015027static struct pci_dev * __devinit tg3_find_peer(struct tg3 *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015028{
15029 struct pci_dev *peer;
15030 unsigned int func, devnr = tp->pdev->devfn & ~7;
15031
15032 for (func = 0; func < 8; func++) {
15033 peer = pci_get_slot(tp->pdev->bus, devnr | func);
15034 if (peer && peer != tp->pdev)
15035 break;
15036 pci_dev_put(peer);
15037 }
Michael Chan16fe9d72005-12-13 21:09:54 -080015038 /* 5704 can be configured in single-port mode, set peer to
15039 * tp->pdev in that case.
15040 */
15041 if (!peer) {
15042 peer = tp->pdev;
15043 return peer;
15044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015045
15046 /*
15047 * We don't need to keep the refcount elevated; there's no way
15048 * to remove one half of this device without removing the other
15049 */
15050 pci_dev_put(peer);
15051
15052 return peer;
15053}
15054
David S. Miller15f98502005-05-18 22:49:26 -070015055static void __devinit tg3_init_coal(struct tg3 *tp)
15056{
15057 struct ethtool_coalesce *ec = &tp->coal;
15058
15059 memset(ec, 0, sizeof(*ec));
15060 ec->cmd = ETHTOOL_GCOALESCE;
15061 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS;
15062 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS;
15063 ec->rx_max_coalesced_frames = LOW_RXMAX_FRAMES;
15064 ec->tx_max_coalesced_frames = LOW_TXMAX_FRAMES;
15065 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT;
15066 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT;
15067 ec->rx_max_coalesced_frames_irq = DEFAULT_RXCOAL_MAXF_INT;
15068 ec->tx_max_coalesced_frames_irq = DEFAULT_TXCOAL_MAXF_INT;
15069 ec->stats_block_coalesce_usecs = DEFAULT_STAT_COAL_TICKS;
15070
15071 if (tp->coalesce_mode & (HOSTCC_MODE_CLRTICK_RXBD |
15072 HOSTCC_MODE_CLRTICK_TXBD)) {
15073 ec->rx_coalesce_usecs = LOW_RXCOL_TICKS_CLRTCKS;
15074 ec->rx_coalesce_usecs_irq = DEFAULT_RXCOAL_TICK_INT_CLRTCKS;
15075 ec->tx_coalesce_usecs = LOW_TXCOL_TICKS_CLRTCKS;
15076 ec->tx_coalesce_usecs_irq = DEFAULT_TXCOAL_TICK_INT_CLRTCKS;
15077 }
Michael Chand244c892005-07-05 14:42:33 -070015078
Joe Perches63c3a662011-04-26 08:12:10 +000015079 if (tg3_flag(tp, 5705_PLUS)) {
Michael Chand244c892005-07-05 14:42:33 -070015080 ec->rx_coalesce_usecs_irq = 0;
15081 ec->tx_coalesce_usecs_irq = 0;
15082 ec->stats_block_coalesce_usecs = 0;
15083 }
David S. Miller15f98502005-05-18 22:49:26 -070015084}
15085
Stephen Hemminger7c7d64b2008-11-19 22:25:36 -080015086static const struct net_device_ops tg3_netdev_ops = {
15087 .ndo_open = tg3_open,
15088 .ndo_stop = tg3_close,
Stephen Hemminger00829822008-11-20 20:14:53 -080015089 .ndo_start_xmit = tg3_start_xmit,
Eric Dumazet511d2222010-07-07 20:44:24 +000015090 .ndo_get_stats64 = tg3_get_stats64,
Stephen Hemminger00829822008-11-20 20:14:53 -080015091 .ndo_validate_addr = eth_validate_addr,
15092 .ndo_set_multicast_list = tg3_set_rx_mode,
15093 .ndo_set_mac_address = tg3_set_mac_addr,
15094 .ndo_do_ioctl = tg3_ioctl,
15095 .ndo_tx_timeout = tg3_tx_timeout,
15096 .ndo_change_mtu = tg3_change_mtu,
Michał Mirosławdc668912011-04-07 03:35:07 +000015097 .ndo_fix_features = tg3_fix_features,
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015098 .ndo_set_features = tg3_set_features,
Stephen Hemminger00829822008-11-20 20:14:53 -080015099#ifdef CONFIG_NET_POLL_CONTROLLER
15100 .ndo_poll_controller = tg3_poll_controller,
15101#endif
15102};
15103
Linus Torvalds1da177e2005-04-16 15:20:36 -070015104static int __devinit tg3_init_one(struct pci_dev *pdev,
15105 const struct pci_device_id *ent)
15106{
Linus Torvalds1da177e2005-04-16 15:20:36 -070015107 struct net_device *dev;
15108 struct tg3 *tp;
Matt Carlson646c9ed2009-09-01 12:58:41 +000015109 int i, err, pm_cap;
15110 u32 sndmbx, rcvmbx, intmbx;
Michael Chanf9804dd2005-09-27 12:13:10 -070015111 char str[40];
Michael Chan72f2afb2006-03-06 19:28:35 -080015112 u64 dma_mask, persist_dma_mask;
Matt Carlson0da06062011-05-19 12:12:53 +000015113 u32 features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015114
Joe Perches05dbe002010-02-17 19:44:19 +000015115 printk_once(KERN_INFO "%s\n", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015116
15117 err = pci_enable_device(pdev);
15118 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015119 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015120 return err;
15121 }
15122
Linus Torvalds1da177e2005-04-16 15:20:36 -070015123 err = pci_request_regions(pdev, DRV_MODULE_NAME);
15124 if (err) {
Matt Carlson2445e462010-04-05 10:19:21 +000015125 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015126 goto err_out_disable_pdev;
15127 }
15128
15129 pci_set_master(pdev);
15130
15131 /* Find power-management capability. */
15132 pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
15133 if (pm_cap == 0) {
Matt Carlson2445e462010-04-05 10:19:21 +000015134 dev_err(&pdev->dev,
15135 "Cannot find Power Management capability, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015136 err = -EIO;
15137 goto err_out_free_res;
15138 }
15139
Matt Carlson16821282011-07-13 09:27:28 +000015140 err = pci_set_power_state(pdev, PCI_D0);
15141 if (err) {
15142 dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
15143 goto err_out_free_res;
15144 }
15145
Matt Carlsonfe5f5782009-09-01 13:09:39 +000015146 dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015147 if (!dev) {
Matt Carlson2445e462010-04-05 10:19:21 +000015148 dev_err(&pdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015149 err = -ENOMEM;
Matt Carlson16821282011-07-13 09:27:28 +000015150 goto err_out_power_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015151 }
15152
Linus Torvalds1da177e2005-04-16 15:20:36 -070015153 SET_NETDEV_DEV(dev, &pdev->dev);
15154
Linus Torvalds1da177e2005-04-16 15:20:36 -070015155 tp = netdev_priv(dev);
15156 tp->pdev = pdev;
15157 tp->dev = dev;
15158 tp->pm_cap = pm_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015159 tp->rx_mode = TG3_DEF_RX_MODE;
15160 tp->tx_mode = TG3_DEF_TX_MODE;
Matt Carlson8ef21422008-05-02 16:47:53 -070015161
Linus Torvalds1da177e2005-04-16 15:20:36 -070015162 if (tg3_debug > 0)
15163 tp->msg_enable = tg3_debug;
15164 else
15165 tp->msg_enable = TG3_DEF_MSG_ENABLE;
15166
15167 /* The word/byte swap controls here control register access byte
15168 * swapping. DMA data byte swapping is controlled in the GRC_MODE
15169 * setting below.
15170 */
15171 tp->misc_host_ctrl =
15172 MISC_HOST_CTRL_MASK_PCI_INT |
15173 MISC_HOST_CTRL_WORD_SWAP |
15174 MISC_HOST_CTRL_INDIR_ACCESS |
15175 MISC_HOST_CTRL_PCISTATE_RW;
15176
15177 /* The NONFRM (non-frame) byte/word swap controls take effect
15178 * on descriptor entries, anything which isn't packet data.
15179 *
15180 * The StrongARM chips on the board (one for tx, one for rx)
15181 * are running in big-endian mode.
15182 */
15183 tp->grc_mode = (GRC_MODE_WSWAP_DATA | GRC_MODE_BSWAP_DATA |
15184 GRC_MODE_WSWAP_NONFRM_DATA);
15185#ifdef __BIG_ENDIAN
15186 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
15187#endif
15188 spin_lock_init(&tp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015189 spin_lock_init(&tp->indirect_lock);
David Howellsc4028952006-11-22 14:57:56 +000015190 INIT_WORK(&tp->reset_task, tg3_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015191
Matt Carlsond5fe4882008-11-21 17:20:32 -080015192 tp->regs = pci_ioremap_bar(pdev, BAR_0);
Andy Gospodarekab0049b2007-09-06 20:42:14 +010015193 if (!tp->regs) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015194 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070015195 err = -ENOMEM;
15196 goto err_out_free_dev;
15197 }
15198
Matt Carlsonc9cab242011-07-13 09:27:27 +000015199 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||
15200 tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761E ||
15201 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761S ||
15202 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5761SE ||
15203 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5717 ||
15204 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5718 ||
15205 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5719 ||
15206 tp->pdev->device == TG3PCI_DEVICE_TIGON3_5720) {
15207 tg3_flag_set(tp, ENABLE_APE);
15208 tp->aperegs = pci_ioremap_bar(pdev, BAR_2);
15209 if (!tp->aperegs) {
15210 dev_err(&pdev->dev,
15211 "Cannot map APE registers, aborting\n");
15212 err = -ENOMEM;
15213 goto err_out_iounmap;
15214 }
15215 }
15216
Linus Torvalds1da177e2005-04-16 15:20:36 -070015217 tp->rx_pending = TG3_DEF_RX_RING_PENDING;
15218 tp->rx_jumbo_pending = TG3_DEF_RX_JUMBO_RING_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015219
Linus Torvalds1da177e2005-04-16 15:20:36 -070015220 dev->ethtool_ops = &tg3_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015221 dev->watchdog_timeo = TG3_TX_TIMEOUT;
Matt Carlson2ffcc982011-05-19 12:12:44 +000015222 dev->netdev_ops = &tg3_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015223 dev->irq = pdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015224
15225 err = tg3_get_invariants(tp);
15226 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015227 dev_err(&pdev->dev,
15228 "Problem fetching invariants of chip, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015229 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015230 }
15231
Michael Chan4a29cc22006-03-19 13:21:12 -080015232 /* The EPB bridge inside 5714, 5715, and 5780 and any
15233 * device behind the EPB cannot support DMA addresses > 40-bit.
Michael Chan72f2afb2006-03-06 19:28:35 -080015234 * On 64-bit systems with IOMMU, use 40-bit dma_mask.
15235 * On 64-bit systems without IOMMU, use 64-bit dma_mask and
15236 * do DMA address check in tg3_start_xmit().
15237 */
Joe Perches63c3a662011-04-26 08:12:10 +000015238 if (tg3_flag(tp, IS_5788))
Yang Hongyang284901a2009-04-06 19:01:15 -070015239 persist_dma_mask = dma_mask = DMA_BIT_MASK(32);
Joe Perches63c3a662011-04-26 08:12:10 +000015240 else if (tg3_flag(tp, 40BIT_DMA_BUG)) {
Yang Hongyang50cf1562009-04-06 19:01:14 -070015241 persist_dma_mask = dma_mask = DMA_BIT_MASK(40);
Michael Chan72f2afb2006-03-06 19:28:35 -080015242#ifdef CONFIG_HIGHMEM
Yang Hongyang6a355282009-04-06 19:01:13 -070015243 dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015244#endif
Michael Chan4a29cc22006-03-19 13:21:12 -080015245 } else
Yang Hongyang6a355282009-04-06 19:01:13 -070015246 persist_dma_mask = dma_mask = DMA_BIT_MASK(64);
Michael Chan72f2afb2006-03-06 19:28:35 -080015247
15248 /* Configure DMA attributes. */
Yang Hongyang284901a2009-04-06 19:01:15 -070015249 if (dma_mask > DMA_BIT_MASK(32)) {
Michael Chan72f2afb2006-03-06 19:28:35 -080015250 err = pci_set_dma_mask(pdev, dma_mask);
15251 if (!err) {
Matt Carlson0da06062011-05-19 12:12:53 +000015252 features |= NETIF_F_HIGHDMA;
Michael Chan72f2afb2006-03-06 19:28:35 -080015253 err = pci_set_consistent_dma_mask(pdev,
15254 persist_dma_mask);
15255 if (err < 0) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015256 dev_err(&pdev->dev, "Unable to obtain 64 bit "
15257 "DMA for consistent allocations\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015258 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015259 }
15260 }
15261 }
Yang Hongyang284901a2009-04-06 19:01:15 -070015262 if (err || dma_mask == DMA_BIT_MASK(32)) {
15263 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Michael Chan72f2afb2006-03-06 19:28:35 -080015264 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015265 dev_err(&pdev->dev,
15266 "No usable DMA configuration, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015267 goto err_out_apeunmap;
Michael Chan72f2afb2006-03-06 19:28:35 -080015268 }
15269 }
15270
Michael Chanfdfec1722005-07-25 12:31:48 -070015271 tg3_init_bufmgr_config(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015272
Matt Carlson0da06062011-05-19 12:12:53 +000015273 features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
15274
15275 /* 5700 B0 chips do not support checksumming correctly due
15276 * to hardware bugs.
15277 */
15278 if (tp->pci_chip_rev_id != CHIPREV_ID_5700_B0) {
15279 features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
15280
15281 if (tg3_flag(tp, 5755_PLUS))
15282 features |= NETIF_F_IPV6_CSUM;
15283 }
15284
Michael Chan4e3a7aa2006-03-20 17:47:44 -080015285 /* TSO is on by default on chips that support hardware TSO.
15286 * Firmware TSO on older chips gives lower performance, so it
15287 * is off by default, but can be enabled using ethtool.
15288 */
Joe Perches63c3a662011-04-26 08:12:10 +000015289 if ((tg3_flag(tp, HW_TSO_1) ||
15290 tg3_flag(tp, HW_TSO_2) ||
15291 tg3_flag(tp, HW_TSO_3)) &&
Matt Carlson0da06062011-05-19 12:12:53 +000015292 (features & NETIF_F_IP_CSUM))
15293 features |= NETIF_F_TSO;
Joe Perches63c3a662011-04-26 08:12:10 +000015294 if (tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3)) {
Matt Carlson0da06062011-05-19 12:12:53 +000015295 if (features & NETIF_F_IPV6_CSUM)
15296 features |= NETIF_F_TSO6;
Joe Perches63c3a662011-04-26 08:12:10 +000015297 if (tg3_flag(tp, HW_TSO_3) ||
Matt Carlsone849cdc2009-11-13 13:03:38 +000015298 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5761 ||
Matt Carlson57e69832008-05-25 23:48:31 -070015299 (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5784 &&
15300 GET_CHIP_REV(tp->pci_chip_rev_id) != CHIPREV_5784_AX) ||
Joe Perches63c3a662011-04-26 08:12:10 +000015301 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5785 ||
Michał Mirosławdc668912011-04-07 03:35:07 +000015302 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780)
Matt Carlson0da06062011-05-19 12:12:53 +000015303 features |= NETIF_F_TSO_ECN;
Michael Chanb0026622006-07-03 19:42:14 -070015304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015305
Matt Carlsond542fe22011-05-19 16:02:43 +000015306 dev->features |= features;
15307 dev->vlan_features |= features;
15308
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015309 /*
15310 * Add loopback capability only for a subset of devices that support
15311 * MAC-LOOPBACK. Eventually this need to be enhanced to allow INT-PHY
15312 * loopback for the remaining devices.
15313 */
15314 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5780 &&
15315 !tg3_flag(tp, CPMU_PRESENT))
15316 /* Add the loopback capability */
Matt Carlson0da06062011-05-19 12:12:53 +000015317 features |= NETIF_F_LOOPBACK;
15318
Matt Carlson0da06062011-05-19 12:12:53 +000015319 dev->hw_features |= features;
Mahesh Bandewar06c03c02011-05-08 06:51:48 +000015320
Linus Torvalds1da177e2005-04-16 15:20:36 -070015321 if (tp->pci_chip_rev_id == CHIPREV_ID_5705_A1 &&
Joe Perches63c3a662011-04-26 08:12:10 +000015322 !tg3_flag(tp, TSO_CAPABLE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070015323 !(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH)) {
Joe Perches63c3a662011-04-26 08:12:10 +000015324 tg3_flag_set(tp, MAX_RXPEND_64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015325 tp->rx_pending = 63;
15326 }
15327
Linus Torvalds1da177e2005-04-16 15:20:36 -070015328 err = tg3_get_device_address(tp);
15329 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015330 dev_err(&pdev->dev,
15331 "Could not obtain valid ethernet address, aborting\n");
Matt Carlsonc9cab242011-07-13 09:27:27 +000015332 goto err_out_apeunmap;
Matt Carlson0d3031d2007-10-10 18:02:43 -070015333 }
15334
Matt Carlsonc88864d2007-11-12 21:07:01 -080015335 /*
15336 * Reset chip in case UNDI or EFI driver did not shutdown
15337 * DMA self test will enable WDMAC and we'll see (spurious)
15338 * pending DMA on the PCI bus at that point.
15339 */
15340 if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
15341 (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
15342 tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
15343 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
15344 }
15345
15346 err = tg3_test_dma(tp);
15347 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015348 dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
Matt Carlsonc88864d2007-11-12 21:07:01 -080015349 goto err_out_apeunmap;
15350 }
15351
Matt Carlson78f90dc2009-11-13 13:03:42 +000015352 intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
15353 rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
15354 sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
Matt Carlson6fd45cb2010-09-15 08:59:57 +000015355 for (i = 0; i < tp->irq_max; i++) {
Matt Carlson78f90dc2009-11-13 13:03:42 +000015356 struct tg3_napi *tnapi = &tp->napi[i];
15357
15358 tnapi->tp = tp;
15359 tnapi->tx_pending = TG3_DEF_TX_RING_PENDING;
15360
15361 tnapi->int_mbox = intmbx;
15362 if (i < 4)
15363 intmbx += 0x8;
15364 else
15365 intmbx += 0x4;
15366
15367 tnapi->consmbox = rcvmbx;
15368 tnapi->prodmbox = sndmbx;
15369
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015370 if (i)
Matt Carlson78f90dc2009-11-13 13:03:42 +000015371 tnapi->coal_now = HOSTCC_MODE_COAL_VEC1_NOW << (i - 1);
Matt Carlson66cfd1b2010-09-30 10:34:30 +000015372 else
Matt Carlson78f90dc2009-11-13 13:03:42 +000015373 tnapi->coal_now = HOSTCC_MODE_NOW;
Matt Carlson78f90dc2009-11-13 13:03:42 +000015374
Joe Perches63c3a662011-04-26 08:12:10 +000015375 if (!tg3_flag(tp, SUPPORT_MSIX))
Matt Carlson78f90dc2009-11-13 13:03:42 +000015376 break;
15377
15378 /*
15379 * If we support MSIX, we'll be using RSS. If we're using
15380 * RSS, the first vector only handles link interrupts and the
15381 * remaining vectors handle rx and tx interrupts. Reuse the
15382 * mailbox values for the next iteration. The values we setup
15383 * above are still useful for the single vectored mode.
15384 */
15385 if (!i)
15386 continue;
15387
15388 rcvmbx += 0x8;
15389
15390 if (sndmbx & 0x4)
15391 sndmbx -= 0x4;
15392 else
15393 sndmbx += 0xc;
15394 }
15395
Matt Carlsonc88864d2007-11-12 21:07:01 -080015396 tg3_init_coal(tp);
15397
Michael Chanc49a1562006-12-17 17:07:29 -080015398 pci_set_drvdata(pdev, dev);
15399
Matt Carlsoncd0d7222011-07-13 09:27:33 +000015400 if (tg3_flag(tp, 5717_PLUS)) {
15401 /* Resume a low-power mode */
15402 tg3_frob_aux_power(tp, false);
15403 }
15404
Linus Torvalds1da177e2005-04-16 15:20:36 -070015405 err = register_netdev(dev);
15406 if (err) {
Matt Carlsonab96b242010-04-05 10:19:22 +000015407 dev_err(&pdev->dev, "Cannot register net device, aborting\n");
Matt Carlson0d3031d2007-10-10 18:02:43 -070015408 goto err_out_apeunmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015409 }
15410
Joe Perches05dbe002010-02-17 19:44:19 +000015411 netdev_info(dev, "Tigon3 [partno(%s) rev %04x] (%s) MAC address %pM\n",
15412 tp->board_part_number,
15413 tp->pci_chip_rev_id,
15414 tg3_bus_string(tp, str),
15415 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015416
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015417 if (tp->phy_flags & TG3_PHYFLG_IS_CONNECTED) {
Matt Carlson3f0e3ad2009-11-02 14:24:36 +000015418 struct phy_device *phydev;
15419 phydev = tp->mdio_bus->phy_map[TG3_PHY_MII_ADDR];
Matt Carlson5129c3a2010-04-05 10:19:23 +000015420 netdev_info(dev,
15421 "attached PHY driver [%s] (mii_bus:phy_addr=%s)\n",
Joe Perches05dbe002010-02-17 19:44:19 +000015422 phydev->drv->name, dev_name(&phydev->dev));
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015423 } else {
15424 char *ethtype;
15425
15426 if (tp->phy_flags & TG3_PHYFLG_10_100_ONLY)
15427 ethtype = "10/100Base-TX";
15428 else if (tp->phy_flags & TG3_PHYFLG_ANY_SERDES)
15429 ethtype = "1000Base-SX";
15430 else
15431 ethtype = "10/100/1000Base-T";
15432
Matt Carlson5129c3a2010-04-05 10:19:23 +000015433 netdev_info(dev, "attached PHY is %s (%s Ethernet) "
Matt Carlson47007832011-04-20 07:57:43 +000015434 "(WireSpeed[%d], EEE[%d])\n",
15435 tg3_phy_string(tp), ethtype,
15436 (tp->phy_flags & TG3_PHYFLG_NO_ETH_WIRE_SPEED) == 0,
15437 (tp->phy_flags & TG3_PHYFLG_EEE_CAP) != 0);
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015438 }
Matt Carlsondf59c942008-11-03 16:52:56 -080015439
Joe Perches05dbe002010-02-17 19:44:19 +000015440 netdev_info(dev, "RXcsums[%d] LinkChgREG[%d] MIirq[%d] ASF[%d] TSOcap[%d]\n",
Michał Mirosławdc668912011-04-07 03:35:07 +000015441 (dev->features & NETIF_F_RXCSUM) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015442 tg3_flag(tp, USE_LINKCHG_REG) != 0,
Matt Carlsonf07e9af2010-08-02 11:26:07 +000015443 (tp->phy_flags & TG3_PHYFLG_USE_MI_INTERRUPT) != 0,
Joe Perches63c3a662011-04-26 08:12:10 +000015444 tg3_flag(tp, ENABLE_ASF) != 0,
15445 tg3_flag(tp, TSO_CAPABLE) != 0);
Joe Perches05dbe002010-02-17 19:44:19 +000015446 netdev_info(dev, "dma_rwctrl[%08x] dma_mask[%d-bit]\n",
15447 tp->dma_rwctrl,
15448 pdev->dma_mask == DMA_BIT_MASK(32) ? 32 :
15449 ((u64)pdev->dma_mask) == DMA_BIT_MASK(40) ? 40 : 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015450
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015451 pci_save_state(pdev);
15452
Linus Torvalds1da177e2005-04-16 15:20:36 -070015453 return 0;
15454
Matt Carlson0d3031d2007-10-10 18:02:43 -070015455err_out_apeunmap:
15456 if (tp->aperegs) {
15457 iounmap(tp->aperegs);
15458 tp->aperegs = NULL;
15459 }
15460
Linus Torvalds1da177e2005-04-16 15:20:36 -070015461err_out_iounmap:
Michael Chan68929142005-08-09 20:17:14 -070015462 if (tp->regs) {
15463 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015464 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015466
15467err_out_free_dev:
15468 free_netdev(dev);
15469
Matt Carlson16821282011-07-13 09:27:28 +000015470err_out_power_down:
15471 pci_set_power_state(pdev, PCI_D3hot);
15472
Linus Torvalds1da177e2005-04-16 15:20:36 -070015473err_out_free_res:
15474 pci_release_regions(pdev);
15475
15476err_out_disable_pdev:
15477 pci_disable_device(pdev);
15478 pci_set_drvdata(pdev, NULL);
15479 return err;
15480}
15481
15482static void __devexit tg3_remove_one(struct pci_dev *pdev)
15483{
15484 struct net_device *dev = pci_get_drvdata(pdev);
15485
15486 if (dev) {
15487 struct tg3 *tp = netdev_priv(dev);
15488
Jaswinder Singh Rajput077f8492009-01-04 16:11:25 -080015489 if (tp->fw)
15490 release_firmware(tp->fw);
15491
Tejun Heo23f333a2010-12-12 16:45:14 +010015492 cancel_work_sync(&tp->reset_task);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015493
Joe Perches63c3a662011-04-26 08:12:10 +000015494 if (!tg3_flag(tp, USE_PHYLIB)) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015495 tg3_phy_fini(tp);
Matt Carlson158d7ab2008-05-29 01:37:54 -070015496 tg3_mdio_fini(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015497 }
Matt Carlson158d7ab2008-05-29 01:37:54 -070015498
Linus Torvalds1da177e2005-04-16 15:20:36 -070015499 unregister_netdev(dev);
Matt Carlson0d3031d2007-10-10 18:02:43 -070015500 if (tp->aperegs) {
15501 iounmap(tp->aperegs);
15502 tp->aperegs = NULL;
15503 }
Michael Chan68929142005-08-09 20:17:14 -070015504 if (tp->regs) {
15505 iounmap(tp->regs);
Peter Hagervall22abe312005-09-16 17:01:03 -070015506 tp->regs = NULL;
Michael Chan68929142005-08-09 20:17:14 -070015507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070015508 free_netdev(dev);
15509 pci_release_regions(pdev);
15510 pci_disable_device(pdev);
15511 pci_set_drvdata(pdev, NULL);
15512 }
15513}
15514
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015515#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015516static int tg3_suspend(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015517{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015518 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015519 struct net_device *dev = pci_get_drvdata(pdev);
15520 struct tg3 *tp = netdev_priv(dev);
15521 int err;
15522
15523 if (!netif_running(dev))
15524 return 0;
15525
Tejun Heo23f333a2010-12-12 16:45:14 +010015526 flush_work_sync(&tp->reset_task);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015527 tg3_phy_stop(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015528 tg3_netif_stop(tp);
15529
15530 del_timer_sync(&tp->timer);
15531
David S. Millerf47c11e2005-06-24 20:18:35 -070015532 tg3_full_lock(tp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015533 tg3_disable_ints(tp);
David S. Millerf47c11e2005-06-24 20:18:35 -070015534 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015535
15536 netif_device_detach(dev);
15537
David S. Millerf47c11e2005-06-24 20:18:35 -070015538 tg3_full_lock(tp, 0);
Michael Chan944d9802005-05-29 14:57:48 -070015539 tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
Joe Perches63c3a662011-04-26 08:12:10 +000015540 tg3_flag_clear(tp, INIT_COMPLETE);
David S. Millerf47c11e2005-06-24 20:18:35 -070015541 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015542
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015543 err = tg3_power_down_prepare(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015544 if (err) {
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015545 int err2;
15546
David S. Millerf47c11e2005-06-24 20:18:35 -070015547 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015548
Joe Perches63c3a662011-04-26 08:12:10 +000015549 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015550 err2 = tg3_restart_hw(tp, 1);
15551 if (err2)
Michael Chanb9ec6c12006-07-25 16:37:27 -070015552 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015553
15554 tp->timer.expires = jiffies + tp->timer_offset;
15555 add_timer(&tp->timer);
15556
15557 netif_device_attach(dev);
15558 tg3_netif_start(tp);
15559
Michael Chanb9ec6c12006-07-25 16:37:27 -070015560out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015561 tg3_full_unlock(tp);
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015562
15563 if (!err2)
15564 tg3_phy_start(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015565 }
15566
15567 return err;
15568}
15569
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015570static int tg3_resume(struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015571{
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015572 struct pci_dev *pdev = to_pci_dev(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015573 struct net_device *dev = pci_get_drvdata(pdev);
15574 struct tg3 *tp = netdev_priv(dev);
15575 int err;
15576
15577 if (!netif_running(dev))
15578 return 0;
15579
Linus Torvalds1da177e2005-04-16 15:20:36 -070015580 netif_device_attach(dev);
15581
David S. Millerf47c11e2005-06-24 20:18:35 -070015582 tg3_full_lock(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015583
Joe Perches63c3a662011-04-26 08:12:10 +000015584 tg3_flag_set(tp, INIT_COMPLETE);
Michael Chanb9ec6c12006-07-25 16:37:27 -070015585 err = tg3_restart_hw(tp, 1);
15586 if (err)
15587 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015588
15589 tp->timer.expires = jiffies + tp->timer_offset;
15590 add_timer(&tp->timer);
15591
Linus Torvalds1da177e2005-04-16 15:20:36 -070015592 tg3_netif_start(tp);
15593
Michael Chanb9ec6c12006-07-25 16:37:27 -070015594out:
David S. Millerf47c11e2005-06-24 20:18:35 -070015595 tg3_full_unlock(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015596
Matt Carlsonb02fd9e2008-05-25 23:47:41 -070015597 if (!err)
15598 tg3_phy_start(tp);
15599
Michael Chanb9ec6c12006-07-25 16:37:27 -070015600 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015601}
15602
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015603static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015604#define TG3_PM_OPS (&tg3_pm_ops)
15605
15606#else
15607
15608#define TG3_PM_OPS NULL
15609
15610#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockic866b7e2010-12-25 12:56:23 +000015611
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015612/**
15613 * tg3_io_error_detected - called when PCI error is detected
15614 * @pdev: Pointer to PCI device
15615 * @state: The current pci connection state
15616 *
15617 * This function is called after a PCI bus error affecting
15618 * this device has been detected.
15619 */
15620static pci_ers_result_t tg3_io_error_detected(struct pci_dev *pdev,
15621 pci_channel_state_t state)
15622{
15623 struct net_device *netdev = pci_get_drvdata(pdev);
15624 struct tg3 *tp = netdev_priv(netdev);
15625 pci_ers_result_t err = PCI_ERS_RESULT_NEED_RESET;
15626
15627 netdev_info(netdev, "PCI I/O error detected\n");
15628
15629 rtnl_lock();
15630
15631 if (!netif_running(netdev))
15632 goto done;
15633
15634 tg3_phy_stop(tp);
15635
15636 tg3_netif_stop(tp);
15637
15638 del_timer_sync(&tp->timer);
Joe Perches63c3a662011-04-26 08:12:10 +000015639 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015640
15641 /* Want to make sure that the reset task doesn't run */
15642 cancel_work_sync(&tp->reset_task);
Joe Perches63c3a662011-04-26 08:12:10 +000015643 tg3_flag_clear(tp, TX_RECOVERY_PENDING);
15644 tg3_flag_clear(tp, RESTART_TIMER);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015645
15646 netif_device_detach(netdev);
15647
15648 /* Clean up software state, even if MMIO is blocked */
15649 tg3_full_lock(tp, 0);
15650 tg3_halt(tp, RESET_KIND_SHUTDOWN, 0);
15651 tg3_full_unlock(tp);
15652
15653done:
15654 if (state == pci_channel_io_perm_failure)
15655 err = PCI_ERS_RESULT_DISCONNECT;
15656 else
15657 pci_disable_device(pdev);
15658
15659 rtnl_unlock();
15660
15661 return err;
15662}
15663
15664/**
15665 * tg3_io_slot_reset - called after the pci bus has been reset.
15666 * @pdev: Pointer to PCI device
15667 *
15668 * Restart the card from scratch, as if from a cold-boot.
15669 * At this point, the card has exprienced a hard reset,
15670 * followed by fixups by BIOS, and has its config space
15671 * set up identically to what it was at cold boot.
15672 */
15673static pci_ers_result_t tg3_io_slot_reset(struct pci_dev *pdev)
15674{
15675 struct net_device *netdev = pci_get_drvdata(pdev);
15676 struct tg3 *tp = netdev_priv(netdev);
15677 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15678 int err;
15679
15680 rtnl_lock();
15681
15682 if (pci_enable_device(pdev)) {
15683 netdev_err(netdev, "Cannot re-enable PCI device after reset.\n");
15684 goto done;
15685 }
15686
15687 pci_set_master(pdev);
15688 pci_restore_state(pdev);
15689 pci_save_state(pdev);
15690
15691 if (!netif_running(netdev)) {
15692 rc = PCI_ERS_RESULT_RECOVERED;
15693 goto done;
15694 }
15695
15696 err = tg3_power_up(tp);
Matt Carlsonbed98292011-07-13 09:27:29 +000015697 if (err)
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015698 goto done;
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015699
15700 rc = PCI_ERS_RESULT_RECOVERED;
15701
15702done:
15703 rtnl_unlock();
15704
15705 return rc;
15706}
15707
15708/**
15709 * tg3_io_resume - called when traffic can start flowing again.
15710 * @pdev: Pointer to PCI device
15711 *
15712 * This callback is called when the error recovery driver tells
15713 * us that its OK to resume normal operation.
15714 */
15715static void tg3_io_resume(struct pci_dev *pdev)
15716{
15717 struct net_device *netdev = pci_get_drvdata(pdev);
15718 struct tg3 *tp = netdev_priv(netdev);
15719 int err;
15720
15721 rtnl_lock();
15722
15723 if (!netif_running(netdev))
15724 goto done;
15725
15726 tg3_full_lock(tp, 0);
Joe Perches63c3a662011-04-26 08:12:10 +000015727 tg3_flag_set(tp, INIT_COMPLETE);
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015728 err = tg3_restart_hw(tp, 1);
15729 tg3_full_unlock(tp);
15730 if (err) {
15731 netdev_err(netdev, "Cannot restart hardware after reset.\n");
15732 goto done;
15733 }
15734
15735 netif_device_attach(netdev);
15736
15737 tp->timer.expires = jiffies + tp->timer_offset;
15738 add_timer(&tp->timer);
15739
15740 tg3_netif_start(tp);
15741
15742 tg3_phy_start(tp);
15743
15744done:
15745 rtnl_unlock();
15746}
15747
15748static struct pci_error_handlers tg3_err_handler = {
15749 .error_detected = tg3_io_error_detected,
15750 .slot_reset = tg3_io_slot_reset,
15751 .resume = tg3_io_resume
15752};
15753
Linus Torvalds1da177e2005-04-16 15:20:36 -070015754static struct pci_driver tg3_driver = {
15755 .name = DRV_MODULE_NAME,
15756 .id_table = tg3_pci_tbl,
15757 .probe = tg3_init_one,
15758 .remove = __devexit_p(tg3_remove_one),
Matt Carlsonb45aa2f2011-04-25 12:42:48 +000015759 .err_handler = &tg3_err_handler,
Eric Dumazetaa6027c2011-01-01 05:22:46 +000015760 .driver.pm = TG3_PM_OPS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015761};
15762
15763static int __init tg3_init(void)
15764{
Jeff Garzik29917622006-08-19 17:48:59 -040015765 return pci_register_driver(&tg3_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015766}
15767
15768static void __exit tg3_cleanup(void)
15769{
15770 pci_unregister_driver(&tg3_driver);
15771}
15772
15773module_init(tg3_init);
15774module_exit(tg3_cleanup);